eth是啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eth是啥意思相关的知识,希望对你有一定的参考价值。
参考技术Aeth的意思是以太坊。
eth是英文Ethereum的缩写,意思是以太坊,它是一个开源的有智能合约功能的公共区块链平台,通过其专用加密货币以太币提供去中心化的以太虚拟机来处理点对点合约。
相关短语
1、Enterprise Ethereum Alliance:企业以太坊联盟,企业以太坊同盟,太坊区块链联盟。
2、Ethereum Foundation:以太坊基金会。
3、Ethereum Classic:以太坊经典,以太经典,以太坊原链,古典以太坊。
4、Enterprise Ethereum:企业以太坊,以太坊企业。
5、Ethereum virtual machine:以太坊虚拟机。
6、Decentral and Ethereum:加拿大。
7、Ethereum Island:以太坊岛。
8、Ethereum Classi:以太坊经典。
9、Ethereum blockchain alliance:以太坊区块链联盟。
实现这一目标的最佳方法是啥?
【中文标题】实现这一目标的最佳方法是啥?【英文标题】:What's the best way to achieve this?实现这一目标的最佳方法是什么? 【发布时间】:2021-12-25 15:55:04 【问题描述】:如何在 Web3 上实现以下功能? 我在 ethers 上完美运行,但需要将某些仅接受 web3.eth.getTransaction 的网络转换为 Web3。
我需要监听待处理的事务,然后引导到与 methodID 和令牌地址匹配的 eth.getTransaction。
我应该使用 web3.eth.subscribe 吗?
Code:
provider.on('pending', async tx =>
provider.getTransaction(tx).then(function (transaction)
if (
(transaction != null &&
transaction['data'].includes(MethodID) &&
transaction['data'].includes(TokenID))
)
console.log(transaction);
【问题讨论】:
【参考方案1】:您可以使用pendingTransactions
订阅事件类型(docs),然后使用getTransaction()
方法(docs)。
web3.eth.subscribe('pendingTransactions', async (err, txHash) =>
const tx = await web3.eth.getTransaction(txHash);
);
【讨论】:
以上是关于eth是啥意思的主要内容,如果未能解决你的问题,请参考以下文章