Skip to content

Commit

Permalink
Add Base Sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeder committed Jan 26, 2024
1 parent 52af661 commit 9521ef6
Show file tree
Hide file tree
Showing 22 changed files with 7,244 additions and 0 deletions.
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ETHEREUM_LINEA_PROVIDER_URL=
ETHEREUM_SEPOLIA_PROVIDER_URL=
ETHEREUM_OPTIMISM_SEPOLIA_PROVIDER_URL=
ETHEREUM_OPTIMISM_GOERLI_PROVIDER_URL=
ETHEREUM_BASE_SEPOLIA_PROVIDER_URL=
ETHEREUM_BASE_GOERLI_PROVIDER_URL=
ETHEREUM_ARBITRUM_GOERLI_PROVIDER_URL=
ETHEREUM_POLYGON_MUMBAI_PROVIDER_URL=
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ deployments/linea/solcInputs/*
deployments/sepolia/solcInputs/*
deployments/optimism-sepolia/solcInputs/*
deployments/optimism-goerli/solcInputs/*
deployments/base-sepolia/solcInputs/*
deployments/base-goerli/solcInputs/*
deployments/arbitrum-goerli/solcInputs/*
deployments/polygon-mumbai/solcInputs/*
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,26 @@ Version 1.2.0:
* Contract: [0xa42428D1bf904d762adD02b27ADac26d53643782](https://goerli-optimism.etherscan.io/address/0xa42428D1bf904d762adD02b27ADac26d53643782)
* Deployment and ABI: [Indexer.json](./deployments/optimism-goerli/Indexer.json)

#### Base Sepolia

Version 1.2.0:

* **EAS**:
* Contract: [0x4200000000000000000000000000000000000021](https://sepolia.basescan.org/address/0x4200000000000000000000000000000000000021)
* Deployment and ABI: [EAS.json](./deployments/base-sepolia/EAS.json)
* **SchemaRegistry**:
* Contract: [0x4200000000000000000000000000000000000020](https://sepolia.basescan.org/address/0x4200000000000000000000000000000000000020)
* Deployment and ABI: [SchemaRegistry.json](./deployments/base-sepolia/SchemaRegistry.json)

Version 1.3.0:

* **EIP712Proxy**:
* Contract: [0xAd64A04c20dDBbA7cBb0EcAe4823095B4adA5c57](https://sepolia.basescan.org/address/0xAd64A04c20dDBbA7cBb0EcAe4823095B4adA5c57)
* Deployment and ABI: [EIP712Proxy.json](./deployments/base-sepolia/EIP712Proxy.json)
* **Indexer**:
* Contract: [0x2C7BCE69D5Ee84EF73CC9286416F68E60F9A61b3](https://sepolia.basescan.org/address/0x2C7BCE69D5Ee84EF73CC9286416F68E60F9A61b3)
* Deployment and ABI: [Indexer.json](./deployments/base-sepolia/Indexer.json)

#### Base Goerli

Version 1.0.1:
Expand Down
1 change: 1 addition & 0 deletions data/NamedAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const NamedAccounts = {
[DeploymentNetwork.Sepolia]: deployer,
[DeploymentNetwork.OptimismSepolia]: deployer,
[DeploymentNetwork.OptimismGoerli]: deployer,
[DeploymentNetwork.BaseSepolia]: deployer,
[DeploymentNetwork.BaseGoerli]: deployer,
[DeploymentNetwork.ArbitrumGoerli]: deployer,
[DeploymentNetwork.PolygonMumbai]: deployer,
Expand Down
1 change: 1 addition & 0 deletions deployments/base-sepolia/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
84532
9 changes: 9 additions & 0 deletions deployments/base-sepolia/.migrations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"000001-registry": 1684880484,
"000002-eas": 1684880493,
"000003-register-initial-schemas": 1706273944,
"000004-name-initial-schemas": 1706274209,
"000005-eip712-proxy": 1706274215,
"000006-indexer": 1706274220,
"000100-test-seed": 1706274304
}
Loading

0 comments on commit 9521ef6

Please sign in to comment.