找到约 10 条结果

文章 零知识证明 - 深入理解Zinc

...erator instruction. Not(Not), /// A logical operator instruction. And(And), /// A logical operator instruction. Or(Or), /// A logical operator instruction. Xor(Xor), /// A comparison operator instruction. Lt(Lt), /// A comparison operator instruction. Le(Le), //...

文章 Ethernaut 题库闯关 #16 — Preservation

...g.org/en/latest/introduction-to-smart-contracts.html#delegatecall-callcode-and-libraries)所解释的: > 目标地址的代码在调用合约的上下文中执行,并且 `msg.sender` 和`msg.value` 不改变其值。这意味着合约在运行时可以动态地从不同的地址加载代码...

文章 How to use eth_getTransactionReceipt?

...are important as it is **the transaction proof** which could be verified and identified by any body using the pre-defined encoding-decoding spec of EVM. Usually there are 2 methods to get 2 different kinds of granularity log data. One is **eth_getTransactionReceipt**, the other is **eth_getBlock...

文章 艺术品和收藏品的代币化:完整指南

目录 [切换](https://blockapps.net/blog/tokenizing-art-and-collectibles-a-complete-guide/#) ## I. 现实世界资产(RWA)在艺术品和收藏品市场中的通证化概述 现实世界资产(RWA)的通证化正在通过利用区块链技术创建物理资产的数字表示,从而彻...

文章 每周以太坊进展 2020/03/15

...](https://medium.com/1milliondevs/new-storage-layout-for-proxy-contracts-and-diamonds-98d01d0eadb) * EthGlobal 的 [以太坊开发者信息反馈](https://ethglobal.typeform.com/to/RxHlK8) * [体积节约 10 倍的 Javascript 签名器/验签器](https://www.reddit.com/r/ethereum/comments/fh18yj/...

文章 Web3系列教程之新手篇---Level 9:NFT教程

...Item is ERC721 signifies that the contract we are creating imports ERC721 and follows ERC721 contract from openzeppelin contract GameItem is ERC721 { constructor() ERC721("GameItem", "ITM") { // mint an NFT to yourself _mint(msg.sender, 1); } } ``` - 编译合约,打开终端并执行...

文章 伪代码简述 ECDSA 签名过程 | 联盟链开发

...些啥。 - **calculate_rem(num1, num2)** 取余操作 - **hash_and_sth(m)** 我们对信息 m 做一些处理,具体咋处理的不用管,结果就是我们能拿 m 验证出来出来的内容是否正确,但不能拿处理出来的内容反推 m —— 传说中的 hash 函...

文章 Web3系列教程之进阶篇---8. IPFS实战

... URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. */ string _baseTokenURI; // _price is the price of one LW3Punks NFT uint256 public _price = 0.01 ether; // _paused is used to pause the contract in case of...

文章 加密货币质押中的关键 Slashing 预防策略

...为的关键威慑。根据 [Consensys](https://consensys.io/blog/understanding-slashing-in-ethereum-staking-its-importance-and-consequences),触发 **罚没** 的常见违规行为包括: - 双重签署区块 - 验证不正确的交易 - 长期停机 - 网络操纵企图 惩罚可能是巨大...

文章 闪电网络中的 “多路径支付”

...tudy.org/2023/11/24/multipart-payments-on-lightning-network-break-down-amp-and-mmp/#%E5%8D%95%E8%B7%AF%E5%BE%84%E6%94%AF%E4%BB%98 "单路径支付")单路径支付 我们先玩一个思维实验,以更好地理解多路径支付的目的。 假设 Alice 想通过闪电网络给 Bob 支付 1 ...