Skip to content
Open
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.template
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ SCROLL_ETHERSCAN_API_KEY=
ZKSYNC_PROVIDER_URL=
CELO_PROVIDER_URL=
CELO_ETHERSCAN_API_KEY=
FLOW_PROVIDER_URL=
FLOW_TESTNET_PROVIDER_URL=
LINEA_PROVIDER_URL=
LINEA_ETHERSCAN_API_KEY=
ETHEREUM_SEPOLIA_PROVIDER_URL=
Expand Down
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,19 @@ Version 1.2.0:
* Contract: [0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797](https://lineascan.build/address/0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797)
* Deployment and ABI: [SchemaRegistry.json](./deployments/linea/SchemaRegistry.json)


#### Flow

Version 1.0.1:

* **EAS**:
* Contract: [0xc6376222F6E009A705a34dbF1dF72fEf8efB3964](https://evm.flowscan.io/address/0xc6376222F6E009A705a34dbF1dF72fEf8efB3964)
* Deployment and ABI: [EAS.json](./deployments/flow/EAS.json)
* **SchemaRegistry**:
* Contract: [0xB0cF748a05AEA8D59e15834446CFC95bcFF510F0](https://evm.flowscan.io/address/0xB0cF748a05AEA8D59e15834446CFC95bcFF510F0)
* Deployment and ABI: [SchemaRegistry.json](./deployments/flow/SchemaRegistry.json)


### Testnets

#### Sepolia
Expand Down Expand Up @@ -367,6 +380,18 @@ Version 1.2.0:
* Contract: [0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797](https://goerli.lineascan.build/address/0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797)
* Deployment and ABI: [SchemaRegistry.json](./deployments/linea-goerli/SchemaRegistry.json)

#### Flow Testnet

Version 1.0.1:

* **EAS**:
* Contract: [0x2ac8Be7de9442ff1C3b043311610f0C6bE0DA2fb](https://evm-testnet.flowscan.io/address/0x2ac8Be7de9442ff1C3b043311610f0C6bE0DA2fb )
* Deployment and ABI: [EAS.json](./deployments/flow-testnet/EAS.json)
* **SchemaRegistry**:
* Contract: [0x35457E403696EBB88B25CD52f8a7F2a15Efc21F0](https://evm-testnet.flowscan.io/address/0x35457E403696EBB88B25CD52f8a7F2a15Efc21F0 )
* Deployment and ABI: [SchemaRegistry.json](./deployments/flow-testnet/SchemaRegistry.json)


## Installation

```sh
Expand Down
2 changes: 2 additions & 0 deletions data/NamedAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ export const NamedAccounts = {
[DeploymentNetwork.PolygonAmoy]: deployer,
[DeploymentNetwork.ScrollSepolia]: deployer,
[DeploymentNetwork.LineaGoerli]: deployer,
[DeploymentNetwork.Flow]: deployer,
[DeploymentNetwork.FlowTestnet]: deployer,
[DeploymentNetwork.Hardhat]: 0
}
};
1 change: 1 addition & 0 deletions deployments/flow-testnet/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
545
8 changes: 8 additions & 0 deletions deployments/flow-testnet/.migrations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"000001-registry": 1692628438,
"000002-eas": 1692628441,
"000003-register-initial-schemas": 1692628528,
"000004-name-initial-schemas": 1692628619,
"000005-eip712-proxy": 1692628953,
"000100-test-seed": 1692629466
}
Loading