Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 49 additions & 29 deletions dexs/opinion/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,65 @@ import { FetchOptions, FetchResult, SimpleAdapter } from "../../adapters/types";
import { CHAIN } from "../../helpers/chains";

const OPINION_CONTRACT = "0x5F45344126D6488025B0b84A3A8189F2487a7246";
const ORDER_FILLED_EVENT = "event OrderFilled (bytes32 indexed orderHash, address indexed maker,address indexed taker, uint256 makerAssetId, uint256 takerAssetId, uint256 makerAmountFilled, uint256 takerAmountFilled, uint256 fee)";
const OPINION_TREASURY_SAFE = "0xe76e763c5e57823ee5c7ed8e8d86d4e4938cbb4b";
const USDT_ON_BNB_CHAIN = "0x55d398326f99059fF775485246999027B3197955";
const ORDER_FILLED_EVENT =
"event OrderFilled (bytes32 indexed orderHash, address indexed maker,address indexed taker, uint256 makerAssetId, uint256 takerAssetId, uint256 makerAmountFilled, uint256 takerAmountFilled, uint256 fee)";

async function fetch(options: FetchOptions): Promise<FetchResult> {
const dailyVolume = options.createBalances();
const dailyFees = options.createBalances();
const dailyVolume = options.createBalances();
const dailyFees = options.createBalances();
const dailyRevenue = options.createBalances();

const orderFilledLogs = await options.getLogs({
eventAbi: ORDER_FILLED_EVENT,
target: OPINION_CONTRACT
});
const orderFilledLogs = await options.getLogs({
eventAbi: ORDER_FILLED_EVENT,
target: OPINION_CONTRACT,
});

orderFilledLogs.forEach((order: any) => {
const tradeVolume = Number(order.makerAssetId == 0 ? order.makerAmountFilled : order.takerAmountFilled) / 1e18;
dailyVolume.addUSDValue(tradeVolume);
dailyFees.addUSDValue(Number(order.fee) / 1e18);
});
const usdtTransferLogs = await options.getLogs({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revenue should be equal to fees, so we don't need to pull USDT transfer log?

eventAbi:
"event Transfer(address indexed from, address indexed to, uint256 value)",
target: USDT_ON_BNB_CHAIN,
});

orderFilledLogs.forEach((order: any) => {
const tradeVolume =
Number(
order.makerAssetId == 0
? order.makerAmountFilled
: order.takerAmountFilled
) / 1e18;
dailyVolume.addUSDValue(tradeVolume);
dailyFees.addUSDValue(Number(order.fee) / 1e18);
});

return {
dailyVolume,
dailyFees,
dailyRevenue: dailyFees,
dailyProtocolRevenue: dailyFees,
}
usdtTransferLogs
.filter((transfer: any) => transfer.to === OPINION_TREASURY_SAFE)
.forEach((transfer: any) => {
dailyRevenue.add(USDT_ON_BNB_CHAIN, Number(transfer.value) / 1e18);
});

return {
dailyVolume,
dailyFees,
dailyRevenue: dailyRevenue,
dailyProtocolRevenue: dailyRevenue,
};
}

const methodology = {
Volume: "Opinion prediction market trading volume",
Fees: "Taker fees collected by opinion",
Revenue: "All the fees are revenue",
ProtocolRevenue: "All the revenue goes to protocol",
Volume: "Opinion prediction market trading volume",
Fees: "Taker fees collected by opinion",
Revenue: "All the fees are revenue",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If all fees are revenue,why did you need to count USDT transfer to Safe Wallet?

ProtocolRevenue: "All the revenue goes to protocol",
};

const adapter: SimpleAdapter = {
version: 2,
fetch,
methodology,
chains: [CHAIN.BSC],
start: '2025-10-22',
}
version: 2,
fetch,
methodology,
chains: [CHAIN.BSC],
start: "2025-10-22",
};

export default adapter;
export default adapter;
Loading