Add comment to script.
Some checks failed
Build / cleanup-runs (pull_request) Successful in 5s
Deploy Contract / cleanup-runs (pull_request) Successful in 7s
Build / build (pull_request) Failing after 38s
Dependency Review / dependency-review (pull_request) Failing after 38s
Pull Request Labeler / triage (pull_request) Failing after 4s
Deploy Contract / deploy (pull_request) Failing after 33s
CodeQL / Analyze (go) (pull_request) Failing after 1m0s
Run Gosec / Gosec (pull_request) Failing after 19s
Semgrep / Scan (pull_request) Failing after 13s
Tests / cleanup-runs (pull_request) Successful in 7s
Lint / Run golangci-lint (pull_request) Failing after 38s
Tests / test-importer (pull_request) Failing after 1m48s
Tests / test-unit-cover (pull_request) Failing after 1m48s
Lint / Run flake8 on python integration tests (pull_request) Failing after 2m27s
Tests / test-rpc (pull_request) Failing after 2m16s
Tests / sdk_tests (pull_request) Failing after 2m24s

This commit is contained in:
Thomas E Lackey 2024-01-11 17:14:52 -06:00
parent 924d09e63d
commit 7272fc0dda

View File

@ -1,16 +1,15 @@
#!/bin/bash #!/bin/bash
## ##
## This script generates a new account keypair, transfers funds to it, ## This script generates a new account keypair, transfers funds to it, and creates
## and creates a bond with those funds. The amount of can be optionally ## a bond with those funds. The amount of can be optionally specified, else a
## specified, else a default value estimated to be sufficient for about ## default value estimated to be sufficient for about 5000 records.
## 5000 records.
## ##
## A laconic CLI config file is required. The default location used is ## The `laconic` CLI and a valid config file for it are required. The default location
## ~/.laconic/config.yml, but this can be controlled with the environment ## for the config file is `~/.laconic/config.yml`, but this can be controlled with
## variable LACONIC_CONFIG. A userKey for a source account with sufficient ## the environment variable LACONIC_CONFIG. A `userKey` for a source account with
## funds available must be present in this file for the funds transfer to ## sufficient funds available must be present in this file for the funds transfer
## succeed. ## to succeed.
## ##
## Example: ## Example:
## ##