macro_rules! fetch_proxy_data {
( $data:expr, $signer:ident, $authority:ident ) => { ... };
( $data:expr, $signer:ident, $authority:ident, $program:ident, $remaining:expr ) => { ... };
}Expand description
Fetches the data for a proxy asset.
This macro is used to fetch the data from the proxy extension of an asset.
ยงArguments
data- expression representing the account data.signer- identifier to store the signer seeds.authority- identifier to store the authority pubkey.program- (optional) identifier to store the program pubkey.remaining- (optional) expression representing the remaining accounts array.