Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
Signed-off-by: Urban Vidovič <urbanfoundit@gmail.com>
  • Loading branch information
pseudobun committed Jun 4, 2024
1 parent eaebfdd commit 1c23142
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const config: HardhatUserConfig = {
'SEPOLIA_RPC_URL',
'https://ethereum-sepolia-rpc.publicnode.com'
),
blockNumber: 5948343,
blockNumber: 6037898,
},
blockGasLimit: 12000000,
initialBaseFeePerGas: 5000000000,
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": "pnpm test:hardhat && pnpm test:forge",
"test:hardhat": "hardhat test",
"test:hardhat:local": "hardhat test --network local",
"test:forge": "forge test --evm-version cancun --fork-url $SEPOLIA_RPC_URL --fork-block-number 5948343",
"test:forge": "forge test --evm-version cancun --fork-url $SEPOLIA_RPC_URL --fork-block-number 6037898",
"coverage": "pnpm coverage:hardhat",
"coverage:hardhat": "hardhat coverage --sources Core",
"lint": "forge fmt --check && biome check .",
Expand Down
2 changes: 1 addition & 1 deletion packages/subgraphs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Steps

1. Run anvil `anvil --hardfork cancun --fork-url $SEPOLIA_RPC_URL --fork-block-number 5948343 -b 1`
1. Run anvil `anvil --hardfork cancun --fork-url $SEPOLIA_RPC_URL --fork-block-number 6037898 -b 1`
2. Run `pnpm clean` && `pnpm deploy:local` inside `/packages/contracts`
3. Delete `data` folder if it exists
4. Run containers `docker compose up -d --force-recreate --build``
Expand Down
2 changes: 1 addition & 1 deletion packages/subgraphs/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
postgres_db: graph-node
ipfs: "ipfs:5001"
ethereum: "test:http://host.docker.internal:8545"
GRAPH_ETHEREUM_GENESIS_BLOCK_NUMBER: "5948343"
GRAPH_ETHEREUM_GENESIS_BLOCK_NUMBER: "6037898"
GRAPH_LOG: info

ipfs:
Expand Down
10 changes: 5 additions & 5 deletions packages/subgraphs/networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
"test": {
"EESCore": {
"address": "0xa0b4B77fD7Afd4A38810fB2c060F93aF5e085156",
"startBlock": 5948343
"startBlock": 6037898
}
},
"base-sepolia": {
"EESCore": {
"address": "",
"startBlock": 0
"address": "0x63F610a03Caa82ca32386BDb6F447a93d4D6F6e7",
"startBlock": 10868305
}
},
"sepolia": {
"EESCore": {
"address": "0xe53090918048bd0066c152A89517242893CE9955",
"startBlock": 5990726
"address": "0x306aa8b6640A4Ef12919Ed97b5d85c006DD68796",
"startBlock": 6037898
}
}
}

0 comments on commit 1c23142

Please sign in to comment.