diff --git a/scripts/README.md b/scripts/README.md index f76f4791..99951175 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -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/` \ No newline at end of file +`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/` \ No newline at end of file