pragma solidity ^0.4.0; contract byte1{ /* 固定大小字节数组(Fixed-size byte arrays) 固定大小字节数组可以通过bytes1,bytes2...bytes32声明,byte=byte1 bytes1 只能存储1个字节,也就是二进制的8位... ...
分类:
编程语言 时间:
2018-11-16 18:24:17
阅读次数:
249
pragma solidity ^0.4.0; contract modifierTest{ bytes32 public blockhash; address public coinbase; uint public difficulty; uint public gaslimit; uint p... ...
分类:
其他好文 时间:
2018-11-15 17:19:16
阅读次数:
230
以太坊是一个去中心化的、运行智能合约的平台。该平台支持图灵完备的应用,按照智能合约的约定逻辑自动执行,理想情况下将不存在故障停机、审查、欺诈,以及第三方干预等问题。 它的目标是构建永不停机的应用。以太坊的官网地址:https://www.ethereum.org/ 以太坊区块链底层也是一个类似比特币 ...
分类:
其他好文 时间:
2018-11-15 11:04:33
阅读次数:
155
/* uint8 uint16 ...uint256 int8 int16 int24 ..int256 uint => uint256 int => int256 int8 有符号 +1 ,-3 uint 无符号 1,2 int8 8(位) 1 111 1111 ~ 0 111 1111 - (1... ...
分类:
其他好文 时间:
2018-11-14 14:31:09
阅读次数:
181
pragma solidity ^0.4.0; contract Bool{ uint num1 = 100; uint num2 = 200; bool _c = true; // && == function yuf() constant returns(bool){ return num1 =... ...
分类:
其他好文 时间:
2018-11-13 18:07:46
阅读次数:
145
pragma solidity ^0.4.0; // priveta public internal contract Test{ uint public _age; function Test(uint age){ _age = age; } function f(){ modify(_age);... ...
分类:
其他好文 时间:
2018-11-13 16:12:03
阅读次数:
165
https://github.com/MetaMask/metamask-inpage-provider Used to initialize the inpage ethereum provider injected by MetaMask. Installation metamask-inpag ...
分类:
Web程序 时间:
2018-11-07 17:13:29
阅读次数:
200
1. abigen 参考文档(Native DApps: Go bindings to Ethereum contracts) abigen --sol token.sol --pkg token --lang go --out token.goTrying to bind solidity wit ...
分类:
其他好文 时间:
2018-11-02 13:07:43
阅读次数:
317
Solidity 是一个面向合约的高级语言,其语法类似于JavaScript 。是运行在以太坊虚拟机中的代码。这里我们用的是remix编译环境。是一个在线的编译环境。地址为http://remix.ethereum.org Solidity的合约类似于面向对象语言中的类。下面我们可以先创建一个合约。 ...
分类:
其他好文 时间:
2018-10-31 17:08:38
阅读次数:
311
1、从网站https://github.com/ethereum/go-ethereum/releases/下载最新版本 #tar -zxvf geth.tar.gz #cd geth #创建init.json的文本文件,内容如下: { "nonce": "0x0000000000000042", ...
分类:
其他好文 时间:
2018-10-15 16:21:26
阅读次数:
156