@vlayer/sdk 0.1.0-nightly-20241030-24904a7 → 0.1.0-nightly-20241101-a2a04f3
Sign up to get free protection for your applications and to get access to all the features.
@@ -8,12 +8,13 @@ export type CallContext = {
|
|
8
8
|
chain_id: number;
|
9
9
|
};
|
10
10
|
export type Proof = {
|
11
|
-
length: bigint;
|
12
11
|
seal: {
|
13
12
|
verifierSelector: Hex;
|
14
13
|
seal: readonly [Hex, Hex, Hex, Hex, Hex, Hex, Hex, Hex];
|
15
14
|
mode: number;
|
16
15
|
};
|
16
|
+
callGuestId: Hex;
|
17
|
+
length: bigint;
|
17
18
|
callAssumptions: {
|
18
19
|
proverContractAddress: Address;
|
19
20
|
functionSelector: Hex;
|
@@ -32,9 +32,9 @@ export type ExtensionMessage = {
|
|
32
32
|
tabId: number;
|
33
33
|
};
|
34
34
|
export type WebProverSessionConfig = {
|
35
|
-
notaryUrl: string;
|
36
|
-
wsProxyUrl: string;
|
37
|
-
logoUrl: string;
|
35
|
+
notaryUrl: string | null;
|
36
|
+
wsProxyUrl: string | null;
|
37
|
+
logoUrl: string | null;
|
38
38
|
steps: WebProofStep[];
|
39
39
|
};
|
40
40
|
export type WebProofStep = WebProofStepNotarize | WebProofStepExpectUrl | WebProofStepStartPage;
|