File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,12 +7,13 @@ help: ## Show help
77 @grep -E ' ^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
88
99# Factory predeploy (same on all OP Stack chains)
10- FACTORY =0x4200000000000000000000000000000000000012
10+ FACTORY_SEPOLIA =0x4200000000000000000000000000000000000012
11+ FACTORY_MAINNET =0xF10122D428B4bc8A9d050D06a2037259b4c4B83B
1112
1213# --- Deployment ---
1314
1415deploy-base-sepolia : # # Deploy ALIGN on BaseSepolia
15- @L2_TOKEN=$$(cast send $(FACTORY ) \
16+ @L2_TOKEN=$$(cast send $(FACTORY_SEPOLIA ) \
1617 " createOptimismMintableERC20(address,string,string)" \
1718 $(L1_TOKEN_SEPOLIA ) " Aligned Token" " ALIGN" \
1819 --private-key $(DEPLOYER_PRIVATE_KEY ) \
@@ -21,7 +22,7 @@ deploy-base-sepolia: ## Deploy ALIGN on BaseSepolia
2122 echo " L2 Token deployed at: $$ L2_TOKEN"
2223
2324deploy-base-mainnet : # # Deploy ALIGN on BaseMainnet
24- @L2_TOKEN=$$(cast send $(FACTORY ) \
25+ @L2_TOKEN=$$(cast send $(FACTORY_MAINNET ) \
2526 " createOptimismMintableERC20(address,string,string)" \
2627 $(L1_TOKEN_MAINNET ) " Aligned Token" " ALIGN" \
2728 --interactive \
You can’t perform that action at this time.
0 commit comments