-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test for fork deploy and read from process.env when using deploy …
…scripts
- Loading branch information
Showing
15 changed files
with
107 additions
and
59 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ concurrency: | |
|
||
jobs: | ||
verify-bindings: | ||
runs-on: ubuntu-latest | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
|
@@ -23,11 +23,10 @@ jobs: | |
go-version: "1.21.3" | ||
|
||
- name: Setup Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
uses: foundry-rs/foundry-toolchain@v1.2.0 | ||
|
||
- name: Install Bun | ||
uses: oven-sh/setup-bun@v2 | ||
|
||
- name: Install ABIGen | ||
run: | | ||
go install github.com/ethereum/go-ethereum/cmd/[email protected] | ||
|
@@ -44,3 +43,15 @@ jobs: | |
echo -e "Changes in Generated Bindings:\n$changes" | ||
exit 1 | ||
fi | ||
- name: Upload ts bindings artifact on error | ||
if: failure() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: ts-bindings | ||
path: ./src/evm/contracts/ | ||
- name: Upload go bindings artifact on error | ||
if: failure() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: go-bindings | ||
path: ./bindings/ |
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 |
---|---|---|
@@ -1,12 +1,11 @@ | ||
# These accounts are derived from a test mnemonic by Anvil/Hardhat and used for testing purposes only. | ||
- name: 'KEY_POLYMER' | ||
privateKey: '{{DEPLOYER_PRIVATE_KEY}}' | ||
|
||
- name: 'KEY_DEPLOYER' | ||
privateKey: '{{ DUMMY_DEPLOYER_PRIVATE_KEY }}' | ||
|
||
# Dapp accounts | ||
- name: 'KEY_DAPP1' | ||
privateKey: '{{ DAPP_PRIVATE_KEY_1 }}' | ||
- name: 'KEY_DAPP2' | ||
privateKey: '{{ DAPP_PRIVATE_KEY_2 }}' | ||
- name: 'KEY_DAPP3' | ||
privateKey: '{{ DAPP_PRIVATE_KEY_2 }}' | ||
privateKey: '{{ DAPP_PRIVATE_KEY_3 }}' |
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.