New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vlayer/sdk

Package Overview
Dependencies
Maintainers
0
Versions
189
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vlayer/sdk - npm Package Compare versions

Comparing version 0.1.0-nightly-20241014-cf9cd99 to 0.1.0-nightly-20241015-013f55a

node_modules/@vlayer/web-proof-commons/.gitignore

6

package.json
{
"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";
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc