@vlayer/sdk 0.1.0-nightly-20241030-ea1e022 → 0.1.0-nightly-20241031-b972bda

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;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "types": "./dist/index.d.ts"
8
8
  }
9
9
  },
10
- "version": "0.1.0-nightly-20241030-ea1e022",
10
+ "version": "0.1.0-nightly-20241031-b972bda",
11
11
  "scripts": {
12
12
  "build": "bun tsc",
13
13
  "test": "vitest --run",