@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
9 lines (8 loc) • 322 B
TypeScript
import { Address, QuantityInterface } from '@melonproject/token-math';
import { Environment } from '../environment/Environment';
interface SendEthArgs {
to: Address;
howMuch: QuantityInterface;
}
declare const sendEth: (environment: Environment, { to, howMuch }: SendEthArgs) => Promise<void>;
export { sendEth };