@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
12 lines (11 loc) • 495 B
TypeScript
import { Address } from '@melonproject/token-math';
import { EnhancedExecute } from '../../../utils/solidity/transactionFactory';
import { FunctionSignatures } from '../../fund/trading/utils/FunctionSignatures';
export interface RegisterExchangeAdapterArgs {
exchange: Address;
adapter: Address;
takesCustody: Boolean;
sigs: FunctionSignatures[];
}
declare const registerExchangeAdapter: EnhancedExecute<RegisterExchangeAdapterArgs, boolean>;
export { registerExchangeAdapter };