@bitgo-beta/statics 15.1.1-beta.182 → 15.1.1-beta.1821

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 (123) hide show
  1. package/dist/src/account.d.ts +1130 -75
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +1780 -160
  4. package/dist/src/ada.d.ts.map +1 -1
  5. package/dist/src/ada.js +7 -3
  6. package/dist/src/allCoinsAndTokens.d.ts +2 -0
  7. package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
  8. package/dist/src/allCoinsAndTokens.js +1685 -0
  9. package/dist/src/avaxp.d.ts.map +1 -1
  10. package/dist/src/avaxp.js +9 -3
  11. package/dist/src/base.d.ts +2514 -53
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +2624 -63
  14. package/dist/src/canton.d.ts +34 -0
  15. package/dist/src/canton.d.ts.map +1 -0
  16. package/dist/src/canton.js +51 -0
  17. package/dist/src/coinFeatures.d.ts +117 -0
  18. package/dist/src/coinFeatures.d.ts.map +1 -0
  19. package/dist/src/coinFeatures.js +766 -0
  20. package/dist/src/coins/adaTokens.d.ts +2 -0
  21. package/dist/src/coins/adaTokens.d.ts.map +1 -0
  22. package/dist/src/coins/adaTokens.js +22 -0
  23. package/dist/src/coins/avaxTokens.d.ts +2 -0
  24. package/dist/src/coins/avaxTokens.d.ts.map +1 -0
  25. package/dist/src/coins/avaxTokens.js +130 -0
  26. package/dist/src/coins/botOfcTokens.d.ts +3 -0
  27. package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
  28. package/dist/src/coins/botOfcTokens.js +52 -0
  29. package/dist/src/coins/botTokens.d.ts +3 -0
  30. package/dist/src/coins/botTokens.d.ts.map +1 -0
  31. package/dist/src/coins/botTokens.js +212 -0
  32. package/dist/src/coins/bscTokens.d.ts +2 -0
  33. package/dist/src/coins/bscTokens.d.ts.map +1 -0
  34. package/dist/src/coins/bscTokens.js +216 -0
  35. package/dist/src/coins/cantonTokens.d.ts +2 -0
  36. package/dist/src/coins/cantonTokens.d.ts.map +1 -0
  37. package/dist/src/coins/cantonTokens.js +22 -0
  38. package/dist/src/coins/cosmosTokens.d.ts +2 -0
  39. package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
  40. package/dist/src/coins/cosmosTokens.js +14 -0
  41. package/dist/src/coins/erc20Coins.d.ts +2 -0
  42. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  43. package/dist/src/coins/erc20Coins.js +2046 -0
  44. package/dist/src/coins/erc7984Tokens.d.ts +18 -0
  45. package/dist/src/coins/erc7984Tokens.d.ts.map +1 -0
  46. package/dist/src/coins/erc7984Tokens.js +32 -0
  47. package/dist/src/coins/generateERC20.d.ts +36 -0
  48. package/dist/src/coins/generateERC20.d.ts.map +1 -0
  49. package/dist/src/coins/generateERC20.js +46 -0
  50. package/dist/src/coins/jettonTokens.d.ts +2 -0
  51. package/dist/src/coins/jettonTokens.d.ts.map +1 -0
  52. package/dist/src/coins/jettonTokens.js +19 -0
  53. package/dist/src/coins/nep141Tokens.d.ts +2 -0
  54. package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
  55. package/dist/src/coins/nep141Tokens.js +18 -0
  56. package/dist/src/coins/ofcCoins.d.ts +2 -0
  57. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  58. package/dist/src/coins/ofcCoins.js +1124 -0
  59. package/dist/src/coins/ofcErc20Coins.d.ts +4 -0
  60. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  61. package/dist/src/coins/ofcErc20Coins.js +1857 -0
  62. package/dist/src/coins/polygonTokens.d.ts +2 -0
  63. package/dist/src/coins/polygonTokens.d.ts.map +1 -0
  64. package/dist/src/coins/polygonTokens.js +201 -0
  65. package/dist/src/coins/polyxTokens.d.ts +2 -0
  66. package/dist/src/coins/polyxTokens.d.ts.map +1 -0
  67. package/dist/src/coins/polyxTokens.js +22 -0
  68. package/dist/src/coins/sip10Tokens.d.ts +2 -0
  69. package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
  70. package/dist/src/coins/sip10Tokens.js +25 -0
  71. package/dist/src/coins/solTokens.d.ts +3 -0
  72. package/dist/src/coins/solTokens.d.ts.map +1 -0
  73. package/dist/src/coins/solTokens.js +492 -0
  74. package/dist/src/coins/vetTokens.d.ts +2 -0
  75. package/dist/src/coins/vetTokens.d.ts.map +1 -0
  76. package/dist/src/coins/vetTokens.js +11 -0
  77. package/dist/src/coins.d.ts +22 -1
  78. package/dist/src/coins.d.ts.map +1 -1
  79. package/dist/src/coins.js +451 -1695
  80. package/dist/src/constants.d.ts +1 -0
  81. package/dist/src/constants.d.ts.map +1 -1
  82. package/dist/src/constants.js +3 -2
  83. package/dist/src/errors.d.ts +3 -0
  84. package/dist/src/errors.d.ts.map +1 -1
  85. package/dist/src/errors.js +9 -2
  86. package/dist/src/flrp.d.ts +40 -0
  87. package/dist/src/flrp.d.ts.map +1 -0
  88. package/dist/src/flrp.js +68 -0
  89. package/dist/src/hypeevm.d.ts +28 -0
  90. package/dist/src/hypeevm.d.ts.map +1 -0
  91. package/dist/src/hypeevm.js +60 -0
  92. package/dist/src/index.d.ts +5 -1
  93. package/dist/src/index.d.ts.map +1 -1
  94. package/dist/src/index.js +41 -3
  95. package/dist/src/kaspa.d.ts +34 -0
  96. package/dist/src/kaspa.d.ts.map +1 -0
  97. package/dist/src/kaspa.js +63 -0
  98. package/dist/src/lightning.d.ts +43 -0
  99. package/dist/src/lightning.d.ts.map +1 -0
  100. package/dist/src/lightning.js +64 -0
  101. package/dist/src/map.d.ts +16 -1
  102. package/dist/src/map.d.ts.map +1 -1
  103. package/dist/src/map.js +194 -34
  104. package/dist/src/networkFeatureMapForTokens.d.ts +17 -0
  105. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  106. package/dist/src/networkFeatureMapForTokens.js +75 -0
  107. package/dist/src/networks.d.ts +1947 -61
  108. package/dist/src/networks.d.ts.map +1 -1
  109. package/dist/src/networks.js +2392 -106
  110. package/dist/src/ofc.d.ts +695 -3
  111. package/dist/src/ofc.d.ts.map +1 -1
  112. package/dist/src/ofc.js +1653 -28
  113. package/dist/src/tokenConfig.d.ts +687 -108
  114. package/dist/src/tokenConfig.d.ts.map +1 -1
  115. package/dist/src/tokenConfig.js +1085 -220
  116. package/dist/src/utxo.d.ts +3 -1
  117. package/dist/src/utxo.d.ts.map +1 -1
  118. package/dist/src/utxo.js +84 -3
  119. package/dist/tsconfig.tsbuildinfo +1 -1
  120. package/package.json +6 -3
  121. package/.mocharc.js +0 -10
  122. package/.prettierignore +0 -2
  123. package/CHANGELOG.md +0 -1155
