chain-registry 1.63.99 → 1.63.101
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/esm/mainnet/assets.js +4 -0
- package/esm/mainnet/bitbadges/assets.js +52 -0
- package/esm/mainnet/bitbadges/chain.js +61 -0
- package/esm/mainnet/bitbadges/index.js +4 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/named.js +2 -0
- package/esm/mainnet/osmosis/assets.js +264 -1
- package/esm/mainnet/pryzm/chain.js +2 -2
- package/esm/mainnet/rootstock/assets.js +66 -0
- package/esm/mainnet/rootstock/chain.js +41 -0
- package/esm/mainnet/rootstock/index.js +4 -0
- package/esm/mainnet/scorum/assets.js +3 -31
- package/esm/mainnet/scorum/chain.js +1 -1
- package/esm/noncosmos/internetcomputer/assets.js +10 -1
- package/esm/testnet/xiontestnet/chain.js +37 -10
- package/mainnet/assets.js +4 -0
- package/mainnet/bitbadges/assets.d.ts +3 -0
- package/mainnet/bitbadges/assets.js +54 -0
- package/mainnet/bitbadges/chain.d.ts +3 -0
- package/mainnet/bitbadges/chain.js +63 -0
- package/mainnet/bitbadges/index.d.ts +2 -0
- package/mainnet/bitbadges/index.js +10 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/named.d.ts +2 -0
- package/mainnet/named.js +6 -4
- package/mainnet/osmosis/assets.js +264 -1
- package/mainnet/pryzm/chain.js +2 -2
- package/mainnet/rootstock/assets.d.ts +3 -0
- package/mainnet/rootstock/assets.js +68 -0
- package/mainnet/rootstock/chain.d.ts +3 -0
- package/mainnet/rootstock/chain.js +43 -0
- package/mainnet/rootstock/index.d.ts +2 -0
- package/mainnet/rootstock/index.js +10 -0
- package/mainnet/scorum/assets.js +3 -31
- package/mainnet/scorum/chain.js +1 -1
- package/noncosmos/internetcomputer/assets.js +10 -1
- package/package.json +4 -4
- package/testnet/xiontestnet/chain.js +37 -10
package/esm/mainnet/assets.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as _ethereum from './ethereum';
|
|
2
|
+
import * as _rootstock from './rootstock';
|
|
2
3
|
import * as _solana from './solana';
|
|
3
4
|
import * as _ton from './ton';
|
|
4
5
|
import * as _tron from './tron';
|
|
@@ -18,6 +19,7 @@ import * as _aura1 from './aura1';
|
|
|
18
19
|
import * as _axelar from './axelar';
|
|
19
20
|
import * as _bandchain from './bandchain';
|
|
20
21
|
import * as _beezee from './beezee';
|
|
22
|
+
import * as _bitbadges from './bitbadges';
|
|
21
23
|
import * as _bitcanna from './bitcanna';
|
|
22
24
|
import * as _bitsong from './bitsong';
|
|
23
25
|
import * as _blockx from './blockx';
|
|
@@ -187,6 +189,7 @@ import * as _xpla from './xpla';
|
|
|
187
189
|
import * as _zetachain from './zetachain';
|
|
188
190
|
const assets = [
|
|
189
191
|
_ethereum.assets,
|
|
192
|
+
_rootstock.assets,
|
|
190
193
|
_solana.assets,
|
|
191
194
|
_ton.assets,
|
|
192
195
|
_tron.assets,
|
|
@@ -206,6 +209,7 @@ const assets = [
|
|
|
206
209
|
_axelar.assets,
|
|
207
210
|
_bandchain.assets,
|
|
208
211
|
_beezee.assets,
|
|
212
|
+
_bitbadges.assets,
|
|
209
213
|
_bitcanna.assets,
|
|
210
214
|
_bitsong.assets,
|
|
211
215
|
_blockx.assets,
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'bitbadges',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: '$BADGE is the native in-app credits token for BitBadges, a platform for creating and sharing digital badges.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ubadge',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'badge',
|
|
11
|
+
exponent: 9
|
|
12
|
+
}],
|
|
13
|
+
base: 'ubadge',
|
|
14
|
+
name: 'BitBadges Credits',
|
|
15
|
+
display: 'badge',
|
|
16
|
+
symbol: 'BADGE',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png'
|
|
22
|
+
}],
|
|
23
|
+
socials: {
|
|
24
|
+
website: 'https://bitbadges.io/',
|
|
25
|
+
twitter: 'https://twitter.com/bitbadges_io'
|
|
26
|
+
}
|
|
27
|
+
}, {
|
|
28
|
+
description: 'The native staking denom for the BitBadges blockchain.',
|
|
29
|
+
denom_units: [{
|
|
30
|
+
denom: 'ustake',
|
|
31
|
+
exponent: 0
|
|
32
|
+
}, {
|
|
33
|
+
denom: 'stake',
|
|
34
|
+
exponent: 9
|
|
35
|
+
}],
|
|
36
|
+
base: 'ustake',
|
|
37
|
+
name: 'BitBadges Staking',
|
|
38
|
+
display: 'stake',
|
|
39
|
+
symbol: 'STAKE',
|
|
40
|
+
logo_URIs: {
|
|
41
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png'
|
|
42
|
+
},
|
|
43
|
+
images: [{
|
|
44
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png'
|
|
45
|
+
}],
|
|
46
|
+
socials: {
|
|
47
|
+
website: 'https://bitbadges.io/',
|
|
48
|
+
twitter: 'https://twitter.com/bitbadges_io'
|
|
49
|
+
}
|
|
50
|
+
}]
|
|
51
|
+
};
|
|
52
|
+
export default info;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'bitbadges',
|
|
4
|
+
status: 'live',
|
|
5
|
+
chain_type: 'cosmos',
|
|
6
|
+
network_type: 'mainnet',
|
|
7
|
+
website: 'https://bitbadges.io/',
|
|
8
|
+
pretty_name: 'BitBadges',
|
|
9
|
+
chain_id: 'bitbadges-1',
|
|
10
|
+
bech32_prefix: 'cosmos',
|
|
11
|
+
daemon_name: 'bitbadgeschaind',
|
|
12
|
+
node_home: '$HOME/.bitbadgeschaind',
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'ubadge',
|
|
17
|
+
fixed_min_gas_price: 0,
|
|
18
|
+
low_gas_price: 0.00025,
|
|
19
|
+
average_gas_price: 0.0025,
|
|
20
|
+
high_gas_price: 0.025
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'ustake'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
cosmos_sdk_version: 'v0.50.8'
|
|
30
|
+
},
|
|
31
|
+
logo_URIs: {
|
|
32
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png'
|
|
33
|
+
},
|
|
34
|
+
description: 'BitBadges is the all-in-one, multi-chain platform for building your digital identity.',
|
|
35
|
+
apis: {
|
|
36
|
+
rpc: [{
|
|
37
|
+
address: 'http://134.122.12.165:26657',
|
|
38
|
+
provider: 'bitbadges'
|
|
39
|
+
}],
|
|
40
|
+
rest: [{
|
|
41
|
+
address: 'http://134.122.12.165:1317',
|
|
42
|
+
provider: 'bitbadges'
|
|
43
|
+
}],
|
|
44
|
+
grpc: []
|
|
45
|
+
},
|
|
46
|
+
explorers: [{
|
|
47
|
+
kind: 'mintscan',
|
|
48
|
+
url: 'https://www.mintscan.io/bitbadges',
|
|
49
|
+
tx_page: 'https://www.mintscan.io/bitbadges/transactions/${txHash}',
|
|
50
|
+
account_page: 'https://www.mintscan.io/bitbadges/accounts/${accountAddress}'
|
|
51
|
+
}, {
|
|
52
|
+
kind: 'ping.pub',
|
|
53
|
+
url: 'https://explorer.bitbadges.io/BitBadges%20Mainnet',
|
|
54
|
+
tx_page: 'https://explorer.bitbadges.io/BitBadges%20Mainnet/txs/${txHash}',
|
|
55
|
+
account_page: 'https://explorer.bitbadges.io/BitBadBitBadges%20Mainnetges/account/${accountAddress}'
|
|
56
|
+
}],
|
|
57
|
+
images: [{
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png'
|
|
59
|
+
}]
|
|
60
|
+
};
|
|
61
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as _ethereum from './ethereum';
|
|
2
|
+
import * as _rootstock from './rootstock';
|
|
2
3
|
import * as _solana from './solana';
|
|
3
4
|
import * as _ton from './ton';
|
|
4
5
|
import * as _tron from './tron';
|
|
@@ -19,6 +20,7 @@ import * as _aura1 from './aura1';
|
|
|
19
20
|
import * as _axelar from './axelar';
|
|
20
21
|
import * as _bandchain from './bandchain';
|
|
21
22
|
import * as _beezee from './beezee';
|
|
23
|
+
import * as _bitbadges from './bitbadges';
|
|
22
24
|
import * as _bitcanna from './bitcanna';
|
|
23
25
|
import * as _bitsong from './bitsong';
|
|
24
26
|
import * as _blockx from './blockx';
|
|
@@ -188,6 +190,7 @@ import * as _xpla from './xpla';
|
|
|
188
190
|
import * as _zetachain from './zetachain';
|
|
189
191
|
const chains = [
|
|
190
192
|
_ethereum.chain,
|
|
193
|
+
_rootstock.chain,
|
|
191
194
|
_solana.chain,
|
|
192
195
|
_ton.chain,
|
|
193
196
|
_tron.chain,
|
|
@@ -208,6 +211,7 @@ const chains = [
|
|
|
208
211
|
_axelar.chain,
|
|
209
212
|
_bandchain.chain,
|
|
210
213
|
_beezee.chain,
|
|
214
|
+
_bitbadges.chain,
|
|
211
215
|
_bitcanna.chain,
|
|
212
216
|
_bitsong.chain,
|
|
213
217
|
_blockx.chain,
|
package/esm/mainnet/named.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * as ethereum from './ethereum';
|
|
2
|
+
export * as rootstock from './rootstock';
|
|
2
3
|
export * as solana from './solana';
|
|
3
4
|
export * as ton from './ton';
|
|
4
5
|
export * as tron from './tron';
|
|
@@ -19,6 +20,7 @@ export * as aura1 from './aura1';
|
|
|
19
20
|
export * as axelar from './axelar';
|
|
20
21
|
export * as bandchain from './bandchain';
|
|
21
22
|
export * as beezee from './beezee';
|
|
23
|
+
export * as bitbadges from './bitbadges';
|
|
22
24
|
export * as bitcanna from './bitcanna';
|
|
23
25
|
export * as bitsong from './bitsong';
|
|
24
26
|
export * as blockx from './blockx';
|
|
@@ -19906,6 +19906,7 @@ const info = {
|
|
|
19906
19906
|
exponent: 0,
|
|
19907
19907
|
aliases: ['brnz']
|
|
19908
19908
|
}],
|
|
19909
|
+
type_asset: 'sdk.coin',
|
|
19909
19910
|
base: 'factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz',
|
|
19910
19911
|
name: 'Branez',
|
|
19911
19912
|
display: 'factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz',
|
|
@@ -20049,7 +20050,7 @@ const info = {
|
|
|
20049
20050
|
},
|
|
20050
20051
|
{
|
|
20051
20052
|
description: 'Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.',
|
|
20052
|
-
type_asset: '
|
|
20053
|
+
type_asset: 'sdk.coin',
|
|
20053
20054
|
address: 'osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9',
|
|
20054
20055
|
denom_units: [{
|
|
20055
20056
|
denom: 'factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt',
|
|
@@ -20094,6 +20095,268 @@ const info = {
|
|
|
20094
20095
|
primary_color_hex: '#2B80D7'
|
|
20095
20096
|
}
|
|
20096
20097
|
}]
|
|
20098
|
+
},
|
|
20099
|
+
{
|
|
20100
|
+
description: 'Fractionalized Pixel Wizards',
|
|
20101
|
+
extended_description: 'Fractionalized Pixel Wizards NFT Via Fractal.fun',
|
|
20102
|
+
denom_units: [{
|
|
20103
|
+
denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ',
|
|
20104
|
+
exponent: 0
|
|
20105
|
+
}, {
|
|
20106
|
+
denom: 'fWIZ',
|
|
20107
|
+
exponent: 9
|
|
20108
|
+
}],
|
|
20109
|
+
type_asset: 'sdk.coin',
|
|
20110
|
+
address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
|
|
20111
|
+
base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ',
|
|
20112
|
+
name: 'fWIZ',
|
|
20113
|
+
display: 'fWIZ',
|
|
20114
|
+
symbol: 'fWIZ',
|
|
20115
|
+
logo_URIs: {
|
|
20116
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png'
|
|
20117
|
+
},
|
|
20118
|
+
images: [{
|
|
20119
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png',
|
|
20120
|
+
theme: {
|
|
20121
|
+
primary_color_hex: '#639BFF'
|
|
20122
|
+
}
|
|
20123
|
+
}],
|
|
20124
|
+
keywords: ['nft'],
|
|
20125
|
+
socials: {
|
|
20126
|
+
website: 'https://fractal.fun',
|
|
20127
|
+
twitter: 'https://twitter.com/fractaldotfun'
|
|
20128
|
+
}
|
|
20129
|
+
},
|
|
20130
|
+
{
|
|
20131
|
+
description: 'Fractionalized Pixel Witches',
|
|
20132
|
+
extended_description: 'Fractionalized Pixel Witches NFT Via Fractal.fun',
|
|
20133
|
+
denom_units: [{
|
|
20134
|
+
denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH',
|
|
20135
|
+
exponent: 0
|
|
20136
|
+
}, {
|
|
20137
|
+
denom: 'fWITCH',
|
|
20138
|
+
exponent: 9
|
|
20139
|
+
}],
|
|
20140
|
+
type_asset: 'sdk.coin',
|
|
20141
|
+
address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
|
|
20142
|
+
base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH',
|
|
20143
|
+
name: 'fWITCH',
|
|
20144
|
+
display: 'fWITCH',
|
|
20145
|
+
symbol: 'fWITCH',
|
|
20146
|
+
logo_URIs: {
|
|
20147
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png'
|
|
20148
|
+
},
|
|
20149
|
+
images: [{
|
|
20150
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png',
|
|
20151
|
+
theme: {
|
|
20152
|
+
primary_color_hex: '#639BFF'
|
|
20153
|
+
}
|
|
20154
|
+
}],
|
|
20155
|
+
keywords: ['nft'],
|
|
20156
|
+
socials: {
|
|
20157
|
+
website: 'https://fractal.fun',
|
|
20158
|
+
twitter: 'https://twitter.com/fractaldotfun'
|
|
20159
|
+
}
|
|
20160
|
+
},
|
|
20161
|
+
{
|
|
20162
|
+
description: 'Fractionalized Cryptonium Maker',
|
|
20163
|
+
extended_description: 'Fractionalized Cryptonium Maker NFT Via Fractal.fun',
|
|
20164
|
+
denom_units: [{
|
|
20165
|
+
denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM',
|
|
20166
|
+
exponent: 0
|
|
20167
|
+
}, {
|
|
20168
|
+
denom: 'fCRYPTONIUM',
|
|
20169
|
+
exponent: 9
|
|
20170
|
+
}],
|
|
20171
|
+
type_asset: 'sdk.coin',
|
|
20172
|
+
address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
|
|
20173
|
+
base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM',
|
|
20174
|
+
name: 'fCRYPTONIUM',
|
|
20175
|
+
display: 'fCRYPTONIUM',
|
|
20176
|
+
symbol: 'fCRYPTONIUM',
|
|
20177
|
+
logo_URIs: {
|
|
20178
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png'
|
|
20179
|
+
},
|
|
20180
|
+
images: [{
|
|
20181
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png',
|
|
20182
|
+
theme: {
|
|
20183
|
+
primary_color_hex: '#639BFF'
|
|
20184
|
+
}
|
|
20185
|
+
}],
|
|
20186
|
+
keywords: ['nft'],
|
|
20187
|
+
socials: {
|
|
20188
|
+
website: 'https://fractal.fun',
|
|
20189
|
+
twitter: 'https://twitter.com/fractaldotfun'
|
|
20190
|
+
}
|
|
20191
|
+
},
|
|
20192
|
+
{
|
|
20193
|
+
description: 'Fractionalized Geckies',
|
|
20194
|
+
extended_description: 'Fractionalized Geckies NFT Via Fractal.fun',
|
|
20195
|
+
denom_units: [{
|
|
20196
|
+
denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK',
|
|
20197
|
+
exponent: 0
|
|
20198
|
+
}, {
|
|
20199
|
+
denom: 'fGECK',
|
|
20200
|
+
exponent: 9
|
|
20201
|
+
}],
|
|
20202
|
+
type_asset: 'sdk.coin',
|
|
20203
|
+
address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
|
|
20204
|
+
base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK',
|
|
20205
|
+
name: 'fGECK',
|
|
20206
|
+
display: 'fGECK',
|
|
20207
|
+
symbol: 'fGECK',
|
|
20208
|
+
logo_URIs: {
|
|
20209
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png'
|
|
20210
|
+
},
|
|
20211
|
+
images: [{
|
|
20212
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png',
|
|
20213
|
+
theme: {
|
|
20214
|
+
primary_color_hex: '#639BFF'
|
|
20215
|
+
}
|
|
20216
|
+
}],
|
|
20217
|
+
keywords: ['nft'],
|
|
20218
|
+
socials: {
|
|
20219
|
+
website: 'https://fractal.fun',
|
|
20220
|
+
twitter: 'https://twitter.com/fractaldotfun'
|
|
20221
|
+
}
|
|
20222
|
+
},
|
|
20223
|
+
{
|
|
20224
|
+
description: 'Fractionalized Atlas DAO',
|
|
20225
|
+
extended_description: 'Fractionalized Atlas DAO NFT Via Fractal.fun',
|
|
20226
|
+
denom_units: [{
|
|
20227
|
+
denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS',
|
|
20228
|
+
exponent: 0
|
|
20229
|
+
}, {
|
|
20230
|
+
denom: 'fATLAS',
|
|
20231
|
+
exponent: 9
|
|
20232
|
+
}],
|
|
20233
|
+
type_asset: 'sdk.coin',
|
|
20234
|
+
address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
|
|
20235
|
+
base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS',
|
|
20236
|
+
name: 'fATLAS',
|
|
20237
|
+
display: 'fATLAS',
|
|
20238
|
+
symbol: 'fATLAS',
|
|
20239
|
+
logo_URIs: {
|
|
20240
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png'
|
|
20241
|
+
},
|
|
20242
|
+
images: [{
|
|
20243
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png',
|
|
20244
|
+
theme: {
|
|
20245
|
+
primary_color_hex: '#639BFF'
|
|
20246
|
+
}
|
|
20247
|
+
}],
|
|
20248
|
+
keywords: ['nft'],
|
|
20249
|
+
socials: {
|
|
20250
|
+
website: 'https://fractal.fun',
|
|
20251
|
+
twitter: 'https://twitter.com/fractaldotfun'
|
|
20252
|
+
}
|
|
20253
|
+
},
|
|
20254
|
+
{
|
|
20255
|
+
description: 'Fractionalized Rekt Bulls',
|
|
20256
|
+
extended_description: 'Fractionalized Rekt Bulls NFT Via Fractal.fun',
|
|
20257
|
+
denom_units: [{
|
|
20258
|
+
denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS',
|
|
20259
|
+
exponent: 0
|
|
20260
|
+
}, {
|
|
20261
|
+
denom: 'fBULLS',
|
|
20262
|
+
exponent: 9
|
|
20263
|
+
}],
|
|
20264
|
+
type_asset: 'sdk.coin',
|
|
20265
|
+
address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
|
|
20266
|
+
base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS',
|
|
20267
|
+
name: 'fBULLS',
|
|
20268
|
+
display: 'fBULLS',
|
|
20269
|
+
symbol: 'fBULLS',
|
|
20270
|
+
logo_URIs: {
|
|
20271
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png'
|
|
20272
|
+
},
|
|
20273
|
+
images: [{
|
|
20274
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png',
|
|
20275
|
+
theme: {
|
|
20276
|
+
primary_color_hex: '#639BFF'
|
|
20277
|
+
}
|
|
20278
|
+
}],
|
|
20279
|
+
keywords: ['nft'],
|
|
20280
|
+
socials: {
|
|
20281
|
+
website: 'https://fractal.fun',
|
|
20282
|
+
twitter: 'https://twitter.com/fractaldotfun'
|
|
20283
|
+
}
|
|
20284
|
+
},
|
|
20285
|
+
{
|
|
20286
|
+
description: 'Roostock BTC bridged via Router.',
|
|
20287
|
+
type_asset: 'sdk.coin',
|
|
20288
|
+
address: 'osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9',
|
|
20289
|
+
denom_units: [{
|
|
20290
|
+
denom: 'factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt',
|
|
20291
|
+
exponent: 0,
|
|
20292
|
+
aliases: ['0x542FDA317318eBf1d3DeAF76E0B632741a7e677d', 'sat']
|
|
20293
|
+
}, {
|
|
20294
|
+
denom: 'rbtc',
|
|
20295
|
+
exponent: 18
|
|
20296
|
+
}],
|
|
20297
|
+
base: 'factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt',
|
|
20298
|
+
name: 'Rootstock Smart Bitcoin',
|
|
20299
|
+
display: 'rbtc',
|
|
20300
|
+
symbol: 'RBTC',
|
|
20301
|
+
traces: [{
|
|
20302
|
+
type: 'synthetic',
|
|
20303
|
+
counterparty: {
|
|
20304
|
+
chain_name: 'rootstock',
|
|
20305
|
+
base_denom: '0x542FDA317318eBf1d3DeAF76E0B632741a7e677d'
|
|
20306
|
+
},
|
|
20307
|
+
provider: 'Router'
|
|
20308
|
+
}],
|
|
20309
|
+
images: [{
|
|
20310
|
+
image_sync: {
|
|
20311
|
+
chain_name: 'rootstock',
|
|
20312
|
+
base_denom: 'sat'
|
|
20313
|
+
},
|
|
20314
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg',
|
|
20315
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png',
|
|
20316
|
+
theme: {
|
|
20317
|
+
circle: false,
|
|
20318
|
+
primary_color_hex: '#FF9931',
|
|
20319
|
+
background_color_hex: '#00000000'
|
|
20320
|
+
}
|
|
20321
|
+
}]
|
|
20322
|
+
},
|
|
20323
|
+
{
|
|
20324
|
+
description: 'Chain-key Bitcoin bridged via Omnity Network.',
|
|
20325
|
+
address: 'osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm',
|
|
20326
|
+
denom_units: [{
|
|
20327
|
+
denom: 'factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC',
|
|
20328
|
+
exponent: 0,
|
|
20329
|
+
aliases: ['uckBTC']
|
|
20330
|
+
}, {
|
|
20331
|
+
denom: 'ckBTC',
|
|
20332
|
+
exponent: 8
|
|
20333
|
+
}],
|
|
20334
|
+
type_asset: 'sdk.coin',
|
|
20335
|
+
base: 'factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC',
|
|
20336
|
+
name: 'Chain-key Bitcoin',
|
|
20337
|
+
display: 'ckBTC',
|
|
20338
|
+
symbol: 'ckBTC',
|
|
20339
|
+
traces: [{
|
|
20340
|
+
type: 'bridge',
|
|
20341
|
+
counterparty: {
|
|
20342
|
+
chain_name: 'internetcomputer',
|
|
20343
|
+
base_denom: 'uckBTC'
|
|
20344
|
+
},
|
|
20345
|
+
provider: 'Omnity Network'
|
|
20346
|
+
}],
|
|
20347
|
+
images: [{
|
|
20348
|
+
image_sync: {
|
|
20349
|
+
chain_name: 'internetcomputer',
|
|
20350
|
+
base_denom: 'uckBTC'
|
|
20351
|
+
},
|
|
20352
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg',
|
|
20353
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png',
|
|
20354
|
+
theme: {
|
|
20355
|
+
circle: true,
|
|
20356
|
+
primary_color_hex: '#3B00B9',
|
|
20357
|
+
background_color_hex: '#3B00B9'
|
|
20358
|
+
}
|
|
20359
|
+
}]
|
|
20097
20360
|
}
|
|
20098
20361
|
]
|
|
20099
20362
|
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'rootstock',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'Pegged 1:1 to Bitcoin, RBTC allows you to interact with DeFi protocols and dApps on the Rootstock network. Use RBTC for minting, swaps, gas fees, and more.',
|
|
6
|
+
extended_description: 'The longest running and leading Bitcoin sidechain. Deploy dApps and EVM-compatible smart contracts secured by the world’s most accessible, decentralized and secure blockchain.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'sat',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'rbtc',
|
|
12
|
+
exponent: 18
|
|
13
|
+
}],
|
|
14
|
+
type_asset: 'evm-base',
|
|
15
|
+
base: 'sat',
|
|
16
|
+
display: 'rbtc',
|
|
17
|
+
symbol: 'RBTC',
|
|
18
|
+
name: 'Rootstock Smart Bitcoin',
|
|
19
|
+
traces: [{
|
|
20
|
+
type: 'synthetic',
|
|
21
|
+
counterparty: {
|
|
22
|
+
chain_name: 'bitcoin',
|
|
23
|
+
base_denom: 'sat'
|
|
24
|
+
},
|
|
25
|
+
provider: 'Rootstock'
|
|
26
|
+
}],
|
|
27
|
+
images: [{
|
|
28
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg',
|
|
29
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png',
|
|
30
|
+
theme: {
|
|
31
|
+
circle: false,
|
|
32
|
+
primary_color_hex: '#FF9931',
|
|
33
|
+
background_color_hex: '#00000000'
|
|
34
|
+
}
|
|
35
|
+
}],
|
|
36
|
+
coingecko_id: 'rootstock',
|
|
37
|
+
socials: {
|
|
38
|
+
website: 'https://rootstock.io/',
|
|
39
|
+
twitter: 'https://twitter.com/rootstock_io'
|
|
40
|
+
}
|
|
41
|
+
}, {
|
|
42
|
+
description: 'The wrapped version of RBTC.',
|
|
43
|
+
denom_units: [{
|
|
44
|
+
denom: '0x542FDA317318eBf1d3DeAF76E0B632741a7e677d',
|
|
45
|
+
exponent: 0
|
|
46
|
+
}, {
|
|
47
|
+
denom: 'wrbtc',
|
|
48
|
+
exponent: 18
|
|
49
|
+
}],
|
|
50
|
+
type_asset: 'erc20',
|
|
51
|
+
name: 'Wrapped BTC',
|
|
52
|
+
symbol: 'WRBTC',
|
|
53
|
+
display: 'wrbtc',
|
|
54
|
+
base: '0x542FDA317318eBf1d3DeAF76E0B632741a7e677d',
|
|
55
|
+
address: '0x542FDA317318eBf1d3DeAF76E0B632741a7e677d',
|
|
56
|
+
traces: [{
|
|
57
|
+
type: 'wrapped',
|
|
58
|
+
counterparty: {
|
|
59
|
+
chain_name: 'rootstock',
|
|
60
|
+
base_denom: 'sat'
|
|
61
|
+
},
|
|
62
|
+
provider: 'Rootstock'
|
|
63
|
+
}]
|
|
64
|
+
}]
|
|
65
|
+
};
|
|
66
|
+
export default info;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'rootstock',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://rootstock.io/',
|
|
6
|
+
network_type: 'mainnet',
|
|
7
|
+
pretty_name: 'Rootstock',
|
|
8
|
+
chain_type: 'eip155',
|
|
9
|
+
chain_id: '30',
|
|
10
|
+
slip44: 137,
|
|
11
|
+
fees: {
|
|
12
|
+
fee_tokens: [{
|
|
13
|
+
denom: 'sat'
|
|
14
|
+
}]
|
|
15
|
+
},
|
|
16
|
+
staking: {
|
|
17
|
+
staking_tokens: [{
|
|
18
|
+
denom: 'sat'
|
|
19
|
+
}]
|
|
20
|
+
},
|
|
21
|
+
description: 'The longest running and leading Bitcoin sidechain. Deploy dApps and EVM-compatible smart contracts secured by the world’s most accessible, decentralized and secure blockchain.',
|
|
22
|
+
explorers: [{
|
|
23
|
+
kind: 'Rootstock Explorer',
|
|
24
|
+
url: 'https://explorer.rootstock.io/',
|
|
25
|
+
tx_page: 'https://explorer.rootstock.io/tx/${txHash}'
|
|
26
|
+
}],
|
|
27
|
+
images: [{
|
|
28
|
+
image_sync: {
|
|
29
|
+
chain_name: 'rootstock',
|
|
30
|
+
base_denom: 'sat'
|
|
31
|
+
},
|
|
32
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg',
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png',
|
|
34
|
+
theme: {
|
|
35
|
+
circle: false,
|
|
36
|
+
primary_color_hex: '#FF9931',
|
|
37
|
+
background_color_hex: '#00000000'
|
|
38
|
+
}
|
|
39
|
+
}]
|
|
40
|
+
};
|
|
41
|
+
export default info;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
const info = {
|
|
2
2
|
$schema: '../assetlist.schema.json',
|
|
3
3
|
chain_name: 'scorum',
|
|
4
|
-
assets: [
|
|
5
|
-
{
|
|
4
|
+
assets: [{
|
|
6
5
|
description: 'The native token of Scorum',
|
|
7
6
|
extended_description: 'Scorum is a dynamic Layer-1 blockchain powered by Cosmos, designed to redefine the gaming and entertainment industries. Currently, it supports Aviatrix, a compelling crash game that not only leverages blockchain technology for secure and transparent gaming outcomes but also utilizes it for the integration of Non-Fungible Tokens (NFTs). Central to Scorum’s ecosystem is the SCR token, which supports both Aviatrix and future applications set to expand the platform’s offerings. The adoption of the Inter-Blockchain Communication protocol significantly enhances Scorum’s interoperability and scalability, paving the way for its ongoing expansion and the development of innovative, blockchain-powered entertainment solutions.',
|
|
8
7
|
denom_units: [{
|
|
@@ -32,33 +31,7 @@ const info = {
|
|
|
32
31
|
website: 'https://scorum.network',
|
|
33
32
|
twitter: 'https://twitter.com/scorum_en'
|
|
34
33
|
}
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
description: 'Scorum Power used for internal mechanics and staking',
|
|
38
|
-
denom_units: [{
|
|
39
|
-
denom: 'nsp',
|
|
40
|
-
exponent: 0
|
|
41
|
-
}, {
|
|
42
|
-
denom: 'sp',
|
|
43
|
-
exponent: 9
|
|
44
|
-
}],
|
|
45
|
-
base: 'nsp',
|
|
46
|
-
name: 'Scorum Power',
|
|
47
|
-
display: 'sp',
|
|
48
|
-
symbol: 'SP',
|
|
49
|
-
logo_URIs: {
|
|
50
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.png',
|
|
51
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.svg'
|
|
52
|
-
},
|
|
53
|
-
images: [{
|
|
54
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.png',
|
|
55
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.svg',
|
|
56
|
-
theme: {
|
|
57
|
-
primary_color_hex: '#9421e3'
|
|
58
|
-
}
|
|
59
|
-
}]
|
|
60
|
-
},
|
|
61
|
-
{
|
|
34
|
+
}, {
|
|
62
35
|
description: 'Virtual(non-transferable) coin used to pay gas',
|
|
63
36
|
denom_units: [{
|
|
64
37
|
denom: 'gas',
|
|
@@ -79,7 +52,6 @@ const info = {
|
|
|
79
52
|
primary_color_hex: '#555555'
|
|
80
53
|
}
|
|
81
54
|
}]
|
|
82
|
-
}
|
|
83
|
-
]
|
|
55
|
+
}]
|
|
84
56
|
};
|
|
85
57
|
export default info;
|