1
1
/* eslint-disable */
2
- // sequence-api v0.4.0 470a0f88ea399c2a57ff8c22da54358c033ed5f0
2
+ // sequence-api v0.4.0 bbe47e0331a18438fe5f7fe590a4b7b4e5102738
3
3
// --
4
- // Code generated by webrpc-gen@v0.18.7 with typescript generator. DO NOT EDIT.
4
+ // Code generated by webrpc-gen@v0.20.3 with typescript generator. DO NOT EDIT.
5
5
//
6
6
// webrpc-gen -schema=api.ridl -target=typescript -client -out=./clients/api.gen.ts
7
7
@@ -12,7 +12,7 @@ export const WebRPCVersion = 'v1'
12
12
export const WebRPCSchemaVersion = 'v0.4.0'
13
13
14
14
// Schema hash generated from your RIDL schema
15
- export const WebRPCSchemaHash = '470a0f88ea399c2a57ff8c22da54358c033ed5f0 '
15
+ export const WebRPCSchemaHash = 'bbe47e0331a18438fe5f7fe590a4b7b4e5102738 '
16
16
17
17
//
18
18
// Types
@@ -78,6 +78,12 @@ export interface SequenceContext {
78
78
utils : string
79
79
}
80
80
81
+ export interface PublicKey {
82
+ id : string
83
+ x : string
84
+ y : string
85
+ }
86
+
81
87
export interface User {
82
88
address : string
83
89
username : string
@@ -362,7 +368,7 @@ export interface SwapPrice {
362
368
currencyAddress : string
363
369
currencyBalance : string
364
370
price : string
365
- to : string
371
+ maxPrice : string
366
372
transactionValue : string
367
373
}
368
374
@@ -445,6 +451,8 @@ export interface API {
445
451
headers ?: object ,
446
452
signal ?: AbortSignal
447
453
) : Promise < SendPasswordlessLinkReturn >
454
+ registerPublicKey ( args : RegisterPublicKeyArgs , headers ?: object , signal ?: AbortSignal ) : Promise < RegisterPublicKeyReturn >
455
+ getPublicKey ( args : GetPublicKeyArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetPublicKeyReturn >
448
456
friendList ( args : FriendListArgs , headers ?: object , signal ?: AbortSignal ) : Promise < FriendListReturn >
449
457
getFriendByAddress ( args : GetFriendByAddressArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetFriendByAddressReturn >
450
458
searchFriends ( args : SearchFriendsArgs , headers ?: object , signal ?: AbortSignal ) : Promise < SearchFriendsReturn >
@@ -539,6 +547,7 @@ export interface API {
539
547
headers ?: object ,
540
548
signal ?: AbortSignal
541
549
) : Promise < ValidateWaaSVerificationNonceReturn >
550
+ getSwapPrice ( args : GetSwapPriceArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetSwapPriceReturn >
542
551
getSwapPrices ( args : GetSwapPricesArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetSwapPricesReturn >
543
552
getSwapQuote ( args : GetSwapQuoteArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetSwapQuoteReturn >
544
553
listCurrencyGroups ( headers ?: object , signal ?: AbortSignal ) : Promise < ListCurrencyGroupsReturn >
@@ -635,6 +644,20 @@ export interface SendPasswordlessLinkArgs {
635
644
export interface SendPasswordlessLinkReturn {
636
645
status : boolean
637
646
}
647
+ export interface RegisterPublicKeyArgs {
648
+ publicKey : PublicKey
649
+ }
650
+
651
+ export interface RegisterPublicKeyReturn {
652
+ status : boolean
653
+ }
654
+ export interface GetPublicKeyArgs {
655
+ id : string
656
+ }
657
+
658
+ export interface GetPublicKeyReturn {
659
+ publicKey : PublicKey
660
+ }
638
661
export interface FriendListArgs {
639
662
nickname ?: string
640
663
page ?: Page
@@ -971,8 +994,6 @@ export interface RemoveLinkedWalletArgs {
971
994
parentWalletMessage : string
972
995
parentWalletSignature : string
973
996
linkedWalletAddress : string
974
- linkedWalletMessage : string
975
- linkedWalletSignature : string
976
997
signatureChainId : string
977
998
}
978
999
@@ -997,11 +1018,23 @@ export interface ValidateWaaSVerificationNonceArgs {
997
1018
export interface ValidateWaaSVerificationNonceReturn {
998
1019
walletAddress : string
999
1020
}
1021
+ export interface GetSwapPriceArgs {
1022
+ buyCurrencyAddress : string
1023
+ sellCurrencyAddress : string
1024
+ buyAmount : string
1025
+ chainId : number
1026
+ slippagePercentage ?: number
1027
+ }
1028
+
1029
+ export interface GetSwapPriceReturn {
1030
+ swapPrice : SwapPrice
1031
+ }
1000
1032
export interface GetSwapPricesArgs {
1001
1033
userAddress : string
1002
1034
buyCurrencyAddress : string
1003
1035
buyAmount : string
1004
1036
chainId : number
1037
+ slippagePercentage ?: number
1005
1038
}
1006
1039
1007
1040
export interface GetSwapPricesReturn {
@@ -1014,6 +1047,7 @@ export interface GetSwapQuoteArgs {
1014
1047
buyAmount : string
1015
1048
chainId : number
1016
1049
includeApprove : boolean
1050
+ slippagePercentage ?: number
1017
1051
}
1018
1052
1019
1053
export interface GetSwapQuoteReturn {
@@ -1086,7 +1120,7 @@ export class API implements API {
1086
1120
protected path = '/rpc/API/'
1087
1121
1088
1122
constructor ( hostname : string , fetch : Fetch ) {
1089
- this . hostname = hostname
1123
+ this . hostname = hostname . replace ( / \/ * $ / , '' )
1090
1124
this . fetch = ( input : RequestInfo , init ?: RequestInit ) => fetch ( input , init )
1091
1125
}
1092
1126
@@ -1224,6 +1258,36 @@ export class API implements API {
1224
1258
)
1225
1259
}
1226
1260
1261
+ registerPublicKey = ( args : RegisterPublicKeyArgs , headers ?: object , signal ?: AbortSignal ) : Promise < RegisterPublicKeyReturn > => {
1262
+ return this . fetch ( this . url ( 'RegisterPublicKey' ) , createHTTPRequest ( args , headers , signal ) ) . then (
1263
+ res => {
1264
+ return buildResponse ( res ) . then ( _data => {
1265
+ return {
1266
+ status : < boolean > _data . status
1267
+ }
1268
+ } )
1269
+ } ,
1270
+ error => {
1271
+ throw WebrpcRequestFailedError . new ( { cause : `fetch(): ${ error . message || '' } ` } )
1272
+ }
1273
+ )
1274
+ }
1275
+
1276
+ getPublicKey = ( args : GetPublicKeyArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetPublicKeyReturn > => {
1277
+ return this . fetch ( this . url ( 'GetPublicKey' ) , createHTTPRequest ( args , headers , signal ) ) . then (
1278
+ res => {
1279
+ return buildResponse ( res ) . then ( _data => {
1280
+ return {
1281
+ publicKey : < PublicKey > _data . publicKey
1282
+ }
1283
+ } )
1284
+ } ,
1285
+ error => {
1286
+ throw WebrpcRequestFailedError . new ( { cause : `fetch(): ${ error . message || '' } ` } )
1287
+ }
1288
+ )
1289
+ }
1290
+
1227
1291
friendList = ( args : FriendListArgs , headers ?: object , signal ?: AbortSignal ) : Promise < FriendListReturn > => {
1228
1292
return this . fetch ( this . url ( 'FriendList' ) , createHTTPRequest ( args , headers , signal ) ) . then (
1229
1293
res => {
@@ -1999,6 +2063,21 @@ export class API implements API {
1999
2063
)
2000
2064
}
2001
2065
2066
+ getSwapPrice = ( args : GetSwapPriceArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetSwapPriceReturn > => {
2067
+ return this . fetch ( this . url ( 'GetSwapPrice' ) , createHTTPRequest ( args , headers , signal ) ) . then (
2068
+ res => {
2069
+ return buildResponse ( res ) . then ( _data => {
2070
+ return {
2071
+ swapPrice : < SwapPrice > _data . swapPrice
2072
+ }
2073
+ } )
2074
+ } ,
2075
+ error => {
2076
+ throw WebrpcRequestFailedError . new ( { cause : `fetch(): ${ error . message || '' } ` } )
2077
+ }
2078
+ )
2079
+ }
2080
+
2002
2081
getSwapPrices = ( args : GetSwapPricesArgs , headers ?: object , signal ?: AbortSignal ) : Promise < GetSwapPricesReturn > => {
2003
2082
return this . fetch ( this . url ( 'GetSwapPrices' ) , createHTTPRequest ( args , headers , signal ) ) . then (
2004
2083
res => {
0 commit comments