system

package
v1.0.2 Latest Latest
Warning

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

Go to latest
Published: Mar 24, 2020 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AN = yta.AN
View Source
var ActN = yta.ActN
View Source
var PN = yta.PN

Functions

func NewBidname

func NewBidname(bidder, newname yta.AccountName, bid yta.Asset) *yta.Action

func NewBuyRAM

func NewBuyRAM(payer, receiver yta.AccountName, eosQuantity uint64) *yta.Action

func NewBuyRAMBytes

func NewBuyRAMBytes(payer, receiver yta.AccountName, bytes uint32) *yta.Action

NewBuyRAMBytes will buy at current market price a given number of bytes of RAM, and grant them to the `receiver` account.

func NewCancelDelay

func NewCancelDelay(cancelingAuth yta.PermissionLevel, transactionID yta.Checksum256) *yta.Action

NewCancelDelay creates an action from the `eosio.system` contract called `canceldelay`.

`canceldelay` allows you to cancel a deferred transaction, previously sent to the chain with a `delay_sec` larger than 0. You need to sign with cancelingAuth, to cancel a transaction signed with that same authority.

func NewClaimRewards

func NewClaimRewards(owner yta.AccountName) *yta.Action

NewClaimRewards will buy at current market price a given number of bytes of RAM, and grant them to the `receiver` account.

func NewCustomNewAccount

func NewCustomNewAccount(creator, newAccount yta.AccountName, owner, active yta.Authority) *yta.Action

NewCustomNewAccount returns a `newaccount` action that lives on the `eosio.system` contract. You can specify your own `owner` and `active` permissions.

func NewDelegateBW

func NewDelegateBW(from, receiver yta.AccountName, stakeCPU, stakeNet yta.Asset, transfer bool) *yta.Action

NewDelegateBW returns a `delegatebw` action that lives on the `eosio.system` contract.

func NewDelegatedNewAccount

func NewDelegatedNewAccount(creator, newAccount yta.AccountName, delegatedTo yta.AccountName) *yta.Action

NewDelegatedNewAccount returns a `newaccount` action that lives on the `eosio.system` contract. It is filled with an authority structure that delegates full control of the new account to an already existing account.

func NewDeleteAuth

func NewDeleteAuth(account yta.AccountName, permission yta.PermissionName) *yta.Action

NewDeleteAuth creates an action from the `eosio.system` contract called `deleteauth`.

You cannot delete the `owner` or `active` permissions. Also, if a permission is still linked through a previous `updatelink` action, you will need to `unlinkauth` first.

func NewLinkAuth

func NewLinkAuth(account, code yta.AccountName, actionName yta.ActionName, requiredPermission yta.PermissionName) *yta.Action

NewLinkAuth creates an action from the `eosio.system` contract called `linkauth`.

`linkauth` allows you to attach certain permission to the given `code::actionName`. With this set on-chain, you can use the `requiredPermission` to sign transactions for `code::actionName` and not rely on your `active` (which might be more sensitive as it can sign anything) for the given operation.

func NewNewAccount

func NewNewAccount(creator, newAccount yta.AccountName, publicKey ecc.PublicKey) *yta.Action

NewNewAccount returns a `newaccount` action that lives on the `eosio.system` contract.

func NewNonce

func NewNonce(nonce string) *yta.Action

NewNonce returns a `nonce` action that lives on the `eosio.bios` contract. It should exist only when booting a new network, as it is replaced using the `yta-bios` boot process by the `eosio.system` contract.

func NewRefund

func NewRefund(owner yta.AccountName) *yta.Action

NewRefund returns a `refund` action that lives on the `eosio.system` contract.

func NewRegProducer

func NewRegProducer(producer yta.AccountName, producerKey ecc.PublicKey, url string, location uint16) *yta.Action

NewRegProducer returns a `regproducer` action that lives on the `eosio.system` contract.

func NewRegProxy

func NewRegProxy(proxy yta.AccountName, isProxy bool) *yta.Action

NewRegProxy returns a `regproxy` action that lives on the `eosio.system` contract.

func NewRemoveProducer

func NewRemoveProducer(producer yta.AccountName) *yta.Action

