import { ContractTransactionReceipt } from 'ethers'; interface DeployStableCoinResultParams { stableCoinProxyAddress: string; tokenAddress: string; reserveProxyAddress?: string; receipt?: ContractTransactionReceipt; } export default class DeployStableCoinResult { readonly stableCoinProxyAddress: string; readonly tokenAddress: string; readonly reserveProxyAddress?: string; readonly receipt?: ContractTransactionReceipt; constructor({ stableCoinProxyAddress, tokenAddress, reserveProxyAddress, receipt }: DeployStableCoinResultParams); } export {};