-
Notifications
You must be signed in to change notification settings - Fork 0
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 bearby wallet integration #264
Conversation
@@ -33,13 +31,13 @@ export const U256_MAX = BigInt( | |||
export const forwardBurnFees = { | |||
fee: 0n, | |||
coins: 100000n, | |||
maxGas: 1000000n, | |||
maxGas: 4294967295n, |
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.
i don't think you should change this.
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.
That's why I place an alert here. ;)
However, with 1000000n it just didn't work (was not working at least). So, in the received error that was the amount asked to fill.
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.
I think it used to work because station set the maximum gas level itself.
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.
Today I'm not 100% sure about that but it could explain why the gas amount was ok with station but not bearby
}; | ||
|
||
export const increaseAllowanceFee = { | ||
fee: 0n, | ||
coins: 1000n, | ||
maxGas: 1000000n, | ||
maxGas: 4294967295n, |
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.
12372ce
to
9cc0bc5
Compare
30df08a
to
21b499c
Compare
21b499c
to
784d886
Compare
.addString(CONTRACT_ADDRESS) | ||
.addU256(amount) | ||
.serialize(), | ||
parameter: new Args().addString(CONTRACT_ADDRESS).addU256(amount), |
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.
maybe this is why the operations don't work with bearby
784d886
to
cc10bb6
Compare
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.
to fix: operation error when bridge redeem with bearby wallet
install missing dependencies fix typo NetworkStoreState cypress add support file rename supportedTokens preselect a wallet provider
cc10bb6
to
523a0b5
Compare
No description provided.