mock

package
v3.0.1 Latest Latest
Warning

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

Go to latest
Published: Dec 26, 2023 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

Package mock is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockArchiveService

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

MockArchiveService is a mock of ArchiveService interface.

func NewMockArchiveService

func NewMockArchiveService(ctrl *gomock.Controller) *MockArchiveService

NewMockArchiveService creates a new mock instance.

func (*MockArchiveService) ArchiveBlock

func (m *MockArchiveService) ArchiveBlock(block *common.BlockInfo) error

ArchiveBlock mocks base method.

func (*MockArchiveService) ArchiveBlocks

func (m *MockArchiveService) ArchiveBlocks(bi chainmaker_sdk_go.BlockIterator, heightNoticeCallback func(chainmaker_sdk_go.ProcessMessage) error) error

ArchiveBlocks mocks base method.

func (*MockArchiveService) Close

func (m *MockArchiveService) Close() error

Close mocks base method.

func (*MockArchiveService) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockArchiveService) GetArchivedStatus

func (m *MockArchiveService) GetArchivedStatus() (uint64, bool, uint32, error)

GetArchivedStatus mocks base method.

func (*MockArchiveService) GetBlockByHash

func (m *MockArchiveService) GetBlockByHash(blockHash string, withRWSet bool) (*common.BlockInfo, error)

GetBlockByHash mocks base method.

func (*MockArchiveService) GetBlockByHeight

func (m *MockArchiveService) GetBlockByHeight(blockHeight uint64, withRWSet bool) (*common.BlockInfo, error)

GetBlockByHeight mocks base method.

func (*MockArchiveService) GetBlockByTxId

func (m *MockArchiveService) GetBlockByTxId(txId string, withRWSet bool) (*common.BlockInfo, error)

GetBlockByTxId mocks base method.

func (*MockArchiveService) GetChainConfigByBlockHeight

func (m *MockArchiveService) GetChainConfigByBlockHeight(blockHeight uint64) (*config.ChainConfig, error)

GetChainConfigByBlockHeight mocks base method.

func (*MockArchiveService) GetTxByTxId

func (m *MockArchiveService) GetTxByTxId(txId string) (*common.TransactionInfo, error)

GetTxByTxId mocks base method.

func (*MockArchiveService) GetTxWithRWSetByTxId

func (m *MockArchiveService) GetTxWithRWSetByTxId(txId string) (*common.TransactionInfoWithRWSet, error)

GetTxWithRWSetByTxId mocks base method.

func (*MockArchiveService) Register

func (m *MockArchiveService) Register(genesis *common.BlockInfo) error

Register mocks base method.

type MockArchiveServiceMockRecorder

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

MockArchiveServiceMockRecorder is the mock recorder for MockArchiveService.

func (*MockArchiveServiceMockRecorder) ArchiveBlock

func (mr *MockArchiveServiceMockRecorder) ArchiveBlock(block interface{}) *gomock.Call

ArchiveBlock indicates an expected call of ArchiveBlock.

func (*MockArchiveServiceMockRecorder) ArchiveBlocks

func (mr *MockArchiveServiceMockRecorder) ArchiveBlocks(bi, heightNoticeCallback interface{}) *gomock.Call

ArchiveBlocks indicates an expected call of ArchiveBlocks.

func (*MockArchiveServiceMockRecorder) Close

Close indicates an expected call of Close.

func (*MockArchiveServiceMockRecorder) GetArchivedStatus

func (mr *MockArchiveServiceMockRecorder) GetArchivedStatus() *gomock.Call

GetArchivedStatus indicates an expected call of GetArchivedStatus.

func (*MockArchiveServiceMockRecorder) GetBlockByHash

func (mr *MockArchiveServiceMockRecorder) GetBlockByHash(blockHash, withRWSet interface{}) *gomock.Call

GetBlockByHash indicates an expected call of GetBlockByHash.

func (*MockArchiveServiceMockRecorder) GetBlockByHeight

func (mr *MockArchiveServiceMockRecorder) GetBlockByHeight(blockHeight, withRWSet interface{}) *gomock.Call

GetBlockByHeight indicates an expected call of GetBlockByHeight.

func (*MockArchiveServiceMockRecorder) GetBlockByTxId

func (mr *MockArchiveServiceMockRecorder) GetBlockByTxId(txId, withRWSet interface{}) *gomock.Call

GetBlockByTxId indicates an expected call of GetBlockByTxId.

func (*MockArchiveServiceMockRecorder) GetChainConfigByBlockHeight

func (mr *MockArchiveServiceMockRecorder) GetChainConfigByBlockHeight(blockHeight interface{}) *gomock.Call

GetChainConfigByBlockHeight indicates an expected call of GetChainConfigByBlockHeight.

func (*MockArchiveServiceMockRecorder) GetTxByTxId

func (mr *MockArchiveServiceMockRecorder) GetTxByTxId(txId interface{}) *gomock.Call

GetTxByTxId indicates an expected call of GetTxByTxId.

func (*MockArchiveServiceMockRecorder) GetTxWithRWSetByTxId

func (mr *MockArchiveServiceMockRecorder) GetTxWithRWSetByTxId(txId interface{}) *gomock.Call

GetTxWithRWSetByTxId indicates an expected call of GetTxWithRWSetByTxId.

func (*MockArchiveServiceMockRecorder) Register

func (mr *MockArchiveServiceMockRecorder) Register(genesis interface{}) *gomock.Call

Register indicates an expected call of Register.

type MockBlockIterator

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

MockBlockIterator is a mock of BlockIterator interface.

func NewMockBlockIterator

func NewMockBlockIterator(ctrl *gomock.Controller) *MockBlockIterator

NewMockBlockIterator creates a new mock instance.

func (*MockBlockIterator) Current

func (m *MockBlockIterator) Current() uint64

Current mocks base method.

func (*MockBlockIterator) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockBlockIterator) Next

func (m *MockBlockIterator) Next() bool

Next mocks base method.

func (*MockBlockIterator) Release

func (m *MockBlockIterator) Release()

Release mocks base method.

func (*MockBlockIterator) Total

func (m *MockBlockIterator) Total() uint64

Total mocks base method.

func (*MockBlockIterator) Value

func (m *MockBlockIterator) Value() (*common.BlockInfo, error)

Value mocks base method.

type MockBlockIteratorMockRecorder

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

MockBlockIteratorMockRecorder is the mock recorder for MockBlockIterator.

func (*MockBlockIteratorMockRecorder) Current

func (mr *MockBlockIteratorMockRecorder) Current() *gomock.Call

Current indicates an expected call of Current.

func (*MockBlockIteratorMockRecorder) Next

Next indicates an expected call of Next.

func (*MockBlockIteratorMockRecorder) Release

func (mr *MockBlockIteratorMockRecorder) Release() *gomock.Call

Release indicates an expected call of Release.

func (*MockBlockIteratorMockRecorder) Total

Total indicates an expected call of Total.

func (*MockBlockIteratorMockRecorder) Value

Value indicates an expected call of Value.

type MockSDKInterface

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

MockSDKInterface is a mock of SDKInterface interface.

func NewMockSDKInterface

func NewMockSDKInterface(ctrl *gomock.Controller) *MockSDKInterface

NewMockSDKInterface creates a new mock instance.

func (*MockSDKInterface) AddAlias

func (m *MockSDKInterface) AddAlias() (*common.TxResponse, error)

AddAlias mocks base method.

func (*MockSDKInterface) AddCert

func (m *MockSDKInterface) AddCert() (*common.TxResponse, error)

AddCert mocks base method.

func (*MockSDKInterface) ArchiveBlocks

func (m *MockSDKInterface) ArchiveBlocks(archiveHeight uint64, mode string, heightNoticeCallback func(chainmaker_sdk_go.ProcessMessage) error) error

ArchiveBlocks mocks base method.

func (*MockSDKInterface) AttachGasLimit

func (m *MockSDKInterface) AttachGasLimit(payload *common.Payload, limit *common.Limit) *common.Payload

AttachGasLimit mocks base method.

func (*MockSDKInterface) BalanceOf

func (m *MockSDKInterface) BalanceOf(address string) (*utils.BigInteger, error)

BalanceOf mocks base method.

func (*MockSDKInterface) CheckCallerCertAuth

func (m *MockSDKInterface) CheckCallerCertAuth(payload string, orgIds []string, signPairs []*syscontract.SignInfo) (*common.TxResponse, error)

CheckCallerCertAuth mocks base method.

func (*MockSDKInterface) CreateArchiveBlockPayload

func (m *MockSDKInterface) CreateArchiveBlockPayload(targetBlockHeight uint64) (*common.Payload, error)

CreateArchiveBlockPayload mocks base method.

func (*MockSDKInterface) CreateCertManageFrozenPayload

func (m *MockSDKInterface) CreateCertManageFrozenPayload(certs []string) *common.Payload

CreateCertManageFrozenPayload mocks base method.

func (*MockSDKInterface) CreateCertManagePayload

func (m *MockSDKInterface) CreateCertManagePayload(method string, kvs []*common.KeyValuePair) *common.Payload

CreateCertManagePayload mocks base method.

func (*MockSDKInterface) CreateCertManageRevocationPayload

func (m *MockSDKInterface) CreateCertManageRevocationPayload(certCrl string) *common.Payload

CreateCertManageRevocationPayload mocks base method.

func (*MockSDKInterface) CreateCertManageUnfrozenPayload

func (m *MockSDKInterface) CreateCertManageUnfrozenPayload(certs []string) *common.Payload

CreateCertManageUnfrozenPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigAlterAddrTypePayload

func (m *MockSDKInterface) CreateChainConfigAlterAddrTypePayload(addrType string) (*common.Payload, error)

CreateChainConfigAlterAddrTypePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigBlockUpdatePayload

func (m *MockSDKInterface) CreateChainConfigBlockUpdatePayload(txTimestampVerify, blockTimestampVerify bool, txTimeout, blockTimeout, blockTxCapacity, blockSize, blockInterval, txParamterSize uint32) (*common.Payload, error)

CreateChainConfigBlockUpdatePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusExtAddPayload

func (m *MockSDKInterface) CreateChainConfigConsensusExtAddPayload(kvs []*common.KeyValuePair) (*common.Payload, error)

CreateChainConfigConsensusExtAddPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusExtDeletePayload

func (m *MockSDKInterface) CreateChainConfigConsensusExtDeletePayload(keys []string) (*common.Payload, error)

CreateChainConfigConsensusExtDeletePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusExtUpdatePayload

func (m *MockSDKInterface) CreateChainConfigConsensusExtUpdatePayload(kvs []*common.KeyValuePair) (*common.Payload, error)

CreateChainConfigConsensusExtUpdatePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusNodeIdAddPayload

func (m *MockSDKInterface) CreateChainConfigConsensusNodeIdAddPayload(nodeOrgId string, nodeIds []string) (*common.Payload, error)

CreateChainConfigConsensusNodeIdAddPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusNodeIdDeletePayload

func (m *MockSDKInterface) CreateChainConfigConsensusNodeIdDeletePayload(nodeOrgId, nodeId string) (*common.Payload, error)

CreateChainConfigConsensusNodeIdDeletePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusNodeIdUpdatePayload

func (m *MockSDKInterface) CreateChainConfigConsensusNodeIdUpdatePayload(nodeOrgId, nodeOldNodeId, nodeNewNodeId string) (*common.Payload, error)

CreateChainConfigConsensusNodeIdUpdatePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusNodeOrgAddPayload

func (m *MockSDKInterface) CreateChainConfigConsensusNodeOrgAddPayload(nodeOrgId string, nodeIds []string) (*common.Payload, error)

CreateChainConfigConsensusNodeOrgAddPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusNodeOrgDeletePayload

func (m *MockSDKInterface) CreateChainConfigConsensusNodeOrgDeletePayload(nodeOrgId string) (*common.Payload, error)

CreateChainConfigConsensusNodeOrgDeletePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigConsensusNodeOrgUpdatePayload

func (m *MockSDKInterface) CreateChainConfigConsensusNodeOrgUpdatePayload(nodeOrgId string, nodeIds []string) (*common.Payload, error)

CreateChainConfigConsensusNodeOrgUpdatePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigCoreUpdatePayload

func (m *MockSDKInterface) CreateChainConfigCoreUpdatePayload(txSchedulerTimeout, txSchedulerValidateTimeout uint64) (*common.Payload, error)

CreateChainConfigCoreUpdatePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigEnableOrDisableGasPayload

func (m *MockSDKInterface) CreateChainConfigEnableOrDisableGasPayload() (*common.Payload, error)

CreateChainConfigEnableOrDisableGasPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigOptimizeChargeGasPayload

func (m *MockSDKInterface) CreateChainConfigOptimizeChargeGasPayload(enable bool) (*common.Payload, error)

CreateChainConfigOptimizeChargeGasPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigPermissionAddPayload

func (m *MockSDKInterface) CreateChainConfigPermissionAddPayload(permissionResourceName string, policy *accesscontrol.Policy) (*common.Payload, error)

CreateChainConfigPermissionAddPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigPermissionDeletePayload

func (m *MockSDKInterface) CreateChainConfigPermissionDeletePayload(permissionResourceName string) (*common.Payload, error)

CreateChainConfigPermissionDeletePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigPermissionUpdatePayload

func (m *MockSDKInterface) CreateChainConfigPermissionUpdatePayload(permissionResourceName string, policy *accesscontrol.Policy) (*common.Payload, error)

CreateChainConfigPermissionUpdatePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigTrustMemberAddPayload

func (m *MockSDKInterface) CreateChainConfigTrustMemberAddPayload(trustMemberOrgId, trustMemberNodeId, trustMemberRole, trustMemberInfo string) (*common.Payload, error)

CreateChainConfigTrustMemberAddPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigTrustMemberDeletePayload

func (m *MockSDKInterface) CreateChainConfigTrustMemberDeletePayload(trustMemberInfo string) (*common.Payload, error)

CreateChainConfigTrustMemberDeletePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigTrustRootAddPayload

func (m *MockSDKInterface) CreateChainConfigTrustRootAddPayload(trustRootOrgId string, trustRootCrt []string) (*common.Payload, error)

CreateChainConfigTrustRootAddPayload mocks base method.

func (*MockSDKInterface) CreateChainConfigTrustRootDeletePayload

func (m *MockSDKInterface) CreateChainConfigTrustRootDeletePayload(orgIdOrPKPubkeyPEM string) (*common.Payload, error)

CreateChainConfigTrustRootDeletePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigTrustRootUpdatePayload

func (m *MockSDKInterface) CreateChainConfigTrustRootUpdatePayload(trustRootOrgId string, trustRootCrt []string) (*common.Payload, error)

CreateChainConfigTrustRootUpdatePayload mocks base method.

func (*MockSDKInterface) CreateChainConfigVMSupportListAddPayload

func (m *MockSDKInterface) CreateChainConfigVMSupportListAddPayload(vmType string) (*common.Payload, error)

CreateChainConfigVMSupportListAddPayload mocks base method.

func (*MockSDKInterface) CreateContractCreatePayload

func (m *MockSDKInterface) CreateContractCreatePayload(contractName, version, byteCodeStringOrFilePath string, runtime common.RuntimeType, kvs []*common.KeyValuePair) (*common.Payload, error)

CreateContractCreatePayload mocks base method.

func (*MockSDKInterface) CreateContractFreezePayload

func (m *MockSDKInterface) CreateContractFreezePayload(contractName string) (*common.Payload, error)

CreateContractFreezePayload mocks base method.

func (*MockSDKInterface) CreateContractRevokePayload

func (m *MockSDKInterface) CreateContractRevokePayload(contractName string) (*common.Payload, error)

CreateContractRevokePayload mocks base method.

func (*MockSDKInterface) CreateContractUnfreezePayload

func (m *MockSDKInterface) CreateContractUnfreezePayload(contractName string) (*common.Payload, error)

CreateContractUnfreezePayload mocks base method.

func (*MockSDKInterface) CreateContractUpgradePayload

func (m *MockSDKInterface) CreateContractUpgradePayload(contractName, version, byteCodeStringOrFilePath string, runtime common.RuntimeType, kvs []*common.KeyValuePair) (*common.Payload, error)

CreateContractUpgradePayload mocks base method.

func (*MockSDKInterface) CreateDeleteCertsAliasPayload

func (m *MockSDKInterface) CreateDeleteCertsAliasPayload(aliases []string) *common.Payload

CreateDeleteCertsAliasPayload mocks base method.

func (*MockSDKInterface) CreateFrozenGasAccountPayload

func (m *MockSDKInterface) CreateFrozenGasAccountPayload(address string) (*common.Payload, error)

CreateFrozenGasAccountPayload mocks base method.

func (*MockSDKInterface) CreateHibeInitParamsTxPayloadParams

func (m *MockSDKInterface) CreateHibeInitParamsTxPayloadParams(orgId string, hibeParams []byte) ([]*common.KeyValuePair, error)

CreateHibeInitParamsTxPayloadParams mocks base method.

func (*MockSDKInterface) CreateHibeTxPayloadParamsWithHibeParams

func (m *MockSDKInterface) CreateHibeTxPayloadParamsWithHibeParams(plaintext []byte, receiverIds []string, paramsBytesList [][]byte, txId string, keyType crypto.KeyType) ([]*common.KeyValuePair, error)

CreateHibeTxPayloadParamsWithHibeParams mocks base method.

func (*MockSDKInterface) CreateHibeTxPayloadParamsWithoutHibeParams

func (m *MockSDKInterface) CreateHibeTxPayloadParamsWithoutHibeParams(contractName, queryParamsMethod string, plaintext []byte, receiverIds, receiverOrgIds []string, txId string, keyType crypto.KeyType, timeout int64) ([]*common.KeyValuePair, error)

CreateHibeTxPayloadParamsWithoutHibeParams mocks base method.

func (*MockSDKInterface) CreateMultiSignReqPayload

func (m *MockSDKInterface) CreateMultiSignReqPayload(pairs []*common.KeyValuePair) *common.Payload

CreateMultiSignReqPayload mocks base method.

func (*MockSDKInterface) CreateMultiSignReqPayloadWithGasLimit

func (m *MockSDKInterface) CreateMultiSignReqPayloadWithGasLimit(pairs []*common.KeyValuePair, gasLimit uint64) *common.Payload

CreateMultiSignReqPayloadWithGasLimit mocks base method.

func (*MockSDKInterface) CreateNativeContractAccessGrantPayload

func (m *MockSDKInterface) CreateNativeContractAccessGrantPayload(grantContractList []string) (*common.Payload, error)

CreateNativeContractAccessGrantPayload mocks base method.

func (*MockSDKInterface) CreateNativeContractAccessRevokePayload

func (m *MockSDKInterface) CreateNativeContractAccessRevokePayload(revokeContractList []string) (*common.Payload, error)

CreateNativeContractAccessRevokePayload mocks base method.

func (*MockSDKInterface) CreatePubkeyAddPayload

func (m *MockSDKInterface) CreatePubkeyAddPayload(pubkey, orgId, role string) (*common.Payload, error)

CreatePubkeyAddPayload mocks base method.

func (*MockSDKInterface) CreatePubkeyDelPayload

func (m *MockSDKInterface) CreatePubkeyDelPayload(pubkey, orgId string) (*common.Payload, error)

CreatePubkeyDelPayload mocks base method.

func (*MockSDKInterface) CreatePubkeyQueryPayload

func (m *MockSDKInterface) CreatePubkeyQueryPayload(pubkey string) (*common.Payload, error)

CreatePubkeyQueryPayload mocks base method.

func (*MockSDKInterface) CreateRaftToTbftPayload

func (m *MockSDKInterface) CreateRaftToTbftPayload(extConfig []*common.KeyValuePair) (*common.Payload, error)

CreateRaftToTbftPayload mocks base method.

func (*MockSDKInterface) CreateRechargeGasPayload

func (m *MockSDKInterface) CreateRechargeGasPayload(rechargeGasList []*syscontract.RechargeGas) (*common.Payload, error)

CreateRechargeGasPayload mocks base method.

func (*MockSDKInterface) CreateRefundGasPayload

func (m *MockSDKInterface) CreateRefundGasPayload(address string, amount int64) (*common.Payload, error)

CreateRefundGasPayload mocks base method.

func (*MockSDKInterface) CreateRestoreBlockPayload

func (m *MockSDKInterface) CreateRestoreBlockPayload(fullBlock []byte) (*common.Payload, error)

CreateRestoreBlockPayload mocks base method.

func (*MockSDKInterface) CreateSaveEnclaveCACertPayload

func (m *MockSDKInterface) CreateSaveEnclaveCACertPayload(caCert, txId string) (*common.Payload, error)

CreateSaveEnclaveCACertPayload mocks base method.

func (*MockSDKInterface) CreateSaveEnclaveReportPayload

func (m *MockSDKInterface) CreateSaveEnclaveReportPayload(enclaveId, report, txId string) (*common.Payload, error)

CreateSaveEnclaveReportPayload mocks base method.

func (*MockSDKInterface) CreateSetGasAdminPayload

func (m *MockSDKInterface) CreateSetGasAdminPayload(address string) (*common.Payload, error)

CreateSetGasAdminPayload mocks base method.

func (*MockSDKInterface) CreateSetInstallBaseGasPayload

func (m *MockSDKInterface) CreateSetInstallBaseGasPayload(installBaseGas int64) (*common.Payload, error)

CreateSetInstallBaseGasPayload mocks base method.

func (*MockSDKInterface) CreateSetInstallGasPricePayload

func (m *MockSDKInterface) CreateSetInstallGasPricePayload(installGasPrice string) (*common.Payload, error)

CreateSetInstallGasPricePayload mocks base method.

func (*MockSDKInterface) CreateSetInvokeBaseGasPayload

func (m *MockSDKInterface) CreateSetInvokeBaseGasPayload(invokeBaseGas int64) (*common.Payload, error)

CreateSetInvokeBaseGasPayload mocks base method.

func (*MockSDKInterface) CreateSetInvokeGasPricePayload

func (m *MockSDKInterface) CreateSetInvokeGasPricePayload(invokeGasPrice string) (*common.Payload, error)

CreateSetInvokeGasPricePayload mocks base method.

func (*MockSDKInterface) CreateTbftToRaftPayload

func (m *MockSDKInterface) CreateTbftToRaftPayload(extConfig []*common.KeyValuePair) (*common.Payload, error)

CreateTbftToRaftPayload mocks base method.

func (*MockSDKInterface) CreateUnfrozenGasAccountPayload

func (m *MockSDKInterface) CreateUnfrozenGasAccountPayload(address string) (*common.Payload, error)

CreateUnfrozenGasAccountPayload mocks base method.

func (*MockSDKInterface) CreateUpdateCertByAliasPayload

func (m *MockSDKInterface) CreateUpdateCertByAliasPayload(alias, newCertPEM string) *common.Payload

CreateUpdateCertByAliasPayload mocks base method.

func (*MockSDKInterface) Decimals

func (m *MockSDKInterface) Decimals() (string, error)

Decimals mocks base method.

func (*MockSDKInterface) DecryptHibeTxByTxId

func (m *MockSDKInterface) DecryptHibeTxByTxId(localId string, hibeParams, hibePrvKey []byte, txId string, keyType crypto.KeyType) ([]byte, error)

DecryptHibeTxByTxId mocks base method.

func (*MockSDKInterface) Delegate

func (m *MockSDKInterface) Delegate(to, value string) (*syscontract.Delegation, error)

Delegate mocks base method.

func (*MockSDKInterface) DeleteCert

func (m *MockSDKInterface) DeleteCert(certHashes []string) (*common.TxResponse, error)

DeleteCert mocks base method.

func (*MockSDKInterface) DeleteCertsAlias

func (m *MockSDKInterface) DeleteCertsAlias(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

DeleteCertsAlias mocks base method.

func (*MockSDKInterface) DisableCertHash

func (m *MockSDKInterface) DisableCertHash() error

DisableCertHash mocks base method.

func (*MockSDKInterface) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockSDKInterface) EnableCertHash

func (m *MockSDKInterface) EnableCertHash() error

EnableCertHash mocks base method.

func (*MockSDKInterface) EstimateGas

func (m *MockSDKInterface) EstimateGas(payload *common.Payload) (uint64, error)

EstimateGas mocks base method.

func (*MockSDKInterface) EthCall

func (m *MockSDKInterface) EthCall(from, to ethbase.Address, gas uint64, gasPrice, value *ethbase.SafeUint256, data []byte) (*common.TxResponse, error)

EthCall mocks base method.

func (*MockSDKInterface) EthEstimateGas

func (m *MockSDKInterface) EthEstimateGas(from *ethbase.Address, to ethbase.Address, gas uint64, gasPrice, value *ethbase.SafeUint256, data []byte) (uint64, error)

EthEstimateGas mocks base method.

func (*MockSDKInterface) EthSendRawTx

func (m *MockSDKInterface) EthSendRawTx(rawTx []byte, timeout int64, withSyncResult bool) (*common.TxResponse, error)

EthSendRawTx mocks base method.

func (*MockSDKInterface) GetAccountContractTxHistory

func (m *MockSDKInterface) GetAccountContractTxHistory(memberInfo []byte, contractName string, options ...chainmaker_sdk_go.Option) ([]*store.TxHistory, error)

GetAccountContractTxHistory mocks base method.

func (*MockSDKInterface) GetAllCandidates

func (m *MockSDKInterface) GetAllCandidates() (*syscontract.ValidatorVector, error)

GetAllCandidates mocks base method.

func (*MockSDKInterface) GetArchiveStatus

func (m *MockSDKInterface) GetArchiveStatus() (*store.ArchiveStatus, error)

GetArchiveStatus mocks base method.

func (*MockSDKInterface) GetArchivedBlockByHash

func (m *MockSDKInterface) GetArchivedBlockByHash(blockHash string, withRWSet bool) (*common.BlockInfo, error)

GetArchivedBlockByHash mocks base method.

func (*MockSDKInterface) GetArchivedBlockByHeight

func (m *MockSDKInterface) GetArchivedBlockByHeight(blockHeight uint64, withRWSet bool) (*common.BlockInfo, error)

GetArchivedBlockByHeight mocks base method.

func (*MockSDKInterface) GetArchivedBlockByTxId

func (m *MockSDKInterface) GetArchivedBlockByTxId(txId string, withRWSet bool) (*common.BlockInfo, error)

GetArchivedBlockByTxId mocks base method.

func (*MockSDKInterface) GetArchivedBlockHeight

func (m *MockSDKInterface) GetArchivedBlockHeight() (uint64, error)

GetArchivedBlockHeight mocks base method.

func (*MockSDKInterface) GetArchivedTxByTxId

