Documentation
¶
Overview ¶
Package types contains the types used to interact with the json-rpc interface. It exists for users of fab3 types to use them without importing the fabric protobuf definitions.
Index ¶
Constants ¶
View Source
const ( // HexEncodedAddressLegnth is 20 bytes, which is 40 chars when hex-encoded HexEncodedAddressLegnth = 40 // HexEncodedTopicLegnth is 32 bytes, which is 64 hex chars when hex-encoded HexEncodedTopicLegnth = 64 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddressFilter ¶
type AddressFilter []string // 20 Byte Addresses, OR'd together
func NewAddressFilter ¶
func NewAddressFilter(s string) (AddressFilter, error)
NewAddressFilter takes a string and checks that is the correct length to represent a topic and strips the 0x
type Block ¶
type Block struct {
Number string `json:"number"` // number: QUANTITY - the block number. null when its pending block.
Hash string `json:"hash"` // hash: DATA, 32 Bytes - hash of the block. null when its pending block.
ParentHash string `json:"parentHash"` // parentHash: DATA, 32 Bytes - hash of the parent block.
// size: QUANTITY - integer the size of this block in bytes.
// timestamp: QUANTITY - the unix timestamp for when the block was collated.
Transactions []interface{} `json:"transactions"` // transactions: Array - Array of transaction objects, or 32 Bytes transaction hashes depending on the last given parameter.
}
Block is an eth return struct defined https://github.com/ethereum/wiki/wiki/JSON-RPC#returns-26
type GetLogsArgs ¶
type GetLogsArgs struct {
FromBlock string `json:"fromBlock,omitempty"`
ToBlock string `json:"toBlock,omitempty"`
Address AddressFilter `json:"address,omitempty"`
Topics TopicsFilter `json:"topics,omitempty"`
BlockHash string `json:"blockHash,omitempty"`
}
func (*GetLogsArgs) UnmarshalJSON ¶
func (gla *GetLogsArgs) UnmarshalJSON(data []byte) error
type Log ¶
type Log struct {
Address string `json:"address"`
Topics []string `json:"topics"`
Data string `json:"data,omitempty"`
BlockNumber string `json:"blockNumber"`
TxHash string `json:"transactionHash"`
TxIndex string `json:"transactionIndex"`
BlockHash string `json:"blockHash"`
Index string `json:"logIndex"`
}
type TopicFilter ¶
type TopicFilter []string // 32 Byte Topics, OR'd together
func NewTopicFilter ¶
func NewTopicFilter(s string) (TopicFilter, error)
NewTopicFilter takes a string and checks that is the correct length to represent a topic and strips the 0x
type TopicsFilter ¶
type TopicsFilter []TopicFilter // TopicFilter, AND'd together
func NewTopicsFilter ¶
func NewTopicsFilter(tf ...TopicFilter) TopicsFilter
type Transaction ¶
type Transaction struct {
BlockHash string `json:"blockHash"` // DATA, 32 Bytes - hash of the block where this transaction was in. null when its pending.
BlockNumber string `json:"blockNumber"` // QUANTITY - block number where this transaction was in. null when its pending.
To string `json:"to"` // DATA, 20 Bytes - address of the receiver. null when its a contract creation transaction.
// From is generated by EVM Chaincode. Until account generation
// stabilizes, we are not returning a value.
//
// From can be gotten from the Signature on the Transaction Envelope
//
// From string `json:"from"` // DATA, 20 Bytes - address of the sender.
Input string `json:"input"` // DATA - the data send along with the transaction.
TransactionIndex string `json:"transactionIndex"` // QUANTITY - integer of the transactions index position in the block. null when its pending.
Hash string `json:"hash"` //: DATA, 32 Bytes - hash of the transaction.
}
Transaction represents an ethereum evm transaction.
type TxReceipt ¶
type TxReceipt struct {
TransactionHash string `json:"transactionHash"`
TransactionIndex string `json:"transactionIndex"`
BlockHash string `json:"blockHash"`
BlockNumber string `json:"blockNumber"`
ContractAddress string `json:"contractAddress"`
GasUsed int `json:"gasUsed"`
CumulativeGasUsed int `json:"cumulativeGasUsed"`
To string `json:"to"`
Logs []Log `json:"logs"`
Status string `json:"status"`
}
Click to show internal directories.
Click to hide internal directories.