1
0
mirror of https://github.com/danog/toncontest.git synced 2024-11-26 12:04:50 +01:00
toncontest/lightning/gen-pub.fif
2019-10-15 16:17:12 +02:00

15 lines
386 B
Plaintext

"TonUtil.fif" include
{ ."usage: " @' $0 type ." <privkey>" cr
."Create public key files from private keys; if <privkey> doesn't exist, it will be created." cr cr
1 halt
} : usage
$# 1 < ' usage if
$1 +".pk" load-generate-keypair drop
dup $1 +".pubkey" B>file
."Wrote private key to " $1 +".pk" type cr
."Wrote public key to " $1 +".pubkey" type cr cr
."Public key: " Bx. cr cr