@talismn/chaindata-provider 0.8.0 → 0.8.2
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.
- package/dist/declarations/src/ChaindataProvider.d.ts +90 -17
- package/dist/declarations/src/TalismanChaindataDatabase.d.ts +9 -0
- package/dist/declarations/src/constants.d.ts +13 -14
- package/dist/declarations/src/index.d.ts +5 -3
- package/dist/declarations/src/init/chains.d.ts +243 -0
- package/dist/declarations/src/init/evm-networks.d.ts +61 -0
- package/dist/declarations/src/init/index.d.ts +5 -0
- package/dist/declarations/src/init/mini-metadatas.d.ts +21 -0
- package/dist/declarations/src/init/tokens.d.ts +103 -0
- package/dist/declarations/src/log.d.ts +2 -0
- package/dist/declarations/src/net.d.ts +8 -0
- package/dist/declarations/src/types/Chain.d.ts +29 -1
- package/dist/declarations/src/types/ChaindataProviderInterface.d.ts +42 -0
- package/dist/declarations/src/types/EvmNetwork.d.ts +11 -1
- package/dist/declarations/src/types/Token/EvmErc20Token.d.ts +15 -0
- package/dist/declarations/src/types/Token/EvmNativeToken.d.ts +10 -0
- package/dist/declarations/src/types/Token/EvmUniswapV2Token.d.ts +22 -0
- package/dist/declarations/src/types/Token/SubstrateAssetsToken.d.ts +12 -0
- package/dist/declarations/src/types/Token/SubstrateEquilibriumToken.d.ts +11 -0
- package/dist/declarations/src/types/Token/SubstrateForeignAssetsToken.d.ts +12 -0
- package/dist/declarations/src/types/Token/SubstrateNativeToken.d.ts +13 -0
- package/dist/declarations/src/types/Token/SubstratePsp22Token.d.ts +11 -0
- package/dist/declarations/src/types/Token/SubstrateTokensToken.d.ts +11 -0
- package/dist/declarations/src/types/Token/index.d.ts +26 -0
- package/dist/declarations/src/types/Token/types.d.ts +27 -0
- package/dist/declarations/src/types/index.d.ts +1 -0
- package/dist/declarations/src/upgrades/2024-01-25-upgradeAddIsDefaultToExistingChains.d.ts +2 -0
- package/dist/declarations/src/upgrades/2024-01-25-upgradeRemoveSymbolFromNativeTokenId.d.ts +2 -0
- package/dist/declarations/src/upgrades/index.d.ts +1 -0
- package/dist/declarations/src/util.d.ts +27 -0
- package/dist/net-BE0MfrDv.cjs.dev.js +89 -0
- package/dist/net-BE0MfrDv.cjs.prod.js +89 -0
- package/dist/net-il4EYhJN.esm.js +55 -0
- package/dist/talismn-chaindata-provider.cjs.dev.js +893 -57
- package/dist/talismn-chaindata-provider.cjs.prod.js +893 -57
- package/dist/talismn-chaindata-provider.esm.js +842 -31
- package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.d.ts +1 -0
- package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.dev.js +910 -0
- package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.js +7 -0
- package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.prod.js +910 -0
- package/init/chains/dist/talismn-chaindata-provider-init-chains.esm.js +908 -0
- package/init/chains/package.json +4 -0
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.d.ts +1 -0
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.dev.js +69 -0
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.js +7 -0
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.prod.js +69 -0
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.esm.js +67 -0
- package/init/evm-networks/package.json +4 -0
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.d.ts +1 -0
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.dev.js +311 -0
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.js +7 -0
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.prod.js +311 -0
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.esm.js +309 -0
- package/init/mini-metadatas/package.json +4 -0
- package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.d.ts +1 -0
- package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.dev.js +406 -0
- package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.js +7 -0
- package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.prod.js +406 -0
- package/init/tokens/dist/talismn-chaindata-provider-init-tokens.esm.js +404 -0
- package/init/tokens/package.json +4 -0
- package/net/dist/talismn-chaindata-provider-net.cjs.d.ts +1 -0
- package/net/dist/talismn-chaindata-provider-net.cjs.dev.js +14 -0
- package/net/dist/talismn-chaindata-provider-net.cjs.js +7 -0
- package/net/dist/talismn-chaindata-provider-net.cjs.prod.js +14 -0
- package/net/dist/talismn-chaindata-provider-net.esm.js +1 -0
- package/net/package.json +4 -0
- package/package.json +26 -13
- package/CHANGELOG.md +0 -115
- package/dist/declarations/src/helpers.d.ts +0 -3
- package/dist/declarations/src/plugins.d.ts +0 -17
- package/dist/declarations/src/types/Token.d.ts +0 -58
- package/plugins/dist/talismn-chaindata-provider-plugins.cjs.d.ts +0 -1
- package/plugins/dist/talismn-chaindata-provider-plugins.cjs.dev.js +0 -2
- package/plugins/dist/talismn-chaindata-provider-plugins.cjs.js +0 -7
- package/plugins/dist/talismn-chaindata-provider-plugins.cjs.prod.js +0 -2
- package/plugins/dist/talismn-chaindata-provider-plugins.esm.js +0 -1
- package/plugins/package.json +0 -4
|
@@ -0,0 +1,406 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const tokens = [{
|
|
4
|
+
id: "kusama-asset-hub-substrate-assets-16-aris",
|
|
5
|
+
type: "substrate-assets",
|
|
6
|
+
isTestnet: false,
|
|
7
|
+
isDefault: true,
|
|
8
|
+
symbol: "ARIS",
|
|
9
|
+
decimals: 8,
|
|
10
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/aris.svg",
|
|
11
|
+
existentialDeposit: "10000000",
|
|
12
|
+
assetId: "16",
|
|
13
|
+
isFrozen: false,
|
|
14
|
+
chain: {
|
|
15
|
+
id: "kusama-asset-hub"
|
|
16
|
+
}
|
|
17
|
+
}, {
|
|
18
|
+
id: "kusama-asset-hub-substrate-assets-1984-usdt",
|
|
19
|
+
type: "substrate-assets",
|
|
20
|
+
isTestnet: false,
|
|
21
|
+
isDefault: true,
|
|
22
|
+
symbol: "USDT",
|
|
23
|
+
decimals: 6,
|
|
24
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdt.svg",
|
|
25
|
+
existentialDeposit: "100",
|
|
26
|
+
assetId: "1984",
|
|
27
|
+
isFrozen: false,
|
|
28
|
+
chain: {
|
|
29
|
+
id: "kusama-asset-hub"
|
|
30
|
+
},
|
|
31
|
+
coingeckoId: "tether"
|
|
32
|
+
}, {
|
|
33
|
+
id: "kusama-asset-hub-substrate-assets-50000002-dusd",
|
|
34
|
+
type: "substrate-assets",
|
|
35
|
+
isTestnet: false,
|
|
36
|
+
isDefault: true,
|
|
37
|
+
symbol: "dUSD",
|
|
38
|
+
decimals: 6,
|
|
39
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dusd.webp",
|
|
40
|
+
existentialDeposit: "1",
|
|
41
|
+
assetId: "50000002",
|
|
42
|
+
isFrozen: false,
|
|
43
|
+
chain: {
|
|
44
|
+
id: "kusama-asset-hub"
|
|
45
|
+
}
|
|
46
|
+
}, {
|
|
47
|
+
id: "kusama-asset-hub-substrate-assets-8-rmrk",
|
|
48
|
+
type: "substrate-assets",
|
|
49
|
+
isTestnet: false,
|
|
50
|
+
isDefault: true,
|
|
51
|
+
symbol: "RMRK",
|
|
52
|
+
decimals: 10,
|
|
53
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/rmrk.svg",
|
|
54
|
+
existentialDeposit: "10000",
|
|
55
|
+
assetId: "8",
|
|
56
|
+
isFrozen: false,
|
|
57
|
+
chain: {
|
|
58
|
+
id: "kusama-asset-hub"
|
|
59
|
+
},
|
|
60
|
+
coingeckoId: "rmrk"
|
|
61
|
+
}, {
|
|
62
|
+
id: "kusama-asset-hub-substrate-native",
|
|
63
|
+
type: "substrate-native",
|
|
64
|
+
isTestnet: false,
|
|
65
|
+
isDefault: true,
|
|
66
|
+
symbol: "KSM",
|
|
67
|
+
decimals: 12,
|
|
68
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg",
|
|
69
|
+
existentialDeposit: "3333333",
|
|
70
|
+
chain: {
|
|
71
|
+
id: "kusama-asset-hub"
|
|
72
|
+
},
|
|
73
|
+
coingeckoId: "kusama"
|
|
74
|
+
}, {
|
|
75
|
+
id: "kusama-bridge-hub-substrate-native",
|
|
76
|
+
type: "substrate-native",
|
|
77
|
+
isTestnet: false,
|
|
78
|
+
isDefault: true,
|
|
79
|
+
symbol: "KSM",
|
|
80
|
+
decimals: 12,
|
|
81
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/kusama-bridge-hub.svg",
|
|
82
|
+
existentialDeposit: "33333333",
|
|
83
|
+
chain: {
|
|
84
|
+
id: "kusama-bridge-hub"
|
|
85
|
+
},
|
|
86
|
+
coingeckoId: "kusama"
|
|
87
|
+
}, {
|
|
88
|
+
id: "kusama-substrate-native",
|
|
89
|
+
type: "substrate-native",
|
|
90
|
+
isTestnet: false,
|
|
91
|
+
isDefault: true,
|
|
92
|
+
symbol: "KSM",
|
|
93
|
+
decimals: 12,
|
|
94
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg",
|
|
95
|
+
existentialDeposit: "333333333",
|
|
96
|
+
chain: {
|
|
97
|
+
id: "kusama"
|
|
98
|
+
},
|
|
99
|
+
coingeckoId: "kusama"
|
|
100
|
+
}, {
|
|
101
|
+
id: "polkadot-asset-hub-substrate-assets-1337-usdc",
|
|
102
|
+
type: "substrate-assets",
|
|
103
|
+
isTestnet: false,
|
|
104
|
+
isDefault: true,
|
|
105
|
+
symbol: "USDC",
|
|
106
|
+
decimals: 6,
|
|
107
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdc.svg",
|
|
108
|
+
existentialDeposit: "10000",
|
|
109
|
+
assetId: "1337",
|
|
110
|
+
isFrozen: false,
|
|
111
|
+
chain: {
|
|
112
|
+
id: "polkadot-asset-hub"
|
|
113
|
+
},
|
|
114
|
+
coingeckoId: "usd-coin"
|
|
115
|
+
}, {
|
|
116
|
+
id: "polkadot-asset-hub-substrate-assets-17-wifd",
|
|
117
|
+
type: "substrate-assets",
|
|
118
|
+
isTestnet: false,
|
|
119
|
+
isDefault: true,
|
|
120
|
+
symbol: "WIFD",
|
|
121
|
+
decimals: 10,
|
|
122
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/wifd.svg",
|
|
123
|
+
existentialDeposit: "1",
|
|
124
|
+
assetId: "17",
|
|
125
|
+
isFrozen: false,
|
|
126
|
+
chain: {
|
|
127
|
+
id: "polkadot-asset-hub"
|
|
128
|
+
}
|
|
129
|
+
}, {
|
|
130
|
+
id: "polkadot-asset-hub-substrate-assets-18-dota",
|
|
131
|
+
type: "substrate-assets",
|
|
132
|
+
isTestnet: false,
|
|
133
|
+
isDefault: true,
|
|
134
|
+
symbol: "DOTA",
|
|
135
|
+
decimals: 4,
|
|
136
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dota.svg",
|
|
137
|
+
existentialDeposit: "1",
|
|
138
|
+
assetId: "18",
|
|
139
|
+
isFrozen: false,
|
|
140
|
+
chain: {
|
|
141
|
+
id: "polkadot-asset-hub"
|
|
142
|
+
}
|
|
143
|
+
}, {
|
|
144
|
+
id: "polkadot-asset-hub-substrate-assets-1984-usdt",
|
|
145
|
+
type: "substrate-assets",
|
|
146
|
+
isTestnet: false,
|
|
147
|
+
isDefault: true,
|
|
148
|
+
symbol: "USDT",
|
|
149
|
+
decimals: 6,
|
|
150
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdt.svg",
|
|
151
|
+
existentialDeposit: "10000",
|
|
152
|
+
assetId: "1984",
|
|
153
|
+
isFrozen: false,
|
|
154
|
+
chain: {
|
|
155
|
+
id: "polkadot-asset-hub"
|
|
156
|
+
},
|
|
157
|
+
coingeckoId: "tether"
|
|
158
|
+
}, {
|
|
159
|
+
id: "polkadot-asset-hub-substrate-assets-23-pink",
|
|
160
|
+
type: "substrate-assets",
|
|
161
|
+
isTestnet: false,
|
|
162
|
+
isDefault: true,
|
|
163
|
+
symbol: "PINK",
|
|
164
|
+
decimals: 10,
|
|
165
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/pink.svg",
|
|
166
|
+
existentialDeposit: "1",
|
|
167
|
+
assetId: "23",
|
|
168
|
+
isFrozen: false,
|
|
169
|
+
chain: {
|
|
170
|
+
id: "polkadot-asset-hub"
|
|
171
|
+
}
|
|
172
|
+
}, {
|
|
173
|
+
id: "polkadot-asset-hub-substrate-assets-30-ded",
|
|
174
|
+
type: "substrate-assets",
|
|
175
|
+
isTestnet: false,
|
|
176
|
+
isDefault: true,
|
|
177
|
+
symbol: "DED",
|
|
178
|
+
decimals: 10,
|
|
179
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ded.svg",
|
|
180
|
+
existentialDeposit: "1",
|
|
181
|
+
assetId: "30",
|
|
182
|
+
isFrozen: false,
|
|
183
|
+
chain: {
|
|
184
|
+
id: "polkadot-asset-hub"
|
|
185
|
+
},
|
|
186
|
+
coingeckoId: "dot-is-ded"
|
|
187
|
+
}, {
|
|
188
|
+
id: "polkadot-asset-hub-substrate-assets-31337-wud",
|
|
189
|
+
type: "substrate-assets",
|
|
190
|
+
isTestnet: false,
|
|
191
|
+
isDefault: true,
|
|
192
|
+
symbol: "WUD",
|
|
193
|
+
decimals: 10,
|
|
194
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/wud.webp",
|
|
195
|
+
existentialDeposit: "10000000",
|
|
196
|
+
assetId: "31337",
|
|
197
|
+
isFrozen: false,
|
|
198
|
+
chain: {
|
|
199
|
+
id: "polkadot-asset-hub"
|
|
200
|
+
},
|
|
201
|
+
coingeckoId: "gavun-wud"
|
|
202
|
+
}, {
|
|
203
|
+
id: "polkadot-asset-hub-substrate-assets-555-game",
|
|
204
|
+
type: "substrate-assets",
|
|
205
|
+
isTestnet: false,
|
|
206
|
+
isDefault: true,
|
|
207
|
+
symbol: "GAME",
|
|
208
|
+
decimals: 10,
|
|
209
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/game.svg",
|
|
210
|
+
existentialDeposit: "100000",
|
|
211
|
+
assetId: "555",
|
|
212
|
+
isFrozen: false,
|
|
213
|
+
chain: {
|
|
214
|
+
id: "polkadot-asset-hub"
|
|
215
|
+
}
|
|
216
|
+
}, {
|
|
217
|
+
id: "polkadot-asset-hub-substrate-assets-690-bork",
|
|
218
|
+
type: "substrate-assets",
|
|
219
|
+
isTestnet: false,
|
|
220
|
+
isDefault: true,
|
|
221
|
+
symbol: "BORK",
|
|
222
|
+
decimals: 10,
|
|
223
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/bork.svg",
|
|
224
|
+
existentialDeposit: "1",
|
|
225
|
+
assetId: "690",
|
|
226
|
+
isFrozen: false,
|
|
227
|
+
chain: {
|
|
228
|
+
id: "polkadot-asset-hub"
|
|
229
|
+
}
|
|
230
|
+
}, {
|
|
231
|
+
id: "polkadot-asset-hub-substrate-foreignassets-ajun",
|
|
232
|
+
type: "substrate-foreignassets",
|
|
233
|
+
isTestnet: false,
|
|
234
|
+
isDefault: true,
|
|
235
|
+
symbol: "AJUN",
|
|
236
|
+
decimals: 12,
|
|
237
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ajun.svg",
|
|
238
|
+
existentialDeposit: "1000000000",
|
|
239
|
+
onChainId: '{"parents":1,"interior":{"type":"X1","value":{"type":"Parachain","value":2051}}}',
|
|
240
|
+
isFrozen: false,
|
|
241
|
+
chain: {
|
|
242
|
+
id: "polkadot-asset-hub"
|
|
243
|
+
},
|
|
244
|
+
coingeckoId: "ajuna-network-2"
|
|
245
|
+
}, {
|
|
246
|
+
id: "polkadot-asset-hub-substrate-foreignassets-bnc",
|
|
247
|
+
type: "substrate-foreignassets",
|
|
248
|
+
isTestnet: false,
|
|
249
|
+
isDefault: true,
|
|
250
|
+
symbol: "BNC",
|
|
251
|
+
decimals: 12,
|
|
252
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/bnc.svg",
|
|
253
|
+
existentialDeposit: "1",
|
|
254
|
+
onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2030},{"type":"GeneralKey","value":{"length":2,"data":"hex:0x0001000000000000000000000000000000000000000000000000000000000000"}}]}}',
|
|
255
|
+
isFrozen: false,
|
|
256
|
+
chain: {
|
|
257
|
+
id: "polkadot-asset-hub"
|
|
258
|
+
},
|
|
259
|
+
coingeckoId: "bifrost-native-coin"
|
|
260
|
+
}, {
|
|
261
|
+
id: "polkadot-asset-hub-substrate-foreignassets-eq",
|
|
262
|
+
type: "substrate-foreignassets",
|
|
263
|
+
isTestnet: false,
|
|
264
|
+
isDefault: true,
|
|
265
|
+
symbol: "EQ",
|
|
266
|
+
decimals: 9,
|
|
267
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/eq.svg",
|
|
268
|
+
existentialDeposit: "100000000000",
|
|
269
|
+
onChainId: '{"parents":1,"interior":{"type":"X1","value":{"type":"Parachain","value":2011}}}',
|
|
270
|
+
isFrozen: false,
|
|
271
|
+
chain: {
|
|
272
|
+
id: "polkadot-asset-hub"
|
|
273
|
+
},
|
|
274
|
+
coingeckoId: "equilibrium-token"
|
|
275
|
+
}, {
|
|
276
|
+
id: "polkadot-asset-hub-substrate-foreignassets-eqd",
|
|
277
|
+
type: "substrate-foreignassets",
|
|
278
|
+
isTestnet: false,
|
|
279
|
+
isDefault: true,
|
|
280
|
+
symbol: "EQD",
|
|
281
|
+
decimals: 9,
|
|
282
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/eqd.svg",
|
|
283
|
+
existentialDeposit: "1000000000",
|
|
284
|
+
onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2011},{"type":"GeneralKey","value":{"length":3,"data":"hex:0x6571640000000000000000000000000000000000000000000000000000000000"}}]}}',
|
|
285
|
+
isFrozen: false,
|
|
286
|
+
chain: {
|
|
287
|
+
id: "polkadot-asset-hub"
|
|
288
|
+
}
|
|
289
|
+
}, {
|
|
290
|
+
id: "polkadot-asset-hub-substrate-foreignassets-glmr",
|
|
291
|
+
type: "substrate-foreignassets",
|
|
292
|
+
isTestnet: false,
|
|
293
|
+
isDefault: true,
|
|
294
|
+
symbol: "GLMR",
|
|
295
|
+
decimals: 18,
|
|
296
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/glmr.svg",
|
|
297
|
+
existentialDeposit: "1",
|
|
298
|
+
onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2004},{"type":"PalletInstance","value":10}]}}',
|
|
299
|
+
isFrozen: false,
|
|
300
|
+
chain: {
|
|
301
|
+
id: "polkadot-asset-hub"
|
|
302
|
+
},
|
|
303
|
+
coingeckoId: "moonbeam"
|
|
304
|
+
}, {
|
|
305
|
+
id: "polkadot-asset-hub-substrate-foreignassets-hdx",
|
|
306
|
+
type: "substrate-foreignassets",
|
|
307
|
+
isTestnet: false,
|
|
308
|
+
isDefault: true,
|
|
309
|
+
symbol: "HDX",
|
|
310
|
+
decimals: 12,
|
|
311
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/hdx.svg",
|
|
312
|
+
existentialDeposit: "1",
|
|
313
|
+
onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2034},{"type":"GeneralIndex","value":"bigint:0"}]}}',
|
|
314
|
+
isFrozen: false,
|
|
315
|
+
chain: {
|
|
316
|
+
id: "polkadot-asset-hub"
|
|
317
|
+
},
|
|
318
|
+
coingeckoId: "hydradx"
|
|
319
|
+
}, {
|
|
320
|
+
id: "polkadot-asset-hub-substrate-foreignassets-ksm",
|
|
321
|
+
type: "substrate-foreignassets",
|
|
322
|
+
isTestnet: false,
|
|
323
|
+
isDefault: true,
|
|
324
|
+
symbol: "KSM",
|
|
325
|
+
decimals: 12,
|
|
326
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg",
|
|
327
|
+
existentialDeposit: "1000000000",
|
|
328
|
+
onChainId: '{"parents":2,"interior":{"type":"X1","value":{"type":"GlobalConsensus","value":{"type":"Kusama"}}}}',
|
|
329
|
+
isFrozen: false,
|
|
330
|
+
chain: {
|
|
331
|
+
id: "polkadot-asset-hub"
|
|
332
|
+
},
|
|
333
|
+
coingeckoId: "kusama"
|
|
334
|
+
}, {
|
|
335
|
+
id: "polkadot-asset-hub-substrate-foreignassets-myth",
|
|
336
|
+
type: "substrate-foreignassets",
|
|
337
|
+
isTestnet: false,
|
|
338
|
+
isDefault: true,
|
|
339
|
+
symbol: "MYTH",
|
|
340
|
+
decimals: 18,
|
|
341
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/myth.svg",
|
|
342
|
+
existentialDeposit: "10000000000000000",
|
|
343
|
+
onChainId: '{"parents":1,"interior":{"type":"X1","value":{"type":"Parachain","value":3369}}}',
|
|
344
|
+
isFrozen: false,
|
|
345
|
+
chain: {
|
|
346
|
+
id: "polkadot-asset-hub"
|
|
347
|
+
},
|
|
348
|
+
coingeckoId: "mythos"
|
|
349
|
+
}, {
|
|
350
|
+
id: "polkadot-asset-hub-substrate-foreignassets-vdot",
|
|
351
|
+
type: "substrate-foreignassets",
|
|
352
|
+
isTestnet: false,
|
|
353
|
+
isDefault: true,
|
|
354
|
+
symbol: "vDOT",
|
|
355
|
+
decimals: 10,
|
|
356
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/vdot.svg",
|
|
357
|
+
existentialDeposit: "1",
|
|
358
|
+
onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2030},{"type":"GeneralKey","value":{"length":2,"data":"hex:0x0900000000000000000000000000000000000000000000000000000000000000"}}]}}',
|
|
359
|
+
isFrozen: false,
|
|
360
|
+
chain: {
|
|
361
|
+
id: "polkadot-asset-hub"
|
|
362
|
+
},
|
|
363
|
+
coingeckoId: "voucher-dot"
|
|
364
|
+
}, {
|
|
365
|
+
id: "polkadot-asset-hub-substrate-native",
|
|
366
|
+
type: "substrate-native",
|
|
367
|
+
isTestnet: false,
|
|
368
|
+
isDefault: true,
|
|
369
|
+
symbol: "DOT",
|
|
370
|
+
decimals: 10,
|
|
371
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dot.svg",
|
|
372
|
+
existentialDeposit: "100000000",
|
|
373
|
+
chain: {
|
|
374
|
+
id: "polkadot-asset-hub"
|
|
375
|
+
},
|
|
376
|
+
coingeckoId: "polkadot"
|
|
377
|
+
}, {
|
|
378
|
+
id: "polkadot-bridge-hub-substrate-native",
|
|
379
|
+
type: "substrate-native",
|
|
380
|
+
isTestnet: false,
|
|
381
|
+
isDefault: true,
|
|
382
|
+
symbol: "DOT",
|
|
383
|
+
decimals: 10,
|
|
384
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/polkadot-bridge-hub.svg",
|
|
385
|
+
existentialDeposit: "1000000000",
|
|
386
|
+
chain: {
|
|
387
|
+
id: "polkadot-bridge-hub"
|
|
388
|
+
},
|
|
389
|
+
coingeckoId: "polkadot"
|
|
390
|
+
}, {
|
|
391
|
+
id: "polkadot-substrate-native",
|
|
392
|
+
type: "substrate-native",
|
|
393
|
+
isTestnet: false,
|
|
394
|
+
isDefault: true,
|
|
395
|
+
symbol: "DOT",
|
|
396
|
+
decimals: 10,
|
|
397
|
+
logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dot.svg",
|
|
398
|
+
existentialDeposit: "10000000000",
|
|
399
|
+
chain: {
|
|
400
|
+
id: "polkadot"
|
|
401
|
+
},
|
|
402
|
+
coingeckoId: "polkadot",
|
|
403
|
+
dcentName: "POLKADOT"
|
|
404
|
+
}];
|
|
405
|
+
|
|
406
|
+
exports.tokens = tokens;
|