Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

params state

Back to all declarations

DelegateSetEvent

untyped string

Event names. PascalCase with a named const is the house style across r/sys and r/gov; the bare lowercase "set" elsewhere in this realm predates it.

Value

"ParamDelegateSet"

DelegateClearedEvent

untyped string

Event names. PascalCase with a named const is the house style across r/sys and r/gov; the bare lowercase "set" elsewhere in this realm predates it.

Value

"ParamDelegateCleared"

DelegateWriteEvent

untyped string

Event names. PascalCase with a named const is the house style across r/sys and r/gov; the bare lowercase "set" elsewhere in this realm predates it.

Value

"ParamDelegateWrite"

assertDelegate

func(int, rlm .uverse.realm, want string, subject string)

assertDelegate authorizes a caller as the holder of a delegated capability. want is the authorized package path, or "" when nothing is delegated. The empty check comes FIRST and is load-bearing, not defensive. A direct call from a user account has an empty previous package path — that is exactly what IsUserCall tests — so comparing against an unset slot would compare "" to "" and admit every user on the chain. r/gov/dao's own allowlist has the mirror-image bug (it returns true for everyone when the list is empty), kept there deliberately for genesis bootstrap. Nothing here needs that, so empty denies. Matching is exact, never a prefix. A sub-realm identity minted by cur.Sub(subpath) presents the synthesized path "host#subpath", so a delegate may legitimately be a single DAO hosted by a multi-tenant realm — for instance "gno.land/r/nt/commondao/v0#dao/42". An anchored-prefix match on the host would hand the capability to every DAO that realm hosts, and a bare prefix match would additionally match sibling packages. "#" cannot occur in a real package path, so exact matching on the full string is unambiguous. Takes rlm in the non-crossing dispatch position, matching assertValsetCaller so the two gates stay one shape. subject names what is being written, so the refusal stays specific to the capability rather than generic to the mechanism. params\_valset\_auth.txtar pins valset's exact wording as a regression test for PR #5485.

Open
OID
03ed0f…5f68:3
assertDelegate details

Inspect func

assertDelegatePath

func(pkgpath string)

