-
Notifications
You must be signed in to change notification settings - Fork 57
Elephant 3 Compatible #249
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
Elephant 3 Compatible #249
Conversation
- Latest schema changes applied - Uint64 string handler added
- Changed account transactions to use Address - Fixed tests
fboucquez
left a comment
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.
Hi Steve, I have added several comments. Some are improvements for a future task. Some you may be able to fix in this PR (for example adding a method to centralize how NamespaceId are mapped form a Json field).
| * @returns Observable<Transaction[]> | ||
| */ | ||
| unconfirmedTransactions(publicAccount: PublicAccount, | ||
| unconfirmedTransactions(address: Address, |
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.
Cool, an Address is simpler to create than a PublicAccount. This simplifies the api for the sdk client.
- Fixed createFromEncoded bug
fboucquez
left a comment
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.
Thanks for the latest changes Steve
Addressfor allaccountIds (Address | PubKey)for rest endpoint querying. E.g.accountHttp.getTransactions(). Didn't make the parameter optional, as Address class has the factory methods to build from address or publicKeys (Address.createFromRawAddress, Address.createFromPublicKey).check inCosignTransactions` to allow offline aggregateTransaction cosigning.Issue resolved:
#240 #223 #228 #213