@verified-network/verified-sdk 2.5.6 → 2.5.8
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.
- package/dist/abi/distribution/Distribution.json +38 -36621
- package/dist/abi/liquidity/Liquidity.json +100 -72279
- package/dist/abi/payments/Bond.json +546 -383
- package/dist/abi/payments/Cash.json +404 -278
- package/dist/abi/payments/ERC20.json +147 -77
- package/dist/abi/payments/Factory.json +253 -373
- package/dist/abi/payments/Rates.json +38 -17
- package/dist/abi/payments/Token.json +246 -147
- package/dist/contract/liquidity/index.d.ts +5 -34
- package/dist/contract/liquidity/index.js +9 -61
- package/dist/contractAddress/index.js +25 -25
- package/package.json +1 -1
|
@@ -2,40 +2,62 @@
|
|
|
2
2
|
"contractName": "Rates",
|
|
3
3
|
"abi": [
|
|
4
4
|
{
|
|
5
|
-
"
|
|
5
|
+
"inputs": [],
|
|
6
|
+
"name": "InvalidInitialization",
|
|
7
|
+
"type": "error"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"inputs": [],
|
|
11
|
+
"name": "NotInitializing",
|
|
12
|
+
"type": "error"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"anonymous": false,
|
|
16
|
+
"inputs": [
|
|
17
|
+
{
|
|
18
|
+
"indexed": false,
|
|
19
|
+
"internalType": "uint64",
|
|
20
|
+
"name": "version",
|
|
21
|
+
"type": "uint64"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"name": "Initialized",
|
|
25
|
+
"type": "event"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
6
28
|
"inputs": [],
|
|
7
29
|
"name": "initialize",
|
|
8
30
|
"outputs": [],
|
|
9
|
-
"payable": false,
|
|
10
31
|
"stateMutability": "nonpayable",
|
|
11
32
|
"type": "function"
|
|
12
33
|
},
|
|
13
34
|
{
|
|
14
|
-
"constant": false,
|
|
15
35
|
"inputs": [
|
|
16
36
|
{
|
|
37
|
+
"internalType": "address",
|
|
17
38
|
"name": "feeTo",
|
|
18
39
|
"type": "address"
|
|
19
40
|
},
|
|
20
41
|
{
|
|
42
|
+
"internalType": "uint256",
|
|
21
43
|
"name": "fee",
|
|
22
44
|
"type": "uint256"
|
|
23
45
|
},
|
|
24
46
|
{
|
|
47
|
+
"internalType": "bytes32",
|
|
25
48
|
"name": "feeType",
|
|
26
49
|
"type": "bytes32"
|
|
27
50
|
}
|
|
28
51
|
],
|
|
29
52
|
"name": "setFeeTo",
|
|
30
53
|
"outputs": [],
|
|
31
|
-
"payable": false,
|
|
32
54
|
"stateMutability": "nonpayable",
|
|
33
55
|
"type": "function"
|
|
34
56
|
},
|
|
35
57
|
{
|
|
36
|
-
"constant": true,
|
|
37
58
|
"inputs": [
|
|
38
59
|
{
|
|
60
|
+
"internalType": "bytes32",
|
|
39
61
|
"name": "feeType",
|
|
40
62
|
"type": "bytes32"
|
|
41
63
|
}
|
|
@@ -43,69 +65,68 @@
|
|
|
43
65
|
"name": "getFee",
|
|
44
66
|
"outputs": [
|
|
45
67
|
{
|
|
68
|
+
"internalType": "uint256",
|
|
46
69
|
"name": "fee",
|
|
47
70
|
"type": "uint256"
|
|
48
71
|
}
|
|
49
72
|
],
|
|
50
|
-
"payable": false,
|
|
51
73
|
"stateMutability": "view",
|
|
52
|
-
"type": "function"
|
|
74
|
+
"type": "function",
|
|
75
|
+
"constant": true
|
|
53
76
|
},
|
|
54
77
|
{
|
|
55
|
-
"constant": false,
|
|
56
78
|
"inputs": [
|
|
57
79
|
{
|
|
80
|
+
"internalType": "address",
|
|
58
81
|
"name": "_feeToSetter",
|
|
59
82
|
"type": "address"
|
|
60
83
|
}
|
|
61
84
|
],
|
|
62
85
|
"name": "setFeeToSetter",
|
|
63
86
|
"outputs": [],
|
|
64
|
-
"payable": false,
|
|
65
87
|
"stateMutability": "nonpayable",
|
|
66
88
|
"type": "function"
|
|
67
89
|
},
|
|
68
90
|
{
|
|
69
|
-
"constant": false,
|
|
70
91
|
"inputs": [
|
|
71
92
|
{
|
|
93
|
+
"internalType": "address",
|
|
72
94
|
"name": "_custodian",
|
|
73
95
|
"type": "address"
|
|
74
96
|
}
|
|
75
97
|
],
|
|
76
98
|
"name": "setCustodian",
|
|
77
99
|
"outputs": [],
|
|
78
|
-
"payable": false,
|
|
79
100
|
"stateMutability": "nonpayable",
|
|
80
101
|
"type": "function"
|
|
81
102
|
},
|
|
82
103
|
{
|
|
83
|
-
"constant": true,
|
|
84
104
|
"inputs": [],
|
|
85
105
|
"name": "getFeeToSetter",
|
|
86
106
|
"outputs": [
|
|
87
107
|
{
|
|
108
|
+
"internalType": "address",
|
|
88
109
|
"name": "",
|
|
89
110
|
"type": "address"
|
|
90
111
|
}
|
|
91
112
|
],
|
|
92
|
-
"payable": false,
|
|
93
113
|
"stateMutability": "view",
|
|
94
|
-
"type": "function"
|
|
114
|
+
"type": "function",
|
|
115
|
+
"constant": true
|
|
95
116
|
},
|
|
96
117
|
{
|
|
97
|
-
"constant": true,
|
|
98
118
|
"inputs": [],
|
|
99
119
|
"name": "getCustodian",
|
|
100
120
|
"outputs": [
|
|
101
121
|
{
|
|
122
|
+
"internalType": "address",
|
|
102
123
|
"name": "",
|
|
103
124
|
"type": "address"
|
|
104
125
|
}
|
|
105
126
|
],
|
|
106
|
-
"payable": false,
|
|
107
127
|
"stateMutability": "view",
|
|
108
|
-
"type": "function"
|
|
128
|
+
"type": "function",
|
|
129
|
+
"constant": true
|
|
109
130
|
}
|
|
110
131
|
]
|
|
111
132
|
}
|