struct Blockfrost::Transaction
- Blockfrost::Transaction
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
Defined in:
blockfrost/cardano/transaction.crConstructors
Class Method Summary
- .delegations(hash : String)
- .get(hash : String)
- .metadata(hash : String)
- .metadata_in_cbor(hash : String)
- .mirs(hash : String)
- .pool_retires(hash : String)
- .pool_updates(hash : String)
- .redeemers(hash : String)
- .stakes(hash : String)
- .submit(data : BodyData)
- .utxos(hash : String)
- .withdrawals(hash : String)
Instance Method Summary
- #asset_mint_or_burn_count : Int32
- #block : String
- #block_height : Int32
- #block_time : Time
- #delegation_count : Int32
- #delegations
- #deposit : Int128
- #fees : Int128
-
#hash : String
Generates an
UInt64
hash value for this object. - #index : Int32
- #invalid_before : Int32?
- #invalid_hereafter : Int32?
- #metadata
- #metadata_in_cbor
- #mir_cert_count : Int32
- #mirs
- #output_amount : Array(Token)
- #pool_retire_count : Int32
- #pool_retires
- #pool_update_count : Int32
- #pool_updates
- #redeemer_count : Int32
- #redeemers
- #size : Int32
- #slot : Int32
- #stake_cert_count : Int32
- #stakes
- #utxo_count : Int32
- #utxos
- #valid_contract : Bool
- #withdrawal_count : Int32
- #withdrawals
Constructor Detail
Class Method Detail
Instance Method Detail
def hash : String
#
Description copied from class Object
Generates an UInt64
hash value for this object.
This method must have the property that a == b
implies a.hash == b.hash
.
The hash value is used along with ==
by the Hash
class to determine if two objects
reference the same hash key.
Subclasses must not override this method. Instead, they must define hash(hasher)
,
though usually the macro def_hash
can be used to generate this method.