File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change 11/* eslint-disable */
2- // trails-api v1.0.0 5669b86e8def11e520b7d1722de60e73a3b9d75b
2+ // trails-api v1.0.0 be6fdd3eab15f477b03ddf9bd7abeb162178b4d0
33// --
44// Code generated by [email protected] with typescript generator. DO NOT EDIT. 55//
@@ -12,7 +12,7 @@ export const WebrpcVersion = 'v1'
1212export const WebrpcSchemaVersion = 'v1.0.0'
1313
1414// Schema hash generated from your RIDL schema
15- export const WebrpcSchemaHash = '5669b86e8def11e520b7d1722de60e73a3b9d75b '
15+ export const WebrpcSchemaHash = 'be6fdd3eab15f477b03ddf9bd7abeb162178b4d0 '
1616
1717//
1818// Client interface
@@ -78,9 +78,10 @@ export enum QuoteProviderType {
7878export enum TransactionStatus {
7979 UNKNOWN = 'UNKNOWN' ,
8080 PENDING = 'PENDING' ,
81- PROCESSING = 'PROCESSING' ,
82- FAILED = 'FAILED' ,
83- SUCCEEDED = 'SUCCEEDED'
81+ RELAYING = 'RELAYING' ,
82+ AWAITING_RECEIPT = 'AWAITING_RECEIPT' ,
83+ FINISHED = 'FINISHED' ,
84+ FAILED = 'FAILED'
8485}
8586
8687export enum IntentStatus {
@@ -200,12 +201,17 @@ export interface IntentReceipt {
200201export interface IntentTransaction {
201202 intentId : string
202203 chainId : number
203- metaTxnId : string
204- txnHash ?: string
204+ fromAddress : string
205205 toAddress : string
206206 tokenAddress : string
207207 tokenAmount : bigint
208- txnStatus : TransactionStatus
208+ calldata : string
209+ metaTxnId : string
210+ metaTxnFeeQuote : string
211+ preconditions : IntentPrecondition
212+ txnHash ?: string
213+ status : TransactionStatus
214+ statusReason ?: string
209215 updatedAt ?: string
210216 createdAt ?: string
211217}
You can’t perform that action at this time.
0 commit comments