@vechain/sdk-hardhat-plugin
Advanced tools
Comparing version 1.0.0-beta.27 to 1.0.0-beta.28
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unpublished package
Supply chain riskPackage version was not found on the registry. It may exist on a different registry and need to be configured to pull from that registry.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
0
15773
6
277
1
+ Added@vechain/sdk-core@1.0.0-beta.28(transitive)
+ Added@vechain/sdk-errors@1.0.0-beta.28(transitive)
+ Added@vechain/sdk-logging@1.0.0-beta.28(transitive)
+ Added@vechain/sdk-network@1.0.0-beta.28(transitive)
- Removed@vechain/sdk-core@1.0.0-beta.27(transitive)
- Removed@vechain/sdk-errors@1.0.0-beta.27(transitive)
- Removed@vechain/sdk-ethers-adapter@1.0.0-beta.27(transitive)
- Removed@vechain/sdk-logging@1.0.0-beta.27(transitive)
- Removed@vechain/sdk-network@1.0.0-beta.27(transitive)