-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
KB-1230: Update Kima testnet URLs #5815
base: master
Are you sure you want to change the base?
Changes from all commits
dacaf33
c0ddecb
4d0528f
299d2ee
7085e26
92e9293
e725d68
3babcfa
48aca5a
c379c0a
058692d
eaf097d
c195aef
8cb01b8
d8a9392
b43c354
d9b0447
1863bc0
3058c10
45e7782
78db44e
7922978
a2d663b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,7 @@ | |
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg" | ||
} | ||
], | ||
"coingecko_id": "kima", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove the coingecko ID. We don't add them to testnet assets |
||
"socials": { | ||
"github": "https://github.com/kima-finance", | ||
"medium": "https://medium.com/@kima_finance", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"chain_type": "cosmos", | ||
"chain_id": "kima_testnet", | ||
"bech32_prefix": "kima", | ||
"daemon_name": "uKIMA", | ||
"daemon_name": "kimad", | ||
"node_home": "$HOME/.kima", | ||
"key_algos": [ | ||
"secp256k1" | ||
|
@@ -25,61 +25,90 @@ | |
} | ||
] | ||
}, | ||
"staking": { | ||
"staking_tokens": [ | ||
{ | ||
"denom": "uKIMA" | ||
} | ||
], | ||
"lock_duration": { | ||
"time": "259200s" | ||
} | ||
}, | ||
"codebase": { | ||
"git_repo": "https://github.com/kima-finance/kima-blockchain", | ||
"recommended_version": "v0.4.3", | ||
"git_repo": "https://github.com/kima-finance/kima-blockchain/", | ||
"recommended_version": "v0.4.6", | ||
"compatible_versions": [ | ||
"v0.4.3" | ||
"v0.4.6" | ||
], | ||
"genesis": { | ||
"genesis_url": "http://data-testnet.kima.finance/genesis.json" | ||
"genesis_url": "http://archive.sardis.kima.network/genesis.json" | ||
}, | ||
"consensus": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please copy or move these properties (consensus, lenguage, sdk, ibc) into the version object in the "versions.json" file. |
||
"type": "cometbft", | ||
"version": "0.37.2", | ||
"repo": "https::github.com/cometbft/cometbft", | ||
"tag": "v0.37.2" | ||
}, | ||
"language": { | ||
"type": "go", | ||
"version": "1.21.6" | ||
}, | ||
"sdk": { | ||
"type": "cosmos", | ||
"repo": "https://github.com/cosmos/cosmos-sdk", | ||
"version": "v0.47.4", | ||
"tag": "v0.47.4" | ||
}, | ||
"ibc": { | ||
"type": "go", | ||
"version": "v7.3.0", | ||
"ics_enabled": [ | ||
"ics20-1" | ||
] | ||
} | ||
}, | ||
"peers": { | ||
"seeds": [ | ||
{ | ||
"id": "cb88ded3ce56d5f58155028f74116e492d9b48d3", | ||
"address": "137.135.97.61:26656", | ||
"id": "3d901cbae3b2b4be186aee02fe174b4cf230a0c2", | ||
"address": "sentry-0.sardis.kima.network:26656", | ||
"provider": "Kima Network" | ||
} | ||
], | ||
"persistent_peers": [ | ||
{ | ||
"id": "63e795c7b06e04b59193d1cd5dd080324857be14", | ||
"address": "172.173.165.59:26656", | ||
"provider": "Kima Network" | ||
}, | ||
{ | ||
"id": "26f8f89e4d937d04b3a55e01c94757d531b21756", | ||
"address": "52.233.74.60:26656", | ||
"provider": "Kima Network" | ||
}, | ||
{ | ||
"id": "ed81adb437d1c74420eae069303acabe388621cc", | ||
"address": "13.83.91.8:26656", | ||
"id": "3d901cbae3b2b4be186aee02fe174b4cf230a0c2", | ||
"address": "sentry-0.sardis.kima.network:26656", | ||
"provider": "Kima Network" | ||
} | ||
] | ||
}, | ||
"apis": { | ||
"rpc": [ | ||
{ | ||
"address": "https://rpc-testnet.kima.finance/", | ||
"address": "https://rpc.sardis.kima.network/", | ||
"provider": "Kima Network" | ||
} | ||
], | ||
"grpc": [ | ||
{ | ||
"address": "https://grpc.sardis.kima.network", | ||
"provider": "Kima Network" | ||
} | ||
], | ||
"rest": [ | ||
{ | ||
"address": "https://api-testnet.kima.finance", | ||
"address": "https://api.sardis.kima.network/", | ||
"provider": "Kima Network" | ||
} | ||
] | ||
}, | ||
"explorers": [ | ||
{ | ||
"kind": "Kima Network", | ||
"url": "https://explorer-testnet.kima.finance/", | ||
"tx_page": "https://explorer-testnet.kima.finance/transactions/${txHash}" | ||
"url": "https://explorer.sardis.kima.network/", | ||
"tx_page": "https://explorer.sardis.kima.network/transactions/${txHash}" | ||
} | ||
] | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The consensus, language, sdk, and ibc, are better stored in the "versions" file (but here is fine to include, as well).