-
Ethereum 101:https://medium.com/@ConsenSys/a-101-noob-intro-to-programming-smart-contracts-on-ethereum-695d15c1dab4
-
node token contract 教學:https://medium.com/taipei-ethereum-meetup/%E4%BD%BF%E7%94%A8node-js%E9%83%A8%E7%BD%B2%E6%99%BA%E8%83%BD%E5%90%88%E7%B4%84-smart-contract-520534305aaf
-
truffle framework:http://truffleframework.com/docs/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.11; | |
contract Callee { | |
uint256 public counter; | |
function addOne() { | |
counter = counter + 1; | |
} | |
function addNum(uint256 num) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.11; | |
contract Caller { | |
event Log(address _address, uint256 _value, bytes _data); | |
function invoke(address _address, uint256 _value, bytes _data) { | |
if (_address.call.value(_value)(_data)) { | |
Log(_address, _value, _data); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Caller = artifacts.require("Caller.sol"); | |
var Callee = artifacts.require("Callee.sol"); | |
var abi = require("ethereumjs-abi"); | |
contract("Caller and Callee", function(accounts) { | |
it("invoke callee via caller", function() { | |
var caller; | |
var callee; | |
return Caller.deployed().then(function(callerInstance) { | |
caller = callerInstance; |
This is the document explain how to connect to Cardano on MacOS
Use this tutorial: https://github.com/input-output-hk/cardano-sl/blob/master/docs/how-to/build-cardano-sl-and-daedalus-from-source-code.md
Find nix-build
under /nix/store/
This tutorial is how to post website/application on IPFS and link with ENS domains(.eth).
- Try it: http://portalnetwork.eth
If you have any question please contact us for help:
HTTP Provider: http://wanchain.portal.network
This is an endpoints as your Wanchain client provider, use JSON RPC.
- Solidity Version: version:0.4.18+commit.9cf6e910.Emscripten.clang
- QCNS on Quarkchain
- QCNSRegistry(Quarkchain): http://testnet.quarkchain.io/address/0x55931d4077c71df7E1822f1922Ab5f6b33b4199bfF1a972e
- QCNSRegistrar(Quarkchain): http://testnet.quarkchain.io/address/0x3D71499773dE5172Fb4D3e05012a6e3933250f6cfF1a972e
These source code include: