[−][src]Struct ergo_headless_dapp_framework::UnsignedTransaction
Unsigned (inputs without proofs) transaction
Fields
inputs: Vec<UnsignedInput, Global>unsigned inputs, that will be spent by this transaction.
data_inputs: Vec<DataInput, Global>inputs, that are not going to be spent by transaction, but will be reachable from inputs
scripts. dataInputs scripts will not be executed, thus their scripts costs are not
included in transaction cost and they do not contain spending proofs.
output_candidates: Vec<ErgoBoxCandidate, Global>box candidates to be created by this transaction
Implementations
impl UnsignedTransaction[src]
pub fn new(
inputs: Vec<UnsignedInput, Global>,
data_inputs: Vec<DataInput, Global>,
output_candidates: Vec<ErgoBoxCandidate, Global>
) -> UnsignedTransaction[src]
inputs: Vec<UnsignedInput, Global>,
data_inputs: Vec<DataInput, Global>,
output_candidates: Vec<ErgoBoxCandidate, Global>
) -> UnsignedTransaction
Creates new transaction
pub fn id(&self) -> TxId[src]
Get transaction id
pub fn bytes_to_sign(&self) -> Vec<u8, Global>[src]
message to be signed by the [Prover] (serialized tx)
Trait Implementations
impl Clone for UnsignedTransaction[src]
pub fn clone(&self) -> UnsignedTransaction[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for UnsignedTransaction[src]
impl<'de> Deserialize<'de> for UnsignedTransaction[src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<UnsignedTransaction, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]
__deserializer: __D
) -> Result<UnsignedTransaction, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl From<UnsignedTransaction> for UnsignedTransaction[src]
pub fn from(t: UnsignedTransaction) -> UnsignedTransaction[src]
impl PartialEq<UnsignedTransaction> for UnsignedTransaction[src]
pub fn eq(&self, other: &UnsignedTransaction) -> bool[src]
pub fn ne(&self, other: &UnsignedTransaction) -> bool[src]
impl Serialize for UnsignedTransaction[src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralPartialEq for UnsignedTransaction[src]
impl TryFrom<UnsignedTransactionJson> for UnsignedTransaction[src]
type Error = TransactionFromJsonError
The type returned in the event of a conversion error.
pub fn try_from(
tx_json: UnsignedTransactionJson
) -> Result<UnsignedTransaction, <UnsignedTransaction as TryFrom<UnsignedTransactionJson>>::Error>[src]
tx_json: UnsignedTransactionJson
) -> Result<UnsignedTransaction, <UnsignedTransaction as TryFrom<UnsignedTransactionJson>>::Error>
Auto Trait Implementations
impl !RefUnwindSafe for UnsignedTransaction
impl !Send for UnsignedTransaction
impl !Sync for UnsignedTransaction
impl Unpin for UnsignedTransaction
impl !UnwindSafe for UnsignedTransaction
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,