Skip to content

Instantly share code, notes, and snippets.

@echizen0312
echizen0312 / NatureTokenHelp.md
Last active April 18, 2019 10:09
NatureTokenHelp.md

应用链接入说明

帮助你接入应用链的一个说明文档

NodeJs模式

1、安装依赖

NPM

npm install eosjs --save

2、导入依赖

NodeJs导入

@echizen0312
echizen0312 / Coin.sol
Created July 14, 2018 09:20
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.24+commit.e67f0147.js&optimize=true&gist=
pragma solidity ^0.4.20;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
@echizen0312
echizen0312 / Coin.sol
Created June 26, 2018 05:48
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.24+commit.e67f0147.js&optimize=false&gist=
pragma solidity ^0.4.20;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {