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
590c3936
Commit
590c3936
authored
Oct 20, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated according to the new Generic JSON RPC API
parent
c95dfec5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
227 additions
and
265 deletions
+227
-265
index.html
index.html
+1
-1
main.js
main.js
+226
-264
No files found.
index.html
View file @
590c3936
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<html>
<html>
<head>
<head>
<script
type=
"text/javascript"
src=
"
ethereum
.js"
></script>
<script
type=
"text/javascript"
src=
"
main
.js"
></script>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
function
registerName
()
{
function
registerName
()
{
var
name
=
document
.
querySelector
(
"#name"
).
value
;
var
name
=
document
.
querySelector
(
"#name"
).
value
;
...
...
main.js
View file @
590c3936
...
@@ -3,11 +3,10 @@
...
@@ -3,11 +3,10 @@
return
o
instanceof
Promise
return
o
instanceof
Promise
}
}
var
eth
=
{
var
web3
=
{
_callbacks
:
{},
_callbacks
:
{},
_events
:
{},
_events
:
{},
prototype
:
Object
(),
providers
:
{},
toHex
:
function
(
str
)
{
toHex
:
function
(
str
)
{
var
hex
=
""
;
var
hex
=
""
;
for
(
var
i
=
0
;
i
<
str
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
str
.
length
;
i
++
)
{
...
@@ -47,16 +46,22 @@
...
@@ -47,16 +46,22 @@
return
hex
return
hex
},
},
eth
:
{
prototype
:
Object
(),
block
:
function
(
numberOrHash
)
{
block
:
function
(
numberOrHash
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
/*
var func;
var func;
if(typeof numberOrHash == "string") {
if(typeof numberOrHash == "string") {
func = "getBlockByHash";
func = "getBlockByHash";
} else {
} else {
func = "getBlockByNumber";
func = "getBlockByNumber";
}
}
*/
eth
.
provider
.
send
({
call
:
func
,
args
:
[
numberOrHash
]},
function
(
block
)
{
web3
.
provider
.
send
({
call
:
/*func*/
"block"
,
args
:
[
numberOrHash
]},
function
(
block
)
{
if
(
block
)
if
(
block
)
resolve
(
block
);
resolve
(
block
);
else
else
...
@@ -66,6 +71,18 @@
...
@@ -66,6 +71,18 @@
});
});
},
},
transaction
:
function
(
numberOrHash
,
nth
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
reject
(
"`transaction` not yet implemented"
)
});
},
uncle
:
function
(
numberOrHash
,
nth
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
reject
(
"`uncle` not yet implemented"
)
});
},
transact
:
function
(
params
)
{
transact
:
function
(
params
)
{
if
(
params
===
undefined
)
{
if
(
params
===
undefined
)
{
params
=
{};
params
=
{};
...
@@ -111,7 +128,7 @@
...
@@ -111,7 +128,7 @@
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
params
.
data
=
params
.
data
.
join
(
""
);
params
.
data
=
params
.
data
.
join
(
""
);
eth
.
provider
.
send
({
call
:
"transact"
,
args
:
[
"0x"
+
params
]},
function
(
data
)
{
web3
.
provider
.
send
({
call
:
"transact"
,
args
:
[
"0x"
+
params
]},
function
(
data
)
{
if
(
data
[
1
])
if
(
data
[
1
])
reject
(
data
[
0
]);
reject
(
data
[
0
]);
else
else
...
@@ -123,7 +140,7 @@
...
@@ -123,7 +140,7 @@
compile
:
function
(
code
)
{
compile
:
function
(
code
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"compile"
,
args
:
[
code
]},
function
(
data
)
{
web3
.
provider
.
send
({
call
:
"compile"
,
args
:
[
code
]},
function
(
data
)
{
if
(
data
[
1
])
if
(
data
[
1
])
reject
(
data
[
0
]);
reject
(
data
[
0
]);
else
else
...
@@ -141,7 +158,7 @@
...
@@ -141,7 +158,7 @@
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getB
alanceAt"
,
args
:
[
address
]},
function
(
balance
)
{
web3
.
provider
.
send
({
call
:
"b
alanceAt"
,
args
:
[
address
]},
function
(
balance
)
{
resolve
(
balance
);
resolve
(
balance
);
});
});
});
});
...
@@ -157,7 +174,7 @@
...
@@ -157,7 +174,7 @@
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getC
ountAt"
,
args
:
[
address
]},
function
(
count
)
{
web3
.
provider
.
send
({
call
:
"c
ountAt"
,
args
:
[
address
]},
function
(
count
)
{
resolve
(
count
);
resolve
(
count
);
});
});
});
});
...
@@ -173,7 +190,7 @@
...
@@ -173,7 +190,7 @@
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getC
odeAt"
,
args
:
[
address
]},
function
(
code
)
{
web3
.
provider
.
send
({
call
:
"c
odeAt"
,
args
:
[
address
]},
function
(
code
)
{
resolve
(
code
);
resolve
(
code
);
});
});
});
});
...
@@ -193,7 +210,7 @@
...
@@ -193,7 +210,7 @@
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getStorag
eAt"
,
args
:
[
address
,
storageAddress
]},
function
(
entry
)
{
web3
.
provider
.
send
({
call
:
"stat
eAt"
,
args
:
[
address
,
storageAddress
]},
function
(
entry
)
{
resolve
(
entry
);
resolve
(
entry
);
});
});
});
});
...
@@ -248,7 +265,7 @@
...
@@ -248,7 +265,7 @@
// Load promises then call the last "transact".
// Load promises then call the last "transact".
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"call"
,
args
:
params
},
function
(
data
)
{
web3
.
provider
.
send
({
call
:
"call"
,
args
:
params
},
function
(
data
)
{
if
(
data
[
1
])
if
(
data
[
1
])
reject
(
data
[
0
]);
reject
(
data
[
0
]);
else
else
...
@@ -261,35 +278,21 @@
...
@@ -261,35 +278,21 @@
watch
:
function
(
params
)
{
watch
:
function
(
params
)
{
return
new
Filter
(
params
);
return
new
Filter
(
params
);
},
},
secretToAddress
:
function
(
key
)
{
var
promises
=
[];
if
(
isPromise
(
key
))
{
promises
.
push
(
key
.
then
(
function
(
_key
)
{
key
=
_key
;
}));
}
return
Promise
.
all
(
promises
).
then
(
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getSecretToAddress"
,
args
:
[
key
]},
function
(
address
)
{
resolve
(
address
);
});
});
});
},
},
on
:
function
(
event
,
cb
)
{
on
:
function
(
event
,
cb
)
{
if
(
eth
.
_events
[
event
]
===
undefined
)
{
if
(
web3
.
_events
[
event
]
===
undefined
)
{
eth
.
_events
[
event
]
=
[];
web3
.
_events
[
event
]
=
[];
}
}
eth
.
_events
[
event
].
push
(
cb
);
web3
.
_events
[
event
].
push
(
cb
);
return
this
return
this
},
},
off
:
function
(
event
,
cb
)
{
off
:
function
(
event
,
cb
)
{
if
(
eth
.
_events
[
event
]
!==
undefined
)
{
if
(
web3
.
_events
[
event
]
!==
undefined
)
{
var
callbacks
=
eth
.
_events
[
event
];
var
callbacks
=
web3
.
_events
[
event
];
for
(
var
i
=
0
;
i
<
callbacks
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
callbacks
.
length
;
i
++
)
{
if
(
callbacks
[
i
]
===
cb
)
{
if
(
callbacks
[
i
]
===
cb
)
{
delete
callbacks
[
i
];
delete
callbacks
[
i
];
...
@@ -301,7 +304,7 @@
...
@@ -301,7 +304,7 @@
},
},
trigger
:
function
(
event
,
data
)
{
trigger
:
function
(
event
,
data
)
{
var
callbacks
=
eth
.
_events
[
event
];
var
callbacks
=
web3
.
_events
[
event
];
if
(
callbacks
!==
undefined
)
{
if
(
callbacks
!==
undefined
)
{
for
(
var
i
=
0
;
i
<
callbacks
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
callbacks
.
length
;
i
++
)
{
// Figure out whether the returned data was an array
// Figure out whether the returned data was an array
...
@@ -316,6 +319,7 @@
...
@@ -316,6 +319,7 @@
},
},
};
};
var
eth
=
web3
.
eth
;
// Eth object properties
// Eth object properties
Object
.
defineProperty
(
eth
,
"key"
,
{
Object
.
defineProperty
(
eth
,
"key"
,
{
get
:
function
()
{
get
:
function
()
{
...
@@ -336,7 +340,7 @@
...
@@ -336,7 +340,7 @@
Object
.
defineProperty
(
eth
,
"coinbase"
,
{
Object
.
defineProperty
(
eth
,
"coinbase"
,
{
get
:
function
()
{
get
:
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getCoinBase"
},
function
(
coinbase
)
{
web3
.
provider
.
send
({
call
:
"getCoinBase"
},
function
(
coinbase
)
{
resolve
(
coinbase
);
resolve
(
coinbase
);
});
});
});
});
...
@@ -346,7 +350,7 @@
...
@@ -346,7 +350,7 @@
Object
.
defineProperty
(
eth
,
"listening"
,
{
Object
.
defineProperty
(
eth
,
"listening"
,
{
get
:
function
()
{
get
:
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getIsListening"
},
function
(
listening
)
{
web3
.
provider
.
send
({
call
:
"getIsListening"
},
function
(
listening
)
{
resolve
(
listening
);
resolve
(
listening
);
});
});
});
});
...
@@ -357,7 +361,7 @@
...
@@ -357,7 +361,7 @@
Object
.
defineProperty
(
eth
,
"mining"
,
{
Object
.
defineProperty
(
eth
,
"mining"
,
{
get
:
function
()
{
get
:
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getIsMining"
},
function
(
mining
)
{
web3
.
provider
.
send
({
call
:
"getIsMining"
},
function
(
mining
)
{
resolve
(
mining
);
resolve
(
mining
);
});
});
});
});
...
@@ -367,7 +371,7 @@
...
@@ -367,7 +371,7 @@
Object
.
defineProperty
(
eth
,
"peerCount"
,
{
Object
.
defineProperty
(
eth
,
"peerCount"
,
{
get
:
function
()
{
get
:
function
()
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getPeerCount"
},
function
(
peerCount
)
{
web3
.
provider
.
send
({
call
:
"getPeerCount"
},
function
(
peerCount
)
{
resolve
(
peerCount
);
resolve
(
peerCount
);
});
});
});
});
...
@@ -378,19 +382,19 @@
...
@@ -378,19 +382,19 @@
this
.
queued
=
[];
this
.
queued
=
[];
this
.
ready
=
false
;
this
.
ready
=
false
;
this
.
provider
=
undefined
;
this
.
provider
=
undefined
;
this
.
see
d
=
1
;
this
.
i
d
=
1
;
};
};
ProviderManager
.
prototype
.
send
=
function
(
data
,
cb
)
{
ProviderManager
.
prototype
.
send
=
function
(
data
,
cb
)
{
data
.
seed
=
this
.
see
d
;
data
.
_id
=
this
.
i
d
;
if
(
cb
)
{
if
(
cb
)
{
eth
.
_callbacks
[
data
.
see
d
]
=
cb
;
web3
.
_callbacks
[
data
.
_i
d
]
=
cb
;
}
}
if
(
data
.
args
===
undefined
)
{
if
(
data
.
args
===
undefined
)
{
data
.
args
=
[];
data
.
args
=
[];
}
}
this
.
see
d
++
;
this
.
i
d
++
;
if
(
this
.
provider
!==
undefined
)
{
if
(
this
.
provider
!==
undefined
)
{
this
.
provider
.
send
(
data
);
this
.
provider
.
send
(
data
);
...
@@ -418,60 +422,16 @@
...
@@ -418,60 +422,16 @@
ProviderManager
.
prototype
.
installed
=
function
()
{
ProviderManager
.
prototype
.
installed
=
function
()
{
return
this
.
provider
!==
undefined
;
return
this
.
provider
!==
undefined
;
};
};
web3
.
provider
=
new
ProviderManager
();
eth
.
provider
=
new
ProviderManager
();
web3
.
setProvider
=
function
(
provider
)
{
provider
.
onmessage
=
messageHandler
;
eth
.
setProvider
=
function
(
provider
)
{
web3
.
provider
.
set
(
provider
);
eth
.
provider
.
set
(
provider
);
eth
.
provider
.
sendQueued
();
web3
.
provider
.
sendQueued
();
};
};
var
EthWebSocket
=
function
(
host
)
{
// onmessage handlers
this
.
handlers
=
[];
// queue will be filled with messages if send is invoked before the ws is ready
this
.
queued
=
[];
this
.
ready
=
false
;
this
.
ws
=
new
WebSocket
(
host
);
var
self
=
this
;
this
.
ws
.
onmessage
=
function
(
event
)
{
for
(
var
i
=
0
;
i
<
self
.
handlers
.
length
;
i
++
)
{
self
.
handlers
[
i
].
call
(
self
,
event
.
data
,
event
)
}
};
this
.
ws
.
onopen
=
function
()
{
self
.
ready
=
true
;
for
(
var
i
=
0
;
i
<
self
.
queued
.
length
;
i
++
)
{
// Resend
self
.
send
(
self
.
queued
[
i
]);
}
};
};
EthWebSocket
.
prototype
.
send
=
function
(
jsonData
)
{
if
(
this
.
ready
)
{
var
data
=
JSON
.
stringify
(
jsonData
);
this
.
ws
.
send
(
data
);
}
else
{
this
.
queued
.
push
(
jsonData
);
}
};
EthWebSocket
.
prototype
.
onMessage
=
function
(
handler
)
{
this
.
handlers
.
push
(
handler
);
};
EthWebSocket
.
prototype
.
unload
=
function
()
{
this
.
ws
.
close
();
};
eth
.
WebSocket
=
EthWebSocket
;
var
filters
=
[];
var
filters
=
[];
var
Filter
=
function
(
options
)
{
var
Filter
=
function
(
options
)
{
filters
.
push
(
this
);
filters
.
push
(
this
);
...
@@ -488,7 +448,7 @@
...
@@ -488,7 +448,7 @@
var
self
=
this
;
// Cheaper than binding
var
self
=
this
;
// Cheaper than binding
this
.
promise
=
new
Promise
(
function
(
resolve
,
reject
)
{
this
.
promise
=
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
call
,
args
:
[
options
]},
function
(
id
)
{
web3
.
provider
.
send
({
call
:
call
,
args
:
[
options
]},
function
(
id
)
{
self
.
id
=
id
;
self
.
id
=
id
;
resolve
(
id
);
resolve
(
id
);
...
@@ -513,7 +473,7 @@
...
@@ -513,7 +473,7 @@
Filter
.
prototype
.
uninstall
=
function
()
{
Filter
.
prototype
.
uninstall
=
function
()
{
this
.
promise
.
then
(
function
(
id
)
{
this
.
promise
.
then
(
function
(
id
)
{
eth
.
provider
.
send
({
call
:
"uninstallFilter"
,
args
:[
id
]});
web3
.
provider
.
send
({
call
:
"uninstallFilter"
,
args
:[
id
]});
});
});
};
};
...
@@ -522,7 +482,7 @@
...
@@ -522,7 +482,7 @@
return
Promise
.
all
([
this
.
promise
]).
then
(
function
()
{
return
Promise
.
all
([
this
.
promise
]).
then
(
function
()
{
var
id
=
self
.
id
var
id
=
self
.
id
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
eth
.
provider
.
send
({
call
:
"getMessages"
,
args
:
[
id
]},
function
(
messages
)
{
web3
.
provider
.
send
({
call
:
"getMessages"
,
args
:
[
id
]},
function
(
messages
)
{
resolve
(
messages
);
resolve
(
messages
);
});
});
});
});
...
@@ -531,36 +491,38 @@
...
@@ -531,36 +491,38 @@
// Register to the messages callback. "messages" will be emitted when new messages
// Register to the messages callback. "messages" will be emitted when new messages
// from the client have been created.
// from the client have been created.
eth
.
on
(
"messages"
,
function
(
messages
,
id
)
{
web3
.
on
(
"messages"
,
function
(
messages
,
id
)
{
for
(
var
i
=
0
;
i
<
filters
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
filters
.
length
;
i
++
)
{
filters
[
i
].
trigger
(
messages
,
id
);
filters
[
i
].
trigger
(
messages
,
id
);
}
}
});
});
function
messageHandler
(
ev
)
{
// Install default provider
if
(
!
eth
.
provider
.
installed
())
{
var
sock
=
new
eth
.
WebSocket
(
"ws://localhost:40404/eth"
);
sock
.
onMessage
(
function
(
ev
)
{
var
data
=
JSON
.
parse
(
ev
)
var
data
=
JSON
.
parse
(
ev
)
if
(
data
.
_event
!==
undefined
)
{
if
(
data
.
_event
!==
undefined
)
{
eth
.
trigger
(
data
.
_event
,
data
.
data
);
web3
.
trigger
(
data
.
_event
,
data
.
data
);
}
else
{
}
else
{
if
(
data
.
see
d
)
{
if
(
data
.
_i
d
)
{
var
cb
=
eth
.
_callbacks
[
data
.
see
d
];
var
cb
=
web3
.
_callbacks
[
data
.
_i
d
];
if
(
cb
)
{
if
(
cb
)
{
cb
.
call
(
this
,
data
.
data
)
cb
.
call
(
this
,
data
.
data
)
// Remove the "trigger" callback
// Remove the "trigger" callback
delete
eth
.
_callbacks
[
ev
.
see
d
];
delete
web3
.
_callbacks
[
ev
.
_i
d
];
}
}
}
}
}
}
});
}
/*
// Install default provider
if(!web3.provider.installed()) {
var sock = new web3.WebSocket("ws://localhost:40404/eth");
eth
.
setProvider
(
sock
);
web3
.setProvider(sock);
}
}
*/
window
.
eth
=
eth
;
window
.
web3
=
web3
;
})(
this
);
})(
this
);
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