axis

package
v1.0.3-rc3 Latest Latest
Warning

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

Go to latest
Published: Sep 27, 2020 License: GPL-3.0 Imports: 62 Imported by: 0

Documentation

Overview

Package axis implements the Axis protocol.

Index

Constants

View Source
const (
	// Protocol messages belonging to axis/62
	StatusMsg          = 0x00
	NewBlockHashesMsg  = 0x01
	TxMsg              = 0x02
	GetBlockHeadersMsg = 0x03
	BlockHeadersMsg    = 0x04
	GetBlockBodiesMsg  = 0x05
	BlockBodiesMsg     = 0x06
	NewBlockMsg        = 0x07

	// Protocol messages belonging to axis/63
	GetNodeDataMsg = 0x0d
	NodeDataMsg    = 0x0e
	GetReceiptsMsg = 0x0f
	ReceiptsMsg    = 0x10

	NewVoteMsg    = 0x16
	NewLotteryMsg = 0x17
)

axis protocol message codes

View Source
const (
	ErrMsgTooLarge = iota
	ErrDecode
	ErrInvalidMsgCode
	ErrProtocolVersionMismatch
	ErrNetworkIdMismatch
	ErrGenesisBlockMismatch
	ErrNoStatusMsg
	ErrExtraStatusMsg
	ErrSuspendedPeer
)
View Source
const ProtocolMaxMsgSize = 10 * 1024 * 1024 // Maximum cap on the size of a protocol message

Variables

View Source
var DefaultConfig = Config{
	SyncMode: downloader.FullSync,
	Ethash: ethash.Config{
		CacheDir:       "ethash",
		CachesInMem:    2,
		CachesOnDisk:   3,
		DatasetsInMem:  1,
		DatasetsOnDisk: 2,
	},
	NetworkId:     2020,
	LightPeers:    100,
	DatabaseCache: 768,
	TrieCache:     256,
	TrieTimeout:   60 * time.Minute,
	GasPrice:      big.NewInt(params.Gta),

	TxPool: core.DefaultTxPoolConfig,
	GPO: gasprice.Config{
		Blocks:     20,
		Percentile: 60,
	},
}

DefaultConfig contains default settings for use on the Axis main net.

View Source
var ProtocolLengths = []uint64{24, 8}

ProtocolLengths are the number of implemented message corresponding to different protocol versions.

View Source
var ProtocolName = "axis"

ProtocolName is the official short name of the protocol used during capability negotiation.

View Source
var ProtocolVersions = []uint{axis63, axis62}

ProtocolVersions are the upported versions of the axis protocol (first is primary).

Functions

func CreateConsensusEngine

func CreateConsensusEngine(ctx *node.ServiceContext, config *ethash.Config, chainConfig *params.ChainConfig, db axisdb.Database) consensus.Engine

CreateConsensusEngine creates the required type of consensus engine instance for an Axis service

func CreateDB

func CreateDB(ctx *node.ServiceContext, config *Config, name string) (axisdb.Database, error)

CreateDB creates the chain database.

func NewBloomIndexer

func NewBloomIndexer(db axisdb.Database, size uint64) *core.ChainIndexer

NewBloomIndexer returns a chain indexer that generates bloom bits data for the canonical chain for fast logs filtering.

Types

type Axis

type Axis struct {
	APIBackend *AxisAPIBackend
	// contains filtered or unexported fields
}

Axis implements the Axis full node service.

var AxisInstance *Axis

func New

func New(ctx *node.ServiceContext, config *Config) (*Axis, error)

New creates a new Axis object (including the initialisation of the common Axis object)

func (*Axis) APIs

func (s *Axis) APIs() []rpc.API

APIs return the collection of RPC services the ethereum package offers. NOTE, some of these services probably need to be moved to somewhere else.

func (*Axis) AccountManager

func (s *Axis) AccountManager() *accounts.Manager

func (*Axis) AddLesServer

func (s *Axis) AddLesServer(ls LesServer)

func (*Axis) Axisbase

func (s *Axis) Axisbase() (eb accounts.Account, err error)

func (*Axis) BlockChain

func (s *Axis) BlockChain() *core.BlockChain

func (*Axis) ChainDb

func (s *Axis) ChainDb() axisdb.Database

func (*Axis) Downloader

func (s *Axis) Downloader() *downloader.Downloader

func (*Axis) Engine

func (s *Axis) Engine() consensus.Engine

func (*Axis) EthVersion

func (s *Axis) EthVersion() int

func (*Axis) EventMux

func (s *Axis) EventMux() *event.TypeMux

func (*Axis) IsListening

func (s *Axis) IsListening() bool

func (*Axis) IsMining

func (s *Axis) IsMining() bool

func (*Axis) Miner

func (s *Axis) Miner() *miner.Miner

func (*Axis) NetVersion

func (s *Axis) NetVersion() uint64

func (*Axis) Protocols

func (s *Axis) Protocols() []p2p.Protocol

Protocols implements node.Service, returning all the currently configured network protocols to start.

func (*Axis) ResetWithGenesisBlock

func (s *Axis) ResetWithGenesisBlock(gb *types.Block)

func (*Axis) SetAxisbase

func (s *Axis) SetAxisbase(axisbase address.MixBase58Adrress)

SetAxisbase sets the mining reward address.

func (*Axis) Start

func (s *Axis) Start(srvr *p2p.Server) error

Start implements node.Service, starting all internal goroutines needed by the Axis protocol implementation.

func (*Axis) StartMining

func (s *Axis) StartMining(local bool) error

func (*Axis) Stop

func (s *Axis) Stop() error

Stop implements node.Service, terminating all internal goroutines used by the Axis protocol.

func (*Axis) StopMining

func (s *Axis) StopMining()

func (*Axis) TxPool

func (s *Axis) TxPool() *core.TxPool

func (*Axis) Voter

func (s *Axis) Voter() *voter.Voter

type AxisAPIBackend

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

AxisAPIBackend implements ethapi.Backend for full nodes

func (*AxisAPIBackend) AccountManager

func (b *AxisAPIBackend) AccountManager() *accounts.Manager

func (*AxisAPIBackend) BlockByNumber

func (b *AxisAPIBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error)

func (*AxisAPIBackend) BloomStatus

func (b *AxisAPIBackend) BloomStatus() (uint64, uint64)

func (*AxisAPIBackend) ChainConfig

func (b *AxisAPIBackend) ChainConfig() *params.ChainConfig

ChainConfig returns the active chain configuration.

func (*AxisAPIBackend) ChainDb

func (b *AxisAPIBackend) ChainDb() axisdb.Database

func (*AxisAPIBackend) CheckNil

func (b *AxisAPIBackend) CheckNil(Nils []c_type.Uint256) (nilResps []light.NilValue, e error)

func (*AxisAPIBackend) CommitTx

func (b *AxisAPIBackend) CommitTx(tx *txtool.GTx) error

func (*AxisAPIBackend) CurrentBlock

func (b *AxisAPIBackend) CurrentBlock() *types.Block

func (*AxisAPIBackend) Downloader

func (b *AxisAPIBackend) Downloader() *downloader.Downloader

func (*AxisAPIBackend) EventMux

func (b *AxisAPIBackend) EventMux() *event.TypeMux

func (*AxisAPIBackend) GenTx

func (b *AxisAPIBackend) GenTx(param prepare.PreTxParam) (txParam *txtool.GTxParam, e error)

func (*AxisAPIBackend) GetAnchor

func (b *AxisAPIBackend) GetAnchor(roots []c_type.Uint256) ([]txtool.Witness, error)

func (*AxisAPIBackend) GetBalances

func (b *AxisAPIBackend) GetBalances(pk c_type.Uint512) (balances map[string]*big.Int, tickets map[string][]*common.Hash)

func (*AxisAPIBackend) GetBlock

func (b *AxisAPIBackend) GetBlock(ctx context.Context, hash common.Hash) (*types.Block, error)

func (*AxisAPIBackend) GetBlocksInfo

func (b *AxisAPIBackend) GetBlocksInfo(start uint64, count uint64) ([]txtool.Block, error)

