译文出自:登链翻译计划
译者:张小风
校对:Tiny熊
Uniswap是一个建立在以太坊上的去中心化协议,用户可以交换ERC-20代币,不需要买家和卖家创造需求。它是最受欢迎的去中心化交易所(DEX),在撰写本文时,总价值锁定超过14亿美元。
Uniswap使用y=k*x做市商机制来确定代币的价格,该产品保持不变,用于确定交易价格。
TheGraph是一个用于查询以太坊和IPFS数据的索引协议。任何人都可以贡献和创建subgraph,从而使区块链数据的访问变得容易(参考:使用TheGraph完善Web3事件数据检索。
TheGraph有多个subgraph,如Aave、ENS、Balancer和MakerDAO。为了查询这些subgraph的数据,我们将使用GraphQL。
GraphQL是一种开源的数据查询和操作语言,用于Facebook创建的API。
Uniswapsubgraph可以在UniswapV2Subgraph找到。
建立Uniswapsdk。
为了进行GraphQL查询,我们需要两个包,一个用于进行GraphQL查询,另一个用于使用新的高性能的System
获得流动性最高的市场交易对
我们现在可以调用UniswapV2subgraph。创建一个名为GetMostLiquidMarketPairs的方法,并使用GraphQL进行第一个查询。为了创建查询,实例化GraphQLRequest类,并将Query属性设置为所需的GraphQL查询:
//////Getthefirst150mostliquidmarketpairsorderedbydesc//////publicasyncTaskGetMostLiquidMarketPairs(){varquery=newGraphQLRequest{Query=@"{pairs(first:150,orderBy:reserveETHorderDirection:desc){token0{symbol}token1{symbol}reserveETHreserveUSD}}"};
GetMostLiquidMarketPairs
);services
);}}
AddUniswap
publicasyncTaskGet(stringproject=null){varresult=await_uniswap
}
使用IUniswap.cs
Uniswap.NET标准库
这个完整的库是免费的,可以下载并通过运行cli命令添加到你的项目中。
dotnetaddpackageUniswap.dotnet--version1.0.1
你也可以通过nuget或GitHub来添加这个包。
Uniswap.dotnet1.0.1-在TheGraphGraphQLAPI上为UniswapV2Subgraph提供的dotnet标准封装器.
strykerin/Uniswap-dotnet(代码库)在TheGraphGraphQLAPI上的UniswapV2Subgraph的dotnet标准封装器。
结论
在这篇文章中,我们为UniswapV2subgraph构建了一个dotnet包装器,以获得去中心化交易所的分析结果,如获得流动性最高的交易对。
参考文献
Uniswap在Ethereumuniswap.org上自动提供流动性的完全去中心化协议
什么是Uniswap?-去中心化代币交易所指南.
[自动做市算法在很多场合被常规采用,从金融市场到市场。
使用DeFiPulseAPI获取DeFi项目数据使用
本翻译由CellNetwork赞助支持。
来源:https://medium.com/coinmonks/get-uniswap-data-using-the-graph-79d0c6f7b9f2
参考资料
登链翻译计划:https://github.com/lbc-team/Pioneer
张小风:https://learnblockchain.cn/people/74
Tiny熊:https://learnblockchain.cn/people/15
14亿美元:https://defipulse.com/uniswap
使用TheGraph完善Web3事件数据检索:https://learnblockchain.cn/article/1589
Aave:https://thegraph.com/explorer/subgraph/aave/protocol
ENS:https://thegraph.com/explorer/subgraph/ensdomains/ens
Balancer:https://thegraph.com/explorer/subgraph/balancer-labs/balancer
MakerDAO:https://thegraph.com/explorer/subgraph/protofire/makerdao-governance
GraphQL:https://en.wikipedia.org/wiki/GraphQL
UniswapV2Subgraph:https://thegraph.com/explorer/subgraph/uniswap/uniswap-v2
Uniswap.dotnet1.0.1:https://www.nuget.org/packages/Uniswap.dotnet/
strykerin/Uniswap-dotnet(代码库):https://github.com/strykerin/Uniswap-dotnet
Uniswap:https://uniswap.org/
什么是Uniswap?:https://decrypt.co/resources/what-is-uniswap
使用DeFiPulseAPI:https://reitter.medium.com/get-defi-projects-data-with-defi-pulse-api-81721f8e6dd2
CellNetwork:https://www.cellnetwork.io/?utm_souce=learnblockchain
免责声明:作为区块链信息平台,本站所发布文章仅代表作者个人观点,与链闻ChainNews立场无关。文章内的信息、意见等均仅供参考,并非作为或被视为实际投资建议。
本文来源于非小号媒体平台:
登链社区
现已在非小号资讯平台发布105篇作品,
非小号开放平台欢迎币圈作者入驻
入驻指南:
/apply_guide/
本文网址:
/news/9651957.html
免责声明:
1.资讯内容不构成投资建议,投资者应独立决策并自行承担风险
2.本文版权归属原作所有,仅代表作者本人观点,不代表非小号的观点或立场
上一篇:
盘点零知识证明代表性项目:如何影响和塑造区块链生态系统?
郑重声明: 本文版权归原作者所有, 转载文章仅为传播更多信息之目的, 如作者信息标记有误, 请第一时间联系我们修改或删除, 多谢。