找到约 13 条结果

文章 通过 LI.FI 探索 Polygon

...1 年取得了巨大的一年](https://www.nftsstreet.com/nft-market-sales-and-trends-for-2021/),因此 Polygon 已被这两个领域中最大的参与者整合是完全合理的。 视频游戏巨头 Atari [与 Polygon 合作](https://blog.polygon.technology/gaming-giant-atari-partners-with-poly...

文章 Solidity中的多重继承

...rtsInterface". > Two or more base classes define function with same name and parameter types. ## 使用override关键字,重写两个virtual函数, 重写后的函数也可以继续用virtual修饰,给子类提供重写的可能。 ``` override(BaseContact1, BaseContact2) ``` 完...

文章 Commons Stack :社区协作的可扩展基础设施

...发展](https://www.tni.org/files/publication-downloads/commons_transition_and_p2p_primer_v9.pdf),但由于缺乏对相同资本市场的获取,这些团体通常处于劣势于营利公司。**本质上,** **Commons Stack 基础设施将促进公共资源倡议更像初创公司**,通过会...

文章 Solana笔记 10.理论:SPL代币标准

... If no mint authority is present /// then the mint has a fixed supply and no further tokens may be /// minted. pub mint_authority: COption, /// Total supply of tokens. pub supply: u64, /// Number of base 10 digits to the right of the decimal place. pub decimals: u8...

文章 零知识证明 - SP1 zkVM源代码入门

...链。 ```  Usage: cargo prove [OPTIONS] cargo prove Commands: new Setup a new project that runs inside the SP1. build Build a program prove (default) Build and prove a program build-toolchain Build the cargo-prove toolchain. ...

文章 预售代币经济学:项目方指南

...是预售、公平启动或其他模式。 2. **归属和释放**(Vesting and Release): 代币可能会逐步释放,以防止核心团队立即抛售。常见的归属时间表包括定期释放一部分代币。 3. **代币锁定**(Token Locks): 为预售参与者实施代币锁定(归属期)...

文章 什么是动态NFT (dNFT)?

...基于 ERC-721 或 ERC-1155 [代币标准](https://blog.chain.link/token-standards/) 构建的 NFT 智能合约,或另一个区块链上以类似方式工作的替代标准。 - 连接到外部数据的能力,通常通过 [区块链预言机](https://learnblockchain.cn/article/18908) 服务(...

文章 Rust入门系列:09、万字长文,一次性讲明白Rust中的所有权

...2 = String::from("hello"); // s2 进入作用域 let s3 = takes_and_gives_back(s2); // s2 被移动到 // takes_and_gives_back 中, // 它也将返回值移给 s3 } // 这里, s3 移出作用域并被丢...

文章 波特五力模型与Web3中的竞争优势

...其 API 的访问](https://www.engadget.com/twitter-shut-off-its-free-api-and-its-breaking-a-lot-of-apps-222011637.html)。为了构建一个完全竞争的产品,新进入者必须重建类似的代码库并重建平台的社交图谱。 相比之下,在 web3 的开源世界中,新进入...

文章 EVM 堆栈指令集

...duplicate the value of b } return (a, b); // Returning a and b to verify the result } } ``` 对应的 EVM 字节码: ``` 60 04 // PUSH1 04 60 03 // PUSH1 03 60 02 // PUSH1 02 60 01 // PUSH1 01 81 // DUP2 ``` 执行流程 60 04:将 0x04 推送到...

文章 Hardhat 入门(二)

...ction withdraw() public { // 提现方法 // Uncomment this line, and the import of "hardhat/console.sol", to print a log in your terminal // console.log("Unlock time is %o and block timestamp is %o", unlockTime, block.timestamp); require(block.timestamp >= unlockTime, "...

文章 (一)基于区块链的自动抽奖系统从0到1实现

... please leave the port:[3306] for service:[MySQL] Aborted, error 5 in command: bash "${__root}/util.sh" check_ports ``` 上面的报错是说mysql的3306端口冲突了,因为服务我之前已经安装了默认3306端口的mysql数据库了。 ### 解决方案: 查询[官方文档](htt...

文章 如何在 Pumpfun 上流式传输 Bonding Curve 交易

...rveData, decodeTransact } from "./decodeTransaction"; /** * Deserializes and trims blockchain data to extract relevant information. * @param {Object} data - The data object containing blockchain account information. * @returns {Object} - An object containing the deserialized signature, public ke...