Skip to content

Commit

Permalink
feat(ZetaChain): Fix accountPath in registry.json
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Jan 25, 2024
1 parent c45753b commit 741c600
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -4440,8 +4440,8 @@
"hrp": "zeta",
"addressHasher": "keccak256",
"explorer": {
"url": "https://explorer.zetachain.com/cosmos",
"txPath": "/tx/",
"url": "https://explorer.zetachain.com",
"txPath": "/cosmos/tx/",
"accountPath": "/address/",
"sampleTx": "2DBB071DDD47985F4470A21E5943CE95D371AE4BDE2267E201D3553FB2BDCFDE",
"sampleAccount": "zeta14py36sx57ud82t9yrks9z6hdsrpn5x6kmxs0ne"
Expand Down
2 changes: 1 addition & 1 deletion tests/chains/NativeZetaChain/TWCoinTypeTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ TEST(TWNativeZetaChainCoinType, TWCoinType) {
ASSERT_EQ(TWCoinTypeP2shPrefix(coin), 0);
ASSERT_EQ(TWCoinTypeStaticPrefix(coin), 0);
assertStringsEqual(txUrl, "https://explorer.zetachain.com/cosmos/tx/2DBB071DDD47985F4470A21E5943CE95D371AE4BDE2267E201D3553FB2BDCFDE");
assertStringsEqual(accUrl, "https://explorer.zetachain.com/cosmos/account/zeta14py36sx57ud82t9yrks9z6hdsrpn5x6kmxs0ne");
assertStringsEqual(accUrl, "https://explorer.zetachain.com/address/zeta14py36sx57ud82t9yrks9z6hdsrpn5x6kmxs0ne");
}

0 comments on commit 741c600

Please sign in to comment.