#[repr(C)]
pub struct ConfidentialTransferAccount {
Show 13 fields pub approved: PodBool, pub encryption_pubkey: EncryptionPubkey, pub pending_balance_lo: EncryptedBalance, pub pending_balance_hi: EncryptedBalance, pub available_balance: EncryptedBalance, pub decryptable_available_balance: DecryptableBalance, pub allow_confidential_credits: PodBool, pub allow_non_confidential_credits: PodBool, pub pending_balance_credit_counter: PodU64, pub maximum_pending_balance_credit_counter: PodU64, pub expected_pending_balance_credit_counter: PodU64, pub actual_pending_balance_credit_counter: PodU64, pub withheld_amount: EncryptedWithheldAmount,
}
Expand description

Confidential account state

Fields§

§approved: PodBool

true if this account has been approved for use. All confidential transfer operations for the account will fail until approval is granted.

§encryption_pubkey: EncryptionPubkey

The public key associated with ElGamal encryption

§pending_balance_lo: EncryptedBalance

The low 16 bits of the pending balance (encrypted by encryption_pubkey)

§pending_balance_hi: EncryptedBalance

The high 48 bits of the pending balance (encrypted by encryption_pubkey)

§available_balance: EncryptedBalance

The available balance (encrypted by encrypiton_pubkey)

§decryptable_available_balance: DecryptableBalance

The decryptable available balance

§allow_confidential_credits: PodBool

If false, the extended account rejects any incoming confidential transfers

§allow_non_confidential_credits: PodBool

If false, the base account rejects any incoming transfers

§pending_balance_credit_counter: PodU64

The total number of Deposit and Transfer instructions that have credited pending_balance

§maximum_pending_balance_credit_counter: PodU64

The maximum number of Deposit and Transfer instructions that can credit pending_balance before the ApplyPendingBalance instruction is executed

§expected_pending_balance_credit_counter: PodU64

The expected_pending_balance_credit_counter value that was included in the last ApplyPendingBalance instruction

§actual_pending_balance_credit_counter: PodU64

The actual pending_balance_credit_counter when the last ApplyPendingBalance instruction was executed

§withheld_amount: EncryptedWithheldAmount

The withheld amount of fees. This will always be zero if fees are never enabled.

Implementations§

source§

impl ConfidentialTransferAccount

source

pub fn approved(&self) -> ProgramResult

Check if a ConfidentialTransferAccount has been approved for use.

source

pub fn closable(&self) -> ProgramResult

Check if a ConfidentialTransferAccount is in a closable state.

source

pub fn non_confidential_transfer_allowed(&self) -> ProgramResult

Check if a base account of a ConfidentialTransferAccount accepts non-confidential transfers.

source

pub fn valid_as_source(&self) -> ProgramResult

Checks if a ConfidentialTransferAccount is configured to send funds.

source

pub fn valid_as_destination(&self) -> ProgramResult

Checks if a confidential extension is configured to receive funds.

A destination account can receive funds if the following conditions are satisfied:

  1. The account is approved by the confidential transfer mint authority
  2. The account is not disabled by the account owner
  3. The number of credits into the account has reached the maximum credit counter
source

pub fn increment_pending_balance_credit_counter(&mut self) -> ProgramResult

Increments a confidential extension pending balance credit counter.

Trait Implementations§

source§

impl Clone for ConfidentialTransferAccount

source§

fn clone(&self) -> ConfidentialTransferAccount

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ConfidentialTransferAccount

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ConfidentialTransferAccount

source§

fn default() -> ConfidentialTransferAccount

Returns the “default value” for a type. Read more
source§

impl Extension for ConfidentialTransferAccount

source§

const TYPE: ExtensionType = ExtensionType::ConfidentialTransferAccount

Associated extension type enum, checked at the start of TLV entries
source§

impl PartialEq<ConfidentialTransferAccount> for ConfidentialTransferAccount

source§

fn eq(&self, other: &ConfidentialTransferAccount) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Zeroable for ConfidentialTransferAccount

source§

fn zeroed() -> Self

source§

impl Copy for ConfidentialTransferAccount

source§

impl Pod for ConfidentialTransferAccount

source§

impl StructuralPartialEq for ConfidentialTransferAccount

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> AbiExample for T

§

default fn example() -> T

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> AnyBitPattern for Twhere T: Pod,

source§

impl<T> NoUninit for Twhere T: Pod,