-
Notifications
You must be signed in to change notification settings - Fork 40
Fix/auth response in submit #314
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
Fix/auth response in submit #314
Conversation
@@ -45,10 +52,21 @@ export type ContractInvokeTransactionData = { | |||
network?: string; | |||
}; | |||
|
|||
export type AuthProofEthIdentity = { | |||
userDid: DID; |
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.
Any convention about when to use userDid
or userDID
? userDid
when it's a property of object type and userDID
for function params and variables?
@@ -174,7 +177,7 @@ describe('contract-request', () => { | |||
}, | |||
|
|||
prepareTxArgsSubmit: async () => { | |||
return []; | |||
return {} as 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.
lint warning. Maybe explicit disable line no-explicit-any
* fix cross chain proofs and calc auth challenge * add cross chain proof for auth response and integration test * Fix/auth response in submit (#314) * refactor usage of auth proofs --------- Co-authored-by: GopherDID <74898029+vmidyllic@users.noreply.github.com>
No description provided.