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

Moving PublishingMarketFee to @types/erc20.ts

This commit is contained in:
Jamie Hewitt 2022-05-18 15:33:21 +03:00
parent 8c9e46a8dd
commit 5979f97e6b
2 changed files with 8 additions and 7 deletions

View File

@ -15,3 +15,9 @@ export interface ConsumeMarketFee {
consumeMarketFeeToken: string // address of the token marketplace wants to add fee on top consumeMarketFeeToken: string // address of the token marketplace wants to add fee on top
consumeMarketFeeAmount: string consumeMarketFeeAmount: string
} }
export interface PublishingMarketFee {
publishMarketFeeAddress: string
publishMarketFeeToken: string
publishMarketFeeAmount: string
}

View File

@ -17,7 +17,8 @@ import {
ConsumeMarketFee, ConsumeMarketFee,
FreOrderParams, FreOrderParams,
FreCreationParams, FreCreationParams,
ProviderFees ProviderFees,
PublishingMarketFee
} from '../@types' } from '../@types'
import { Nft } from './NFT' import { Nft } from './NFT'
import { Config } from '../models/index.js' import { Config } from '../models/index.js'
@ -44,12 +45,6 @@ export interface DispenserParams {
allowedSwapper?: string // only account that can ask tokens. set address(0) if not required allowedSwapper?: string // only account that can ask tokens. set address(0) if not required
} }
export interface PublishingMarketFee {
publishMarketFeeAddress: string
publishMarketFeeToken: string
publishMarketFeeAmount: string
}
export class Datatoken { export class Datatoken {
public GASLIMIT_DEFAULT = 1000000 public GASLIMIT_DEFAULT = 1000000
public factoryAddress: string public factoryAddress: string