找到约 14 条结果

文章 加密货币中的代币经济学:揭示通缩代币的益处

....reddit.com/r/harmony_one/comments/pudv8s/my_thoughts_about_the_tokenomics_and_the/),特别是当与质押或 DeFi 实践相结合时。 ### 对市场价值和流动性的影响 通缩模型通过以下几种机制为市场稳定做出贡献: **价值稳定**: – [代币销毁通过消除...

文章 以太坊 - 如何使用 Web3.js 获取 ERC-20 代币的余额

...请注意,此 RPC 方法需要在你的 QuickNode 端点启用的 [Token and NFT API v2 bundle](https://marketplace.quicknode.com/add-on/token-and-nft-api-v2-bundle) 附加功能。 查看以下 web3.js 示例,以了解使用此方法获取所有代币余额是多么简单: 通过运行命...

文章 DeFi仍然比中心化交易所更容易被盗

...监管环境](https://blockapps.net/blog/video-navigating-the-regulatory-landscape-for-finance-and-healthcare/) - [企业如何使用以太坊区块链即服务](https://blockapps.net/blog/blockchain-as-a-service/) - [\[视频\] 区块链驱动的碳信用市场](https://blockapps.net/blog/video-bl...

文章 深入Rust智能指针和模式匹配

...hared_data); let thread2_data = Arc::clone(&shared_data); let handle1 = thread::spawn(move || { let mut data = thread1_data.lock().unwrap(); *data += 1; println!("Thread 1 value: {}", *data); // 输出: Thread 1 value: 1 }); let handle2 = thread::sp...

文章 Consensys CTF - "以太坊沙盒"

...0=64, code=0x80 size := extcodesize(addr) mstore(0x40, add(code, and(not(0x1f), add(0x1f, add(0x20, size))))) //新的自由内存指针 mstore(code, size) //在0x80地方存储codesize extcodecopy(addr,add(code, 0x20),0,addr.code.size) //把extcode全部拷贝到内存0xa0处 ...

文章 泰达币的崛起:解析主导稳定币的增长

...供了[保护储蓄](https://www.wsj.com/articles/turks-pile-into-bitcoin-and-tether-to-escape-plunging-lira-11641982077)、寻求经济稳定和[获得银行基础设施的机会](https://www.cnbc.com/amp/2022/11/05/-in-bankrupt-lebanon-locals-mine-bitcoin-and-buy-groceries-with-tether.html),从...

文章 数据可用性采样(DAS ) #1 :为什么会需要 DAS?

...ollup 与数据可用性](https://medium.com/taipei-ethereum-meetup/rollup-and-data-availability-227340f1dbd6?source=post_page-----dc17f83355b5--------------------------------) 但其实不只是 L2,以太坊这条链本身也会需要面对数据发布的问题,因为轻节点不会像...

文章 万字长文详解坎昆升级:​为以太坊生态再次注入新活力

... source:https://a16zcrypto.com/posts/article/an-overview-of-danksharding-and-a-proposal-for-improvement-of-das/ 相比之下,目前以太坊每个区块可以容纳的数据大小不到 200KB,引入 blob 后,以太坊区块可容纳的数据量将显著提高。 ![](https://img...

文章 用Vyper实现智能合约 - 一种 Python 方法

... need a Vyper file, the name that you want to give to your smart contract, and the output JSON file. The following code will do this task: filename = 'hello.vy' contract_name = 'Hello' contract_json_file = open('Hello.json', 'w') # Use the following lines of code to get the content of the Vype...

文章 如何使用 Solana 命名服务创建 .sol 域名

...ps://airtable.com/shrKKKP7O1Uw3ZcUB?prefill_Guide+Name=How%20to%20Create%20and%20Resolve%20Solana%20Naming%20Service%20Domains%20%28.sol%29)。我们很想听取你的意见! >- 原文链接: [quicknode.com/guides/sol...](https://www.quicknode.com/guides/solana-development/getting-started/how-t...

文章 Web3 新星:Monad 打造 NFT 全解

...e Layer-1 blockchain with 10,000 tps of throughput, 500ms block frequency, and 1s finality. ## 实操 ### 创建项目并切换到项目目录 ```bash mcd MonadArt # mkdir MonadArt && cd MonadArt ``` ### 通过模版初始化项目 ```bash forge init --template https://github.com/q...

文章 ​面向开发人员的 Solidity:使用Solidity进行ABI编码和解码

...,abi.hashex.org/。 Source:https://medium.com/coinmonks/abi-encode-and-decode-using-solidity-2d372a03e110 ### 关于 ChinaDeFi - ChinaDeFi.com 是一个研究驱动的DeFi创新组织,同时我们也是区块链开发团队。每天从全球超过500个优质信息源的近900篇内...

文章 深入 Uniswap V4 源码 - DeltaResolver

...er`:支付者 - `amount`:支付金额 ```solidity /// @notice Pay and settle a currency to the PoolManager /// @dev The implementing contract must ensure that the `payer` is a secure address /// @param currency Currency to settle /// @param payer Address of the payer /// @param amount A...

文章 9.轻松入门Sui Move: Ability

... >On Sui, the `key` ability indicates that a struct is an object type and comes with an additional requirement that the first field of the struct has signature `id: UID`, to contain the object's unique address on-chain. 翻译过来:**如果一个类型,带有key ability就代表他是一...