找到约 13 条结果

文章 什么是ApeCoin (APE)?- Pintu学院

...力的人物。 > > ![ApeCoin board members in charge of deciding voting and proposals regarding the ecosystem.](https://img.learnblockchain.cn/2025/08/18/Apecoin-board-members-1-1024x319.png)**负责决定生态系统相关投票和提案的 Apecoin 董事会成员。** ApeCoin 的董事会由 5 ...

文章 Aptos的数据分析师指南(第一部分)

...y_active_user, MIN(tx_version), MAX(tx_version) FROM final WHERE 1=1 AND block_date BETWEEN DATE_ADD('day', -31, current_date) AND DATE_ADD('day', -1, current_date) -- AND tx_version BETWEEN 1669545227 AND 1670475367 AND tx_success AND signer_type != 'fee_payer' GROUP BY 1 ORDER ...

文章 每周以太坊进展 2020/10/25

...//blog.tenderly.co/level-up-your-smart-contract-productivity-using-hardhat-and-tenderly/),还附带了指南 * Truffle [v5.1.50](https://github.com/trufflesuite/truffle/releases/tag/v5.1.50) 现在支持 web3js v1.2.9 * [Chainlink VRF 现在开始在主网上提供随机性了](https://blog.chai...

文章 比特币签名体积的变化

...比特为 0 的数值被称为 “ _低数值_”。 ![A 73-byte high-r and high-s Bitcoin ECDSA signature](https://img.learnblockchain.cn/2025/07/14/73b-sig.png) \- 一个 73 字节、使用高数值 r 和 高数值 s 的比特币 ECDSA 签名 - r 值和 s 值都是随机数值。当两个数值...

文章 如何高效分析 Aptos Event

...里关键的 event 定义的信息,我们通过 **[Get events by event handle](https://docs.chainbase.online/r/chain-apis/aptos-api/events)** 构造出可以获取该事件的请求: [https://aptos-mainnet.s.chainbase.online/{your-api-key}/v1/accounts/0x867ed1f6bf916171b1de3ee92849b8978b7d1b9...

文章 05.Slither Function对象常用方法分析使用示例

...n_name): """ Resolves a function instance, given a contract name and function. :param contract_name: The name of the contract the function is declared in. :param function_name: The name of the function to resolve. :return: Returns the resolved function, raises an exception o...

文章 Anchor 中的跨程序调用

...accounts.bob_data_account.key()); Ok(()) } pub fn add_and_store(ctx: Context, a: u64, b: u64) -> Result { let result = a + b; ctx.accounts.bob_data_account.result = result; Ok(()) } } #[account] pub struct BobData { pub result: u64, } ...

文章 每周以太坊进展 2021/03/21

...name-service/integrate-ens-reverse-record-into-your-dapp-to-show-ownership-and-participation-of-your-users-882a4703fee2),一次函数调用即可返回多个 ENS 域名 * 教程:[使用 StarkWare 的 Cairo 语言打造一个 AMM](https://www.cairo-lang.org/build-a-scalable-cairo-basesd-automate...

文章 Go 语言之搭建通用 Web 项目开发脚手架

... DebugLevel. core := zapcore.NewCore(encoder, writeSyncer, l) // New constructs a new Logger from the provided zapcore.Core and Options. If // the passed zapcore.Core is nil, it falls back to using a no-op // implementation. // AddCaller configures the Logger to annotate each message w...

文章 Devcon5 有哪些开发者应该了解的内容

...约250笔交易。 更多可[查看](https://decrypt.co/10030/plasma-group-and-uniswap-release-new-ethereum-scaling-solution-at-devcon), 相比Plasma,它利用[零知识证明](https://learnblockchain.cn/categories/zkp/),是更去信任的方式,非常值得大家继续关注。 ## V神...

文章 BoredApeYachtClub 无聊猿-NFT 源码解析第二节

...ort "./IERC721Receiver.sol"; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for a...

文章 【zkMIPS系列】ZKM Prover—Poseidon STARK

...整个过程的trace行 fn generate_trace_rows( &self, inputs_and_timestamps: Vec, // 输入数据和时间戳 min_rows: usize, // 最小行数 ) -> Vec { // 返回生成的trace数据行 let num_rows = inputs_and_timestamps .len() .max(min_rows) .nex...

文章 zkRollup介绍 原理篇

...pricing the precompiles would greatly assist a number of privacy solutions and scaling solutions on Ethereum. 目前,椭圆曲线运算所需的`gas`费用太高,为了帮助隐私方案以及扩容方案在以太坊上的大规模应用,`EIP-1108`对椭圆曲线运算的`gas`费用进行...