@bitgo-beta/statics 15.1.1-beta.17 → 15.1.1-beta.1700

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 (132) 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 +1505 -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 +2463 -40
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +2575 -57
  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 +743 -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 +106 -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 +108 -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 +204 -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 +2024 -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 +987 -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 +1778 -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 +474 -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 -1412
  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 +60 -0
  98. package/dist/src/map.d.ts +16 -0
  99. package/dist/src/map.d.ts.map +1 -1
  100. package/dist/src/map.js +194 -17
  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 +31 -0
  104. package/dist/src/networks.d.ts +2076 -80
  105. package/dist/src/networks.d.ts.map +1 -1
  106. package/dist/src/networks.js +2610 -149
  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 +1652 -28
  110. package/dist/src/tokenConfig.d.ts +667 -102
  111. package/dist/src/tokenConfig.d.ts.map +1 -1
  112. package/dist/src/tokenConfig.js +1018 -205
  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 +85 -3
  116. package/dist/tsconfig.tsbuildinfo +1 -2744
  117. package/package.json +6 -3
  118. package/.mocharc.js +0 -10
  119. package/.prettierignore +0 -2
  120. package/CHANGELOG.md +0 -552
  121. package/dist/resources/dot/index.d.ts +0 -3
  122. package/dist/resources/dot/index.d.ts.map +0 -1
  123. package/dist/resources/dot/index.js +0 -15
  124. package/dist/resources/dot/mainnet.d.ts +0 -2
  125. package/dist/resources/dot/mainnet.d.ts.map +0 -1
  126. package/dist/resources/dot/mainnet.js +0 -5
  127. package/dist/resources/dot/westend.d.ts +0 -2
  128. package/dist/resources/dot/westend.d.ts.map +0 -1
  129. package/dist/resources/dot/westend.js +0 -5
  130. package/resources/dot/index.ts +0 -2
  131. package/resources/dot/mainnet.ts +0 -2
  132. 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,123 +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
- 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
- };
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[];
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[];
128
229
  };
129
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;
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[];
130
284
  export declare const ethGasConfigs: {
131
285
  minimumGasPrice: number;
132
286
  defaultGasPrice: number;
@@ -135,13 +289,424 @@ export declare const ethGasConfigs: {
135
289
  defaultGasLimitTokenSend: number;
136
290
  minimumGasLimit: number;
137
291
  maximumGasLimit: number;
292
+ newEthLikeCoinsMinGasLimit: number;
293
+ l1GasFeeBuffer: number;
138
294
  };
139
- 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
+ sgb: {
622
+ tokens: EthLikeTokenConfig[];
623
+ };
624
+ sei: {
625
+ tokens: EthLikeTokenConfig[];
626
+ };
627
+ sonic: {
628
+ tokens: EthLikeTokenConfig[];
629
+ };
630
+ stt: {
631
+ tokens: EthLikeTokenConfig[];
632
+ };
633
+ susd: {
634
+ tokens: EthLikeTokenConfig[];
635
+ };
636
+ thor: {
637
+ tokens: EthLikeTokenConfig[];
638
+ };
639
+ tia: {
640
+ tokens: EthLikeTokenConfig[];
641
+ };
642
+ usdt0: {
643
+ tokens: EthLikeTokenConfig[];
644
+ };
645
+ vet: {
646
+ tokens: EthLikeTokenConfig[];
647
+ };
648
+ wemix: {
649
+ tokens: EthLikeTokenConfig[];
650
+ };
651
+ xtz: {
652
+ tokens: EthLikeTokenConfig[];
653
+ };
654
+ xtzevm: {
655
+ tokens: EthLikeTokenConfig[];
656
+ };
657
+ zec: {
658
+ tokens: EthLikeTokenConfig[];
659
+ };
660
+ zeta: {
661
+ tokens: EthLikeTokenConfig[];
662
+ };
663
+ zksyncera: {
664
+ tokens: EthLikeTokenConfig[];
665
+ };
666
+ ip: {
667
+ tokens: EthLikeTokenConfig[];
668
+ };
669
+ somi: {
670
+ tokens: EthLikeTokenConfig[];
671
+ };
672
+ fluenteth: {
673
+ tokens: EthLikeTokenConfig[];
674
+ };
675
+ morph: {
676
+ tokens: EthLikeTokenConfig[];
677
+ };
678
+ morpheth: {
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>;
140
697
  export declare const tokens: Tokens;
698
+ export declare const formattedAlgoTokens: AlgoTokenConfig[];
141
699
  export declare const mainnetTokens: {
142
700
  [x: string]: boolean;
143
701
  };
144
702
  export declare const testnetTokens: {
145
703
  [x: string]: boolean;
146
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 {};
147
712
  //# sourceMappingURL=tokenConfig.d.ts.map