ContractEncoder
Encodes and decodes Contract functions
class ContractEncoder<TContract extends BaseContract> {}
function constructor( contractWrapper: ContractWrapper<TContract>,
Encodes the given contract function with argument
function encode( fn: keyof TContract["functions"], args: Parameters< TContract["functions"][keyof TContract["functions"]] >,): string;