找到约 13 条结果

文章 加密货币和区块链风险投资——2025年第一季度

...,共 446 笔交易(环比增长 7.5%)。 ![01 - vc capital invested and deal count](https://img.learnblockchain.cn/2025/05/01/47766848_image.jpg) 虽然 2025 年第一季度是自 2022 年第三季度以来投资额最大的季度,但其中一笔巨额交易占了超过 40% 的资金:MGX...

文章 NFT与游戏的交汇

...它们是如何工作的?](https://www.coindesk.com/learn/what-are-nfts-and-how-do-they-work/)]。 NFT 在游戏中的概念可以追溯到早期基于区块链的游戏,像 CryptoKitties 这样的项目为这种新模式铺平了道路。CryptoKitties 于 2017 年推出,允许玩家购买、...

文章 近50年后,RSA仍在新闻中:费马对RSA的攻击

...m/google/paranoid_crypto/ import gmpy2 from gmpy2 import mpz, xmpz import random import sys class RSAKey: def __init__(self): # constructor method e=bytearray(0) n=bytearray(0) def Int2Bytes(int_val: int): return int.to_bytes(int(int_val), (int_val.bit_length() + 7) // 8, 'big') ...

文章 🎥 如何创建和设置AI代理

...ode.com/?utm_source=internal&utm_campaign=guides&utm_content=how-to-create-and-set-up-aI-agents)) - 一个 [OpenAPI API 密钥](https://platform.openai.com/) ### 你将做什么 - 了解 AI 代理 - 设置 [QuickNode Stream](https://www.quicknode.com/streams?utm_source=internal&utm_campaign=guid...

文章 以太坊二叉树笔记

...une `k` to reach the desired tradeoff between amortizing calculated hashes and security. Instead of requiring 16x fewer hashes in the spare part of the tree, you could require 18x (or more) fewer hashes if you accept further bits of security loss. TL;DR 是降低由于空子树导致的额外哈希...

文章 12.slither检测器之四——变量重写检测

...de递归调用`_detect_write_after_write`,同时对遍历到的ir,调用`_handle_ir`处理。 在该函数中使用字典变量written 来记录需要被检测的变量。 1. 如果当前节点处理过,就直接返回;如果当前节点没有处理过,就加入处理过的节点集合。 ...

文章 freqtrade智能挂单策略,让你的资金利用率提升 50%+

... - False 表示继续等待成交 """ if trade.open_rate > 100 and trade.open_date_utc < current_time - timedelta(minutes=5): return True elif trade.open_rate > 10 and trade.open_date_utc < current_time - timedelta(minutes=3): return True elif trade.open_rate ...

文章 Move on Sui入门 004-在sui链上发布Coin合约和Faucet Coin合约

...:public_transfer()方法转移代币 + 第二种方法:使用coin::mint_and_transfer()方法铸造并转移代币 + 以上两种方法都要传入铸币权限、铸币数量、接收者地址和 TxContext交易上下文对象 ``` // 铸造代币函数,需要参数:铸币权限、铸币...

文章 AO-Autonomous-Pet v1.0 | AO 极速入门(二)

...------------------------------------------+---------+           | Handlers            +------------- Create/Read/Write for Pet             ------- ☝️ on-chain ☝️ ------- 👇 off-chain 👇 -------                 +------------+  +------------+  +-----...

文章 电信行业通过基于属性的加密(ABE)迈向后量子时代

...话密钥,其中 R() 是策略 X 和 Y 的布尔规则。这可以包括 AND、OR 和 NOT 运算。 ### CP-ABE 通过 CP-ABE,我们可以根据策略和一组属性生成加密密钥。在这种情况下,我们只能使用正确的属性生成正确的解密密钥。我们将实施的政策...

文章 深入探索 Cairo 编程语言:Starknet 的基础与实践

...at you can perform time consuming operations on a machine you don't trust, and check the result very quickly on a cheaper machine. While Cairo 0 used to be directly compiled to CASM, the Cairo CPU assembly, Cairo 1 is a higher level language. It first compiles to Sierra, an intermediate representati...

文章 Zama 产品发布 - 2024 年 7 月

...s://www.zama.ai/post/tfhe-rs-v0-7-ciphertext-compression-multi-gpu-support-and-more) ### Concrete v2.7 Concrete v2.7 引入了第一个可以加速 GPU 计算的 wheel!在这个新版本中,我们还扩展了对函数组合的支持,并在 Python 前端为用户添加了几个新功能...

文章 现代 DeFi: Uniswap V4

...er 12 bytes are non-zero, they will be zero-ed out // Therefore, fromId() and toId() are not inverses of each other function fromId(uint256 id) internal pure returns (Currency) { return Currency.wrap(address(uint160(id))); } ``` 这两段函数较为简单,但注释指出 `fromId()` ...