File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ import type * as ZkgmInstruction from "./ZkgmInstruction.js"
15
15
16
16
/** @since 2.0.0 */
17
17
export namespace Transport {
18
+ /**
19
+ * Sui client request params.
20
+ * @since 2.0.0
21
+ */
18
22
export interface Sui {
19
23
readonly relayStoreId : string
20
24
readonly vaultId : string
@@ -28,14 +32,26 @@ export namespace Transport {
28
32
} >
29
33
}
30
34
35
+ /**
36
+ * EVM client request params.
37
+ * @since 2.0.0
38
+ */
31
39
export interface Evm {
32
40
readonly _ ?: never
33
41
}
34
42
43
+ /**
44
+ * Cosmos client request params.
45
+ * @since 2.0.0
46
+ */
35
47
export interface Cosmos {
36
48
readonly _ ?: never
37
49
}
38
50
51
+ /**
52
+ * Common request params.
53
+ * @since 2.0.0
54
+ */
39
55
export interface Params {
40
56
readonly sui ?: Sui | undefined
41
57
readonly evm ?: Evm | undefined
You can’t perform that action at this time.
0 commit comments