chain-registry 2.0.230 → 2.0.231
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/asset-lists.js +2 -0
- package/esm/mainnet/bitbadges/ibc-data.js +31 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/chain.js +6 -6
- package/esm/mainnet/injective/ibc-data.js +31 -0
- package/esm/mainnet/ritbit/asset-list.js +60 -0
- package/esm/mainnet/ritbit/chain.js +60 -0
- package/esm/mainnet/ritbit/index.js +4 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/bitbadges/ibc-data.js +31 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/chain.js +6 -6
- package/mainnet/injective/ibc-data.js +31 -0
- package/mainnet/ritbit/asset-list.d.ts +3 -0
- package/mainnet/ritbit/asset-list.js +62 -0
- package/mainnet/ritbit/chain.d.ts +3 -0
- package/mainnet/ritbit/chain.js +62 -0
- package/mainnet/ritbit/index.d.ts +2 -0
- package/mainnet/ritbit/index.js +10 -0
- package/package.json +3 -3
|
@@ -172,6 +172,7 @@ import * as _qwoyn from './qwoyn';
|
|
|
172
172
|
import * as _realio from './realio';
|
|
173
173
|
import * as _rebus from './rebus';
|
|
174
174
|
import * as _regen from './regen';
|
|
175
|
+
import * as _ritbit from './ritbit';
|
|
175
176
|
import * as _rizon from './rizon';
|
|
176
177
|
import * as _safrochain from './safrochain';
|
|
177
178
|
import * as _saga from './saga';
|
|
@@ -399,6 +400,7 @@ const assetList = [
|
|
|
399
400
|
_realio.assetList,
|
|
400
401
|
_rebus.assetList,
|
|
401
402
|
_regen.assetList,
|
|
403
|
+
_ritbit.assetList,
|
|
402
404
|
_rizon.assetList,
|
|
403
405
|
_safrochain.assetList,
|
|
404
406
|
_saga.assetList,
|
|
@@ -30,6 +30,37 @@ const info = [
|
|
|
30
30
|
}
|
|
31
31
|
}]
|
|
32
32
|
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain1: {
|
|
36
|
+
chainName: 'bitbadges',
|
|
37
|
+
chainId: 'bitbadges-1',
|
|
38
|
+
clientId: '07-tendermint-39',
|
|
39
|
+
connectionId: 'connection-89'
|
|
40
|
+
},
|
|
41
|
+
chain2: {
|
|
42
|
+
chainName: 'injective',
|
|
43
|
+
chainId: 'injective-1',
|
|
44
|
+
clientId: '07-tendermint-340',
|
|
45
|
+
connectionId: 'connection-343'
|
|
46
|
+
},
|
|
47
|
+
channels: [{
|
|
48
|
+
chain1: {
|
|
49
|
+
channelId: 'channel-40',
|
|
50
|
+
portId: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
chain2: {
|
|
53
|
+
channelId: 'channel-464',
|
|
54
|
+
portId: 'transfer'
|
|
55
|
+
},
|
|
56
|
+
ordering: 'unordered',
|
|
57
|
+
version: 'ics20-1',
|
|
58
|
+
tags: {
|
|
59
|
+
preferred: true,
|
|
60
|
+
status: 'ACTIVE'
|
|
61
|
+
}
|
|
62
|
+
}]
|
|
63
|
+
},
|
|
33
64
|
{
|
|
34
65
|
$schema: '../ibc_data.schema.json',
|
|
35
66
|
chain1: {
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -172,6 +172,7 @@ import * as _qwoyn from './qwoyn';
|
|
|
172
172
|
import * as _realio from './realio';
|
|
173
173
|
import * as _rebus from './rebus';
|
|
174
174
|
import * as _regen from './regen';
|
|
175
|
+
import * as _ritbit from './ritbit';
|
|
175
176
|
import * as _rizon from './rizon';
|
|
176
177
|
import * as _safrochain from './safrochain';
|
|
177
178
|
import * as _saga from './saga';
|
|
@@ -399,6 +400,7 @@ const chains = [
|
|
|
399
400
|
_realio.chain,
|
|
400
401
|
_rebus.chain,
|
|
401
402
|
_regen.chain,
|
|
403
|
+
_ritbit.chain,
|
|
402
404
|
_rizon.chain,
|
|
403
405
|
_safrochain.chain,
|
|
404
406
|
_saga.chain,
|
|
@@ -28,15 +28,15 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/cosmos/gaia',
|
|
31
|
-
recommendedVersion: 'v27.
|
|
32
|
-
compatibleVersions: ['v27.
|
|
31
|
+
recommendedVersion: 'v27.5.0',
|
|
32
|
+
compatibleVersions: ['v27.5.0'],
|
|
33
33
|
consensus: {
|
|
34
34
|
type: 'cometbft',
|
|
35
35
|
version: 'v0.38.23'
|
|
36
36
|
},
|
|
37
37
|
binaries: {
|
|
38
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
39
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
38
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.5.0/gaiad-v27.5.0-darwin-amd64',
|
|
39
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.5.0/gaiad-v27.5.0-linux-amd64'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesisUrl: 'https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz'
|
|
@@ -48,14 +48,14 @@ const info = {
|
|
|
48
48
|
},
|
|
49
49
|
ibc: {
|
|
50
50
|
type: 'go',
|
|
51
|
-
version: 'v10.
|
|
51
|
+
version: 'v10.7.0'
|
|
52
52
|
},
|
|
53
53
|
cosmwasm: {
|
|
54
54
|
version: 'v0.60.7',
|
|
55
55
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
56
56
|
tag: 'v0.60.7'
|
|
57
57
|
},
|
|
58
|
-
tag: 'v27.
|
|
58
|
+
tag: 'v27.5.0'
|
|
59
59
|
},
|
|
60
60
|
logoURIs: {
|
|
61
61
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
@@ -92,6 +92,37 @@ const info = [
|
|
|
92
92
|
}
|
|
93
93
|
}]
|
|
94
94
|
},
|
|
95
|
+
{
|
|
96
|
+
$schema: '../ibc_data.schema.json',
|
|
97
|
+
chain1: {
|
|
98
|
+
chainName: 'bitbadges',
|
|
99
|
+
chainId: 'bitbadges-1',
|
|
100
|
+
clientId: '07-tendermint-39',
|
|
101
|
+
connectionId: 'connection-89'
|
|
102
|
+
},
|
|
103
|
+
chain2: {
|
|
104
|
+
chainName: 'injective',
|
|
105
|
+
chainId: 'injective-1',
|
|
106
|
+
clientId: '07-tendermint-340',
|
|
107
|
+
connectionId: 'connection-343'
|
|
108
|
+
},
|
|
109
|
+
channels: [{
|
|
110
|
+
chain1: {
|
|
111
|
+
channelId: 'channel-40',
|
|
112
|
+
portId: 'transfer'
|
|
113
|
+
},
|
|
114
|
+
chain2: {
|
|
115
|
+
channelId: 'channel-464',
|
|
116
|
+
portId: 'transfer'
|
|
117
|
+
},
|
|
118
|
+
ordering: 'unordered',
|
|
119
|
+
version: 'ics20-1',
|
|
120
|
+
tags: {
|
|
121
|
+
preferred: true,
|
|
122
|
+
status: 'ACTIVE'
|
|
123
|
+
}
|
|
124
|
+
}]
|
|
125
|
+
},
|
|
95
126
|
{
|
|
96
127
|
$schema: '../ibc_data.schema.json',
|
|
97
128
|
chain1: {
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'ritbit',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'RIT is the native staking and governance token of RITBIT, the network that powers the Rubin Trade decentralized exchange.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'urit',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'rit',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
base: 'urit',
|
|
14
|
+
name: 'Rubin',
|
|
15
|
+
display: 'rit',
|
|
16
|
+
symbol: 'RIT',
|
|
17
|
+
logoURIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
22
|
+
}],
|
|
23
|
+
typeAsset: 'sdk.coin'
|
|
24
|
+
}, {
|
|
25
|
+
description: 'USD Coin (USDC) used as collateral for trading on Rubin.',
|
|
26
|
+
denomUnits: [{
|
|
27
|
+
denom: 'uusdc',
|
|
28
|
+
exponent: 0
|
|
29
|
+
}, {
|
|
30
|
+
denom: 'usdc',
|
|
31
|
+
exponent: 6
|
|
32
|
+
}],
|
|
33
|
+
base: 'uusdc',
|
|
34
|
+
name: 'USD Coin',
|
|
35
|
+
display: 'usdc',
|
|
36
|
+
symbol: 'USDC',
|
|
37
|
+
traces: [{
|
|
38
|
+
type: 'bridge',
|
|
39
|
+
counterparty: {
|
|
40
|
+
chainName: 'ethereum',
|
|
41
|
+
baseDenom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
|
|
42
|
+
},
|
|
43
|
+
provider: 'Rubin'
|
|
44
|
+
}],
|
|
45
|
+
logoURIs: {
|
|
46
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
47
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
48
|
+
},
|
|
49
|
+
images: [{
|
|
50
|
+
imageSync: {
|
|
51
|
+
chainName: 'ethereum',
|
|
52
|
+
baseDenom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
|
|
53
|
+
},
|
|
54
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
55
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
56
|
+
}],
|
|
57
|
+
typeAsset: 'sdk.coin'
|
|
58
|
+
}]
|
|
59
|
+
};
|
|
60
|
+
export default info;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'ritbit',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://rubin.trade/',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
prettyName: 'RITBIT',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'ritbit-mainnet',
|
|
10
|
+
bech32Prefix: 'rit',
|
|
11
|
+
slip44: 118,
|
|
12
|
+
fees: {
|
|
13
|
+
feeTokens: [{
|
|
14
|
+
denom: 'urit',
|
|
15
|
+
fixedMinGasPrice: 12500000000,
|
|
16
|
+
lowGasPrice: 12500000000,
|
|
17
|
+
averageGasPrice: 12500000000,
|
|
18
|
+
highGasPrice: 20000000000
|
|
19
|
+
}, {
|
|
20
|
+
denom: 'uusdc',
|
|
21
|
+
fixedMinGasPrice: 0.025,
|
|
22
|
+
lowGasPrice: 0.025,
|
|
23
|
+
averageGasPrice: 0.025,
|
|
24
|
+
highGasPrice: 0.03
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
staking: {
|
|
28
|
+
stakingTokens: [{
|
|
29
|
+
denom: 'urit'
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
logoURIs: {
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
34
|
+
},
|
|
35
|
+
description: 'RITBIT is the network that powers Rubin Trade — a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
|
|
36
|
+
apis: {
|
|
37
|
+
rpc: [{
|
|
38
|
+
address: 'https://rpc.mainnet.rubin.trade',
|
|
39
|
+
provider: 'Rubin'
|
|
40
|
+
}],
|
|
41
|
+
rest: [{
|
|
42
|
+
address: 'https://rest.mainnet.rubin.trade',
|
|
43
|
+
provider: 'Rubin'
|
|
44
|
+
}],
|
|
45
|
+
grpc: [{
|
|
46
|
+
address: 'grpc.mainnet.rubin.trade:443',
|
|
47
|
+
provider: 'Rubin'
|
|
48
|
+
}]
|
|
49
|
+
},
|
|
50
|
+
explorers: [{
|
|
51
|
+
kind: 'rubin',
|
|
52
|
+
url: 'https://explorer.rubin.trade/ritbit-mainnet',
|
|
53
|
+
txPage: 'https://explorer.rubin.trade/ritbit-mainnet/tx/${txHash}',
|
|
54
|
+
accountPage: 'https://explorer.rubin.trade/ritbit-mainnet/account/${accountAddress}'
|
|
55
|
+
}],
|
|
56
|
+
images: [{
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
58
|
+
}]
|
|
59
|
+
};
|
|
60
|
+
export default info;
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -197,6 +197,7 @@ const _qwoyn = __importStar(require("./qwoyn"));
|
|
|
197
197
|
const _realio = __importStar(require("./realio"));
|
|
198
198
|
const _rebus = __importStar(require("./rebus"));
|
|
199
199
|
const _regen = __importStar(require("./regen"));
|
|
200
|
+
const _ritbit = __importStar(require("./ritbit"));
|
|
200
201
|
const _rizon = __importStar(require("./rizon"));
|
|
201
202
|
const _safrochain = __importStar(require("./safrochain"));
|
|
202
203
|
const _saga = __importStar(require("./saga"));
|
|
@@ -424,6 +425,7 @@ const assetList = [
|
|
|
424
425
|
_realio.assetList,
|
|
425
426
|
_rebus.assetList,
|
|
426
427
|
_regen.assetList,
|
|
428
|
+
_ritbit.assetList,
|
|
427
429
|
_rizon.assetList,
|
|
428
430
|
_safrochain.assetList,
|
|
429
431
|
_saga.assetList,
|
|
@@ -32,6 +32,37 @@ const info = [
|
|
|
32
32
|
}
|
|
33
33
|
}]
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
$schema: '../ibc_data.schema.json',
|
|
37
|
+
chain1: {
|
|
38
|
+
chainName: 'bitbadges',
|
|
39
|
+
chainId: 'bitbadges-1',
|
|
40
|
+
clientId: '07-tendermint-39',
|
|
41
|
+
connectionId: 'connection-89'
|
|
42
|
+
},
|
|
43
|
+
chain2: {
|
|
44
|
+
chainName: 'injective',
|
|
45
|
+
chainId: 'injective-1',
|
|
46
|
+
clientId: '07-tendermint-340',
|
|
47
|
+
connectionId: 'connection-343'
|
|
48
|
+
},
|
|
49
|
+
channels: [{
|
|
50
|
+
chain1: {
|
|
51
|
+
channelId: 'channel-40',
|
|
52
|
+
portId: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
chain2: {
|
|
55
|
+
channelId: 'channel-464',
|
|
56
|
+
portId: 'transfer'
|
|
57
|
+
},
|
|
58
|
+
ordering: 'unordered',
|
|
59
|
+
version: 'ics20-1',
|
|
60
|
+
tags: {
|
|
61
|
+
preferred: true,
|
|
62
|
+
status: 'ACTIVE'
|
|
63
|
+
}
|
|
64
|
+
}]
|
|
65
|
+
},
|
|
35
66
|
{
|
|
36
67
|
$schema: '../ibc_data.schema.json',
|
|
37
68
|
chain1: {
|
package/mainnet/chains.js
CHANGED
|
@@ -197,6 +197,7 @@ const _qwoyn = __importStar(require("./qwoyn"));
|
|
|
197
197
|
const _realio = __importStar(require("./realio"));
|
|
198
198
|
const _rebus = __importStar(require("./rebus"));
|
|
199
199
|
const _regen = __importStar(require("./regen"));
|
|
200
|
+
const _ritbit = __importStar(require("./ritbit"));
|
|
200
201
|
const _rizon = __importStar(require("./rizon"));
|
|
201
202
|
const _safrochain = __importStar(require("./safrochain"));
|
|
202
203
|
const _saga = __importStar(require("./saga"));
|
|
@@ -424,6 +425,7 @@ const chains = [
|
|
|
424
425
|
_realio.chain,
|
|
425
426
|
_rebus.chain,
|
|
426
427
|
_regen.chain,
|
|
428
|
+
_ritbit.chain,
|
|
427
429
|
_rizon.chain,
|
|
428
430
|
_safrochain.chain,
|
|
429
431
|
_saga.chain,
|
|
@@ -30,15 +30,15 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/cosmos/gaia',
|
|
33
|
-
recommendedVersion: 'v27.
|
|
34
|
-
compatibleVersions: ['v27.
|
|
33
|
+
recommendedVersion: 'v27.5.0',
|
|
34
|
+
compatibleVersions: ['v27.5.0'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
37
|
version: 'v0.38.23'
|
|
38
38
|
},
|
|
39
39
|
binaries: {
|
|
40
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
41
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
40
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.5.0/gaiad-v27.5.0-darwin-amd64',
|
|
41
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.5.0/gaiad-v27.5.0-linux-amd64'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesisUrl: 'https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz'
|
|
@@ -50,14 +50,14 @@ const info = {
|
|
|
50
50
|
},
|
|
51
51
|
ibc: {
|
|
52
52
|
type: 'go',
|
|
53
|
-
version: 'v10.
|
|
53
|
+
version: 'v10.7.0'
|
|
54
54
|
},
|
|
55
55
|
cosmwasm: {
|
|
56
56
|
version: 'v0.60.7',
|
|
57
57
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
58
58
|
tag: 'v0.60.7'
|
|
59
59
|
},
|
|
60
|
-
tag: 'v27.
|
|
60
|
+
tag: 'v27.5.0'
|
|
61
61
|
},
|
|
62
62
|
logoURIs: {
|
|
63
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
@@ -94,6 +94,37 @@ const info = [
|
|
|
94
94
|
}
|
|
95
95
|
}]
|
|
96
96
|
},
|
|
97
|
+
{
|
|
98
|
+
$schema: '../ibc_data.schema.json',
|
|
99
|
+
chain1: {
|
|
100
|
+
chainName: 'bitbadges',
|
|
101
|
+
chainId: 'bitbadges-1',
|
|
102
|
+
clientId: '07-tendermint-39',
|
|
103
|
+
connectionId: 'connection-89'
|
|
104
|
+
},
|
|
105
|
+
chain2: {
|
|
106
|
+
chainName: 'injective',
|
|
107
|
+
chainId: 'injective-1',
|
|
108
|
+
clientId: '07-tendermint-340',
|
|
109
|
+
connectionId: 'connection-343'
|
|
110
|
+
},
|
|
111
|
+
channels: [{
|
|
112
|
+
chain1: {
|
|
113
|
+
channelId: 'channel-40',
|
|
114
|
+
portId: 'transfer'
|
|
115
|
+
},
|
|
116
|
+
chain2: {
|
|
117
|
+
channelId: 'channel-464',
|
|
118
|
+
portId: 'transfer'
|
|
119
|
+
},
|
|
120
|
+
ordering: 'unordered',
|
|
121
|
+
version: 'ics20-1',
|
|
122
|
+
tags: {
|
|
123
|
+
preferred: true,
|
|
124
|
+
status: 'ACTIVE'
|
|
125
|
+
}
|
|
126
|
+
}]
|
|
127
|
+
},
|
|
97
128
|
{
|
|
98
129
|
$schema: '../ibc_data.schema.json',
|
|
99
130
|
chain1: {
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'ritbit',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'RIT is the native staking and governance token of RITBIT, the network that powers the Rubin Trade decentralized exchange.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'urit',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'rit',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'urit',
|
|
16
|
+
name: 'Rubin',
|
|
17
|
+
display: 'rit',
|
|
18
|
+
symbol: 'RIT',
|
|
19
|
+
logoURIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
24
|
+
}],
|
|
25
|
+
typeAsset: 'sdk.coin'
|
|
26
|
+
}, {
|
|
27
|
+
description: 'USD Coin (USDC) used as collateral for trading on Rubin.',
|
|
28
|
+
denomUnits: [{
|
|
29
|
+
denom: 'uusdc',
|
|
30
|
+
exponent: 0
|
|
31
|
+
}, {
|
|
32
|
+
denom: 'usdc',
|
|
33
|
+
exponent: 6
|
|
34
|
+
}],
|
|
35
|
+
base: 'uusdc',
|
|
36
|
+
name: 'USD Coin',
|
|
37
|
+
display: 'usdc',
|
|
38
|
+
symbol: 'USDC',
|
|
39
|
+
traces: [{
|
|
40
|
+
type: 'bridge',
|
|
41
|
+
counterparty: {
|
|
42
|
+
chainName: 'ethereum',
|
|
43
|
+
baseDenom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
|
|
44
|
+
},
|
|
45
|
+
provider: 'Rubin'
|
|
46
|
+
}],
|
|
47
|
+
logoURIs: {
|
|
48
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
49
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
50
|
+
},
|
|
51
|
+
images: [{
|
|
52
|
+
imageSync: {
|
|
53
|
+
chainName: 'ethereum',
|
|
54
|
+
baseDenom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
|
|
55
|
+
},
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
57
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
58
|
+
}],
|
|
59
|
+
typeAsset: 'sdk.coin'
|
|
60
|
+
}]
|
|
61
|
+
};
|
|
62
|
+
exports.default = info;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'ritbit',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://rubin.trade/',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
prettyName: 'RITBIT',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'ritbit-mainnet',
|
|
12
|
+
bech32Prefix: 'rit',
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'urit',
|
|
17
|
+
fixedMinGasPrice: 12500000000,
|
|
18
|
+
lowGasPrice: 12500000000,
|
|
19
|
+
averageGasPrice: 12500000000,
|
|
20
|
+
highGasPrice: 20000000000
|
|
21
|
+
}, {
|
|
22
|
+
denom: 'uusdc',
|
|
23
|
+
fixedMinGasPrice: 0.025,
|
|
24
|
+
lowGasPrice: 0.025,
|
|
25
|
+
averageGasPrice: 0.025,
|
|
26
|
+
highGasPrice: 0.03
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
staking: {
|
|
30
|
+
stakingTokens: [{
|
|
31
|
+
denom: 'urit'
|
|
32
|
+
}]
|
|
33
|
+
},
|
|
34
|
+
logoURIs: {
|
|
35
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
36
|
+
},
|
|
37
|
+
description: 'RITBIT is the network that powers Rubin Trade — a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
|
|
38
|
+
apis: {
|
|
39
|
+
rpc: [{
|
|
40
|
+
address: 'https://rpc.mainnet.rubin.trade',
|
|
41
|
+
provider: 'Rubin'
|
|
42
|
+
}],
|
|
43
|
+
rest: [{
|
|
44
|
+
address: 'https://rest.mainnet.rubin.trade',
|
|
45
|
+
provider: 'Rubin'
|
|
46
|
+
}],
|
|
47
|
+
grpc: [{
|
|
48
|
+
address: 'grpc.mainnet.rubin.trade:443',
|
|
49
|
+
provider: 'Rubin'
|
|
50
|
+
}]
|
|
51
|
+
},
|
|
52
|
+
explorers: [{
|
|
53
|
+
kind: 'rubin',
|
|
54
|
+
url: 'https://explorer.rubin.trade/ritbit-mainnet',
|
|
55
|
+
txPage: 'https://explorer.rubin.trade/ritbit-mainnet/tx/${txHash}',
|
|
56
|
+
accountPage: 'https://explorer.rubin.trade/ritbit-mainnet/account/${accountAddress}'
|
|
57
|
+
}],
|
|
58
|
+
images: [{
|
|
59
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
60
|
+
}]
|
|
61
|
+
};
|
|
62
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.231",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.231"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "7ebb1895988fcf56a7041a7ca1cd0e8d149dfcde"
|
|
43
43
|
}
|