Skip to content

Commit

Permalink
fix: use localosmosis key
Browse files Browse the repository at this point in the history
  • Loading branch information
byeongsu-hong committed Feb 28, 2024
1 parent ef17165 commit df1a67c
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 8 deletions.
6 changes: 5 additions & 1 deletion scripts/GUIDE_DEPLOY.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ networks:
# It's very arbitrary value, Perhaps you must need to change this value.
domain: 1304

signer: <private_key> | <mnemonic>
# default mnemonic key of LocalOsmosis (https://github.com/osmosis-labs/osmosis/blob/d45a3baf684e55cdc83ef23c4fc11ae1df1726af/tests/localosmosis/scripts/setup.sh#L9C11-L9C159)
# osmo12smx2wdlyttvyzvzg54y2vnqwq2qjateuf7thj
# 0xae7d1F30e324D4e348EF04D9a9e867F863f23067
# 9ff80c31b47c7f2946654f569a6b1530db78d7fa5b3ea16db82570cdfd6d43f6
signer: "bottom loan skill merry east cradle onion journey palm apology verb edit desert impose absurd oil bubble sweet glove shallow size build burst effort"

deploy:
ism:
Expand Down
12 changes: 7 additions & 5 deletions scripts/example/hyperlane/relayer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@
"destinationDomain": [11155111]
}
],
"defaultsigner": {
"type": "hexKey",
"key": "{private_key}"
},
"chains": {
"sepolia": {
"signer": {
"type": "hexKey",
"key": "{private_key}"
}
},
"localosmosis": {
"signer": {
"type": "cosmosKey",
"key": "{private_key}",
"key": "9ff80c31b47c7f2946654f569a6b1530db78d7fa5b3ea16db82570cdfd6d43f6",
"prefix": "osmo"
}
}
Expand Down
21 changes: 21 additions & 0 deletions scripts/example/hyperlane/validator.localosmosis.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"db": "/etc/data/db",
"checkpointSyncer": {
"type": "localStorage",
"path": "/etc/validator/localosmosis/checkpoint"
},
"originChainName": "localosmosis",
"validator": {
"type": "hexKey",
"key": "9ff80c31b47c7f2946654f569a6b1530db78d7fa5b3ea16db82570cdfd6d43f6"
},
"chains": {
"localosmosis": {
"signer": {
"type": "cosmosKey",
"key": "9ff80c31b47c7f2946654f569a6b1530db78d7fa5b3ea16db82570cdfd6d43f6",
"prefix": "osmo"
}
}
}
}
4 changes: 2 additions & 2 deletions scripts/example/hyperlane/validator.stridehyperlane1.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"originChainName": "localosmosis",
"validator": {
"type": "hexKey",
"key": "{private_key}"
"key": "9ff80c31b47c7f2946654f569a6b1530db78d7fa5b3ea16db82570cdfd6d43f6"
},
"chains": {
"localosmosis": {
"signer": {
"type": "cosmosKey",
"key": "{private_key}",
"key": "9ff80c31b47c7f2946654f569a6b1530db78d7fa5b3ea16db82570cdfd6d43f6",
"prefix": "osmo"
}
}
Expand Down

0 comments on commit df1a67c

Please sign in to comment.