Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: version up sdk v2.0.1 #108

Merged
merged 1 commit into from
Feb 25, 2025
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
39 changes: 30 additions & 9 deletions ethers-ext/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions ethers-ext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kaiachain/ethers-ext",
"version": "2.0.0",
"version": "2.0.1",
"license": "MIT",
"description": "ethers.js extension for kaia blockchain",
"keywords": [
Expand Down Expand Up @@ -67,6 +67,7 @@
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"ethers5": "npm:ethers@^5.7.2",
"ethers6": "file:./node_modules/ethers",
"mocha": "^10.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
Expand Down Expand Up @@ -97,8 +98,8 @@
"@ethersproject/wallet": "^5.7.0",
"@ethersproject/web": "^5.7.1",
"@kaiachain/web3rpc": "^1.2.1",
"@kaiachain/js-ext-core": "^2.0.0",
"ethers6": "npm:ethers@^6.12.1",
"@kaiachain/js-ext-core": "^2.0.1",
"ethers": "^6.12.1",
"lodash": "^4.17.21"
}
}
2 changes: 1 addition & 1 deletion web3j-ext/web3j-ext/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'io.kaia'
version 'v2.0.0'
version 'v2.0.1'

repositories {
mavenCentral()
Expand Down
113 changes: 28 additions & 85 deletions web3js-ext/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions web3js-ext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kaiachain/web3js-ext",
"version": "2.0.0",
"version": "2.0.1",
"license": "MIT",
"description": "web3.js extension for kaiachain blockchain",
"keywords": [
Expand Down Expand Up @@ -61,7 +61,7 @@
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@kaiachain/js-ext-core": "^2.0.0",
"@kaiachain/js-ext-core": "^2.0.1",
"@kaiachain/web3rpc": "^1.2.1",
"ethereum-cryptography": "^2.1.2",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion web3py-ext/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pathlib

NAME = "web3py_ext"
VERSION = "2.0.0"
VERSION = "2.0.1"

with open("./README.md") as readme:
long_description = readme.read()
Expand Down
Loading