-
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
ft: adding support of sign typed data along with eip 6942 #138
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.
LGTM
@@ -42,7 +42,8 @@ export class WalletConnectWalletProvider extends DynamicWalletProvider { | |||
return response || null; | |||
} | |||
|
|||
async signTypedData(typedData: TypedDataField[], message: any, accountAddress: string): Promise<string> { | |||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | |||
async signTypedData(typedData: MessagePayload, message: any, factoryAddress?: string, initCode?: string): Promise<string> { | |||
throw new Error('Not supported on this provider') |
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 change this to a valid one you can see the modularSdk for execution
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)