-
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
Feat/Lattice ETH signer #3
base: gp/add-gridplus-signer
Are you sure you want to change the base?
Conversation
@@ -29,7 +27,7 @@ export class LatticeProvider extends Provider { | |||
deviceId: string; | |||
password: string; | |||
name: string; | |||
}): Promise<LatticeProvider> { | |||
}): Promise<any> { |
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 type this?
"lodash": "4.17.21", | ||
"reflect-metadata": "0.1.13", | ||
"rimraf": "4.4.0", | ||
"rxjs": "7.8.0", | ||
"ts-node": "10.7.0" | ||
"stream-browserify": "3.0.0", |
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.
how many of these changes can we push down into the sdk?
@@ -1,19 +1,38 @@ | |||
import { Signer, SignerDecorator } from '@xdefi-tech/chains-core'; | |||
import { fetchAddresses, sign, Constants } from 'gridplus-sdk'; | |||
import { type UnsignedTransaction, utils } from 'ethers'; | |||
import { type UnsignedTransaction, utils, BigNumber } from 'ethers'; | |||
// import { TransactionFactory } from '@ethereumjs/tx'; |
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.
👀
No description provided.