@bitgo-beta/statics 15.1.1-beta.174 → 15.1.1-beta.1741

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 (120) hide show
  1. package/dist/src/account.d.ts +1049 -75
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +1662 -170
  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 +1557 -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 +2354 -53
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +2452 -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 +114 -0
  18. package/dist/src/coinFeatures.d.ts.map +1 -0
  19. package/dist/src/coinFeatures.js +746 -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 +128 -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 +108 -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 +110 -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 +206 -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 +18 -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 +2033 -0
  44. package/dist/src/coins/generateERC20.d.ts +36 -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 +19 -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 +1051 -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 +1792 -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 +167 -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 +476 -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 +22 -1
  75. package/dist/src/coins.d.ts.map +1 -1
  76. package/dist/src/coins.js +433 -1691
  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 +5 -1
  90. package/dist/src/index.d.ts.map +1 -1
  91. package/dist/src/index.js +34 -3
  92. package/dist/src/kaspa.d.ts +35 -0
  93. package/dist/src/kaspa.d.ts.map +1 -0
  94. package/dist/src/kaspa.js +63 -0
  95. package/dist/src/lightning.d.ts +43 -0
  96. package/dist/src/lightning.d.ts.map +1 -0
  97. package/dist/src/lightning.js +65 -0
  98. package/dist/src/map.d.ts +16 -1
  99. package/dist/src/map.d.ts.map +1 -1
  100. package/dist/src/map.js +194 -34
  101. package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
  102. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  103. package/dist/src/networkFeatureMapForTokens.js +40 -0
  104. package/dist/src/networks.d.ts +1882 -61
  105. package/dist/src/networks.d.ts.map +1 -1
  106. package/dist/src/networks.js +2316 -106
  107. package/dist/src/ofc.d.ts +695 -3
  108. package/dist/src/ofc.d.ts.map +1 -1
  109. package/dist/src/ofc.js +1653 -28
  110. package/dist/src/tokenConfig.d.ts +670 -108
  111. package/dist/src/tokenConfig.d.ts.map +1 -1
  112. package/dist/src/tokenConfig.js +1011 -220
  113. package/dist/src/utxo.d.ts +3 -1
  114. package/dist/src/utxo.d.ts.map +1 -1
  115. package/dist/src/utxo.js +84 -3
  116. package/dist/tsconfig.tsbuildinfo +1 -1
  117. package/package.json +6 -3
  118. package/.mocharc.js +0 -10
  119. package/.prettierignore +0 -2
  120. package/CHANGELOG.md +0 -1090
@@ -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,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 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 TrxTokenConfig = BaseContractAddressConfig;
25
+ export type StellarTokenConfig = BaseNetworkConfig;
26
+ export type SolTokenConfig = BaseNetworkConfig & {
21
27
  tokenAddress: string;
28
+ contractAddress: string;
22
29
  };
23
- export declare type AdaTokenConfig = BaseNetworkConfig & {
30
+ export type AdaTokenConfig = BaseNetworkConfig & {
24
31
  policyId: string;
25
32
  assetName: string;
33
+ contractAddress: string;
26
34
  };
27
- export declare type AlgoTokenConfig = BaseNetworkConfig & {
35
+ export type AlgoTokenConfig = BaseNetworkConfig & {
28
36
  alias?: string;
29
37
  };
30
- export declare type OfcTokenConfig = BaseTokenConfig & {
38
+ export type OfcTokenConfig = BaseTokenConfig & {
31
39
  backingCoin: string;
32
40
  isFiat: boolean;
33
41
  };
34
- export declare type HbarTokenConfig = BaseNetworkConfig;
35
- export declare type XrpTokenConfig = BaseNetworkConfig & {
42
+ export type HbarTokenConfig = BaseNetworkConfig & {
43
+ nodeAccountId: string;
44
+ tokenId: string;
45
+ contractAddress: string;
46
+ };
47
+ export type XrpTokenConfig = BaseNetworkConfig & {
36
48
  issuerAddress: string;
37
49
  currencyCode: string;
38
50
  domain?: string;
51
+ contractAddress: string;
39
52
  };
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
- };
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[];
203
+ };
204
+ apt: {
205
+ tokens: AptTokenConfig[];
206
+ nftCollections: AptNFTCollectionConfig[];
134
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;
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;
135
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[];
136
284
  export declare const ethGasConfigs: {
137
285
  minimumGasPrice: number;
138
286
  defaultGasPrice: number;
@@ -141,13 +289,427 @@ export declare const ethGasConfigs: {
141
289
  defaultGasLimitTokenSend: number;
142
290
  minimumGasLimit: number;
143
291
  maximumGasLimit: number;
292
+ newEthLikeCoinsMinGasLimit: number;
293
+ l1GasFeeBuffer: number;
144
294
  };
145
- 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
+ morpheth: {
682
+ tokens: EthLikeTokenConfig[];
683
+ };
684
+ arcusdc: {
685
+ tokens: EthLikeTokenConfig[];
686
+ };
687
+ unieth: {
688
+ tokens: EthLikeTokenConfig[];
689
+ };
690
+ bobaeth: {
691
+ tokens: EthLikeTokenConfig[];
692
+ };
693
+ };
694
+ export declare const getFormattedTokens: (coinMap?: import("./map").CoinMap) => Tokens;
695
+ /**
696
+ * Verify mainnet or testnet tokens
697
+ * @param tokens
698
+ */
699
+ export declare const verifyTokens: (tokens: BaseTokenConfig[]) => Record<string, boolean>;
146
700
  export declare const tokens: Tokens;
701
+ export declare const formattedAlgoTokens: AlgoTokenConfig[];
147
702
  export declare const mainnetTokens: {
148
703
  [x: string]: boolean;
149
704
  };
150
705
  export declare const testnetTokens: {
151
706
  [x: string]: boolean;
152
707
  };
708
+ /**
709
+ * Get formatted token configuration for a single coin
710
+ * @param coin - Static Base coin instance
711
+ * @returns The formatted token configuration for the coin, or undefined if not supported
712
+ */
713
+ export declare function getFormattedTokenConfigForCoin(coin: Readonly<BaseCoin>): TokenConfig | undefined;
714
+ export {};
153
715
  //# sourceMappingURL=tokenConfig.d.ts.map