-
Notifications
You must be signed in to change notification settings - Fork 282
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(sdk-coin-oas): add oas sdk skeleton #5093
Conversation
31c091c
to
d0a57b1
Compare
12fcdf0
to
e22f195
Compare
modules/sdk-coin-oas/src/oas.ts
Outdated
/** @inheritDoc */ | ||
allowsAccountConsolidations(): boolean { | ||
return true; | ||
} |
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.
This is not needed as it is having forwarders
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 need to add this method only as by default it is false in the BaseCoin, can remove in a follow up
18393d7
to
73658c0
Compare
modules/sdk-coin-oas/src/oas.ts
Outdated
/** @inheritDoc */ | ||
allowsAccountConsolidations(): boolean { | ||
return true; | ||
} |
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 need to add this method only as by default it is false in the BaseCoin, can remove in a follow up
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.
Update code owners please.
@@ -0,0 +1,106 @@ | |||
export const keyShares = { |
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.
This looks like a GG18 keyshare. Can we convert this test to use DKLS instead?
68a3f97
to
7cb1a1d
Compare
export class TransactionBuilder extends AbstractTransactionBuilder { | ||
amount(arg0: number) { | ||
throw new Error('Method not implemented.'); | ||
} |
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.
this amount method seems like a mistake, please remove it
7cb1a1d
to
f158abc
Compare
f158abc
to
db07361
Compare
db07361
to
d04f601
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.
CODEOWNERS LGTM.
required changes are completed and reviewed
Ticket: WIN-3696