Skip to content
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

Save while syncing #105

Merged
merged 34 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
0649601
fix: update test demo
DanielZhangReal Feb 26, 2023
9d34671
fix: save utxos to local
DanielZhangReal Feb 27, 2023
c7eaafc
fix: change account
DanielZhangReal Feb 27, 2023
44d60e0
storage state changes
SupremoUGH Feb 27, 2023
aa1c968
fix: storage data
DanielZhangReal Feb 27, 2023
bd51ff5
fix: save data when data is available
DanielZhangReal Feb 27, 2023
c371dc7
async methods
SupremoUGH Feb 27, 2023
4e19ce6
Merge branch 'fix/signer_extension_demo' of https://github.com/Manta-…
SupremoUGH Feb 27, 2023
d9b080a
fix: update demo
DanielZhangReal Feb 28, 2023
4392c24
undo async
SupremoUGH Feb 28, 2023
b44bcba
fix: update save utxos
DanielZhangReal Feb 28, 2023
5991800
storage state is JsValue now
SupremoUGH Feb 28, 2023
ec55c3d
fix: change storage data to JsValue
DanielZhangReal Feb 28, 2023
0690878
test fixed
SupremoUGH Feb 28, 2023
4d6ba97
fix: add initial seed phrase
DanielZhangReal Mar 1, 2023
b78f8b1
fix: rm unsafe-eval lib scale-codec, temporarily use the old version …
DanielZhangReal Mar 2, 2023
010a21f
fix: rm polkadotSigner in build transaction
DanielZhangReal Mar 5, 2023
d80f5e6
fix: replace private with zk
DanielZhangReal Mar 5, 2023
3d990da
fix: api changed
DanielZhangReal Mar 5, 2023
eab87a0
fix: replace scale-codec with manta-scale-codec, fix CSP issues
DanielZhangReal Mar 7, 2023
dc9e8b1
updated manta-rs dependencies
SupremoUGH Mar 7, 2023
3f14319
changelog
SupremoUGH Mar 7, 2023
414f97b
changelog
SupremoUGH Mar 7, 2023
b30f09f
fix: add publicAddress in toPublic, refer: https://github.com/Manta-…
DanielZhangReal Mar 8, 2023
d3b2760
fix: update package name
DanielZhangReal Mar 13, 2023
999fca4
fix: update name
DanielZhangReal Mar 13, 2023
12a6165
fix: move storage logic to external
DanielZhangReal Mar 13, 2023
15d6633
fix: upgrade sdk version
DanielZhangReal Mar 14, 2023
efbca46
new method
SupremoUGH Mar 14, 2023
93e6597
feat: Save storage state while syncing
DanielZhangReal Mar 15, 2023
92c79e6
fix: move reset_state to initialWalletSync
DanielZhangReal Mar 15, 2023
e5a38b0
fix: revert max pull size
DanielZhangReal Mar 15, 2023
5757897
swapped get and set storage names
SupremoUGH Mar 15, 2023
fe451a4
changelog
SupremoUGH Mar 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions manta-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]

### Added
- [\#105](https://github.com/Manta-Network/sdk/pull/105) Save while syncing.
- [\#85](https://github.com/Manta-Network/sdk/pull/85) Key-dependent signer function APIs.

### Changed
- [\#103](https://github.com/Manta-Network/sdk/pull/103) Update manta-rs to v0.5.12.

### Deprecated

Expand All @@ -22,3 +24,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Added
- [\#51](https://github.com/Manta-Network/manta-signer/pull/51) Initial version of manta.js
## [2.0.0] 2023-2-24

### Changed
- [\#86](https://github.com/Manta-Network/manta-signer/pull/86) Allow the PrivateWallet class to be initialized without polkadot.js api being connected to a node

## [3.0.0] 2023-3-7

### Changed
[\#102](https://github.com/Manta-Network/sdk/pull/102) Include sink accounts in ToPublic. Removes `assetIdToUInt8Array` function as it encodes values < 255 incorrectly, now changed to use polkadot.js utility function.
Loading