-
- Downloads
Feat/wallet (#533)
* Feat: started adding new logic to the wallet package * Feat: intermediary commit * Feat: added Outputs to wallet * Feat: started implementing SendFunds * Feat: added AddressManager + refactored code * Feat: tx gets constructed * Feat: txs get sent now * Feat: fixed bug after merge * Fix: fixed faucet * Fix: fix double spend tool * Fix: refactored broken tests * Fix: fixed additional tests * Fix: fixed some integration tests * Fix: fixed some issues * Fix: fixed further bugs in integration tests * Fix: fixed some bugs *Make WaitToKillTimeInSeconds a parameter * Set default ParaWaitToKill to 60 seconds * Fix bug * Feat: added an output manager * Fix: fixed bug * Feat: added new features to the wallet * Feat: added missing comments * Feat: updated some stuff * Feat: started to implement a cli wallet * Feat: added new features to cli wallet * Feat: added more features to cli wallet * Feat: MOAR FEATURES * Feat: finished wallet * Fix: fixed bug due to refactor * Fix: fixed bugs * Refactor: removed comments from private methods * do not ignore client lib * move wallet inside of the client dir * do not ignore client in docker build * go fmt yourself * Feat: added config to wallet * Feat: exe creates default config upon first launch * Feat: updated gitignore * Feat: refactored some code * Feat: added ERROR to all "non-fatal" error messages * Feat: removed error prefix from call and moved to func * Feat: indented error message * Feat: make commands look like params in useage print * Feat: reordered commands and params * Feat: fixed bug with colored coins creation * Fix: fixed missing unit tests * Feat: added message to sendfunds * Feat: added message for faucet POW call * Feat: intermediary commit * Fix: Enable server-status to get server information * Fix: Fix dependency cycle * Fix: Fix unit test errors * Fix: Fix integration test * Fix: Fix consensus integration test * Fix: fix * Refactor: Reorganize the wallet files to make it cleaner * Fix: Fix * Add script for building cli-wallet binaries Co-authored-by: Hans Moog <hm@mkjc.net> Co-authored-by:
capossele <angelocapossele@gmail.com> Co-authored-by:
Wolfgang Welz <welzwo@gmail.com> Co-authored-by:
jkrvivian <jkrvivian@gmail.com>
Showing
- .dockerignore 1 addition, 2 deletions.dockerignore
- .gitignore 5 additions, 0 deletions.gitignore
- client/wallet/addressmanager.go 174 additions, 0 deletionsclient/wallet/addressmanager.go
- client/wallet/asset.go 27 additions, 0 deletionsclient/wallet/asset.go
- client/wallet/assetregistry.go 158 additions, 0 deletionsclient/wallet/assetregistry.go
- client/wallet/connector.go 14 additions, 0 deletionsclient/wallet/connector.go
- client/wallet/options.go 42 additions, 0 deletionsclient/wallet/options.go
- client/wallet/output.go 24 additions, 0 deletionsclient/wallet/output.go
- client/wallet/packages/address/address.go 15 additions, 0 deletionsclient/wallet/packages/address/address.go
- client/wallet/packages/seed/seed.go 8 additions, 4 deletionsclient/wallet/packages/seed/seed.go
- client/wallet/sendfunds_options.go 100 additions, 0 deletionsclient/wallet/sendfunds_options.go
- client/wallet/serverstatus.go 8 additions, 0 deletionsclient/wallet/serverstatus.go
- client/wallet/unspentoutputmanager.go 112 additions, 0 deletionsclient/wallet/unspentoutputmanager.go
- client/wallet/wallet.go 428 additions, 0 deletionsclient/wallet/wallet.go
- client/wallet/wallet_test.go 236 additions, 0 deletionsclient/wallet/wallet_test.go
- client/wallet/webconnector.go 132 additions, 0 deletionsclient/wallet/webconnector.go
- dapps/faucet/packages/faucet.go 7 additions, 7 deletionsdapps/faucet/packages/faucet.go
- dapps/valuetransfers/packages/address/address.go 3 additions, 0 deletionsdapps/valuetransfers/packages/address/address.go
- dapps/valuetransfers/packages/tangle/signature_filter_test.go 1 addition, 2 deletions...s/valuetransfers/packages/tangle/signature_filter_test.go
- dapps/valuetransfers/packages/tangle/snapshot_test.go 1 addition, 2 deletionsdapps/valuetransfers/packages/tangle/snapshot_test.go
Loading
Please register or sign in to comment