@parifi/sdk
Version:
Parifi SDK with common utility functions
1 lines • 20.2 kB
Source Map (JSON)
{"version":3,"sources":["../../src/pyth/pyth.ts","../../src/common/constants.ts","../../src/common/helpers.ts","../../src/pyth/pythMapper.ts"],"sourcesContent":["import axios, { AxiosInstance } from 'axios';\nimport { getUniqueValuesFromArray } from '../common';\nimport Decimal from 'decimal.js';\nimport { PythPriceResponse } from '../interfaces/subgraphTypes';\nimport { mapPythPriceResponseToInterface } from './pythMapper';\nimport { FormattedPythPrice } from '../interfaces/sdkTypes';\n\n// Returns a Pyth client object based on the params provided\nexport const getPythClient = async (\n pythServiceEndpoint?: string,\n pythServiceUsername?: string,\n pythServicePassword?: string,\n isStable: boolean = true,\n): Promise<AxiosInstance> => {\n try {\n const config = {\n baseURL: pythServiceEndpoint || (isStable ? 'https://hermes.pyth.network' : 'https://hermes-beta.pyth.network'),\n auth:\n pythServiceUsername && pythServicePassword\n ? {\n username: pythServiceUsername,\n password: pythServicePassword,\n }\n : undefined,\n };\n\n return axios.create(config);\n } catch (error) {\n console.log('Error when creating Pyth instance:', error);\n throw error;\n }\n};\n\n// The function accepts an array of priceIds and returns the priceUpdateData\n// for them from Pyth\nexport const getVaaPriceUpdateData = async (priceIds: string[], pythClient: AxiosInstance): Promise<string[]> => {\n const uniquePriceIds = getUniqueValuesFromArray(priceIds);\n let priceUpdateData: string[] = [];\n\n if (pythClient) {\n try {\n const response = await pythClient.get('/api/latest_vaas', {\n params: {\n ids: uniquePriceIds,\n },\n });\n priceUpdateData = response.data;\n } catch (error) {\n console.log('Error fetching data from Pyth', error);\n throw error;\n }\n }\n return priceUpdateData.map((vaa) => '0x' + Buffer.from(vaa, 'base64').toString('hex'));\n};\n\n// Pyth currently uses different exponents for supported assets. Parifi uses all price feeds with 8 decimals\n// This function converts the price from Pyth to a format Parifi uses with 8 decimals.\nexport const formatPythPrice = (pythPrice: number, pythExponent: number): Decimal => {\n const adjustedFactor = new Decimal(10).pow(pythExponent);\n return new Decimal(pythPrice).mul(adjustedFactor);\n};\n\n// Returns the latest prices from Pyth for priceIds in normalized format\n// for use within the Parifi protocol. Normalized price has 8 decimals\nexport const getLatestFormattedPrice = async (\n priceIds: string[],\n pythClient: AxiosInstance,\n): Promise<FormattedPythPrice[]> => {\n let formattedPrices: FormattedPythPrice[] = [];\n\n const priceData = await getLatestPricesFromPyth(priceIds, pythClient);\n priceData.map((pythPrice) => {\n const formattedPrice = formatPythPrice(Number(pythPrice.price.price), pythPrice.price.expo);\n formattedPrices.push({\n priceId: `0x${pythPrice.id}`,\n formattedPrice: formattedPrice,\n });\n });\n return formattedPrices;\n};\n\n// Get latest prices from Pyth for priceIds\n// The prices returned are in Pyth structure which needs to be normalized\n// before using for any Parifi functions\nexport const getLatestPricesFromPyth = async (\n priceIds: string[],\n pythClient: AxiosInstance,\n): Promise<PythPriceResponse[]> => {\n const uniquePriceIds = getUniqueValuesFromArray(priceIds);\n\n const pythPriceResponses: PythPriceResponse[] = [];\n\n if (pythClient) {\n try {\n const response = await pythClient.get('/api/latest_price_feeds', {\n params: {\n ids: uniquePriceIds,\n verbose: false,\n binary: false,\n },\n });\n return mapPythPriceResponseToInterface(response.data);\n } catch (error) {\n console.log('Error fetching latest prices from Pyth', error);\n throw error;\n }\n }\n return pythPriceResponses;\n};\n","import { Decimal } from 'decimal.js';\nimport { Address } from 'viem';\n\nexport const PRECISION_MULTIPLIER = new Decimal('10000');\nexport const DEVIATION_PRECISION_MULTIPLIER = new Decimal(10).pow(12);\nexport const SECONDS_IN_A_YEAR = new Decimal(365 * 24 * 60 * 60);\nexport const MAX_FEE = new Decimal(10000000); // 1% = 100_000\nexport const WAD = new Decimal(10).pow(18); // 10^18\nexport const EMPTY_BYTES32 = '0x0000000000000000000000000000000000000000000000000000000000000000';\n// export const PRICE_FEED_DECIMALS = 18;\n// export const PRICE_FEED_PRECISION = new Decimal(10).pow(PRICE_FEED_DECIMALS);\nexport const DECIMAL_10 = new Decimal(10);\nexport const DECIMAL_ZERO = new Decimal(0);\nexport const DEFAULT_BATCH_COUNT = 10;\nexport const BIGINT_ZERO = BigInt(0);\n\nexport const GAS_LIMIT_SETTLEMENT = 10000000; // 10M gas\nexport const GAS_LIMIT_LIQUIDATION = 15000000; // 15M gas\n\nexport const ONE_GWEI = 1000000000; // 10^9\nexport const DEFAULT_GAS_PRICE = 2 * ONE_GWEI; // 1 gwei\n\n// Constants for Pyth price ids of collaterals\nexport const PYTH_ETH_USD_PRICE_ID_BETA = '0xca80ba6dc32e08d06f1aa886011eed1d77c77be9eb761cc10d72b7d0a2fd57a6';\nexport const PYTH_ETH_USD_PRICE_ID_STABLE = '0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace';\n\nexport const PYTH_USDC_USD_PRICE_ID_BETA = '0x41f3625971ca2ed2263e78573fe5ce23e13d2558ed3f2e47ab0f84fb9e7ae722';\nexport const PYTH_USDC_USD_PRICE_ID_STABLE = '0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a';\n\n// Constants for Pimlico relayer\nexport const FACTORY_ADDRESS_SIMPLE_ACCOUNT = '0x91E60e0613810449d098b0b5Ec8b51A0FE8c8985';\n\n// Temporary constants\nexport const SUBGRAPH_HELPER_ADDRESS = '0xf012d32505df6853187170F00C7b789A8ecC41c2';\n\nexport const SYMBOL_TO_PYTH_FEED = new Map<string, string>([\n // market\n ['BTC', '0xc9d8b075a5c69303365ae23633d4e085199bf5c520a3b90fed1322a0342ffc33'],\n ['SOL', '0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d'],\n ['WIF', '0x4ca4beeca86f0d164160323817a4e42b10010a724c2217c6ee41b54cd4cc61fc'],\n ['ETH', '0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace'],\n ['AAVE', '0x2b9ab1e972a281585084148ba1389800799bd4be63b957507db1349314e47445'],\n ['ADA', '0x2a01deaec9e51a579277b34b122399984d0bbf57e2458a7e42fecd2829867a0d'],\n ['ARB', '0x3fa4252848f9f0a1480be62745a4629d9eb1322aebab8a791e344b3b9c1adcf5'],\n ['AVAX', '0x93da3352f9f1d105fdfe4971cfa80e9dd777bfc5d0f683ebb6e1294b92137bb7'],\n ['BCH', '0x3dd2b63686a450ec7290df3a1e0b583c0481f651351edfa7636f39aed55cf8a3'],\n ['BNB', '0x2f95862b045670cd22bee3114c39763a4a08beeb663b145d283c31d7d1101c4f'],\n ['CRV', '0xa19d04ac696c7a6616d291c7e5d1377cc8be437c327b75adb5dc1bad745fcae8'],\n ['DOGE', '0xdcef50dd0a4cd2dcc17e45df1676dcb336a11a61c69df7a0299b0150c672d25c'],\n ['DYDX', '0x6489800bb8974169adfe35937bf6736507097d13c190d760c557108c7e93a81b'],\n ['GMX', '0xb962539d0fcb272a494d65ea56f94851c2bcf8823935da05bd628916e2e9edbf'],\n ['LINK', '0x8ac0c70fff57e9aefdf5edf44b51d62c2d433653cbb2cf5cc06bb115af04d221'],\n ['LTC', '0x6e3f3fa8253588df9326580180233eb791e03b443a3ba7a1d892e73874e19a54'],\n ['MKR', '0x9375299e31c0deb9c6bc378e6329aab44cb48ec655552a70d4b9050346a30378'],\n ['NEAR', '0xc415de8d2eba7db216527dff4b60e8f3a5311c740dadb233e13e12547e226750'],\n ['OP', '0x385f64d993f7b77d8182ed5003d97c60aa3361f3cecfe711544d2d59165e9bdf'],\n ['ORDI', '0x193c739db502aadcef37c2589738b1e37bdb257d58cf1ab3c7ebc8e6df4e3ec0'],\n ['PEPE', '0xd69731a2e74ac1ce884fc3890f7ee324b6deb66147055249568869ed700882e4'],\n ['POL', '0xffd11c5a1cfd42f80afb2df4d9f264c15f956d68153335374ec10722edd70472'],\n ['PYTH', '0x0bbf28e9a841a1cc788f6a361b17ca072d0ea3098a1e5df1c3922d06719579ff'],\n ['RUNE', '0x5fcf71143bb70d41af4fa9aa1287e2efd3c5911cee59f909f915c9f61baacb1e'],\n ['SHIB', '0xf0d57deca57b3da2fe63a493f4c25925fdfd8edf834b20f93e1f84dbd1504d4a'],\n ['STX', '0xec7a775f46379b5e943c3526b1c8d54cd49749176b0b98e02dde68d1bd335c17'],\n ['TIA', '0x09f7c1d7dfbb7df2b8fe3d3d87ee94a2259d212da4f30c1f0540d066dfa44723'],\n ['UNI', '0x78d185a741d07edb3412b09008b7c5cfb9bbbd7d568bf00ba737b456ba171501'],\n ['XLM', '0xb7a8eba68a997cd0210c2e1e4ee811ad2d174b3611c22d9ebf16f4cb7e9ba850'],\n ['XRP', '0xec5d399846a9209f3fe5881d70aae9268c94339ff9817e8d18ff19fa05eea1c8'],\n // collateral\n ['USDC', '0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a'],\n ['USDE', '0x6ec879b1e9963de5ee97e9c8710b742d6228252a5e2ca12d4ae81d7fe5ee8c5d'],\n ['DAI', '0xb0948a5e5313200c632b51bb5ca32f6de0d36e9950a942d19751e833f70dabfd'],\n]);\n\nexport const collateralMappingWithRegularSymbol = new Map<string, string>([\n ['seth', 'eth'],\n ['wbtc', 'btc'],\n ['fbtc', 'btc'],\n ['wsteth', 'eth'],\n ['fdai', 'dai'],\n ['susdc', 'usdc'],\n ['susde', 'usde'],\n ['steth', 'eth'],\n ['fsol', 'sol'],\n ['fusdc', 'usdc'],\n ['fusdt', 'usdt'],\n ['ssol', 'sol'],\n ['sdai', 'dai'],\n ['usdx', 'usdc'],\n ['stbtc', 'btc'],\n]);\n// === TOKEN DISTRIBUTION ===\n\nexport enum SUPPORTED_CHAINS {\n BASE = 8453,\n}\n\nexport const REWARD_DISTRIBUTOR_ADDRESSES: Record<number, Record<string, Address>> = {\n [SUPPORTED_CHAINS.BASE]: {\n esprf: '0x6511718804180CC57833fEA036389A24604Dfc69',\n prf: '0x0000000000000000000000000000000000000000',\n rt: '0x648d6D711860699A11aBa192E9daBAfb6408af18',\n },\n};\n\nexport const REWARD_DISTRIBUTOR_ABI = [\n {\n inputs: [{ internalType: 'contract IERC20', name: '_rewardToken', type: 'address' }],\n stateMutability: 'nonpayable',\n type: 'constructor',\n },\n { inputs: [], name: 'AccessControlBadConfirmation', type: 'error' },\n {\n inputs: [\n { internalType: 'address', name: 'account', type: 'address' },\n { internalType: 'bytes32', name: 'neededRole', type: 'bytes32' },\n ],\n name: 'AccessControlUnauthorizedAccount',\n type: 'error',\n },\n {\n anonymous: false,\n inputs: [\n { indexed: true, internalType: 'address', name: 'user', type: 'address' },\n { indexed: false, internalType: 'uint256', name: 'amount', type: 'uint256' },\n ],\n name: 'RewardClaimed',\n type: 'event',\n },\n {\n anonymous: false,\n inputs: [\n { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },\n { indexed: true, internalType: 'bytes32', name: 'previousAdminRole', type: 'bytes32' },\n { indexed: true, internalType: 'bytes32', name: 'newAdminRole', type: 'bytes32' },\n ],\n name: 'RoleAdminChanged',\n type: 'event',\n },\n {\n anonymous: false,\n inputs: [\n { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },\n { indexed: true, internalType: 'address', name: 'account', type: 'address' },\n { indexed: true, internalType: 'address', name: 'sender', type: 'address' },\n ],\n name: 'RoleGranted',\n type: 'event',\n },\n {\n anonymous: false,\n inputs: [\n { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },\n { indexed: true, internalType: 'address', name: 'account', type: 'address' },\n { indexed: true, internalType: 'address', name: 'sender', type: 'address' },\n ],\n name: 'RoleRevoked',\n type: 'event',\n },\n {\n inputs: [],\n name: 'DEFAULT_ADMIN_ROLE',\n outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],\n stateMutability: 'view',\n type: 'function',\n },\n {\n inputs: [],\n name: 'actualRound',\n outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],\n stateMutability: 'view',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'uint256', name: '_round', type: 'uint256' },\n { internalType: 'uint256', name: 'amount', type: 'uint256' },\n { internalType: 'bytes32[]', name: 'proof', type: 'bytes32[]' },\n ],\n name: 'claimReward',\n outputs: [],\n stateMutability: 'nonpayable',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'uint256[]', name: '_rounds', type: 'uint256[]' },\n { internalType: 'uint256[]', name: 'amounts', type: 'uint256[]' },\n { internalType: 'bytes32[][]', name: 'proofs', type: 'bytes32[][]' },\n ],\n name: 'claimRewards',\n outputs: [],\n stateMutability: 'nonpayable',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'uint256', name: '', type: 'uint256' },\n { internalType: 'address', name: '', type: 'address' },\n ],\n name: 'claimed',\n outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],\n stateMutability: 'view',\n type: 'function',\n },\n {\n inputs: [{ internalType: 'bytes32', name: 'role', type: 'bytes32' }],\n name: 'getRoleAdmin',\n outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],\n stateMutability: 'view',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'bytes32', name: 'role', type: 'bytes32' },\n { internalType: 'address', name: 'account', type: 'address' },\n ],\n name: 'grantRole',\n outputs: [],\n stateMutability: 'nonpayable',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'bytes32', name: 'role', type: 'bytes32' },\n { internalType: 'address', name: 'account', type: 'address' },\n ],\n name: 'hasRole',\n outputs: [{ internalType: 'bool', name: '', type: 'bool' }],\n stateMutability: 'view',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'bytes32', name: 'role', type: 'bytes32' },\n { internalType: 'address', name: 'callerConfirmation', type: 'address' },\n ],\n name: 'renounceRole',\n outputs: [],\n stateMutability: 'nonpayable',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'bytes32', name: 'role', type: 'bytes32' },\n { internalType: 'address', name: 'account', type: 'address' },\n ],\n name: 'revokeRole',\n outputs: [],\n stateMutability: 'nonpayable',\n type: 'function',\n },\n {\n inputs: [],\n name: 'rewardToken',\n outputs: [{ internalType: 'contract IERC20', name: '', type: 'address' }],\n stateMutability: 'view',\n type: 'function',\n },\n {\n inputs: [{ internalType: 'uint256', name: '_round', type: 'uint256' }],\n name: 'setActualRound',\n outputs: [],\n stateMutability: 'nonpayable',\n type: 'function',\n },\n {\n inputs: [\n { internalType: 'uint256', name: '_round', type: 'uint256' },\n { internalType: 'bytes32', name: '_root', type: 'bytes32' },\n ],\n name: 'setRootPerRound',\n outputs: [],\n stateMutability: 'nonpayable',\n type: 'function',\n },\n {\n inputs: [{ internalType: 'bytes4', name: 'interfaceId', type: 'bytes4' }],\n name: 'supportsInterface',\n outputs: [{ internalType: 'bool', name: '', type: 'bool' }],\n stateMutability: 'view',\n type: 'function',\n },\n {\n inputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],\n name: 'verifiersPerRound',\n outputs: [{ internalType: 'contract Verifier', name: '', type: 'address' }],\n stateMutability: 'view',\n type: 'function',\n },\n];\n","import { Decimal } from 'decimal.js';\nimport { formatEther, parseEther } from 'viem';\n\nexport const getDiff = (a: Decimal, b: Decimal): Decimal => {\n return a.gt(b) ? a.minus(b) : b.minus(a);\n};\n\nexport const addDelay = async (ms: number): Promise<void> => {\n return new Promise((resolve) => setTimeout(resolve, ms));\n};\n\nexport const getCurrentTimestampInSeconds = (): number => {\n return Math.floor(Date.now() / 1000);\n};\n\nexport const getUniqueValuesFromArray = (originalArray: string[]): string[] => {\n const uniqueArray: string[] = [];\n const seenValues = new Set<string>();\n\n originalArray.forEach((item) => {\n // Check if the value is not already seen\n if (!seenValues.has(item)) {\n // Add the value to the uniqueArray\n uniqueArray.push(item);\n // Mark the value as seen in the set\n seenValues.add(item);\n }\n });\n return uniqueArray;\n};\n\nexport function convertWeiToEther(amountInWei: string | bigint | undefined): number {\n if (amountInWei == undefined) {\n throw new Error('Invalid amount received during conversion: undefined');\n }\n if (typeof amountInWei == 'bigint') {\n return Number(formatEther(amountInWei));\n } else if (typeof amountInWei == 'string') {\n return Number(formatEther(BigInt(amountInWei)));\n } else {\n throw new Error('Expected string or bigint for conversion');\n }\n}\n\nexport function convertEtherToWei(amount: string | number | undefined): bigint {\n if (amount == undefined) {\n throw new Error('Invalid amount received during conversion: undefined');\n }\n if (typeof amount == 'number') {\n return parseEther(amount.toString());\n } else if (typeof amount == 'string') {\n return parseEther(amount);\n } else {\n throw new Error('Expected string or bigint for conversion');\n }\n}\n","import { PythPriceResponse } from '../interfaces/subgraphTypes';\n\n// Function to map the pyth latest price response to interface\nexport const mapPythPriceResponseToInterface = (response: any[]): PythPriceResponse[] => {\n return response.map((item) => ({\n id: item.id || '',\n price: {\n price: item.price.price || '0',\n conf: item.price.conf || '0',\n expo: item.price.expo || 0,\n publish_time: item.price.publish_time || 0,\n },\n ema_price: {\n price: item.ema_price.price || '0',\n conf: item.ema_price.conf || '0',\n expo: item.ema_price.expo || 0,\n publish_time: item.ema_price.publish_time || 0,\n },\n }));\n};\n"],"mappings":"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","names":["Decimal","Decimal"]}