900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
|
This procedure is used as part of the High-level Account interface. It is
used to generate a block that changes the representative for the given
.IR account .
Its interface is subject to change and not considered stable.
.SH EXAMPLES
.SS Example 1
.EX
package require nano @@VERS@@
set seed [::nano::key::newSeed -hex]
puts "Generated seed: $seed"
for {set index 0} {$index < 10} {incr index} {
set accountPrivateKey [::nano::key::fromSeed $seed $index -hex]
set accountAddress [::nano::address::fromPrivateKey $accountPrivateKey]
puts " - $index: $accountAddress"
}
.EE
.SS Example 2
.SS Example 3
.SH AUTHOR
.Sp
Roy Keene
.RI < rkeene@nano.org >
|
|
<
<
<
|
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
|
This procedure is used as part of the High-level Account interface. It is
used to generate a block that changes the representative for the given
.IR account .
Its interface is subject to change and not considered stable.
.SH EXAMPLES
.SS Example 1: Generate a new seed and derive 10 addresses from it
.EX
package require nano @@VERS@@
set seed [::nano::key::newSeed -hex]
puts "Generated seed: $seed"
for {set index 0} {$index < 10} {incr index} {
set accountPrivateKey [::nano::key::fromSeed $seed $index -hex]
set accountAddress [::nano::address::fromPrivateKey $accountPrivateKey]
puts " - $index: $accountAddress"
}
.EE
.SH AUTHOR
.Sp
Roy Keene
.RI < rkeene@nano.org >
|