用The Graph上的子图来查询Pancakeswap v3的聚合数据

向The Graph发起查询请求有专门的sdk,但其本质上是http协议,所以用axios这种http客户端工具也是可以的,

const axios = require('axios');
require('dotenv').config();

const graphql = `{
                    pools{
                        id
                        token0 {
                            symbol
                        }
                        token1 {
                            symbol
                        }
                        token0Price
                        token1Price
                    }
                }`;
axios.post('https://gateway.thegraph.com/api/' + process.env.THE_GRAPH_APIKEY
    + '/subgraphs/id/Hv1GncLY5docZoGtXjo4kwbTvxm3MAhVZqBZE4sUT9eZ', {
        query : graphql
    }).then(response => {
        console.log(JSON.stringify(response.data));
    }).catch(error => {
        console.error(error);
    });

node .\pancake_v3_query.js,查询结果:

{
	"data": {
		"pools": [{
			"id": "0x00004aae5aff462ff6ca621624a43d8a212fbfca",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.000000005700524134942485348744488352915677",
			"token1": {
				"symbol": "RIPDOGE"
			},
			"token1Price": "175422465.7817520777748306816157762"
		}, {
			"id": "0x000116ec12e9141d6c013bd4c37dd6e558764335",
			"token0": {
				"symbol": "BADLB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x0002e4980bf47c66fdb13f73aa598c319f092b88",
			"token0": {
				"symbol": "COMBO"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x0003407a1905d1b862e44976fe27d034b53f3c4d",
			"token0": {
				"symbol": "DOGEPOOP"
			},
			"token0Price": "6506136191.297554234182399016806609",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000000001537010555262545994450823699892351"
		}, {
			"id": "0x0004222c2075e9a1291e41f1ca4c8d32141db501",
			"token0": {
				"symbol": "MBOX"
			},
			"token0Price": "3616.295670991059017070219087107423",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0002765260617437142115799330865901258"
		}, {
			"id": "0x0005d887a63a611e8337ea03f611e0d7efa38ce6",
			"token0": {
				"symbol": "TSS"
			},
			"token0Price": "916112.9336323244288128927348742909",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.000001091568477300139355287357691993807"
		}, {
			"id": "0x0012c0239e346086e734d353225eb76a9b16f29e",
			"token0": {
				"symbol": "CLICK"
			},
			"token0Price": "1632.764884015550668700000555926546",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.0006124580518541308043852862839086208"
		}, {
			"id": "0x0012dd4b2a8ef70213221fc0323f8dcbc2c54bbb",
			"token0": {
				"symbol": "BTCBR"
			},
			"token0Price": "7380.564153499473334828374408101059",
			"token1": {
				"symbol": "BTCDEX"
			},
			"token1Price": "0.0001354909975988560260388100593953919"
		}, {
			"id": "0x0013a6dbb825469ce8458cbf635f27b5e1c27ebd",
			"token0": {
				"symbol": "CON"
			},
			"token0Price": "1246.607740013872418968411932942202",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0008021769542268940711086551763261991"
		}, {
			"id": "0x001405fadd5d49ee1838f3a96e42e0028ad9d7ef",
			"token0": {
				"symbol": "ZIG"
			},
			"token0Price": "5387.890547836835425222267096260731",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0001856013946685472966737125526467256"
		}, {
			"id": "0x0014bd40bc3e467d8e56d84e2c898f02fd35f1d8",
			"token0": {
				"symbol": "CUB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0"
		}, {
			"id": "0x001b78d2b407576817f277c2ebb12d258b4361ce",
			"token0": {
				"symbol": "BOCA"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x00203efbcc0f0430ebff6d7afc71c031a67cd84c",
			"token0": {
				"symbol": "BVEST"
			},
			"token0Price": "311131.5124777967956444210169337933",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.000003214074948680625087436949837777385"
		}, {
			"id": "0x00229a5766da4b8ec837f4c35ec4ead56913af7b",
			"token0": {
				"symbol": "PEPE"
			},
			"token0Price": "135835.5258614728034759892610616901",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.000007361844360361336256664953479627308"
		}, {
			"id": "0x002394f634d752a577a91ceea383150c900fbd05",
			"token0": {
				"symbol": "USDT"
			},
			"token0Price": "0.00000000000000000000000000000000000000293895680758558494927616942086432",
			"token1": {
				"symbol": "PPD"
			},
			"token1Price": "340256786836388081269117234195560700000"
		}, {
			"id": "0x0025afa2663b3f511ce7682bb6bd237cc0cf9661",
			"token0": {
				"symbol": "bDUET#8"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "DUET"
			},
			"token1Price": "0"
		}, {
			"id": "0x002691bbf1bc2fe20de0f10dd26969db14523455",
			"token0": {
				"symbol": "FRM"
			},
			"token0Price": "67645940487318.04440112823725195875",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000000000000147828530846943503793067704564005"
		}, {
			"id": "0x002e133a5bc24debd97a9b6b7c2537d879b6635a",
			"token0": {
				"symbol": "MQN"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x002e55accbfe242a8be5eaa4bbfda0b0bd4f5a8c",
			"token0": {
				"symbol": "QNA"
			},
			"token0Price": "1324829.343484554865384355253305184",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000007548141992158842962076114555514719"
		}, {
			"id": "0x00326c353026a325f1bf77a98bdba49e7a2e4efc",
			"token0": {
				"symbol": "UXE"
			},
			"token0Price": "143.1730117564503733987188511681873",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.006984556570627194353861731770927903"
		}, {
			"id": "0x0032d93f51019b697f5efec135f5a4e16041292b",
			"token0": {
				"symbol": "SAX"
			},
			"token0Price": "30753.70337454995286581524508623476",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.00003251640909132082427537974676837679"
		}, {
			"id": "0x003363cd94694297685e34688059f355279dbd26",
			"token0": {
				"symbol": "HB"
			},
			"token0Price": "126706431469272.1821135751377362404",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.000000000000007892259204241829693865250594230573"
		}, {
			"id": "0x0033b4adedcc37921c74498586c924815796574d",
			"token0": {
				"symbol": "ROFL"
			},
			"token0Price": "50252776.4604130842053303733976124",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.00000001989939801212288824420527161088986"
		}, {
			"id": "0x00342274efdca6760e760a49cef255896f18bd85",
			"token0": {
				"symbol": "ATLAS"
			},
			"token0Price": "184130.3152415984621711631678228008",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000054309362295279523026742852657093"
		}, {
			"id": "0x00363274e9d9f947ebc572db72ede1340903f21d",
			"token0": {
				"symbol": "FLM"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x0038a9f5678f0f49ad8953a09f7b9fc8c0d284c8",
			"token0": {
				"symbol": "BTCB"
			},
			"token0Price": "0.00000009950786967213799229314015580276444",
			"token1": {
				"symbol": "WDRIP"
			},
			"token1Price": "10049456.4228420823313332197596754"
		}, {
			"id": "0x0038ff1691111ca1849f3ad160616745b4422b91",
			"token0": {
				"symbol": "MEMCAKE"
			},
			"token0Price": "9890392.016123029073647964856431491",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000001011082268902819138273781003295014"
		}, {
			"id": "0x003c8bc1fedc20aa7137ed258d09692b1abef812",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.00001790076444981909988401656837116262",
			"token1": {
				"symbol": "TRUSTK"
			},
			"token1Price": "55863.53604078096900208202506253799"
		}, {
			"id": "0x003dce498594e1cdc3f460957eac283da5793bc5",
			"token0": {
				"symbol": "USDT"
			},
			"token0Price": "0.0000003348669342603591630439447897393953",
			"token1": {
				"symbol": "GERK"
			},
			"token1Price": "2986260.802992569092241027932695051"
		}, {
			"id": "0x0040a830f6ee923a32845076ad6982d83433d479",
			"token0": {
				"symbol": "TCLUB"
			},
			"token0Price": "1122642014.144276725541005668410457",
			"token1": {
				"symbol": "BTCB"
			},
			"token1Price": "0.0000000008907559020604093079972681306561952"
		}, {
			"id": "0x0040b3ffa1b0c77df3e42216d82f8d6771ac11d0",
			"token0": {
				"symbol": "CPC"
			},
			"token0Price": "1003.033703598858537735128198118193",
			"token1": {
				"symbol": "BUSD"
			},
			"token1Price": "0.00099697547192285394893305028359012"
		}, {
			"id": "0x0041594bbaf0f0424e96dfe8d4ba31336ecf94f8",
			"token0": {
				"symbol": "XR"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x0043a7c9f8d7d8df2e1aa10f16721d67b5258ad5",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "UEBOK"
			},
			"token1Price": "0"
		}, {
			"id": "0x00470851e3d7c98c6f1bb6b8adf7ced5b42fa02a",
			"token0": {
				"symbol": "Bridged mwBETH"
			},
			"token0Price": "1.001765773179561723635177859554813",
			"token1": {
				"symbol": "wBETH"
			},
			"token1Price": "0.9982373392794632670705008612411347"
		}, {
			"id": "0x00476dd617e34f0b2ca74fae35758047d9c2f309",
			"token0": {
				"symbol": "JTBIT"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x0047e361181c536eefcafbef06a4f9287cbb7547",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "NOT"
			},
			"token1Price": "0"
		}, {
			"id": "0x004a335932d50f666011935677d96a366af3eae2",
			"token0": {
				"symbol": "MB4"
			},
			"token0Price": "46.42470960595427192438642170003386",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.02154025320756650409035648979198637"
		}, {
			"id": "0x004e0413a59978d0b01cf246cd806263d05e0aa3",
			"token0": {
				"symbol": "ETH"
			},
			"token0Price": "0.0000001282221666939922550140379343080959",
			"token1": {
				"symbol": "LOVE"
			},
			"token1Price": "7798963.516086444232262918213455042"
		}, {
			"id": "0x0053d2888c03106db5bdbbf8b4ed064ece55cc3b",
			"token0": {
				"symbol": "Cake-LP"
			},
			"token0Price": "97.32906655432655065198480331639213",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.01027442300026401710588932035508116"
		}, {
			"id": "0x0058ad0a3b4cfbcffad5119dbfd3b8801e2fddb8",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.0000000000182020982585741956725186868610096",
			"token1": {
				"symbol": "PEPEBAND"
			},
			"token1Price": "54938721118.53613663093684627916812"
		}, {
			"id": "0x005936c52b2d6372620edc453f75b1a1f3652e25",
			"token0": {
				"symbol": "IPRC"
			},
			"token0Price": "1642.613110059018420423600615761701",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.0006087860822954654288903425943646321"
		}, {
			"id": "0x005959c28169b92f01cda1fcd026e637cb4e8936",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.0000000000000003889072522045612415532255929930605",
			"token1": {
				"symbol": "KingCat"
			},
			"token1Price": "2571307154421512.860029783571592303"
		}, {
			"id": "0x0059e5b634724028f058decba38fd2c1b88f4116",
			"token0": {
				"symbol": "mts"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x005b52dc0bec78fe67e50ecc34f70e6f843d390b",
			"token0": {
				"symbol": "USDT"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "HKTM"
			},
			"token1Price": "0"
		}, {
			"id": "0x005bacff0b8c9d230368a465ab41d37455dfac12",
			"token0": {
				"symbol": "USDT"
			},
			"token0Price": "0.2019187768680671215399683923946039",
			"token1": {
				"symbol": "RVF"
			},
			"token1Price": "4.952486418107592780611712588592251"
		}, {
			"id": "0x005d75e0b5076fe93d74d866e353745bb35b8ea1",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.000008004070437332807257239650569433615",
			"token1": {
				"symbol": "vBIS"
			},
			"token1Price": "124936.4317604917959839890346273772"
		}, {
			"id": "0x005e130a2e5204fba864a1e83e52ba94a62dd35d",
			"token0": {
				"symbol": "RIM"
			},
			"token0Price": "0.00009993807157971833333716362478950376",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "10006.19667953391193528980375333281"
		}, {
			"id": "0x005ef6b8bc5d5c287b2cd96f8e675b5c7a5dfddf",
			"token0": {
				"symbol": "TT"
			},
			"token0Price": "0.0005785769713107185956147162438537568",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "1728.378503787632879381302218364525"
		}, {
			"id": "0x005f2c697d6fdc180b81829b280fb8f3eb7fa865",
			"token0": {
				"symbol": "USDT"
			},
			"token0Price": "0.7711379941278199346071221128205496",
			"token1": {
				"symbol": "CORI"
			},
			"token1Price": "1.296784761761129171586609751572447"
		}, {
			"id": "0x0064b7466e2506512042c5b613ccb1abdaaa18db",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.000000001062273855991810520282367496381165",
			"token1": {
				"symbol": "Unrwa"
			},
			"token1Price": "941376834.5699636483319041657464969"
		}, {
			"id": "0x006941ebd97f64548a5415f0574d5cd236f81ef8",
			"token0": {
				"symbol": "CEX"
			},
			"token0Price": "112515795.0431060738897862110168238",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.000000008887641060678535735649320566835015"
		}, {
			"id": "0x006c29bf41f3026e30ba9d674b4c019584169ca8",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.0001135297052226241616627920846623962",
			"token1": {
				"symbol": "AEG"
			},
			"token1Price": "8808.267387280420196678785328540607"
		}, {
			"id": "0x006d800b973b279951fb989d36a339666448e2a2",
			"token0": {
				"symbol": "$TBET"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "BTCB"
			},
			"token1Price": "0"
		}, {
			"id": "0x006dfe90f91f1762f0070dafb1609897abb7ff67",
			"token0": {
				"symbol": "PI"
			},
			"token0Price": "1000774.896817495291649807977219705",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000009992257031826442740353468659319161"
		}, {
			"id": "0x006e13b81db87fc1e164e286f6de4f3fa642fdd5",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.0000000001500196802840937540890886419741492",
			"token1": {
				"symbol": "HERE"
			},
			"token1Price": "6665792102.118136085424665630196839"
		}, {
			"id": "0x006e20c022e707b938aace6a08a71bd3e405f13c",
			"token0": {
				"symbol": "KBN"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x0072edef7325e257f83ab486adaf023d850bf4b9",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "340256786540325233929710090404719700000",
			"token1": {
				"symbol": "ZNT"
			},
			"token1Price": "0.000000000000000000000000000000000000002938956810142818059917450894998607"
		}, {
			"id": "0x0074fc89aac21f5deb884e737b513cd0586e655e",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.0040525535279536130168497982602905",
			"token1": {
				"symbol": "ACE"
			},
			"token1Price": "246.7579991484930138469175676408918"
		}, {
			"id": "0x0076a16539c41d6b560525b992039443c2f1f7b9",
			"token0": {
				"symbol": "IHT"
			},
			"token0Price": "999991.8408763291733126953991148871",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.000001000008159190242668931042819119614"
		}, {
			"id": "0x00774ae4875c395d9758cf4e13afe80edadfecd9",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.00000001163547150590498707164993684252062",
			"token1": {
				"symbol": "LIMIT"
			},
			"token1Price": "85944089.11512535309724704576893605"
		}, {
			"id": "0x00779af670a7037c00f98acd923609a0aa11da07",
			"token0": {
				"symbol": "Ane"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x0077ca25acd5acec3a0487c674fdd2076cbe2ce2",
			"token0": {
				"symbol": "O2"
			},
			"token0Price": "4.244599957393467988018685733392876",
			"token1": {
				"symbol": "AVR"
			},
			"token1Price": "0.235593462290397303135589996612053"
		}, {
			"id": "0x007bd30222bff3f68ab80424c864368d4be91850",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.00005730908804453552874168710032804427",
			"token1": {
				"symbol": "LSD"
			},
			"token1Price": "17449.2394508684014464733738533938"
		}, {
			"id": "0x007eeb6c9ebd1b50d68ee9e332a3e83618a55b76",
			"token0": {
				"symbol": "MANTA"
			},
			"token0Price": "40316.12918040731648621908901012758",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.00002480396854383471679034927701054274"
		}, {
			"id": "0x0084088e743d85117cd2aa70d67fce80f1e1703c",
			"token0": {
				"symbol": "TNSR"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "MEGALAND"
			},
			"token1Price": "0"
		}, {
			"id": "0x008493762005658a8f94f29a6500a4ff10b220af",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.0000005958201566131993378485793713378135",
			"token1": {
				"symbol": "UKC"
			},
			"token1Price": "1678358.794848879698400682005017281"
		}, {
			"id": "0x008a16aa1d7a0cbe7cd90f37eea8b7a08d8c9d77",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.005430013858596305777253715485022571",
			"token1": {
				"symbol": "ROUBIN"
			},
			"token1Price": "184.1615925927869663990599847965853"
		}, {
			"id": "0x008a35e1d213bb3164653030f19f7ce5370a6bf4",
			"token0": {
				"symbol": "PEW"
			},
			"token0Price": "223672061.0767125945095256535137922",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.000000004470831069317284777283266296518957"
		}, {
			"id": "0x008b46d437a335c10fc64c742607c339e1b5b54e",
			"token0": {
				"symbol": "TJEFF"
			},
			"token0Price": "9803919619.864097792342383671061014",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000000001020000202749379566961898137214623"
		}, {
			"id": "0x008b5fa46558ad503cc9039de9e3e0f724fe89af",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "RAVEN"
			},
			"token1Price": "0"
		}, {
			"id": "0x008e2b31e629bd3d2c5e4e49945a301ea7127ce5",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.00004048854311442726553186800590285361",
			"token1": {
				"symbol": "BLAZE"
			},
			"token1Price": "24698.34484223934500531263511526692"
		}, {
			"id": "0x008ec31e18b89f7bbaa83466c985d2fbe2d652de",
			"token0": {
				"symbol": "hub"
			},
			"token0Price": "1495.636130071035277747044268133772",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0006686118233533880820484955645331781"
		}, {
			"id": "0x009294f1e4e092e9d5506d9c584a2a8dc3cb3460",
			"token0": {
				"symbol": "BTCB"
			},
			"token0Price": "0.00001013597970196360328061061005117446",
			"token1": {
				"symbol": "MAV"
			},
			"token1Price": "98658.44539983381704611578563036605"
		}, {
			"id": "0x00935494be4c70258e6269a916e95f46b2e4ac85",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "symbol"
			},
			"token1Price": "0"
		}, {
			"id": "0x0096e4918ad2ab33b2002548fc2d2eca73604160",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "PIXEL"
			},
			"token1Price": "0"
		}, {
			"id": "0x00973a33e48e2b11d045aec50f9b2a1d4681693b",
			"token0": {
				"symbol": "GCM"
			},
			"token0Price": "111235.1070426288607418324092358365",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.000008989967525421339562205104962546164"
		}, {
			"id": "0x00a22ebc227e6cad4739593eded3ebd475a0ac36",
			"token0": {
				"symbol": "GROW"
			},
			"token0Price": "24.35286832974867129122090761584571",
			"token1": {
				"symbol": "TRIAS"
			},
			"token1Price": "0.04106292476350445129924884668612816"
		}, {
			"id": "0x00a30f72476bf2f17eb2fab01dae93687e33294f",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "BABYATRON"
			},
			"token1Price": "0"
		}, {
			"id": "0x00a4a097fb99403009c6ebd0636a14976f150e57",
			"token0": {
				"symbol": "DNT"
			},
			"token0Price": "23022.62633325623038806022416302054",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.00004343553100870589962826016507627648"
		}, {
			"id": "0x00ae633f1d47787ffdfbf806393c99dd1afcc037",
			"token0": {
				"symbol": "PVU"
			},
			"token0Price": "695.6246585055349764341694284717285",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.001437556860259063338905038959630829"
		}, {
			"id": "0x00aec5445e942a47db9354029803114b27bffe36",
			"token0": {
				"symbol": "HAWKTUAH"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x00b296a525ec7f917df87a8e4499dd6b8b3fd458",
			"token0": {
				"symbol": "sats"
			},
			"token0Price": "3432888.031174227572041263554839034",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0.0000002912999174219928184578023662670144"
		}, {
			"id": "0x00b4f638b81d9bec03a622ab5fe7bc9081e21414",
			"token0": {
				"symbol": "666"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x00bbe459855587592e9171cc154ff111098ad022",
			"token0": {
				"symbol": "APE"
			},
			"token0Price": "2345.104266045165109349407741685701",
			"token1": {
				"symbol": "ETH"
			},
			"token1Price": "0.0004264202724284075315254945405246296"
		}, {
			"id": "0x00bd1c526c0d23dcf93b9d8173ef1f20b32da893",
			"token0": {
				"symbol": "VND"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "AK101"
			},
			"token1Price": "0"
		}, {
			"id": "0x00c146aee2c2b049bb5f12c2b900c8e78d56966e",
			"token0": {
				"symbol": "USA"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x00c1d686cd7c190428d4f5e2d4a2f412b52f3270",
			"token0": {
				"symbol": "ETH"
			},
			"token0Price": "0.004894055284063204909087902730604053",
			"token1": {
				"symbol": "WHW"
			},
			"token1Price": "204.3295267334551365968668075824106"
		}, {
			"id": "0x00c3ea560b2abe6bef084bbca4aae8078549d97a",
			"token0": {
				"symbol": "LADYLINDA"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x00caf94936e092d1df403b63507ce8c522b210a3",
			"token0": {
				"symbol": "KDG"
			},
			"token0Price": "2174309.312718950939831872068198328",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000004599161647104893791383089043144512"
		}, {
			"id": "0x00d0606fffc775a3900873d601e418917ec0d186",
			"token0": {
				"symbol": "MLUT"
			},
			"token0Price": "1076367740158.740853621501602374131",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000000000009290505119119621038452918450455724"
		}, {
			"id": "0x00d3e006bb059fa3472c9849035a59b110fea9f3",
			"token0": {
				"symbol": "WOLF INU"
			},
			"token0Price": "14657423499525.51909079260619733171",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.00000000000006822481454754796243944417548314139"
		}, {
			"id": "0x00d4e1f8bccf33d1a6b0a66e6227f2c421ed0211",
			"token0": {
				"symbol": "WBNB"
			},
			"token0Price": "0.000000001000161967971268079892152331344179",
			"token1": {
				"symbol": "lion"
			},
			"token1Price": "999838058.2581073180845619620992432"
		}, {
			"id": "0x00d863a0e802664950a89d053356511030f92940",
			"token0": {
				"symbol": "BTCC"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0"
		}, {
			"id": "0x00dad985ab0ce8580f7ea633d6c3136c8d7b56da",
			"token0": {
				"symbol": "McFLOKI"
			},
			"token0Price": "999857.3538596630163862771974463003",
			"token1": {
				"symbol": "BUSD"
			},
			"token1Price": "0.0000010001426664911613031940105465175"
		}, {
			"id": "0x00db2e04398dcb2ba97e629c7159227ea1e839f7",
			"token0": {
				"symbol": "WSM"
			},
			"token0Price": "4749.218873085070104910081280691852",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0002105609420671750873353315482190026"
		}, {
			"id": "0x00de2112035a5b51121cfa539422aa7511ff7268",
			"token0": {
				"symbol": "USDT"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "USDT"
			},
			"token1Price": "0"
		}, {
			"id": "0x00e4e2a31c85e2cb32151430bfdf995648a41980",
			"token0": {
				"symbol": "ESTW"
			},
			"token0Price": "999103.5699466237322033193748576696",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.000001000897234361222589584202592492194"
		}, {
			"id": "0x00e7b7b54158f458332cf706223e292d3c460e54",
			"token0": {
				"symbol": "RGCN"
			},
			"token0Price": "34025678654032523392971009040471970000000000000",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.00000000000000000000000000000000000000000000002938956810142818059917450894998607"
		}, {
			"id": "0x00f11735d1db56c8ca9b3a12cdf3c0a7f5838f18",
			"token0": {
				"symbol": "Vht"
			},
			"token0Price": "1000996.380419977311771369817921845",
			"token1": {
				"symbol": "WBNB"
			},
			"token1Price": "0.0000009990046113657681048470951200687204"
		}, {
			"id": "0x00f12f3a2834f449cd93fa97665322e6d8bb303d",
			"token0": {
				"symbol": "axlUSDC"
			},
			"token0Price": "0",
			"token1": {
				"symbol": "WHW"
			},
			"token1Price": "0"
		}]
	}
}

posted on 2024-08-19 17:31  肥兔子爱豆畜子  阅读(11)  评论(0编辑  收藏  举报

导航