Skip to content

Commit

Permalink
changing naming conventions (#3239)
Browse files Browse the repository at this point in the history
  • Loading branch information
Defi-Moses authored Oct 5, 2024
1 parent 61c2310 commit 74e1690
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/rfq-indexer/indexer/ponder.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export default createSchema((p) => ({
id: p.string(),
transactionId: p.string(),
relayer: p.string(),
chainId: p.int(),
chain: p.string(),
originChainId: p.int(),
originChain: p.string(),
blockNumber: p.bigint(),
blockTimestamp: p.int(),
transactionHash: p.string(),
Expand Down
4 changes: 2 additions & 2 deletions packages/rfq-indexer/indexer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ ponder.on('FastBridgeV2:BridgeProofDisputed', async ({ event, context }) => {
create: {
transactionId,
relayer: trim(relayer),
chainId: Number(chainId),
chain: getChainName(Number(chainId)),
originChainId: Number(chainId),
originChain: getChainName(Number(chainId)),
blockNumber: BigInt(blockNumber),
blockTimestamp: Number(timestamp),
transactionHash: hash,
Expand Down

0 comments on commit 74e1690

Please sign in to comment.