@bitgo-beta/statics 10.0.1-alpha.48 → 10.0.1-alpha.480

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