找到约 11 条结果

文章 哪些大公司正在以太坊上进行建设

...币市场基金](https://www.theblock.co/post/326575/franklin-templeton-expands-tokenized-money-market-fund-to-ethereum),以及欧洲投资银行等机构发行的[政府债券](https://www.linkedin.com/pulse/abn-amro-bank-nv-pioneers-public-blockchain-bond-martijn-siebrand-9hgue/)。 以太坊...

文章 如何使用Helius获取新铸造的代币

...型的非可替代( [ERC-721](https://ethereum.org/en/developers/docs/standards/tokens/erc-721/))和可替代代币( [ERC-20](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/))制定了不同的标准,而 Solana Program Library 对不同代币类型没有单独指定的标...

文章 Rust 中的 HashMap 实战指南:理解与优化技巧

...hash map needs to be defined. The key // represents the name of the fruit and the value represents how many of that // particular fruit is in the basket. You have to put at least three different // types of fruits (e.g apple, banana, mango) in the basket and the total count // of all the fruits ...

文章 FOMO与加密货币交易心理 - Pintu学院

...e?categories=46) ## FOMO 和加密货币交易的心理学 [![Image FOMO and the Psychology of Crypto Trading](https://img.learnblockchain.cn/2025/08/18/Psikologi-trading.png)](https://img.learnblockchain.cn/2025/08/18/Psikologi-trading.png) 自 2009 年以来,[比特币](https://learnblockchai...

文章 从设计原理来学习ERC20Snapshot and ERC20Votes

...命名,返回字符串,即时钟使用的单位。 # ERC20Snapshot and ERC20Votes 区别 ## **1. 时间概念** **ERC20 Votes**:有明确的时间概念,在每次投票权相关的事件(如委托或转账)发生时,记录当前的时间戳或区块号。以后可以根据具...

文章 超越比特币:探索区块链的多元应用

...ites/bernardmarr/2018/03/23/how-blockchain-will-transform-the-supply-chain-and-logistics-industry/)。 区块链的关键优势之一是它能够提供产品从原产地到目的地完整且透明的记录。通过利用区块链,可以跟踪和验证供应链中的每个步骤,从而创建防...

文章 2022 年学习区块链、DeFi、NFT 的 10 大资源

...。在Metamask上创建钱包。也可以创建其他钱包(如Celo、Algorand、Terra),看看他们的使用体验有何不同。 * 坚持使用Metamask,比如在它和我们的其他钱包之间转账。或者让朋友和我们交易。我们可以使用ETH,但可以使用Ethereum以外的...

文章 zkPoD:区块链,零知识证明与形式化验证,实现无中介、零信任的公平交易

...这个我们以后再展开讲。 ## 参考文献 [1] Pagnia, Henning, and Felix C. Gärtner. On the impossibility of fair exchange without a trusted third party. Technical Report TUD-BS-1999-02, Darmstadt University of Technology, Department of Computer Science, Darmstadt, Germany, 1999. [2] Gar...

文章 如何将PancakeSwap部署到以太坊类链上

...具 ``` npm install sol-merger -g ``` ### Prepare `PancakeFactory` and `PancakeRouter` 因为`PancakeFactory`和`PancakeRouter`的合约代码是好几个文件,我们把它们合并成一个方便部署,都放到build目录下 ``` sol-merger pancake-swap-core/contracts/PancakeFac...

文章 全面解析 Rust 模块系统:实战案例与应用技巧

...s // // Execute `rustlings hint modules1` or use the `hint` watch subcommand for a // hint. mod sausage_factory { // Don't let anybody outside of this module see this! fn get_secret_recipe() -> String { String::from("Ginger") } pub fn make_sausage() { ge...

问题 合约代码中 这几个proxy库作用是什么 里面比较重要的方法解析一下 谢谢

...datasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returnd...