@vlayer/sdk 0.1.0-nightly-20241113-0b85bf8 → 0.1.0-nightly-20241114-4867874

Sign up to get free protection for your applications and to get access to all the features.
@@ -40,7 +40,7 @@ export type VlayerClient = {
40
40
  address: Hex;
41
41
  proverAbi: T;
42
42
  functionName: F;
43
- chainId: number;
43
+ chainId?: number;
44
44
  args: ContractFunctionArgs<T, AbiStateMutability, F>;
45
45
  }) => Promise<BrandedHash<T, F>>;
46
46
  waitForProvingResult: <T extends Abi, F extends ContractFunctionName<T>>(hash: BrandedHash<T, F>) => Promise<ContractFunctionReturnType<T, AbiStateMutability, F>>;