governance

package
v0.7.0-alpha.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 15, 2023 License: Apache-2.0 Imports: 16 Imported by: 2

Documentation

Overview

in the blocklog core contract the VM keeps indices of blocks and requests in an optimized way for fast checking and timestamp access.

Index

Constants

View Source
const (
	ChangeAccessNodeActionRemove = ChangeAccessNodeAction(iota)
	ChangeAccessNodeActionAccept
	ChangeAccessNodeActionDrop
)
View Source
const (
	// state controller
	StateVarAllowedStateControllerAddresses = "a"
	StateVarRotateToAddress                 = "r"

	// chain owner
	VarChainOwnerID          = "o"
	VarChainOwnerIDDelegated = "n"

	// gas
	VarGasFeePolicyBytes = "g"
	VarGasLimitsBytes    = "l"

	// access nodes
	VarAccessNodes          = "an"
	VarAccessNodeCandidates = "ac"

	// maintenance
	VarMaintenanceStatus = "m"

	// L2 metadata (provided by the webapi, located by the public url)
	VarMetadata = "md"

	// L1 metadata (stored and provided in the tangle)
	VarPublicURL = "x"

	// state pruning
	VarBlockKeepAmount = "b"
)

state variables

View Source
const (
	// state controller
	ParamStateControllerAddress          = coreutil.ParamStateControllerAddress
	ParamAllowedStateControllerAddresses = "a"

	// chain owner
	ParamChainOwner = "o"

	// gas
	ParamFeePolicyBytes = "g"
	ParamEVMGasRatio    = "e"
	ParamGasLimitsBytes = "l"

	// chain info
	ParamChainID = "c"

	ParamGetChainNodesAccessNodeCandidates = "an"
	ParamGetChainNodesAccessNodes          = "ac"

	// access nodes: addCandidateNode
	ParamAccessNodeInfoForCommittee = "i"
	ParamAccessNodeInfoPubKey       = "ip"
	ParamAccessNodeInfoCertificate  = "ic"
	ParamAccessNodeInfoAccessAPI    = "ia"

	// access nodes: changeAccessNodes
	ParamChangeAccessNodesActions = "n"

	// public chain metadata (provided by the webapi, located by the public url)
	ParamMetadata = "md"

	// L1 metadata (stored and provided in the tangle)
	ParamPublicURL = "x"

	// state pruning
	ParamBlockKeepAmount   = "b"
	BlockKeepAll           = -1
	BlockKeepAmountDefault = 10_000
)

params

Variables

View Source
var (
	// state controller (entity that owns the state output via AliasAddress)
	FuncRotateStateController               = coreutil.Func(coreutil.CoreEPRotateStateController)
	FuncAddAllowedStateControllerAddress    = coreutil.Func("addAllowedStateControllerAddress")
	FuncRemoveAllowedStateControllerAddress = coreutil.Func("removeAllowedStateControllerAddress")
	ViewGetAllowedStateControllerAddresses  = coreutil.ViewFunc("getAllowedStateControllerAddresses")

	// chain owner (L1 entity that is the "owner of the chain")
	FuncClaimChainOwnership    = coreutil.Func("claimChainOwnership")
	FuncDelegateChainOwnership = coreutil.Func("delegateChainOwnership")
	ViewGetChainOwner          = coreutil.ViewFunc("getChainOwner")

	// gas
	FuncSetFeePolicy = coreutil.Func("setFeePolicy")
	ViewGetFeePolicy = coreutil.ViewFunc("getFeePolicy")
	FuncSetGasLimits = coreutil.Func("setGasLimits")
	ViewGetGasLimits = coreutil.ViewFunc("getGasLimits")

	// evm fees
	FuncSetEVMGasRatio = coreutil.Func("setEVMGasRatio")
	ViewGetEVMGasRatio = coreutil.ViewFunc("getEVMGasRatio")

	// chain info
	ViewGetChainInfo = coreutil.ViewFunc("getChainInfo")

	// access nodes
	FuncAddCandidateNode  = coreutil.Func("addCandidateNode")
	FuncRevokeAccessNode  = coreutil.Func("revokeAccessNode")
	FuncChangeAccessNodes = coreutil.Func("changeAccessNodes")
	ViewGetChainNodes     = coreutil.ViewFunc("getChainNodes")

	// maintenance
	FuncStartMaintenance     = coreutil.Func("startMaintenance")
	FuncStopMaintenance      = coreutil.Func("stopMaintenance")
	ViewGetMaintenanceStatus = coreutil.ViewFunc("getMaintenanceStatus")

	// public chain metadata
	FuncSetMetadata = coreutil.Func("setMetadata")
	ViewGetMetadata = coreutil.ViewFunc("getMetadata")
)
View Source
var Contract = coreutil.NewContract(coreutil.CoreContractGovernance, "Governance contract")

