-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
231eae9
commit 539fd5c
Showing
4 changed files
with
59 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,3 @@ | ||
********************************************************************************* | ||
[Velluscinum] Using version 24.7.23 | ||
For more information | ||
Look the User Manual at https://github.com/chon-group/Velluscinum/wiki | ||
********************************************************************************* | ||
|
||
* How to build an Asset? | ||
java -jar velluscinum.jar buildAsset [FILENAME] [Immutable:Data] [Additional:Information] | ||
example: | ||
java -jar velluscinum.jar buildAsset pieceOfArt "name:Meninas;author:Diego_Velázquez;year:1656" "value_eur:25000000;owner:Bob" | ||
|
||
* How to build a Transfer? | ||
java -jar velluscinum.jar buildTransfer [FILENAME] [Transfer:Information] | ||
example: | ||
java -jar velluscinum.jar buildTransfer sale "value_eur:27500000;new owner:Alice" | ||
|
||
* How to build a Wallet? | ||
java -jar velluscinum.jar buildWallet [FILENAME] | ||
example: | ||
java -jar velluscinum.jar buildWallet bob | ||
|
||
* How to CREATE a Non-Fungible-Token? | ||
java -jar velluscinum.jar deployNFT [SERVER] [PRIVATE-KEY-FILE] [PUBLIC-KEY-FILE] [NFT-FILE] | ||
example: | ||
java -jar velluscinum.jar deployNFT "http://testchain.chon.group:9984" bob.privateKey bob.publicKey pieceOfArt.asset | ||
|
||
* How to CREATE a Token? | ||
java -jar velluscinum.jar deployToken [SERVER] [PRIVATE-KEY-FILE] [PUBLIC-KEY-FILE] [TOKEN-FILE] [AMOUNT] | ||
example: | ||
java -jar velluscinum.jar deployToken "http://testchain.chon.group:9984" bob.privateKey bob.publicKey myCoin.asset 1000 | ||
|
||
* How to TRANSFER a Non-Fungible-Token? | ||
java -jar velluscinum.jar transferNFT [SERVER] [PRIVATE-KEY-FILE] [PUBLIC-KEY-FILE] [ASSET-ID] [TRANSFER-FILE] [DEST-PUBLIC-KEY-FILE] | ||
example: | ||
java -jar velluscinum.jar transferNFT "http://testchain.chon.group:9984" bob.privateKey bob.publicKey 76159024d31feacb0936be45a4b4100cafebbe988fbaab2bedc39d01e4d35b5f sale.transfer alice.publicKey | ||
|
||
* How to TRANSFER a Token? | ||
java -jar velluscinum.jar transferToken [SERVER] [PRIVATE-KEY-FILE] [PUBLIC-KEY-FILE] [ASSET-ID] [DEST-PUBLIC-KEY-FILE] [AMOUNT] | ||
example: | ||
java -jar velluscinum.jar transferToken "http://testchain.chon.group:9984" bob.privateKey bob.publicKey e5aa229ed58fb62c39908ace614be6d91b95cadeb2e66b47bc0858b06895110d alice.publicKey 50 | ||
|
||
* How to consult the balance of a Wallet? | ||
java -jar velluscinum.jar walletBalance [SERVER] [PRIVATE-KEY-FILE] [PUBLIC-KEY-FILE] | ||
example: | ||
java -jar velluscinum.jar walletBalance "http://testchain.chon.group:9984" bob.privateKey bob.publicKey | ||
|
||
* How to consult an Asset ? | ||
java -jar velluscinum.jar showToken [SERVER] [ASSETID] | ||
example: | ||
java -jar velluscinum.jar showToken "http://testchain.chon.group:9984" "a415dbc28fe18f45227e5016601e23c34d27c9951380d9fe8b8a46520441b038" | ||
********************************************************************************* |