func (m *MockSDKInterface) GetArchivedTxByTxId(txId string) (*common.TransactionInfo, error)

GetArchivedTxByTxId mocks base method.

func (*MockSDKInterface) GetBlockByHash

func (m *MockSDKInterface) GetBlockByHash(blockHash string, withRWSet bool) (*common.BlockInfo, error)

GetBlockByHash mocks base method.

func (*MockSDKInterface) GetBlockByHeight

func (m *MockSDKInterface) GetBlockByHeight(blockHeight uint64, withRWSet bool) (*common.BlockInfo, error)

GetBlockByHeight mocks base method.

func (*MockSDKInterface) GetBlockByHeightTruncate

func (m *MockSDKInterface) GetBlockByHeightTruncate(blockHeight uint64, withRWSet bool, truncateLength int, truncateModel string) (*common.BlockInfo, error)

GetBlockByHeightTruncate mocks base method.

func (*MockSDKInterface) GetBlockByTxId

func (m *MockSDKInterface) GetBlockByTxId(txId string, withRWSet bool) (*common.BlockInfo, error)

GetBlockByTxId mocks base method.

func (*MockSDKInterface) GetBlockHeaderByHeight

func (m *MockSDKInterface) GetBlockHeaderByHeight(blockHeight uint64) (*common.BlockHeader, error)

GetBlockHeaderByHeight mocks base method.

func (*MockSDKInterface) GetBlockHeightByHash

func (m *MockSDKInterface) GetBlockHeightByHash(blockHash string) (uint64, error)

GetBlockHeightByHash mocks base method.

func (*MockSDKInterface) GetBlockHeightByTxId

func (m *MockSDKInterface) GetBlockHeightByTxId(txId string) (uint64, error)

GetBlockHeightByTxId mocks base method.

func (*MockSDKInterface) GetCertHash

func (m *MockSDKInterface) GetCertHash() ([]byte, error)

GetCertHash mocks base method.

func (*MockSDKInterface) GetChainConfig

func (m *MockSDKInterface) GetChainConfig() (*config.ChainConfig, error)

GetChainConfig mocks base method.

func (*MockSDKInterface) GetChainConfigByBlockHeight

func (m *MockSDKInterface) GetChainConfigByBlockHeight(blockHeight uint64) (*config.ChainConfig, error)

GetChainConfigByBlockHeight mocks base method.

func (*MockSDKInterface) GetChainConfigPermissionList

func (m *MockSDKInterface) GetChainConfigPermissionList() ([]*config.ResourcePolicy, error)

GetChainConfigPermissionList mocks base method.

func (*MockSDKInterface) GetChainConfigSequence

func (m *MockSDKInterface) GetChainConfigSequence() (uint64, error)

GetChainConfigSequence mocks base method.

func (*MockSDKInterface) GetChainInfo

func (m *MockSDKInterface) GetChainInfo() (*discovery.ChainInfo, error)

GetChainInfo mocks base method.

func (*MockSDKInterface) GetChainMakerServerVersion

func (m *MockSDKInterface) GetChainMakerServerVersion() (string, error)

GetChainMakerServerVersion mocks base method.

func (*MockSDKInterface) GetChainMakerServerVersionCustom

func (m *MockSDKInterface) GetChainMakerServerVersionCustom(ctx context.Context) (string, error)

GetChainMakerServerVersionCustom mocks base method.

func (*MockSDKInterface) GetConsensusHeight

func (m *MockSDKInterface) GetConsensusHeight() (uint64, error)

GetConsensusHeight mocks base method.

func (*MockSDKInterface) GetConsensusStateJSON

func (m *MockSDKInterface) GetConsensusStateJSON() ([]byte, error)

GetConsensusStateJSON mocks base method.

func (*MockSDKInterface) GetConsensusValidators

func (m *MockSDKInterface) GetConsensusValidators() ([]string, error)

GetConsensusValidators mocks base method.

func (*MockSDKInterface) GetContract

func (m *MockSDKInterface) GetContract(contractName, codeHash string) (*common.PrivateGetContract, error)

GetContract mocks base method.

func (*MockSDKInterface) GetContractByteCode

func (m *MockSDKInterface) GetContractByteCode(contractName string) ([]byte, error)

GetContractByteCode mocks base method.

func (*MockSDKInterface) GetContractInfo

func (m *MockSDKInterface) GetContractInfo(contractName string) (*common.Contract, error)

GetContractInfo mocks base method.

func (*MockSDKInterface) GetContractList

func (m *MockSDKInterface) GetContractList() ([]*common.Contract, error)

GetContractList mocks base method.

func (*MockSDKInterface) GetCurrentBlockHeight

func (m *MockSDKInterface) GetCurrentBlockHeight() (uint64, error)

GetCurrentBlockHeight mocks base method.

func (*MockSDKInterface) GetData

func (m *MockSDKInterface) GetData(contractName, key string) ([]byte, error)

GetData mocks base method.

func (*MockSDKInterface) GetDelegationsByAddress

func (m *MockSDKInterface) GetDelegationsByAddress(address string) (*syscontract.DelegationInfo, error)

GetDelegationsByAddress mocks base method.

func (*MockSDKInterface) GetDir

func (m *MockSDKInterface) GetDir(orderId string) ([]byte, error)

GetDir mocks base method.

func (*MockSDKInterface) GetDisabledNativeContractList

func (m *MockSDKInterface) GetDisabledNativeContractList() ([]string, error)

GetDisabledNativeContractList mocks base method.

func (*MockSDKInterface) GetDistributionByEpochId

func (m *MockSDKInterface) GetDistributionByEpochId(epochId string) (*chainmaker_sdk_go.EpochAmountDetail, error)

GetDistributionByEpochId mocks base method.

func (*MockSDKInterface) GetDistributionPerBlock

func (m *MockSDKInterface) GetDistributionPerBlock() (int, error)

GetDistributionPerBlock mocks base method.

func (*MockSDKInterface) GetEnclaveCACert

func (m *MockSDKInterface) GetEnclaveCACert() ([]byte, error)

GetEnclaveCACert mocks base method.

func (*MockSDKInterface) GetEnclaveChallenge

func (m *MockSDKInterface) GetEnclaveChallenge(enclaveId string) ([]byte, error)

GetEnclaveChallenge mocks base method.

func (*MockSDKInterface) GetEnclaveEncryptPubKey

func (m *MockSDKInterface) GetEnclaveEncryptPubKey(enclaveId string) ([]byte, error)

GetEnclaveEncryptPubKey mocks base method.

func (*MockSDKInterface) GetEnclaveProof

func (m *MockSDKInterface) GetEnclaveProof(enclaveId string) ([]byte, error)

GetEnclaveProof mocks base method.

func (*MockSDKInterface) GetEnclaveReport

func (m *MockSDKInterface) GetEnclaveReport(enclaveId string) ([]byte, error)

GetEnclaveReport mocks base method.

func (*MockSDKInterface) GetEnclaveSignature

func (m *MockSDKInterface) GetEnclaveSignature(enclaveId string) ([]byte, error)

GetEnclaveSignature mocks base method.

func (*MockSDKInterface) GetEnclaveVerificationPubKey

func (m *MockSDKInterface) GetEnclaveVerificationPubKey(enclaveId string) ([]byte, error)

GetEnclaveVerificationPubKey mocks base method.

func (*MockSDKInterface) GetEpochBlockNumber

func (m *MockSDKInterface) GetEpochBlockNumber() (int, error)

GetEpochBlockNumber mocks base method.

func (*MockSDKInterface) GetEpochById

func (m *MockSDKInterface) GetEpochById(id string) (*syscontract.Epoch, error)

GetEpochById mocks base method.

func (*MockSDKInterface) GetEpochValidatorNumber

func (m *MockSDKInterface) GetEpochValidatorNumber() (int, error)

GetEpochValidatorNumber mocks base method.

func (*MockSDKInterface) GetFullBlockByHeight

func (m *MockSDKInterface) GetFullBlockByHeight(blockHeight uint64) (*store.BlockWithRWSet, error)

GetFullBlockByHeight mocks base method.

func (*MockSDKInterface) GetGasAccountStatus

func (m *MockSDKInterface) GetGasAccountStatus(address string) (bool, error)

GetGasAccountStatus mocks base method.

func (*MockSDKInterface) GetGasAdmin

func (m *MockSDKInterface) GetGasAdmin() (string, error)

GetGasAdmin mocks base method.

func (*MockSDKInterface) GetGasBalance

func (m *MockSDKInterface) GetGasBalance(address string) (int64, error)

GetGasBalance mocks base method.

func (*MockSDKInterface) GetGasExchangeRate

func (m *MockSDKInterface) GetGasExchangeRate() (int, error)

GetGasExchangeRate mocks base method.

func (*MockSDKInterface) GetLastBlock

func (m *MockSDKInterface) GetLastBlock(withRWSet bool) (*common.BlockInfo, error)

GetLastBlock mocks base method.

func (*MockSDKInterface) GetLastConfigBlock

func (m *MockSDKInterface) GetLastConfigBlock(withRWSet bool) (*common.BlockInfo, error)

GetLastConfigBlock mocks base method.

func (*MockSDKInterface) GetLastEpoch

func (m *MockSDKInterface) GetLastEpoch() (*syscontract.Epoch, error)

GetLastEpoch mocks base method.

func (*MockSDKInterface) GetMerklePathByTxId

func (m *MockSDKInterface) GetMerklePathByTxId(txId string) ([]byte, error)

GetMerklePathByTxId mocks base method.

func (*MockSDKInterface) GetMinSelfDelegation

func (m *MockSDKInterface) GetMinSelfDelegation() (int, error)

GetMinSelfDelegation mocks base method.

func (*MockSDKInterface) GetNodeChainList

func (m *MockSDKInterface) GetNodeChainList() (*discovery.ChainList, error)

GetNodeChainList mocks base method.

func (*MockSDKInterface) GetNodeId

func (m *MockSDKInterface) GetNodeId(address string) (string, error)

GetNodeId mocks base method.

func (*MockSDKInterface) GetPoolStatus

func (m *MockSDKInterface) GetPoolStatus() (*txpool.TxPoolStatus, error)

GetPoolStatus mocks base method.

func (*MockSDKInterface) GetSlashingAddress

func (m *MockSDKInterface) GetSlashingAddress() (string, error)

GetSlashingAddress mocks base method.

func (*MockSDKInterface) GetSlashingBalance

func (m *MockSDKInterface) GetSlashingBalance() (string, error)

GetSlashingBalance mocks base method.

func (*MockSDKInterface) GetSlashingByEpochId

func (m *MockSDKInterface) GetSlashingByEpochId(epochId string) (*chainmaker_sdk_go.SlashingDetail, error)

GetSlashingByEpochId mocks base method.

func (*MockSDKInterface) GetStakeContractAddress

func (m *MockSDKInterface) GetStakeContractAddress() (string, error)

GetStakeContractAddress mocks base method.

func (*MockSDKInterface) GetStateByKey

func (m *MockSDKInterface) GetStateByKey(contractName, key string, options ...chainmaker_sdk_go.Option) ([]byte, error)

GetStateByKey mocks base method.

func (*MockSDKInterface) GetStateByPrefix

func (m *MockSDKInterface) GetStateByPrefix(contractName, prefix string, options ...chainmaker_sdk_go.Option) ([]*common.KeyValuePair, error)

GetStateByPrefix mocks base method.

func (*MockSDKInterface) GetStateKeyHistory

func (m *MockSDKInterface) GetStateKeyHistory(contractName, key string, options ...chainmaker_sdk_go.Option) ([]*store.KeyModification, error)

GetStateKeyHistory mocks base method.

func (*MockSDKInterface) GetTxByTxId

func (m *MockSDKInterface) GetTxByTxId(txId string) (*common.TransactionInfo, error)

GetTxByTxId mocks base method.

func (*MockSDKInterface) GetTxIdsByTypeAndStage

func (m *MockSDKInterface) GetTxIdsByTypeAndStage(txType txpool.TxType, txStage txpool.TxStage) ([]string, error)

GetTxIdsByTypeAndStage mocks base method.

func (*MockSDKInterface) GetTxRequest

func (m *MockSDKInterface) GetTxRequest(contractName, method, txId string, kvs []*common.KeyValuePair) (*common.TxRequest, error)

GetTxRequest mocks base method.

func (*MockSDKInterface) GetTxStatus

func (m *MockSDKInterface) GetTxStatus(txId string) (txpool.TxStatus, error)

GetTxStatus mocks base method.

func (*MockSDKInterface) GetTxWithRWSetByTxId

func (m *MockSDKInterface) GetTxWithRWSetByTxId(txId string) (*common.TransactionInfoWithRWSet, error)

GetTxWithRWSetByTxId mocks base method.

func (*MockSDKInterface) GetTxsInPoolByTxIds

func (m *MockSDKInterface) GetTxsInPoolByTxIds(txIds []string) ([]*common.Transaction, []string, error)

GetTxsInPoolByTxIds mocks base method.

func (*MockSDKInterface) GetUnboundingIntervalEpochNumber

func (m *MockSDKInterface) GetUnboundingIntervalEpochNumber() (string, error)

GetUnboundingIntervalEpochNumber mocks base method.

func (*MockSDKInterface) GetUserDelegationByValidator

func (m *MockSDKInterface) GetUserDelegationByValidator(delegator, validator string) (*syscontract.Delegation, error)

GetUserDelegationByValidator mocks base method.

func (*MockSDKInterface) GetValidatorByAddress

