mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
export interface PoolCreationParams {
|
|
ssContract: string
|
|
basetokenAddress: string
|
|
basetokenSender: string
|
|
publisherAddress: string
|
|
marketFeeCollector: string
|
|
poolTemplateAddress: string
|
|
rate: string
|
|
basetokenDecimals: number
|
|
vestingAmount: string
|
|
vestedBlocks: number
|
|
initialBasetokenLiquidity: string
|
|
swapFeeLiquidityProvider: number
|
|
swapFeeMarketPlaceRunner: number
|
|
}
|