Sort로 Beanstalk 기금 모금 보기
2197 단어 ethereumcryptostablecoinsweb3
(1) 탈중앙화를 우선시하고, (2) 담보가 필요하지 않으며, (3) 시간이 지남에 따라 더 많은 유동성과 안정성을 향해 유기적으로 추세를 보이는 스테이블 코인은 DeFi의 잠재력을 열 것입니다.
안타깝게도 2022년 4월Beanstalk funds were stolen 거버넌스 익스플로잇을 통해. 암호화폐 분야에서 가장 강력한 커뮤니티 중 하나를 보유하고 있는 Beanstalk는 프로토콜을 재자본화하기 위해 "Barn Raise"이라는 모금 행사를 시작했습니다.
Sort을 사용하여 Barn Raise 진행 상황을 추적하고 결과를 스프레드시트로 내보냅니다.
Beanstalk Barn Raise에 대한 정렬 쿼리 작성
select
transaction_hash as tx,
transaction_from as from_address,
timestamp,
CAST(l.params [5].value as integer) as amount,
CASE
WHEN transaction_value_eth > 0 THEN 'ETH'
ELSE 'USDC'
END AS currency
from
ethereum.transaction_log l
where
l.transaction_to IN (
'0x402c84de2ce49af88f5e2ef3710ff89bfed36cb6',
'0x735cab9b02fd153174763958ffb4e0a971dd7f29'
)
and l.name = 'TransferSingle'
order by
timestamp desc
limit
1000
View query results here
모금 총액 보기
select
SUM(CAST(l.params [5].value as integer)) as amount,
from
ethereum.transaction_log l
where
l.transaction_to IN (
'0x402c84de2ce49af88f5e2ef3710ff89bfed36cb6',
'0x735cab9b02fd153174763958ffb4e0a971dd7f29'
)
and l.name = 'TransferSingle'
View query results here
Reference
이 문제에 관하여(Sort로 Beanstalk 기금 모금 보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sort_xyz/watching-beanstalk-fundraising-with-sort-2knb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)