forked from wormhole-foundation/wormhole
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
author Obie Kaku <[email protected]> 1718989425 -0500 committer Obie Kaku <[email protected]> 1733863492 -0600 chore: refreshed icts core contract upgrade working wip wip Update wormchain_test.go fix: creating wormhole ibc channel correctly debugging ibc handshake chore: refactoring tests tests updated wip Add interchaintest tests to wormchain chore: refreshed icts core contract upgrade working wip wip Update wormchain_test.go fix: creating wormhole ibc channel correctly debugging ibc handshake chore: refactoring tests tests updated wip removed unneeded schema files revert contract changes removed unused wasm binaries reverted unneeded formatting changes removed unused wasm binaries Node: p2p.Run not always subscribing to heartbeat channel when it should (wormhole-foundation#4152) Node: CCQ logging changes (wormhole-foundation#4153) wormchain: disable ignite Node: Deploy Worldchain mainnet (wormhole-foundation#4156) * Node: Deploy Worldchain mainnet * Code review rework * node: Governor setup for Worldchain --------- Co-authored-by: Dirk Brink <[email protected]> make: fix VERSION unset if commit has no associated tag eth: env file for Worldchain Mainnet (wormhole-foundation#4158) Deploy Ink testnet Node: Update golang (wormhole-foundation#4161) * Node: Update golang * node: Upgrade golangci-lint Temporarily increasing governor limits for a few chains (wormhole-foundation#4164) refactoring and clean up put back the ibc translator update channel chain remove unused contract upgrade fn removed wormchaind build reorganized some test utils
- Loading branch information
Showing
53 changed files
with
1,169 additions
and
232 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.21.9" | ||
go-version: "1.23.3" | ||
- run: make node | ||
|
||
algorand: | ||
|
@@ -186,8 +186,7 @@ jobs: | |
done | ||
cargo test --workspace --features "nft-bridge/instructions token-bridge/instructions wormhole-bridge-solana/instructions" | ||
shell: | ||
bash | ||
shell: bash | ||
|
||
aptos: | ||
name: Aptos | ||
|
@@ -271,7 +270,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.21.9" | ||
go-version: "1.23.3" | ||
- run: cd sdk/vaa && go test && go test -v -fuzz FuzzCalculateQuorum -run FuzzCalculateQuorum -fuzztime 15s | ||
|
||
# Run Go linters | ||
|
@@ -288,13 +287,13 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.21.9" | ||
go-version: "1.23.3" | ||
- name: Install formatter | ||
run: go install golang.org/x/tools/cmd/[email protected] | ||
- name: Formatting checks | ||
run: ./scripts/lint.sh -l -g format | ||
- name: Install linters | ||
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.57.2 | ||
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.60.1 | ||
- name: Run linters | ||
run: make generate && golangci-lint --version && ./scripts/lint.sh -g lint | ||
- name: Ensure generated proto matches | ||
|
@@ -330,7 +329,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.21.9" | ||
go-version: "1.23.3" | ||
# The go-ethereum and celo-blockchain packages both implement secp256k1 using the exact same header, but that causes duplicate symbols. | ||
- name: Run golang tests | ||
run: cd node && go test -v -timeout 5m -race -ldflags '-extldflags "-Wl,--allow-multiple-definition" ' ./... | ||
|
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
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,20 @@ | ||
# Ink testnet env | ||
# Rename to .env | ||
|
||
# Common config for forge deployment | ||
RPC_URL=https://rpc-qnd-sepolia.inkonchain.com | ||
|
||
# Wormhole Core Migrations | ||
INIT_SIGNERS=["0x13947Bd48b18E53fdAeEe77F3473391aC727C638"] | ||
INIT_CHAIN_ID=46 | ||
INIT_GOV_CHAIN_ID=0x1 | ||
INIT_GOV_CONTRACT=0x0000000000000000000000000000000000000000000000000000000000000004 | ||
INIT_EVM_CHAIN_ID=763373 | ||
|
||
# Bridge Migrations | ||
BRIDGE_INIT_CHAIN_ID=46 | ||
BRIDGE_INIT_GOV_CHAIN_ID=0x1 | ||
BRIDGE_INIT_GOV_CONTRACT=0x0000000000000000000000000000000000000000000000000000000000000004 | ||
BRIDGE_INIT_FINALITY=1 | ||
# Ink is an OP Stack chain so it uses the standard WETH. | ||
BRIDGE_INIT_WETH=0x4200000000000000000000000000000000000006 |
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,22 @@ | ||
# Worldchain mainnet env | ||
# Rename to .env | ||
|
||
# Common config for forge deployment | ||
RPC_URL=https://worldchain-mainnet.g.alchemy.com/public | ||
FORGE_ARGS="--slow --legacy" | ||
|
||
# Wormhole Core Migrations | ||
INIT_SIGNERS=["0x58CC3AE5C097b213cE3c81979e1B9f9570746AA5"] | ||
INIT_CHAIN_ID=45 | ||
INIT_GOV_CHAIN_ID=0x1 | ||
INIT_GOV_CONTRACT=0x0000000000000000000000000000000000000000000000000000000000000004 | ||
INIT_EVM_CHAIN_ID=480 | ||
|
||
# Bridge Migrations | ||
BRIDGE_INIT_CHAIN_ID=45 | ||
BRIDGE_INIT_GOV_CHAIN_ID=0x1 | ||
BRIDGE_INIT_GOV_CONTRACT=0x0000000000000000000000000000000000000000000000000000000000000004 | ||
|
||
# https://www.coingecko.com/en/coins/wrapped-eth-world-chain | ||
BRIDGE_INIT_WETH=0x4200000000000000000000000000000000000006 | ||
BRIDGE_INIT_FINALITY=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
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
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
Oops, something went wrong.