Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

_This document has not yet been fully ported from the original web3.js repository. It is a work in progress and will be updated in the future._

_We need to use lerna pinned at v6 either with npx or installed globally to run the commands in this document_

## Version Number Definition

The @theqrl/web3.js project follows the [semver 2.0.0 specification](https://semver.org/).
Expand Down
58 changes: 29 additions & 29 deletions packages/abi/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@theqrl/abi",
"version": "0.1.0",
"description": "Utilities and Classes for parsing, formatting and managing Zond ABIs.",
"license": "MIT",
"main": "./lib/commonjs/index.js",
"name": "@theqrl/abi",
"version": "0.3.2",
"description": "Utilities and Classes for parsing, formatting and managing Zond ABIs.",
"license": "MIT",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
".": {
Expand All @@ -12,19 +12,19 @@
"require": "./lib/commonjs/index.js"
}
},
"files": [
"files": [
"lib/**/*",
"src/**/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"directory": "packages/abi",
"type": "git",
"url": "git://github.com/theQRL/web3.js.git"
},
"scripts": {
"publishConfig": {
"access": "public"
},
"repository": {
"directory": "packages/abi",
"type": "git",
"url": "git://github.com/theQRL/web3.js.git"
},
"scripts": {
"clean": "rimraf dist && rimraf lib",
"prebuild": "yarn clean",
"build": "yarn build:cjs & yarn build:esm & yarn build:types",
Expand All @@ -43,20 +43,20 @@
"test:unit": "jest --config=./test/unit/jest.config.js",
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"sideEffects": false,
"dependencies": {
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/logger": "^5.7.0",
"@ethersproject/properties": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@theqrl/web3-utils": "^0.3.0"
},
"devDependencies": {
"sideEffects": false,
"dependencies": {
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/logger": "^5.7.0",
"@ethersproject/properties": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@theqrl/web3-utils": "^0.3.2"
},
"devDependencies": {
"@theqrl/eslint-config-base-web3": "^0.3.0",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
Expand Down
18 changes: 9 additions & 9 deletions packages/web3-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-core",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -45,16 +45,16 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-providers-http": "^0.3.0",
"@theqrl/web3-providers-ws": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0",
"@theqrl/web3-validator": "^0.3.0",
"@theqrl/web3-zond-iban": "^0.3.0"
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-providers-http": "^0.3.2",
"@theqrl/web3-providers-ws": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2",
"@theqrl/web3-validator": "^0.3.2",
"@theqrl/web3-zond-iban": "^0.3.2"
},
"optionalDependencies": {
"@theqrl/web3-providers-ipc": "^0.3.0"
"@theqrl/web3-providers-ipc": "^0.3.2"
},
"devDependencies": {
"@theqrl/eslint-config-base-web3": "^0.3.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/web3-errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-errors",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -44,7 +44,7 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"@theqrl/web3-types": "^0.3.0"
"@theqrl/web3-types": "^0.3.2"
},
"devDependencies": {
"@theqrl/eslint-config-base-web3": "^0.3.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/web3-net/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-net",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -59,10 +59,10 @@
"typescript": "^4.7.4"
},
"dependencies": {
"@theqrl/web3-core": "^0.3.0",
"@theqrl/web3-rpc-methods": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0"
"@theqrl/web3-core": "^0.3.2",
"@theqrl/web3-rpc-methods": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2"
},
"gitHead": "d4f3246946fec86d908a215b27568aa8faea88d7"
}
8 changes: 4 additions & 4 deletions packages/web3-providers-http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-providers-http",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -63,9 +63,9 @@
"typescript": "^4.7.4"
},
"dependencies": {
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0",
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2",
"cross-fetch": "^3.1.5"
},
"gitHead": "d4f3246946fec86d908a215b27568aa8faea88d7"
Expand Down
8 changes: 4 additions & 4 deletions packages/web3-providers-ipc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-providers-ipc",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -59,9 +59,9 @@
"typescript": "^4.7.4"
},
"dependencies": {
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0"
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2"
},
"gitHead": "d4f3246946fec86d908a215b27568aa8faea88d7"
}
8 changes: 4 additions & 4 deletions packages/web3-providers-ws/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-providers-ws",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -63,9 +63,9 @@
"typescript": "^4.7.4"
},
"dependencies": {
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0",
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2",
"@types/ws": "8.5.3",
"isomorphic-ws": "^5.0.0",
"ws": "^8.8.1"
Expand Down
8 changes: 4 additions & 4 deletions packages/web3-rpc-methods/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-rpc-methods",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -59,9 +59,9 @@
"typescript": "^4.7.4"
},
"dependencies": {
"@theqrl/web3-core": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-validator": "^0.3.0"
"@theqrl/web3-core": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-validator": "^0.3.2"
},
"gitHead": "d4f3246946fec86d908a215b27568aa8faea88d7"
}
2 changes: 1 addition & 1 deletion packages/web3-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-types",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/web3-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@theqrl/web3-utils",
"sideEffects": false,
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -62,9 +62,9 @@
"typescript": "^4.7.4"
},
"dependencies": {
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-validator": "^0.3.0",
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-validator": "^0.3.2",
"ethereum-cryptography": "^2.0.0"
},
"gitHead": "d4f3246946fec86d908a215b27568aa8faea88d7"
Expand Down
6 changes: 3 additions & 3 deletions packages/web3-validator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-validator",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -48,8 +48,8 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"ethereum-cryptography": "^2.0.0",
"util": "^0.12.5",
"zod": "^3.21.4"
Expand Down
8 changes: 4 additions & 4 deletions packages/web3-zond-abi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-zond-abi",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -47,9 +47,9 @@
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@theqrl/abi": "^0.1.0",
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0"
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2"
},
"devDependencies": {
"@humeris/espresso-shot": "^4.0.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/web3-zond-accounts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-zond-accounts",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -46,7 +46,7 @@
},
"devDependencies": {
"@theqrl/eslint-config-base-web3": "^0.3.0",
"@theqrl/web3-providers-ipc": "^0.3.0",
"@theqrl/web3-providers-ipc": "^0.3.2",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
Expand All @@ -64,10 +64,10 @@
"@ethereumjs/rlp": "^4.0.1",
"@theqrl/dilithium5": "^0.0.9",
"@theqrl/wallet.js": "^0.1.0",
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0",
"@theqrl/web3-validator": "^0.3.0",
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2",
"@theqrl/web3-validator": "^0.3.2",
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"sha3": "^2.1.4"
Expand Down
18 changes: 9 additions & 9 deletions packages/web3-zond-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/web3-zond-contract",
"version": "0.3.0",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -48,18 +48,18 @@
"test:e2e:firefox": "npx cypress run --headless --browser firefox --env grep='ignore',invert=true"
},
"dependencies": {
"@theqrl/web3-core": "^0.3.0",
"@theqrl/web3-errors": "^0.3.0",
"@theqrl/web3-types": "^0.3.0",
"@theqrl/web3-utils": "^0.3.0",
"@theqrl/web3-validator": "^0.3.0",
"@theqrl/web3-zond": "^0.3.0",
"@theqrl/web3-zond-abi": "^0.3.0"
"@theqrl/web3-core": "^0.3.2",
"@theqrl/web3-errors": "^0.3.2",
"@theqrl/web3-types": "^0.3.2",
"@theqrl/web3-utils": "^0.3.2",
"@theqrl/web3-validator": "^0.3.2",
"@theqrl/web3-zond": "^0.3.2",
"@theqrl/web3-zond-abi": "^0.3.2"
},
"devDependencies": {
"@humeris/espresso-shot": "^4.0.0",
"@theqrl/eslint-config-base-web3": "^0.3.0",
"@theqrl/web3-zond-accounts": "^0.3.0",
"@theqrl/web3-zond-accounts": "^0.3.2",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
Expand Down
Loading