@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
11 lines (10 loc) • 424 B
TypeScript
import { QuantityInterface, Address } from '@melonproject/token-math';
import { WithAddressQueryExecute } from '../../../../utils/solidity/withContractAddressQuery';
interface TransferFromArgs {
howMuch: QuantityInterface;
from: Address;
to: Address;
}
declare type TransferFromResult = boolean;
declare const transferFrom: WithAddressQueryExecute<TransferFromArgs, TransferFromResult>;
export { transferFrom };