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

add type 'free' to BestPrice (#821)

This commit is contained in:
Kris Liew 2021-05-28 16:48:25 +08:00 committed by GitHub
parent 5302079ed0
commit 9df93b71cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
export interface BestPrice {
type: 'pool' | 'exchange' | ''
type: 'pool' | 'exchange' | 'free' | ''
address: string
value: number
isConsumable?: 'true' | 'false' | ''