pub struct MintTokenizedPosition {
Show 22 fields pub minter: Pubkey, pub recipient: Pubkey, pub factory_state: Pubkey, pub nft_mint: Pubkey, pub nft_account: Pubkey, pub pool_state: Pubkey, pub core_position_state: Pubkey, pub tick_lower_state: Pubkey, pub tick_upper_state: Pubkey, pub bitmap_lower_state: Pubkey, pub bitmap_upper_state: Pubkey, pub tokenized_position_state: Pubkey, pub token_account_0: Pubkey, pub token_account_1: Pubkey, pub vault_0: Pubkey, pub vault_1: Pubkey, pub last_observation_state: Pubkey, pub rent: Pubkey, pub core_program: Pubkey, pub system_program: Pubkey, pub token_program: Pubkey, pub associated_token_program: Pubkey,
}
Expand description

Generated client accounts for MintTokenizedPosition.

Fields

minter: Pubkey

Pays to mint the position

recipient: Pubkey

Receives the position NFT CHECK: This is not dangerous because we don’t read or write from this account

factory_state: Pubkey

The program account acting as the core liquidity custodian for token holder, and as mint authority of the position NFT

nft_mint: Pubkey

Unique token mint address

nft_account: Pubkey

Token account where position NFT will be minted

pool_state: Pubkey

Mint liquidity for this pool CHECK: Safety check performed inside function body

core_position_state: Pubkey

Core program account to store position data CHECK: Safety check performed inside function body

tick_lower_state: Pubkey

Account to store data for the position’s lower tick CHECK: Safety check performed inside function body

tick_upper_state: Pubkey

Account to store data for the position’s upper tick CHECK: Safety check performed inside function body

bitmap_lower_state: Pubkey

Account to mark the lower tick as initialized CHECK: Safety check performed inside function body

bitmap_upper_state: Pubkey

Account to mark the upper tick as initialized CHECK: Safety check performed inside function body

tokenized_position_state: Pubkey

Metadata for the tokenized position

token_account_0: Pubkey

The token account spending token_0 to mint the position CHECK: Account validation is performed by the token program

token_account_1: Pubkey

The token account spending token_1 to mint the position CHECK: Account validation is performed by the token program

vault_0: Pubkey

The token account owned by core to hold pool tokens for token_0

vault_1: Pubkey

The token account owned by core to hold pool tokens for token_1

last_observation_state: Pubkey

The latest observation state CHECK: Safety check performed inside function body

rent: Pubkey

Sysvar for token mint and ATA creation

core_program: Pubkey

The core program where liquidity is minted

system_program: Pubkey

Program to create the position manager state account

token_program: Pubkey

Program to create mint account and mint tokens

associated_token_program: Pubkey

Program to create an ATA for receiving position NFT

Trait Implementations

Serialize this instance into a vector of bytes.

is_signer is given as an optional override for the signer meta field. This covers the edge case when a program-derived-address needs to relay a transaction from a client to another program but sign the transaction before the relay. The client cannot mark the field as a signer, and so we have to override the is_signer meta field given by the client. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

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

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.