blueprint-context-derive 0.2.0-alpha.3

Procedural macros for deriving Context Extension traits from blueprint-sdk
Documentation
use proc_macro2::Ident;
use quote::quote;
use syn::DeriveInput;

use crate::cfg::FieldInfo;

/// Generate the `EVMProviderContext` implementation for the given struct.
pub fn generate_context_impl(
    DeriveInput {
        ident: name,
        generics,
        ..
    }: DeriveInput,
    config_field: FieldInfo,
) -> proc_macro2::TokenStream {
    let field_access = match config_field {
        FieldInfo::Named(ident) => quote! { self.#ident },
        FieldInfo::Unnamed(index) => quote! { self.#index },
    };

    let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();

    let network_ty_ident = Ident::new(&format!("__{}Network", name), name.span());
    let provider_ty_ident = Ident::new(&format!("__{}Provider", name), name.span());

    quote! {
        type #network_ty_ident = ::blueprint_sdk::alloy::network::Ethereum;
        type #provider_ty_ident = ::blueprint_sdk::alloy::providers::fillers::FillProvider<
            ::blueprint_sdk::alloy::providers::fillers::JoinFill<
                ::blueprint_sdk::alloy::providers::Identity,
                <#network_ty_ident as ::blueprint_sdk::alloy::providers::fillers::RecommendedFillers>::RecommendedFillers,
            >,
            ::blueprint_sdk::alloy::providers::RootProvider,
            #network_ty_ident,
        >;

        #[automatically_derived]
        impl #impl_generics ::blueprint_sdk::contexts::instrumented_evm_client::EvmInstrumentedClientContext for #name #ty_generics #where_clause {
            async fn evm_client(&self) -> ::blueprint_sdk::contexts::instrumented_evm_client::InstrumentedClient {
                ::blueprint_sdk::contexts::instrumented_evm_client::InstrumentedClient::new(
                    #field_access.http_rpc_endpoint.clone(),
                ).await.expect("Failed to create EVM client")
            }
        }
    }
}