chore: enable `osmosis` on relayer (#4028)

- chore: enable `osmosis` on relayer
- drive-by add default chain signer/key/type to agent config
	- `signer.key` is copied from `neutron`

---------

Signed-off-by: Paul Balaji <10051819+paulbalaji@users.noreply.github.com>
pull/4032/head
Paul Balaji 5 months ago committed by GitHub
parent 832351d0d0
commit c5a5e264b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      rust/config/mainnet_config.json
  2. 3
      typescript/infra/config/environments/mainnet3/agent.ts

@ -1155,6 +1155,11 @@
"http": "https://osmosis-rpc.publicnode.com"
}
],
"signer": {
"key": "0x5486418967eabc770b0fcb995f7ef6d9a72f7fc195531ef76c5109f44f51af26",
"prefix": "osmo",
"type": "cosmosKey"
},
"slip44": 118,
"validatorAnnounce": "0xaf867da5b09a20ee49161d57f99477c0c42d100f34eb53da0d2eb7fc6c257235"
},

@ -93,7 +93,7 @@ export const hyperlaneContextAgentChainConfig: AgentChainConfig = {
// At the moment, we only relay between Neutron and Manta Pacific on the neutron context.
neutron: false,
optimism: true,
osmosis: false,
osmosis: true,
polygon: true,
polygonzkevm: true,
redstone: true,
@ -123,6 +123,7 @@ export const hyperlaneContextAgentChainConfig: AgentChainConfig = {
// Cannot scrape non-EVM chains
neutron: false,
optimism: true,
// Cannot scrape non-EVM chains
osmosis: false,
polygon: true,
polygonzkevm: true,

Loading…
Cancel
Save