zboxcli
zboxcli copied to clipboard
A client CLI using GoSDK to interface the blockchain, storage platform, and blobbers (storage providers)
A brief description of the changes in this PR: - User can control access to new allocations - User can see the new fields added to the allocation - Depend...
Upload cost calculation (used only for estimating the upload price) is incorrectly done in zboxcli at the moment.
Changes outlined in https://github.com/0chain/0chain/issues/828
A brief description of the changes in this PR: This PR upgrades gosdk which solves issue https://github.com/0chain/gosdk/issues/570. Tasks to complete before merging PR: - [ ] Ensure system tests are...
download/upload/update is running file by file. It is safe to download/upload/update files in parallel requests for better performance.
A brief description of the changes in this PR: Tx fee Tasks to complete before merging PR: - [ ] Ensure system tests are passing. If not [Run them manually](https://github.com/0chain/zboxcli/actions/workflows/system_tests.yml)...
for now, we have a feature `dowload by blocks`. but you have to calculate blockNums and blockIndex, and loop it till done. `download` has to restart from scratch if network...
A brief description of the changes in this PR: Tasks to complete before merging PR: - [ ] Ensure system tests are passing. If not [Run them manually](https://github.com/0chain/zboxcli/actions/workflows/system_tests.yml) to check...
Closes #113 A brief description of the changes in this PR: - Use lower-hyphenated for commands - Parameters naming needs discussion. Refer [here](https://stackoverflow.com/questions/64557741/how-to-support-an-old-flag-name-when-changing-to-a-new-flag-name-with-cobra) for alias in flags. Tasks to complete...
in linux ``` $ cp file.txt dir1/ cp: directory dir1 does not exist ``` in zbox cli ``` zbox copy --allocation $alloc --remotepath /17.png --destpath /bap ``` we are creating...