Skip to content

Commit

Permalink
fix chainId case
Browse files Browse the repository at this point in the history
  • Loading branch information
xiam committed Dec 5, 2024
1 parent 4ec68bc commit 161c709
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/indexer/src/indexergw.gen.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable */
// sequence-indexer v0.4.0 35f709dc22007483627cf0958fae4454cabf274a
// sequence-indexer v0.4.0 6169fd233b6e142d2bedb83f14d3228fc12dffce
// --
// Code generated by [email protected] with typescript generator. DO NOT EDIT.
//
Expand All @@ -16,7 +16,7 @@ export const WebRPCVersion = "v1"
export const WebRPCSchemaVersion = "v0.4.0"

// Schema hash generated from your RIDL schema
export const WebRPCSchemaHash = "35f709dc22007483627cf0958fae4454cabf274a"
export const WebRPCSchemaHash = "6169fd233b6e142d2bedb83f14d3228fc12dffce"

type WebrpcGenVersions = {
webrpcGenVersion: string;
Expand Down Expand Up @@ -512,19 +512,19 @@ export interface TokenBalancesByContractFilter {
}

export interface GatewayEtherBalance {
chainID: number
chainId: number
error: string
result: EtherBalance
}

export interface GatewayNativeTokenBalance {
chainID: number
chainId: number
error: string
result: NativeTokenBalance
}

export interface GatewayTokenBalance {
chainID: number
chainId: number
error: string
results: Array<TokenBalance>
}
Expand Down

0 comments on commit 161c709

Please sign in to comment.