找到约 15 条结果

文章 创建一个基于链上实时数据的动态SVG NFT

...ore individual stream addresses so they can be referenced post-mint constructor() ERC721("BuidlGuidl Tabard", "BGT") {} function mintItem(address streamAddress) public { // Minimal check that wallet is the recipient of a Stream // Someone could deploy a decoy stream t...

文章 有状态哈希还是无状态哈希——这是后量子问题

...法的稳健性的情况下。 ### 参考文献 \[1] Lamport, L. (1979). Constructing digital signatures from a one-way function (Vol. 238). Technical Report CSL-98, SRI International. \[[论文](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.228.2958&rep=rep1&type=pdf)] \[2] Buchmann,...

文章 每周以太坊进展 2022/12/3

...atch?v=tpekiuASieo) * [合约构建](https://blog.smlxl.io/evm-contract-construction-93c98cc4ca96)和部署指南 * EVM 的结构和访问方式的[存储图示](https://twitter.com/blainemalone/status/1597352375593078784) * [evmc](https://github.com/joshstevens19/evmc#readme):从 Ethersc...

文章 椭圆曲线深入研究(第八部分)

...制为 [_r-挠点_](https://learnblockchain.cn/article/15567#:~:text=to%20construct%20pairings.-,Torsion%20Groups,-Torsion%20groups%20are)。我们将在几分钟内看到原因。 我们知道的另一件事是,我们可以通过在处理 [莫德尔-韦伊群](https://learnblockchain.cn/article/...

文章 Polkadot Xcm -- 从基础到实践(实现跨链转账)

...e runtime by composing the FRAME pallets that were previously configured. construct_runtime!( pub enum Runtime where Block = Block, NodeBlock = opaque::Block, UncheckedExtrinsic = UncheckedExtrinsic, { // ...... Tokens: orml_tokens::{Pallet, Storage, Event, Config}, XTokens:...

问题 无法在bscscan上公开合约

...希望大神能够解答下,谢谢 错误信息: **Error!** Invalid constructor arguments provided. Please verify that they are in ABI-encoded format 以下是我的源码: // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /* * @dev Provides information about the current executi...

文章 以太坊第2层扩容方案:状态通道(State Channels)、Plasma 和 Truebit

...分布式交易的实现,他们在 [这里](https://blog.omisego.network/construction-of-a-plasma-chain-0x1-614f6ebd1612) 发布了最近更新进展信息。 #### [](https://github.com/xitu/gold-miner/blob/master/TODO/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-an...

文章 基于哈希证明系统的区块链两方椭圆曲线签名

...1]](javascript:;) [14]LAI Qiqi, YANG Bo, YU Yong, et al.A Survey on the Construction of Hash Proof Systems Based on Lattices Journal of Cryptologic Research, 2017,4(5):474-484. [[本文引用: 1]](javascript:;) 来齐齐, 杨波, 禹勇, 等.基于格的哈希证明系统的构造综述 ...

文章 Lighter ZK 电路公开报告 - ZKSECURITY

..., private.validium_root) assert(private.state_root == new_state_root) # construct public data pub_data = [\ to_bytes(private.tx.account_index, 32/8),\ to_bytes(private.tx.asset_id, 16/8),\ to_bytes(private.tx.asset_amount, 128/8),\ to_bytes(private.tx.L1_address, 160/8),\ ] # verify p...

问题 合约里因为分红 回流的原因 溢出了一些bnb,有什么方式可以取出来吗,有偿的,这是合约地址:0xF75e06EA851E45B612fe660e3A01Eb0314cc8d39

...ipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier...

文章 (部分)解释的Casper CBC规范 | 作者:Barnabé Monnot | Medium

...会导致内部不一致(例如崩溃)? **正确构造(Correct-By-Construction,CBC)**方法论采取了不同的方法。我们指定一组基本原则,并从这些基本原则中通过逻辑归纳推导出正确性:这就是 CBC 的方式。为了实际有用,这些基本原则...

文章 系统合约/引导加载程序描述 (VM v1.5.0)

...时,才会设置每个位。目前,支持两个标志:第 0 位:`isConstructor` 标志。此标志只能由系统合约设置,并表示该帐户是否应执行其构造函数逻辑。请注意,与以太坊不同,构造函数和部署字节码之间没有分隔。有关更多信息,...

文章 (十七)学习笔记:Sui 网络中的赞助交易以及gas station使用场景介绍

...indBytes = await tx.build({ provider, onlyTransactionKind: true }); // construct a sponsored transaction from the kind bytes const sponsoredtx = Transaction.fromKind(kindBytes); // you can now set the sponsored transaction data that is required sponsoredtx.setSender(sender); sponsoredtx.s...

文章 ERC777 - OpenZeppelin 文档

... 我们将复制 [ERC20 指南](https://learnblockchain.cn/article/17812#constructing-an-erc20-token-contract) 中的 `GLD` 示例,这次使用 ERC777。与往常一样,请查看 [`API 参考`](https://docs.openzeppelin.com/contracts/3.x/api/token/ERC777) 以了解有关每个函数的详细信...

文章 六、Move Patterns

...再次初始化 `MOVE` 对象,则会提示:`Invalid one-time witness construction. One-time witness types cannot be created manually, but are passed as an argument 'init’` ### 4.4、示例代码 利用一次性见证者的特点创建代币 ```rust module hello::hiro { use sui::...