@7kprotocol/sdk-ts 3.5.1 → 3.5.2-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/lib/cjs/config/index.js +9 -0
  2. package/lib/cjs/features/metaAg/common.js +117 -0
  3. package/lib/cjs/features/metaAg/index.js +88 -93
  4. package/lib/cjs/features/metaAg/providers/astro.js +42 -0
  5. package/lib/cjs/features/metaAg/providers/bluefin.js +6 -6
  6. package/lib/cjs/features/metaAg/providers/bluefinx.js +87 -0
  7. package/lib/cjs/features/metaAg/providers/cetus.js +4 -4
  8. package/lib/cjs/features/metaAg/providers/flowx.js +4 -4
  9. package/lib/cjs/features/metaAg/providers/okx.js +181 -0
  10. package/lib/cjs/features/swap/buildTx.js +3 -0
  11. package/lib/cjs/features/swap/buildTxV2.js +10 -6
  12. package/lib/cjs/features/swap/config.js +2 -1
  13. package/lib/cjs/features/swap/getQuote.js +3 -2
  14. package/lib/cjs/libs/protocols/bluefinx/client.js +1 -1
  15. package/lib/cjs/types/config/index.d.ts +4 -0
  16. package/lib/cjs/types/config/index.d.ts.map +1 -1
  17. package/lib/cjs/types/features/metaAg/common.d.ts +33 -0
  18. package/lib/cjs/types/features/metaAg/common.d.ts.map +1 -0
  19. package/lib/cjs/types/features/metaAg/index.d.ts +11 -2
  20. package/lib/cjs/types/features/metaAg/index.d.ts.map +1 -1
  21. package/lib/cjs/types/features/metaAg/providers/astro.d.ts +9 -0
  22. package/lib/cjs/types/features/metaAg/providers/astro.d.ts.map +1 -0
  23. package/lib/cjs/types/features/metaAg/providers/bluefin.d.ts +3 -3
  24. package/lib/cjs/types/features/metaAg/providers/bluefin.d.ts.map +1 -1
  25. package/lib/cjs/types/features/metaAg/providers/bluefinx.d.ts +10 -0
  26. package/lib/cjs/types/features/metaAg/providers/bluefinx.d.ts.map +1 -0
  27. package/lib/cjs/types/features/metaAg/providers/cetus.d.ts +4 -5
  28. package/lib/cjs/types/features/metaAg/providers/cetus.d.ts.map +1 -1
  29. package/lib/cjs/types/features/metaAg/providers/flowx.d.ts +3 -3
  30. package/lib/cjs/types/features/metaAg/providers/flowx.d.ts.map +1 -1
  31. package/lib/cjs/types/features/metaAg/providers/okx.d.ts +21 -0
  32. package/lib/cjs/types/features/metaAg/providers/okx.d.ts.map +1 -0
  33. package/lib/cjs/types/features/swap/buildTx.d.ts.map +1 -1
  34. package/lib/cjs/types/features/swap/buildTxV2.d.ts +3 -3
  35. package/lib/cjs/types/features/swap/buildTxV2.d.ts.map +1 -1
  36. package/lib/cjs/types/features/swap/config.d.ts.map +1 -1
  37. package/lib/cjs/types/features/swap/getQuote.d.ts +1 -3
  38. package/lib/cjs/types/features/swap/getQuote.d.ts.map +1 -1
  39. package/lib/cjs/types/index.d.ts +3 -1
  40. package/lib/cjs/types/index.d.ts.map +1 -1
  41. package/lib/cjs/types/metaAg.js +11 -4
  42. package/lib/cjs/types/okx.js +6 -0
  43. package/lib/cjs/types/types/metaAg.d.ts +60 -8
  44. package/lib/cjs/types/types/metaAg.d.ts.map +1 -1
  45. package/lib/cjs/types/types/okx.d.ts +193 -0
  46. package/lib/cjs/types/types/okx.d.ts.map +1 -0
  47. package/lib/cjs/types/utils/condition.d.ts +1 -1
  48. package/lib/cjs/types/utils/condition.d.ts.map +1 -1
  49. package/lib/esm/config/index.js +9 -0
  50. package/lib/esm/features/metaAg/common.js +109 -0
  51. package/lib/esm/features/metaAg/index.js +89 -94
  52. package/lib/esm/features/metaAg/providers/astro.js +39 -0
  53. package/lib/esm/features/metaAg/providers/bluefin.js +6 -6
  54. package/lib/esm/features/metaAg/providers/bluefinx.js +84 -0
  55. package/lib/esm/features/metaAg/providers/cetus.js +4 -4
  56. package/lib/esm/features/metaAg/providers/flowx.js +4 -4
  57. package/lib/esm/features/metaAg/providers/okx.js +146 -0
  58. package/lib/esm/features/swap/buildTx.js +3 -0
  59. package/lib/esm/features/swap/buildTxV2.js +6 -2
  60. package/lib/esm/features/swap/config.js +2 -1
  61. package/lib/esm/features/swap/getQuote.js +3 -2
  62. package/lib/esm/libs/protocols/bluefinx/client.js +1 -1
  63. package/lib/esm/types/config/index.d.ts +4 -0
  64. package/lib/esm/types/config/index.d.ts.map +1 -1
  65. package/lib/esm/types/features/metaAg/common.d.ts +33 -0
  66. package/lib/esm/types/features/metaAg/common.d.ts.map +1 -0
  67. package/lib/esm/types/features/metaAg/index.d.ts +11 -2
  68. package/lib/esm/types/features/metaAg/index.d.ts.map +1 -1
  69. package/lib/esm/types/features/metaAg/providers/astro.d.ts +9 -0
  70. package/lib/esm/types/features/metaAg/providers/astro.d.ts.map +1 -0
  71. package/lib/esm/types/features/metaAg/providers/bluefin.d.ts +3 -3
  72. package/lib/esm/types/features/metaAg/providers/bluefin.d.ts.map +1 -1
  73. package/lib/esm/types/features/metaAg/providers/bluefinx.d.ts +10 -0
  74. package/lib/esm/types/features/metaAg/providers/bluefinx.d.ts.map +1 -0
  75. package/lib/esm/types/features/metaAg/providers/cetus.d.ts +4 -5
  76. package/lib/esm/types/features/metaAg/providers/cetus.d.ts.map +1 -1
  77. package/lib/esm/types/features/metaAg/providers/flowx.d.ts +3 -3
  78. package/lib/esm/types/features/metaAg/providers/flowx.d.ts.map +1 -1
  79. package/lib/esm/types/features/metaAg/providers/okx.d.ts +21 -0
  80. package/lib/esm/types/features/metaAg/providers/okx.d.ts.map +1 -0
  81. package/lib/esm/types/features/swap/buildTx.d.ts.map +1 -1
  82. package/lib/esm/types/features/swap/buildTxV2.d.ts +3 -3
  83. package/lib/esm/types/features/swap/buildTxV2.d.ts.map +1 -1
  84. package/lib/esm/types/features/swap/config.d.ts.map +1 -1
  85. package/lib/esm/types/features/swap/getQuote.d.ts +1 -3
  86. package/lib/esm/types/features/swap/getQuote.d.ts.map +1 -1
  87. package/lib/esm/types/index.d.ts +3 -1
  88. package/lib/esm/types/index.d.ts.map +1 -1
  89. package/lib/esm/types/metaAg.js +8 -2
  90. package/lib/esm/types/okx.js +5 -0
  91. package/lib/esm/types/types/metaAg.d.ts +60 -8
  92. package/lib/esm/types/types/metaAg.d.ts.map +1 -1
  93. package/lib/esm/types/types/okx.d.ts +193 -0
  94. package/lib/esm/types/types/okx.d.ts.map +1 -0
  95. package/lib/esm/types/utils/condition.d.ts +1 -1
  96. package/lib/esm/types/utils/condition.d.ts.map +1 -1
  97. package/package.json +3 -2
