Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ export LOCALHOST_RPC_URL=http://127.0.0.1:8545
# Mainnet RPC URLs
export MAINNET_RPC_URL=
export LINEA_RPC_URL=
export BNB_RPC_URL=

# Testnet RPC URLs
export SEPOLIA_RPC_URL=
export LINEA_SEPOLIA_RPC_URL=
export BNB_TESTNET_RPC_URL=

# Private key for the deployer account
export PRIVATE_KEY=
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,18 @@ deploy-mainnet: deploy
deploy-linea: RPC_URL=$(LINEA_RPC_URL)
deploy-linea: deploy

deploy-bnb: RPC_URL=$(BNB_RPC_URL)
deploy-bnb: deploy

deploy-sepolia: RPC_URL=$(SEPOLIA_RPC_URL)
deploy-sepolia: deploy

deploy-linea-sepolia: RPC_URL=$(LINEA_SEPOLIA_RPC_URL)
deploy-linea-sepolia: deploy

deploy-bnb-testnet: RPC_URL=$(BNB_TESTNET_RPC_URL)
deploy-bnb-testnet: deploy

# Upgrade helpers
upgrade:
FOUNDRY_PROFILE=production PRIVATE_KEY=$(PRIVATE_KEY) \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ npm run deploy-linea

#### Mainnet

| Network | Implementation | Proxy | Proxy Admin |
| -------- | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| -- |
| Network | Implementation | Proxy | Proxy Admin |
| -------- | -------------- |------ |------------ |
| Ethereum | [0x37A309611E1d278cDdC341E479957Ec8Bc6256CE](https://etherscan.io/address/0x37A309611E1d278cDdC341E479957Ec8Bc6256CE) | [0xacA92E438df0B2401fF60dA7E4337B687a2435DA](https://etherscan.io/address/0xacA92E438df0B2401fF60dA7E4337B687a2435DA) | [0x685E7F8C9414bfa716b254b349153e2317929ac9](https://etherscan.io/address/0x685E7F8C9414bfa716b254b349153e2317929ac9) |
| Linea | [0x58a3A9C561591bab0dd11110EcA755EA455f1841](https://lineascan.build/address/0x58a3A9C561591bab0dd11110EcA755EA455f1841) | [0xacA92E438df0B2401fF60dA7E4337B687a2435DA](https://lineascan.build/address/0xacA92E438df0B2401fF60dA7E4337B687a2435DA) | [0x685E7F8C9414bfa716b254b349153e2317929ac9](https://lineascan.build/address/0x685E7F8C9414bfa716b254b349153e2317929ac9) |
| BNB |[0x23d8162e084aa33d8ef6fcc0ab33f4028a53ee79](https://bscscan.com/address/0x23d8162e084aa33d8ef6fcc0ab33f4028a53ee79) | [0xacA92E438df0B2401fF60dA7E4337B687a2435DA](https://bscscan.com/address/0xacA92E438df0B2401fF60dA7E4337B687a2435DA) | [0x685E7F8C9414bfa716b254b349153e2317929ac9](https://bscscan.com/address/0x685E7F8C9414bfa716b254b349153e2317929ac9) |

#### Sepolia

Expand Down
309 changes: 309 additions & 0 deletions broadcast/DeployMUSD.s.sol/11155111/run-1759881203.json

Large diffs are not rendered by default.

309 changes: 309 additions & 0 deletions broadcast/DeployMUSD.s.sol/11155111/run-latest.json

Large diffs are not rendered by default.

296 changes: 296 additions & 0 deletions broadcast/DeployMUSD.s.sol/56/run-1759881666.json

Large diffs are not rendered by default.

296 changes: 296 additions & 0 deletions broadcast/DeployMUSD.s.sol/56/run-latest.json

Large diffs are not rendered by default.

296 changes: 296 additions & 0 deletions broadcast/DeployMUSD.s.sol/97/run-1759880430.json

Large diffs are not rendered by default.

296 changes: 296 additions & 0 deletions broadcast/DeployMUSD.s.sol/97/run-latest.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,17 @@ depth = 250
localhost = "${LOCALHOST_RPC_URL}"
mainnet = "${MAINNET_RPC_URL}"
linea = "${LINEA_RPC_URL}"
bnb = "${BNB_RPC_URL}"
sepolia = "${SEPOLIA_RPC_URL}"
lineaSepolia = "${LINEA_SEPOLIA_RPC_URL}"
bnbTestnet = "${BNB_TESTNET_RPC_URL}"

[etherscan]
mainnet = { key = "${ETHERSCAN_API_KEY}", url = "https://api.etherscan.io/v2/api?chainid=1" }
linea = { key = "${ETHERSCAN_API_KEY}", url = "https://api.etherscan.io/v2/api?chainid=59144" }
bnb = { key = "${ETHERSCAN_API_KEY}", url = "https://api.etherscan.io/v2/api?chainid=56" }
sepolia = { key = "${ETHERSCAN_API_KEY}", url = "https://api.etherscan.io/v2/api?chainid=11155111" }
lineaSepolia = { key = "${ETHERSCAN_API_KEY}", url = "https://api.etherscan.io/v2/api?chainid=59141" }
bnbTestnet = { key = "${ETHERSCAN_API_KEY}", url = "https://api.etherscan.io/v2/api?chainid=97" }

# See more config options at https://github.com/foundry-rs/foundry/tree/master/crates/config