func (*AxisAPIBackend) GetEVM

func (b *AxisAPIBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header, vmCfg vm.Config) (*vm.EVM, func() error, error)

func (*AxisAPIBackend) GetEngin

func (b *AxisAPIBackend) GetEngin() consensus.Engine

func (*AxisAPIBackend) GetLockedBalances

func (b *AxisAPIBackend) GetLockedBalances(pk c_type.Uint512) (balances map[string]*big.Int)

func (*AxisAPIBackend) GetLogs

func (b *AxisAPIBackend) GetLogs(ctx context.Context, hash common.Hash) ([][]*types.Log, error)

func (*AxisAPIBackend) GetMaxAvailable

func (b *AxisAPIBackend) GetMaxAvailable(pk c_type.Uint512, currency string) (amount *big.Int)

func (*AxisAPIBackend) GetMiner

func (b *AxisAPIBackend) GetMiner() *miner.Miner

func (*AxisAPIBackend) GetOutByPKr

func (b *AxisAPIBackend) GetOutByPKr(pkrs []c_type.PKr, start, end uint64) (br light.BlockOutResp, e error)

func (*AxisAPIBackend) GetPkNumber

func (b *AxisAPIBackend) GetPkNumber(pk c_type.Uint512) (number uint64, e error)

func (*AxisAPIBackend) GetPkr

func (b *AxisAPIBackend) GetPkr(pk *c_type.Uint512, index *c_type.Uint256) (pkr c_type.PKr, e error)

func (*AxisAPIBackend) GetPkrEx

func (b *AxisAPIBackend) GetPkrEx(pk *c_type.Uint512, index *c_type.Uint256) (pkr c_type.PKrEx, e error)

func (*AxisAPIBackend) GetPoolTransaction

func (b *AxisAPIBackend) GetPoolTransaction(hash common.Hash) *types.Transaction

func (*AxisAPIBackend) GetPoolTransactions

func (b *AxisAPIBackend) GetPoolTransactions() (types.Transactions, error)

func (*AxisAPIBackend) GetReceipts

func (b *AxisAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error)

func (*AxisAPIBackend) GetRecordsByPk

func (b *AxisAPIBackend) GetRecordsByPk(pk *c_type.Uint512, begin, end uint64) (records []exchange.Utxo, err error)

func (*AxisAPIBackend) GetRecordsByPkr

func (b *AxisAPIBackend) GetRecordsByPkr(pkr c_type.PKr, begin, end uint64) (records []exchange.Utxo, err error)

func (*AxisAPIBackend) GetRecordsByTxHash

func (b *AxisAPIBackend) GetRecordsByTxHash(txHash c_type.Uint256) (records []exchange.Utxo, err error)

func (*AxisAPIBackend) GetTd

func (b *AxisAPIBackend) GetTd(blockHash common.Hash) *big.Int

func (*AxisAPIBackend) HeaderByHash

func (b *AxisAPIBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error)

func (*AxisAPIBackend) HeaderByNumber

func (b *AxisAPIBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error)

func (*AxisAPIBackend) PeerCount

func (b *AxisAPIBackend) PeerCount() uint

func (*AxisAPIBackend) ProtocolVersion

func (b *AxisAPIBackend) ProtocolVersion() int

func (*AxisAPIBackend) SendTx

