-
Notifications
You must be signed in to change notification settings - Fork 51
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
core2.0 - Require EdgeTokenId instead of currencyCode throughout API #577
Conversation
src/types/types.ts
Outdated
@@ -12,6 +12,12 @@ export * from './fake-types' | |||
export * from './server-cleaners' | |||
export * from './server-types' | |||
|
|||
// --------------------------------------------------------------------- |
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.
balanceMap
saveTxMetadata takes params object
2a7097b
to
1be57cb
Compare
c3c83c8
to
14609e9
Compare
14609e9
to
852e0d5
Compare
635384f
to
f267746
Compare
src/client-side.ts
Outdated
@@ -107,7 +107,7 @@ shareData({ fixUsername }) | |||
*/ | |||
export function streamTransactions( | |||
this: InternalWalletMethods, | |||
opts: EdgeStreamTransactionOptions = {} | |||
opts: EdgeStreamTransactionOptions = { tokenId: null } |
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.
We should probably make the EdgeTokenIdOptions
parameters mandatory. If the tokenId
isn't allowed to be undefined
, then the whole thing can't be undefined
either.
f267746
to
a32a063
Compare
a32a063
to
35b72b3
Compare
CHANGELOG
Does this branch warrant an entry to the CHANGELOG?
Dependencies
#574
Description
none