GetReadOnlyNameStore
ExecuteGetReadOnlyNameStore exposes the name store in readonly mode
Command
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.GetReadOnlyNameStore()"
Result
GetReadOnlyNameStore exposes the name store in readonly mode
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.GetReadOnlyNameStore()"
GetReadonlyAddrStore exposes the address store in readonly mode
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.GetReadonlyAddrStore()"
ProposeControllerAdditionAndRemoval allows GovDAO to add a new caller and remove an old caller in the same proposal.
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.ProposeControllerAdditionAndRemoval(,)"
ProposeControllerRemoval allows GovDAO to add a whitelisted caller
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.ProposeControllerRemoval()"
ProposeNewController allows GovDAO to add a whitelisted caller
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.ProposeNewController()"
RegisterUser adds a new user to the system.
# 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/sys/users" -func "RegisterUser" -args $'' -args $'' -gas-fee 1000000ugnot -gas-wanted 5000000 -send "" -broadcast -chainid "dev" -remote "gnoland:26657" ADDRESSgnokey query -remote "gnoland:26657" auth/accounts/ADDRESS
gnokey maketx call -pkgpath "gno.land/r/sys/users" -func "RegisterUser" -args $'' -args $'' -gas-fee 1000000ugnot -gas-wanted 5000000 -send "" ADDRESS > call.tx
gnokey sign -tx-path call.tx -chainid "dev" -account-number ACCOUNTNUMBER -account-sequence SEQUENCENUMBER ADDRESS
gnokey broadcast -remote "gnoland:26657" call.tx
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.Render()"
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.NewErrNotWhitelisted()"
ResolveAddress returns the latest UserData of a specific user by address
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.ResolveAddress()"
ResolveAny tries to resolve any given string to \*UserData If the input is not found in the registry in any form, nil is returned
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.ResolveAny()"
ResolveName returns the latest UserData of a specific user by name or alias
gnokey query vm/qeval -remote "gnoland:26657" -data "gno.land/r/sys/users.ResolveName()"