Skip to content

Commit 9cdaaaf

Browse files
authored
v1.0.8 (#15)
1 parent 4c487a0 commit 9cdaaaf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1402
-379
lines changed

.circleci/public-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
jobs:
44
audit_build_lint_test:
55
docker:
6-
- image: cimg/node:22.19.0
6+
- image: cimg/node:22.20.0
77
steps:
88
- checkout
99
- run:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.19.0
1+
22.20.0

.prettierignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Silent Data By Applied Blockchain Logo](https://cdn.prod.website-files.com/66e010db8f2318d36725b915/6703b717b513df4231a5ee72_sd-logo-landscape.svg)
22

3-
# Silent Data [Rollup] Providers
3+
# Silent Data Providers
44

55
## Table of Contents
66

@@ -12,7 +12,7 @@
1212

1313
## Introduction
1414

15-
This monorepo contains multiple packages for custom providers for Silent Data [Rollup], compatible with ethers.js and Hardhat plugins.
15+
This monorepo contains multiple packages for custom providers for Silent Data, compatible with ethers.js and Hardhat plugins.
1616

1717
## Features
1818

@@ -28,11 +28,11 @@ These packages offer several key features:
2828

2929
5. **Simplified Contract Interactions**: Provides a `SilentDataRollupContract` class that streamlines interactions with smart contracts, automatically handling method signing when necessary.
3030

31-
6. **Network Abstraction**: Offers a `NetworkName` enum to easily switch between different Silent Data [Rollup] networks (e.g., testnet, mainnet).
31+
6. **Network Abstraction**: Offers a `NetworkName` enum to easily switch between different Silent Data networks (e.g., testnet, mainnet).
3232

3333
7. **Customizable Configuration**: Allows developers to configure providers with custom RPC URLs, network settings, and authentication details.
3434

35-
These features make it easier for developers to integrate Silent Data [Rollup] into their Ethereum-based applications, handling the complexities of authentication and network interactions behind the scenes.
35+
These features make it easier for developers to integrate Silent Data into their Ethereum-based applications, handling the complexities of authentication and network interactions behind the scenes.
3636

3737
## Prerequisites
3838

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ export default [
1414
'@typescript-eslint/no-explicit-any': 'warn',
1515
},
1616
},
17-
globalIgnores(['packages/**/dist/*', '.legacy/*']),
17+
globalIgnores(['packages/**/dist/*']),
1818
]

examples/custom-rpc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Silent Data [Rollup] Custom RCP Example
1+
# Silent Data Custom RCP Example
22

3-
For development purposes, this repository exposes a Silent Data [Rollup] Custom RPC using hardhat.
3+
For development purposes, this repository exposes a Silent Data Custom RPC using hardhat.
44

55
## Prerequisites
66

examples/ethers-provider-metamask/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Silent Data [Rollup] MetaMask Example
1+
# Silent Data MetaMask Example
22

3-
This repository demonstrates how to interact with the Silent Data [Rollup] using MetaMask and both `@appliedblockchain/silentdatarollup-core` and `@appliedblockchain/silentdatarollup-ethers-provider` packages.
3+
This repository demonstrates how to interact with the Silent Data using MetaMask and both `@appliedblockchain/silentdatarollup-core` and `@appliedblockchain/silentdatarollup-ethers-provider` packages.
44

55
## Features
66

7-
- Connect to the Silent Data [Rollup] network
7+
- Connect to the Silent Data network
88
- Check wallet balances
99
- Add and remove tokens
1010
- Transfer tokens to a randomly generated wallet
@@ -13,7 +13,7 @@ This repository demonstrates how to interact with the Silent Data [Rollup] using
1313

1414
- Node.js (v18 or higher)
1515
- npm
16-
- Access to a Silent Data [Rollup] RPC endpoint
16+
- Access to a Silent Data RPC endpoint
1717

1818
## Installation
1919

examples/ethers-provider-metamask/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
"dependencies": {
1313
"@appliedblockchain/silentdatarollup-core": "*",
1414
"@appliedblockchain/silentdatarollup-ethers-provider": "*",
15-
"react": "^19.1.1",
16-
"react-dom": "^19.1.1"
15+
"react": "19.1.1",
16+
"react-dom": "19.1.1"
1717
},
1818
"devDependencies": {
19-
"@eslint/js": "^9.32.0",
20-
"@types/react": "^19.1.9",
21-
"@types/react-dom": "^19.1.7",
22-
"@vitejs/plugin-react": "^4.7.0",
23-
"eslint": "^9.32.0",
24-
"eslint-plugin-react-hooks": "^5.2.0",
25-
"eslint-plugin-react-refresh": "^0.4.20",
26-
"globals": "^16.3.0",
27-
"typescript": "~5.8.3",
28-
"typescript-eslint": "^8.39.0",
29-
"vite": "^7.1.0"
19+
"@eslint/js": "9.32.0",
20+
"@types/react": "19.1.9",
21+
"@types/react-dom": "19.1.7",
22+
"@vitejs/plugin-react": "4.7.0",
23+
"eslint": "9.32.0",
24+
"eslint-plugin-react-hooks": "5.2.0",
25+
"eslint-plugin-react-refresh": "0.4.20",
26+
"globals": "16.3.0",
27+
"typescript": "5.8.3",
28+
"typescript-eslint": "8.39.0",
29+
"vite": "7.1.5"
3030
}
3131
}

0 commit comments

Comments
 (0)