web3怎麼使用合約 - 數位貨幣
By Isla
at 2018-08-08T18:56
at 2018-08-08T18:56
Table of Contents
※ 引述《Tim20502 (恩)》之銘言:
: 最近在連接testrpc可以使用合約,但在轉換到metamask使用的時候就發現這個問題…
: https://i.imgur.com/bBu9kVR.jpg
Metamask不支援sync function call
一定要用callback的方式取值
範例 (需Metamask ropsten)
https://output.jsbin.com/yihegurowu
Contract
pragma solidity ^0.4.24;
contract PTT {
function hello () public pure returns (string) {
return 'Hello PTT';
}
}
Contract Address
0x100e3d1600788d4606107120fdf30ec6657e412a
JS
const ABI = [
{
"constant": true,
"inputs": [],
"name": "hello",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "pure",
"type": "function"
}
];
const PttContract = web3.eth.contract(ABI);
const ptt = PttContract.at("0x100e3d1600788d4606107120fdf30ec6657e412a");
ptt.hello((err,result) => document.getElementById("output").innerHTML =
result);
--
: 最近在連接testrpc可以使用合約,但在轉換到metamask使用的時候就發現這個問題…
: https://i.imgur.com/bBu9kVR.jpg
Metamask不支援sync function call
一定要用callback的方式取值
範例 (需Metamask ropsten)
https://output.jsbin.com/yihegurowu
Contract
pragma solidity ^0.4.24;
contract PTT {
function hello () public pure returns (string) {
return 'Hello PTT';
}
}
Contract Address
0x100e3d1600788d4606107120fdf30ec6657e412a
JS
const ABI = [
{
"constant": true,
"inputs": [],
"name": "hello",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "pure",
"type": "function"
}
];
const PttContract = web3.eth.contract(ABI);
const ptt = PttContract.at("0x100e3d1600788d4606107120fdf30ec6657e412a");
ptt.hello((err,result) => document.getElementById("output").innerHTML =
result);
--
Tags:
數位貨幣
All Comments
By Ophelia
at 2018-08-11T16:44
at 2018-08-11T16:44
By Dorothy
at 2018-08-14T17:01
at 2018-08-14T17:01
Related Posts
程式自動交易是可行的嗎
By Robert
at 2018-08-08T17:04
at 2018-08-08T17:04
楊金龍:虛擬貨幣有 7 大問題,無法取代法定貨幣
By Suhail Hany
at 2018-08-08T14:26
at 2018-08-08T14:26
web3怎麼使用合約
By Madame
at 2018-08-08T10:40
at 2018-08-08T10:40
2018年各國ICO法規/監管態度整理
By Victoria
at 2018-08-08T09:21
at 2018-08-08T09:21
SEC延後SolidX ETF核准日期
By Wallis
at 2018-08-08T03:52
at 2018-08-08T03:52