From 6cae1f8b8a906339af9087ef8b1173c51466cbd9 Mon Sep 17 00:00:00 2001 From: jdevcs Date: Tue, 16 Jan 2024 19:18:49 +0500 Subject: [PATCH 1/7] changelog and version update --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb89e05..fd44391 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 1.0.0 (2024-01-02) +## 0.1.0 ### Features diff --git a/package.json b/package.json index b7e98d1..5472f5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web3-plugin-eip4337", - "version": "1.0.0", + "version": "0.1.0", "description": "web3-plugin-eip4337 plugin", "main": "lib/index.js", "types": "lib/index.d.ts", From e9eb467fbe2464bdc6fde2cf5d9c6ec60a7b35d8 Mon Sep 17 00:00:00 2001 From: jdevcs Date: Wed, 17 Jan 2024 18:35:15 +0500 Subject: [PATCH 2/7] org prefix in plugin name --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5472f5a..a35b859 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "web3-plugin-eip4337", + "name": "@chainsafe/web3-plugin-eip4337", "version": "0.1.0", "description": "web3-plugin-eip4337 plugin", "main": "lib/index.js", From 7f0e448fad56f2e2d285484a5f18c7ca474fa932 Mon Sep 17 00:00:00 2001 From: jdevcs Date: Wed, 17 Jan 2024 18:35:42 +0500 Subject: [PATCH 3/7] readme update --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 97d4690..d678bab 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,17 @@ Web3.js EIP4337 is a [web3.js](https://github.com/web3/web3.js) `4.x` plugin for Account Abstraction functionality. +## Prerequisites + +- :gear: [NodeJS](https://nodejs.org/) (LTS/Fermium) +- :toolbox: [Yarn](https://yarnpkg.com/) + +## Installation and usage + +```bash +yarn add @chainsafe/web3-plugin-eip4337 +``` + ```ts import { Web3 } from 'web3'; From 8bf54098c4507acbdb5882a11a1eccc255e61c35 Mon Sep 17 00:00:00 2001 From: jdevcs Date: Wed, 17 Jan 2024 18:57:07 +0500 Subject: [PATCH 4/7] npm ignore --- .npmignore | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..a26ea0e --- /dev/null +++ b/.npmignore @@ -0,0 +1,26 @@ +.babelrc +.eslintignore +.eslintrc.json +.eslintrc.js +.gitignore +.lintstagedrc.json +.nycrc +.prettierrc.json +.prettierignore +cypress.json +index.html +Jenkinsfile* +*.log + +.nyc_output/ +coverage/ +benchmark/ +.coverage/ +cypress/ +fixtures/ +tmp/ +logs/ +test/ +scripts/ +browsertest/ +examples/ \ No newline at end of file From 80811edfa3cd1e3b5fcd8f8ba80e6828cd7b1180 Mon Sep 17 00:00:00 2001 From: jdevcs Date: Wed, 17 Jan 2024 20:58:17 +0500 Subject: [PATCH 5/7] npm ignore update --- .npmignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.npmignore b/.npmignore index a26ea0e..f8316a0 100644 --- a/.npmignore +++ b/.npmignore @@ -11,6 +11,7 @@ cypress.json index.html Jenkinsfile* *.log +cypress.config.js .nyc_output/ coverage/ From 8a394fe2a368debebaf59207e06c27178399ec5f Mon Sep 17 00:00:00 2001 From: jdevcs Date: Wed, 17 Jan 2024 21:04:00 +0500 Subject: [PATCH 6/7] update changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd44391..f79956f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,3 +20,9 @@ * github action trigger config ([#3](https://github.com/web3/web3.js-plugin-eip4337/issues/3)) ([ef7b962](https://github.com/web3/web3.js-plugin-eip4337/commit/ef7b9621b6f7afac7a1e986037a3d00f9f0858c9)) * update lock file ([b62150d](https://github.com/web3/web3.js-plugin-eip4337/commit/b62150df9ed1f45c60d0fc6568a39f8191681b8c)) * use web3-validator ([d450e29](https://github.com/web3/web3.js-plugin-eip4337/commit/d450e2929e7193a52678c1488c2cd4bfee235c64)) + +## 0.1.1 + +### Fixed + +* Updated build by filtering unnecessary files and added required util From 4ee3918192c81c2547a50da21e73bb02e2dfc98c Mon Sep 17 00:00:00 2001 From: jdevcs Date: Wed, 17 Jan 2024 21:12:16 +0500 Subject: [PATCH 7/7] updated version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a35b859..39edbbb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@chainsafe/web3-plugin-eip4337", - "version": "0.1.0", + "version": "0.1.1", "description": "web3-plugin-eip4337 plugin", "main": "lib/index.js", "types": "lib/index.d.ts",