iwa 0.0.1a3__py3-none-any.whl → 0.0.1a5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- iwa/core/cli.py +2 -1
- iwa/core/contracts/abis/erc20.json +930 -0
- iwa/core/contracts/abis/multisend.json +24 -0
- iwa/core/contracts/abis/multisend_call_only.json +17 -0
- iwa/plugins/olas/contracts/abis/activity_checker.json +110 -0
- iwa/plugins/olas/contracts/abis/mech.json +740 -0
- iwa/plugins/olas/contracts/abis/mech_marketplace.json +1293 -0
- iwa/plugins/olas/contracts/abis/mech_new.json +954 -0
- iwa/plugins/olas/contracts/abis/service_manager.json +1382 -0
- iwa/plugins/olas/contracts/abis/service_registry.json +1909 -0
- iwa/plugins/olas/contracts/abis/staking.json +1400 -0
- iwa/plugins/olas/contracts/abis/staking_token.json +1274 -0
- iwa/web/static/app.js +3096 -0
- iwa/web/static/index.html +543 -0
- iwa/web/static/style.css +1443 -0
- {iwa-0.0.1a3.dist-info → iwa-0.0.1a5.dist-info}/METADATA +1 -1
- {iwa-0.0.1a3.dist-info → iwa-0.0.1a5.dist-info}/RECORD +21 -8
- {iwa-0.0.1a3.dist-info → iwa-0.0.1a5.dist-info}/top_level.txt +0 -1
- conftest.py +0 -22
- {iwa-0.0.1a3.dist-info → iwa-0.0.1a5.dist-info}/WHEEL +0 -0
- {iwa-0.0.1a3.dist-info → iwa-0.0.1a5.dist-info}/entry_points.txt +0 -0
- {iwa-0.0.1a3.dist-info → iwa-0.0.1a5.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"inputs":[
|
|
4
|
+
|
|
5
|
+
],
|
|
6
|
+
"stateMutability":"nonpayable",
|
|
7
|
+
"type":"constructor"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"inputs":[
|
|
11
|
+
{
|
|
12
|
+
"internalType":"bytes",
|
|
13
|
+
"name":"transactions",
|
|
14
|
+
"type":"bytes"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"name":"multiSend",
|
|
18
|
+
"outputs":[
|
|
19
|
+
|
|
20
|
+
],
|
|
21
|
+
"stateMutability":"payable",
|
|
22
|
+
"type":"function"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"inputs":[
|
|
4
|
+
{
|
|
5
|
+
"internalType":"address",
|
|
6
|
+
"name":"_mechMarketplace",
|
|
7
|
+
"type":"address"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"internalType":"uint256",
|
|
11
|
+
"name":"_livenessRatio",
|
|
12
|
+
"type":"uint256"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"stateMutability":"nonpayable",
|
|
16
|
+
"type":"constructor"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"inputs":[
|
|
20
|
+
|
|
21
|
+
],
|
|
22
|
+
"name":"ZeroAddress",
|
|
23
|
+
"type":"error"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"inputs":[
|
|
27
|
+
|
|
28
|
+
],
|
|
29
|
+
"name":"ZeroValue",
|
|
30
|
+
"type":"error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs":[
|
|
34
|
+
{
|
|
35
|
+
"internalType":"address",
|
|
36
|
+
"name":"multisig",
|
|
37
|
+
"type":"address"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"name":"getMultisigNonces",
|
|
41
|
+
"outputs":[
|
|
42
|
+
{
|
|
43
|
+
"internalType":"uint256[]",
|
|
44
|
+
"name":"nonces",
|
|
45
|
+
"type":"uint256[]"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"stateMutability":"view",
|
|
49
|
+
"type":"function"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"inputs":[
|
|
53
|
+
{
|
|
54
|
+
"internalType":"uint256[]",
|
|
55
|
+
"name":"curNonces",
|
|
56
|
+
"type":"uint256[]"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"internalType":"uint256[]",
|
|
60
|
+
"name":"lastNonces",
|
|
61
|
+
"type":"uint256[]"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"internalType":"uint256",
|
|
65
|
+
"name":"ts",
|
|
66
|
+
"type":"uint256"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"name":"isRatioPass",
|
|
70
|
+
"outputs":[
|
|
71
|
+
{
|
|
72
|
+
"internalType":"bool",
|
|
73
|
+
"name":"ratioPass",
|
|
74
|
+
"type":"bool"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"stateMutability":"view",
|
|
78
|
+
"type":"function"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"inputs":[
|
|
82
|
+
|
|
83
|
+
],
|
|
84
|
+
"name":"livenessRatio",
|
|
85
|
+
"outputs":[
|
|
86
|
+
{
|
|
87
|
+
"internalType":"uint256",
|
|
88
|
+
"name":"",
|
|
89
|
+
"type":"uint256"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"stateMutability":"view",
|
|
93
|
+
"type":"function"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"inputs":[
|
|
97
|
+
|
|
98
|
+
],
|
|
99
|
+
"name":"mechMarketplace",
|
|
100
|
+
"outputs":[
|
|
101
|
+
{
|
|
102
|
+
"internalType":"address",
|
|
103
|
+
"name":"",
|
|
104
|
+
"type":"address"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"stateMutability":"view",
|
|
108
|
+
"type":"function"
|
|
109
|
+
}
|
|
110
|
+
]
|