[][src]Struct ckb_jsonrpc_types::Transaction

pub struct Transaction {
    pub version: Version,
    pub cell_deps: Vec<CellDep>,
    pub header_deps: Vec<H256>,
    pub inputs: Vec<CellInput>,
    pub outputs: Vec<CellOutput>,
    pub outputs_data: Vec<JsonBytes>,
    pub witnesses: Vec<JsonBytes>,
}

The transaction.

Refer to RFC CKB Transaction Structure.

Fields

version: Version

Reserved for future usage. It must equal 0 in current version.

cell_deps: Vec<CellDep>

An array of cell deps.

CKB locates lock script and type script code via cell deps. The script also can uses syscalls to read the cells here.

Unlike inputs, the live cells can be used as cell deps in multiple transactions.

header_deps: Vec<H256>

An array of header deps.

The block must already be in the canonical chain.

Lock script and type script can read the header information of blocks listed here.

inputs: Vec<CellInput>

An array of input cells.

In the canonical chain, any cell can only appear as an input once.

outputs: Vec<CellOutput>

An array of output cells.

outputs_data: Vec<JsonBytes>

Output cells data.

This is a parallel array of outputs. The cell capacity, lock, and type of the output i is outputs[i] and its data is outputs_data[i].

witnesses: Vec<JsonBytes>

An array of variable-length binaries.

Lock script and type script can read data here to verify the transaction.

For example, the bundled secp256k1 lock script requires storing the signature in witnesses.

Trait Implementations

impl Clone for Transaction[src]

impl Debug for Transaction[src]

impl Default for Transaction[src]

impl<'de> Deserialize<'de> for Transaction[src]

impl Eq for Transaction[src]

impl From<Transaction> for Transaction[src]

impl From<Transaction> for Transaction[src]

impl Hash for Transaction[src]

impl PartialEq<Transaction> for Transaction[src]

impl Serialize for Transaction[src]

impl StructuralEq for Transaction[src]

impl StructuralPartialEq for Transaction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.