Trait transaction_builder_generator::SourceInstaller[][src]

pub trait SourceInstaller {
    type Error;
    fn install_transaction_builders(
        &self,
        name: &str,
        abis: &[ScriptABI]
    ) -> Result<(), Self::Error>; }
Expand description

How to copy ABI-generated source code for a given language.

Associated Types

Required methods

Create a module exposing the transaction builders for the given ABIs.

Implementors