-
Notifications
You must be signed in to change notification settings - Fork 22
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
Add nonce key param on all wallets #101
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pls remove and then merge.
@@ -84,13 +84,12 @@ export class SimpleAccountAPI extends BaseAccountAPI { | |||
return this.accountAddress; | |||
} | |||
|
|||
async getNonce(): Promise<BigNumber> { | |||
async getNonce(key = 0): Promise<BigNumber> { | |||
console.log('checking nonce...'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we please remove the console.log?
src/sdk/base/ZeroDevWalletAPI.ts
Outdated
@@ -117,13 +117,12 @@ export class ZeroDevWalletAPI extends BaseAccountAPI { | |||
return this.accountAddress; | |||
} | |||
|
|||
async getNonce(): Promise<BigNumber> { | |||
async getNonce(key = 0): Promise<BigNumber> { | |||
console.log('checking nonce...'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please see above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pls update date on the changelog and type of change in readme 🗿
CHANGELOG.md
Outdated
@@ -1,5 +1,9 @@ | |||
# Changelog | |||
## [1.4.2] - 2024-01-26 | |||
## [1.5.1] - 2024-01-26 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
Types of changes
What types of changes does your code introduce?
Further comments (optional)