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
98f970ba
Commit
98f970ba
authored
Mar 26, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated example for new ethereum.js
parent
88b9bc40
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
coin.html
cmd/mist/assets/examples/coin.html
+4
-4
No files found.
cmd/mist/assets/examples/coin.html
View file @
98f970ba
...
...
@@ -70,16 +70,16 @@
var
address
=
localStorage
.
getItem
(
"address"
);
// deploy if not exist
if
(
address
==
null
)
{
if
(
address
=
==
null
)
{
var
code
=
"0x60056013565b61014f8061003a6000396000f35b620f42406000600033600160a060020a0316815260200190815260200160002081905550560060e060020a600035048063d0679d3414610020578063e3d670d71461003457005b61002e600435602435610049565b60006000f35b61003f600435610129565b8060005260206000f35b806000600033600160a060020a03168152602001908152602001600020541061007157610076565b610125565b806000600033600160a060020a03168152602001908152602001600020908154039081905550806000600084600160a060020a031681526020019081526020016000209081540190819055508033600160a060020a03167fb52dda022b6c1a1f40905a85f257f689aa5d69d850e49cf939d688fbe5af594660006000a38082600160a060020a03167fb52dda022b6c1a1f40905a85f257f689aa5d69d850e49cf939d688fbe5af594660006000a35b5050565b60006000600083600160a060020a0316815260200190815260200160002054905091905056"
;
address
=
web3
.
eth
.
transact
({
from
:
eth
.
coinbase
,
data
:
code
});
address
=
web3
.
eth
.
transact
({
from
:
eth
.
coinbase
,
data
:
code
,
gas
:
"1000000"
});
localStorage
.
setItem
(
"address"
,
address
);
}
document
.
querySelector
(
"#contract_addr"
).
innerHTML
=
address
;
var
Contract
=
web3
.
eth
.
contract
(
desc
);
contract
=
new
Contract
(
address
);
contract
.
Changed
({
from
:
eth
.
coinbase
}).
changed
(
function
()
{
contract
.
Changed
({
from
:
eth
.
accounts
[
0
]
}).
changed
(
function
()
{
refresh
();
});
...
...
@@ -109,7 +109,7 @@
var
amount
=
parseInt
(
value
.
value
);
console
.
log
(
"transact: "
,
to
.
value
,
" => "
,
amount
)
contract
.
send
(
to
.
value
,
amount
);
contract
.
send
Transaction
({
from
:
eth
.
accounts
[
0
]}).
send
(
to
.
value
,
amount
);
to
.
value
=
""
;
value
.
value
=
""
;
...
...
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