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

added Dispenser and FixedRateExchange files

This commit is contained in:
Bogdan Fazakas 2021-10-21 11:47:00 +03:00
parent 21178025ee
commit 1bcde4dc4d
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import Web3 from 'web3'
export class Dispenser {
public GASLIMIT_DEFAULT = 1000000
public web3: Web3 = null
}

View File

@ -0,0 +1,6 @@
import Web3 from 'web3'
export class FixedRateExchange {
public GASLIMIT_DEFAULT = 1000000
public web3: Web3 = null
}