NewRemoveProducer returns a `rmvproducer` action that lives on the `eosio.system` contract. This is to be called by the consortium of BPs, to oust a BP from its place. If you want to unregister yourself as a BP, use `unregprod`.

func NewSellRAM

func NewSellRAM(account yta.AccountName, bytes uint64) *yta.Action

NewSellRAM will sell at current market price a given number of bytes of RAM.

func NewSetABI

func NewSetABI(account yta.AccountName, abiPath string) (out *yta.Action, err error)

func NewSetCode

func NewSetCode(account yta.AccountName, wasmPath string) (out *yta.Action, err error)

func NewSetCodeTx

func NewSetCodeTx(account yta.AccountName, wasmPath, abiPath string) (out *yta.Transaction, err error)

NewSetCodeTx is _deprecated_. Use NewSetContract instead, and build your transaction yourself.

func NewSetContract

func NewSetContract(account yta.AccountName, wasmPath, abiPath string) (out []*yta.Action, err error)

func NewSetPriv

func NewSetPriv(account yta.AccountName) *yta.Action

NewSetPriv returns a `setpriv` action that lives on the `eosio.bios` contract. It should exist only when booting a new network, as it is replaced using the `yta-bios` boot process by the `eosio.system` contract.

func NewSetProds

func NewSetProds(producers []ProducerKey) *yta.Action

NewSetPriv returns a `setpriv` action that lives on the `eosio.bios` contract. It should exist only when booting a new network, as it is replaced using the `yta-bios` boot process by the `eosio.system` contract.

func NewSetRAM

func NewSetRAM(maxRAMSize uint64) *yta.Action

func NewSetRAMRate

func NewSetRAMRate(bytesPerBlock uint16) *yta.Action

func NewSetalimits

func NewSetalimits(account yta.AccountName, ramBytes, netWeight, cpuWeight int64) *yta.Action

NewSetalimits sets the account limits. Requires signature from `eosio@active` account.

func NewUndelegateBW

func NewUndelegateBW(from, receiver yta.AccountName, unstakeCPU, unstakeNet yta.Asset) *yta.Action

NewUndelegateBW returns a `undelegatebw` action that lives on the `eosio.system` contract.

func NewUnlinkAuth

func NewUnlinkAuth(account, code yta.AccountName, actionName yta.ActionName) *yta.Action

NewUnlinkAuth creates an action from the `eosio.system` contract called `unlinkauth`.

`unlinkauth` detaches a previously set permission from a `code::actionName`. See `linkauth`.

func NewUnregProducer

func NewUnregProducer(producer yta.AccountName) *yta.Action

NewUnregProducer returns a `unregprod` action that lives on the `eosio.system` contract.

func NewUpdateAuth

func NewUpdateAuth(account yta.AccountName, permission, parent yta.PermissionName, authority yta.Authority, usingPermission yta.PermissionName) *yta.Action

NewUpdateAuth creates an action from the `eosio.system` contract called `updateauth`.

usingPermission needs to be `owner` if you want to modify the `owner` authorization, otherwise `active` will do for the rest.

func NewVoteProducer

func NewVoteProducer(voter yta.AccountName, proxy yta.AccountName, producers ...yta.AccountName) *yta.Action

NewNonce returns a `nonce` action that lives on the `eosio.bios` contract. It should exist only when booting a new network, as it is replaced using the `yta-bios` boot process by the `eosio.system` contract.

Types

type Bidname

type Bidname struct {
	Bidder  yta.AccountName `json:"bidder"`
	Newname yta.AccountName `json:"newname"`
	Bid     yta.Asset       `json:"bid"` // specified in YTA
}

Bidname represents the `eosio.system_contract::bidname` action.

type BlockchainParameters

type BlockchainParameters struct {
	MaxBlockNetUsage               yta.Uint64 `json:"max_block_net_usage"`
	TargetBlockNetUsagePct         uint32     `json:"target_block_net_usage_pct"`
	MaxTransactionNetUsage         uint32     `json:"max_transaction_net_usage"`
	BasePerTransactionNetUsage     uint32     `json:"base_per_transaction_net_usage"`
	NetUsageLeeway                 uint32     `json:"net_usage_leeway"`
	ContextFreeDiscountNetUsageNum uint32     `json:"context_free_discount_net_usage_num"`
	ContextFreeDiscountNetUsageDen uint32     `json:"context_free_discount_net_usage_den"`
	MaxBlockCPUUsage               uint32     `json:"max_block_cpu_usage"`
	TargetBlockCPUUsagePct         uint32     `json:"target_block_cpu_usage_pct"`
	MaxTransactionCPUUsage         uint32     `json:"max_transaction_cpu_usage"`
	MinTransactionCPUUsage         uint32     `json:"min_transaction_cpu_usage"`
	MaxTransactionLifetime         uint32     `json:"max_transaction_lifetime"`
	DeferredTrxExpirationWindow    uint32     `json:"deferred_trx_expiration_window"`
	MaxTransactionDelay            uint32     `json:"max_transaction_delay"`
	MaxInlineActionSize            uint32     `json:"max_inline_action_size"`
	MaxInlineActionDepth           uint16     `json:"max_inline_action_depth"`
	MaxAuthorityDepth              uint16     `json:"max_authority_depth"`
	MaxGeneratedTransactionCount   uint32     `json:"max_generated_transaction_count"`
}

BlockchainParameters are all the params we can set through `setparams`.

type BuyRAM

type BuyRAM struct {
	Payer    yta.AccountName `json:"payer"`
	Receiver yta.AccountName `json:"receiver"`
	Quantity yta.Asset       `json:"quant"` // specified in YTA
}

BuyRAM represents the `eosio.system::buyram` action.

type BuyRAMBytes

type BuyRAMBytes struct {
	Payer    yta.AccountName `json:"payer"`
	Receiver yta.AccountName `json:"receiver"`
	Bytes    uint32          `json:"bytes"`
}

BuyRAMBytes represents the `eosio.system::buyrambytes` action.

type CancelDelay

type CancelDelay struct {
	CancelingAuth yta.PermissionLevel `json:"canceling_auth"`
	TransactionID yta.Checksum256     `json:"trx_id"`
}

CancelDelay represents the native `canceldelay` action, through the system contract.

type ClaimRewards

type ClaimRewards struct {
	Owner yta.AccountName `json:"owner"`
}

ClaimRewards represents the `eosio.system::claimrewards` action.

type DelegateBW

type DelegateBW struct {
	From     yta.AccountName `json:"from"`
	Receiver yta.AccountName `json:"receiver"`
	StakeNet yta.Asset       `json:"stake_net"`
	StakeCPU yta.Asset       `json:"stake_cpu"`
	Transfer yta.Bool        `json:"transfer"`
}

DelegateBW represents the `eosio.system::delegatebw` action.

type DeleteAuth

type DeleteAuth struct {
	Account    yta.AccountName    `json:"account"`
	Permission yta.PermissionName `json:"permission"`
}

DeleteAuth represents the native `deleteauth` action, reachable through the `eosio.system` contract.

type EOSIOGlobalState

type EOSIOGlobalState struct {
	BlockchainParameters
	TotalStorageBytesReserved yta.Uint64 `json:"total_storage_bytes_reserved"`
	TotalStorageStake         yta.Uint64 `json:"total_storage_stake"`
	PaymentPerBlock           yta.Uint64 `json:"payment_per_block"`
}

type LinkAuth

type LinkAuth struct {
	Account     yta.AccountName    `json:"account"`
	Code        yta.AccountName    `json:"code"`
	Type        yta.ActionName     `json:"type"`
	Requirement yta.PermissionName `json:"requirement"`
}

LinkAuth represents the native `linkauth` action, through the system contract.

type NewAccount

type NewAccount struct {
	Creator yta.AccountName `json:"creator"`
	Name    yta.AccountName `json:"name"`
	Owner   yta.Authority   `json:"owner"`
	Active  yta.Authority   `json:"active"`
}

NewAccount represents a `newaccount` action on the `eosio.system` contract. It is one of the rare ones to be hard-coded into the blockchain.

type Nonce

type Nonce struct {
	Value string `json:"value"`
}

Nonce represents the `eosio.system::nonce` action. It is used to add variability in a transaction, so you can send the same many times in the same block, without it having the same Tx hash.

type ProducerKey

type ProducerKey struct {
	ProducerName    yta.AccountName `json:"producer_name"`
	BlockSigningKey ecc.PublicKey   `json:"block_signing_key"`
}

type Refund

type Refund struct {
	Owner yta.AccountName `json:"owner"`
}

Refund represents the `eosio.system::refund` action

type RegProducer

type RegProducer struct {
	Producer    yta.AccountName `json:"producer"`
	ProducerKey ecc.PublicKey   `json:"producer_key"`
	URL         string          `json:"url"`
	Location    uint16          `json:"location"` // what,s the meaning of that anyway ?
}

RegProducer represents the `eosio.system::regproducer` action

type RegProxy

type RegProxy struct {
	Proxy   yta.AccountName `json:"proxy"`
	IsProxy bool            `json:"isproxy"`
}

RegProxy represents the `eosio.system::regproxy` action

type RemoveProducer

type RemoveProducer struct {
	Producer yta.AccountName `json:"producer"`
}

RemoveProducer represents the `eosio.system::rmvproducer` action

type SellRAM

type SellRAM struct {
	Account yta.AccountName `json:"account"`
	Bytes   uint64          `json:"bytes"`
}

SellRAM represents the `eosio.system::sellram` action.

type SetABI

type SetABI struct {
	Account yta.AccountName `json:"account"`
	ABI     yta.HexBytes    `json:"abi"`
}

SetABI represents the hard-coded `setabi` action.

type SetCode

type SetCode struct {
	Account   yta.AccountName `json:"account"`
	VMType    byte            `json:"vmtype"`
	VMVersion byte            `json:"vmversion"`
	Code      yta.HexBytes    `json:"code"`
}

SetCode represents the hard-coded `setcode` action.

type SetPriv

type SetPriv struct {
	Account yta.AccountName `json:"account"`
	IsPriv  yta.Bool        `json:"is_priv"`
}

SetPriv sets privileged account status. Used in the bios boot mechanism.

type SetProds

type SetProds struct {
	Schedule []ProducerKey `json:"schedule"`
}

SetProds is present in `eosio.bios` contract. Used only at boot time.

type SetRAM

type SetRAM struct {
	MaxRAMSize yta.Uint64 `json:"max_ram_size"`
}

SetRAM represents the hard-coded `setram` action.

type SetRAMRate

type SetRAMRate struct {
	BytesPerBlock uint16 `json:"bytes_per_block"`
}

SetRAMRate represents the system contract's `setramrate` action.

type Setalimits

type Setalimits struct {
	Account   yta.AccountName `json:"account"`
	RAMBytes  int64           `json:"ram_bytes"`
	NetWeight int64           `json:"net_weight"`
	CPUWeight int64           `json:"cpu_weight"`
}

Setalimits represents the `eosio.system::setalimit` action.

type UndelegateBW

type UndelegateBW struct {
	From       yta.AccountName `json:"from"`
	Receiver   yta.AccountName `json:"receiver"`
	UnstakeNet yta.Asset       `json:"unstake_net_quantity"`
	UnstakeCPU yta.Asset       `json:"unstake_cpu_quantity"`
}

UndelegateBW represents the `eosio.system::undelegatebw` action.

type UnlinkAuth

type UnlinkAuth struct {
	Account yta.AccountName `json:"account"`
	Code    yta.AccountName `json:"code"`
	Type    yta.ActionName  `json:"type"`
}

UnlinkAuth represents the native `unlinkauth` action, through the system contract.

type UnregProducer

type UnregProducer struct {
	Producer yta.AccountName `json:"producer"`
}

UnregProducer represents the `eosio.system::unregprod` action

type UpdateAuth

type UpdateAuth struct {
	Account    yta.AccountName    `json:"account"`
	Permission yta.PermissionName `json:"permission"`
	Parent     yta.PermissionName `json:"parent"`
	Auth       yta.Authority      `json:"auth"`
}

UpdateAuth represents the hard-coded `updateauth` action.

If you change the `active` permission, `owner` is the required parent.

If you change the `owner` permission, there should be no parent.

type VoteProducer

type VoteProducer struct {
	Voter     yta.AccountName   `json:"voter"`
	Proxy     yta.AccountName   `json:"proxy"`
	Producers []yta.AccountName `json:"producers"`
}

VoteProducer represents the `eosio.system::voteproducer` action

Jump to

Keyboard shortcuts

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