@appliedblockchain/silentdatarollup-hardhat-plugin 1.0.7 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +6 -6
  3. package/package.json +10 -11
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Applied Blockchain Ltd.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Silent Data [Rollup] Providers - Hardhat Plugin Package
1
+ # Silent Data Providers - Hardhat Plugin Package
2
2
 
3
3
  ## Table of Contents
4
4
 
@@ -14,13 +14,13 @@
14
14
 
15
15
  ## Introduction
16
16
 
17
- Custom providers for integrating Silent Data [Rollup] with Hardhat.
17
+ Custom providers for integrating Silent Data with Hardhat.
18
18
 
19
19
  ## Prerequisites
20
20
 
21
21
  - Node.js (version 18 or higher)
22
22
  - Hardhat v2
23
- - npm
23
+ - pnpm
24
24
  - Basic knowledge of Ethereum and smart contracts
25
25
 
26
26
  ## Integration
@@ -30,12 +30,12 @@ Custom providers for integrating Silent Data [Rollup] with Hardhat.
30
30
  #### Installing Hardhat Integration Dependencies
31
31
 
32
32
  ```bash
33
- npm install @appliedblockchain/silentdatarollup-hardhat-plugin @nomicfoundation/hardhat-ignition-ethers@0.15.7
33
+ pnpm add @appliedblockchain/silentdatarollup-hardhat-plugin @nomicfoundation/hardhat-ignition-ethers@0.15.9
34
34
  ```
35
35
 
36
36
  #### Hardhat Integration Example
37
37
 
38
- To integrate the Silent Data [Rollup] Provider with Hardhat, you need to configure your Silent Data network in the `hardhat.config.ts` file. Below is an example of how to set it up, and note that a `silentdata` property is needed on the network config to enable it. This property can be an empty object to apply defaults, or you can specify the configurations.
38
+ To integrate the Silent Data Provider with Hardhat, you need to configure your Silent Data network in the `hardhat.config.ts` file. Below is an example of how to set it up, and note that a `silentdata` property is needed on the network config to enable it. This property can be an empty object to apply defaults, or you can specify the configurations.
39
39
 
40
40
  ```typescript
41
41
  import '@nomicfoundation/hardhat-ignition-ethers'
@@ -81,7 +81,7 @@ This project is licensed under the [MIT License](LICENSE).
81
81
 
82
82
  ## Additional Resources
83
83
 
84
- - [Silent Data [Rollup] Documentation](https://docs.silentdata.com)
84
+ - [Silent Data Documentation](https://docs.silentdata.com)
85
85
  - [Ethers.js Documentation](https://docs.ethers.org/v6/)
86
86
  - [Hardhat Documentation](https://hardhat.org/docs)
87
87
  - [Hardhat Ignition](https://hardhat.org/hardhat-runner/plugins/nomiclabs-hardhat-ignition)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appliedblockchain/silentdatarollup-hardhat-plugin",
3
- "version": "1.0.7",
4
- "description": "Hardhat plugin for Silent Data [Rollup]",
3
+ "version": "1.0.9",
4
+ "description": "Hardhat plugin for Silent Data",
5
5
  "author": "Applied Blockchain",
6
6
  "homepage": "https://github.com/appliedblockchain/silent-data-rollup-providers#readme",
7
7
  "keywords": [
@@ -25,20 +25,15 @@
25
25
  "files": [
26
26
  "dist"
27
27
  ],
28
- "scripts": {
29
- "build": "tsc --noEmit && tsup src/index.ts --format cjs,esm --dts --clean",
30
- "check-exports": "attw --pack . --profile node16",
31
- "prepack": "npm run build"
32
- },
33
28
  "dependencies": {
34
- "@appliedblockchain/silentdatarollup-core": "1.0.7",
35
29
  "@nomicfoundation/hardhat-ethers": "3.0.8",
36
30
  "debug": "4.3.7",
37
- "ethers": "6.13.2"
31
+ "ethers": "6.13.2",
32
+ "@appliedblockchain/silentdatarollup-core": "1.0.9"
38
33
  },
39
34
  "devDependencies": {
40
35
  "@types/debug": "4.1.12",
41
- "@types/node": "22.5.4",
36
+ "@types/node": "24.10.1",
42
37
  "hardhat": "2.22.10",
43
38
  "ts-node": "10.9.2",
44
39
  "typescript": "5.6.2"
@@ -49,5 +44,9 @@
49
44
  },
50
45
  "engines": {
51
46
  "node": ">=18.0.0"
47
+ },
48
+ "scripts": {
49
+ "build": "tsc --noEmit && tsup src/index.ts --format cjs,esm --dts --clean",
50
+ "check-exports": "attw --pack . --profile node16"
52
51
  }
53
- }
52
+ }