Documentation ¶
Index ¶
- Constants
- func PackByte(v byte) *molecule.Byte
- func PackBytes(v []byte) *molecule.Bytes
- func PackBytesToOpt(v []byte) *molecule.BytesOpt
- func PackBytesVec(v [][]byte) *molecule.BytesVec
- func PackUint32(v uint32) *molecule.Uint32
- func PackUint64(v uint64) *molecule.Uint64
- func SerializeHashTypeByte(hashType ScriptHashType) (byte, error)
- func SerializeUint32(n uint32) []byte
- func SerializeUint64(n uint64) []byte
- func UnpackBytes(v *molecule.Bytes) []byte
- type AlertMessage
- type BannedAddress
- type BatchLiveCellItem
- type BatchTransactionItem
- type Block
- type BlockEconomicState
- type BlockIssuance
- type BlockReward
- type BlockWithCycles
- type BlockchainInfo
- type Cell
- type CellData
- type CellDep
- type CellInfo
- type CellInput
- type CellOutput
- type CellWithStatus
- type Consensus
- type DepType
- type DryRunTransactionResult
- type Epoch
- type EpochParams
- type EstimateCycles
- type FeeRateStatics
- type GenericRPCClient
- type HardForkFeature
- type Hash
- func (h Hash) Bytes() []byte
- func (h Hash) Hex() string
- func (h Hash) MarshalText() ([]byte, error)
- func (h *Hash) Pack() *molecule.Byte32
- func (h Hash) Serialize() []byte
- func (h *Hash) SetBytes(b []byte)
- func (h Hash) String() string
- func (h *Hash) UnmarshalJSON(input []byte) error
- func (h *Hash) UnmarshalText(input []byte) error
- type Header
- type JsonFeeRateStatics
- type LocalNode
- type LocalNodeProtocol
- type MinerReward
- type Network
- type NodeAddress
- type OutPoint
- type PackedBlock
- type PackedBlockWithCycles
- type PackedHeader
- type PeerSyncState
- type Proof
- type ProposalWindow
- type RationalU256
- type RawTxPool
- type RemoteNode
- type RemoteNodeProtocol
- type Script
- type ScriptHashType
- type ScriptSearchMode
- type ScriptType
- type SyncState
- type Transaction
- func (t Transaction) CalculateFee(feeRate uint64) uint64
- func (t Transaction) CalculateFeeWithTxWeight(cycles uint64, feeRate uint64) uint64
- func (t *Transaction) ComputeHash() Hash
- func (t Transaction) MarshalJSON() ([]byte, error)
- func (t *Transaction) OutputsCapacity() (totalCapacity uint64)
- func (t *Transaction) Pack() *molecule.Transaction
- func (t *Transaction) PackToRawTransaction() *molecule.RawTransaction
- func (t *Transaction) Serialize() []byte
- func (t *Transaction) SerializeWithoutWitnesses() []byte
- func (t *Transaction) SizeInBlock() uint64
- func (t *Transaction) UnmarshalJSON(input []byte) error
- type TransactionInput
- type TransactionProof
- type TransactionStatus
- type TransactionWithStatus
- type TxPoolInfo
- type TxStatus
- type UncleBlock
- type WitnessArgs
- type WitnessType
Constants ¶
View Source
const ( HashTypeData ScriptHashType = "data" HashTypeData1 ScriptHashType = "data1" HashTypeType ScriptHashType = "type" DepTypeCode DepType = "code" DepTypeDepGroup DepType = "dep_group" TransactionStatusPending TransactionStatus = "pending" TransactionStatusProposed TransactionStatus = "proposed" TransactionStatusCommitted TransactionStatus = "committed" TransactionStatusUnknown TransactionStatus = "unknown" TransactionStatusRejected TransactionStatus = "rejected" DefaultBytesPerCycle float64 = 0.000_170_571_4 )
View Source
const ( HashLength = 32 NetworkMain Network = iota NetworkTest WitnessTypeLock WitnessType = iota WitnessTypeInputType WitnessTypeOutputType ScriptTypeLock ScriptType = "lock" ScriptTypeType ScriptType = "type" ScriptSearchModePrefix ScriptSearchMode = "prefix" ScriptSearchModeExact ScriptSearchMode = "exact" )
Variables ¶
This section is empty.
Functions ¶
func PackBytesToOpt ¶
func PackBytesVec ¶
func PackUint32 ¶
func PackUint64 ¶
func SerializeHashTypeByte ¶
func SerializeHashTypeByte(hashType ScriptHashType) (byte, error)
func SerializeUint32 ¶
func SerializeUint64 ¶
func UnpackBytes ¶
Types ¶
type AlertMessage ¶
type BannedAddress ¶
type BannedAddress struct { Address string `json:"address"` BanReason string `json:"ban_reason"` BanUntil uint64 `json:"ban_until"` CreatedAt uint64 `json:"created_at"` }
func (*BannedAddress) UnmarshalJSON ¶
func (r *BannedAddress) UnmarshalJSON(input []byte) error
type BatchLiveCellItem ¶
type BatchLiveCellItem struct { OutPoint OutPoint WithData bool Result *CellWithStatus Error error }
type BatchTransactionItem ¶
type BatchTransactionItem struct { Hash Hash Result *TransactionWithStatus Error error }
refer BatchElem from go-ethereum
type Block ¶
type Block struct { Header *Header `json:"header"` Proposals []string `json:"proposals"` Transactions []*Transaction `json:"transactions"` Uncles []*UncleBlock `json:"uncles"` }
func UnpackBlock ¶ added in v2.2.0
type BlockEconomicState ¶
type BlockEconomicState struct { Issuance BlockIssuance `json:"issuance"` MinerReward MinerReward `json:"miner_reward"` TxsFee uint64 `json:"txs_fee"` FinalizedAt Hash `json:"finalized_at"` }
func (*BlockEconomicState) UnmarshalJSON ¶
func (r *BlockEconomicState) UnmarshalJSON(input []byte) error
type BlockIssuance ¶
type BlockReward ¶
type BlockWithCycles ¶ added in v2.2.0
type BlockchainInfo ¶
type BlockchainInfo struct { Alerts []*AlertMessage `json:"alerts"` Chain string `json:"chain"` Difficulty *big.Int `json:"difficulty"` Epoch uint64 `json:"epoch"` IsInitialBlockDownload bool `json:"is_initial_block_download"` MedianTime uint64 `json:"median_time"` }
func (*BlockchainInfo) UnmarshalJSON ¶
func (r *BlockchainInfo) UnmarshalJSON(input []byte) error
type CellDep ¶
func UnpackCellDep ¶ added in v2.2.0
type CellInfo ¶
type CellInfo struct { Data *CellData `json:"data"` Output *CellOutput `json:"output"` }
type CellInput ¶
type CellInput struct { Since uint64 `json:"since"` PreviousOutput *OutPoint `json:"previous_output"` }
func UnpackCellInput ¶ added in v2.2.0
func (CellInput) MarshalJSON ¶
func (*CellInput) UnmarshalJSON ¶
type CellOutput ¶
type CellOutput struct { Capacity uint64 `json:"capacity"` Lock *Script `json:"lock"` Type *Script `json:"type"` }
func UnpackCellOutput ¶ added in v2.2.0
func UnpackCellOutput(v *molecule.CellOutput) *CellOutput
func (CellOutput) MarshalJSON ¶
func (r CellOutput) MarshalJSON() ([]byte, error)
func (CellOutput) OccupiedCapacity ¶
func (r CellOutput) OccupiedCapacity(outputData []byte) uint64
func (*CellOutput) Pack ¶
func (r *CellOutput) Pack() *molecule.CellOutput
func (*CellOutput) Serialize ¶
func (r *CellOutput) Serialize() []byte
func (*CellOutput) UnmarshalJSON ¶
func (r *CellOutput) UnmarshalJSON(input []byte) error
type CellWithStatus ¶
type Consensus ¶
type Consensus struct { Id string `json:"ID"` GenesisHash Hash `json:"genesis_hash"` DaoTypeHash *Hash `json:"dao_type_hash"` Secp256k1Blake160SighashAllTypeHash *Hash `json:"secp256k1_blake160_sighash_all_type_hash"` Secp256k1Blake160MultisigAllTypeHash *Hash `json:"secp256k1_blake160_multisig_all_type_hash"` InitialPrimaryEpochReward uint64 `json:"initial_primary_epoch_reward"` SecondaryEpochReward uint64 `json:"secondary_epoch_reward"` MaxUnclesNum uint64 `json:"max_uncles_num"` OrphanRateTarget RationalU256 `json:"orphan_rate_target"` EpochDurationTarget uint64 `json:"epoch_duration_target"` TxProposalWindow ProposalWindow `json:"tx_proposal_window"` ProposerRewardRatio RationalU256 `json:"proposer_reward_ratio"` CellbaseMaturity uint64 `json:"cellbase_maturity"` MedianTimeBlockCount uint64 `json:"median_time_block_count"` MaxBlockCycles uint64 `json:"max_block_cycles"` MaxBlockBytes uint64 `json:"max_block_bytes"` BlockVersion uint32 `json:"block_version"` TxVersion uint32 `json:"tx_version"` TypeIdCodeHash Hash `json:"type_id_code_hash"` MaxBlockProposalsLimit uint64 `json:"max_block_proposals_limit"` PrimaryEpochRewardHalvingInterval uint64 `json:"primary_epoch_reward_halving_interval"` PermanentDifficultyInDummy bool `json:"permanent_difficulty_in_dummy"` HardforkFeatures []*HardForkFeature `json:"hardfork_features"` }
func (*Consensus) UnmarshalJSON ¶
type DryRunTransactionResult ¶
type DryRunTransactionResult struct {
Cycles uint64 `json:"cycles"`
}
func (*DryRunTransactionResult) UnmarshalJSON ¶
func (r *DryRunTransactionResult) UnmarshalJSON(input []byte) error
type Epoch ¶
type Epoch struct { CompactTarget uint64 `json:"compact_target"` Length uint64 `json:"length"` Number uint64 `json:"number"` StartNumber uint64 `json:"start_number"` }
func (Epoch) MarshalJSON ¶
func (*Epoch) UnmarshalJSON ¶
type EpochParams ¶
func ParseEpoch ¶
func ParseEpoch(epoch uint64) *EpochParams
func (*EpochParams) Uint64 ¶
func (ep *EpochParams) Uint64() uint64
type EstimateCycles ¶ added in v2.0.3
type EstimateCycles struct {
Cycles uint64 `json:"cycles"`
}
func (*EstimateCycles) UnmarshalJSON ¶ added in v2.0.3
func (r *EstimateCycles) UnmarshalJSON(input []byte) error
type FeeRateStatics ¶ added in v2.0.3
func (*FeeRateStatics) MarshalJSON ¶ added in v2.0.3
func (r *FeeRateStatics) MarshalJSON() ([]byte, error)
func (*FeeRateStatics) UnmarshalJSON ¶ added in v2.0.3
func (r *FeeRateStatics) UnmarshalJSON(input []byte) error
type GenericRPCClient ¶ added in v2.2.0
type HardForkFeature ¶
type Hash ¶
type Hash [HashLength]byte
func BytesToHash ¶
func UnpackHash ¶
func (Hash) MarshalText ¶
func (*Hash) UnmarshalJSON ¶
func (*Hash) UnmarshalText ¶
type Header ¶
type Header struct { CompactTarget uint32 `json:"compact_target"` Dao Hash `json:"dao"` Epoch uint64 `json:"epoch"` Hash Hash `json:"hash"` Nonce *big.Int `json:"nonce"` Number uint64 `json:"number"` ParentHash Hash `json:"parent_hash"` ProposalsHash Hash `json:"proposals_hash"` Timestamp uint64 `json:"timestamp"` TransactionsRoot Hash `json:"transactions_root"` ExtraHash Hash `json:"extra_hash"` Version uint32 `json:"version"` }
func UnpackHeader ¶ added in v2.2.0
func (Header) MarshalJSON ¶
func (*Header) UnmarshalJSON ¶
type JsonFeeRateStatics ¶ added in v2.0.3
type LocalNode ¶
type LocalNode struct { Version string `json:"version"` NodeId string `json:"node_id"` Active bool `json:"active"` Addresses []*NodeAddress `json:"addresses"` Protocols []*LocalNodeProtocol `json:"protocols"` Connections uint64 `json:"connections"` }
func (*LocalNode) UnmarshalJSON ¶
type LocalNodeProtocol ¶
type LocalNodeProtocol struct { Id uint64 `json:"id"` Name string `json:"name"` SupportVersions []string `json:"support_versions"` }
func (*LocalNodeProtocol) UnmarshalJSON ¶
func (r *LocalNodeProtocol) UnmarshalJSON(input []byte) error
type MinerReward ¶
type NodeAddress ¶
func (*NodeAddress) UnmarshalJSON ¶
func (r *NodeAddress) UnmarshalJSON(input []byte) error
type OutPoint ¶
func UnpackOutPoint ¶ added in v2.2.0
func (OutPoint) MarshalJSON ¶
func (*OutPoint) UnmarshalJSON ¶
type PackedBlock ¶ added in v2.2.0
type PackedBlock struct {
Block string `json:"block"`
}
func (*PackedBlock) UnmarshalJSON ¶ added in v2.2.0
func (r *PackedBlock) UnmarshalJSON(input []byte) error
type PackedBlockWithCycles ¶ added in v2.2.0
type PackedHeader ¶ added in v2.2.0
type PackedHeader struct {
Header string `json:"header"`
}
type PeerSyncState ¶
type PeerSyncState struct { BestKnownHeaderHash *Hash `json:"best_known_header_hash,omitempty"` BestKnownHeaderNumber *uint64 `json:"best_known_header_number,omitempty"` LastCommonHeaderHash *Hash `json:"last_common_header_hash,omitempty"` LastCommonHeaderNumber *uint64 `json:"last_common_header_number,omitempty"` UnknownHeaderListSize uint64 `json:"unknown_header_list_size"` InflightCount uint64 `json:"inflight_count"` CanFetchCount uint64 `json:"can_fetch_count"` }
func (*PeerSyncState) UnmarshalJSON ¶
func (r *PeerSyncState) UnmarshalJSON(input []byte) error
type ProposalWindow ¶
type RationalU256 ¶
type RemoteNode ¶
type RemoteNode struct { Version string `json:"version"` NodeID string `json:"node_id"` Addresses []*NodeAddress `json:"addresses"` IsOutbound bool `json:"is_outbound"` ConnectedDuration uint64 `json:"connected_duration"` LastPingDuration *uint64 `json:"last_ping_duration,omitempty"` SyncState *PeerSyncState `json:"sync_state,omitempty"` Protocols []*RemoteNodeProtocol `json:"protocols"` }
func (*RemoteNode) UnmarshalJSON ¶
func (r *RemoteNode) UnmarshalJSON(input []byte) error
type RemoteNodeProtocol ¶
func (*RemoteNodeProtocol) UnmarshalJSON ¶
func (r *RemoteNodeProtocol) UnmarshalJSON(input []byte) error
type Script ¶
type Script struct { CodeHash Hash `json:"code_hash"` HashType ScriptHashType `json:"hash_type"` Args []byte `json:"args"` }
func UnpackScript ¶ added in v2.2.0
func UnpackScriptOpt ¶ added in v2.2.0
func (Script) MarshalJSON ¶
func (*Script) OccupiedCapacity ¶
func (*Script) UnmarshalJSON ¶
type ScriptHashType ¶
type ScriptHashType string
func DeserializeHashTypeByte ¶
func DeserializeHashTypeByte(hashType byte) (ScriptHashType, error)
func (ScriptHashType) Pack ¶
func (t ScriptHashType) Pack() *molecule.Byte
func (ScriptHashType) Serialize ¶
func (t ScriptHashType) Serialize() []byte
type ScriptSearchMode ¶ added in v2.2.0
type ScriptSearchMode string
type ScriptType ¶ added in v2.0.3
type ScriptType string
func (*ScriptType) UnmarshalJSON ¶ added in v2.0.3
func (r *ScriptType) UnmarshalJSON(input []byte) error
type SyncState ¶
type SyncState struct { Ibd bool `json:"ibd"` BestKnownBlockNumber uint64 `json:"best_known_block_number"` BestKnownBlockTimestamp uint64 `json:"best_known_block_timestamp"` OrphanBlocksCount uint64 `json:"orphan_blocks_count"` InflightBlocksCount uint64 `json:"inflight_blocks_count"` FastTime uint64 `json:"fast_time"` LowTime uint64 `json:"low_time"` NormalTime uint64 `json:"normal_time"` }
func (*SyncState) UnmarshalJSON ¶
type Transaction ¶
type Transaction struct { Version uint32 `json:"version"` Hash Hash `json:"hash"` CellDeps []*CellDep `json:"cell_deps"` HeaderDeps []Hash `json:"header_deps"` Inputs []*CellInput `json:"inputs"` Outputs []*CellOutput `json:"outputs"` OutputsData [][]byte `json:"outputs_data"` Witnesses [][]byte `json:"witnesses"` }
func UnpackTransaction ¶ added in v2.2.0
func UnpackTransaction(v *molecule.Transaction) *Transaction
func (Transaction) CalculateFee ¶ added in v2.0.3
func (t Transaction) CalculateFee(feeRate uint64) uint64
func (Transaction) CalculateFeeWithTxWeight ¶ added in v2.0.3
func (t Transaction) CalculateFeeWithTxWeight(cycles uint64, feeRate uint64) uint64
func (*Transaction) ComputeHash ¶
func (t *Transaction) ComputeHash() Hash
func (Transaction) MarshalJSON ¶
func (t Transaction) MarshalJSON() ([]byte, error)
func (*Transaction) OutputsCapacity ¶
func (t *Transaction) OutputsCapacity() (totalCapacity uint64)
func (*Transaction) Pack ¶
func (t *Transaction) Pack() *molecule.Transaction
func (*Transaction) PackToRawTransaction ¶
func (t *Transaction) PackToRawTransaction() *molecule.RawTransaction
func (*Transaction) Serialize ¶
func (t *Transaction) Serialize() []byte
func (*Transaction) SerializeWithoutWitnesses ¶
func (t *Transaction) SerializeWithoutWitnesses() []byte
func (*Transaction) SizeInBlock ¶
func (t *Transaction) SizeInBlock() uint64
func (*Transaction) UnmarshalJSON ¶
func (t *Transaction) UnmarshalJSON(input []byte) error
type TransactionInput ¶
type TransactionInput struct { OutPoint *OutPoint `json:"out_point"` Output *CellOutput `json:"output"` OutputData []byte `json:"output_data"` }
type TransactionProof ¶
type TransactionStatus ¶
type TransactionStatus string
func (*TransactionStatus) UnmarshalJSON ¶
func (r *TransactionStatus) UnmarshalJSON(input []byte) error
type TransactionWithStatus ¶
type TransactionWithStatus struct { Transaction *Transaction `json:"transaction"` Cycles uint64 `json:"cycles"` TxStatus *TxStatus `json:"tx_status"` }
func (*TransactionWithStatus) MarshalJSON ¶ added in v2.0.3
func (r *TransactionWithStatus) MarshalJSON() ([]byte, error)
func (*TransactionWithStatus) UnmarshalJSON ¶ added in v2.0.3
func (r *TransactionWithStatus) UnmarshalJSON(input []byte) error
type TxPoolInfo ¶
type TxPoolInfo struct { TipHash Hash `json:"tip_hash"` TipNumber uint64 `json:"tip_number"` Pending uint64 `json:"pending"` Proposed uint64 `json:"proposed"` Orphan uint64 `json:"orphan"` TotalTxSize uint64 `json:"total_tx_size"` TotalTxCycles uint64 `json:"total_tx_cycles"` MinFeeRate uint64 `json:"min_fee_rate"` LastTxsUpdatedAt uint64 `json:"last_txs_updated_at"` }
func (*TxPoolInfo) UnmarshalJSON ¶
func (r *TxPoolInfo) UnmarshalJSON(input []byte) error
type TxStatus ¶
type TxStatus struct { Status TransactionStatus `json:"status"` BlockHash *Hash `json:"block_hash"` Reason *string `json:"reason"` }
type UncleBlock ¶
func UnpackUncleBlock ¶ added in v2.2.0
func UnpackUncleBlock(v *molecule.UncleBlock) *UncleBlock
type WitnessArgs ¶
type WitnessArgs struct { Lock []byte `json:"lock"` InputType []byte `json:"input_type"` OutputType []byte `json:"output_type"` }
func DeserializeWitnessArgs ¶
func DeserializeWitnessArgs(in []byte) (*WitnessArgs, error)
func UnpackWitnessArgs ¶
func UnpackWitnessArgs(v *molecule.WitnessArgs) *WitnessArgs
func (*WitnessArgs) Pack ¶
func (r *WitnessArgs) Pack() *molecule.WitnessArgs
func (*WitnessArgs) Serialize ¶
func (w *WitnessArgs) Serialize() []byte
type WitnessType ¶
type WitnessType uint
Source Files ¶
Click to show internal directories.
Click to hide internal directories.