找到约 12 条结果

文章 从比特到量子比特——以及蝴蝶效应引发的飓风

...直在阅读 Brian Klaas 博士和 John Murray 的《Fluke: Chance, Chaos and Why Everything We Do Matters》\[[here](https://www.amazon.co.uk/Fluke-Chance-Chaos-Everything-We-Do-Matters/dp/B0CCYVW2FD/ref=sr_1_1?crid=2OQTP8H5EKDX5&dib=eyJ2IjoiMSJ9.CAQfURSI3bEuhAhy85nlrCbVzGZrykidaPnpYkJuHI4.-Bu0UP5m...

文章 分散式能源:资源阅读清单

...ocol.ai/publications/energy-pricing/) (论文) - [U.S. Energy Policy and Market Design](https://research.protocol.ai/publications/u.s.-energy-policy-and-market-design/) (论文) - [Decentralized Energy Grid: A Protocol Labs Independent Research Project](https://research.protocol.ai/talks...

文章 聚合签名、门限签名、Multisigs 和多签名

...ernet-computer-for-geeks-a-new-dfinity-white-paper-ecb075b2d525) 和 [Algorand](https://www.algorand.com/technology/white-papers) 等区块链实际使用。不过,这些协议签名的都是 _同一条消息_,所以应该把它们当作是多签名的案例,而不是聚合签名方案的合...

文章 通过代币化股份实现的私募股权 fractional ownership

...化及其运作](https://www.antiersolutions.com/guide-to-private-equity-and-its-tokenization-process/)]。 2. **监管合规和法律结构**:私募股权的代币化必须遵守代币化活动发生地管辖区的特定法律和监管要求。遵守证券法规对于确保投资者保护和避...

文章 SUI Move开发必知必会——SUI Move 2024迁移指南及新语法实践

...套`use`别名(Nested `use`)** - **常用标准库默认引入(standard library defaults)** - **等式中的自动引用(Automatic referencing in equality)** - **循环标记(Loop labels)** - **带值跳出循环(`break` with value)** - **不兼容更新(`Break...

文章 山寨币与加密货币市场的扩张

目录 [切换](https://blockapps.net/blog/altcoins-and-the-expansion-of-cryptocurrency-markets/#) ## 区块链技术及其演变 区块链技术彻底改变了金融格局,为记录交易提供了一种去中心化和透明的方式。区块链的核心是一个数字账本,它分布在一...

问题 solidity合约认证字节码不一致

.... * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC20PresetMinterPauserUpgradeable is Initializable, ContextUpgradeable, Acce...

文章 比特币 - BIP-0341.mediawiki,位于bip-anyprevout · ajtowns/bips

...ithub.com/ajtowns/bips/blob/bip-anyprevout/bip-0341.mediawiki#user-content-Constructing_and_spending_Taproot_outputs)- [安全性](https://github.com/ajtowns/bips/blob/bip-anyprevout/bip-0341.mediawiki#user-content-Security)- [测试向量](https://github.com/ajtowns/bips/blob/bip-anyprevout/bip-034...

文章 move共学营task2

...t: address,//接收者地址 ctx: &mut TxContext ) { coin::mint_and_transfer(treasury_cap, amount, recipient, ctx); } ``` - `public entry fun mint(...)`:这是一个公开的入口函数,允许外部调用以铸造新的代币并将其转移给指定地址。 - `coin::mint_and_t...

文章 一种面向双中台双链架构的内生性数据安全交互协议研究

...ch on an endogenous data interaction protocol for the dual-middle platform and dual-chain architecture **Abstract** : Since dual-middle platform architecture of “data and business” was first proposed, the efficiency of secure data interaction between middle platforms has become particularly...

文章 Web3系列教程之入门篇---13. 像 Uniswap 一样建立自己的去中心化交易所

...s`变量的输入参数 - 构造函数还为我们的令牌设置`name`and`symbol``Crypto Dev LP` ```go // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Exchange is ERC20 { address public cryptoDevTokenAdd...

文章 【Solidity Yul Assembly】1.5 | Storage of Arrays and Mappings

## 数组 ### 固定长度的数组 对于固定长度的数组,处理方式相对简单。 ``` solidity contract StorageComplex { uint256[3] fixedArray; constructor() { fixedArray = [99, 999, 9999]; } function fixedArrayView(uint256 index) external vie...