File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,15 @@ const TeaProtocol = () => {
7171 const response2 = await fetch ( `https://yo2fkzmf2rh33u2b3bi3xhtqyi0toyqz.lambda-url.us-east-1.on.aws/?url=/stats&network=sepolia` ) ;
7272 const data2 = await response2 . json ( ) ;
7373
74+ const response3 = await fetch ( 'https://api.app.sepolia.tea.xyz/kycCount' ) ;
75+ const data3 = await response3 . json ( ) ;
76+
7477 setSepoliaStats ( {
7578 totalBlocks : parseInt ( data2 . total_blocks ) . toLocaleString ( ) ,
7679 dailyTransactions : `${ ( parseInt ( data2 . transactions_today ) / 1000000 ) . toFixed ( 2 ) } M` ,
7780 totalTransactions : parseInt ( data2 . total_transactions ) . toLocaleString ( ) ,
7881 walletAddresses : parseInt ( data2 . total_addresses ) . toLocaleString ( ) ,
79- kycAttestations : "30.5k"
82+ kycAttestations : parseInt ( data3 . kycCount ) . toLocaleString ( )
8083 } ) ;
8184 } ;
8285
You can’t perform that action at this time.
0 commit comments