Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vechain/sdk-hardhat-plugin

Package Overview
Dependencies
Maintainers
8
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vechain/sdk-hardhat-plugin - npm Package Compare versions

Comparing version 1.0.0-beta.27 to 1.0.0-beta.28

12

package.json
{
"name": "@vechain/sdk-hardhat-plugin",
"version": "1.0.0-beta.27",
"version": "1.0.0-beta.28",
"description": "This module allows to create smart contracts and interact with them using the vechain SDK and Hardhat",

@@ -20,3 +20,2 @@ "author": "vechain Foundation",

"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",

@@ -31,2 +30,4 @@ "files": [

"scripts": {
"start-thor-solo": "echo 'Starting thor solo node ...' && docker compose up -d --wait && echo '\nThor solo node started ...'",
"stop-thor-solo": "echo 'Stopping thor solo node ...' && docker compose down && echo 'Thor solo node stopped ...'",
"build": "rm -rf ./dist && tsup-node src/index.ts --format cjs,esm --dts",

@@ -37,7 +38,8 @@ "lint": "eslint --ext .ts src --ext .ts tests",

"test:integration": "rm -rf ./coverageIntegration && jest --coverage --coverageDirectory=coverageIntegration --group=integration",
"test": "rm -rf ./coverage && jest --coverage --coverageDirectory=coverage --group=integration --group=unit"
"test": "rm -rf ./coverage && jest --coverage --coverageDirectory=coverage --group=integration --group=unit",
"test:solo": "(yarn start-thor-solo && yarn test && yarn stop-thor-solo) || yarn stop-thor-solo"
},
"dependencies": {
"@vechain/sdk-network": "1.0.0-beta.27",
"@vechain/sdk-ethers-adapter": "1.0.0-beta.27"
"@vechain/sdk-network": "1.0.0-beta.28",
"@vechain/sdk-ethers-adapter": "1.0.0-beta.28"
},

@@ -44,0 +46,0 @@ "devDependencies": {

@@ -21,2 +21,3 @@ import {

* @returns The wallet.
* @throws {JSONRPCInternalError}
*/

@@ -23,0 +24,0 @@ const createWalletFromHardhatNetworkConfig = (

@@ -29,2 +29,3 @@ import { createWalletFromHardhatNetworkConfig } from './helpers';

import { type FactoryOptions } from '@nomicfoundation/hardhat-ethers/src/types';
import { FunctionNotImplemented } from '@vechain/sdk-errors';

@@ -143,3 +144,7 @@ /**

getImpersonatedSigner: (_address: string) => {
throw new Error('Not implemented yet');
throw new FunctionNotImplemented(
'getImpersonatedSigner()',
'Method not implemented',
{ functionName: 'getImpersonatedSigner' }
);
},

@@ -146,0 +151,0 @@

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