Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
silkaj
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
silkaj
Commits
4f60c040
Commit
4f60c040
authored
5 years ago
by
Moul
Browse files
Options
Downloads
Patches
Plain Diff
[doc] Update documentation with new CLI
parent
0fc45e95
No related branches found
No related tags found
1 merge request
!146
Merge dev into master branch to complete v0.8.0 development cycle
Pipeline
#6784
passed
5 years ago
Stage: checks
Stage: tests
Stage: coverage
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/how-to_automate_transactions_and_multi-output.md
+3
-3
3 additions, 3 deletions
doc/how-to_automate_transactions_and_multi-output.md
with
3 additions
and
3 deletions
doc/how-to_automate_transactions_and_multi-output.md
+
3
−
3
View file @
4f60c040
...
@@ -35,7 +35,7 @@ To process automated transactions, Silkaj needs to have an authentication file a
...
@@ -35,7 +35,7 @@ To process automated transactions, Silkaj needs to have an authentication file a
In order to create this file, with your wallet’s secret credentials, run following command:
In order to create this file, with your wallet’s secret credentials, run following command:
```
bash
```
bash
silkaj
generate_
auth
_
file
silkaj authfile
Please enter your Scrypt Salt
(
Secret identifier
)
:
Please enter your Scrypt Salt
(
Secret identifier
)
:
Please enter your Scrypt password
(
masked
)
:
Please enter your Scrypt password
(
masked
)
:
Using default values. Scrypt parameters not specified or wrong format
Using default values. Scrypt parameters not specified or wrong format
...
@@ -48,7 +48,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
...
@@ -48,7 +48,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Finally, you just have to run following command:
Finally, you just have to run following command:
```
bash
```
bash
silkaj
tx
--auth-file
--amountUD
20
--output
`
cat
recipients.txt |
tr
'\n'
':'
|
sed
-e
's/:*$//'
`
silkaj
--auth-file
tx
--amountUD
20
--output
`
cat
recipients.txt |
tr
'\n'
':'
|
sed
-e
's/:*$//'
`
```
```
Note: Each pubkey will receive 20 UD.
Note: Each pubkey will receive 20 UD.
...
@@ -57,7 +57,7 @@ Note: Each pubkey will receive 20 UD.
...
@@ -57,7 +57,7 @@ Note: Each pubkey will receive 20 UD.
If you want to automate a transaction on each first day of the month, you can set a
`crontab`
on your machine (preferably a server running 7/24):
If you want to automate a transaction on each first day of the month, you can set a
`crontab`
on your machine (preferably a server running 7/24):
```
bash
```
bash
0 0 1
*
*
silkaj
tx
--auth-file
--yes
--amountUD
20
--output
`
cat
recipients.txt |
tr
'\n'
':'
|
sed
-e
's/:*$//'
`
0 0 1
*
*
silkaj
--auth-file
tx
--yes
--amountUD
20
--output
`
cat
recipients.txt |
tr
'\n'
':'
|
sed
-e
's/:*$//'
`
```
```
Note: the
`--yes`
option won’t prompt a confirmation.
Note: the
`--yes`
option won’t prompt a confirmation.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment