1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

added Dispenser interface

This commit is contained in:
Bogdan Fazakas 2021-11-09 11:13:43 +02:00
parent fc6074e8af
commit c1033390ef
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
export interface DispenserCreationParams {
maxTokens: string
maxBalance: string
withMint?: boolean // true if we want to allow the dispenser to be a minter
allowedSwapper?: string // only account that can ask tokens. set address(0) if not required
}

View File

@ -1,4 +1,4 @@
export * from './FixedRateInterface'
export * from './PoolInterface'
export * from './Erc20Interface'
// export * from './DispenserInterface'
export * from './DispenserInterface'