Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Side Chain #5907

Merged
merged 7 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions _IBC/noble-sidechain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "../ibc_data.schema.json",
"chain_1": {
"chain_name": "noble",
"client_id": "07-tendermint-141",
"connection_id": "connection-136"
},
"chain_2": {
"chain_name": "sidechain",
"client_id": "07-tendermint-7",
"connection_id": "connection-2"
},
"channels": [
{
"chain_1": {
"channel_id": "channel-123",
"port_id": "transfer"
},
"chain_2": {
"channel_id": "channel-1",
"port_id": "transfer"
},
"ordering": "unordered",
"version": "ics20-1",
"tags": {
"status": "live",
"preferred": true
}
}
]
}
123 changes: 123 additions & 0 deletions sidechain/assetlist.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
{
"$schema": "../assetlist.schema.json",
"chain_name": "sidechain",
"assets": [
{
"description": "The native token of Side Chain.",
"denom_units": [
{
"denom": "uside",
"exponent": 0
},
{
"denom": "side",
"exponent": 6
}
],
"base": "uside",
"name": "Side Chain native token",
"display": "side",
"symbol": "SIDE",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png",
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg"
},
"images": [
{
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png",
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg",
"theme": {
"primary_color_hex": "#f7771a"
}
}
],
"socials": {
"website": "https://side.one",
"twitter": "https://x.com/SideProtocol"
},
"type_asset": "sdk.coin"
},
{
"description": "BTC-pegged token on Side Chain.",
thmadong marked this conversation as resolved.
Show resolved Hide resolved
"extended_description": "sBTC is the native token of the Side Chain, fully pegged 1:1 to BTC held in a vault secured by 21 TSS signers on the Bitcoin mainnet. As a synthetic asset, sBTC enables Bitcoin liquidity to seamlessly flow into the Side Chain and the broader Cosmos ecosystem.",
"denom_units": [
{
"denom": "sat",
"exponent": 0
},
{
"denom": "sBTC",
"exponent": 8
}
],
"base": "sat",
"name": "BTC-pegged token on Side Chain",
"display": "sBTC",
"symbol": "SBTC",
"images": [
{
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.svg",
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.png",
"theme": {
"primary_color_hex": "#f7771a"
}
}
],
"socials": {
"website": "https://side.one",
"twitter": "https://x.com/SideProtocol"
},
"type_asset": "sdk.coin"
},
{
"description": "Noble USDC on Side Chain.",
"denom_units": [
{
"denom": "ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3",
"exponent": 0
},
{
"denom": "usdc",
"exponent": 6
}
],
"type_asset": "ics20",
"base": "ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3",
"name": "Noble USDC",
"display": "usdc",
"symbol": "USDC",
"traces": [
{
"type": "ibc",
"counterparty": {
"chain_name": "noble",
"base_denom": "uusdc",
"channel_id": "channel-123"
},
"chain": {
"channel_id": "channel-1",
"path": "transfer/channel-1/uusdc"
thmadong marked this conversation as resolved.
Show resolved Hide resolved
}
}
],
"images": [
{
"image_sync": {
"chain_name": "noble",
"base_denom": "uusdc"
},
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png",
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg",
"theme": {
"circle": true,
"primary_color_hex": "#2775CA"
}
}
],
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png",
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg"
}
}
]
}
Loading