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.

Required Associated Types

Required Methods

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

Implementors