-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improve cli test coverage for pi<>core interactions (#3293)
- Loading branch information
1 parent
78f43c1
commit 3740256
Showing
6 changed files
with
185 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Configs for describing chain metadata for use in Hyperlane deployments or apps | ||
# Consists of a map of chain names to metadata | ||
# Schema here: https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/sdk/src/metadata/chainMetadataTypes.ts | ||
--- | ||
anvil: | ||
chainId: 31337 | ||
domainId: 31337 | ||
name: anvil | ||
protocol: ethereum | ||
rpcUrls: | ||
- http: http://127.0.0.1:8545 | ||
nativeToken: | ||
name: Ether | ||
symbol: ETH | ||
decimals: 18 | ||
ethereum: | ||
rpcUrls: | ||
- http: http://127.0.0.1:8555 | ||
blocks: | ||
confirmations: 1 | ||
estimateBlockTime: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# A config for a multisig Interchain Security Module (ISM) | ||
# Schema: https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/sdk/src/ism/types.ts | ||
# | ||
|
||
--- | ||
anvil: | ||
threshold: 1 # Number: Signatures required to approve a message | ||
validators: # Array: List of validator addresses | ||
- '0xa0ee7a142d267c1f36714e4a8f75612f20a79720' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# A config for a Warp Route deployment | ||
# Typically used with the 'hyperlane deploy warp' command | ||
# | ||
# Token Types: | ||
# native | ||
# collateral | ||
# synthetic | ||
# collateralUri | ||
# syntheticUri | ||
# fastCollateral | ||
# fastSynthetic | ||
--- | ||
base: | ||
chainName: anvil | ||
type: native | ||
# address: 0x123... # Required for collateral types | ||
# isNft: true # If the token is an NFT (ERC721), set to true | ||
# owner: 0x123 # Optional owner address for synthetic token | ||
# mailbox: 0x123 # Optional mailbox address route | ||
# interchainGasPaymaster: 0x123 # Optional interchainGasPaymaster address | ||
synthetics: | ||
- chainName: ethereum | ||
# You can optionally set the token metadata, otherwise the base token's will be used | ||
# name: "MySyntheticToken" | ||
# symbol: "MST" | ||
# totalSupply: 10000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters