Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
link33
plugin
Commits
1d227a8a
Commit
1d227a8a
authored
Jul 11, 2019
by
张振华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test tool
parent
60692fa9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
163 additions
and
0 deletions
+163
-0
tool.sh
plugin/dapp/dposvote/cmd/tool.sh
+163
-0
No files found.
plugin/dapp/dposvote/cmd/tool.sh
0 → 100755
View file @
1d227a8a
rcpAddr
=
"http://192.168.0.155:9801"
function
impKey
()
{
key
=
$1
lab
=
$2
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
account import_key
-k
"
${
key
}
"
-l
"
${
lab
}
"
}
function
trans
()
{
src
=
$1
dst
=
$2
coins
=
$3
tx
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
coins transfer
-a
$coins
-t
$dst
`
echo
$tx
sig
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet sign
-a
$src
-d
"
$tx
"
`
echo
$sig
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet send
-d
"
$sig
"
sleep
3
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
account balance
-a
$dst
}
function
init
()
{
seed
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
seed generate
-l
0
`
echo
$seed
echo
"save seed..."
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
seed save
-s
"
${
seed
}
"
-p
zzh123456
sleep
1
echo
"unlock wallet..."
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet unlock
-p
zzh123456
sleep
1
echo
"import key..."
impKey
"CC38546E9E659D15E6B4893F0AB32A06D103931A8230B0BDE71459D2B27D6944"
"genesis"
impKey
"4257D8692EF7FE13C68B65D6A52F03933DB2FA5CE8FAF210B5B8B80C721CED01"
"genesis2"
impKey
"5A6A14DA6F5A42835E529D75D87CC8904544F59EEE5387A37D87EEAD194D7EB2"
"test1"
impKey
"754F53FCEA0CB1F528918726A49B3551B7F1284D802A1D6AAF4522E8A8DA1B5B"
"test2"
impKey
"85CA38F5FB65E5E13403F0704CA6DC479D8D18FFA5D87CE5A966838C9694EAFE"
"test3"
sleep
1
echo
"transfer coins to test1 account..."
trans
"14KEKbYtKKQm4wMthSK9J4La4nAiidGozt"
"15LsTP6tkYGZcN7tc1Xo2iYifQfowxot3b"
20000
echo
"transfer coins to test2 account..."
trans
"14KEKbYtKKQm4wMthSK9J4La4nAiidGozt"
"14w5JaGDrXTZwF5Wv51UAtuGgAupenLAok"
20000
echo
"transfer coins to test3 account..."
trans
"14KEKbYtKKQm4wMthSK9J4La4nAiidGozt"
"1DQUALqaqPUhJX6FWMCqhvnjrkb6ZfrRmf"
20000
}
function
send_exec
(){
addr
=
$1
coins
=
$2
tx
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
coins send_exec
-a
$coins
-e
dpos
`
sig
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet sign
-a
${
addr
}
-d
${
tx
}
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet send
-d
${
sig
}
}
function
reg
(){
addr
=
$1
ip
=
$2
key
=
$3
echo
"dpos regist -a
${
addr
}
-i
${
ip
}
-k
${
key
}
"
tx
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos regist
-a
${
addr
}
-i
${
ip
}
-k
${
key
}
`
sig
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet sign
-a
${
addr
}
-d
$tx
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet send
-d
"
$sig
"
sleep
3
}
function
reReg
(){
addr
=
$1
ip
=
$2
key
=
$3
echo
"dpos reRegist -a
${
addr
}
-i
${
ip
}
-k
${
key
}
"
tx
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos reRegist
-a
${
addr
}
-i
${
ip
}
-k
${
key
}
`
sig
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet sign
-a
${
addr
}
-d
$tx
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet send
-d
"
$sig
"
sleep
3
}
function
cancelReg
(){
addr
=
$1
key
=
$2
echo
"dpos cancelRegist -a
${
addr
}
-k
${
key
}
"
tx
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos cancelRegist
-a
${
addr
}
-k
${
key
}
`
sig
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet sign
-a
${
addr
}
-d
$tx
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet send
-d
"
$sig
"
sleep
3
}
function
vote
(){
addr
=
$1
key
=
$2
votes
=
$3
echo
"dpos vote from addr:
${
addr
}
to key:
${
key
}
$votes
votes"
tx
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos vote
-k
${
key
}
-v
${
votes
}
-a
${
addr
}
`
sig
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet sign
-a
${
addr
}
-d
$tx
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet send
-d
"
$sig
"
sleep
3
}
function
cancelVote
(){
addr
=
$1
key
=
$2
votes
=
$3
echo
"dpos cancel vote from addr:
${
addr
}
to key:
${
key
}
$votes
votes"
tx
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos cancelVote
-k
${
key
}
-v
${
votes
}
`
sig
=
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet sign
-a
${
addr
}
-d
$tx
`
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet send
-d
"
$sig
"
sleep
3
}
function
qtx
(){
tx
=
$1
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
tx query
-s
${
tx
}
}
function
qn
(){
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos candidatorQuery
-t
topN
-n
$1
}
function
qk
(){
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos candidatorQuery
-t
pubkeys
-k
$1
}
function
qv
(){
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
dpos voteQuery
-a
$1
-k
$2
}
function
unlock
(){
./chain33-cli
--rpc_laddr
=
"
${
rcpAddr
}
"
wallet unlock
-p
zzh123456
}
#main
para
=
"
$1
"
if
[
"
$para
"
==
"init"
]
;
then
init
elif
[
"
$para
"
==
"sendExec"
]
;
then
send_exec 15LsTP6tkYGZcN7tc1Xo2iYifQfowxot3b 15000
send_exec 14w5JaGDrXTZwF5Wv51UAtuGgAupenLAok 15000
send_exec 1DQUALqaqPUhJX6FWMCqhvnjrkb6ZfrRmf 15000
elif
[
"
$para
"
==
"reg"
]
;
then
reg
"
$2
"
"
$3
"
"
$4
"
elif
[
"
$para
"
==
"cancelReg"
]
;
then
cancelReg
"
$2
"
"
$3
"
elif
[
"
$para
"
==
"reReg"
]
;
then
reReg
"
$2
"
"
$3
"
"
$4
"
elif
[
"
$para
"
==
"vote"
]
;
then
vote
"
$2
"
"
$3
"
"
$4
"
elif
[
"
$para
"
==
"cancelVote"
]
;
then
cancelVote
"
$2
"
"
$3
"
"
$4
"
elif
[
"
$para
"
==
"qtx"
]
;
then
qtx
"
$2
"
elif
[
"
$para
"
==
"qtx"
]
;
then
qtx
"
$2
"
elif
[
"
$para
"
==
"sendDpos"
]
;
then
send_exec
$2
$3
elif
[
"
$para
"
==
"qn"
]
;
then
qn
$2
elif
[
"
$para
"
==
"qv"
]
;
then
qv
$2
$3
elif
[
"
$para
"
==
"qk"
]
;
then
qk
$2
elif
[
"
$para
"
==
"unlock"
]
;
then
unlock
fi
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