@vlayer/sdk
Advanced tools
Comparing version 0.1.0-nightly-20241014-cf9cd99 to 0.1.0-nightly-20241015-013f55a
{ | ||
"name": "@vlayer/sdk", | ||
"type": "module", | ||
"module": "src/index.ts", | ||
"version": "0.1.0-nightly-20241014-cf9cd99", | ||
"exports": "./src/index.ts", | ||
"version": "0.1.0-nightly-20241015-013f55a", | ||
"types": "src/index.ts", | ||
@@ -25,3 +25,3 @@ "scripts": { | ||
"viem": "^2.21.0", | ||
"@vlayer/web-proof-commons": "file:../../web-proof-commons" | ||
"@vlayer/web-proof-commons": "file:../web-proof-commons" | ||
}, | ||
@@ -28,0 +28,0 @@ "bundleDependencies": [ |
@@ -16,9 +16,12 @@ import { | ||
import { privateKeyToAccount, generatePrivateKey } from "viem/accounts"; | ||
import { foundry } from "viem/chains"; | ||
import { foundry, optimismSepolia } from "viem/chains"; | ||
import type { ContractSpec, ContractArg } from "types/ethereum"; | ||
const rpcUrls: Map<number, HttpTransport> = new Map([[foundry.id, http()]]); | ||
const rpcUrls: Map<number, HttpTransport> = new Map([ | ||
[foundry.id, http()], | ||
[optimismSepolia.id, http("https://sepolia.optimism.io")], | ||
]); | ||
export const chainIds = [foundry.id]; | ||
export const chainIds = [foundry.id, optimismSepolia.id]; | ||
@@ -25,0 +28,0 @@ export function createAnvilClient( |
export * from "./ethereum"; | ||
export * from "@vlayer/web-proof-commons/lib/types/webProof"; | ||
export * from "./vlayer"; | ||
export * from "./webProofProvider"; |
38223
42
1076