Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
f75dcc7f
Commit
f75dcc7f
authored
Jan 29, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added abi example
parent
b5918a1f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
test.html
cmd/mist/assets/examples/test.html
+44
-0
No files found.
cmd/mist/assets/examples/test.html
0 → 100644
View file @
f75dcc7f
<
!
doctype
>
<html>
<head>
<title>
Hello world
</title>
<script
src=
"../ext/bignumber.min.js"
></script>
<script
src=
"../ext/ethereum.js/dist/ethereum.js"
></script>
<script>
var
web3
=
require
(
'web3'
);
web3
.
setProvider
(
new
web3
.
providers
.
HttpSyncProvider
(
'http://localhost:8080'
));
var
eth
=
web3
.
eth
;
var
desc
=
[{
"name"
:
"multiply(uint256)"
,
"inputs"
:
[{
"name"
:
"a"
,
"type"
:
"uint256"
}],
"outputs"
:
[{
"name"
:
"d"
,
"type"
:
"uint256"
}]
}];
var
address
=
web3
.
eth
.
transact
({
data
:
"0x603880600c6000396000f3006001600060e060020a600035048063c6888fa114601857005b6021600435602b565b8060005260206000f35b6000816007029050"
,
gasprice
:
"1000000000000000"
,
gas
:
"10000"
,
});
console
.
log
(
"created contract with addr:"
+
address
);
var
contract
=
web3
.
eth
.
contract
(
address
,
desc
);
function
calculate
()
{
var
param
=
parseInt
(
document
.
getElementById
(
'value'
).
value
);
var
res
=
contract
.
call
().
multiply
(
param
);
document
.
getElementById
(
'result'
).
innerText
=
res
.
toString
(
10
);
}
</script>
</head>
<body>
<div><input
type=
"number"
id=
"value"
onkeyup=
'calculate()'
></input></div>
<div
id=
"result"
></div>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment