Versions in this module Expand all Collapse all v0 v0.1.0 Nov 3, 2019 Changes in this version + var AN = eos.AN + var ActN = eos.ActN + var PN = eos.PN + func NewAction(account_name eos.AccountName, action_name eos.ActionName, ...) *eos.Action + func NewBidname(bidder, newname eos.AccountName, bid eos.Asset) *eos.Action + func NewBuyRAM(payer, receiver eos.AccountName, eosQuantity uint64) *eos.Action + func NewBuyRAMBytes(payer, receiver eos.AccountName, bytes uint32) *eos.Action + func NewCancelDelay(cancelingAuth eos.PermissionLevel, transactionID eos.Checksum256) *eos.Action + func NewClaimRewards(voterName eos.AccountName, bpName eos.AccountName) *eos.Action + func NewCustomNewAccount(creator, newAccount eos.AccountName, owner, active eos.Authority) *eos.Action + func NewDelegateBW(from, receiver eos.AccountName, stakeCPU, stakeNet eos.Asset, transfer bool) *eos.Action + func NewDelegatedNewAccount(creator, newAccount eos.AccountName, delegatedTo eos.AccountName) *eos.Action + func NewDeleteAuth(account eos.AccountName, permission eos.PermissionName) *eos.Action + func NewLinkAuth(account, code eos.AccountName, actionName eos.ActionName, ...) *eos.Action + func NewNewAccount(creator, newAccount eos.AccountName, publicKey ecc.PublicKey) *eos.Action + func NewNonce(nonce string) *eos.Action + func NewRefund(owner eos.AccountName) *eos.Action + func NewRegProducer(producer eos.AccountName, producerKey ecc.PublicKey, url string, ...) *eos.Action + func NewRegProxy(proxy eos.AccountName, isProxy bool) *eos.Action + func NewRemoveProducer(producer eos.AccountName) *eos.Action + func NewSellRAM(account eos.AccountName, bytes uint64) *eos.Action + func NewSetABI(account eos.AccountName, abiPath string) (out *eos.Action, err error) + func NewSetCode(account eos.AccountName, wasmPath string) (out *eos.Action, err error) + func NewSetCodeTx(account eos.AccountName, wasmPath, abiPath string) (out *eos.Transaction, err error) + func NewSetContract(account eos.AccountName, wasmPath, abiPath string) (out []*eos.Action, err error) + func NewSetPermission(account eos.AccountName, auth eos.Authority, permission eos.PermissionName, ...) (out *eos.Action, err error) + func NewSetPriv(account eos.AccountName) *eos.Action + func NewSetProds(producers []ProducerKey) *eos.Action + func NewSetRAM(maxRAMSize uint64) *eos.Action + func NewSetRAMRate(bytesPerBlock uint16) *eos.Action + func NewSetalimits(account eos.AccountName, ramBytes, netWeight, cpuWeight int64) *eos.Action + func NewSetemergency(producer eos.AccountName, Emergency bool) *eos.Action + func NewTransfer(from, to eos.AccountName, quantity eos.Asset, memo string) *eos.Action + func NewUndelegateBW(from, receiver eos.AccountName, unstakeCPU, unstakeNet eos.Asset) *eos.Action + func NewUnfreeze(voterName eos.AccountName, bpName eos.AccountName) *eos.Action + func NewUnlinkAuth(account, code eos.AccountName, actionName eos.ActionName) *eos.Action + func NewUnregProducer(producer eos.AccountName) *eos.Action + func NewUpdateAuth(account eos.AccountName, permission, parent eos.PermissionName, ...) *eos.Action + func NewVoteProducer(voter eos.AccountName, bpName eos.AccountName, amount eos.Asset) *eos.Action + type Bidname struct + Bid eos.Asset + Bidder eos.AccountName + Newname eos.AccountName + type BlockchainParameters struct + BasePerTransactionNetUsage uint32 + ContextFreeDiscountNetUsageDen uint32 + ContextFreeDiscountNetUsageNum uint32 + DeferredTrxExpirationWindow uint32 + MaxAuthorityDepth uint16 + MaxBlockCPUUsage uint32 + MaxBlockNetUsage eos.Uint64 + MaxGeneratedTransactionCount uint32 + MaxInlineActionDepth uint16 + MaxInlineActionSize uint32 + MaxTransactionCPUUsage uint32 + MaxTransactionDelay uint32 + MaxTransactionLifetime uint32 + MaxTransactionNetUsage uint32 + MinTransactionCPUUsage uint32 + NetUsageLeeway uint32 + TargetBlockCPUUsagePct uint32 + TargetBlockNetUsagePct uint32 + type BuyRAM struct + Payer eos.AccountName + Quantity eos.Asset + Receiver eos.AccountName + type BuyRAMBytes struct + Bytes uint32 + Payer eos.AccountName + Receiver eos.AccountName + type CancelDelay struct + CancelingAuth eos.PermissionLevel + TransactionID eos.Checksum256 + type ClaimRewards struct + BpName eos.AccountName + VoterName eos.AccountName + type DelegateBW struct + From eos.AccountName + Receiver eos.AccountName + StakeCPU eos.Asset + StakeNet eos.Asset + Transfer eos.Bool + type DeleteAuth struct + Account eos.AccountName + Permission eos.PermissionName + type EOSIOGlobalState struct + PaymentPerBlock eos.Uint64 + TotalStorageBytesReserved eos.Uint64 + TotalStorageStake eos.Uint64 + type LinkAuth struct + Account eos.AccountName + Code eos.AccountName + Requirement eos.PermissionName + Type eos.ActionName + type NewAccount struct + Active eos.Authority + Creator eos.AccountName + Name eos.AccountName + Owner eos.Authority + type Nonce struct + Value string + type ProducerKey struct + BlockSigningKey ecc.PublicKey + ProducerName eos.AccountName + type Refund struct + Owner eos.AccountName + type RegProducer struct + CommissionRate int32 + Producer eos.AccountName + ProducerKey ecc.PublicKey + URL string + type RegProxy struct + IsProxy bool + Proxy eos.AccountName + type RemoveProducer struct + Producer eos.AccountName + type SellRAM struct + Account eos.AccountName + Bytes uint64 + type SetABI struct + ABI eos.HexBytes + Account eos.AccountName + type SetAuth struct + Account eos.AccountName + Auth eos.Authority + Parent eos.PermissionName + Permission eos.PermissionName + type SetCode struct + Account eos.AccountName + Code eos.HexBytes + VMType byte + VMVersion byte + type SetPriv struct + Account eos.AccountName + IsPriv eos.Bool + type SetProds struct + Schedule []ProducerKey + type SetRAM struct + MaxRAMSize eos.Uint64 + type SetRAMRate struct + BytesPerBlock uint16 + type Setalimits struct + Account eos.AccountName + CPUWeight int64 + NetWeight int64 + RAMBytes int64 + type Setemergency struct + Emergency bool + Producer eos.AccountName + type Transfer struct + From eos.AccountName + Memo string + Quantity eos.Asset + To eos.AccountName + type UnFreeze struct + BpName eos.AccountName + VoterName eos.AccountName + type UndelegateBW struct + From eos.AccountName + Receiver eos.AccountName + UnstakeCPU eos.Asset + UnstakeNet eos.Asset + type UnlinkAuth struct + Account eos.AccountName + Code eos.AccountName + Type eos.ActionName + type UnregProducer struct + Producer eos.AccountName + type UpdateAuth struct + Account eos.AccountName + Auth eos.Authority + Parent eos.PermissionName + Permission eos.PermissionName + type VoteProducer struct + Amount eos.Asset + BpName eos.AccountName + Voter eos.AccountName