diff --git a/deploys.md b/deploys.md new file mode 100644 index 00000000..ea474802 --- /dev/null +++ b/deploys.md @@ -0,0 +1,21 @@ +Nothing to compile +No need to generate any newer typings. +10200 +deploying to chainId 10200 with deployer 0xcAf9AdE1fDDf1b31d490A4629ADA638d104e9543 +calculated future router for nonce 5: 0x5BE03fDE7794Bc188416ba16932510Ed1277b193 +reusing "VeaOutboxArbToGnosisTestnet" at 0x2f1788F7B74e01c4C85578748290467A5f063B0b +VeaOutboxArbToGnosis deployed to: 0x2f1788F7B74e01c4C85578748290467A5f063B0b +Nothing to compile +No need to generate any newer typings. +421614 +calculated future router for nonce 5: 0x5BE03fDE7794Bc188416ba16932510Ed1277b193 +reusing "VeaInboxArbToGnosisTestnet" at 0x854374483572FFcD4d0225290346279d0718240b +Nothing to compile +No need to generate any newer typings. +deployer: 0xcAf9AdE1fDDf1b31d490A4629ADA638d104e9543 +deploying "RouterArbToGnosisTestnet" (tx: 0xaa4c2b0c51d53be6335b78abfcbbbc87cd9bc44b8733f77dbcab50ebc767070d)...: deployed at 0x5BE03fDE7794Bc188416ba16932510Ed1277b193 with 848386 gas + +- Terminal will be reused by tasks, press any key to close it. + +receiver gateway :0x79e7aB9C9eD296b5E24cD79eCce0D78A618436FD +sender gatway :0x79bbE10Dd6625Ae26Eb857D5940154f8765DbA82 diff --git a/relayer-cli/src/state/11155111.json b/relayer-cli/src/state/11155111.json index 387cca5d..ec4b5d91 100644 --- a/relayer-cli/src/state/11155111.json +++ b/relayer-cli/src/state/11155111.json @@ -1,4 +1,4 @@ { - "ts": 1725086460, - "nonce": "6" + "ts": 1728389594, + "nonce": 0 } diff --git a/veascan-subgraph-inbox/subgraph.yaml b/veascan-subgraph-inbox/subgraph.yaml index 02033e93..62952d74 100644 --- a/veascan-subgraph-inbox/subgraph.yaml +++ b/veascan-subgraph-inbox/subgraph.yaml @@ -5,11 +5,11 @@ features: - fullTextSearch dataSources: - kind: ethereum - name: VeaInbox + name: VeaInboxArbToGnosis network: arbitrum-sepolia source: - address: "0x0B5851fE2a931F619F73E739E5435C43976f1D68" - abi: VeaInbox + address: "0x854374483572FFcD4d0225290346279d0718240b" + abi: VeaInboxArbToGnosis startBlock: 69673433 mapping: kind: ethereum/events @@ -20,8 +20,8 @@ dataSources: - Message - Refs abis: - - name: VeaInbox - file: ../contracts/deployments/arbitrumSepolia/VeaInboxArbToEthDevnet.json + - name: VeaInboxArbToGnosis + file: ../contracts/deployments/arbitrumSepolia/VeaInboxArbToGnosisTestnet.json eventHandlers: - event: MessageSent(bytes) handler: handleMessageSent diff --git a/veascan-web/codegen.ts b/veascan-web/codegen.ts index 3add9f74..d3408bba 100644 --- a/veascan-web/codegen.ts +++ b/veascan-web/codegen.ts @@ -3,8 +3,8 @@ import type { CodegenConfig } from "@graphql-codegen/cli"; const config: CodegenConfig = { overwrite: true, schema: [ - `https://api.studio.thegraph.com/query/${process.env.VEASCAN_INBOX_ARBSEPOLIA_TO_SEPOLIA_SUBGRAPH}`, - `https://api.studio.thegraph.com/query/${process.env.VEASCAN_OUTBOX_ARBSEPOLIA_TO_SEPOLIA_SUBGRAPH}`, + `https://api.studio.thegraph.com/query/${process.env.VEASCAN_OUTBOX_ARBSEPOLIA_TO_CHIADO_SUBGRAPH}`, + `https://api.studio.thegraph.com/query/${process.env.VEASCAN_INBOX_ARBSEPOLIA_TO_CHIADO_SUBGRAPH}`, ], documents: "src/hooks/queries/*.ts", generates: { diff --git a/veascan-web/src/gql/graphql.ts b/veascan-web/src/gql/graphql.ts index c149a9c6..1418af1f 100644 --- a/veascan-web/src/gql/graphql.ts +++ b/veascan-web/src/gql/graphql.ts @@ -21,8 +21,23 @@ export type Scalars = { BigDecimal: any; BigInt: any; Bytes: any; + /** + * 8 bytes signed integer + * + */ + Int8: any; + /** + * A string representation of microseconds UNIX timestamp (16 digits) + * + */ + Timestamp: any; }; +export enum Aggregation_Interval { + Day = "day", + Hour = "hour", +} + export type BlockChangedFilter = { number_gte: Scalars["Int"]; }; @@ -1112,6 +1127,8 @@ export type _Block_ = { hash?: Maybe; /** The block number */ number: Scalars["Int"]; + /** The hash of the parent block */ + parentHash?: Maybe; /** Integer representation of the timestamp stored in blocks for the chain */ timestamp?: Maybe; };