@vlayer/sdk 0.1.0-nightly-20241030-24904a7 → 0.1.0-nightly-20241101-a2a04f3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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-24904a7",
10
+ "version": "0.1.0-nightly-20241101-a2a04f3",
11
11
  "scripts": {
12
12
  "build": "bun tsc",
13
13
  "test": "vitest --run",