Skip to content

Commit

Permalink
Add upfront grant
Browse files Browse the repository at this point in the history
  • Loading branch information
anikaraghu committed Jul 27, 2024
1 parent 7f04a7e commit 59494bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions mainnet/2024-06-05-reredeploy-smart-escrow/.env
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ START=1720674000
CLIFF_START=1724976000
END=1878462000
VESTING_PERIOD_SECONDS=7889400
INITIAL_TOKENS=17895697000000000000000000
INITIAL_TOKENS=28633115000000000000000000
VESTING_EVENT_TOKENS=4473924000000000000000000

DEPLOYED_CONTRACT=0x90b8B3Ee045930200643427B648A2b3b073F9a4b
ETHERSCAN_API_KEY=
DEPLOYED_CONTRACT=
ETHERSCAN_API_KEY=
4 changes: 2 additions & 2 deletions mainnet/2024-06-05-reredeploy-smart-escrow/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ include .env

.PHONY: deploy-new-implementation
deploy-new-implementation:
forge script --rpc-url $(OPTIMISM_RPC_URL) DeploySmartEscrow --ledger --hd-paths "m/44'/60'/0'/0/0" --broadcast
forge script --rpc-url $(OPTIMISM_RPC_URL) DeploySmartEscrow --ledger --hd-paths "m/44'/60'/0'/0/0" --broadcast --verify

.PHONY: verify-implementation
verify-implementation:
forge verify-contract ${DEPLOYED_CONTRACT} SmartEscrow \
--constructor-args $(shell cast abi-encode "constructor(address,address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256)" ${BENEFACTOR} ${BENEFICIARY} ${BENEFACTOR_OWNER} ${BENEFICIARY_OWNER} ${NESTED_SAFE} ${START} ${CLIFF_START} ${END} ${VESTING_PERIOD_SECONDS} ${INITIAL_TOKENS} ${VESTING_EVENT_TOKENS}) \
--watch --chain-id $(OPTIMISM_CHAIN_ID) \
--compiler-version v0.8.15+commit.e14f2714 --num-of-optimizations=99999 --retries=1 \
--verifier-url https://api-optimistic.etherscan.io/api
--verifier-url https://api-optimistic.etherscan.io/api

0 comments on commit 59494bc

Please sign in to comment.