types

package
v0.1.0-rc.3 Latest Latest
Warning

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

Go to latest
Published: Jul 20, 2018 License: GPL-3.0 Imports: 10 Imported by: 21

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Cdc = amino.NewCodec()

Functions

func PubKeyString

func PubKeyString(pk PubKey) string

Types

type ByAll

type ByAll []common.Address

ByAll implements sort.Interface for []common.Address. It sorts be the Address

func (ByAll) Len

func (a ByAll) Len() int

func (ByAll) Less

func (a ByAll) Less(i, j int) bool

func (ByAll) Swap

func (a ByAll) Swap(i, j int)

type Context

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

func NewContext

func NewContext(chain string, height int64, ethappState *state.StateDB) Context

func (Context) BlockHeight

func (c Context) BlockHeight() int64

func (Context) ChainID

func (c Context) ChainID() string

func (Context) EthappState

func (c Context) EthappState() *state.StateDB

func (Context) GetNonce

func (c Context) GetNonce() uint64

func (Context) GetSigners

func (c Context) GetSigners() []common.Address

func (Context) HasSigner

func (c Context) HasSigner(signer common.Address) bool

func (Context) Reset

func (c Context) Reset() Context

Reset should clear out all permissions, but carry on knowledge that this is a child

func (*Context) SetNonce

func (c *Context) SetNonce(nonce uint64)

func (*Context) WithSigners

func (c *Context) WithSigners(signers ...common.Address)

type GenesisCubePubKey

type GenesisCubePubKey struct {
	CubeBatch string `json:"cube_batch"`
	PubKey    string `json:"pub_key"`
}

type GenesisValidator

type GenesisValidator struct {
	PubKey    PubKey `json:"pub_key"`
	Power     string `json:"power"`
	Name      string `json:"name"`
	Address   string `json:"address"`
	CompRate  string `json:"comp_rate"`
	MaxAmount int64  `json:"max_amount"`
	Website   string `json:"website"`
	Location  string `json:"location"`
	Email     string `json:"email"`
	Profile   string `json:profile`
}

GenesisValidator is an initial validator.

type PubKey

type PubKey struct {
	crypto.PubKey
}

func GetPubKey

func GetPubKey(pubKeyStr string) (pk PubKey, err error)

func (*PubKey) MarshalJSON

func (pk *PubKey) MarshalJSON() ([]byte, error)

func (*PubKey) UnmarshalJSON

func (pk *PubKey) UnmarshalJSON(b []byte) error

type Signable

type Signable interface {
	// SignBytes is the immutable data, which needs to be signed
	SignBytes() []byte

	// Sign will add a transaction with signature
	Sign(tx *types.Transaction) error

	// Signers will return the public key(s) that signed if the signature
	// is valid, or an error if there is any issue with the signature,
	// including if there are no signatures
	Signers() (common.Address, error)

	// TxBytes returns the transaction data as well as all signatures
	// It should return an error if Sign was never called
	TxBytes() ([]byte, error)
}

Signable represents any transaction we wish to send to tendermint core These methods allow us to sign arbitrary Tx with the KeyStore

Jump to

Keyboard shortcuts

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