Skip to content

Commit

Permalink
sonic deployment and verification
Browse files Browse the repository at this point in the history
  • Loading branch information
a17 committed Dec 24, 2024
1 parent c0f9f47 commit 8e4e2eb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ POLYGONSCAN_API_KEY=
BASESCAN_API_KEY=
ARBITRUMSCAN_API_KEY=
ETHERSCAN_API_KEY=
SONICSCAN_API_KEY=
PRIVATE_KEY=
FOUNDRY_PROFILE=lite
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Platform address.
* **Polygon** [137] `0xb2a0737ef27b5Cc474D24c779af612159b1c3e60` [polygonscan](https://polygonscan.com/address/0xb2a0737ef27b5Cc474D24c779af612159b1c3e60)
* **Base** [8453] `0x7eAeE5CfF17F7765d89F4A46b484256929C62312` [basescan](https://basescan.org/address/0x7eaee5cff17f7765d89f4a46b484256929c62312)
* **Re.al** [111188] `0xB7838d447deece2a9A5794De0f342B47d0c1B9DC` [explorer.re.al](https://explorer.re.al/address/0xB7838d447deece2a9A5794De0f342B47d0c1B9DC)
* **Sonic** [146] `0x4Aca671A420eEB58ecafE83700686a2AD06b20D8` [sonicscan](https://sonicscan.org/address/0x4aca671a420eeb58ecafe83700686a2ad06b20d8)

## Audits

Expand Down
1 change: 1 addition & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ polygon = { key = "${POLYGONSCAN_API_KEY}", chain = 137 }
base = { key = "${BASESCAN_API_KEY}", chain = 8453 }
arbitrum = { key = "${ARBITRUMSCAN_API_KEY}", chain = 42161 }
ethereum = { key = "${ETHERSCAN_API_KEY}", chain = 1 }
sonic = { key = "${SONICSCAN_API_KEY}", chain = 146, url = "https://api.sonicscan.org/api" }
6 changes: 6 additions & 0 deletions src/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,9 @@ forge script --rpc-url polygon script/deploy-strategy/IQMF.Polygon.s.sol -vvvv -
```shell
forge script --rpc-url real script/deploy-core/Deploy.Real.s.sol --verify --verifier blockscout --verifier-url https://explorer.re.al/api? --slow --with-gas-price 30000000 -g 200 --broadcast
```

### Sonic

```shell
forge script --rpc-url sonic --slow --broadcast --verify --etherscan-api-key sonic script/deploy-core/Deploy.Sonic.s.sol
```

0 comments on commit 8e4e2eb

Please sign in to comment.