You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where `k1k2k3` is the multisig account address, `k1sig.json` is the signature of the first signer, `k2sig.json` is the signature of the second signer, and `k3sig.json` is the signature of the third signer.
@@ -447,50 +447,50 @@ To allow transactions to be signed by nested multisigs, meaning that a participa
447
447
448
448
```bash
449
449
# First aggregate signatures of the multisig participant
Where `ms1` is the nested multisig account address, `ms1p1sig.json` is the signature of the first participant of the nested multisig account, `ms1p2sig.json` is the signature of the second participant of the nested multisig account, and `ms1sig.json` is the aggregated signature of the nested multisig account.
457
457
458
458
`k1ms1` is a multisig account comprised of an individual signer and another nested multisig account (`ms1`). `k1sig.json` is the signature of the first signer of the individual member.
459
459
460
-
More information about the `multi-sign` command can be found running `simd tx multi-sign --help`.
460
+
More information about the `multi-sign` command can be found running `heimdalld tx multi-sign --help`.
461
461
462
462
#### `multisign-batch`
463
463
464
464
The `multisign-batch` works the same way as `sign-batch`, but for multisig accounts.
465
465
With the difference that the `multisign-batch` command requires all transactions to be in one file, and the `--append` flag does not exist.
466
466
The multi signature functionality is not supported by Heimdall.
467
467
468
-
More information about the `multisign-batch` command can be found running `simd tx multisign-batch --help`.
468
+
More information about the `multisign-batch` command can be found running `heimdalld tx multisign-batch --help`.
469
469
470
470
#### `validate-signatures`
471
471
472
472
The `validate-signatures` command allows users to validate the signatures of a signed transaction.
473
473
474
474
```bash
475
-
$ simd tx validate-signatures tx.signed.json
475
+
$ heimdalld tx validate-signatures tx.signed.json
476
476
Signers:
477
477
0: 0x...
478
478
479
479
Signatures:
480
480
0: 0x... [OK]
481
481
```
482
482
483
-
More information about the `validate-signatures` command can be found running `simd tx validate-signatures --help`.
483
+
More information about the `validate-signatures` command can be found running `heimdalld tx validate-signatures --help`.
484
484
485
485
#### `broadcast`
486
486
487
487
The `broadcast` command allows users to broadcast a signed transaction to the network.
488
488
489
489
```bash
490
-
simd tx broadcast tx.signed.json
490
+
heimdalld tx broadcast tx.signed.json
491
491
```
492
492
493
-
More information about the `broadcast` command can be found running `simd tx broadcast --help`.
493
+
More information about the `broadcast` command can be found running `heimdalld tx broadcast --help`.
Copy file name to clipboardExpand all lines: docs/pos/architecture/heimdall_v2/balance-transfers.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -576,21 +576,21 @@ A user can query and interact with the `bank` module using the CLI.
576
576
The `query` commands allow users to query `bank` state.
577
577
578
578
```shell
579
-
simd query bank --help
579
+
heimdalld query bank --help
580
580
```
581
581
582
582
##### balances
583
583
584
584
The `balances` command allows users to query account balances by address.
585
585
586
586
```shell
587
-
simd query bank balances [address] [flags]
587
+
heimdalld query bank balances [address] [flags]
588
588
```
589
589
590
590
Example:
591
591
592
592
```shell
593
-
simd query bank balances cosmos1..
593
+
heimdalld query bank balances cosmos1..
594
594
```
595
595
596
596
Example Output:
@@ -609,13 +609,13 @@ pagination:
609
609
The `denom-metadata` command allows users to query metadata for coin denominations. A user can query metadata for a single denomination using the `--denom` flag or all denominations without it.
610
610
611
611
```shell
612
-
simd query bank denom-metadata [flags]
612
+
heimdalld query bank denom-metadata [flags]
613
613
```
614
614
615
615
Example:
616
616
617
617
```shell
618
-
simd query bank denom-metadata --denom stake
618
+
heimdalld query bank denom-metadata --denom stake
619
619
```
620
620
621
621
Example Output:
@@ -638,13 +638,13 @@ metadata:
638
638
The `total` command allows users to query the total supply of coins. A user can query the total supply for a single coin using the `--denom` flag or all coins without it.
639
639
640
640
```shell
641
-
simd query bank total [flags]
641
+
heimdalld query bank total [flags]
642
642
```
643
643
644
644
Example:
645
645
646
646
```shell
647
-
simd query bank total --denom stake
647
+
heimdalld query bank total --denom stake
648
648
```
649
649
650
650
Example Output:
@@ -659,13 +659,13 @@ denom: stake
659
659
The `send-enabled` command allows users to query for all or some SendEnabled entries.
660
660
661
661
```shell
662
-
simd query bank send-enabled [denom1 ...] [flags]
662
+
heimdalld query bank send-enabled [denom1 ...] [flags]
663
663
```
664
664
665
665
Example:
666
666
667
667
```shell
668
-
simd query bank send-enabled
668
+
heimdalld query bank send-enabled
669
669
```
670
670
671
671
Example output:
@@ -685,21 +685,21 @@ pagination:
685
685
The `tx` commands allow users to interact with the `bank` module.
686
686
687
687
```shell
688
-
simd tx bank --help
688
+
heimdalld tx bank --help
689
689
```
690
690
691
691
##### send
692
692
693
693
The `send` command allows users to send funds from one account to another.
694
694
695
695
```shell
696
-
simd tx bank send [from_key_or_address] [to_address] [amount] [flags]
696
+
heimdalld tx bank send [from_key_or_address] [to_address] [amount] [flags]
697
697
```
698
698
699
699
Example:
700
700
701
701
```shell
702
-
simd tx bank send cosmos1.. cosmos1.. 100stake
702
+
heimdalld tx bank send cosmos1.. cosmos1.. 100stake
0 commit comments