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

Publish alpha.1 #240

Merged
merged 2 commits into from
Jul 24, 2023
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
10 changes: 10 additions & 0 deletions packages/account/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 3.1.0-alpha.0 (2023-07-24)


### Bug Fixes

* avoid sending populated values of gas prices when estimating from bundler ([c58c9fc](https://github.com/bcnmy/biconomy-client-sdk/commit/c58c9fc29ee83978e1a90305e839002431db2b7b))




## 3.0.0-alpha.0 (2023-07-12)


Expand Down
10 changes: 5 additions & 5 deletions packages/account/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biconomy/account",
"version": "3.0.0-alpha.0",
"version": "3.1.0-alpha.0",
"description": "This package provides apis for ERC-4337 based smart account implementations",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -34,10 +34,10 @@
"access": "public"
},
"devDependencies": {
"@biconomy/bundler": "^3.0.0-alpha.0",
"@biconomy/common": "^3.0.0-alpha.0",
"@biconomy/core-types": "^3.0.0-alpha.0",
"@biconomy/bundler": "^3.1.0-alpha.0",
"@biconomy/common": "^3.1.0-alpha.0",
"@biconomy/core-types": "^3.1.0-alpha.0",
"@biconomy/node-client": "^3.0.0-alpha.0",
"@biconomy/paymaster": "^3.0.0-alpha.0"
"@biconomy/paymaster": "^3.1.0-alpha.0"
}
}
11 changes: 11 additions & 0 deletions packages/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 3.1.0-alpha.0 (2023-07-24)


### Features

* chain integration ([738556e](https://github.com/bcnmy/biconomy-client-sdk/commit/738556efcfda70fedc652befc0b35f8835c5e360))





## 3.0.0-alpha.0 (2023-07-12)


Expand Down
6 changes: 3 additions & 3 deletions packages/bundler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biconomy/bundler",
"version": "3.0.0-alpha.0",
"version": "3.1.0-alpha.0",
"description": "Biconomy Bundler package to interact with any bundler node as per ERC4337 standard",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -37,7 +37,7 @@
"access": "public"
},
"devDependencies": {
"@biconomy/common": "^3.0.0-alpha.0",
"@biconomy/core-types": "^3.0.0-alpha.0"
"@biconomy/common": "^3.1.0-alpha.0",
"@biconomy/core-types": "^3.1.0-alpha.0"
}
}
8 changes: 8 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 3.1.0-alpha.0 (2023-07-24)

### Features

* chain integration ([738556e](https://github.com/bcnmy/biconomy-client-sdk/commit/738556efcfda70fedc652befc0b35f8835c5e360))



## 3.0.0-alpha.0 (2023-07-12)


Expand Down
6 changes: 3 additions & 3 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biconomy/common",
"version": "3.0.0-alpha.0",
"version": "3.1.0-alpha.0",
"description": "common utils to be used for aa transactions",
"keywords": [
"utils"
Expand Down Expand Up @@ -41,15 +41,15 @@
},
"dependencies": {
"@account-abstraction/contracts": "^0.6.0",
"@biconomy/core-types": "^3.0.0-alpha.0",
"@biconomy/core-types": "^3.1.0-alpha.0",
"@biconomy/node-client": "^3.0.0-alpha.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@openzeppelin/contracts": "^4.7.3",
"@typechain/ethers-v5": "^10.2.0",
"debug": "^4.3.4",
"concurrently": "^7.4.0",
"debug": "^4.3.4",
"ethers": "^5.7.0",
"typechain": "^8.1.1"
},
Expand Down
1 change: 0 additions & 1 deletion packages/common/src/ERC4337Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { ChainId, UserOperation } from '@biconomy/core-types'

const debug = Debug('aa.utils')


export const AddressZero = ethers.constants.AddressZero

export const EIP1559_UNSUPPORTED_NETWORKS: Array<ChainId> = [97, 56, 1442, 1101]
Expand Down
10 changes: 10 additions & 0 deletions packages/core-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 3.1.0-alpha.0 (2023-07-24)



### Features

* chain integration ([738556e](https://github.com/bcnmy/biconomy-client-sdk/commit/738556efcfda70fedc652befc0b35f8835c5e360))



## 3.0.0-alpha.0 (2023-07-12)


Expand Down
2 changes: 1 addition & 1 deletion packages/core-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biconomy/core-types",
"version": "3.0.0-alpha.0",
"version": "3.1.0-alpha.0",
"description": "Biconomy Client SDK types",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/node-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"access": "public"
},
"dependencies": {
"@biconomy/core-types": "^3.0.0-alpha.0",
"@biconomy/core-types": "^3.1.0-alpha.0",
"@ethersproject/abstract-signer": "^5.6.0",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"node-fetch": "^2.6.6"
Expand Down
5 changes: 5 additions & 0 deletions packages/paymaster/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 3.1.0-alpha.0 (2023-07-24)

VERSION bump only


## 3.0.0-alpha.0 (2023-07-12)


Expand Down
6 changes: 3 additions & 3 deletions packages/paymaster/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biconomy/paymaster",
"version": "3.0.0-alpha.0",
"version": "3.1.0-alpha.0",
"description": "Biconomy Paymaster to interact with Paymaster Services that interacts with ( veriying and token ) paymasters",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -37,7 +37,7 @@
"access": "public"
},
"devDependencies": {
"@biconomy/common": "^3.0.0-alpha.0",
"@biconomy/core-types": "^3.0.0-alpha.0"
"@biconomy/common": "^3.1.0-alpha.0",
"@biconomy/core-types": "^3.1.0-alpha.0"
}
}