ocean-subgraph/src/mappings/fixedRateExchange.ts

211 lines
6.9 KiB
TypeScript
Raw Normal View History

2022-02-18 12:09:18 +01:00
import { BigInt, Address } from '@graphprotocol/graph-ts'
2021-11-10 13:47:44 +01:00
import {
ExchangeActivated,
ExchangeAllowedSwapperChanged,
ExchangeCreated,
ExchangeDeactivated,
ExchangeMintStateChanged,
ExchangeRateChanged,
2022-02-17 11:26:05 +01:00
Swapped,
PublishMarketFeeChanged
2021-11-10 13:47:44 +01:00
} from '../@types/FixedRateExchange/FixedRateExchange'
import {
FixedRateExchange,
FixedRateExchangeSwap,
FixedRateExchangeUpdate
} from '../@types/schema'
import {
getFixedRateExchange,
getUpdateOrSwapId,
getFixedRateGraphID,
updateFixedRateExchangeSupply
} from './utils/fixedRateUtils'
2021-11-19 15:42:17 +01:00
import { weiToDecimal } from './utils/generic'
import { addFixedRateExchange } from './utils/globalUtils'
2021-11-10 13:47:44 +01:00
import { getToken } from './utils/tokenUtils'
import { getUser } from './utils/userUtils'
2021-11-04 16:00:43 +01:00
export function handleExchangeCreated(event: ExchangeCreated): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2021-11-04 16:00:43 +01:00
)
const fixedRateExchange = new FixedRateExchange(fixedRateId)
2021-11-10 13:47:44 +01:00
const user = getUser(event.params.exchangeOwner.toHexString())
fixedRateExchange.owner = user.id
fixedRateExchange.contract = event.address.toHexString()
fixedRateExchange.exchangeId = event.params.exchangeId.toHexString()
2022-02-18 12:09:18 +01:00
fixedRateExchange.datatoken = getToken(event.params.datatoken, true).id
fixedRateExchange.baseToken = getToken(event.params.baseToken, false).id
2021-11-04 16:00:43 +01:00
fixedRateExchange.active = false
2022-02-11 14:13:21 +01:00
fixedRateExchange.price = weiToDecimal(
event.params.fixedRate.toBigDecimal(),
BigInt.fromI32(18).toI32()
)
fixedRateExchange.createdTimestamp = event.block.timestamp.toI32()
fixedRateExchange.tx = event.transaction.hash.toHex()
fixedRateExchange.block = event.block.number.toI32()
2021-11-04 16:00:43 +01:00
fixedRateExchange.save()
addFixedRateExchange()
updateFixedRateExchangeSupply(event.params.exchangeId, event.address)
2021-11-04 16:00:43 +01:00
}
2021-11-10 13:47:44 +01:00
export function handleRateChange(event: ExchangeRateChanged): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2021-11-10 13:47:44 +01:00
)
const fixedRateExchange = getFixedRateExchange(fixedRateId)
2021-11-10 13:47:44 +01:00
const newExchangeUpdate = new FixedRateExchangeUpdate(
getUpdateOrSwapId(event.transaction.hash.toHex(), fixedRateId)
2021-11-10 13:47:44 +01:00
)
newExchangeUpdate.oldPrice = fixedRateExchange.price
newExchangeUpdate.createdTimestamp = event.block.timestamp.toI32()
2021-12-02 12:08:47 +01:00
newExchangeUpdate.tx = event.transaction.hash.toHex()
2021-11-10 13:47:44 +01:00
newExchangeUpdate.block = event.block.number.toI32()
2021-11-19 15:42:17 +01:00
fixedRateExchange.price = weiToDecimal(
2021-11-10 13:47:44 +01:00
event.params.newRate.toBigDecimal(),
BigInt.fromI32(18).toI32()
)
newExchangeUpdate.newPrice = fixedRateExchange.price
newExchangeUpdate.save()
fixedRateExchange.save()
}
export function handleMintStateChanged(event: ExchangeMintStateChanged): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2021-11-10 13:47:44 +01:00
)
const fixedRateExchange = getFixedRateExchange(fixedRateId)
2021-11-10 13:47:44 +01:00
fixedRateExchange.withMint = event.params.withMint
fixedRateExchange.save()
}
// TODO: implement fre updates/history for changes
export function handleActivated(event: ExchangeActivated): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2021-11-10 13:47:44 +01:00
)
const fixedRateExchange = getFixedRateExchange(fixedRateId)
2021-11-10 13:47:44 +01:00
const newExchangeUpdate = new FixedRateExchangeUpdate(
getUpdateOrSwapId(event.transaction.hash.toHex(), fixedRateId)
2021-11-10 13:47:44 +01:00
)
newExchangeUpdate.oldActive = fixedRateExchange.active
newExchangeUpdate.newActive = true
newExchangeUpdate.createdTimestamp = event.block.timestamp.toI32()
2021-12-02 12:08:47 +01:00
newExchangeUpdate.tx = event.transaction.hash.toHex()
2021-11-10 13:47:44 +01:00
newExchangeUpdate.block = event.block.number.toI32()
fixedRateExchange.active = true
newExchangeUpdate.save()
fixedRateExchange.save()
}
export function handleDeactivated(event: ExchangeDeactivated): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2021-11-10 13:47:44 +01:00
)
const fixedRateExchange = getFixedRateExchange(fixedRateId)
2021-11-10 13:47:44 +01:00
const newExchangeUpdate = new FixedRateExchangeUpdate(
getUpdateOrSwapId(event.transaction.hash.toHex(), fixedRateId)
2021-11-10 13:47:44 +01:00
)
newExchangeUpdate.oldActive = fixedRateExchange.active
newExchangeUpdate.newActive = false
2021-11-26 09:04:14 +01:00
2021-11-10 13:47:44 +01:00
newExchangeUpdate.createdTimestamp = event.block.timestamp.toI32()
2021-12-02 12:08:47 +01:00
newExchangeUpdate.tx = event.transaction.hash.toHex()
2021-11-10 13:47:44 +01:00
newExchangeUpdate.block = event.block.number.toI32()
fixedRateExchange.active = false
newExchangeUpdate.save()
fixedRateExchange.save()
}
export function handleAllowedSwapperChanged(
event: ExchangeAllowedSwapperChanged
): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2021-11-10 13:47:44 +01:00
)
const fixedRateExchange = getFixedRateExchange(fixedRateId)
2021-11-10 13:47:44 +01:00
const newExchangeUpdate = new FixedRateExchangeUpdate(
getUpdateOrSwapId(event.transaction.hash.toHex(), fixedRateId)
2021-11-10 13:47:44 +01:00
)
newExchangeUpdate.createdTimestamp = event.block.timestamp.toI32()
2021-12-02 12:08:47 +01:00
newExchangeUpdate.tx = event.transaction.hash.toHex()
2021-11-10 13:47:44 +01:00
newExchangeUpdate.block = event.block.number.toI32()
newExchangeUpdate.oldAllowedSwapper = fixedRateExchange.allowedSwapper
fixedRateExchange.allowedSwapper = event.params.allowedSwapper.toHex()
newExchangeUpdate.newAllowedSwapper = fixedRateExchange.allowedSwapper
newExchangeUpdate.save()
fixedRateExchange.save()
}
// TODO: implement market fee, opf fee
export function handleSwap(event: Swapped): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2021-11-10 13:47:44 +01:00
)
const fixedRateExchange = getFixedRateExchange(fixedRateId)
2021-11-10 13:47:44 +01:00
const swap = new FixedRateExchangeSwap(
getUpdateOrSwapId(event.transaction.hash.toHex(), fixedRateId)
2021-11-10 13:47:44 +01:00
)
swap.createdTimestamp = event.block.timestamp.toI32()
2021-12-02 12:08:47 +01:00
swap.tx = event.transaction.hash.toHex()
2021-11-10 13:47:44 +01:00
swap.block = event.block.number.toI32()
swap.exchangeId = fixedRateId
2021-11-10 13:47:44 +01:00
swap.by = getUser(event.params.by.toHex()).id
// we need to fetch the decimals of the base token
2022-02-18 12:09:18 +01:00
const baseToken = getToken(
Address.fromString(fixedRateExchange.baseToken),
false
)
2021-11-19 15:42:17 +01:00
swap.baseTokenAmount = weiToDecimal(
2021-11-10 13:47:44 +01:00
event.params.baseTokenSwappedAmount.toBigDecimal(),
BigInt.fromI32(baseToken.decimals).toI32()
)
2021-11-19 15:42:17 +01:00
swap.dataTokenAmount = weiToDecimal(
event.params.datatokenSwappedAmount.toBigDecimal(),
2021-11-10 13:47:44 +01:00
BigInt.fromI32(18).toI32()
)
swap.save()
updateFixedRateExchangeSupply(event.params.exchangeId, event.address)
2021-11-10 13:47:44 +01:00
}
2022-02-17 11:26:05 +01:00
export function handlePublishMarketFeeChanged(
event: PublishMarketFeeChanged
): void {
const fixedRateId = getFixedRateGraphID(
event.params.exchangeId.toHexString(),
event.address
2022-02-17 11:26:05 +01:00
)
const fixedRateExchange = getFixedRateExchange(fixedRateId)
2022-02-17 11:26:05 +01:00
if (fixedRateExchange) {
fixedRateExchange.publishMarketFeeAddress =
event.params.newMarketCollector.toHexString()
fixedRateExchange.publishMarketSwapFee = weiToDecimal(
event.params.swapFee.toBigDecimal(),
BigInt.fromI32(18).toI32()
)
fixedRateExchange.save()
}
}