Skip to content

Commit

Permalink
chore(docs)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-K-Ivanov committed Jun 2, 2024
1 parent 5fd383e commit 1307e34
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,15 @@ tokenIDs | IDs of the tokens that will be transfered. They must be seperated by
hbarAmount | Amount of `HBAR`'s that will be transfered to the `Recipient`

1. Run `transfer.go`
`go run ./scripts/token/transfer/transfer.go -senderAccountId=/your sender account id/ --privateKey=/your private key/ --network=/testnet|mainnet/ --recipientAccountId=/recipient account id/ --tokenIds=/ids of the tokens you want to transfer (separated by coma)/ --hbarAmount=/amount of HBARs that will be send to the user/`
`go run ./scripts/token/transfer/transfer.go -senderAccountId=/your sender account id/ --privateKey=/your private key/ --network=/testnet|mainnet/ --recipientAccountId=/recipient account id/ --tokenIds=/ids of the tokens you want to transfer (separated by coma)/ --hbarAmount=/amount of HBARs that will be send to the user/`

## Create Account
Param Name | Description
--- | ---
privateKey | Private Key of the account creator
senderAccountId | Account id of the account creator
network | Hedera network: `mainet` or `testnet`
initialBalance | Initial balance of the account

1. Run `create-account.go`
`go run ./scripts/common/create-account/create-account.go --privateKey=/your private key/ --senderAccountId=/your account id/ --network=/testnet|mainnet/ --initialBalance=/initial balance of the account in HBARs/`

0 comments on commit 1307e34

Please sign in to comment.