pub struct PlatformMakerIntentPrepareResponse {Show 13 fields
pub schema_version: u16,
pub contract_version: String,
pub market_id: String,
pub owner_wallet: String,
pub vault_address: String,
pub session_public_key: String,
pub intent_address: String,
pub action: PlatformMakerIntentAction,
pub transaction_base64: String,
pub recent_blockhash: String,
pub last_valid_block_height: u64,
pub expires_at_ms: u64,
pub sponsored: bool,
}Expand description
Canonical sponsored Vault transaction. The external session verifies the echoed bindings and fills only its signature slot; the owner wallet does not sign each intent update.
Fields§
§schema_version: u16§contract_version: String§market_id: String§owner_wallet: String§vault_address: String§session_public_key: String§intent_address: String§action: PlatformMakerIntentAction§transaction_base64: String§recent_blockhash: String§last_valid_block_height: u64§expires_at_ms: u64§sponsored: boolStrata is the fee payer. The confirmed network cost is recorded for bounded recovery from a later owner deposit.
Trait Implementations§
Source§impl Clone for PlatformMakerIntentPrepareResponse
impl Clone for PlatformMakerIntentPrepareResponse
Source§fn clone(&self) -> PlatformMakerIntentPrepareResponse
fn clone(&self) -> PlatformMakerIntentPrepareResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for PlatformMakerIntentPrepareResponse
impl<'de> Deserialize<'de> for PlatformMakerIntentPrepareResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerIntentPrepareResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerIntentPrepareResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformMakerIntentPrepareResponse
Source§impl Serialize for PlatformMakerIntentPrepareResponse
impl Serialize for PlatformMakerIntentPrepareResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlatformMakerIntentPrepareResponse
Auto Trait Implementations§
impl Freeze for PlatformMakerIntentPrepareResponse
impl RefUnwindSafe for PlatformMakerIntentPrepareResponse
impl Send for PlatformMakerIntentPrepareResponse
impl Sync for PlatformMakerIntentPrepareResponse
impl Unpin for PlatformMakerIntentPrepareResponse
impl UnsafeUnpin for PlatformMakerIntentPrepareResponse
impl UnwindSafe for PlatformMakerIntentPrepareResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more