pub trait SourceInstaller {
type Error;
// Required method
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.