Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 1x 1x 1x 1x 1x 1x | import { GET_DUTCH_AUCTION_PRICE, GET_FIXED_PRICE } from './constants' import { type Address, type PublicClient } from 'viem' export async function getFixedPriceData( client: PublicClient, address: Address, contractAddress: Address, ) { const result = await client.readContract({ address, abi: [GET_FIXED_PRICE], functionName: 'getFixedPriceSaleV2', args: [contractAddress], }) return { seller: result[0] as Address, actionFee: result[1] as bigint, projectFee: result[7] as bigint, } } export async function getDutchAuctionData( client: PublicClient, address: Address, contractAddress: Address, ) { const result = await client.readContract({ address, abi: [GET_DUTCH_AUCTION_PRICE], functionName: 'getDutchAuctionV2', args: [contractAddress], }) return { seller: result[0] as Address, actionFee: result[8] as bigint, projectFee: result[9] as bigint, } } export function calculateFees( pricingInfo: { actionFee: bigint; projectFee: bigint }, quantity: bigint, ) { return { actionFee: pricingInfo.actionFee * quantity, projectFee: pricingInfo.projectFee * quantity, } } |