-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (45 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"id":"icx_score",
"version":"0.1.0",
"auth":{
"name":"Theloop Dev Team",
"email":"[email protected]",
"org":"Theloop inc"
},
"dependencies":{},
"description":"LoopChain ICX Coin Score",
"repository":{},
"homepage":"http://www.theloop.co.kr",
"function":{
"invoke":[
{
"method":"icx_init",
"params": {
"address":"string",
"value":"string",
"data":"string"
},
"description":"Initialize the account."
},
{
"method":"icx_sendTransaction",
"params": {
"from":"string",
"to":"string",
"value":"string",
"data":"string"
},
"description":"Creates new message call transaction."
}
],
"query":[
{
"method":"icx_getBalance",
"params": ["string"],
"description":"Get the balance of address."
}
]
},
"main": "icx_score",
"test": "test_icx_score"
}