1234567891011121314151617181920212223242526272829303132 |
- /// Crate a default [`anchor_lang::IdlBuild`] implementation for the given type.
- ///
- /// This is used in order to make wrapper accounts of `anchor-spl` work with `idl-build` feature.
- macro_rules! impl_idl_build {
- ($ty: ty) => {
- impl anchor_lang::IdlBuild for $ty {}
- // This is not used for the IDL generation since default `IdlBuild` impl doesn't include
- // the type in the IDL but it still needs to be added in order to make compilation work.
- //
- // TODO: Find a better way to handle discriminators of wrapped external accounts.
- impl anchor_lang::Discriminator for $ty {
- const DISCRIMINATOR: &'static [u8] = &[];
- }
- };
- }
- #[cfg(feature = "metadata")]
- impl_idl_build!(crate::metadata::MetadataAccount);
- #[cfg(feature = "metadata")]
- impl_idl_build!(crate::metadata::MasterEditionAccount);
- #[cfg(feature = "metadata")]
- impl_idl_build!(crate::metadata::TokenRecordAccount);
- #[cfg(feature = "stake")]
- impl_idl_build!(crate::stake::StakeAccount);
- impl_idl_build!(crate::token::Mint);
- impl_idl_build!(crate::token::TokenAccount);
- impl_idl_build!(crate::token_interface::Mint);
- impl_idl_build!(crate::token_interface::TokenAccount);
|