Functions

func AccessNodeCandidatesMap added in v1.0.3

func AccessNodeCandidatesMap(state kv.KVStore) *collections.Map

func AccessNodeCandidatesMapR added in v1.0.3

func AccessNodeCandidatesMapR(state kv.KVStoreReader) *collections.ImmutableMap

func AccessNodesMap added in v1.0.3

func AccessNodesMap(state kv.KVStore) *collections.Map

func AccessNodesMapR added in v1.0.3

func AccessNodesMapR(state kv.KVStoreReader) *collections.ImmutableMap

func GetBlockKeepAmount added in v1.0.3

func GetBlockKeepAmount(state kv.KVStoreReader) int32

func GetChainInfo added in v0.3.0

func GetChainInfo(state kv.KVStoreReader, chainID isc.ChainID) (*isc.ChainInfo, error)

GetChainInfo returns global variables of the chain

func GetGasFeePolicy added in v0.3.0

func GetGasFeePolicy(state kv.KVStoreReader) (*gas.FeePolicy, error)

GetGasFeePolicy returns gas policy from the state

func GetGasLimits added in v1.0.3

func GetGasLimits(state kv.KVStoreReader) (*gas.Limits, error)

func GetMetadata added in v1.0.3

func GetMetadata(state kv.KVStoreReader) (*isc.PublicChainMetadata, error)

func GetPublicURL added in v1.0.3

func GetPublicURL(state kv.KVStoreReader) (string, error)

func GetRotationAddress

func GetRotationAddress(state kv.KVStoreReader) iotago.Address

GetRotationAddress tries to read the state of 'governance' and extract rotation address If succeeds, it means this block is fake. If fails, return nil

func MustGetChainInfo

func MustGetChainInfo(state kv.KVStoreReader, chainID isc.ChainID) *isc.ChainInfo

MustGetChainInfo return global variables of the chain

func MustGetGasFeePolicy added in v0.3.0

func MustGetGasFeePolicy(state kv.KVStoreReader) *gas.FeePolicy

func MustGetGasLimits added in v1.0.3

func MustGetGasLimits(state kv.KVStoreReader) *gas.Limits

func MustGetMetadata added in v1.0.3

func MustGetMetadata(state kv.KVStoreReader) *isc.PublicChainMetadata

func SetMetadata added in v1.0.3

func SetMetadata(state kv.KVStore, metadata *isc.PublicChainMetadata)

func SetPublicURL added in v1.0.3

func SetPublicURL(state kv.KVStore, url string)

Types

type AccessNodeInfo added in v0.2.3

type AccessNodeInfo struct {
	NodePubKey    []byte // Public Key of the node. Stored as a key in the SC State and Params.
	ValidatorAddr []byte // Address of the validator owning the node. Not sent via parameters.
	Certificate   []byte // Proof that Validator owns the Node.
	ForCommittee  bool   // true, if Node should be a candidate to a committee.
	AccessAPI     string // API URL, if any.
}

AccessNodeInfo conveys all the information that is maintained on the governance SC about a specific node.

func AccessNodeInfoFromAddCandidateNodeParams added in v1.0.3

func AccessNodeInfoFromAddCandidateNodeParams(ctx isc.Sandbox) *AccessNodeInfo

func AccessNodeInfoFromBytes added in v1.0.3

func AccessNodeInfoFromBytes(pubKey, data []byte) (*AccessNodeInfo, error)

func AccessNodeInfoFromRevokeAccessNodeParams added in v1.0.3

func AccessNodeInfoFromRevokeAccessNodeParams(ctx isc.Sandbox) *AccessNodeInfo

func AccessNodeInfoListFromMap

func AccessNodeInfoListFromMap(infoMap *collections.ImmutableMap) ([]*AccessNodeInfo, error)

func (*AccessNodeInfo) AddCertificate added in v0.2.3

func (a *AccessNodeInfo) AddCertificate(nodeKeyPair *cryptolib.KeyPair, ownerAddress iotago.Address) *AccessNodeInfo

func (*AccessNodeInfo) Bytes added in v0.2.3

func (a *AccessNodeInfo) Bytes() []byte

func (*AccessNodeInfo) ToAddCandidateNodeParams added in v0.2.3

func (a *AccessNodeInfo) ToAddCandidateNodeParams() dict.Dict

func (*AccessNodeInfo) ToRevokeAccessNodeParams added in v0.2.3