func (b *AxisAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error

func (*AxisAPIBackend) ServiceFilter

func (b *AxisAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession)

func (*AxisAPIBackend) SetHead

func (b *AxisAPIBackend) SetHead(number uint64)

func (*AxisAPIBackend) StateAndHeaderByNumber

func (b *AxisAPIBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.StateDB, *types.Header, error)

func (*AxisAPIBackend) Stats

func (b *AxisAPIBackend) Stats() (pending int, queued int)

func (*AxisAPIBackend) SubscribeChainEvent

func (b *AxisAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription

func (*AxisAPIBackend) SubscribeChainHeadEvent

func (b *AxisAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription

func (*AxisAPIBackend) SubscribeChainSideEvent

func (b *AxisAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription

func (*AxisAPIBackend) SubscribeLogsEvent

func (b *AxisAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription

func (*AxisAPIBackend) SubscribeNewTxsEvent

func (b *AxisAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription

func (*AxisAPIBackend) SubscribeRemovedLogsEvent

func (b *AxisAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription

func (*AxisAPIBackend) SuggestPrice

func (b *AxisAPIBackend) SuggestPrice(ctx context.Context) (*big.Int, error)

func (*AxisAPIBackend) TxPoolContent

func (b *AxisAPIBackend) TxPoolContent() (types.Transactions, types.Transactions)

type BadBlockArgs

type BadBlockArgs struct {
	Hash  common.Hash            `json:"hash"`
	Block map[string]interface{} `json:"block"`
	RLP   string                 `json:"rlp"`
}

BadBlockArgs represents the entries in the list returned when bad blocks are queried.

type BloomIndexer

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

BloomIndexer implements a core.ChainIndexer, building up a rotated bloom bits index for the Axis header bloom filters, permitting blazing fast filtering.

func (*BloomIndexer) Commit

func (b *BloomIndexer) Commit() error

Commit implements core.ChainIndexerBackend, finalizing the bloom section and writing it out into the database.

func (*BloomIndexer) Process

func (b *BloomIndexer) Process(header *types.Header)

Process implements core.ChainIndexerBackend, adding a new header's bloom into the index.

func (*BloomIndexer) Reset

func (b *BloomIndexer) Reset(section uint64, lastSectionHead common.Hash) error

Reset implements core.ChainIndexerBackend, starting a new bloombits index section.

type Config

type Config struct {
	// The genesis block, which is inserted if the database is empty.
	// If nil, the Axis main net block is used.
	Genesis *core.Genesis `toml:",omitempty"`

	// Protocol options
	NetworkId uint64 // Network ID to use for selecting peers to connect to
	SyncMode  downloader.SyncMode
	NoPruning bool

	MineMode      bool
	StartExchange bool
	AutoMerge     bool
	StartStake    bool

	StartLight bool

	// Light client options
	LightServ  int `toml:",omitempty"` // Maximum percentage of time allowed for serving LES requests
	LightPeers int `toml:",omitempty"` // Maximum number of LES client peers

	// Database options
	SkipBcVersionCheck bool `toml:"-"`
	DatabaseHandles    int  `toml:"-"`
	DatabaseCache      int
	TrieCache          int
	TrieTimeout        time.Duration

	// Mining-related options
	MinerThreads int    `toml:",omitempty"`
	ExtraData    []byte `toml:",omitempty"`
	GasPrice     *big.Int

	// Ethash options
	Ethash ethash.Config

	// Transaction pool options
	TxPool core.TxPoolConfig

	Proof *proofservice.Config

	// Gas Price Oracle options
	GPO gasprice.Config

	// Enables tracking of SHA3 preimages in the VM
	EnablePreimageRecording bool

	// Miscellaneous options
	DocRoot string `toml:"-"`
}

func (Config) MarshalTOML

func (c Config) MarshalTOML() (interface{}, error)

MarshalTOML marshals as TOML.

func (*Config) UnmarshalTOML

func (c *Config) UnmarshalTOML(unmarshal func(interface{}) error) error

UnmarshalTOML unmarshals from TOML.

type LesServer

type LesServer interface {
	Start(srvr *p2p.Server)
	Stop()
	Protocols() []p2p.Protocol
	SetBloomBitsIndexer(bbIndexer *core.ChainIndexer)
}

type NodeInfo

type NodeInfo struct {
	Network    uint64              `json:"network"`    // Axis network ID (1=Frontier, 2=Morden, Ropsten=3, Rinkeby=4)
	Difficulty *big.Int            `json:"difficulty"` // Total difficulty of the host's blockchain
	Genesis    common.Hash         `json:"genesis"`    // SHA3 hash of the host's genesis block
	Config     *params.ChainConfig `json:"config"`     // Chain configuration for the fork rules
	Head       common.Hash         `json:"head"`       // SHA3 hash of the host's best owned block
}

NodeInfo represents a short summary of the Axis sub-protocol metadata known about the host peer.

type PeerInfo

type PeerInfo struct {
	Version    int      `json:"version"`    // Axis protocol version negotiated
	Difficulty *big.Int `json:"difficulty"` // Total difficulty of the peer's blockchain
	Head       string   `json:"head"`       // SHA3 hash of the peer's best owned block
}

PeerInfo represents a short summary of the Axis sub-protocol metadata known about a connected peer.

type PrivateAdminAPI

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

PrivateAdminAPI is the collection of Axis full node-related APIs exposed over the private admin endpoint.

func NewPrivateAdminAPI

func NewPrivateAdminAPI(eth *Axis) *PrivateAdminAPI

NewPrivateAdminAPI creates a new API definition for the full node private admin methods of the Axis service.

func (*PrivateAdminAPI) Close

func (api *PrivateAdminAPI) Close()

func (*PrivateAdminAPI) ExportChain

func (api *PrivateAdminAPI) ExportChain(file string) (bool, error)

ExportChain exports the current blockchain into a local file.

func (*PrivateAdminAPI) ImportChain

func (api *PrivateAdminAPI) ImportChain(file string) (bool, error)

ImportChain imports a blockchain from a local file.

type PrivateDebugAPI

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

PrivateDebugAPI is the collection of Axis full node APIs exposed over the private debugging endpoint.

func NewPrivateDebugAPI

func NewPrivateDebugAPI(config *params.ChainConfig, eth *Axis) *PrivateDebugAPI

NewPrivateDebugAPI creates a new API definition for the full node-related private debug methods of the Axis service.

func (*PrivateDebugAPI) GetBadBlocks

func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs, error)

GetBadBlocks returns a list of the last 'bad blocks' that the client has seen on the network and returns them as a JSON list of block-hashes

func (*PrivateDebugAPI) GetModifiedAccountsByHash

func (api *PrivateDebugAPI) GetModifiedAccountsByHash(startHash common.Hash, endHash *common.Hash) ([]common.Address, error)

GetModifiedAccountsByHash returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash, or storage hash.

With one parameter, returns the list of accounts modified in the specified block.

func (*PrivateDebugAPI) GetModifiedAccountsByNumber

func (api *PrivateDebugAPI) GetModifiedAccountsByNumber(startNum uint64, endNum *uint64) ([]common.Address, error)

GetModifiedAccountsByNumber returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash, or storage hash.

With one parameter, returns the list of accounts modified in the specified block.

func (*PrivateDebugAPI) Preimage

func (api *PrivateDebugAPI) Preimage(ctx context.Context, hash common.Hash) (hexutil.Bytes, error)

Preimage is a debug API function that returns the preimage for a sha3 hash, if known.

func (*PrivateDebugAPI) StorageRangeAt

func (api *PrivateDebugAPI) StorageRangeAt(ctx context.Context, blockHash common.Hash, txIndex int, contractAddress common.Address, keyStart hexutil.Bytes, maxResult int) (StorageRangeResult, error)

StorageRangeAt returns the storage at the given block height and transaction index.

func (*PrivateDebugAPI) TraceBlock

func (api *PrivateDebugAPI) TraceBlock(ctx context.Context, blob []byte, config *TraceConfig) ([]*txTraceResult, error)

TraceBlock returns the structured logs created during the execution of EVM and returns them as a JSON object.

func (*PrivateDebugAPI) TraceBlockByHash

func (api *PrivateDebugAPI) TraceBlockByHash(ctx context.Context, hash common.Hash, config *TraceConfig) ([]*txTraceResult, error)

TraceBlockByHash returns the structured logs created during the execution of EVM and returns them as a JSON object.

func (*PrivateDebugAPI) TraceBlockByNumber

func (api *PrivateDebugAPI) TraceBlockByNumber(ctx context.Context, number rpc.BlockNumber, config *TraceConfig) ([]*txTraceResult, error)

TraceBlockByNumber returns the structured logs created during the execution of EVM and returns them as a JSON object.

func (*PrivateDebugAPI) TraceBlockFromFile

func (api *PrivateDebugAPI) TraceBlockFromFile(ctx context.Context, file string, config *TraceConfig) ([]*txTraceResult, error)

TraceBlockFromFile returns the structured logs created during the execution of EVM and returns them as a JSON object.

func (*PrivateDebugAPI) TraceChain

func (api *PrivateDebugAPI) TraceChain(ctx context.Context, start, end rpc.BlockNumber, config *TraceConfig) (*rpc.Subscription, error)

TraceChain returns the structured logs created during the execution of EVM between two blocks (excluding start) and returns them as a JSON object.

func (*PrivateDebugAPI) TraceTransaction

func (api *PrivateDebugAPI) TraceTransaction(ctx context.Context, hash common.Hash, config *TraceConfig) (interface{}, error)

TraceTransaction returns the structured logs created during the execution of EVM and returns them as a JSON object.

type PrivateMinerAPI

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

PrivateMinerAPI provides private RPC methods to control the miner. These methods can be abused by external users and must be considered insecure for use by untrusted users.

func NewPrivateMinerAPI

func NewPrivateMinerAPI(e *Axis) *PrivateMinerAPI

NewPrivateMinerAPI create a new RPC service which controls the miner of this node.

func (*PrivateMinerAPI) GetHashrate

func (api *PrivateMinerAPI) GetHashrate() uint64

GetHashrate returns the current hashrate of the miner.

func (*PrivateMinerAPI) SetAxisbase

func (api *PrivateMinerAPI) SetAxisbase(axisbase address.MixBase58Adrress) bool

SetAxisbase sets the axisbase of the miner

func (*PrivateMinerAPI) SetExtra

func (api *PrivateMinerAPI) SetExtra(extra string) (bool, error)

SetExtra sets the extra data string that is included when this miner mines a block.

func (*PrivateMinerAPI) SetGasPrice

func (api *PrivateMinerAPI) SetGasPrice(gasPrice hexutil.Big) bool

SetGasPrice sets the minimum accepted gas price for the miner.

func (*PrivateMinerAPI) Start

func (api *PrivateMinerAPI) Start(threads *int) error

Start the miner with the given number of threads. If threads is nil the number of workers started is equal to the number of logical CPUs that are usable by this process. If mining is already running, this method adjust the number of threads allowed to use.

func (*PrivateMinerAPI) Stop

func (api *PrivateMinerAPI) Stop() bool

Stop the miner

type ProtocolManager

type ProtocolManager struct {
	SubProtocols []p2p.Protocol
	// contains filtered or unexported fields
}

func NewProtocolManager

func NewProtocolManager(config *params.ChainConfig, mode downloader.SyncMode, networkID uint64, mux *event.TypeMux, voter shareVoter, txpool txPool, engine consensus.Engine, blockchain *core.BlockChain, chaindb axisdb.Database) (*ProtocolManager, error)

NewProtocolManager returns a new Axis sub protocol manager. The Axis sub protocol manages peers capable with the Axis network.

func (*ProtocolManager) BroadcastBlock

func (pm *ProtocolManager) BroadcastBlock(block *types.Block, propagate bool)

BroadcastBlock will either propagate a block to a subset of it's peers, or will only announce it's availability (depending what's requested).

func (*ProtocolManager) BroadcastLottery

func (pm *ProtocolManager) BroadcastLottery(lottery *types.Lottery)

func (*ProtocolManager) BroadcastTxs

func (pm *ProtocolManager) BroadcastTxs(txs types.Transactions)

BroadcastTxs will propagate a batch of transactions to all peers which are not known to already have the given transaction.

func (*ProtocolManager) BroadcastVote

func (pm *ProtocolManager) BroadcastVote(vote *types.Vote)

func (*ProtocolManager) NodeInfo

func (pm *ProtocolManager) NodeInfo() *NodeInfo

NodeInfo retrieves some protocol metadata about the running host node.

func (*ProtocolManager) Start

func (pm *ProtocolManager) Start(maxPeers int)

func (*ProtocolManager) Stop

func (pm *ProtocolManager) Stop()

type PublicAxisAPI

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

PublicAxisAPI provides an API to access Axis full node-related information.

func NewPublicAxisAPI

func NewPublicAxisAPI(e *Axis) *PublicAxisAPI

NewPublicAxisAPI creates a new Axis protocol API for full nodes.

func (*PublicAxisAPI) Axisbase

func (api *PublicAxisAPI) Axisbase() (address.PKAddress, error)

Axisbase is the address that mining rewards will be send to

func (*PublicAxisAPI) Coinbase

func (api *PublicAxisAPI) Coinbase() (address.PKAddress, error)

Coinbase is the address that mining rewards will be send to (alias for Axisbase)

func (*PublicAxisAPI) Hashrate

func (api *PublicAxisAPI) Hashrate() hexutil.Uint64

Hashrate returns the POW hashrate

func (*PublicAxisAPI) StartHashrate

func (api *PublicAxisAPI) StartHashrate()

func (*PublicAxisAPI) StopHashrate

func (api *PublicAxisAPI) StopHashrate()

type PublicDebugAPI

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

PublicDebugAPI is the collection of Axis full node APIs exposed over the public debugging endpoint.

func NewPublicDebugAPI

func NewPublicDebugAPI(eth *Axis) *PublicDebugAPI

NewPublicDebugAPI creates a new API definition for the full node- related public debug methods of the Axis service.

func (*PublicDebugAPI) DumpBlock

func (api *PublicDebugAPI) DumpBlock(blockNr rpc.BlockNumber) (state.Dump, error)

DumpBlock retrieves the entire state of the database at a given block.

type PublicMinerAPI

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

PublicMinerAPI provides an API to control the miner. It offers only methods that operate on data that pose no security risk when it is publicly accessible.

func NewPublicMinerAPI

func NewPublicMinerAPI(e *Axis) *PublicMinerAPI

NewPublicMinerAPI create a new PublicMinerAPI instance.

func (*PublicMinerAPI) GetWork

func (api *PublicMinerAPI) GetWork() ([4]string, error)

GetWork returns a work package for external miner. The work package consists of 3 strings result[0], 32 bytes hex encoded current block header pow-hash result[1], 32 bytes hex encoded seed hash used for DAG result[2], 32 bytes hex encoded boundary condition ("target"), 2^256/difficulty

func (*PublicMinerAPI) Mining

func (api *PublicMinerAPI) Mining() bool

Mining returns an indication if this node is currently mining.

func (*PublicMinerAPI) SubmitHashrate

func (api *PublicMinerAPI) SubmitHashrate(hashrate hexutil.Uint64, id common.Hash) bool

SubmitHashrate can be used for remote miners to submit their hash rate. This enables the node to report the combined hash rate of all miners which submit work through this node. It accepts the miner hash rate and an identifier which must be unique between nodes.

func (*PublicMinerAPI) SubmitWork

func (api *PublicMinerAPI) SubmitWork(nonce types.BlockNonce, solution, digest common.Hash) bool

SubmitWork can be used by external miner to submit their POW solution. It returns an indication if the work was accepted. Note, this is not an indication if the provided work was valid!

type StorageRangeResult

type StorageRangeResult struct {
	Storage storageMap   `json:"storage"`
	NextKey *common.Hash `json:"nextKey"` // nil if Storage includes the last key in the trie.
}

StorageRangeResult is the result of a debug_storageRangeAt API call.

type TraceConfig

type TraceConfig struct {
	*vm.LogConfig
	Tracer  *string
	Timeout *string
	Reexec  *uint64
}

TraceConfig holds extra parameters to trace functions.

Directories

Path Synopsis
Package downloader contains the manual full chain synchronisation.
Package downloader contains the manual full chain synchronisation.
Package fetcher contains the block announcement based synchronisation.
Package fetcher contains the block announcement based synchronisation.
Package filters implements an axis filtering system for block, transactions and log events.
Package filters implements an axis filtering system for block, transactions and log events.
Package tracers is a collection of JavaScript transaction tracers.
Package tracers is a collection of JavaScript transaction tracers.
internal/tracers
Package tracers contains the actual JavaScript tracer assets.
Package tracers contains the actual JavaScript tracer assets.

Jump to

Keyboard shortcuts

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