@bitgo-beta/statics 10.0.1-alpha.5 → 10.0.1-alpha.500

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