Documentation ¶
Index ¶
- func GenerateInitialPublicKeys(baseAddress []byte, isForCurrentShard func(address []byte) bool) [][]byte
- func NewDeployLibrarySC(arg ArgDeployLibrarySC) (*deployLibrarySC, error)
- func NewDeployProcessor(arg ArgDeployProcessor) (*deployProcessor, error)
- func NewNodesListSplitter(initialNodesSetup genesis.InitialNodesHandler, ...) (*nodesListSplitter, error)
- func NewStandardDelegationProcessor(arg ArgStandardDelegationProcessor) (*standardDelegationProcessor, error)
- func NewTxExecutionProcessor(txProcessor process.TransactionProcessor, accounts state.AccountsAdapter) (*txExecutionProcessor, error)
- type ArgDeployLibrarySC
- type ArgDeployProcessor
- type ArgStandardDelegationProcessor
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenerateInitialPublicKeys ¶ added in v1.0.133
func GenerateInitialPublicKeys( baseAddress []byte, isForCurrentShard func(address []byte) bool, ) [][]byte
GenerateInitialPublicKeys will create public keys for given shard or for all shards in case of deployment to common.MaxNumShards
func NewDeployLibrarySC ¶ added in v1.0.133
func NewDeployLibrarySC(arg ArgDeployLibrarySC) (*deployLibrarySC, error)
NewDeployLibrarySC returns a new instance of deploy library SC able to deploy library SC that needs to be present on all shards - same contract is deployed common.MaxNumShards == 256 times with addresses which end with all possibilities of the last byte
func NewDeployProcessor ¶
func NewDeployProcessor(arg ArgDeployProcessor) (*deployProcessor, error)
NewDeployProcessor returns a new instance of deploy processor able to deploy SC
func NewNodesListSplitter ¶
func NewNodesListSplitter( initialNodesSetup genesis.InitialNodesHandler, accountsParser genesis.AccountsParser, ) (*nodesListSplitter, error)
NewNodesListSplitter returns an instance able to split the nodes by some criterias
func NewStandardDelegationProcessor ¶ added in v1.0.116
func NewStandardDelegationProcessor(arg ArgStandardDelegationProcessor) (*standardDelegationProcessor, error)
NewStandardDelegationProcessor returns a new standard delegation processor instance
func NewTxExecutionProcessor ¶
func NewTxExecutionProcessor( txProcessor process.TransactionProcessor, accounts state.AccountsAdapter, ) (*txExecutionProcessor, error)
NewTxExecutionProcessor is able to execute a transaction
Types ¶
type ArgDeployLibrarySC ¶ added in v1.0.133
type ArgDeployLibrarySC struct { Executor genesis.TxExecutionProcessor PubkeyConv core.PubkeyConverter BlockchainHook process.BlockChainHookHandler ShardCoordinator sharding.Coordinator }
ArgDeployLibrarySC is the argument used to create a deployLibrarySC instance
type ArgDeployProcessor ¶ added in v1.0.116
type ArgDeployProcessor struct { Executor genesis.TxExecutionProcessor PubkeyConv core.PubkeyConverter BlockchainHook process.BlockChainHookHandler QueryService external.SCQueryService }
ArgDeployProcessor is the argument used to create a deployProcessor instance
type ArgStandardDelegationProcessor ¶ added in v1.0.116
type ArgStandardDelegationProcessor struct { Executor genesis.TxExecutionProcessor ShardCoordinator sharding.Coordinator AccountsParser genesis.AccountsParser SmartContractParser genesis.InitialSmartContractParser NodesListSplitter genesis.NodesListSplitter QueryService external.SCQueryService NodePrice *big.Int }
ArgStandardDelegationProcessor is the argument used to construct a standard delegation processor