Skip to content

Commit

Permalink
Deploy to Sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeder committed Jan 27, 2023
1 parent a6f74d8 commit 3e79762
Show file tree
Hide file tree
Showing 21 changed files with 2,773 additions and 2,422 deletions.
5 changes: 3 additions & 2 deletions .env.template
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
ETHEREUM_PROVIDER_URL=
ETHEREUM_GOERLI_PROVIDER_URL=
ETHEREUM_SEPOLIA_PROVIDER_URL=
TENDERLY_FORK_ID=
TENDERLY_PROJECT=
TENDERLY_USERNAME=
TENDERLY_ACCESS_KEY=
TENDERLY_TEST_PROJECT=
ETHERSCAN_API_KEY=
GAS_PRICE=
MAX_FEE=
MAX_PRIORITY_FEE=
DEPLOYER=
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ artifacts
typechain-types

deployments/mainnet/solcInputs/*
deployments/goerli/solcInputs/*
deployments/sepolia/solcInputs/*
deployments/hardhat/*
deployments/tenderly/*

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ On-chain attestations will enable a powerful new range of web3 applications, inc

## Deployments

### Goerli
### Sepolia

#### v0.22
#### v0.24

* **EAS**:
* Contract: [0xf0273638b19877fbA1ca9282Adb7ED83ADa819F8](https://goerli.etherscan.io/address/0xf0273638b19877fbA1ca9282Adb7ED83ADa819F8)
* Deployment and ABI: [EAS.json](./deployments/goerli/EAS.json)
* Contract: [0x50DB967C805A88FAebA43a2049AAc78052ff9f8F](https://sepolia.etherscan.io/address/0x50DB967C805A88FAebA43a2049AAc78052ff9f8F)
* Deployment and ABI: [EAS.json](./deployments/sepolia/EAS.json)
* **SchemaRegistry**:
* Contract: [0x40E750bbDCC059cb5F3c24e1B5C84E2D3ea8D2Fc](https://goerli.etherscan.io/address/0x40E750bbDCC059cb5F3c24e1B5C84E2D3ea8D2Fc)
* Deployment and ABI: [SchemaRegistry.json](./deployments/goerli/SchemaRegistry.json)
* Contract: [0x16399b867877D7f59deE9f04bD79B07fa8D17f7A](https://sepolia.etherscan.io/address/0x16399b867877D7f59deE9f04bD79B07fa8D17f7A)
* Deployment and ABI: [SchemaRegistry.json](./deployments/sepolia/SchemaRegistry.json)

## Installation

Expand Down
8 changes: 4 additions & 4 deletions data/NamedAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ const mainnet = (address: string) => ({
[DeploymentNetwork.Tenderly]: address
});

const goerli = (address: string) => ({
[DeploymentNetwork.Goerli]: address
const sepolia = (address: string) => ({
[DeploymentNetwork.Sepolia]: address
});

const TestNamedAccounts = {
ethWhale: {
...mainnet('0x00000000219ab540356cbb839cbe05303d7705fa'),
...goerli('0xf97e180c050e5Ab072211Ad2C213Eb5AEE4DF134')
...sepolia('0xb21c33DE1FAb3FA15499c62B59fe0cC3250020d1')
}
};

export const NamedAccounts = {
deployer: {
...mainnet(deployer),
...goerli(deployer)
...sepolia(deployer)
},

...TestNamedAccounts
Expand Down
1 change: 0 additions & 1 deletion deployments/goerli/.chainId

This file was deleted.

7 changes: 0 additions & 7 deletions deployments/goerli/.migrations.json

This file was deleted.

Loading

0 comments on commit 3e79762

Please sign in to comment.