func (m *MockSDKInterface) GetValidatorByAddress(address string) (*syscontract.Validator, error)

GetValidatorByAddress mocks base method.

func (*MockSDKInterface) InvokeContract

func (m *MockSDKInterface) InvokeContract(contractName, method, txId string, kvs []*common.KeyValuePair, timeout int64, withSyncResult bool) (*common.TxResponse, error)

InvokeContract mocks base method.

func (*MockSDKInterface) InvokeContractWithLimit

func (m *MockSDKInterface) InvokeContractWithLimit(contractName, method, txId string, kvs []*common.KeyValuePair, timeout int64, withSyncResult bool, limit *common.Limit) (*common.TxResponse, error)

InvokeContractWithLimit mocks base method.

func (*MockSDKInterface) InvokeSystemContract

func (m *MockSDKInterface) InvokeSystemContract(contractName, method, txId string, kvs []*common.KeyValuePair, timeout int64, withSyncResult bool) (*common.TxResponse, error)

InvokeSystemContract mocks base method.

func (*MockSDKInterface) Mint

func (m *MockSDKInterface) Mint(address, amount string) (*common.Payload, error)

Mint mocks base method.

func (*MockSDKInterface) MultiSignContractQuery

func (m *MockSDKInterface) MultiSignContractQuery(txId string) (*common.TxResponse, error)

MultiSignContractQuery mocks base method.

func (*MockSDKInterface) MultiSignContractQueryWithParams

func (m *MockSDKInterface) MultiSignContractQueryWithParams(txId string, params []*common.KeyValuePair) (*common.TxResponse, error)

MultiSignContractQueryWithParams mocks base method.

func (*MockSDKInterface) MultiSignContractReq

