Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

5 total results found

Conflux入门心得汇总

Tutorials

概念 参考资料: https://developer.confluxnetwork.org 开发者文档 https://docs.confluxnetwork.org/go-conflux-sdk sdk文档 https://zhuanlan.zhihu.com/p/400583419 https://zhuanlan.zhihu.com/p/393935101 NFT部署教程 树图结构 由开发者文档所示, 与传统的以太坊的链式结构不同, 该结构是类似于IoTA的有向无环图(DAG)结构的, 具体结构可自行查阅....

Week7-8.15

Conflux101 DevTips

Day1 CIP23与EIP712的异同 在用钱包为结构化的数据签名时,用户看到的只是一串处理后的hex字符串,无法得知具体签名的内容,这对信息、财产等安全造成了极大的威胁。为了解决该问题,以太坊引入了EIP712。与此相对的,conflux引入了CIP23来作为解决方案。CIP23与EIP712的差异总结如下: 当签署一条非结构化的message时,conflux为message增加前缀\x19Conflux Signed Message:\n而不是以太坊中的\x19Ethereum Signed Messag...

Week15 - 10.17

Conflux101 DevTips

事件订阅 java-sdk目前支持了事件订阅,那么如何去订阅对应的事件呢?对应的例子奉上~ public static void pubsub() throws ConnectException { WebSocketService wsService = new WebSocketService("wss://test.confluxrpc.com/ws", false); wsService.connect(); Cfx cfx = Cfx.create(...

Week11-9.13

Conflux101 DevTips

内置合约 在conflux的v2版本的分叉后,增加了ConfluxContext, PoSRegister, CrossSpaceCall, ParamsControl四个内置合约,那么这四个内置合约实现了什么功能呢?可以参见本周的devtips Day1 ConfluxContext 该内置合约提供了三个方法去查询conflux相关的信息,包括当前的epochNumber, posHeight和最终确认的pivot块。 该合约的地址为0x08880000000000000000000000000000000000...

Week19- 11.14

Conflux101 DevTips

Day1 Java-Solidity-类型映射 基本类型 The basic types in solidity such as the uint256, bytes, byte32[] can be shown in the following. Solidity Type web3j.abi type conflux-Java-sdk Type Example uintxxx Uintxxx BigInteger new Uint256(new BigInteger("111")) address Addres...