Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/process queue batch #273

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .envrc.local-example
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,7 @@ export BSCSCAN_API_KEY=""
export POLYGONSCAN_API_KEY=""
export SNOWSCAN_API_KEY=""

export MULTISIG_SAFE=0x617c8dE5BdE54ffbb8d92716CC947858cA38f582
export MULTISIG_SAFE=0x617c8dE5BdE54ffbb8d92716CC947858cA38f582

export CHAIN="mainnet"
export WALLET_TYPE="local"
5 changes: 4 additions & 1 deletion .github/workflows/foundry-forge-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ env:
BSC_MAINNET_RPC_URL: ${{ secrets.BSC_MAINNET_RPC_URL }}
OPTIMISM_RPC_URL: ${{ secrets.OPTIMISM_RPC_URL }}
AVALANCHE_RPC_URL: ${{ secrets.AVALANCHE_RPC_URL }}
CHAIN: ${{ secrets.CHAIN }}
WALLET_TYPE: ${{ secrets.WALLET_TYPE }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}

jobs:
tests:
Expand All @@ -45,5 +48,5 @@ jobs:

- name: Run Forge tests
run: |
forge test --deny-warnings -vvv
forge test --deny-warnings -vvv --ffi
id: test
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@
[submodule "lib/solady"]
path = lib/solady
url = https://github.com/Vectorized/solady
[submodule "lib/forge-safe"]
path = lib/forge-safe
url = https://github.com/ind-igo/forge-safe
Loading