码迷,mamicode.com
首页 >  
搜索关键字:solidity    ( 128个结果
ethereum(以太坊)(基础)--容易忽略的坑(二)
pragma solidity ^0.4.0; contract EMath{ string public _a="lin"; function f() public{ modify(_a); } //function modify(string storage name) private{ fun... ...
分类:其他好文   时间:2018-12-06 20:16:53    阅读次数:371
ethereum(以太坊)(基础)--容易忽略的坑(一)
pragma solidity ^0.4.0; contract base{ address public _owner=msg.sender; uint _a; string internal _b ; uint private _c; //uint external _d;ParserError... ...
分类:其他好文   时间:2018-12-06 01:32:56    阅读次数:277
ethereum(以太坊)(十二)--集资(构造函数/映射)
pragma solidity ^0.4.4; contract funder{ //0xca35b7d915458ef540ade6068dfe2f44e8fa733c //0x14723a09acff6d2a60dcdf7aa4aff308fddc160c :10 //0x583031d1113... ...
分类:其他好文   时间:2018-11-19 20:21:00    阅读次数:156
solidity[1]-HelloWorld
郑老师区块链大讲堂
分类:其他好文   时间:2018-11-18 23:45:23    阅读次数:246
solidity[2]-helloworld
郑老师区块链大讲堂,带你最权威最深入的学习区块链。
分类:其他好文   时间:2018-11-18 23:44:34    阅读次数:225
ethereum(以太坊)(十)--字节数组
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
ethereum(以太坊)(九)--global(全局函数)
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
ethereum(以太坊)(五)--Bool
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
ethereum(以太坊)(四)--值传递与引用传递
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
go-ethereum开发问题
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
128条   上一页 1 ... 4 5 6 7 8 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!