找到约 11 条结果

文章 Michael.W基于Foundry精读Openzeppelin第66期——ProxyAdmin.sol

..., (2048) ) ); function test_GetProxyAdminAndChangeProxyAdmin() external { assertEq( _testing.getProxyAdmin( ITransparentUpgradeableProxy(address(_transparentUpgradeableProxy1)) ), address(_testing) ...

文章 Vitalik:通过调整 calldata 和增加分片进一步扩容 rollup 的渐进路线图

.... 添加未来证明的状态和历史访问预编译 ([future-proof state and history access precompiles](https://ethresear.ch/t/future-proof-shard-and-history-access-precompiles/9781)),这样的话,如果承诺机制 (commitment scheme) 在未来发生变化,rollup 就不需要更改其代...

文章 Etherscan显示合约的创建代码还是运行时代码?

...r: GPL-3.0 pragma solidity 0.8.17; /** * @title Test * @dev Sets and Gets a uint variable called Pointer */ contract Test{ uint256 public pointery; constructor() { pointery = 100; } function setPointer(uint256 _num) public { pointery = _num; ...

文章 在Polygon网络上构建应用的全栈开发指南

...。 Polygon[之前称为Matic](https://cointelegraph.com/news/matic-rebrands-to-polygon-in-pursuit-of-polkadot-on-ethereum-strategy),所以你也会看到在提到他们的生态系统的各个部分时,看到**Matic**这个词被交替使用,因为这个名字仍然被用在各个地方,...

文章 终局:治理证明

...信息和隐私](https://help.twitter.com/en/twitter-for-websites-ads-info-and-privacy) [5](https://twitter.com/intent/like?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1676934940913442816%7Ctwgr%5Efc486a451a3de91d27148faf94c9499702eda602%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Fdba.mirror.xyz%2...

文章 以太坊合约地址是怎么计算出来的?

...1)) ``` 这里有一些[讨论](https://swende.se/blog/Ethereum_quirks_and_vulns.html): 如果 sender 为 0x6ac7ea33f8831ea9dcc53393aaa88b25a785dbf0 , 创造的合约地址如下,这个过程完全是确定的: ``` nonce0= "0xcd234a471b72ba2f1ccf0a70fcaba648a5eecd8d" nonce1= "0...

文章 Mina 文档 - 高级篇 之 Ledger硬件钱包

...1.0.0-beta.4-0-gb92ffef9 $ ./install.sh Please unlock your Ledger device and exit any apps (press any key to continue) Generated random root public key : b'04e95715d4813ab98c92833da9b169d3ff6ee11a4f94a465503cc91e77aaea688d45a0449f41bfaa2a1a789730e72d0ace759ca7c2b8a12e82c94cda61530cc363' Using te...

文章 动态NFT示例 - 16个用例 [2024]

...tps://wax.io/blog/new-wax-to-use-chainlink-oracles-to-bring-off-chain-data-and-resources-to-the-wax-and-eosio-ecosystem) 已经讨论了基于统计成就铸造稀有棒球卡,例如球员打破本垒打记录。Chainlink 可以将智能合约连接到 Web API 以获取可验证的体育数据,...

文章 每周以太坊进展 2021/02/07

...客户端的基准测试](https://dev.to/q9/ethereum-2-0-mainnet-clients-3and):“我觉得它们都已经准备好用于生产环境了” - Staked [因冗余运行而遭罚没](https://blog.staked.us/blog/eth2-post-mortem) - [Spectroscope](https://github.com/neukind/spectroscope):信标链...

文章 比特币地址的类型和钱包的用法

...) --- **原文链接:** [https://blog.trezor.io/bitcoin-addresses-and-how-to-use-them-35e7312098ff](https://blog.trezor.io/bitcoin-addresses-and-how-to-use-them-35e7312098ff) **作者:** SatoshiLabs **翻译:** 阿剑 ---

文章 Anchor 框架中 Init 和 Init if needed 的安全性含义

...s_writable: bool, /// This account's data contains a loaded program (and is now read-only) pub executable: bool, } ``` ### `init_if_needed`: 与 `init` 不同,`init_if_needed` 不那么严格,使用起来很灵活。`init_if_needed` 类似于 `init`,但它不像 `init` 那...