@@ -0,0 +1,193 @@
1
+ /**
2
+ * OKX DEX Swap API Types
3
+ * Documentation: https://web3.okx.com/vi/build/docs/waas/dex-swap
4
+ */
5
+ /**
6
+ * Gas level options for swap transactions
7
+ */
8
+ export type GasLevel = "average" | "fast" | "slow";
9
+ /**
10
+ * Swap API Request Parameters
11
+ */
12
+ export interface OkxSwapRequest {
13
+ /** Chain ID (e.g., 1 for Ethereum) */
14
+ chainId: string;
15
+ /** The input amount of a token to be sold (set in minimal divisible units) */
16
+ amount: string;
17
+ /** The contract address of a token you want to send (e.g., 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee for native token) */
18
+ fromTokenAddress: string;
19
+ /** The contract address of a token you want to receive */
20
+ toTokenAddress: string;
21
+ /** Slippage limit (0-1 for EVM, 0-less than 1 for Solana) */
22
+ slippage: string;
23
+ /** User's wallet address */
24
+ userWalletAddress: string;
25
+ /** Recipient address of a purchased token (if not set, userWalletAddress will receive the token) */
26
+ swapReceiverAddress?: string;
27
+ /** The percentage of fromTokenAmount or toTokenAmount sent to referrer (0-3, max 2 decimal points) */
28
+ feePercent?: string;
29
+ /** Wallet address to receive commission fee from fromToken */
30
+ fromTokenReferrerWalletAddress?: string;
31
+ /** Wallet address to receive commission fee from toToken */
32
+ toTokenReferrerWalletAddress?: string;
33
+ /** When true, positive slippage revenue sent to referrer's address (default: false) */
34
+ enablePositiveSlippage?: boolean;
35
+ /** The gas (in wei) for the swap transaction */
36
+ gaslimit?: string;
37
+ /** Target gas price level (defaults to "average") */
38
+ gasLevel?: GasLevel;
39
+ /** DexId of liquidity pool for limited quotes, multiple separated by comma (e.g., "1,50,180") */
40
+ dexIds?: string;
41
+ /** When enabled, restricts routing to single liquidity pool (Solana only, default: false) */
42
+ directRoute?: boolean;
43
+ /** Percentage (0-1.0) of price impact allowed (default: 0.9) */
44
+ priceImpactProtectionPercentage?: string;
45
+ /** Custom parameters encoded as 128-character 64-bytes hexadecimal string (must start with "0x") */
46
+ callDataMemo?: string;
47
+ /** Used for Solana transactions, similar to gasPrice on Ethereum */
48
+ computeUnitPrice?: string;
49
+ /** Used for Solana transactions, similar to gasLimit on Ethereum */
50
+ computeUnitLimit?: string;
51
+ /** When true, API calculates auto slippage recommendations (default: false) */
52
+ autoSlippage?: boolean;
53
+ /** Maximum auto slippage when autoSlippage is true */
54
+ maxAutoSlippage?: string;
55
+ }
56
+ /**
57
+ * Token information
58
+ */
59
+ export interface OkxTokenInfo {
60
+ /** Token contract address */
61
+ tokenContractAddress: string;
62
+ /** Token symbol (e.g., "USDC") */
63
+ tokenSymbol: string;
64
+ /** Token unit price in USD (may be null for special cases) */
65
+ tokenUnitPrice: string | null;
66
+ /** Decimal number defining smallest unit */
67
+ decimal: string;
68
+ /** Whether the token is a honeypot token */
69
+ isHoneyPot: boolean;
70
+ /** Token tax rate (0-1, where 0.01 = 1%) */
71
+ taxRate: string;
72
+ }
73
+ /**
74
+ * DEX Protocol information
75
+ */
76
+ export interface OkxDexProtocol {
77
+ /** Name of the liquidity protocol (e.g., "Uniswap V3") */
78
+ dexName: string;
79
+ /** Percentage of assets handled by the protocol */
80
+ percent: string;
81
+ }
82
+ /**
83
+ * Sub-router information
84
+ */
85
+ export interface OkxSubRouter {
86
+ /** Liquidity protocols used on the path */
87
+ dexProtocol: OkxDexProtocol[];
88
+ /** Information of token to be sold */
89
+ fromToken: OkxTokenInfo;
90
+ /** Information of token to be bought */
91
+ toToken: OkxTokenInfo;
92
+ }
93
+ /**
94
+ * Main router information
95
+ */
96
+ export interface OkxRouter {
97
+ /** One of the main paths for the token swap */
98
+ router: string;
99
+ /** Percentage of assets handled by the main path */
100
+ routerPercent: string;
101
+ /** Quote path sub data set */
102
+ subRouterList: OkxSubRouter[];
103
+ }
104
+ /**
105
+ * Quote comparison information
106
+ */
107
+ export interface OkxQuoteCompare {
108
+ /** DEX name of the quote route */
109
+ dexName: string;
110
+ /** DEX logo of the quote route */
111
+ dexLogo: string;
112
+ /** Estimated network fee (USD) of the quote route */
113
+ tradeFee: string;
114
+ /** Received amount of the quote route */
115
+ amountOut: string;
116
+ /** Price impact percentage */
117
+ priceImpactPercentage: string;
118
+ }
119
+ /**
120
+ * Transaction data model
121
+ */
122
+ export interface OkxTransactionData {
123
+ /** Additional signing data (if required) */
124
+ signatureData?: string[];
125
+ /** User's wallet address */
126
+ from: string;
127
+ /** Estimated amount of the gas limit */
128
+ gas: string;
129
+ /** Gas price in wei */
130
+ gasPrice?: string;
131
+ /** EIP-1559: Recommended priority cost of gas per unit */
132
+ maxPriorityFeePerGas?: string;
133
+ /** The contract address of OKX DEX router */
134
+ to: string;
135
+ /** The amount of native tokens (in wei) to be sent to the contract */
136
+ value: string;
137
+ /** Minimum amount of token to buy when price reaches slippage limit */
138
+ minReceiveAmount: string;
139
+ /** Call data */
140
+ data: string;
141
+ /** Current transaction slippage value */
142
+ slippage: string;
143
+ }
144
+ /**
145
+ * Router result data
146
+ */
147
+ export interface OkxRouterResult {
148
+ /** Chain ID */
149
+ chainId: string;
150
+ /** The input amount of a token to be sold */
151
+ fromTokenAmount: string;
152
+ /** The resulting amount of a token to be bought */
153
+ toTokenAmount: string;
154
+ /** Estimated network fee (USD) of the quote route */
155
+ tradeFee: string;
156
+ /** Estimated gas consumption in smallest units (e.g., wei) */
157
+ estimateGasFee: string;
158
+ /** Quote path data set */
159
+ dexRouterList: OkxRouter[];
160
+ /** Information of token to be sold */
161
+ fromToken: OkxTokenInfo;
162
+ /** Information of token to be bought */
163
+ toToken: OkxTokenInfo;
164
+ /** Price impact percentage */
165
+ priceImpactPercentage?: string;
166
+ /** Comparison of quote routes */
167
+ quoteCompareList?: OkxQuoteCompare[];
168
+ }
169
+ /**
170
+ * Swap API Response Data
171
+ */
172
+ export interface OkxSwapResponseData {
173
+ /** Quote path data */
174
+ routerResult: OkxRouterResult;
175
+ /** Contract data model */
176
+ tx: OkxTransactionData;
177
+ }
178
+ /**
179
+ * OKX API Standard Response Wrapper
180
+ */
181
+ export interface OkxApiResponse<T> {
182
+ /** Response code ("0" indicates success) */
183
+ code: string;
184
+ /** Response data array */
185
+ data: T[];
186
+ /** Response message */
187
+ msg: string;
188
+ }
189
+ /**
190
+ * Complete Swap API Response
191
+ */
192
+ export type OkxSwapResponse = OkxApiResponse<OkxSwapResponseData>;
193
+ //# sourceMappingURL=okx.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"okx.d.ts","sourceRoot":"","sources":["../../../../src/types/okx.ts"],"names":[],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- export declare function assert(condition: boolean, message?: string | null): asserts condition;
1
+ export declare function assert(condition: any, message?: string | null): asserts condition;
2
2
  //# sourceMappingURL=condition.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"condition.d.ts","sourceRoot":"","sources":["../../../../src/utils/condition.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,CACpB,SAAS,EAAE,OAAO,EAClB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GACtB,OAAO,CAAC,SAAS,CAInB"}
1
+ {"version":3,"file":"condition.d.ts","sourceRoot":"","sources":["../../../../src/utils/condition.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,CACpB,SAAS,EAAE,GAAG,EACd,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GACtB,OAAO,CAAC,SAAS,CAInB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7kprotocol/sdk-ts",
3
- "version": "3.5.1",
3
+ "version": "3.5.2-beta.0",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -79,6 +79,7 @@
79
79
  },
80
80
  "optionalDependencies": {
81
81
  "@cetusprotocol/aggregator-sdk": "^1.4.1",
82
- "@flowx-finance/sdk": "^1.13.8"
82
+ "@flowx-finance/sdk": "^1.13.8",
83
+ "@naviprotocol/astros-aggregator-sdk": "^1.9.1"
83
84
  }
84
85
  }