Skip to content

Commit

Permalink
test(local-graph): do not push to remote
Browse files Browse the repository at this point in the history
  • Loading branch information
madhurMongia committed Nov 19, 2024
1 parent 8e08dcd commit 0434e74
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 9 deletions.
21 changes: 21 additions & 0 deletions deploys.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions relayer-cli/src/state/11155111.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"ts": 1725086460,
"nonce": "6"
"ts": 1728389594,
"nonce": 0
}
10 changes: 5 additions & 5 deletions veascan-subgraph-inbox/subgraph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions veascan-web/codegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
17 changes: 17 additions & 0 deletions veascan-web/src/gql/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
};
Expand Down Expand Up @@ -1112,6 +1127,8 @@ export type _Block_ = {
hash?: Maybe<Scalars["Bytes"]>;
/** The block number */
number: Scalars["Int"];
/** The hash of the parent block */
parentHash?: Maybe<Scalars["Bytes"]>;
/** Integer representation of the timestamp stored in blocks for the chain */
timestamp?: Maybe<Scalars["Int"]>;
};
Expand Down

0 comments on commit 0434e74

Please sign in to comment.