用于合约实例的地址,保存。web3.js从这个合约生成的所有交易,其to字段的值都是该地址。 当设置该选项时,web3.js将以小写形式保存。 调用: myContract.options.address 属性: address - String|null: 合约实例对象的地址,如果未设置的话则为null 示例代码: myContract.options.address; > '0xde0b29
原文:http://zeppelin-solidity.readthedocs.io/en/latest/bounty.html 这个例子结合了Truffle框架,如果你不知道如何集成,可以先看看,还挺方便的:http://me.tryblockchain.org/obust-smart-contracts-with-openzeppelin.html 要为你的合约创建一个赏金项目。需要继承父类B
StandardToken继承的父类方法,相比StandardToken,这个类只提供基础功能,而StandardToken允许授权给其它人额度来转发代币。 balanceOf(address _owner) constant returns (uint balance) 返回传入地址的余额。 function balanceOf(address _owner) constant returns
基于FirstBlood的代码:原始的firstBlood的代码在这里。 继承了合约SafeMath,实现了ERC20标准(标准参见:https://github.com/ethereum/EIPs/issues/20)。 原文地址:http://zeppelin-solidity.readthedocs.io/en/latest/standardtoken.html 源码地址:https://g
父类合约。支持通过拉取方式实现支付。继承这个合约,并通过asyncSend来替代发送功能。理念参考这个文章:http://me.tryblockchain.org/onward-with-ethereum-smart-contract-security.html 原文地址:http://zeppelin-solidity.readthedocs.io/en/latest/pullpayment.h
父合约,限制当前合约所能持有的资金额度。 原文地址:http://zeppelin-solidity.readthedocs.io/en/latest/limitbalance.html 源码地址:https://github.com/OpenZeppelin/zeppelin-solidity/blob/6e66ba321e545c7840f51ba978a0dd9aaad3ad99/contr
有安全检查的数学操作函数 原文地址:http://zeppelin-solidity.readthedocs.io/en/latest/safemath.html 源码地址:https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol assert(bool assertion)
继承自父合约Ownable。 父类合约。允许在其它的地址,创建一个它自己的实例的合约。 upgrade(address new_address) onlyOwner 在给定的地址,创建一个当前合约的新实例。 function upgrade(address newAddress) onlyOwner { Migrations upgraded = Migrations(newAddress
Ownable合约的增强扩展合约,需要下一个所有者主动声明自己,才能获得所有者权限的扩展。 原文地址: http://zeppelin-solidity.readthedocs.io/en/latest/claimable.html 源码地址: http://zeppelin-solidity.readthedocs.io/en/latest/claimable.html transfer(add
赋予所有者的父类合约 原文在:http://zeppelin-solidity.readthedocs.io/en/latest/ownable.html#modifier-onlyowner 源码在:https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/ownership/Ownable.sol Ownab
混入 混入和函数定义方法一致,但是应用却大相径庭。 例如,下面有定义的border-radius(n)方法,其却作为一个mixin(如,作为状态调用,而非表达式)调用。 当border-radius()选择器中调用时候,属性会被扩展并复制在选择器中。 border-radius(n) -webkit-border-radius n -moz-border-radius n bor
1、maven 坐标 Spring 整合可以在pom.xml中配置 jfinal 坐标,也可以配置 Enjoy Template Engine 的独立发布版本坐标,其 maven 坐标如下: <dependency> <groupId>com.jfinal</groupId> <artifactId>enjoy</artifactId> <version>4.9.08</version
JFinal ActiveRecord 从 2.0 版本开始,采用极简设计支持复合主键,对于 Model 来说需要在映射时指定复合主键名称,以下是具体例子: ActiveRecordPlugin arp = new ActiveRecordPlugin(druidPlugin); // 多数据源的配置仅仅是如下第二个参数指定一次复合主键名称 arp.addMapping("user_role",
7. 复合语句 复合语句包含(多组)其它语句;它们以某种方式影响或者控制其它那些语句的执行。通常,复合语句跨越多行,虽然一条完整的复合语句可以用简洁的形式包含在一行之中。 if、while和for语句实现传统的控制流句法结构。try指出一组语句的异常处理器和/或清理代码。函数和类定义在语法上同样也是复合语句。 复合语句由一个或多个‘子句’组成。一条子句由语句首和‘语句组’组成。一条特定的复合语句的
mergeCells(string $scope, string $data [, resource $formatHandler]): self string $scope $excel->fileName("test.xlsx") ->mergeCells('A1:C1', 'Merge cells') ->output();