mirror of
https://github.com/oceanprotocol/react.git
synced 2024-11-22 01:37:03 +01:00
fix lint
This commit is contained in:
parent
ad270f8a39
commit
8896e776b3
@ -16,15 +16,15 @@ import { Decimal } from 'decimal.js'
|
||||
interface UsePricing {
|
||||
createPricing: (
|
||||
dataTokenAddress: string,
|
||||
priceOptions: PriceOptions,
|
||||
priceOptions: PriceOptions
|
||||
) => Promise<TransactionReceipt | null>
|
||||
buyDT: (
|
||||
dataTokenAddress: string,
|
||||
dtAmount: number | string,
|
||||
dtAmount: number | string
|
||||
) => Promise<TransactionReceipt | null>
|
||||
sellDT: (
|
||||
dataTokenAddress: string,
|
||||
dtAmount: number | string,
|
||||
dtAmount: number | string
|
||||
) => Promise<TransactionReceipt | null>
|
||||
pricingStep?: number
|
||||
pricingStepText?: string
|
||||
@ -43,11 +43,11 @@ export const sellDTFeedback: { [key in number]: string } = {
|
||||
2: '3/3 DT sold'
|
||||
}
|
||||
|
||||
export const createPricingFeedback:{ [key in number]: string } = {
|
||||
export const createPricingFeedback: { [key in number]: string } = {
|
||||
0: '1/4 Approving DT ...',
|
||||
1: '2/4 Approving Ocean ...',
|
||||
2: '3/4 Creating ....',
|
||||
3: '4/4 Pricing created',
|
||||
3: '4/4 Pricing created'
|
||||
}
|
||||
|
||||
function usePricing(): UsePricing {
|
||||
@ -76,11 +76,11 @@ function usePricing(): UsePricing {
|
||||
): Promise<TransactionReceipt | null> {
|
||||
setStepCreatePricing(0)
|
||||
let response = null
|
||||
try{
|
||||
try {
|
||||
switch (priceOptions.type) {
|
||||
case 'dynamic': {
|
||||
setStepCreatePricing(2)
|
||||
response=await ocean.pool.createDTPool(
|
||||
response = await ocean.pool.createDTPool(
|
||||
accountId,
|
||||
dataTokenAddress,
|
||||
priceOptions.dtAmount.toString(),
|
||||
@ -96,7 +96,7 @@ function usePricing(): UsePricing {
|
||||
return null
|
||||
}
|
||||
setStepCreatePricing(2)
|
||||
response=await ocean.fixedRateExchange.create(
|
||||
response = await ocean.fixedRateExchange.create(
|
||||
dataTokenAddress,
|
||||
priceOptions.price.toString(),
|
||||
accountId
|
||||
@ -112,8 +112,7 @@ function usePricing(): UsePricing {
|
||||
return response
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (error) {
|
||||
} catch (error) {
|
||||
setPricingError(error.message)
|
||||
Logger.error(error)
|
||||
} finally {
|
||||
@ -121,11 +120,11 @@ function usePricing(): UsePricing {
|
||||
setPricingStepText(undefined)
|
||||
setIsLoading(false)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async function buyDT(
|
||||
dataTokenAddress: string,
|
||||
dtAmount: number | string,
|
||||
dtAmount: number | string
|
||||
): Promise<TransactionReceipt | null> {
|
||||
if (!ocean || !account || !accountId) return
|
||||
|
||||
@ -140,7 +139,12 @@ function usePricing(): UsePricing {
|
||||
const price = new Decimal(bestPrice.value).times(1.05).toString()
|
||||
const maxPrice = new Decimal(bestPrice.value).times(2).toString()
|
||||
setStepBuyDT(1)
|
||||
Logger.log('Buying token from pool', bestPrice, account.getId(), price)
|
||||
Logger.log(
|
||||
'Buying token from pool',
|
||||
bestPrice,
|
||||
account.getId(),
|
||||
price
|
||||
)
|
||||
const buyResponse = await ocean.pool.buyDT(
|
||||
account.getId(),
|
||||
bestPrice.address,
|
||||
@ -191,7 +195,7 @@ function usePricing(): UsePricing {
|
||||
|
||||
async function sellDT(
|
||||
dataTokenAddress: string,
|
||||
dtAmount: number | string,
|
||||
dtAmount: number | string
|
||||
): Promise<TransactionReceipt | null> {
|
||||
if (!ocean || !account || !accountId) return
|
||||
|
||||
@ -200,7 +204,7 @@ function usePricing(): UsePricing {
|
||||
setStepSellDT(0)
|
||||
|
||||
try {
|
||||
const pool=await getFirstPool(ocean, dataTokenAddress)
|
||||
const pool = await getFirstPool(ocean, dataTokenAddress)
|
||||
const price = new Decimal(pool.value).times(0.95).toString()
|
||||
setStepSellDT(1)
|
||||
Logger.log('Selling token to pool', pool, account.getId(), price)
|
||||
|
@ -137,7 +137,7 @@ function OceanProvider({
|
||||
}
|
||||
async function logout() {
|
||||
// TODO: #67 check how is the proper way to logout
|
||||
web3Modal?.clearCachedProvider()
|
||||
if (web3Modal) web3Modal.clearCachedProvider()
|
||||
}
|
||||
|
||||
// TODO: #68 Refetch balance periodically, or figure out some event to subscribe to
|
||||
|
@ -14,5 +14,5 @@
|
||||
"importHelpers": true,
|
||||
"strict": true
|
||||
},
|
||||
"include": ["./src/@types", "./src/index.ts"]
|
||||
"include": ["./src/@types", "./src/hooks", "./src/index.ts"]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user