Struct crate_token::accounts::Issue [−][src]
pub struct Issue {
pub crate_token: Pubkey,
pub crate_mint: Pubkey,
pub issue_authority: Pubkey,
pub mint_destination: Pubkey,
pub author_fee_destination: Pubkey,
pub protocol_fee_destination: Pubkey,
pub token_program: Pubkey,
}
Fields
crate_token: Pubkey
crate_mint: Pubkey
mint_destination: Pubkey
protocol_fee_destination: Pubkey
token_program: Pubkey
Trait Implementations
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