Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin-Radecki committed Oct 28, 2024
1 parent a3eb129 commit 18b5b2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/contracts-compile-and-deploy-to-devenv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,15 @@ jobs:
SEPOLIA_MNEMONIC: ${{ secrets.DEVENV_TESTNET_SEPOLIA_KEY }}
SEPOLIA_ACCOUNT_NUMBER: ${{ secrets.DEVENV_TESTNET_SEPOLIA_ACCOUNT_NUMBER }}
SEPOLIA_TOKEN_CONFIG_PATH: "../cfg/tokens_testnet.json"
NETWORK: "sepolia"
COMPILE_ETH_CONTRACTS_WHEN_DEPLOYING: "no-compile"
run: |
make deploy-eth-transfer-limit NETWORK=sepolia
make deploy-eth-transfer-limit
- name: Deploy azero contracts
shell: bash
env:
NETWORK: "sepolia"
AZERO_ENV: "testnet"
COMPILE_AZERO_CONTRACTS_WHEN_DEPLOYING: "no-compile"
run: |
make deploy-azero-docker
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ endif

.PHONY: deploy-eth-transfer-limit
deploy-eth-transfer-limit: # Deploy TransferLimit eth contract
ifeq ($(COMPILE_ETH_CONTRACTS_WHEN_DEPLOYING),compile)
deploy-eth-transfer-limit: compile-eth
endif
cd eth && \
npx hardhat run --network $(NETWORK) scripts/deploy_transfer_limit.js

Expand Down

0 comments on commit 18b5b2d

Please sign in to comment.