Get
Get returns a value for a key read-only
Command
gnokey query vm/qeval -remote "https://api.gno.berty.io:443" -data "gno.land/r/archive/keystore.Get()"
Result
Get returns a value for a key read-only
gnokey query vm/qeval -remote "https://api.gno.berty.io:443" -data "gno.land/r/archive/keystore.Get()"
Remove removes a key requires write-access (original owner must be caller)
# WARNING: This command is running in an INSECURE mode.
# It is strongly recommended to use a hardware device for signing
# and avoid trusting any computer connected to the internet,
# as your private keys could be exposed.
gnokey maketx call -pkgpath "gno.land/r/archive/keystore" -func "Remove" -args $'' -gas-fee 1000000ugnot -gas-wanted 1_000_000_000 -send "" -chainid "dev" -remote "https://api.gno.berty.io:443" ADDRESSgnokey query -remote "https://api.gno.berty.io:443" auth/accounts/ADDRESS
gnokey maketx call -pkgpath "gno.land/r/archive/keystore" -func "Remove" -args $'' -gas-fee 1000000ugnot -gas-wanted 1_000_000_000 -send "" -broadcast=false ADDRESS > call.tx
gnokey sign -tx-path call.tx -chainid "dev" -account-number ACCOUNTNUMBER -account-sequence SEQUENCENUMBER ADDRESS
gnokey broadcast -remote "https://api.gno.berty.io:443" call.tx
Render provides read-only url access to the functions of the keystore "" -> show all keystores listed by owner "owner" -> show all keys for that owner's keystore "owner:size" -> returns size of owner's keystore "owner:get:key" -> show value for that key in owner's keystore
gnokey query vm/qeval -remote "https://api.gno.berty.io:443" -data "gno.land/r/archive/keystore.Render()"
Set will set a value to a key requires write-access (original caller must be caller)
# WARNING: This command is running in an INSECURE mode.
# It is strongly recommended to use a hardware device for signing
# and avoid trusting any computer connected to the internet,
# as your private keys could be exposed.
gnokey maketx call -pkgpath "gno.land/r/archive/keystore" -func "Set" -args $'' -args $'' -gas-fee 1000000ugnot -gas-wanted 1_000_000_000 -send "" -chainid "dev" -remote "https://api.gno.berty.io:443" ADDRESSgnokey query -remote "https://api.gno.berty.io:443" auth/accounts/ADDRESS
gnokey maketx call -pkgpath "gno.land/r/archive/keystore" -func "Set" -args $'' -args $'' -gas-fee 1000000ugnot -gas-wanted 1_000_000_000 -send "" -broadcast=false ADDRESS > call.tx
gnokey sign -tx-path call.tx -chainid "dev" -account-number ACCOUNTNUMBER -account-sequence SEQUENCENUMBER ADDRESS
gnokey broadcast -remote "https://api.gno.berty.io:443" call.tx
Size returns size of database read-only
gnokey query vm/qeval -remote "https://api.gno.berty.io:443" -data "gno.land/r/archive/keystore.Size()"