func (a *AccessNodeInfo) ToRevokeAccessNodeParams() dict.Dict

func (*AccessNodeInfo) ValidateCertificate added in v0.2.3

func (a *AccessNodeInfo) ValidateCertificate(ctx isc.Sandbox) bool

type ChangeAccessNodeAction added in v0.2.3

type ChangeAccessNodeAction byte

type ChangeAccessNodesRequest added in v0.2.3

type ChangeAccessNodesRequest struct {
	// contains filtered or unexported fields
}

func NewChangeAccessNodesRequest added in v0.2.3

func NewChangeAccessNodesRequest() *ChangeAccessNodesRequest

func (*ChangeAccessNodesRequest) Accept added in v0.2.3

func (*ChangeAccessNodesRequest) AsDict added in v0.2.3

func (req *ChangeAccessNodesRequest) AsDict() dict.Dict

func (*ChangeAccessNodesRequest) Drop added in v0.2.3

func (*ChangeAccessNodesRequest) Remove added in v0.2.3

type ContractFeesRecord

type ContractFeesRecord struct {
	// Chain owner part of the fee. If it is 0, it means chain-global default is in effect
	OwnerFee uint64
	// Validator part of the fee. If it is 0, it means chain-global default is in effect
	ValidatorFee uint64
}

ContractFeesRecord is a structure which contains the fee information for a contract

func ContractFeesRecordFromBytes

func ContractFeesRecordFromBytes(data []byte) (*ContractFeesRecord, error)

func (*ContractFeesRecord) Bytes

func (p *ContractFeesRecord) Bytes() []byte

func (*ContractFeesRecord) Read added in v1.0.3

func (p *ContractFeesRecord) Read(r io.Reader) error

func (*ContractFeesRecord) Write added in v1.0.3

func (p *ContractFeesRecord) Write(w io.Writer) error

type GetChainNodesRequest added in v0.2.3

type GetChainNodesRequest struct{}

GetChainNodesRequest

func (GetChainNodesRequest) AsDict added in v0.2.3

func (req GetChainNodesRequest) AsDict() dict.Dict

type GetChainNodesResponse added in v0.2.3

type GetChainNodesResponse struct {
	AccessNodeCandidates []*AccessNodeInfo      // Application info for the AccessNodes.
	AccessNodes          []*cryptolib.PublicKey // Public Keys of Access Nodes.
}

GetChainNodesResponse

func GetChainNodesResponseFromDict added in v1.0.3

func GetChainNodesResponseFromDict(d dict.Dict) *GetChainNodesResponse

type NodeOwnershipCertificate added in v0.2.4

type NodeOwnershipCertificate []byte

NodeOwnershipCertificate is a proof that a specified address is an owner of the specified node. It is implemented as a signature over the node pub key concatenated with the owner address.

func NewNodeOwnershipCertificate added in v0.2.4

func NewNodeOwnershipCertificate(nodeKeyPair *cryptolib.KeyPair, ownerAddress iotago.Address) NodeOwnershipCertificate

func NodeOwnershipCertificateFromBytes added in v1.0.3

func NodeOwnershipCertificateFromBytes(data []byte) NodeOwnershipCertificate

func (NodeOwnershipCertificate) Bytes added in v0.2.4

func (c NodeOwnershipCertificate) Bytes() []byte

func (NodeOwnershipCertificate) Verify added in v0.2.4

func (c NodeOwnershipCertificate) Verify(nodePubKey *cryptolib.PublicKey, ownerAddress iotago.Address) bool

type StateAccess added in v1.0.3

type StateAccess struct {
	// contains filtered or unexported fields
}

func NewStateAccess added in v1.0.3

func NewStateAccess(store kv.KVStoreReader) *StateAccess

func (*StateAccess) AccessNodes added in v1.0.3

func (sa *StateAccess) AccessNodes() []*cryptolib.PublicKey

func (*StateAccess) CandidateNodes added in v1.0.3

func (sa *StateAccess) CandidateNodes() []*AccessNodeInfo

func (*StateAccess) ChainOwnerID added in v1.0.3

func (sa *StateAccess) ChainOwnerID() isc.AgentID

func (*StateAccess) GetBlockKeepAmount added in v1.0.3

func (sa *StateAccess) GetBlockKeepAmount() int32

func (*StateAccess) MaintenanceStatus added in v1.0.3

func (sa *StateAccess) MaintenanceStatus() bool

Directories

Path Synopsis
This file provides implementation for the governance SC, the ChainNode management functions.
This file provides implementation for the governance SC, the ChainNode management functions.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL