type WalletCallReceipt<quantity = Hex, status = Hex> = { blockHash: Hex; blockNumber: quantity; gasUsed: quantity; logs: Array<{ address: string; data: Hex; topics: Array<Hex> }>; status: status; transactionHash: Hex;};
type blockHash = Hex;
type blockNumber = quantity;
type gasUsed = quantity;
type logs = Array<{ address: string; data: Hex; topics: Array<Hex> }>;
type status = status;
type transactionHash = Hex;