@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
14 lines (13 loc) • 460 B
TypeScript
import { EnhancedExecute } from '../../../../../utils/solidity/transactionFactory';
import { PriceInterface } from '@melonproject/token-math';
interface BuySell {
buy: PriceInterface;
sell: PriceInterface;
}
interface SetBaseRateArgs {
prices: BuySell[] | PriceInterface[];
blockNumber?: number;
}
declare type SetBaseRateResult = boolean;
declare const setBaseRate: EnhancedExecute<SetBaseRateArgs, SetBaseRateResult>;
export { setBaseRate };