@@ -1,3 +1,6 @@
1
+ import { CoinFamily, BaseCoin, CoinFeature } from './base';
2
+ import { coins } from './coins';
3
+ import { DynamicNetworkOptions } from './networks';
1
4
  export interface BaseTokenConfig {
2
5
  coin: string;
3
6
  decimalPlaces: number;
@@ -10,129 +13,282 @@ export interface BaseNetworkConfig extends BaseTokenConfig {
10
13
  export interface BaseContractAddressConfig extends BaseNetworkConfig {
11
14
  tokenContractAddress: string;
12
15
  }
13
- export declare type AvaxcTokenConfig = BaseContractAddressConfig;
14
- export declare type CeloTokenConfig = BaseContractAddressConfig;
15
- export declare type EthLikeTokenConfig = BaseContractAddressConfig;
16
- export declare type EosTokenConfig = BaseContractAddressConfig;
17
- export declare type Erc20TokenConfig = BaseContractAddressConfig;
18
- export declare type TrxTokenConfig = BaseContractAddressConfig;
19
- export declare type StellarTokenConfig = BaseNetworkConfig;
20
- export declare type SolTokenConfig = BaseNetworkConfig & {
16
+ export type AvaxcTokenConfig = BaseContractAddressConfig;
17
+ export type CeloTokenConfig = BaseContractAddressConfig;
18
+ export type EthLikeTokenConfig = BaseContractAddressConfig;
19
+ export type EosTokenConfig = BaseContractAddressConfig & {
20
+ contractName: string;
21
+ contractAddress: string;
22
+ };
23
+ export type Erc20TokenConfig = BaseContractAddressConfig;
24
+ export type Erc7984TokenConfig = BaseContractAddressConfig;
25
+ export type TrxTokenConfig = BaseContractAddressConfig;
26
+ export type StellarTokenConfig = BaseNetworkConfig;
27
+ export type SolTokenConfig = BaseNetworkConfig & {
21
28
  tokenAddress: string;
29
+ contractAddress: string;
22
30
  };
23
- export declare type AdaTokenConfig = BaseNetworkConfig & {
31
+ export type AdaTokenConfig = BaseNetworkConfig & {
24
32
  policyId: string;
25
33
  assetName: string;
34
+ contractAddress: string;
26
35
  };
27
- export declare type AlgoTokenConfig = BaseNetworkConfig & {
36
+ export type AlgoTokenConfig = BaseNetworkConfig & {
28
37
  alias?: string;
29
38
  };
30
- export declare type OfcTokenConfig = BaseTokenConfig & {
39
+ export type OfcTokenConfig = BaseTokenConfig & {
31
40
  backingCoin: string;
32
41
  isFiat: boolean;
33
42
  };
34
- export declare type HbarTokenConfig = BaseNetworkConfig;
35
- export declare type XrpTokenConfig = BaseNetworkConfig & {
43
+ export type HbarTokenConfig = BaseNetworkConfig & {
44
+ nodeAccountId: string;
45
+ tokenId: string;
46
+ contractAddress: string;
47
+ };
48
+ export type XrpTokenConfig = BaseNetworkConfig & {
36
49
  issuerAddress: string;
37
50
  currencyCode: string;
38
51
  domain?: string;
52
+ contractAddress: string;
39
53
  };
40
- export interface Tokens {
41
- bitcoin: {
42
- eth: {
43
- tokens: Erc20TokenConfig[];
44
- };
45
- xlm: {
46
- tokens: StellarTokenConfig[];
47
- };
48
- algo: {
49
- tokens: AlgoTokenConfig[];
50
- };
51
- ofc: {
52
- tokens: OfcTokenConfig[];
53
- };
54
- celo: {
55
- tokens: CeloTokenConfig[];
56
- };
57
- eos: {
58
- tokens: EosTokenConfig[];
59
- };
60
- avaxc: {
61
- tokens: AvaxcTokenConfig[];
62
- };
63
- polygon: {
64
- tokens: EthLikeTokenConfig[];
65
- };
66
- bsc: {
67
- tokens: EthLikeTokenConfig[];
68
- };
69
- arbeth: {
70
- tokens: EthLikeTokenConfig[];
71
- };
72
- sol: {
73
- tokens: SolTokenConfig[];
74
- };
75
- hbar: {
76
- tokens: HbarTokenConfig[];
77
- };
78
- ada: {
79
- tokens: AdaTokenConfig[];
80
- };
81
- trx: {
82
- tokens: TrxTokenConfig[];
83
- };
84
- xrp: {
85
- tokens: XrpTokenConfig[];
86
- };
87
- };
88
- testnet: {
89
- eth: {
90
- tokens: Erc20TokenConfig[];
91
- };
92
- xlm: {
93
- tokens: StellarTokenConfig[];
94
- };
95
- algo: {
96
- tokens: AlgoTokenConfig[];
97
- };
98
- ofc: {
99
- tokens: OfcTokenConfig[];
100
- };
101
- celo: {
102
- tokens: CeloTokenConfig[];
103
- };
104
- bsc: {
105
- tokens: EthLikeTokenConfig[];
106
- };
107
- eos: {
108
- tokens: EosTokenConfig[];
109
- };
110
- avaxc: {
111
- tokens: AvaxcTokenConfig[];
112
- };
113
- polygon: {
114
- tokens: EthLikeTokenConfig[];
115
- };
116
- arbeth: {
117
- tokens: EthLikeTokenConfig[];
118
- };
119
- sol: {
120
- tokens: SolTokenConfig[];
121
- };
122
- hbar: {
123
- tokens: HbarTokenConfig[];
124
- };
125
- ada: {
126
- tokens: AdaTokenConfig[];
127
- };
128
- trx: {
129
- tokens: TrxTokenConfig[];
130
- };
131
- xrp: {
132
- tokens: XrpTokenConfig[];
133
- };
54
+ export type XrpMptTokenConfig = BaseNetworkConfig & {
55
+ contractAddress: string;
56
+ canTransfer: boolean;
57
+ };
58
+ export type SuiTokenConfig = BaseNetworkConfig & {
59
+ packageId: string;
60
+ module: string;
61
+ symbol: string;
62
+ contractAddress: string;
63
+ };
64
+ export type AptTokenConfig = BaseNetworkConfig & {
65
+ assetId: string;
66
+ };
67
+ export type AptNFTCollectionConfig = BaseNetworkConfig & {
68
+ nftCollectionId: string;
69
+ };
70
+ export type Sip10TokenConfig = BaseNetworkConfig & {
71
+ assetId: string;
72
+ };
73
+ export type TaoTokenConfig = BaseNetworkConfig & {
74
+ subnetId: string;
75
+ };
76
+ export type PolyxTokenConfig = BaseNetworkConfig & {
77
+ ticker: string;
78
+ assetId: string;
79
+ };
80
+ export type Nep141TokenConfig = BaseNetworkConfig & {
81
+ contractAddress: string;
82
+ storageDepositAmount: string;
83
+ };
84
+ export type CantonTokenConfig = BaseNetworkConfig & {
85
+ baseUrl: string;
86
+ contractAddress: string;
87
+ };
88
+ export type VetTokenConfig = BaseNetworkConfig & {
89
+ contractAddress: string;
90
+ };
91
+ export type VetNFTCollectionConfig = BaseNetworkConfig & {
92
+ nftCollectionId: string;
93
+ };
94
+ export type CosmosTokenConfig = BaseNetworkConfig & {
95
+ denom: string;
96
+ };
97
+ export type JettonTokenConfig = BaseNetworkConfig & {
98
+ contractAddress: string;
99
+ };
100
+ export type EthLikeERC721TokenConfig = BaseContractAddressConfig & {
101
+ network: string;
102
+ };
103
+ export type Tip20TokenConfig = BaseContractAddressConfig;
104
+ export type TokenConfig = Erc20TokenConfig | StellarTokenConfig | OfcTokenConfig | CeloTokenConfig | EthLikeTokenConfig | EosTokenConfig | AvaxcTokenConfig | SolTokenConfig | HbarTokenConfig | AdaTokenConfig | AlgoTokenConfig | TrxTokenConfig | XrpTokenConfig | XrpMptTokenConfig | SuiTokenConfig | AptTokenConfig | AptNFTCollectionConfig | Sip10TokenConfig | Nep141TokenConfig | CantonTokenConfig | CosmosTokenConfig | VetTokenConfig | VetNFTCollectionConfig | TaoTokenConfig | PolyxTokenConfig | JettonTokenConfig | EthLikeERC721TokenConfig | Tip20TokenConfig | Erc7984TokenConfig;
105
+ export interface TokenNetwork {
106
+ eth: {
107
+ tokens: Erc20TokenConfig[];
108
+ nfts: EthLikeTokenConfig[];
109
+ confidentialTokens: Erc7984TokenConfig[];
110
+ };
111
+ xlm: {
112
+ tokens: StellarTokenConfig[];
113
+ };
114
+ algo: {
115
+ tokens: AlgoTokenConfig[];
116
+ };
117
+ ofc: {
118
+ tokens: OfcTokenConfig[];
119
+ };
120
+ celo: {
121
+ tokens: CeloTokenConfig[];
122
+ };
123
+ eos: {
124
+ tokens: EosTokenConfig[];
125
+ };
126
+ avaxc: {
127
+ tokens: AvaxcTokenConfig[];
128
+ };
129
+ polygon: {
130
+ tokens: EthLikeTokenConfig[];
131
+ };
132
+ soneium: {
133
+ tokens: EthLikeTokenConfig[];
134
+ };
135
+ bsc: {
136
+ tokens: EthLikeTokenConfig[];
137
+ };
138
+ arbeth: {
139
+ tokens: EthLikeTokenConfig[];
140
+ };
141
+ opeth: {
142
+ tokens: EthLikeTokenConfig[];
143
+ };
144
+ baseeth: {
145
+ tokens: EthLikeTokenConfig[];
146
+ };
147
+ og: {
148
+ tokens: EthLikeTokenConfig[];
149
+ };
150
+ flow: {
151
+ tokens: EthLikeTokenConfig[];
152
+ };
153
+ lineaeth: {
154
+ tokens: EthLikeTokenConfig[];
155
+ };
156
+ seievm: {
157
+ tokens: EthLikeTokenConfig[];
158
+ };
159
+ coredao: {
160
+ tokens: EthLikeTokenConfig[];
161
+ };
162
+ world: {
163
+ tokens: EthLikeTokenConfig[];
164
+ };
165
+ flr: {
166
+ tokens: EthLikeTokenConfig[];
167
+ };
168
+ sol: {
169
+ tokens: SolTokenConfig[];
170
+ };
171
+ hbar: {
172
+ tokens: HbarTokenConfig[];
173
+ };
174
+ ada: {
175
+ tokens: AdaTokenConfig[];
176
+ };
177
+ trx: {
178
+ tokens: TrxTokenConfig[];
179
+ };
180
+ xrp: {
181
+ tokens: XrpTokenConfig[];
182
+ mptTokens: XrpMptTokenConfig[];
183
+ };
184
+ zketh: {
185
+ tokens: EthLikeTokenConfig[];
186
+ };
187
+ sui: {
188
+ tokens: SuiTokenConfig[];
189
+ };
190
+ tao: {
191
+ tokens: TaoTokenConfig[];
192
+ };
193
+ polyx: {
194
+ tokens: PolyxTokenConfig[];
195
+ };
196
+ bera: {
197
+ tokens: EthLikeTokenConfig[];
198
+ };
199
+ mon: {
200
+ tokens: EthLikeTokenConfig[];
201
+ };
202
+ xdc: {
203
+ tokens: EthLikeTokenConfig[];
204
+ };
205
+ hypeevm: {
206
+ tokens: EthLikeTokenConfig[];
207
+ };
208
+ ip: {
209
+ tokens: EthLikeTokenConfig[];
210
+ };
211
+ apt: {
212
+ tokens: AptTokenConfig[];
213
+ nftCollections: AptNFTCollectionConfig[];
134
214
  };
215
+ stx: {
216
+ tokens: Sip10TokenConfig[];
217
+ };
218
+ near: {
219
+ tokens: Nep141TokenConfig[];
220
+ };
221
+ vet: {
222
+ tokens: VetTokenConfig[];
223
+ nftCollections: VetNFTCollectionConfig[];
224
+ };
225
+ cosmos: {
226
+ tokens: CosmosTokenConfig[];
227
+ };
228
+ ton: {
229
+ tokens: JettonTokenConfig[];
230
+ };
231
+ tempo: {
232
+ tokens: Tip20TokenConfig[];
233
+ };
234
+ canton: {
235
+ tokens: CantonTokenConfig[];
236
+ };
237
+ }
238
+ export interface Tokens {
239
+ bitcoin: TokenNetwork;
240
+ testnet: TokenNetwork;
241
+ }
242
+ export interface AmsTokenConfig {
243
+ id: string;
244
+ name: string;
245
+ fullName: string;
246
+ family: string;
247
+ decimalPlaces: number;
248
+ asset: string;
249
+ features?: string[];
250
+ prefix?: string;
251
+ suffix?: string;
252
+ network?: unknown;
253
+ primaryKeyCurve?: string;
254
+ contractAddress?: string;
255
+ tokenAddress?: string;
256
+ nftCollectionId?: string;
257
+ alias?: string;
258
+ contractName?: string;
259
+ tokenId?: string;
260
+ packageId?: string;
261
+ module?: string;
262
+ symbol?: string;
263
+ issuerAddress?: string;
264
+ currecnycode?: string;
265
+ domain?: string;
266
+ assetId?: string;
267
+ denom?: string;
268
+ isToken: boolean;
269
+ baseUnit?: string;
270
+ kind?: string;
271
+ subnetId?: string;
272
+ ticker?: string;
273
+ programId?: string;
274
+ addressCoin?: string;
275
+ assetName?: string;
276
+ policyId?: string;
277
+ }
278
+ export interface AmsNetworkConfig extends DynamicNetworkOptions {
279
+ features: CoinFeature[];
280
+ }
281
+ export type AmsNetworkConfigMap = Record<string, AmsNetworkConfig>;
282
+ export interface TrimmedAmsNetworkConfig {
283
+ name: string;
135
284
  }
285
+ export interface TrimmedAmsTokenConfig extends Omit<AmsTokenConfig, 'features' | 'network'> {
286
+ network: TrimmedAmsNetworkConfig;
287
+ excludedFeatures?: string[];
288
+ additionalFeatures?: string[];
289
+ }
290
+ export declare const getFormattedErc20Tokens: (customCoinMap?: import("./map").CoinMap) => BaseContractAddressConfig[];
291
+ export declare const getFormattedErc7984Tokens: (customCoinMap?: import("./map").CoinMap) => BaseContractAddressConfig[];
136
292
  export declare const ethGasConfigs: {
137
293
  minimumGasPrice: number;
138
294
  defaultGasPrice: number;
@@ -141,13 +297,436 @@ export declare const ethGasConfigs: {
141
297
  defaultGasLimitTokenSend: number;
142
298
  minimumGasLimit: number;
143
299
  maximumGasLimit: number;
300
+ newEthLikeCoinsMinGasLimit: number;
301
+ l1GasFeeBuffer: number;
144
302
  };
145
- export declare const formattedAlgoTokens: AlgoTokenConfig[];
303
+ export declare const getFormattedAlgoTokens: (customCoinMap?: import("./map").CoinMap) => AlgoTokenConfig[];
304
+ type EthLikeTokenMap = {
305
+ [K in CoinFamily]: {
306
+ tokens: EthLikeTokenConfig[];
307
+ };
308
+ };
309
+ export declare enum TokenTypeEnum {
310
+ ERC20 = "erc20",
311
+ ERC721 = "erc721",
312
+ ERC7984 = "erc7984"
313
+ }
314
+ export declare const getFormattedEthLikeTokenConfig: (customCoinMap: import("./map").CoinMap | undefined, tokenType: TokenTypeEnum) => EthLikeTokenConfig[];
315
+ export declare const getEthLikeTokens: (network: "Mainnet" | "Testnet", tokenType: TokenTypeEnum) => EthLikeTokenMap;
316
+ export declare const getFormattedTokensByNetwork: (network: "Mainnet" | "Testnet", coinMap: typeof coins) => {
317
+ eth: {
318
+ tokens: BaseContractAddressConfig[];
319
+ nfts: BaseContractAddressConfig[];
320
+ confidentialTokens: BaseContractAddressConfig[];
321
+ };
322
+ xlm: {
323
+ tokens: BaseNetworkConfig[];
324
+ };
325
+ algo: {
326
+ tokens: AlgoTokenConfig[];
327
+ };
328
+ ofc: {
329
+ tokens: OfcTokenConfig[];
330
+ };
331
+ celo: {
332
+ tokens: BaseContractAddressConfig[];
333
+ };
334
+ bsc: {
335
+ tokens: BaseContractAddressConfig[];
336
+ };
337
+ eos: {
338
+ tokens: EosTokenConfig[];
339
+ };
340
+ avaxc: {
341
+ tokens: BaseContractAddressConfig[];
342
+ };
343
+ polygon: {
344
+ tokens: BaseContractAddressConfig[];
345
+ };
346
+ soneium: {
347
+ tokens: BaseContractAddressConfig[];
348
+ };
349
+ arbeth: {
350
+ tokens: BaseContractAddressConfig[];
351
+ };
352
+ opeth: {
353
+ tokens: BaseContractAddressConfig[];
354
+ };
355
+ baseeth: {
356
+ tokens: BaseContractAddressConfig[];
357
+ };
358
+ og: {
359
+ tokens: BaseContractAddressConfig[];
360
+ };
361
+ flow: {
362
+ tokens: BaseContractAddressConfig[];
363
+ };
364
+ mon: {
365
+ tokens: BaseContractAddressConfig[];
366
+ };
367
+ xdc: {
368
+ tokens: BaseContractAddressConfig[];
369
+ };
370
+ lineaeth: {
371
+ tokens: BaseContractAddressConfig[];
372
+ };
373
+ seievm: {
374
+ tokens: BaseContractAddressConfig[];
375
+ };
376
+ zketh: {
377
+ tokens: BaseContractAddressConfig[];
378
+ };
379
+ sol: {
380
+ tokens: SolTokenConfig[];
381
+ };
382
+ hbar: {
383
+ tokens: HbarTokenConfig[];
384
+ };
385
+ ada: {
386
+ tokens: AdaTokenConfig[];
387
+ };
388
+ trx: {
389
+ tokens: BaseContractAddressConfig[];
390
+ };
391
+ xrp: {
392
+ tokens: XrpTokenConfig[];
393
+ mptTokens: XrpMptTokenConfig[];
394
+ };
395
+ sui: {
396
+ tokens: SuiTokenConfig[];
397
+ };
398
+ tao: {
399
+ tokens: TaoTokenConfig[];
400
+ };
401
+ polyx: {
402
+ tokens: PolyxTokenConfig[];
403
+ };
404
+ bera: {
405
+ tokens: BaseContractAddressConfig[];
406
+ };
407
+ coredao: {
408
+ tokens: BaseContractAddressConfig[];
409
+ };
410
+ world: {
411
+ tokens: BaseContractAddressConfig[];
412
+ };
413
+ flr: {
414
+ tokens: BaseContractAddressConfig[];
415
+ };
416
+ stx: {
417
+ tokens: Sip10TokenConfig[];
418
+ };
419
+ near: {
420
+ tokens: Nep141TokenConfig[];
421
+ };
422
+ cosmos: {
423
+ tokens: CosmosTokenConfig[];
424
+ };
425
+ ton: {
426
+ tokens: JettonTokenConfig[];
427
+ };
428
+ tempo: {
429
+ tokens: BaseContractAddressConfig[];
430
+ };
431
+ canton: {
432
+ tokens: CantonTokenConfig[];
433
+ };
434
+ abstracteth: {
435
+ tokens: EthLikeTokenConfig[];
436
+ };
437
+ apechain: {
438
+ tokens: EthLikeTokenConfig[];
439
+ };
440
+ apt: {
441
+ tokens: EthLikeTokenConfig[];
442
+ };
443
+ asi: {
444
+ tokens: EthLikeTokenConfig[];
445
+ };
446
+ atom: {
447
+ tokens: EthLikeTokenConfig[];
448
+ };
449
+ avaxp: {
450
+ tokens: EthLikeTokenConfig[];
451
+ };
452
+ baby: {
453
+ tokens: EthLikeTokenConfig[];
454
+ };
455
+ bch: {
456
+ tokens: EthLikeTokenConfig[];
457
+ };
458
+ bcha: {
459
+ tokens: EthLikeTokenConfig[];
460
+ };
461
+ bld: {
462
+ tokens: EthLikeTokenConfig[];
463
+ };
464
+ bsv: {
465
+ tokens: EthLikeTokenConfig[];
466
+ };
467
+ btc: {
468
+ tokens: EthLikeTokenConfig[];
469
+ };
470
+ btg: {
471
+ tokens: EthLikeTokenConfig[];
472
+ };
473
+ chiliz: {
474
+ tokens: EthLikeTokenConfig[];
475
+ };
476
+ codexeth: {
477
+ tokens: EthLikeTokenConfig[];
478
+ };
479
+ coreum: {
480
+ tokens: EthLikeTokenConfig[];
481
+ };
482
+ cronos: {
483
+ tokens: EthLikeTokenConfig[];
484
+ };
485
+ cspr: {
486
+ tokens: EthLikeTokenConfig[];
487
+ };
488
+ dash: {
489
+ tokens: EthLikeTokenConfig[];
490
+ };
491
+ doge: {
492
+ tokens: EthLikeTokenConfig[];
493
+ };
494
+ dogeos: {
495
+ tokens: EthLikeTokenConfig[];
496
+ };
497
+ dot: {
498
+ tokens: EthLikeTokenConfig[];
499
+ };
500
+ dydx: {
501
+ tokens: EthLikeTokenConfig[];
502
+ };
503
+ dydxcosmos: {
504
+ tokens: EthLikeTokenConfig[];
505
+ };
506
+ etc: {
507
+ tokens: EthLikeTokenConfig[];
508
+ };
509
+ eth2: {
510
+ tokens: EthLikeTokenConfig[];
511
+ };
512
+ ethw: {
513
+ tokens: EthLikeTokenConfig[];
514
+ };
515
+ fetchai: {
516
+ tokens: EthLikeTokenConfig[];
517
+ };
518
+ fiat: {
519
+ tokens: EthLikeTokenConfig[];
520
+ };
521
+ fantom: {
522
+ tokens: EthLikeTokenConfig[];
523
+ };
524
+ flrp: {
525
+ tokens: EthLikeTokenConfig[];
526
+ };
527
+ h: {
528
+ tokens: EthLikeTokenConfig[];
529
+ };
530
+ hash: {
531
+ tokens: EthLikeTokenConfig[];
532
+ };
533
+ hbarevm: {
534
+ tokens: EthLikeTokenConfig[];
535
+ };
536
+ hemieth: {
537
+ tokens: EthLikeTokenConfig[];
538
+ };
539
+ hoodeth: {
540
+ tokens: EthLikeTokenConfig[];
541
+ };
542
+ hppeth: {
543
+ tokens: EthLikeTokenConfig[];
544
+ };
545
+ icp: {
546
+ tokens: EthLikeTokenConfig[];
547
+ };
548
+ inketh: {
549
+ tokens: EthLikeTokenConfig[];
550
+ };
551
+ initia: {
552
+ tokens: EthLikeTokenConfig[];
553
+ };
554
+ injective: {
555
+ tokens: EthLikeTokenConfig[];
556
+ };
557
+ iota: {
558
+ tokens: EthLikeTokenConfig[];
559
+ };
560
+ irys: {
561
+ tokens: EthLikeTokenConfig[];
562
+ };
563
+ islm: {
564
+ tokens: EthLikeTokenConfig[];
565
+ };
566
+ jovayeth: {
567
+ tokens: EthLikeTokenConfig[];
568
+ };
569
+ kaia: {
570
+ tokens: EthLikeTokenConfig[];
571
+ };
572
+ kaspa: {
573
+ tokens: EthLikeTokenConfig[];
574
+ };
575
+ katanaeth: {
576
+ tokens: EthLikeTokenConfig[];
577
+ };
578
+ kavacosmos: {
579
+ tokens: EthLikeTokenConfig[];
580
+ };
581
+ kavaevm: {
582
+ tokens: EthLikeTokenConfig[];
583
+ };
584
+ lnbtc: {
585
+ tokens: EthLikeTokenConfig[];
586
+ };
587
+ ltc: {
588
+ tokens: EthLikeTokenConfig[];
589
+ };
590
+ mantle: {
591
+ tokens: EthLikeTokenConfig[];
592
+ };
593
+ mantra: {
594
+ tokens: EthLikeTokenConfig[];
595
+ };
596
+ megaeth: {
597
+ tokens: EthLikeTokenConfig[];
598
+ };
599
+ xpl: {
600
+ tokens: EthLikeTokenConfig[];
601
+ };
602
+ phrs: {
603
+ tokens: EthLikeTokenConfig[];
604
+ };
605
+ prividiumeth: {
606
+ tokens: EthLikeTokenConfig[];
607
+ };
608
+ ctc: {
609
+ tokens: EthLikeTokenConfig[];
610
+ };
611
+ hypeevm: {
612
+ tokens: EthLikeTokenConfig[];
613
+ };
614
+ hyperliquid: {
615
+ tokens: EthLikeTokenConfig[];
616
+ };
617
+ oas: {
618
+ tokens: EthLikeTokenConfig[];
619
+ };
620
+ opbnb: {
621
+ tokens: EthLikeTokenConfig[];
622
+ };
623
+ okbxlayer: {
624
+ tokens: EthLikeTokenConfig[];
625
+ };
626
+ osmo: {
627
+ tokens: EthLikeTokenConfig[];
628
+ };
629
+ plume: {
630
+ tokens: EthLikeTokenConfig[];
631
+ };
632
+ rbtc: {
633
+ tokens: EthLikeTokenConfig[];
634
+ };
635
+ scrolleth: {
636
+ tokens: EthLikeTokenConfig[];
637
+ };
638
+ sgb: {
639
+ tokens: EthLikeTokenConfig[];
640
+ };
641
+ sei: {
642
+ tokens: EthLikeTokenConfig[];
643
+ };
644
+ sonic: {
645
+ tokens: EthLikeTokenConfig[];
646
+ };
647
+ starknet: {
648
+ tokens: EthLikeTokenConfig[];
649
+ };
650
+ stt: {
651
+ tokens: EthLikeTokenConfig[];
652
+ };
653
+ susd: {
654
+ tokens: EthLikeTokenConfig[];
655
+ };
656
+ thor: {
657
+ tokens: EthLikeTokenConfig[];
658
+ };
659
+ tia: {
660
+ tokens: EthLikeTokenConfig[];
661
+ };
662
+ usdt0: {
663
+ tokens: EthLikeTokenConfig[];
664
+ };
665
+ vet: {
666
+ tokens: EthLikeTokenConfig[];
667
+ };
668
+ wemix: {
669
+ tokens: EthLikeTokenConfig[];
670
+ };
671
+ xtz: {
672
+ tokens: EthLikeTokenConfig[];
673
+ };
674
+ xtzevm: {
675
+ tokens: EthLikeTokenConfig[];
676
+ };
677
+ zec: {
678
+ tokens: EthLikeTokenConfig[];
679
+ };
680
+ zeta: {
681
+ tokens: EthLikeTokenConfig[];
682
+ };
683
+ zksyncera: {
684
+ tokens: EthLikeTokenConfig[];
685
+ };
686
+ ip: {
687
+ tokens: EthLikeTokenConfig[];
688
+ };
689
+ somi: {
690
+ tokens: EthLikeTokenConfig[];
691
+ };
692
+ fluenteth: {
693
+ tokens: EthLikeTokenConfig[];
694
+ };
695
+ morph: {
696
+ tokens: EthLikeTokenConfig[];
697
+ };
698
+ morpheth: {
699
+ tokens: EthLikeTokenConfig[];
700
+ };
701
+ arcusdc: {
702
+ tokens: EthLikeTokenConfig[];
703
+ };
704
+ unieth: {
705
+ tokens: EthLikeTokenConfig[];
706
+ };
707
+ bobaeth: {
708
+ tokens: EthLikeTokenConfig[];
709
+ };
710
+ };
711
+ export declare const getFormattedTokens: (coinMap?: import("./map").CoinMap) => Tokens;
712
+ /**
713
+ * Verify mainnet or testnet tokens
714
+ * @param tokens
715
+ */
716
+ export declare const verifyTokens: (tokens: BaseTokenConfig[]) => Record<string, boolean>;
146
717
  export declare const tokens: Tokens;
718
+ export declare const formattedAlgoTokens: AlgoTokenConfig[];
147
719
  export declare const mainnetTokens: {
148
720
  [x: string]: boolean;
149
721
  };
150
722
  export declare const testnetTokens: {
151
723
  [x: string]: boolean;
152
724
  };
725
+ /**
726
+ * Get formatted token configuration for a single coin
727
+ * @param coin - Static Base coin instance
728
+ * @returns The formatted token configuration for the coin, or undefined if not supported
729
+ */
730
+ export declare function getFormattedTokenConfigForCoin(coin: Readonly<BaseCoin>): TokenConfig | undefined;
731
+ export {};
153
732
  //# sourceMappingURL=tokenConfig.d.ts.map