Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 12 additions & 14 deletions packages/relayer/src/rpc-relayer/relayer.gen.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable */
// sequence-relayer v0.4.1 7f8a4b83b00e0b6849c76c2ff0e23931e26b3d9f
// sequence-relayer v0.4.1 c13e7c3be36799aa6d8bcc490950efbde381c7c9
// --
// Code generated by [email protected] with typescript generator. DO NOT EDIT.
//
Expand All @@ -12,7 +12,7 @@ export const WebrpcVersion = 'v1'
export const WebrpcSchemaVersion = 'v0.4.1'

// Schema hash generated from your RIDL schema
export const WebrpcSchemaHash = '7f8a4b83b00e0b6849c76c2ff0e23931e26b3d9f'
export const WebrpcSchemaHash = 'c13e7c3be36799aa6d8bcc490950efbde381c7c9'

//
// Client interface
Expand Down Expand Up @@ -162,7 +162,8 @@ export enum ETHTxnStatus {
SUCCEEDED = 'SUCCEEDED',
PARTIALLY_FAILED = 'PARTIALLY_FAILED',
FAILED = 'FAILED',
PENDING_PRECONDITION = 'PENDING_PRECONDITION'
PENDING_PRECONDITION = 'PENDING_PRECONDITION',
MINED = 'MINED'
}

export enum TransferType {
Expand All @@ -189,7 +190,7 @@ export enum FeeTokenType {
ERC1155_TOKEN = 'ERC1155_TOKEN'
}

export enum SortOrder {
export enum Order {
DESC = 'DESC',
ASC = 'ASC'
}
Expand Down Expand Up @@ -411,19 +412,16 @@ export interface FeeToken {
}

export interface Page {
pageSize?: number
page?: number
more?: boolean
totalRecords?: number
column?: string
before?: any
after?: any
sort?: Array<SortBy>
size: number
page: number
more: boolean
column: string
sort: Array<Sort>
}

export interface SortBy {
export interface Sort {
column: string
order: SortOrder
order: Order
}

export interface PingArgs {}
Expand Down
Loading