Skip to content

Commit 1ca06ea

Browse files
committed
chore(ts-sdk-sui): fixing ci errors
Signed-off-by: kaancaglan <[email protected]>
1 parent 11b4efb commit 1ca06ea

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

ts-sdk/src/ZkgmClientRequest.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ import type * as ZkgmInstruction from "./ZkgmInstruction.js"
1515

1616
/** @since 2.0.0 */
1717
export namespace Transport {
18+
/**
19+
* Sui client request params.
20+
* @since 2.0.0
21+
*/
1822
export interface Sui {
1923
readonly relayStoreId: string
2024
readonly vaultId: string
@@ -28,14 +32,26 @@ export namespace Transport {
2832
}>
2933
}
3034

35+
/**
36+
* EVM client request params.
37+
* @since 2.0.0
38+
*/
3139
export interface Evm {
3240
readonly _?: never
3341
}
3442

43+
/**
44+
* Cosmos client request params.
45+
* @since 2.0.0
46+
*/
3547
export interface Cosmos {
3648
readonly _?: never
3749
}
3850

51+
/**
52+
* Common request params.
53+
* @since 2.0.0
54+
*/
3955
export interface Params {
4056
readonly sui?: Sui | undefined
4157
readonly evm?: Evm | undefined

0 commit comments

Comments
 (0)