@dhedge/backend-flatcoin-core 0.2.91 → 0.2.92
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.
|
@@ -44,7 +44,11 @@ export declare const Liquidate: {
|
|
|
44
44
|
type: string;
|
|
45
45
|
}[];
|
|
46
46
|
name: string;
|
|
47
|
-
outputs:
|
|
47
|
+
outputs: {
|
|
48
|
+
internalType: string;
|
|
49
|
+
name: string;
|
|
50
|
+
type: string;
|
|
51
|
+
}[];
|
|
48
52
|
stateMutability: string;
|
|
49
53
|
type: string;
|
|
50
54
|
}[];
|
|
@@ -55,7 +59,11 @@ export declare const LiquidateWithoutPriceFeeds: {
|
|
|
55
59
|
type: string;
|
|
56
60
|
}[];
|
|
57
61
|
name: string;
|
|
58
|
-
outputs:
|
|
62
|
+
outputs: {
|
|
63
|
+
internalType: string;
|
|
64
|
+
name: string;
|
|
65
|
+
type: string;
|
|
66
|
+
}[];
|
|
59
67
|
stateMutability: string;
|
|
60
68
|
type: string;
|
|
61
69
|
}[];
|
|
@@ -99,9 +99,9 @@ exports.Liquidate = [
|
|
|
99
99
|
{
|
|
100
100
|
inputs: [
|
|
101
101
|
{
|
|
102
|
-
internalType: 'uint256',
|
|
102
|
+
internalType: 'uint256[]',
|
|
103
103
|
name: 'tokenID',
|
|
104
|
-
type: 'uint256',
|
|
104
|
+
type: 'uint256[]',
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
internalType: 'bytes[]',
|
|
@@ -110,7 +110,13 @@ exports.Liquidate = [
|
|
|
110
110
|
},
|
|
111
111
|
],
|
|
112
112
|
name: 'liquidate',
|
|
113
|
-
outputs: [
|
|
113
|
+
outputs: [
|
|
114
|
+
{
|
|
115
|
+
internalType: 'uint256[]',
|
|
116
|
+
name: 'liquidatedIds',
|
|
117
|
+
type: 'uint256[]',
|
|
118
|
+
},
|
|
119
|
+
],
|
|
114
120
|
stateMutability: 'payable',
|
|
115
121
|
type: 'function',
|
|
116
122
|
},
|
|
@@ -119,13 +125,19 @@ exports.LiquidateWithoutPriceFeeds = [
|
|
|
119
125
|
{
|
|
120
126
|
inputs: [
|
|
121
127
|
{
|
|
122
|
-
internalType: 'uint256',
|
|
123
|
-
name: '
|
|
124
|
-
type: 'uint256',
|
|
128
|
+
internalType: 'uint256[]',
|
|
129
|
+
name: 'tokenID',
|
|
130
|
+
type: 'uint256[]',
|
|
125
131
|
},
|
|
126
132
|
],
|
|
127
133
|
name: 'liquidate',
|
|
128
|
-
outputs: [
|
|
134
|
+
outputs: [
|
|
135
|
+
{
|
|
136
|
+
internalType: 'uint256[]',
|
|
137
|
+
name: 'liquidatedIds',
|
|
138
|
+
type: 'uint256[]',
|
|
139
|
+
},
|
|
140
|
+
],
|
|
129
141
|
stateMutability: 'nonpayable',
|
|
130
142
|
type: 'function',
|
|
131
143
|
},
|