func (m *MockSDKInterface) MultiSignContractReq(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

MultiSignContractReq mocks base method.

func (*MockSDKInterface) MultiSignContractReqWithPayer

func (m *MockSDKInterface) MultiSignContractReqWithPayer(payload *common.Payload, endorsers []*common.EndorsementEntry, payer *common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

MultiSignContractReqWithPayer mocks base method.

func (*MockSDKInterface) MultiSignContractTrig

func (m *MockSDKInterface) MultiSignContractTrig(multiSignReqPayload *common.Payload, timeout int64, limit *common.Limit, withSyncResult bool) (*common.TxResponse, error)

MultiSignContractTrig mocks base method.

func (*MockSDKInterface) MultiSignContractTrigWithPayer

func (m *MockSDKInterface) MultiSignContractTrigWithPayer(multiSignReqPayload *common.Payload, payer *common.EndorsementEntry, timeout int64, limit *common.Limit, withSyncResult bool) (*common.TxResponse, error)

MultiSignContractTrigWithPayer mocks base method.

func (*MockSDKInterface) MultiSignContractVote

func (m *MockSDKInterface) MultiSignContractVote(payload *common.Payload, endorser *common.EndorsementEntry, isAgree bool, timeout int64, withSyncResult bool) (*common.TxResponse, error)

MultiSignContractVote mocks base method.

func (*MockSDKInterface) MultiSignContractVoteWithGasLimit

func (m *MockSDKInterface) MultiSignContractVoteWithGasLimit(payload *common.Payload, endorser *common.EndorsementEntry, isAgree bool, timeout int64, gasLimit uint64, withSyncResult bool) (*common.TxResponse, error)

MultiSignContractVoteWithGasLimit mocks base method.

func (*MockSDKInterface) MultiSignContractVoteWithGasLimitAndPayer

func (m *MockSDKInterface) MultiSignContractVoteWithGasLimitAndPayer(payload *common.Payload, endorser, payer *common.EndorsementEntry, isAgree bool, timeout int64, gasLimit uint64, withSyncResult bool) (*common.TxResponse, error)

MultiSignContractVoteWithGasLimitAndPayer mocks base method.

func (*MockSDKInterface) Owner

func (m *MockSDKInterface) Owner() (string, error)

Owner mocks base method.

func (*MockSDKInterface) QueryCert

func (m *MockSDKInterface) QueryCert(certHashes []string) (*common.CertInfos, error)

QueryCert mocks base method.

func (*MockSDKInterface) QueryCertsAlias

func (m *MockSDKInterface) QueryCertsAlias(aliases []string) (*common.AliasInfos, error)

QueryCertsAlias mocks base method.

func (*MockSDKInterface) QueryContract

func (m *MockSDKInterface) QueryContract(contractName, method string, kvs []*common.KeyValuePair, timeout int64) (*common.TxResponse, error)

QueryContract mocks base method.

func (*MockSDKInterface) QueryHibeParamsWithOrgId

func (m *MockSDKInterface) QueryHibeParamsWithOrgId(contractName, method, orgId string, timeout int64) ([]byte, error)

QueryHibeParamsWithOrgId mocks base method.

func (*MockSDKInterface) QuerySystemContract

func (m *MockSDKInterface) QuerySystemContract(contractName, method string, kvs []*common.KeyValuePair, timeout int64) (*common.TxResponse, error)

QuerySystemContract mocks base method.

func (*MockSDKInterface) RestoreBlocks

func (m *MockSDKInterface) RestoreBlocks(restoreHeight uint64, mode string, heightNoticeCallback func(chainmaker_sdk_go.ProcessMessage) error) error

RestoreBlocks mocks base method.

func (*MockSDKInterface) SaveData

func (m *MockSDKInterface) SaveData(contractName, contractVersion string, isDeployment bool, codeHash, reportHash []byte, result *common.ContractResult, codeHeader []byte, txId string, rwSet *common.TxRWSet, sign []byte, events *common.StrSlice, privateReq []byte, withSyncResult bool, timeout int64) (*common.TxResponse, error)

SaveData mocks base method.

func (*MockSDKInterface) SaveDir

func (m *MockSDKInterface) SaveDir(orderId, txId string, privateDir *common.StrSlice, withSyncResult bool, timeout int64) (*common.TxResponse, error)

SaveDir mocks base method.

func (*MockSDKInterface) SaveRemoteAttestationProof

func (m *MockSDKInterface) SaveRemoteAttestationProof(proof, txId string, withSyncResult bool, timeout int64) (*common.TxResponse, error)

SaveRemoteAttestationProof mocks base method.

func (*MockSDKInterface) SendArchiveBlockRequest

func (m *MockSDKInterface) SendArchiveBlockRequest(payload *common.Payload, timeout int64) (*common.TxResponse, error)

SendArchiveBlockRequest mocks base method.

func (*MockSDKInterface) SendCertManageRequest

func (m *MockSDKInterface) SendCertManageRequest(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

SendCertManageRequest mocks base method.

func (*MockSDKInterface) SendChainConfigUpdateRequest

func (m *MockSDKInterface) SendChainConfigUpdateRequest(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

SendChainConfigUpdateRequest mocks base method.

func (*MockSDKInterface) SendContractManageRequest

func (m *MockSDKInterface) SendContractManageRequest(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

SendContractManageRequest mocks base method.

func (*MockSDKInterface) SendContractManageRequestWithPayer

func (m *MockSDKInterface) SendContractManageRequestWithPayer(payload *common.Payload, endorsers []*common.EndorsementEntry, payer *common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

SendContractManageRequestWithPayer mocks base method.

func (*MockSDKInterface) SendGasManageRequest

func (m *MockSDKInterface) SendGasManageRequest(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

SendGasManageRequest mocks base method.

func (*MockSDKInterface) SendPubkeyManageRequest

func (m *MockSDKInterface) SendPubkeyManageRequest(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

SendPubkeyManageRequest mocks base method.

func (*MockSDKInterface) SendRestoreBlockRequest

func (m *MockSDKInterface) SendRestoreBlockRequest(payload *common.Payload, timeout int64) (*common.TxResponse, error)

SendRestoreBlockRequest mocks base method.

func (*MockSDKInterface) SendTxRequest

func (m *MockSDKInterface) SendTxRequest(txRequest *common.TxRequest, timeout int64, withSyncResult bool) (*common.TxResponse, error)

SendTxRequest mocks base method.

func (*MockSDKInterface) SetDistributionPerBlock

func (m *MockSDKInterface) SetDistributionPerBlock(distributionPerBlock int) (*common.Payload, error)

SetDistributionPerBlock mocks base method.

func (*MockSDKInterface) SetEpochBlockNumberAndValidatorNumber

func (m *MockSDKInterface) SetEpochBlockNumberAndValidatorNumber(epochBlockNumber, epochValidatorNumber int) (*common.Payload, error)

SetEpochBlockNumberAndValidatorNumber mocks base method.

func (*MockSDKInterface) SetGasExchangeRate

func (m *MockSDKInterface) SetGasExchangeRate(gasExchangeRate int) (*common.Payload, error)

SetGasExchangeRate mocks base method.

func (*MockSDKInterface) SetNodeId

func (m *MockSDKInterface) SetNodeId(nodeId string) (string, error)

SetNodeId mocks base method.

func (*MockSDKInterface) SignCertManagePayload

func (m *MockSDKInterface) SignCertManagePayload(payload *common.Payload) (*common.EndorsementEntry, error)

SignCertManagePayload mocks base method.

func (*MockSDKInterface) SignChainConfigPayload

func (m *MockSDKInterface) SignChainConfigPayload(payload *common.Payload) (*common.EndorsementEntry, error)

SignChainConfigPayload mocks base method.

func (*MockSDKInterface) SignContractManagePayload

func (m *MockSDKInterface) SignContractManagePayload(payload *common.Payload) (*common.EndorsementEntry, error)

SignContractManagePayload mocks base method.

func (*MockSDKInterface) SignDeleteAliasPayload

func (m *MockSDKInterface) SignDeleteAliasPayload(payload *common.Payload) (*common.EndorsementEntry, error)

SignDeleteAliasPayload mocks base method.

func (*MockSDKInterface) SignUpdateCertByAliasPayload

func (m *MockSDKInterface) SignUpdateCertByAliasPayload(payload *common.Payload) (*common.EndorsementEntry, error)

SignUpdateCertByAliasPayload mocks base method.

func (*MockSDKInterface) Stop

func (m *MockSDKInterface) Stop() error

Stop mocks base method.

func (*MockSDKInterface) Subscribe

func (m *MockSDKInterface) Subscribe(ctx context.Context, payloadBytes *common.Payload) (<-chan interface{}, error)

Subscribe mocks base method.

func (*MockSDKInterface) SubscribeBlock

func (m *MockSDKInterface) SubscribeBlock(ctx context.Context, startBlock, endBlock int64, withRWSet, onlyHeader bool) (<-chan interface{}, error)

SubscribeBlock mocks base method.

func (*MockSDKInterface) SubscribeContractEvent

func (m *MockSDKInterface) SubscribeContractEvent(ctx context.Context, startBlock, endBlock int64, contractName, topic string) (<-chan interface{}, error)

SubscribeContractEvent mocks base method.

func (*MockSDKInterface) SubscribeTx

func (m *MockSDKInterface) SubscribeTx(ctx context.Context, startBlock, endBlock int64, contractName string, txIds []string) (<-chan interface{}, error)

SubscribeTx mocks base method.

func (*MockSDKInterface) Total

func (m *MockSDKInterface) Total() (string, error)

Total mocks base method.

func (*MockSDKInterface) Transfer

func (m *MockSDKInterface) Transfer(address, amount string) (*utils.BigInteger, error)

Transfer mocks base method.

func (*MockSDKInterface) TransferOwnership

func (m *MockSDKInterface) TransferOwnership(address string) (*common.Payload, error)

TransferOwnership mocks base method.

func (*MockSDKInterface) UnDelegate

func (m *MockSDKInterface) UnDelegate(from, value string) (*syscontract.Delegation, error)

UnDelegate mocks base method.

func (*MockSDKInterface) UpdateCertByAlias

func (m *MockSDKInterface) UpdateCertByAlias(payload *common.Payload, endorsers []*common.EndorsementEntry, timeout int64, withSyncResult bool) (*common.TxResponse, error)

UpdateCertByAlias mocks base method.

type MockSDKInterfaceMockRecorder

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

MockSDKInterfaceMockRecorder is the mock recorder for MockSDKInterface.

func (*MockSDKInterfaceMockRecorder) AddAlias

func (mr *MockSDKInterfaceMockRecorder) AddAlias() *gomock.Call

AddAlias indicates an expected call of AddAlias.

func (*MockSDKInterfaceMockRecorder) AddCert

func (mr *MockSDKInterfaceMockRecorder) AddCert() *gomock.Call

AddCert indicates an expected call of AddCert.

func (*MockSDKInterfaceMockRecorder) ArchiveBlocks

func (mr *MockSDKInterfaceMockRecorder) ArchiveBlocks(archiveHeight, mode, heightNoticeCallback interface{}) *gomock.Call

ArchiveBlocks indicates an expected call of ArchiveBlocks.

func (*MockSDKInterfaceMockRecorder) AttachGasLimit

func (mr *MockSDKInterfaceMockRecorder) AttachGasLimit(payload, limit interface{}) *gomock.Call

AttachGasLimit indicates an expected call of AttachGasLimit.

func (*MockSDKInterfaceMockRecorder) BalanceOf

func (mr *MockSDKInterfaceMockRecorder) BalanceOf(address interface{}) *gomock.Call

BalanceOf indicates an expected call of BalanceOf.

func (*MockSDKInterfaceMockRecorder) CheckCallerCertAuth

func (mr *MockSDKInterfaceMockRecorder) CheckCallerCertAuth(payload, orgIds, signPairs interface{}) *gomock.Call

CheckCallerCertAuth indicates an expected call of CheckCallerCertAuth.

func (*MockSDKInterfaceMockRecorder) CreateArchiveBlockPayload

func (mr *MockSDKInterfaceMockRecorder) CreateArchiveBlockPayload(targetBlockHeight interface{}) *gomock.Call

CreateArchiveBlockPayload indicates an expected call of CreateArchiveBlockPayload.

func (*MockSDKInterfaceMockRecorder) CreateCertManageFrozenPayload

func (mr *MockSDKInterfaceMockRecorder) CreateCertManageFrozenPayload(certs interface{}) *gomock.Call

CreateCertManageFrozenPayload indicates an expected call of CreateCertManageFrozenPayload.

func (*MockSDKInterfaceMockRecorder) CreateCertManagePayload

func (mr *MockSDKInterfaceMockRecorder) CreateCertManagePayload(method, kvs interface{}) *gomock.Call

CreateCertManagePayload indicates an expected call of CreateCertManagePayload.

func (*MockSDKInterfaceMockRecorder) CreateCertManageRevocationPayload

func (mr *MockSDKInterfaceMockRecorder) CreateCertManageRevocationPayload(certCrl interface{}) *gomock.Call

CreateCertManageRevocationPayload indicates an expected call of CreateCertManageRevocationPayload.

func (*MockSDKInterfaceMockRecorder) CreateCertManageUnfrozenPayload

func (mr *MockSDKInterfaceMockRecorder) CreateCertManageUnfrozenPayload(certs interface{}) *gomock.Call

CreateCertManageUnfrozenPayload indicates an expected call of CreateCertManageUnfrozenPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigAlterAddrTypePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigAlterAddrTypePayload(addrType interface{}) *gomock.Call

CreateChainConfigAlterAddrTypePayload indicates an expected call of CreateChainConfigAlterAddrTypePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigBlockUpdatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigBlockUpdatePayload(txTimestampVerify, blockTimestampVerify, txTimeout, blockTimeout, blockTxCapacity, blockSize, blockInterval, txParamterSize interface{}) *gomock.Call

CreateChainConfigBlockUpdatePayload indicates an expected call of CreateChainConfigBlockUpdatePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusExtAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusExtAddPayload(kvs interface{}) *gomock.Call

CreateChainConfigConsensusExtAddPayload indicates an expected call of CreateChainConfigConsensusExtAddPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusExtDeletePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusExtDeletePayload(keys interface{}) *gomock.Call

CreateChainConfigConsensusExtDeletePayload indicates an expected call of CreateChainConfigConsensusExtDeletePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusExtUpdatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusExtUpdatePayload(kvs interface{}) *gomock.Call

CreateChainConfigConsensusExtUpdatePayload indicates an expected call of CreateChainConfigConsensusExtUpdatePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeIdAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeIdAddPayload(nodeOrgId, nodeIds interface{}) *gomock.Call

CreateChainConfigConsensusNodeIdAddPayload indicates an expected call of CreateChainConfigConsensusNodeIdAddPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeIdDeletePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeIdDeletePayload(nodeOrgId, nodeId interface{}) *gomock.Call

CreateChainConfigConsensusNodeIdDeletePayload indicates an expected call of CreateChainConfigConsensusNodeIdDeletePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeIdUpdatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeIdUpdatePayload(nodeOrgId, nodeOldNodeId, nodeNewNodeId interface{}) *gomock.Call

CreateChainConfigConsensusNodeIdUpdatePayload indicates an expected call of CreateChainConfigConsensusNodeIdUpdatePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeOrgAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeOrgAddPayload(nodeOrgId, nodeIds interface{}) *gomock.Call

CreateChainConfigConsensusNodeOrgAddPayload indicates an expected call of CreateChainConfigConsensusNodeOrgAddPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeOrgDeletePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeOrgDeletePayload(nodeOrgId interface{}) *gomock.Call

CreateChainConfigConsensusNodeOrgDeletePayload indicates an expected call of CreateChainConfigConsensusNodeOrgDeletePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeOrgUpdatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigConsensusNodeOrgUpdatePayload(nodeOrgId, nodeIds interface{}) *gomock.Call

CreateChainConfigConsensusNodeOrgUpdatePayload indicates an expected call of CreateChainConfigConsensusNodeOrgUpdatePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigCoreUpdatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigCoreUpdatePayload(txSchedulerTimeout, txSchedulerValidateTimeout interface{}) *gomock.Call

CreateChainConfigCoreUpdatePayload indicates an expected call of CreateChainConfigCoreUpdatePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigEnableOrDisableGasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigEnableOrDisableGasPayload() *gomock.Call

CreateChainConfigEnableOrDisableGasPayload indicates an expected call of CreateChainConfigEnableOrDisableGasPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigOptimizeChargeGasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigOptimizeChargeGasPayload(enable interface{}) *gomock.Call

CreateChainConfigOptimizeChargeGasPayload indicates an expected call of CreateChainConfigOptimizeChargeGasPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigPermissionAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigPermissionAddPayload(permissionResourceName, policy interface{}) *gomock.Call

CreateChainConfigPermissionAddPayload indicates an expected call of CreateChainConfigPermissionAddPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigPermissionDeletePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigPermissionDeletePayload(permissionResourceName interface{}) *gomock.Call

CreateChainConfigPermissionDeletePayload indicates an expected call of CreateChainConfigPermissionDeletePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigPermissionUpdatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigPermissionUpdatePayload(permissionResourceName, policy interface{}) *gomock.Call

CreateChainConfigPermissionUpdatePayload indicates an expected call of CreateChainConfigPermissionUpdatePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigTrustMemberAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigTrustMemberAddPayload(trustMemberOrgId, trustMemberNodeId, trustMemberRole, trustMemberInfo interface{}) *gomock.Call

CreateChainConfigTrustMemberAddPayload indicates an expected call of CreateChainConfigTrustMemberAddPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigTrustMemberDeletePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigTrustMemberDeletePayload(trustMemberInfo interface{}) *gomock.Call

CreateChainConfigTrustMemberDeletePayload indicates an expected call of CreateChainConfigTrustMemberDeletePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigTrustRootAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigTrustRootAddPayload(trustRootOrgId, trustRootCrt interface{}) *gomock.Call

CreateChainConfigTrustRootAddPayload indicates an expected call of CreateChainConfigTrustRootAddPayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigTrustRootDeletePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigTrustRootDeletePayload(orgIdOrPKPubkeyPEM interface{}) *gomock.Call

CreateChainConfigTrustRootDeletePayload indicates an expected call of CreateChainConfigTrustRootDeletePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigTrustRootUpdatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigTrustRootUpdatePayload(trustRootOrgId, trustRootCrt interface{}) *gomock.Call

CreateChainConfigTrustRootUpdatePayload indicates an expected call of CreateChainConfigTrustRootUpdatePayload.

func (*MockSDKInterfaceMockRecorder) CreateChainConfigVMSupportListAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreateChainConfigVMSupportListAddPayload(vmType interface{}) *gomock.Call

CreateChainConfigVMSupportListAddPayload indicates an expected call of CreateChainConfigVMSupportListAddPayload.

func (*MockSDKInterfaceMockRecorder) CreateContractCreatePayload

func (mr *MockSDKInterfaceMockRecorder) CreateContractCreatePayload(contractName, version, byteCodeStringOrFilePath, runtime, kvs interface{}) *gomock.Call

CreateContractCreatePayload indicates an expected call of CreateContractCreatePayload.

func (*MockSDKInterfaceMockRecorder) CreateContractFreezePayload

func (mr *MockSDKInterfaceMockRecorder) CreateContractFreezePayload(contractName interface{}) *gomock.Call

CreateContractFreezePayload indicates an expected call of CreateContractFreezePayload.

func (*MockSDKInterfaceMockRecorder) CreateContractRevokePayload

func (mr *MockSDKInterfaceMockRecorder) CreateContractRevokePayload(contractName interface{}) *gomock.Call

CreateContractRevokePayload indicates an expected call of CreateContractRevokePayload.

func (*MockSDKInterfaceMockRecorder) CreateContractUnfreezePayload

func (mr *MockSDKInterfaceMockRecorder) CreateContractUnfreezePayload(contractName interface{}) *gomock.Call

CreateContractUnfreezePayload indicates an expected call of CreateContractUnfreezePayload.

func (*MockSDKInterfaceMockRecorder) CreateContractUpgradePayload

func (mr *MockSDKInterfaceMockRecorder) CreateContractUpgradePayload(contractName, version, byteCodeStringOrFilePath, runtime, kvs interface{}) *gomock.Call

CreateContractUpgradePayload indicates an expected call of CreateContractUpgradePayload.

func (*MockSDKInterfaceMockRecorder) CreateDeleteCertsAliasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateDeleteCertsAliasPayload(aliases interface{}) *gomock.Call

CreateDeleteCertsAliasPayload indicates an expected call of CreateDeleteCertsAliasPayload.

func (*MockSDKInterfaceMockRecorder) CreateFrozenGasAccountPayload

func (mr *MockSDKInterfaceMockRecorder) CreateFrozenGasAccountPayload(address interface{}) *gomock.Call

CreateFrozenGasAccountPayload indicates an expected call of CreateFrozenGasAccountPayload.

func (*MockSDKInterfaceMockRecorder) CreateHibeInitParamsTxPayloadParams

func (mr *MockSDKInterfaceMockRecorder) CreateHibeInitParamsTxPayloadParams(orgId, hibeParams interface{}) *gomock.Call

CreateHibeInitParamsTxPayloadParams indicates an expected call of CreateHibeInitParamsTxPayloadParams.

func (*MockSDKInterfaceMockRecorder) CreateHibeTxPayloadParamsWithHibeParams

func (mr *MockSDKInterfaceMockRecorder) CreateHibeTxPayloadParamsWithHibeParams(plaintext, receiverIds, paramsBytesList, txId, keyType interface{}) *gomock.Call

CreateHibeTxPayloadParamsWithHibeParams indicates an expected call of CreateHibeTxPayloadParamsWithHibeParams.

func (*MockSDKInterfaceMockRecorder) CreateHibeTxPayloadParamsWithoutHibeParams

func (mr *MockSDKInterfaceMockRecorder) CreateHibeTxPayloadParamsWithoutHibeParams(contractName, queryParamsMethod, plaintext, receiverIds, receiverOrgIds, txId, keyType, timeout interface{}) *gomock.Call

CreateHibeTxPayloadParamsWithoutHibeParams indicates an expected call of CreateHibeTxPayloadParamsWithoutHibeParams.

func (*MockSDKInterfaceMockRecorder) CreateMultiSignReqPayload

func (mr *MockSDKInterfaceMockRecorder) CreateMultiSignReqPayload(pairs interface{}) *gomock.Call

CreateMultiSignReqPayload indicates an expected call of CreateMultiSignReqPayload.

func (*MockSDKInterfaceMockRecorder) CreateMultiSignReqPayloadWithGasLimit

func (mr *MockSDKInterfaceMockRecorder) CreateMultiSignReqPayloadWithGasLimit(pairs, gasLimit interface{}) *gomock.Call

CreateMultiSignReqPayloadWithGasLimit indicates an expected call of CreateMultiSignReqPayloadWithGasLimit.

func (*MockSDKInterfaceMockRecorder) CreateNativeContractAccessGrantPayload

func (mr *MockSDKInterfaceMockRecorder) CreateNativeContractAccessGrantPayload(grantContractList interface{}) *gomock.Call

CreateNativeContractAccessGrantPayload indicates an expected call of CreateNativeContractAccessGrantPayload.

func (*MockSDKInterfaceMockRecorder) CreateNativeContractAccessRevokePayload

func (mr *MockSDKInterfaceMockRecorder) CreateNativeContractAccessRevokePayload(revokeContractList interface{}) *gomock.Call

CreateNativeContractAccessRevokePayload indicates an expected call of CreateNativeContractAccessRevokePayload.

func (*MockSDKInterfaceMockRecorder) CreatePubkeyAddPayload

func (mr *MockSDKInterfaceMockRecorder) CreatePubkeyAddPayload(pubkey, orgId, role interface{}) *gomock.Call

CreatePubkeyAddPayload indicates an expected call of CreatePubkeyAddPayload.

func (*MockSDKInterfaceMockRecorder) CreatePubkeyDelPayload

func (mr *MockSDKInterfaceMockRecorder) CreatePubkeyDelPayload(pubkey, orgId interface{}) *gomock.Call

CreatePubkeyDelPayload indicates an expected call of CreatePubkeyDelPayload.

func (*MockSDKInterfaceMockRecorder) CreatePubkeyQueryPayload

func (mr *MockSDKInterfaceMockRecorder) CreatePubkeyQueryPayload(pubkey interface{}) *gomock.Call

CreatePubkeyQueryPayload indicates an expected call of CreatePubkeyQueryPayload.

func (*MockSDKInterfaceMockRecorder) CreateRaftToTbftPayload

func (mr *MockSDKInterfaceMockRecorder) CreateRaftToTbftPayload(extConfig interface{}) *gomock.Call

CreateRaftToTbftPayload indicates an expected call of CreateRaftToTbftPayload.

func (*MockSDKInterfaceMockRecorder) CreateRechargeGasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateRechargeGasPayload(rechargeGasList interface{}) *gomock.Call

CreateRechargeGasPayload indicates an expected call of CreateRechargeGasPayload.

func (*MockSDKInterfaceMockRecorder) CreateRefundGasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateRefundGasPayload(address, amount interface{}) *gomock.Call

CreateRefundGasPayload indicates an expected call of CreateRefundGasPayload.

func (*MockSDKInterfaceMockRecorder) CreateRestoreBlockPayload

func (mr *MockSDKInterfaceMockRecorder) CreateRestoreBlockPayload(fullBlock interface{}) *gomock.Call

CreateRestoreBlockPayload indicates an expected call of CreateRestoreBlockPayload.

func (*MockSDKInterfaceMockRecorder) CreateSaveEnclaveCACertPayload

func (mr *MockSDKInterfaceMockRecorder) CreateSaveEnclaveCACertPayload(caCert, txId interface{}) *gomock.Call

CreateSaveEnclaveCACertPayload indicates an expected call of CreateSaveEnclaveCACertPayload.

func (*MockSDKInterfaceMockRecorder) CreateSaveEnclaveReportPayload

func (mr *MockSDKInterfaceMockRecorder) CreateSaveEnclaveReportPayload(enclaveId, report, txId interface{}) *gomock.Call

CreateSaveEnclaveReportPayload indicates an expected call of CreateSaveEnclaveReportPayload.

func (*MockSDKInterfaceMockRecorder) CreateSetGasAdminPayload

func (mr *MockSDKInterfaceMockRecorder) CreateSetGasAdminPayload(address interface{}) *gomock.Call

CreateSetGasAdminPayload indicates an expected call of CreateSetGasAdminPayload.

func (*MockSDKInterfaceMockRecorder) CreateSetInstallBaseGasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateSetInstallBaseGasPayload(installBaseGas interface{}) *gomock.Call

CreateSetInstallBaseGasPayload indicates an expected call of CreateSetInstallBaseGasPayload.

func (*MockSDKInterfaceMockRecorder) CreateSetInstallGasPricePayload

func (mr *MockSDKInterfaceMockRecorder) CreateSetInstallGasPricePayload(installGasPrice interface{}) *gomock.Call

CreateSetInstallGasPricePayload indicates an expected call of CreateSetInstallGasPricePayload.

func (*MockSDKInterfaceMockRecorder) CreateSetInvokeBaseGasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateSetInvokeBaseGasPayload(invokeBaseGas interface{}) *gomock.Call

CreateSetInvokeBaseGasPayload indicates an expected call of CreateSetInvokeBaseGasPayload.

func (*MockSDKInterfaceMockRecorder) CreateSetInvokeGasPricePayload

func (mr *MockSDKInterfaceMockRecorder) CreateSetInvokeGasPricePayload(invokeGasPrice interface{}) *gomock.Call

CreateSetInvokeGasPricePayload indicates an expected call of CreateSetInvokeGasPricePayload.

func (*MockSDKInterfaceMockRecorder) CreateTbftToRaftPayload

func (mr *MockSDKInterfaceMockRecorder) CreateTbftToRaftPayload(extConfig interface{}) *gomock.Call

CreateTbftToRaftPayload indicates an expected call of CreateTbftToRaftPayload.

func (*MockSDKInterfaceMockRecorder) CreateUnfrozenGasAccountPayload

func (mr *MockSDKInterfaceMockRecorder) CreateUnfrozenGasAccountPayload(address interface{}) *gomock.Call

CreateUnfrozenGasAccountPayload indicates an expected call of CreateUnfrozenGasAccountPayload.

func (*MockSDKInterfaceMockRecorder) CreateUpdateCertByAliasPayload

func (mr *MockSDKInterfaceMockRecorder) CreateUpdateCertByAliasPayload(alias, newCertPEM interface{}) *gomock.Call

CreateUpdateCertByAliasPayload indicates an expected call of CreateUpdateCertByAliasPayload.

func (*MockSDKInterfaceMockRecorder) Decimals

func (mr *MockSDKInterfaceMockRecorder) Decimals() *gomock.Call

Decimals indicates an expected call of Decimals.

func (*MockSDKInterfaceMockRecorder) DecryptHibeTxByTxId

func (mr *MockSDKInterfaceMockRecorder) DecryptHibeTxByTxId(localId, hibeParams, hibePrvKey, txId, keyType interface{}) *gomock.Call

DecryptHibeTxByTxId indicates an expected call of DecryptHibeTxByTxId.

func (*MockSDKInterfaceMockRecorder) Delegate

func (mr *MockSDKInterfaceMockRecorder) Delegate(to, value interface{}) *gomock.Call

Delegate indicates an expected call of Delegate.

func (*MockSDKInterfaceMockRecorder) DeleteCert

func (mr *MockSDKInterfaceMockRecorder) DeleteCert(certHashes interface{}) *gomock.Call

DeleteCert indicates an expected call of DeleteCert.

func (*MockSDKInterfaceMockRecorder) DeleteCertsAlias

func (mr *MockSDKInterfaceMockRecorder) DeleteCertsAlias(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

DeleteCertsAlias indicates an expected call of DeleteCertsAlias.

func (*MockSDKInterfaceMockRecorder) DisableCertHash

func (mr *MockSDKInterfaceMockRecorder) DisableCertHash() *gomock.Call

DisableCertHash indicates an expected call of DisableCertHash.

func (*MockSDKInterfaceMockRecorder) EnableCertHash

func (mr *MockSDKInterfaceMockRecorder) EnableCertHash() *gomock.Call

EnableCertHash indicates an expected call of EnableCertHash.

func (*MockSDKInterfaceMockRecorder) EstimateGas

func (mr *MockSDKInterfaceMockRecorder) EstimateGas(payload interface{}) *gomock.Call

EstimateGas indicates an expected call of EstimateGas.

func (*MockSDKInterfaceMockRecorder) EthCall

func (mr *MockSDKInterfaceMockRecorder) EthCall(from, to, gas, gasPrice, value, data interface{}) *gomock.Call

EthCall indicates an expected call of EthCall.

func (*MockSDKInterfaceMockRecorder) EthEstimateGas

func (mr *MockSDKInterfaceMockRecorder) EthEstimateGas(from, to, gas, gasPrice, value, data interface{}) *gomock.Call

EthEstimateGas indicates an expected call of EthEstimateGas.

func (*MockSDKInterfaceMockRecorder) EthSendRawTx

func (mr *MockSDKInterfaceMockRecorder) EthSendRawTx(rawTx, timeout, withSyncResult interface{}) *gomock.Call

EthSendRawTx indicates an expected call of EthSendRawTx.

func (*MockSDKInterfaceMockRecorder) GetAccountContractTxHistory

func (mr *MockSDKInterfaceMockRecorder) GetAccountContractTxHistory(memberInfo, contractName interface{}, options ...interface{}) *gomock.Call

GetAccountContractTxHistory indicates an expected call of GetAccountContractTxHistory.

func (*MockSDKInterfaceMockRecorder) GetAllCandidates

func (mr *MockSDKInterfaceMockRecorder) GetAllCandidates() *gomock.Call

GetAllCandidates indicates an expected call of GetAllCandidates.

func (*MockSDKInterfaceMockRecorder) GetArchiveStatus

func (mr *MockSDKInterfaceMockRecorder) GetArchiveStatus() *gomock.Call

GetArchiveStatus indicates an expected call of GetArchiveStatus.

func (*MockSDKInterfaceMockRecorder) GetArchivedBlockByHash

func (mr *MockSDKInterfaceMockRecorder) GetArchivedBlockByHash(blockHash, withRWSet interface{}) *gomock.Call

GetArchivedBlockByHash indicates an expected call of GetArchivedBlockByHash.

func (*MockSDKInterfaceMockRecorder) GetArchivedBlockByHeight

func (mr *MockSDKInterfaceMockRecorder) GetArchivedBlockByHeight(blockHeight, withRWSet interface{}) *gomock.Call

GetArchivedBlockByHeight indicates an expected call of GetArchivedBlockByHeight.

func (*MockSDKInterfaceMockRecorder) GetArchivedBlockByTxId

func (mr *MockSDKInterfaceMockRecorder) GetArchivedBlockByTxId(txId, withRWSet interface{}) *gomock.Call

GetArchivedBlockByTxId indicates an expected call of GetArchivedBlockByTxId.

func (*MockSDKInterfaceMockRecorder) GetArchivedBlockHeight

func (mr *MockSDKInterfaceMockRecorder) GetArchivedBlockHeight() *gomock.Call

GetArchivedBlockHeight indicates an expected call of GetArchivedBlockHeight.

func (*MockSDKInterfaceMockRecorder) GetArchivedTxByTxId

func (mr *MockSDKInterfaceMockRecorder) GetArchivedTxByTxId(txId interface{}) *gomock.Call

GetArchivedTxByTxId indicates an expected call of GetArchivedTxByTxId.

func (*MockSDKInterfaceMockRecorder) GetBlockByHash

func (mr *MockSDKInterfaceMockRecorder) GetBlockByHash(blockHash, withRWSet interface{}) *gomock.Call

GetBlockByHash indicates an expected call of GetBlockByHash.

func (*MockSDKInterfaceMockRecorder) GetBlockByHeight

func (mr *MockSDKInterfaceMockRecorder) GetBlockByHeight(blockHeight, withRWSet interface{}) *gomock.Call

GetBlockByHeight indicates an expected call of GetBlockByHeight.

func (*MockSDKInterfaceMockRecorder) GetBlockByHeightTruncate

func (mr *MockSDKInterfaceMockRecorder) GetBlockByHeightTruncate(blockHeight, withRWSet, truncateLength, truncateModel interface{}) *gomock.Call

GetBlockByHeightTruncate indicates an expected call of GetBlockByHeightTruncate.

func (*MockSDKInterfaceMockRecorder) GetBlockByTxId

func (mr *MockSDKInterfaceMockRecorder) GetBlockByTxId(txId, withRWSet interface{}) *gomock.Call

GetBlockByTxId indicates an expected call of GetBlockByTxId.

func (*MockSDKInterfaceMockRecorder) GetBlockHeaderByHeight

func (mr *MockSDKInterfaceMockRecorder) GetBlockHeaderByHeight(blockHeight interface{}) *gomock.Call

GetBlockHeaderByHeight indicates an expected call of GetBlockHeaderByHeight.

func (*MockSDKInterfaceMockRecorder) GetBlockHeightByHash

func (mr *MockSDKInterfaceMockRecorder) GetBlockHeightByHash(blockHash interface{}) *gomock.Call

GetBlockHeightByHash indicates an expected call of GetBlockHeightByHash.

func (*MockSDKInterfaceMockRecorder) GetBlockHeightByTxId

func (mr *MockSDKInterfaceMockRecorder) GetBlockHeightByTxId(txId interface{}) *gomock.Call

GetBlockHeightByTxId indicates an expected call of GetBlockHeightByTxId.

func (*MockSDKInterfaceMockRecorder) GetCertHash

func (mr *MockSDKInterfaceMockRecorder) GetCertHash() *gomock.Call

GetCertHash indicates an expected call of GetCertHash.

func (*MockSDKInterfaceMockRecorder) GetChainConfig

func (mr *MockSDKInterfaceMockRecorder) GetChainConfig() *gomock.Call

GetChainConfig indicates an expected call of GetChainConfig.

func (*MockSDKInterfaceMockRecorder) GetChainConfigByBlockHeight

func (mr *MockSDKInterfaceMockRecorder) GetChainConfigByBlockHeight(blockHeight interface{}) *gomock.Call

GetChainConfigByBlockHeight indicates an expected call of GetChainConfigByBlockHeight.

func (*MockSDKInterfaceMockRecorder) GetChainConfigPermissionList

func (mr *MockSDKInterfaceMockRecorder) GetChainConfigPermissionList() *gomock.Call

GetChainConfigPermissionList indicates an expected call of GetChainConfigPermissionList.

func (*MockSDKInterfaceMockRecorder) GetChainConfigSequence

func (mr *MockSDKInterfaceMockRecorder) GetChainConfigSequence() *gomock.Call

GetChainConfigSequence indicates an expected call of GetChainConfigSequence.

func (*MockSDKInterfaceMockRecorder) GetChainInfo

func (mr *MockSDKInterfaceMockRecorder) GetChainInfo() *gomock.Call

GetChainInfo indicates an expected call of GetChainInfo.

func (*MockSDKInterfaceMockRecorder) GetChainMakerServerVersion

func (mr *MockSDKInterfaceMockRecorder) GetChainMakerServerVersion() *gomock.Call

GetChainMakerServerVersion indicates an expected call of GetChainMakerServerVersion.

func (*MockSDKInterfaceMockRecorder) GetChainMakerServerVersionCustom

func (mr *MockSDKInterfaceMockRecorder) GetChainMakerServerVersionCustom(ctx interface{}) *gomock.Call

GetChainMakerServerVersionCustom indicates an expected call of GetChainMakerServerVersionCustom.

func (*MockSDKInterfaceMockRecorder) GetConsensusHeight

func (mr *MockSDKInterfaceMockRecorder) GetConsensusHeight() *gomock.Call

GetConsensusHeight indicates an expected call of GetConsensusHeight.

func (*MockSDKInterfaceMockRecorder) GetConsensusStateJSON

func (mr *MockSDKInterfaceMockRecorder) GetConsensusStateJSON() *gomock.Call

GetConsensusStateJSON indicates an expected call of GetConsensusStateJSON.

func (*MockSDKInterfaceMockRecorder) GetConsensusValidators

func (mr *MockSDKInterfaceMockRecorder) GetConsensusValidators() *gomock.Call

GetConsensusValidators indicates an expected call of GetConsensusValidators.

func (*MockSDKInterfaceMockRecorder) GetContract

func (mr *MockSDKInterfaceMockRecorder) GetContract(contractName, codeHash interface{}) *gomock.Call

GetContract indicates an expected call of GetContract.

func (*MockSDKInterfaceMockRecorder) GetContractByteCode

func (mr *MockSDKInterfaceMockRecorder) GetContractByteCode(contractName interface{}) *gomock.Call

GetContractByteCode indicates an expected call of GetContractByteCode.

func (*MockSDKInterfaceMockRecorder) GetContractInfo

func (mr *MockSDKInterfaceMockRecorder) GetContractInfo(contractName interface{}) *gomock.Call

GetContractInfo indicates an expected call of GetContractInfo.

func (*MockSDKInterfaceMockRecorder) GetContractList

func (mr *MockSDKInterfaceMockRecorder) GetContractList() *gomock.Call

GetContractList indicates an expected call of GetContractList.

func (*MockSDKInterfaceMockRecorder) GetCurrentBlockHeight

func (mr *MockSDKInterfaceMockRecorder) GetCurrentBlockHeight() *gomock.Call

GetCurrentBlockHeight indicates an expected call of GetCurrentBlockHeight.

func (*MockSDKInterfaceMockRecorder) GetData

func (mr *MockSDKInterfaceMockRecorder) GetData(contractName, key interface{}) *gomock.Call

GetData indicates an expected call of GetData.

func (*MockSDKInterfaceMockRecorder) GetDelegationsByAddress

func (mr *MockSDKInterfaceMockRecorder) GetDelegationsByAddress(address interface{}) *gomock.Call

GetDelegationsByAddress indicates an expected call of GetDelegationsByAddress.

func (*MockSDKInterfaceMockRecorder) GetDir

func (mr *MockSDKInterfaceMockRecorder) GetDir(orderId interface{}) *gomock.Call

GetDir indicates an expected call of GetDir.

func (*MockSDKInterfaceMockRecorder) GetDisabledNativeContractList

func (mr *MockSDKInterfaceMockRecorder) GetDisabledNativeContractList() *gomock.Call

GetDisabledNativeContractList indicates an expected call of GetDisabledNativeContractList.

func (*MockSDKInterfaceMockRecorder) GetDistributionByEpochId

func (mr *MockSDKInterfaceMockRecorder) GetDistributionByEpochId(epochId interface{}) *gomock.Call

GetDistributionByEpochId indicates an expected call of GetDistributionByEpochId.

func (*MockSDKInterfaceMockRecorder) GetDistributionPerBlock

func (mr *MockSDKInterfaceMockRecorder) GetDistributionPerBlock() *gomock.Call

GetDistributionPerBlock indicates an expected call of GetDistributionPerBlock.

func (*MockSDKInterfaceMockRecorder) GetEnclaveCACert

func (mr *MockSDKInterfaceMockRecorder) GetEnclaveCACert() *gomock.Call

GetEnclaveCACert indicates an expected call of GetEnclaveCACert.

func (*MockSDKInterfaceMockRecorder) GetEnclaveChallenge

func (mr *MockSDKInterfaceMockRecorder) GetEnclaveChallenge(enclaveId interface{}) *gomock.Call

GetEnclaveChallenge indicates an expected call of GetEnclaveChallenge.

func (*MockSDKInterfaceMockRecorder) GetEnclaveEncryptPubKey

func (mr *MockSDKInterfaceMockRecorder) GetEnclaveEncryptPubKey(enclaveId interface{}) *gomock.Call

GetEnclaveEncryptPubKey indicates an expected call of GetEnclaveEncryptPubKey.

func (*MockSDKInterfaceMockRecorder) GetEnclaveProof

func (mr *MockSDKInterfaceMockRecorder) GetEnclaveProof(enclaveId interface{}) *gomock.Call

GetEnclaveProof indicates an expected call of GetEnclaveProof.

func (*MockSDKInterfaceMockRecorder) GetEnclaveReport

func (mr *MockSDKInterfaceMockRecorder) GetEnclaveReport(enclaveId interface{}) *gomock.Call

GetEnclaveReport indicates an expected call of GetEnclaveReport.

func (*MockSDKInterfaceMockRecorder) GetEnclaveSignature

func (mr *MockSDKInterfaceMockRecorder) GetEnclaveSignature(enclaveId interface{}) *gomock.Call

GetEnclaveSignature indicates an expected call of GetEnclaveSignature.

func (*MockSDKInterfaceMockRecorder) GetEnclaveVerificationPubKey

func (mr *MockSDKInterfaceMockRecorder) GetEnclaveVerificationPubKey(enclaveId interface{}) *gomock.Call

GetEnclaveVerificationPubKey indicates an expected call of GetEnclaveVerificationPubKey.

func (*MockSDKInterfaceMockRecorder) GetEpochBlockNumber

func (mr *MockSDKInterfaceMockRecorder) GetEpochBlockNumber() *gomock.Call

GetEpochBlockNumber indicates an expected call of GetEpochBlockNumber.

func (*MockSDKInterfaceMockRecorder) GetEpochById

func (mr *MockSDKInterfaceMockRecorder) GetEpochById(id interface{}) *gomock.Call

GetEpochById indicates an expected call of GetEpochById.

func (*MockSDKInterfaceMockRecorder) GetEpochValidatorNumber

func (mr *MockSDKInterfaceMockRecorder) GetEpochValidatorNumber() *gomock.Call

GetEpochValidatorNumber indicates an expected call of GetEpochValidatorNumber.

func (*MockSDKInterfaceMockRecorder) GetFullBlockByHeight

func (mr *MockSDKInterfaceMockRecorder) GetFullBlockByHeight(blockHeight interface{}) *gomock.Call

GetFullBlockByHeight indicates an expected call of GetFullBlockByHeight.

func (*MockSDKInterfaceMockRecorder) GetGasAccountStatus

func (mr *MockSDKInterfaceMockRecorder) GetGasAccountStatus(address interface{}) *gomock.Call

GetGasAccountStatus indicates an expected call of GetGasAccountStatus.

func (*MockSDKInterfaceMockRecorder) GetGasAdmin

func (mr *MockSDKInterfaceMockRecorder) GetGasAdmin() *gomock.Call

GetGasAdmin indicates an expected call of GetGasAdmin.

func (*MockSDKInterfaceMockRecorder) GetGasBalance

func (mr *MockSDKInterfaceMockRecorder) GetGasBalance(address interface{}) *gomock.Call

GetGasBalance indicates an expected call of GetGasBalance.

func (*MockSDKInterfaceMockRecorder) GetGasExchangeRate

func (mr *MockSDKInterfaceMockRecorder) GetGasExchangeRate() *gomock.Call

GetGasExchangeRate indicates an expected call of GetGasExchangeRate.

func (*MockSDKInterfaceMockRecorder) GetLastBlock

func (mr *MockSDKInterfaceMockRecorder) GetLastBlock(withRWSet interface{}) *gomock.Call

GetLastBlock indicates an expected call of GetLastBlock.

func (*MockSDKInterfaceMockRecorder) GetLastConfigBlock

func (mr *MockSDKInterfaceMockRecorder) GetLastConfigBlock(withRWSet interface{}) *gomock.Call

GetLastConfigBlock indicates an expected call of GetLastConfigBlock.

func (*MockSDKInterfaceMockRecorder) GetLastEpoch

func (mr *MockSDKInterfaceMockRecorder) GetLastEpoch() *gomock.Call

GetLastEpoch indicates an expected call of GetLastEpoch.

func (*MockSDKInterfaceMockRecorder) GetMerklePathByTxId

func (mr *MockSDKInterfaceMockRecorder) GetMerklePathByTxId(txId interface{}) *gomock.Call

GetMerklePathByTxId indicates an expected call of GetMerklePathByTxId.

func (*MockSDKInterfaceMockRecorder) GetMinSelfDelegation

func (mr *MockSDKInterfaceMockRecorder) GetMinSelfDelegation() *gomock.Call

GetMinSelfDelegation indicates an expected call of GetMinSelfDelegation.

func (*MockSDKInterfaceMockRecorder) GetNodeChainList

func (mr *MockSDKInterfaceMockRecorder) GetNodeChainList() *gomock.Call

GetNodeChainList indicates an expected call of GetNodeChainList.

func (*MockSDKInterfaceMockRecorder) GetNodeId

func (mr *MockSDKInterfaceMockRecorder) GetNodeId(address interface{}) *gomock.Call

GetNodeId indicates an expected call of GetNodeId.

func (*MockSDKInterfaceMockRecorder) GetPoolStatus

func (mr *MockSDKInterfaceMockRecorder) GetPoolStatus() *gomock.Call

GetPoolStatus indicates an expected call of GetPoolStatus.

func (*MockSDKInterfaceMockRecorder) GetSlashingAddress

func (mr *MockSDKInterfaceMockRecorder) GetSlashingAddress() *gomock.Call

GetSlashingAddress indicates an expected call of GetSlashingAddress.

func (*MockSDKInterfaceMockRecorder) GetSlashingBalance

func (mr *MockSDKInterfaceMockRecorder) GetSlashingBalance() *gomock.Call

GetSlashingBalance indicates an expected call of GetSlashingBalance.

func (*MockSDKInterfaceMockRecorder) GetSlashingByEpochId

func (mr *MockSDKInterfaceMockRecorder) GetSlashingByEpochId(epochId interface{}) *gomock.Call

GetSlashingByEpochId indicates an expected call of GetSlashingByEpochId.

func (*MockSDKInterfaceMockRecorder) GetStakeContractAddress

func (mr *MockSDKInterfaceMockRecorder) GetStakeContractAddress() *gomock.Call

GetStakeContractAddress indicates an expected call of GetStakeContractAddress.

func (*MockSDKInterfaceMockRecorder) GetStateByKey

func (mr *MockSDKInterfaceMockRecorder) GetStateByKey(contractName, key interface{}, options ...interface{}) *gomock.Call

GetStateByKey indicates an expected call of GetStateByKey.

func (*MockSDKInterfaceMockRecorder) GetStateByPrefix

func (mr *MockSDKInterfaceMockRecorder) GetStateByPrefix(contractName, prefix interface{}, options ...interface{}) *gomock.Call

GetStateByPrefix indicates an expected call of GetStateByPrefix.

func (*MockSDKInterfaceMockRecorder) GetStateKeyHistory

func (mr *MockSDKInterfaceMockRecorder) GetStateKeyHistory(contractName, key interface{}, options ...interface{}) *gomock.Call

GetStateKeyHistory indicates an expected call of GetStateKeyHistory.

func (*MockSDKInterfaceMockRecorder) GetTxByTxId

func (mr *MockSDKInterfaceMockRecorder) GetTxByTxId(txId interface{}) *gomock.Call

GetTxByTxId indicates an expected call of GetTxByTxId.

func (*MockSDKInterfaceMockRecorder) GetTxIdsByTypeAndStage

func (mr *MockSDKInterfaceMockRecorder) GetTxIdsByTypeAndStage(txType, txStage interface{}) *gomock.Call

GetTxIdsByTypeAndStage indicates an expected call of GetTxIdsByTypeAndStage.

func (*MockSDKInterfaceMockRecorder) GetTxRequest

func (mr *MockSDKInterfaceMockRecorder) GetTxRequest(contractName, method, txId, kvs interface{}) *gomock.Call

GetTxRequest indicates an expected call of GetTxRequest.

func (*MockSDKInterfaceMockRecorder) GetTxStatus

func (mr *MockSDKInterfaceMockRecorder) GetTxStatus(txId interface{}) *gomock.Call

GetTxStatus indicates an expected call of GetTxStatus.

func (*MockSDKInterfaceMockRecorder) GetTxWithRWSetByTxId

func (mr *MockSDKInterfaceMockRecorder) GetTxWithRWSetByTxId(txId interface{}) *gomock.Call

GetTxWithRWSetByTxId indicates an expected call of GetTxWithRWSetByTxId.

func (*MockSDKInterfaceMockRecorder) GetTxsInPoolByTxIds

func (mr *MockSDKInterfaceMockRecorder) GetTxsInPoolByTxIds(txIds interface{}) *gomock.Call

GetTxsInPoolByTxIds indicates an expected call of GetTxsInPoolByTxIds.

func (*MockSDKInterfaceMockRecorder) GetUnboundingIntervalEpochNumber

func (mr *MockSDKInterfaceMockRecorder) GetUnboundingIntervalEpochNumber() *gomock.Call

GetUnboundingIntervalEpochNumber indicates an expected call of GetUnboundingIntervalEpochNumber.

func (*MockSDKInterfaceMockRecorder) GetUserDelegationByValidator

func (mr *MockSDKInterfaceMockRecorder) GetUserDelegationByValidator(delegator, validator interface{}) *gomock.Call

GetUserDelegationByValidator indicates an expected call of GetUserDelegationByValidator.

func (*MockSDKInterfaceMockRecorder) GetValidatorByAddress

func (mr *MockSDKInterfaceMockRecorder) GetValidatorByAddress(address interface{}) *gomock.Call

GetValidatorByAddress indicates an expected call of GetValidatorByAddress.

func (*MockSDKInterfaceMockRecorder) InvokeContract

func (mr *MockSDKInterfaceMockRecorder) InvokeContract(contractName, method, txId, kvs, timeout, withSyncResult interface{}) *gomock.Call

InvokeContract indicates an expected call of InvokeContract.

func (*MockSDKInterfaceMockRecorder) InvokeContractWithLimit

func (mr *MockSDKInterfaceMockRecorder) InvokeContractWithLimit(contractName, method, txId, kvs, timeout, withSyncResult, limit interface{}) *gomock.Call

InvokeContractWithLimit indicates an expected call of InvokeContractWithLimit.

func (*MockSDKInterfaceMockRecorder) InvokeSystemContract

func (mr *MockSDKInterfaceMockRecorder) InvokeSystemContract(contractName, method, txId, kvs, timeout, withSyncResult interface{}) *gomock.Call

InvokeSystemContract indicates an expected call of InvokeSystemContract.

func (*MockSDKInterfaceMockRecorder) Mint

func (mr *MockSDKInterfaceMockRecorder) Mint(address, amount interface{}) *gomock.Call

Mint indicates an expected call of Mint.

func (*MockSDKInterfaceMockRecorder) MultiSignContractQuery

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractQuery(txId interface{}) *gomock.Call

MultiSignContractQuery indicates an expected call of MultiSignContractQuery.

func (*MockSDKInterfaceMockRecorder) MultiSignContractQueryWithParams

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractQueryWithParams(txId, params interface{}) *gomock.Call

MultiSignContractQueryWithParams indicates an expected call of MultiSignContractQueryWithParams.

func (*MockSDKInterfaceMockRecorder) MultiSignContractReq

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractReq(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

MultiSignContractReq indicates an expected call of MultiSignContractReq.

func (*MockSDKInterfaceMockRecorder) MultiSignContractReqWithPayer

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractReqWithPayer(payload, endorsers, payer, timeout, withSyncResult interface{}) *gomock.Call

MultiSignContractReqWithPayer indicates an expected call of MultiSignContractReqWithPayer.

func (*MockSDKInterfaceMockRecorder) MultiSignContractTrig

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractTrig(multiSignReqPayload, timeout, limit, withSyncResult interface{}) *gomock.Call

MultiSignContractTrig indicates an expected call of MultiSignContractTrig.

func (*MockSDKInterfaceMockRecorder) MultiSignContractTrigWithPayer

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractTrigWithPayer(multiSignReqPayload, payer, timeout, limit, withSyncResult interface{}) *gomock.Call

MultiSignContractTrigWithPayer indicates an expected call of MultiSignContractTrigWithPayer.

func (*MockSDKInterfaceMockRecorder) MultiSignContractVote

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractVote(payload, endorser, isAgree, timeout, withSyncResult interface{}) *gomock.Call

MultiSignContractVote indicates an expected call of MultiSignContractVote.

func (*MockSDKInterfaceMockRecorder) MultiSignContractVoteWithGasLimit

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractVoteWithGasLimit(payload, endorser, isAgree, timeout, gasLimit, withSyncResult interface{}) *gomock.Call

MultiSignContractVoteWithGasLimit indicates an expected call of MultiSignContractVoteWithGasLimit.

func (*MockSDKInterfaceMockRecorder) MultiSignContractVoteWithGasLimitAndPayer

func (mr *MockSDKInterfaceMockRecorder) MultiSignContractVoteWithGasLimitAndPayer(payload, endorser, payer, isAgree, timeout, gasLimit, withSyncResult interface{}) *gomock.Call

MultiSignContractVoteWithGasLimitAndPayer indicates an expected call of MultiSignContractVoteWithGasLimitAndPayer.

func (*MockSDKInterfaceMockRecorder) Owner

Owner indicates an expected call of Owner.

func (*MockSDKInterfaceMockRecorder) QueryCert

func (mr *MockSDKInterfaceMockRecorder) QueryCert(certHashes interface{}) *gomock.Call

QueryCert indicates an expected call of QueryCert.

func (*MockSDKInterfaceMockRecorder) QueryCertsAlias

func (mr *MockSDKInterfaceMockRecorder) QueryCertsAlias(aliases interface{}) *gomock.Call

QueryCertsAlias indicates an expected call of QueryCertsAlias.

func (*MockSDKInterfaceMockRecorder) QueryContract

func (mr *MockSDKInterfaceMockRecorder) QueryContract(contractName, method, kvs, timeout interface{}) *gomock.Call

QueryContract indicates an expected call of QueryContract.

func (*MockSDKInterfaceMockRecorder) QueryHibeParamsWithOrgId

func (mr *MockSDKInterfaceMockRecorder) QueryHibeParamsWithOrgId(contractName, method, orgId, timeout interface{}) *gomock.Call

QueryHibeParamsWithOrgId indicates an expected call of QueryHibeParamsWithOrgId.

func (*MockSDKInterfaceMockRecorder) QuerySystemContract

func (mr *MockSDKInterfaceMockRecorder) QuerySystemContract(contractName, method, kvs, timeout interface{}) *gomock.Call

QuerySystemContract indicates an expected call of QuerySystemContract.

func (*MockSDKInterfaceMockRecorder) RestoreBlocks

func (mr *MockSDKInterfaceMockRecorder) RestoreBlocks(restoreHeight, mode, heightNoticeCallback interface{}) *gomock.Call

RestoreBlocks indicates an expected call of RestoreBlocks.

func (*MockSDKInterfaceMockRecorder) SaveData

func (mr *MockSDKInterfaceMockRecorder) SaveData(contractName, contractVersion, isDeployment, codeHash, reportHash, result, codeHeader, txId, rwSet, sign, events, privateReq, withSyncResult, timeout interface{}) *gomock.Call

SaveData indicates an expected call of SaveData.

func (*MockSDKInterfaceMockRecorder) SaveDir

func (mr *MockSDKInterfaceMockRecorder) SaveDir(orderId, txId, privateDir, withSyncResult, timeout interface{}) *gomock.Call

SaveDir indicates an expected call of SaveDir.

func (*MockSDKInterfaceMockRecorder) SaveRemoteAttestationProof

func (mr *MockSDKInterfaceMockRecorder) SaveRemoteAttestationProof(proof, txId, withSyncResult, timeout interface{}) *gomock.Call

SaveRemoteAttestationProof indicates an expected call of SaveRemoteAttestationProof.

func (*MockSDKInterfaceMockRecorder) SendArchiveBlockRequest

func (mr *MockSDKInterfaceMockRecorder) SendArchiveBlockRequest(payload, timeout interface{}) *gomock.Call

SendArchiveBlockRequest indicates an expected call of SendArchiveBlockRequest.

func (*MockSDKInterfaceMockRecorder) SendCertManageRequest

func (mr *MockSDKInterfaceMockRecorder) SendCertManageRequest(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

SendCertManageRequest indicates an expected call of SendCertManageRequest.

func (*MockSDKInterfaceMockRecorder) SendChainConfigUpdateRequest

func (mr *MockSDKInterfaceMockRecorder) SendChainConfigUpdateRequest(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

SendChainConfigUpdateRequest indicates an expected call of SendChainConfigUpdateRequest.

func (*MockSDKInterfaceMockRecorder) SendContractManageRequest

func (mr *MockSDKInterfaceMockRecorder) SendContractManageRequest(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

SendContractManageRequest indicates an expected call of SendContractManageRequest.

func (*MockSDKInterfaceMockRecorder) SendContractManageRequestWithPayer

func (mr *MockSDKInterfaceMockRecorder) SendContractManageRequestWithPayer(payload, endorsers, payer, timeout, withSyncResult interface{}) *gomock.Call

SendContractManageRequestWithPayer indicates an expected call of SendContractManageRequestWithPayer.

func (*MockSDKInterfaceMockRecorder) SendGasManageRequest

func (mr *MockSDKInterfaceMockRecorder) SendGasManageRequest(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

SendGasManageRequest indicates an expected call of SendGasManageRequest.

func (*MockSDKInterfaceMockRecorder) SendPubkeyManageRequest

func (mr *MockSDKInterfaceMockRecorder) SendPubkeyManageRequest(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

SendPubkeyManageRequest indicates an expected call of SendPubkeyManageRequest.

func (*MockSDKInterfaceMockRecorder) SendRestoreBlockRequest

func (mr *MockSDKInterfaceMockRecorder) SendRestoreBlockRequest(payload, timeout interface{}) *gomock.Call

SendRestoreBlockRequest indicates an expected call of SendRestoreBlockRequest.

func (*MockSDKInterfaceMockRecorder) SendTxRequest

func (mr *MockSDKInterfaceMockRecorder) SendTxRequest(txRequest, timeout, withSyncResult interface{}) *gomock.Call

SendTxRequest indicates an expected call of SendTxRequest.

func (*MockSDKInterfaceMockRecorder) SetDistributionPerBlock

func (mr *MockSDKInterfaceMockRecorder) SetDistributionPerBlock(distributionPerBlock interface{}) *gomock.Call

SetDistributionPerBlock indicates an expected call of SetDistributionPerBlock.

func (*MockSDKInterfaceMockRecorder) SetEpochBlockNumberAndValidatorNumber

func (mr *MockSDKInterfaceMockRecorder) SetEpochBlockNumberAndValidatorNumber(epochBlockNumber, epochValidatorNumber interface{}) *gomock.Call

SetEpochBlockNumberAndValidatorNumber indicates an expected call of SetEpochBlockNumberAndValidatorNumber.

func (*MockSDKInterfaceMockRecorder) SetGasExchangeRate

func (mr *MockSDKInterfaceMockRecorder) SetGasExchangeRate(gasExchangeRate interface{}) *gomock.Call

SetGasExchangeRate indicates an expected call of SetGasExchangeRate.

func (*MockSDKInterfaceMockRecorder) SetNodeId

func (mr *MockSDKInterfaceMockRecorder) SetNodeId(nodeId interface{}) *gomock.Call

SetNodeId indicates an expected call of SetNodeId.

func (*MockSDKInterfaceMockRecorder) SignCertManagePayload

func (mr *MockSDKInterfaceMockRecorder) SignCertManagePayload(payload interface{}) *gomock.Call

SignCertManagePayload indicates an expected call of SignCertManagePayload.

func (*MockSDKInterfaceMockRecorder) SignChainConfigPayload

func (mr *MockSDKInterfaceMockRecorder) SignChainConfigPayload(payload interface{}) *gomock.Call

SignChainConfigPayload indicates an expected call of SignChainConfigPayload.

func (*MockSDKInterfaceMockRecorder) SignContractManagePayload

func (mr *MockSDKInterfaceMockRecorder) SignContractManagePayload(payload interface{}) *gomock.Call

SignContractManagePayload indicates an expected call of SignContractManagePayload.

func (*MockSDKInterfaceMockRecorder) SignDeleteAliasPayload

func (mr *MockSDKInterfaceMockRecorder) SignDeleteAliasPayload(payload interface{}) *gomock.Call

SignDeleteAliasPayload indicates an expected call of SignDeleteAliasPayload.

func (*MockSDKInterfaceMockRecorder) SignUpdateCertByAliasPayload

func (mr *MockSDKInterfaceMockRecorder) SignUpdateCertByAliasPayload(payload interface{}) *gomock.Call

SignUpdateCertByAliasPayload indicates an expected call of SignUpdateCertByAliasPayload.

func (*MockSDKInterfaceMockRecorder) Stop

Stop indicates an expected call of Stop.

func (*MockSDKInterfaceMockRecorder) Subscribe

func (mr *MockSDKInterfaceMockRecorder) Subscribe(ctx, payloadBytes interface{}) *gomock.Call

Subscribe indicates an expected call of Subscribe.

func (*MockSDKInterfaceMockRecorder) SubscribeBlock

func (mr *MockSDKInterfaceMockRecorder) SubscribeBlock(ctx, startBlock, endBlock, withRWSet, onlyHeader interface{}) *gomock.Call

SubscribeBlock indicates an expected call of SubscribeBlock.

func (*MockSDKInterfaceMockRecorder) SubscribeContractEvent

func (mr *MockSDKInterfaceMockRecorder) SubscribeContractEvent(ctx, startBlock, endBlock, contractName, topic interface{}) *gomock.Call

SubscribeContractEvent indicates an expected call of SubscribeContractEvent.

func (*MockSDKInterfaceMockRecorder) SubscribeTx

func (mr *MockSDKInterfaceMockRecorder) SubscribeTx(ctx, startBlock, endBlock, contractName, txIds interface{}) *gomock.Call

SubscribeTx indicates an expected call of SubscribeTx.

func (*MockSDKInterfaceMockRecorder) Total

Total indicates an expected call of Total.

func (*MockSDKInterfaceMockRecorder) Transfer

func (mr *MockSDKInterfaceMockRecorder) Transfer(address, amount interface{}) *gomock.Call

Transfer indicates an expected call of Transfer.

func (*MockSDKInterfaceMockRecorder) TransferOwnership

func (mr *MockSDKInterfaceMockRecorder) TransferOwnership(address interface{}) *gomock.Call

TransferOwnership indicates an expected call of TransferOwnership.

func (*MockSDKInterfaceMockRecorder) UnDelegate

func (mr *MockSDKInterfaceMockRecorder) UnDelegate(from, value interface{}) *gomock.Call

UnDelegate indicates an expected call of UnDelegate.

func (*MockSDKInterfaceMockRecorder) UpdateCertByAlias

func (mr *MockSDKInterfaceMockRecorder) UpdateCertByAlias(payload, endorsers, timeout, withSyncResult interface{}) *gomock.Call

UpdateCertByAlias indicates an expected call of UpdateCertByAlias.

Jump to

Keyboard shortcuts

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