assertDelegatePath rejects package paths that must never be stored in a delegation slot, at the point a proposal is built rather than when it executes. Rejecting the empty string is the same fail-open guard as in assertDelegate, enforced on the way in as well so an accidental clear-by-empty-set cannot be mistaken for a grant. Requiring the gno.land/r/ prefix excludes user accounts (empty path), pure packages, and ephemeral \`maketx run\` realms — the last of which matters because a run realm's path is non-empty, so a check based on "is this code" would let one through.

Open
OID
03ed0f…5f68:5
assertDelegatePath details

Inspect func

countByte

func(s string, b uint8) int
Open
OID
03ed0f…5f68:6
countByte details

Inspect func

realmPathPrefix

untyped string

Value

"gno.land/r/"

isRealmPath

func(pkgpath string) bool
Open
OID
03ed0f…5f68:7
isRealmPath details

Inspect func

newDelegateProposal

func(event string, key string, to string, title string, desc string, apply func(...)) dao.ProposalRequest

newDelegateProposal builds the GovDAO proposal that applies a delegation change. apply mutates the slot and is run only when the vote passes. event is emitted from inside the executor, so an observer sees the delegation change exactly when it takes effect rather than when it was proposed. from is the previous holder ("" when none), included so a re-delegation is auditable from the single event without reading prior state. apply returns the holder it replaced, read at EXECUTION time. Capturing that at creation would misreport a re-delegation: two set-proposals created while the slot is empty, then executed in sequence, would both emit from="" even though the second replaced the first.

Open
OID
03ed0f…5f68:8
newDelegateProposal details

Inspect func

NewSetFeeCollectorRequest

func(addr .uverse.address) dao.ProposalRequest
Open
OID
03ed0f…5f68:9
NewSetFeeCollectorRequest details

Inspect func

nodeModulePrefix

untyped string

Value

"node"

haltHeightKey

untyped string

Value

"halt_height"

haltMinVersionKey

untyped string

Value

"halt_min_version"

NewSetHaltRequest

func(height int64, minVersion string) dao.ProposalRequest

NewSetHaltRequest creates a GovDAO proposal to halt all chain nodes at the given block height. Once approved and executed, nodes will gracefully stop after committing the specified block, enabling coordinated chain upgrades. minVersion, if non-empty, sets the minimum binary version required to resume after the halt. Nodes will refuse to restart unless their version satisfies the minimum requirement, preventing old binaries from accidentally resuming a chain halted for an upgrade. Example: minVersion="chain/gnoland1.1" prevents gnoland1.0 from resuming. Use height=0 to cancel a previously scheduled halt.

Open
OID
03ed0f…5f68:11
NewSetHaltRequest details

Inspect func

syskey

func(module string, submodule string, name string) string

this is only used for emitting events.

Open
OID
03ed0f…5f68:13
syskey details

Inspect func

assertNotValsetKey

func(module string, submodule string)

assertNotValsetKey rejects governance proposals that target the node:valset:\* key family. Those keys are reserved for the realm-side gate in r/sys/params/valset.gno (SetValsetProposal) which checks the immediate caller is gno.land/r/sys/validators/v3. Without this guard, a generic NewSysParam\*PropRequest("node","valset",...) would let any GovDAO supermajority bypass the v3 authorization and write validator-set state directly.

Open
OID
03ed0f…5f68:15
assertNotValsetKey details

Inspect func

assertNotRunSubmittersKey

func(module string, submodule string, name string)

assertNotRunSubmittersKey rejects generic proposals that target vm:p:run\_submitters. Same shape as assertNotValsetKey above, and the same reason: the key has a realm-side gate the generic factory would walk past. An empty run\_submitters means the MsgRun gate is OFF. So a non-empty list is the chain deciding who may run code, and a list that names nobody able to create a GovDAO proposal cannot be changed back -- creating a proposal needs MsgRun, because a ProposalRequest carries an Executor that MsgCall cannot build from string arguments. The dedicated ProposeSetRunSubmitters in run\_submitters.gno refuses that list at proposal-creation time, where a human can still act on the refusal. Reserving the key rather than adding the check to all nine factories keeps the number of ways to write this parameter at one.

Open
OID
03ed0f…5f68:16
assertNotRunSubmittersKey details

Inspect func

NewSysParamStringPropRequest

func(module string, submodule string, name string, value string) dao.ProposalRequest
Open
OID
03ed0f…5f68:17
NewSysParamStringPropRequest details

Inspect func

NewSysParamInt64PropRequest

func(module string, submodule string, name string, value int64) dao.ProposalRequest
Open
OID
03ed0f…5f68:18
NewSysParamInt64PropRequest details

Inspect func

NewSysParamUint64PropRequest

func(module string, submodule string, name string, value uint64) dao.ProposalRequest
Open
OID
03ed0f…5f68:19
NewSysParamUint64PropRequest details

Inspect func

NewSysParamBoolPropRequest

func(module string, submodule string, name string, value bool) dao.ProposalRequest
Open
OID
03ed0f…5f68:20
NewSysParamBoolPropRequest details

Inspect func

NewSysParamBytesPropRequest

func(module string, submodule string, name string, value []uint8) dao.ProposalRequest
Open
OID
03ed0f…5f68:21
NewSysParamBytesPropRequest details

Inspect func

NewSysParamStringsPropRequest

func(module string, submodule string, name string, value []string) dao.ProposalRequest
Open
OID
03ed0f…5f68:22
NewSysParamStringsPropRequest details

Inspect func

NewSysParamStringsPropRequestWithTitle

func(module string, submodule string, name string, title string, value []string) dao.ProposalRequest
Open
OID
03ed0f…5f68:23
NewSysParamStringsPropRequestWithTitle details

Inspect func

NewSysParamStringsPropRequestAddWithTitle

func(module string, submodule string, name string, title string, value []string) dao.ProposalRequest
Open
OID
03ed0f…5f68:24
NewSysParamStringsPropRequestAddWithTitle details

Inspect func

NewSysParamStringsPropRequestRemoveWithTitle

func(module string, submodule string, name string, title string, value []string) dao.ProposalRequest
Open
OID
03ed0f…5f68:25
NewSysParamStringsPropRequestRemoveWithTitle details

Inspect func

newPropRequest

func(module string, submodule string, name string, fn func(...), title string) dao.ProposalRequest
Open
OID
03ed0f…5f68:26
newPropRequest details

Inspect func

Render

func(path string) string

Render shows who, other than GovDAO, may currently write a chain parameter. This realm had no Render, so the only way to see a delegation was to know it existed and query for it by name. That is the wrong shape for state that grants a capability: someone auditing the chain should be able to see, in one place, whether any parameter is delegated and to whom. Values are rendered without escaping, which is safe here because none of them is free-form. A delegate path has passed assertDelegatePath, which permits only lowercase letters, digits and a few separators; the addresses come from the parameter itself, which the chain validates as bech32; and the valset realm is a compile-time constant.

Open
OID
03ed0f…5f68:27
Render details

Inspect func

vmModulePrefix

untyped string

Value

"vm"

vmParamsSubmodule

untyped string

Value

"p"

runSubmittersKey

untyped string

Value

"run_submitters"

runSubmittersMgr

string

runSubmittersMgr is the package path authorized to manage run\_submitters. Empty means the capability is not delegated, and empty must deny — see assertDelegate.

Value

""

runSubmittersGrants

addrset.Set

runSubmittersGrants records which addresses the current delegate added, so removal can be scoped to its own grants. The parameter is the source of truth and this is a side table, so the two can disagree — genesis, \`gnogenesis params set\`, or any future direct keeper write produces entries with no grant recorded. That direction is safe: an unrecorded address is simply not removable by the delegate, which is the conservative answer. Cleared whenever the delegation changes hands, so a new delegate never inherits authority over its predecessor's grants.

Open
OID
03ed0f…5f68:31
runSubmittersGrants details

Inspect ref

RunSubmittersManager

func() string

RunSubmittersManager returns the package path currently authorized to manage run\_submitters, or "" when the capability is not delegated.

Open
OID
03ed0f…5f68:33
RunSubmittersManager details

Inspect func

RunSubmittersGrantedBy

func(addr .uverse.address) bool

RunSubmittersGrantedBy reports whether the current delegate added addr, i.e. whether it may remove it. Exposed so a delegate can check before acting. A delegate that discovers a refusal by panicking mid-proposal-execution is in a bad place: the panic aborts the transaction, and for a DAO whose proposal has already passed, every retry aborts the same way.

Open
OID
03ed0f…5f68:35
RunSubmittersGrantedBy details

Inspect func

IsRunSubmittersDelegate

func(pkgpath string) bool

IsRunSubmittersDelegate reports whether pkgpath currently holds the capability. Pure predicate, for a caller that wants to fail cleanly rather than be panicked at.

Open
OID
03ed0f…5f68:36
IsRunSubmittersDelegate details

Inspect func

ProposeSetRunSubmittersManager

func(pkgpath string) dao.ProposalRequest

ProposeSetRunSubmittersManager creates a GovDAO proposal handing management of run\_submitters to pkgpath. pkgpath may be a sub-realm identity such as "gno.land/r/nt/commondao/v0#dao/42", which is how a single DAO hosted by a multi-tenant realm is named. Matching is exact, so naming the bare host would authorize the host itself and none of its DAOs.

Open
OID
03ed0f…5f68:37
ProposeSetRunSubmittersManager details

Inspect func

ProposeClearRunSubmittersManager

func() dao.ProposalRequest

ProposeClearRunSubmittersManager creates a GovDAO proposal revoking the delegation. Revocation is immediate on execution because the slot is consulted on every call. It deliberately does NOT remove addresses the delegate added: sweeping them would make the executed effect invisible at vote time, and would silently remove nothing whenever the grant record had drifted. Use the existing whole-list setter to reset the list to a reviewed value.

Open
OID
03ed0f…5f68:38
ProposeClearRunSubmittersManager details

Inspect func

AddRunSubmitters

func(addrs []string)

AddRunSubmitters adds addresses to the run\_submitters allowlist. Callable only by the delegated manager. Addresses already present are a no-op (UpdateSysParamStrings dedupes), and the chain still validates every entry and enforces the list-length cap, because the update re-sets the whole list.

Open
OID
03ed0f…5f68:39
AddRunSubmitters details

Inspect func

RemoveRunSubmitters

func(addrs []string)

RemoveRunSubmitters removes addresses from the run\_submitters allowlist. Callable only by the delegated manager, and only for addresses that manager added. Refusing rather than silently skipping is deliberate: a partial removal that reported success would leave the caller believing an address was de-listed when it was not.

Open
OID
03ed0f…5f68:40
RemoveRunSubmitters details

Inspect func

GetRunSubmitters

func() []string

GetRunSubmitters returns the current allowlist.

Open
OID
03ed0f…5f68:41
GetRunSubmitters details

Inspect func

ProposeSetRunSubmitters

func(addrs []string) dao.ProposalRequest

ProposeSetRunSubmitters creates a GovDAO proposal replacing the whole run\_submitters allowlist. This is the only way to set the list by vote: the generic factories refuse the key (see assertNotRunSubmittersKey), so every whole-list write comes through here and carries the rule below. The proposer must be on the list they propose. An empty run\_submitters means the gate is off and anyone may MsgRun. A non-empty one therefore decides who may run code at all -- and a list naming nobody who can create a GovDAO proposal cannot be undone, because creating a proposal needs MsgRun: a ProposalRequest carries an Executor, and MsgCall cannot build one from string arguments. The vote would end governance. Requiring the proposer's own address is a cheap way to prove the list is usable rather than merely plausible. GovDAO refuses a proposal from a non-member (PreCreateProposal, "only members can create new proposals"), so if this proposal exists at all its author is a member -- and they just signed the transaction that created it, so the address demonstrably holds a key. A list that merely NAMES a member proves neither: the address may belong to nobody, since any member can enroll an arbitrary address. Checked here, at proposal creation, rather than inside the executor. Nothing in r/gov/dao recovers from an executor panic, so a check that fires at execution turns a passed proposal into one that can never be executed. Here the refusal reaches a person who can still fix the list and propose again. This is a floor, not an invariant. The proposer may resign from GovDAO later, and the list is not re-checked when they do. It rules out arriving at a dead list in one vote; it cannot rule out drifting into one.

Open
OID
03ed0f…5f68:42
ProposeSetRunSubmitters details

Inspect func

setRunSubmitters

func(addrs []string)

setRunSubmitters replaces the whole allowlist. SetSysParamStrings, not UpdateSysParamStrings: Update with add=true appends non-duplicates onto what is already there, so it can never remove an address or empty the list. This realm reserves the key from the generic factories, so this is the only route by vote -- if it appended, the parameter would be append-only chain-wide, a compromised address could never be de-listed, and the gate could never be turned back off. A named function rather than the executor's body inline, so a test can reach it: a closure held in a ProposalRequest cannot be called from outside.

Open
OID
03ed0f…5f68:43
setRunSubmitters details

Inspect func

bankModulePrefix

untyped string

Value

"bank"

restrictedDenomsKey

untyped string

Value

"restricted_denoms"

unlockTransferTitle

untyped string

Value

"Proposal to unlock the transfer of ugnot."

lockTransferTitle

untyped string

Value

"Proposal to lock the transfer of ugnot."

authModulePrefix

untyped string

Value

"auth"

unrestrictedAddrsKey

untyped string

Value

"unrestricted_addrs"

ProposeUnlockTransferRequest

func() dao.ProposalRequest
Open
OID
03ed0f…5f68:44
ProposeUnlockTransferRequest details

Inspect func

ProposeLockTransferRequest

func() dao.ProposalRequest
Open
OID
03ed0f…5f68:46
ProposeLockTransferRequest details

Inspect func

ProposeAddUnrestrictedAcctsRequest

func(addrs [].uverse.address) dao.ProposalRequest
Open
OID
03ed0f…5f68:47
ProposeAddUnrestrictedAcctsRequest details

Inspect func

ProposeRemoveUnrestrictedAcctsRequest

func(addrs [].uverse.address) dao.ProposalRequest
Open
OID
03ed0f…5f68:48
ProposeRemoveUnrestrictedAcctsRequest details

Inspect func

valoperSubmodule

untyped string

Valoper sys-param keys consumed by r/gnops/valopers (Register + UpdateSigningKey). Governance can update them via the generic NewSysParam\*PropRequest factories — no realm-side gate is needed because the values only affect fees and throttle inside valopers.

Value

"valoper"

valoperRegisterFeeKey

untyped string

Valoper sys-param keys consumed by r/gnops/valopers (Register + UpdateSigningKey). Governance can update them via the generic NewSysParam\*PropRequest factories — no realm-side gate is needed because the values only affect fees and throttle inside valopers.

Value

"register_fee"

valoperRotationFeeKey

untyped string

Valoper sys-param keys consumed by r/gnops/valopers (Register + UpdateSigningKey). Governance can update them via the generic NewSysParam\*PropRequest factories — no realm-side gate is needed because the values only affect fees and throttle inside valopers.

Value

"rotation_fee"

valoperRotationPeriodBlocksKey

untyped string

Valoper sys-param keys consumed by r/gnops/valopers (Register + UpdateSigningKey). Governance can update them via the generic NewSysParam\*PropRequest factories — no realm-side gate is needed because the values only affect fees and throttle inside valopers.

Value

"rotation_period_blocks"

defaultValoperRegisterFee

uint64

Default values used when the sys-param has never been set by governance. Zero fees (GNOT transfers are disabled chain-wide pre-fork) and a ~1-hour throttle at 6s/block.

Value

0

defaultValoperRotationFee

uint64

Default values used when the sys-param has never been set by governance. Zero fees (GNOT transfers are disabled chain-wide pre-fork) and a ~1-hour throttle at 6s/block.

Value

0

defaultValoperRotationPeriodBlocks

int64

Default values used when the sys-param has never been set by governance. Zero fees (GNOT transfers are disabled chain-wide pre-fork) and a ~1-hour throttle at 6s/block.

Value

600

GetValoperRegisterFee

func() uint64

GetValoperRegisterFee returns the fee (in ugnot) required to call valopers.Register. Defaults to 0 if governance hasn't set it.

Open
OID
03ed0f…5f68:49
GetValoperRegisterFee details

Inspect func

GetValoperRotationFee

func() uint64

GetValoperRotationFee returns the fee (in ugnot) required to call valopers.UpdateSigningKey. Defaults to 0.

Open
OID
03ed0f…5f68:51
GetValoperRotationFee details

Inspect func

GetValoperRotationPeriodBlocks

func() int64

GetValoperRotationPeriodBlocks returns the per-operator rotation throttle (in blocks). Defaults to ~1h worth at 6s/block (600). This is the primary anti-spam defense pre-fee while rotation\_fee stays at 0; tightens further once non-zero fees become enforceable.

Open
OID
03ed0f…5f68:52
GetValoperRotationPeriodBlocks details

Inspect func

valsetSubmodule

untyped string

Param keys read by gno.land/pkg/gnoland (EndBlocker). Keep in sync with gno.land/pkg/gnoland/node\_params.go. nodeModulePrefix is declared in halt.gno (same package).

Value

"valset"

valsetDirtyKey

untyped string

Param keys read by gno.land/pkg/gnoland (EndBlocker). Keep in sync with gno.land/pkg/gnoland/node\_params.go. nodeModulePrefix is declared in halt.gno (same package).

Value

"dirty"

valsetProposedKey

untyped string

Param keys read by gno.land/pkg/gnoland (EndBlocker). Keep in sync with gno.land/pkg/gnoland/node\_params.go. nodeModulePrefix is declared in halt.gno (same package).

Value

"proposed"

valsetCurrentKey

untyped string

Param keys read by gno.land/pkg/gnoland (EndBlocker). Keep in sync with gno.land/pkg/gnoland/node\_params.go. nodeModulePrefix is declared in halt.gno (same package).

Value

"current"

valsetPubKeyTypesKey

untyped string

Param keys read by gno.land/pkg/gnoland (EndBlocker). Keep in sync with gno.land/pkg/gnoland/node\_params.go. nodeModulePrefix is declared in halt.gno (same package).

Value

"pubkey_types"

valsetAuthorizedRealm

untyped string

Param keys read by gno.land/pkg/gnoland (EndBlocker). Keep in sync with gno.land/pkg/gnoland/node\_params.go. nodeModulePrefix is declared in halt.gno (same package).

Value

"gno.land/r/sys/validators/v3"

SetValsetProposal

func(entries []string)

SetValsetProposal publishes the realm's desired valset. Each entry is "\<bech32-pubkey>:\<decimal-power>"; power=0 removes the validator. The chain reads this on the next EndBlocker, diffs it against valset:current, and propagates the changes to consensus.

Open
OID
03ed0f…5f68:53
SetValsetProposal details

Inspect func

GetValsetEntries

func() []validators.Validator

GetValsetEntries returns the chain's authoritative committed validator set (the contents of valset:current). This is the V\_{H+2} view — the set that will be active at H+2 once the most recent EndBlock's updates apply, NOT the set signing the current block. Callers that want "what v3 reports as the current validator set" — including the in-flight proposed set during the dirty window — should call GetValsetEffective instead.

Open
OID
03ed0f…5f68:55
GetValsetEntries details

Inspect func

ValsetDirty

func() bool

ValsetDirty reports whether valset:proposed is awaiting EndBlocker. Realm callers MUST treat this as transient: the dirty flag is set by SetValsetProposal and cleared by the chain's EndBlocker (every block where dirty=true on entry exits with dirty=false).

Open
OID
03ed0f…5f68:56
ValsetDirty details

Inspect func

GetValsetEffective

func() []validators.Validator

GetValsetEffective returns the set that WILL be active at H+2: valset:proposed if dirty, else valset:current. Used by v3 so that (a) reads after a same-block proposal callback see that proposal's effects, and (b) sequential same-block proposals accumulate correctly on top of each other. Misuse warning: this exists for r/sys/validators/v3's internal reads. Other realms making "is X a validator" decisions should call v3.IsValidator, not this directly, so future changes to v3's read semantics propagate uniformly.

Open
OID
03ed0f…5f68:57
GetValsetEffective details

Inspect func

parseValsetSlot

func(key string) []validators.Validator
Open
OID
03ed0f…5f68:58
parseValsetSlot details

Inspect func

parseEntry

func(entry string) (validators.Validator, .uverse.error)

parseEntry splits "\<bech32-pubkey>:\<decimal-power>" and derives the validator address via the chain.PubKeyAddress native helper.

Open
OID
03ed0f…5f68:59
parseEntry details

Inspect func

GetValsetPubKeyTypes

func() []string

GetValsetPubKeyTypes returns the validator pubkey-type allow-list mirrored from consensus params (empty means accept any).

Open
OID
03ed0f…5f68:60
GetValsetPubKeyTypes details

Inspect func

assertValsetCaller

func(int, rlm .uverse.realm)

assertValsetCaller authorizes the one realm permitted to write valset params. Delegates to assertDelegate (see delegate.gno) so this realm has exactly one authorized-caller gate rather than two that can drift. The distinction that remains is deliberate and is NOT expressible through a delegation slot: this authorization is a compile-time const, so re-pointing it requires a chain relaunch, and assertNotValsetKey locks GovDAO out of the key family entirely. A vote-settable slot would let one supermajority re-point the valset writer at an arbitrary realm and bypass v3's valoper-existence check, its KeepRunning opt-out, and execution-time pubkey re-resolution.

Open
OID
03ed0f…5f68:61
assertValsetCaller details

Inspect func
DelegateSetEvent : untyped string ="ParamDelegateSet"
DelegateClearedEvent : untyped string ="ParamDelegateCleared"
DelegateWriteEvent : untyped string ="ParamDelegateWrite"
assertDelegate : func(int, rlm .uverse.realm, want string, subject string) Inspect
assertDelegatePath : func(pkgpath string) Inspect
countByte : func(s string, b uint8) int Inspect
realmPathPrefix : untyped string ="gno.land/r/"
isRealmPath : func(pkgpath string) bool Inspect
newDelegateProposal : func(event string, key string, to string, title string, desc string, apply func(...)) dao.ProposalRequest Inspect
NewSetFeeCollectorRequest : func(addr .uverse.address) dao.ProposalRequest Inspect
nodeModulePrefix : untyped string ="node"
haltHeightKey : untyped string ="halt_height"
haltMinVersionKey : untyped string ="halt_min_version"
NewSetHaltRequest : func(height int64, minVersion string) dao.ProposalRequest Inspect
syskey : func(module string, submodule string, name string) string Inspect
assertNotValsetKey : func(module string, submodule string) Inspect
assertNotRunSubmittersKey : func(module string, submodule string, name string) Inspect
NewSysParamStringPropRequest : func(module string, submodule string, name string, value string) dao.ProposalRequest Inspect
NewSysParamInt64PropRequest : func(module string, submodule string, name string, value int64) dao.ProposalRequest Inspect
NewSysParamUint64PropRequest : func(module string, submodule string, name string, value uint64) dao.ProposalRequest Inspect
NewSysParamBoolPropRequest : func(module string, submodule string, name string, value bool) dao.ProposalRequest Inspect
NewSysParamBytesPropRequest : func(module string, submodule string, name string, value []uint8) dao.ProposalRequest Inspect
NewSysParamStringsPropRequest : func(module string, submodule string, name string, value []string) dao.ProposalRequest Inspect
NewSysParamStringsPropRequestWithTitle : func(module string, submodule string, name string, title string, value []string) dao.ProposalRequest Inspect
NewSysParamStringsPropRequestAddWithTitle : func(module string, submodule string, name string, title string, value []string) dao.ProposalRequest Inspect
NewSysParamStringsPropRequestRemoveWithTitle : func(module string, submodule string, name string, title string, value []string) dao.ProposalRequest Inspect
newPropRequest : func(module string, submodule string, name string, fn func(...), title string) dao.ProposalRequest Inspect
Render : func(path string) string Inspect
vmModulePrefix : untyped string ="vm"
vmParamsSubmodule : untyped string ="p"
runSubmittersKey : untyped string ="run_submitters"
runSubmittersMgr : string =""
runSubmittersGrants : addrset.Set Inspect
RunSubmittersManager : func() string Inspect
RunSubmittersGrantedBy : func(addr .uverse.address) bool Inspect
IsRunSubmittersDelegate : func(pkgpath string) bool Inspect
ProposeSetRunSubmittersManager : func(pkgpath string) dao.ProposalRequest Inspect
ProposeClearRunSubmittersManager : func() dao.ProposalRequest Inspect
AddRunSubmitters : func(addrs []string) Inspect
RemoveRunSubmitters : func(addrs []string) Inspect
GetRunSubmitters : func() []string Inspect
ProposeSetRunSubmitters : func(addrs []string) dao.ProposalRequest Inspect
setRunSubmitters : func(addrs []string) Inspect
bankModulePrefix : untyped string ="bank"
restrictedDenomsKey : untyped string ="restricted_denoms"
unlockTransferTitle : untyped string ="Proposal to unlock the transfer of ugnot."
lockTransferTitle : untyped string ="Proposal to lock the transfer of ugnot."
authModulePrefix : untyped string ="auth"
unrestrictedAddrsKey : untyped string ="unrestricted_addrs"
ProposeUnlockTransferRequest : func() dao.ProposalRequest Inspect
ProposeLockTransferRequest : func() dao.ProposalRequest Inspect
ProposeAddUnrestrictedAcctsRequest : func(addrs [].uverse.address) dao.ProposalRequest Inspect
ProposeRemoveUnrestrictedAcctsRequest : func(addrs [].uverse.address) dao.ProposalRequest Inspect
valoperSubmodule : untyped string ="valoper"
valoperRegisterFeeKey : untyped string ="register_fee"
valoperRotationFeeKey : untyped string ="rotation_fee"
valoperRotationPeriodBlocksKey : untyped string ="rotation_period_blocks"
defaultValoperRegisterFee : uint64 =0
defaultValoperRotationFee : uint64 =0
defaultValoperRotationPeriodBlocks : int64 =600
GetValoperRegisterFee : func() uint64 Inspect
GetValoperRotationFee : func() uint64 Inspect
GetValoperRotationPeriodBlocks : func() int64 Inspect
valsetSubmodule : untyped string ="valset"
valsetDirtyKey : untyped string ="dirty"
valsetProposedKey : untyped string ="proposed"
valsetCurrentKey : untyped string ="current"
valsetPubKeyTypesKey : untyped string ="pubkey_types"
valsetAuthorizedRealm : untyped string ="gno.land/r/sys/validators/v3"
SetValsetProposal : func(entries []string) Inspect
GetValsetEntries : func() []validators.Validator Inspect
ValsetDirty : func() bool Inspect
GetValsetEffective : func() []validators.Validator Inspect
parseValsetSlot : func(key string) []validators.Validator Inspect
parseEntry : func(entry string) (validators.Validator, .uverse.error) Inspect
GetValsetPubKeyTypes : func() []string Inspect
assertValsetCaller : func(int, rlm .uverse.realm) Inspect