TransactionErrorInfo
type TransactionErrorInfo = {  contractName?: string;  data?: string;  from: string;  hash?: string;  method?: string;  network: providers.Network;  reason: string;  rpcUrl?: string;  to?: string;  value?: BigNumber;};
type contractName = string;
type data = string;
type from = string;
type hash = string;
type method = string;
type network = providers.Network;
type reason = string;
type rpcUrl = string;
type to = string;
type value = BigNumber;