如何使用JavaScript或Solidity在前端展示加密通证和法币价格

资讯 2024-06-28 阅读:160 评论:0
原文链接:https://blog.chain....
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

在这里插入图片描述
原文链接:https://blog.chain.link/how-to-display-crypto-and-fiat-prices-on-a-frontend/

 insert the picture herebr/> link xff1a;

Web3开发者经常选择在前端显示平台或协议的原生加密通证,而不是显示与法币的转换结果。虽然这样做容易让用户聚焦原生通证,但显示法币转换结果可能是一个更好的选择。为加密通证定价要求对通证当前价值有了解,而通证的价值往往是波动的,而且还为新用户创造了一个不太受欢迎的体验,许多人对参考美元或他们的本地货币感到更舒服。

Web3 developers often choose to display the original encryption modem of the platform or protocol at the front end & #xff0c; instead of showing the result of the conversion to the French currency. While this can easily allow users to focus on the original modem & #xff0c; but showing the result may be a better option. For encryption the price requirement is an understanding of the current value of the translator & #xff0c; the value of the translator is often volatil xff0c; it also creates a less popular experience for new users xff0c; many feel more comfortable with reference dollars or their local currency.

幸运的是,通过Chainlink Data Feeds,ETH和美元等货币之间的转换非常简单,这意味着开发者只需几个简单的步骤就能为用户提供更好的体验。本技术教程阐述了如何使用ETH/USD Chainlink Price Feed在前端显示加密通证和法币价格。

Fortunately, xff0c; through , the conversion between ETH and United States dollar currencies is very simple xff0c; that means that developers can experience users better with only a few simple steps. This technical instruction describes how to use ETH/USD Chainlink Price Feed to show encryption pass and French currency prices at the front end.

Chainlink Data Feeds是一套提供安全和可靠的真实世界数据源的智能合约。它们由独立的、高信誉的和地理上分布的节点运营商提供支持,这有助于确保返回数据的可靠性。例如,ETH/USD,目前利用31个独立的预言机,或者说信息来源,用于确定当前ETH对美元的价格的可信答案。

Chainlink Data Feeds is an intelligent contract that provides a secure and reliable source of real world data. They are supported by independent, high-profile and geographically distributed nodes & #xff0c; this helps to ensure the reliability of returned data. For example, , #xff0c; currently using 31 independent prognosis machines & #xff0c; or source #xff0c; and a credible answer to determine the current prices of ETH for dollars.

为什么我们需要31个信息源来获取相同的信息?使用多个来源来汇总一个有效的响应,意味着不可能有单点故障问题,并防止数据被篡改。

Why do we need 31 information sources to get the same information & #xff1f; to use multiple sources to aggregate an effective response & #xff0c; to mean that there can be no single failure & #xff0c; and to prevent data from being tampered with?

当与智能合约互动时,必须有一个Web3连接的提供者。通常,这可以通过用户的钱包连接获得。如果没有,或者你不需要连接用户的钱包,你可以通过以下方式完成同样的功能:

When interacting with an intelligent contract xff0c; there must be a provider with a Web3 connection. Usually xff0c; this can be obtained through a user's wallet connection. Without xff0c; or if you do not need a user's wallet xff0c; you can do the same function xff1a by:

 

RPC_URL_HERE可以从一个节点提供商那里获得,如Alchemy, Infura, MoralisQuickNode。提供者(provider)是我们通往区块链的 “网关”。

RPC_URL_HERE can obtain xff0c from a node provider, e.g. Alchemy, , or .

本教程的另一个要求是一个以太坊JavaScript库。在这个例子中,我使用的是ethers库。你需要安装它,才能让本文案例工作。

Another requirement of the curriculum is a evasive JavaScript library. In this example, xff0c; I use ethers library. You need to install it xff0c; in order for this case to work.

 
 

现在是需要在前端显示ETH/USD价格的代码。

It is now necessary to display the ETH/USD price code at the front end.

如果你想跟着做,这个例子的代码可以在例子库中找到。按照README.md中的说明,在本地运行这个例子。这个例子使用Svelte,但同样的概念应该适用于任何前端JavaScript框架,如React或Vue。在SmartContract的GitHub仓库中,你还可以使用其他几个入门套件。

If you want to follow xff0c; the code for this example can be found in the . This example can be found in the example of .

这段代码可以通过导入语句在前端使用:

This code can use xff1a at the front end by importing statements;

 

然后,将结果存储为以美元计算的ETH价格:

xff0c; store results as ETH prices in United States dollars xff1a;

 

假设ethAmount是要转换的ETH数额,则使用此值从ETH转为美元。

Assuming that EthAmount was to convert the ETH amount xff0c, this value was converted from ETH to United States dollars.

 

这里是完整的文件:

This is the complete document #xff1a;

 

我们需要的代码中大部分是aggregatorV3InterfaceABI或ABI。这是我们将与之互动的合约的数据结构,我们需要让ethers知道这些。通常,你可能会在前端项目中把这些存储在单独的JSON文件中。在本例中,它被包含在utils文件中,这样是把所有内容都放在一起。

Most of the codes we need are aggregator V3Interface ABI or ABI. This is the data structure of the contract with which we will interact xff0c; we need to let ethers know about it. Usually xff0c; you may store these in a separate JSON file in front of the project. In this case xff0c; it is contained in the utils file xff0c; this is to put everything together.

 

这个合约地址将根据网络或价格对的变化而变化;你可以使用这些Data Feed合约地址中的任何一个。

This contract address will vary according to the changes in the network or price; you can use either of these .

 

与合约的交互是直接的。我们调用latestRoundData,它返回:
● :轮次ID。
● : 价格。
● :该轮次开始的时间戳。
● :这一轮更新的时间戳。
● :计算结果的轮次ID。我们对answer感兴趣。这将是ETH的价格,有一个小的警告。我们需要知道答案中包含的小数点的数量。这就是decimals的作用。它返回要包含的小数位数。

The interaction with the contract is direct. We call latestRoundData, it returns to xff1a;
& #xff1a; wheel ID.
: Price.
& #xff1a; the time stamp for the start of the round.
& #xff1a; the time stamp for the update.
& #xff1a; the rotation ID for the calculation of the results. We are interested in Answer. This is the price of the ETH #xff0c; there is a small warning. We need to know the number of small points contained in the answer. This is the role of Decimals.

我们使用和来返回ETH的价格:

We use and come back to the price of ETH #xff1a;

 
 

一旦我们有了单个ETH的价格,我们可以用它来轻松地将ETH转换成美元价格。在下面的例子中,rawETH是一个合约的余额返回的字符串。

Once we have a single ETH price xff0c; we can easily convert it into a dollar price. In the example below, xff0c; rawath is a string that returns the balance of a contract.

 

Chainlink Data Feeds提供了一个可靠的解决方案,它使用安全的方法将资产价值从ETH转换为美元。

Chainlink Data Feeds provides a reliable solution xff0c; it uses a secure method to convert asset values from ETH to United States dollars.

到目前为止,在一个前端应用程序中创建一个实用功能似乎很简单。但是,如果我们能够消除前端开发者对价格的担心,并为他们处理价格问题呢?

So far xff0c; creating a functional feature in a front-end application seems simple. But xff0c; if we can remove the concerns of the front-end developers about prices xff0c; and handle price problems for them xff1f;

只要对你的合约做一些修改,你就可以向终端用户提供当前的价格数据–他们需要担心的是连接到你的合约。这就简化了所需的前端工作。让我们来看看一个合约的例子。

Just make some changes to your contract xff0c; you can provide the end user with the current price data — what they need to worry about is the contract that connects you to. This simplifies the front-end work needed. Let's look at one example of the contract.

 

首先,我们导入我们在上述前端版本中使用的相同的聚合器接口。

First xff0c; we import the same polymer interface that we use in the front version above.

 

然后,我们需要让聚合器知道我们感兴趣的Price Feed的合约地址。

And then #xff0c; we need to let the polymer know the contractual address of Price Feed, which we're interested in.

 

在我们的getLatestPrice()函数中,我们调用priceFeed.latestRoundData()。priceFeed引用的是我们在上面的getETHPrice利用中使用的同一个合约。它返回:

In our GetLatestPrice() function & #xff0c; we call PriceFeed.latestRoundData(). PriceFeed refers to the same contract that we used in the getETHPrice above. It returns #xff1a;

● :轮次ID。
● : 价格。
● :该轮次开始的时间戳。
● :这一轮更新的时间戳。
● :计算答案的那一轮的ID。

• & #xff1a; Round ID.
: Price.
& #xff1a; time stamp for the start of the round.
& #xff1a; time stamp for the update.
& #xff1a; round ID for the calculation of answers.

这里的代码可能看起来有点奇怪。我们唯一感兴趣的值是字段。因此,我们不把其他的值分配给变量。把它们跳过,可以防止储存未使用的数据。

The code here may look a little strange. The only value we're interested in is the field. So xff0c; we don't assign other values to variables. Skip xff0c; it prevents the storage of unused data.

 
 

现在,价值数据已经包含在你的智能合约中,我们只需要从前端访问合约中该价值数据。

Now xff0c; value data is already contained in your smart contract xff0c; we just need to access the value data in the contract from the front.

 

这将为我们合约的消费者创造一个更简单的界面,因为他们不需要了解预言机或导入一个单独的ABI。

This will create a simpler interface for our contract consumers & #xff0c; they do not need to know the prophecy or import a separate ABI.

在这个技术教程中,我们展示了如何轻松地将Chainlink数据源集成到你的DApp中,使用户能够轻松使用USD/ETH价格转换。有大量适用于加密通证和法定货币的Chainlink Price Feeds,开发者们可以调整上面的使用步骤使用适用于他们的价格数据。
获取更多关于Chainlink的信息,请访问chain.link或在docs.chain.link阅读文档。要讨论集成问题,请联系专家。

xff0c; we showed how to easily integrate Chainlink data sources into your DApp xff0c; make USD/ETH price conversion easy for users. There are a lot of Chainlink Price Feeds #xff0c for encryption generals and legal currencies; developers can adjust the use steps above to use price data that apply to them.
Get more information about Chainlink xff0c; please visit Chain.link or docs.chain.link. To discuss integration xff0c; contact experts.

美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 虚拟币GOpay钱包app下载

    虚拟币GOpay钱包app下载
    虚拟币GOpay钱包app下载版能为用户第一时间带来行业内最新的资讯,虚拟币GOpay钱包app下载版中采用了多种先进的隐私保护算法,提供多元完善的认证机制确保所有用户的交易安全性,除了自身的进步和发展之外,还需要承担更多的行业责任,比如推动行业的健康发展、为行业培养更多的优秀人才,以及为行业创造更多可能等。In addition to its own progress and development, the virtual currency GO...
  • 2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别 进入阅读模式

    2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别                进入阅读模式
    宿迁三支一扶QQ交流群:427100650 丨 微信公众号:宿迁中公教育 丨 在线咨询 关于货币的定义有很多,但是我们在考试中主要参照的是马克思主义货币学说。马克思货币学说是马克思关于货币的起源和本质、货币职能及其...
  • 区块链存证-核验操作指南

    区块链存证-核验操作指南
    第一步:登录后台-表单数据汇总,点击查看证书;Step one: login backstage - form data summary, click on the certificate; 第二步:保存存证证书,下载【存证源文件】,复制【存证哈希】,;Step 2: save the certificate of record, download the [source file], copy the [Hashi file], 第三步:登录蚂蚁区块链存证核验中心...
  • 比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?

    比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?
    你还在等什么?现在升级新浪财经Level-2一年只要88元!˂a href="https://finance.sina.com.cn/app/jumptosfl2.shtml" target="_blank" What are you waiting for? 逃不出我掌心!尾盘掘金助你...
  • 【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享

    【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享
    您需要 登錄 才可以下載或查看,沒有賬號?註冊 You need record to download or view without account? ˂a href=https://www.hd.club.tw/member.php?mod=register'title= "Registration account" x 本文章最後由 racha33 於 2014-5-6 23:29 編輯 固件分享品牌:海美迪芯片方案:RTD1186固件简介:基於 1...
标签列表