@polymarket/relayer-client 4.0.0 → 4.1.0
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/abis/erc20Abi.d.ts +38 -0
- package/dist/abis/erc20Abi.js +222 -0
- package/dist/abis/index.d.ts +5 -0
- package/dist/abis/index.js +5 -0
- package/dist/abis/multisend.d.ts +13 -0
- package/dist/abis/multisend.js +17 -0
- package/dist/abis/proxyFactory.d.ts +66 -0
- package/dist/abis/proxyFactory.js +319 -0
- package/dist/abis/safe.d.ts +35 -0
- package/dist/abis/safe.js +1138 -0
- package/dist/abis/safeFactory.d.ts +60 -0
- package/dist/abis/safeFactory.js +224 -0
- package/dist/auth/handler.d.ts +15 -0
- package/dist/auth/handler.js +46 -0
- package/dist/auth/index.d.ts +1 -0
- package/dist/auth/index.js +1 -0
- package/dist/builder/create.d.ts +4 -0
- package/dist/builder/create.js +48 -0
- package/dist/builder/derive.d.ts +2 -0
- package/dist/builder/derive.js +16 -0
- package/dist/builder/index.d.ts +4 -0
- package/dist/builder/index.js +4 -0
- package/dist/builder/proxy.d.ts +4 -0
- package/dist/builder/proxy.js +72 -0
- package/dist/builder/safe.d.ts +5 -0
- package/dist/builder/safe.js +105 -0
- package/dist/client.d.ts +39 -0
- package/dist/client.js +173 -0
- package/dist/config/index.d.ts +13 -0
- package/dist/config/index.js +30 -0
- package/dist/constants/index.d.ts +3 -0
- package/dist/constants/index.js +3 -0
- package/dist/encode/index.d.ts +2 -0
- package/dist/encode/index.js +2 -0
- package/dist/encode/proxy.d.ts +2 -0
- package/dist/encode/proxy.js +12 -0
- package/dist/encode/safe.d.ts +2 -0
- package/dist/encode/safe.js +25 -0
- package/dist/endpoints.d.ts +5 -0
- package/dist/endpoints.js +5 -0
- package/dist/http-helpers/index.d.ts +10 -0
- package/dist/http-helpers/index.js +46 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/manual/index.d.ts +5 -0
- package/dist/manual/index.js +49 -0
- package/dist/response/index.d.ts +21 -0
- package/dist/response/index.js +34 -0
- package/dist/signer/index.d.ts +26 -0
- package/dist/signer/index.js +109 -0
- package/dist/types.d.ts +132 -0
- package/dist/types.js +27 -0
- package/dist/utils/index.d.ts +7 -0
- package/dist/utils/index.js +30 -0
- package/package.json +8 -2
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export declare const erc20Abi: ({
|
|
2
|
+
constant: boolean;
|
|
3
|
+
inputs: {
|
|
4
|
+
name: string;
|
|
5
|
+
type: string;
|
|
6
|
+
}[];
|
|
7
|
+
name: string;
|
|
8
|
+
outputs: {
|
|
9
|
+
name: string;
|
|
10
|
+
type: string;
|
|
11
|
+
}[];
|
|
12
|
+
payable: boolean;
|
|
13
|
+
stateMutability: string;
|
|
14
|
+
type: string;
|
|
15
|
+
anonymous?: undefined;
|
|
16
|
+
} | {
|
|
17
|
+
payable: boolean;
|
|
18
|
+
stateMutability: string;
|
|
19
|
+
type: string;
|
|
20
|
+
constant?: undefined;
|
|
21
|
+
inputs?: undefined;
|
|
22
|
+
name?: undefined;
|
|
23
|
+
outputs?: undefined;
|
|
24
|
+
anonymous?: undefined;
|
|
25
|
+
} | {
|
|
26
|
+
anonymous: boolean;
|
|
27
|
+
inputs: {
|
|
28
|
+
indexed: boolean;
|
|
29
|
+
name: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}[];
|
|
32
|
+
name: string;
|
|
33
|
+
type: string;
|
|
34
|
+
constant?: undefined;
|
|
35
|
+
outputs?: undefined;
|
|
36
|
+
payable?: undefined;
|
|
37
|
+
stateMutability?: undefined;
|
|
38
|
+
})[];
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
export const erc20Abi = [
|
|
2
|
+
{
|
|
3
|
+
constant: true,
|
|
4
|
+
inputs: [],
|
|
5
|
+
name: "name",
|
|
6
|
+
outputs: [
|
|
7
|
+
{
|
|
8
|
+
name: "",
|
|
9
|
+
type: "string",
|
|
10
|
+
},
|
|
11
|
+
],
|
|
12
|
+
payable: false,
|
|
13
|
+
stateMutability: "view",
|
|
14
|
+
type: "function",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
constant: false,
|
|
18
|
+
inputs: [
|
|
19
|
+
{
|
|
20
|
+
name: "_spender",
|
|
21
|
+
type: "address",
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
name: "_value",
|
|
25
|
+
type: "uint256",
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
name: "approve",
|
|
29
|
+
outputs: [
|
|
30
|
+
{
|
|
31
|
+
name: "",
|
|
32
|
+
type: "bool",
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
payable: false,
|
|
36
|
+
stateMutability: "nonpayable",
|
|
37
|
+
type: "function",
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
constant: true,
|
|
41
|
+
inputs: [],
|
|
42
|
+
name: "totalSupply",
|
|
43
|
+
outputs: [
|
|
44
|
+
{
|
|
45
|
+
name: "",
|
|
46
|
+
type: "uint256",
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
payable: false,
|
|
50
|
+
stateMutability: "view",
|
|
51
|
+
type: "function",
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
constant: false,
|
|
55
|
+
inputs: [
|
|
56
|
+
{
|
|
57
|
+
name: "_from",
|
|
58
|
+
type: "address",
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: "_to",
|
|
62
|
+
type: "address",
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: "_value",
|
|
66
|
+
type: "uint256",
|
|
67
|
+
},
|
|
68
|
+
],
|
|
69
|
+
name: "transferFrom",
|
|
70
|
+
outputs: [
|
|
71
|
+
{
|
|
72
|
+
name: "",
|
|
73
|
+
type: "bool",
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
payable: false,
|
|
77
|
+
stateMutability: "nonpayable",
|
|
78
|
+
type: "function",
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
constant: true,
|
|
82
|
+
inputs: [],
|
|
83
|
+
name: "decimals",
|
|
84
|
+
outputs: [
|
|
85
|
+
{
|
|
86
|
+
name: "",
|
|
87
|
+
type: "uint8",
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
payable: false,
|
|
91
|
+
stateMutability: "view",
|
|
92
|
+
type: "function",
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
constant: true,
|
|
96
|
+
inputs: [
|
|
97
|
+
{
|
|
98
|
+
name: "_owner",
|
|
99
|
+
type: "address",
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
name: "balanceOf",
|
|
103
|
+
outputs: [
|
|
104
|
+
{
|
|
105
|
+
name: "balance",
|
|
106
|
+
type: "uint256",
|
|
107
|
+
},
|
|
108
|
+
],
|
|
109
|
+
payable: false,
|
|
110
|
+
stateMutability: "view",
|
|
111
|
+
type: "function",
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
constant: true,
|
|
115
|
+
inputs: [],
|
|
116
|
+
name: "symbol",
|
|
117
|
+
outputs: [
|
|
118
|
+
{
|
|
119
|
+
name: "",
|
|
120
|
+
type: "string",
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
payable: false,
|
|
124
|
+
stateMutability: "view",
|
|
125
|
+
type: "function",
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
constant: false,
|
|
129
|
+
inputs: [
|
|
130
|
+
{
|
|
131
|
+
name: "_to",
|
|
132
|
+
type: "address",
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
name: "_value",
|
|
136
|
+
type: "uint256",
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
name: "transfer",
|
|
140
|
+
outputs: [
|
|
141
|
+
{
|
|
142
|
+
name: "",
|
|
143
|
+
type: "bool",
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
payable: false,
|
|
147
|
+
stateMutability: "nonpayable",
|
|
148
|
+
type: "function",
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
constant: true,
|
|
152
|
+
inputs: [
|
|
153
|
+
{
|
|
154
|
+
name: "_owner",
|
|
155
|
+
type: "address",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "_spender",
|
|
159
|
+
type: "address",
|
|
160
|
+
},
|
|
161
|
+
],
|
|
162
|
+
name: "allowance",
|
|
163
|
+
outputs: [
|
|
164
|
+
{
|
|
165
|
+
name: "",
|
|
166
|
+
type: "uint256",
|
|
167
|
+
},
|
|
168
|
+
],
|
|
169
|
+
payable: false,
|
|
170
|
+
stateMutability: "view",
|
|
171
|
+
type: "function",
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
payable: true,
|
|
175
|
+
stateMutability: "payable",
|
|
176
|
+
type: "fallback",
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
anonymous: false,
|
|
180
|
+
inputs: [
|
|
181
|
+
{
|
|
182
|
+
indexed: true,
|
|
183
|
+
name: "owner",
|
|
184
|
+
type: "address",
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
indexed: true,
|
|
188
|
+
name: "spender",
|
|
189
|
+
type: "address",
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
indexed: false,
|
|
193
|
+
name: "value",
|
|
194
|
+
type: "uint256",
|
|
195
|
+
},
|
|
196
|
+
],
|
|
197
|
+
name: "Approval",
|
|
198
|
+
type: "event",
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
anonymous: false,
|
|
202
|
+
inputs: [
|
|
203
|
+
{
|
|
204
|
+
indexed: true,
|
|
205
|
+
name: "from",
|
|
206
|
+
type: "address",
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
indexed: true,
|
|
210
|
+
name: "to",
|
|
211
|
+
type: "address",
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
indexed: false,
|
|
215
|
+
name: "value",
|
|
216
|
+
type: "uint256",
|
|
217
|
+
},
|
|
218
|
+
],
|
|
219
|
+
name: "Transfer",
|
|
220
|
+
type: "event",
|
|
221
|
+
},
|
|
222
|
+
];
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export const multisendAbi = [
|
|
2
|
+
{
|
|
3
|
+
constant: false,
|
|
4
|
+
inputs: [
|
|
5
|
+
{
|
|
6
|
+
internalType: "bytes",
|
|
7
|
+
name: "transactions",
|
|
8
|
+
type: "bytes",
|
|
9
|
+
},
|
|
10
|
+
],
|
|
11
|
+
name: "multiSend",
|
|
12
|
+
outputs: [],
|
|
13
|
+
payable: false,
|
|
14
|
+
stateMutability: "nonpayable",
|
|
15
|
+
type: "function",
|
|
16
|
+
},
|
|
17
|
+
];
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export declare const proxyWalletFactory: ({
|
|
2
|
+
constant: boolean;
|
|
3
|
+
inputs: {
|
|
4
|
+
components: {
|
|
5
|
+
name: string;
|
|
6
|
+
type: string;
|
|
7
|
+
}[];
|
|
8
|
+
name: string;
|
|
9
|
+
type: string;
|
|
10
|
+
}[];
|
|
11
|
+
name: string;
|
|
12
|
+
outputs: {
|
|
13
|
+
name: string;
|
|
14
|
+
type: string;
|
|
15
|
+
}[];
|
|
16
|
+
payable: boolean;
|
|
17
|
+
stateMutability: string;
|
|
18
|
+
type: string;
|
|
19
|
+
anonymous?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
constant: boolean;
|
|
22
|
+
inputs: {
|
|
23
|
+
name: string;
|
|
24
|
+
type: string;
|
|
25
|
+
}[];
|
|
26
|
+
name: string;
|
|
27
|
+
outputs: {
|
|
28
|
+
name: string;
|
|
29
|
+
type: string;
|
|
30
|
+
}[];
|
|
31
|
+
payable: boolean;
|
|
32
|
+
stateMutability: string;
|
|
33
|
+
type: string;
|
|
34
|
+
anonymous?: undefined;
|
|
35
|
+
} | {
|
|
36
|
+
inputs: never[];
|
|
37
|
+
payable: boolean;
|
|
38
|
+
stateMutability: string;
|
|
39
|
+
type: string;
|
|
40
|
+
constant?: undefined;
|
|
41
|
+
name?: undefined;
|
|
42
|
+
outputs?: undefined;
|
|
43
|
+
anonymous?: undefined;
|
|
44
|
+
} | {
|
|
45
|
+
payable: boolean;
|
|
46
|
+
stateMutability: string;
|
|
47
|
+
type: string;
|
|
48
|
+
constant?: undefined;
|
|
49
|
+
inputs?: undefined;
|
|
50
|
+
name?: undefined;
|
|
51
|
+
outputs?: undefined;
|
|
52
|
+
anonymous?: undefined;
|
|
53
|
+
} | {
|
|
54
|
+
anonymous: boolean;
|
|
55
|
+
inputs: {
|
|
56
|
+
indexed: boolean;
|
|
57
|
+
name: string;
|
|
58
|
+
type: string;
|
|
59
|
+
}[];
|
|
60
|
+
name: string;
|
|
61
|
+
type: string;
|
|
62
|
+
constant?: undefined;
|
|
63
|
+
outputs?: undefined;
|
|
64
|
+
payable?: undefined;
|
|
65
|
+
stateMutability?: undefined;
|
|
66
|
+
})[];
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
export const proxyWalletFactory = [
|
|
2
|
+
{
|
|
3
|
+
constant: false,
|
|
4
|
+
inputs: [
|
|
5
|
+
{
|
|
6
|
+
components: [
|
|
7
|
+
{
|
|
8
|
+
name: "typeCode",
|
|
9
|
+
type: "uint8",
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
name: "to",
|
|
13
|
+
type: "address",
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: "value",
|
|
17
|
+
type: "uint256",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: "data",
|
|
21
|
+
type: "bytes",
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
name: "calls",
|
|
25
|
+
type: "tuple[]",
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
name: "proxy",
|
|
29
|
+
outputs: [
|
|
30
|
+
{
|
|
31
|
+
name: "returnValues",
|
|
32
|
+
type: "bytes[]",
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
payable: true,
|
|
36
|
+
stateMutability: "payable",
|
|
37
|
+
type: "function",
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
constant: false,
|
|
41
|
+
inputs: [
|
|
42
|
+
{
|
|
43
|
+
name: "",
|
|
44
|
+
type: "bytes",
|
|
45
|
+
},
|
|
46
|
+
],
|
|
47
|
+
name: "cloneConstructor",
|
|
48
|
+
outputs: [],
|
|
49
|
+
payable: false,
|
|
50
|
+
stateMutability: "nonpayable",
|
|
51
|
+
type: "function",
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
constant: false,
|
|
55
|
+
inputs: [],
|
|
56
|
+
name: "renounceOwnership",
|
|
57
|
+
outputs: [],
|
|
58
|
+
payable: false,
|
|
59
|
+
stateMutability: "nonpayable",
|
|
60
|
+
type: "function",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
constant: true,
|
|
64
|
+
inputs: [],
|
|
65
|
+
name: "getHubAddr",
|
|
66
|
+
outputs: [
|
|
67
|
+
{
|
|
68
|
+
name: "",
|
|
69
|
+
type: "address",
|
|
70
|
+
},
|
|
71
|
+
],
|
|
72
|
+
payable: false,
|
|
73
|
+
stateMutability: "view",
|
|
74
|
+
type: "function",
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
constant: false,
|
|
78
|
+
inputs: [
|
|
79
|
+
{
|
|
80
|
+
name: "context",
|
|
81
|
+
type: "bytes",
|
|
82
|
+
},
|
|
83
|
+
],
|
|
84
|
+
name: "preRelayedCall",
|
|
85
|
+
outputs: [
|
|
86
|
+
{
|
|
87
|
+
name: "",
|
|
88
|
+
type: "bytes32",
|
|
89
|
+
},
|
|
90
|
+
],
|
|
91
|
+
payable: false,
|
|
92
|
+
stateMutability: "nonpayable",
|
|
93
|
+
type: "function",
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
constant: true,
|
|
97
|
+
inputs: [
|
|
98
|
+
{
|
|
99
|
+
name: "",
|
|
100
|
+
type: "address",
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: "",
|
|
104
|
+
type: "address",
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: "",
|
|
108
|
+
type: "bytes",
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
name: "",
|
|
112
|
+
type: "uint256",
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
name: "",
|
|
116
|
+
type: "uint256",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
name: "",
|
|
120
|
+
type: "uint256",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: "",
|
|
124
|
+
type: "uint256",
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: "",
|
|
128
|
+
type: "bytes",
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
name: "",
|
|
132
|
+
type: "uint256",
|
|
133
|
+
},
|
|
134
|
+
],
|
|
135
|
+
name: "acceptRelayedCall",
|
|
136
|
+
outputs: [
|
|
137
|
+
{
|
|
138
|
+
name: "doCall",
|
|
139
|
+
type: "uint256",
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "context",
|
|
143
|
+
type: "bytes",
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
payable: false,
|
|
147
|
+
stateMutability: "view",
|
|
148
|
+
type: "function",
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
constant: true,
|
|
152
|
+
inputs: [],
|
|
153
|
+
name: "owner",
|
|
154
|
+
outputs: [
|
|
155
|
+
{
|
|
156
|
+
name: "",
|
|
157
|
+
type: "address",
|
|
158
|
+
},
|
|
159
|
+
],
|
|
160
|
+
payable: false,
|
|
161
|
+
stateMutability: "view",
|
|
162
|
+
type: "function",
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
constant: true,
|
|
166
|
+
inputs: [],
|
|
167
|
+
name: "isOwner",
|
|
168
|
+
outputs: [
|
|
169
|
+
{
|
|
170
|
+
name: "",
|
|
171
|
+
type: "bool",
|
|
172
|
+
},
|
|
173
|
+
],
|
|
174
|
+
payable: false,
|
|
175
|
+
stateMutability: "view",
|
|
176
|
+
type: "function",
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
constant: true,
|
|
180
|
+
inputs: [],
|
|
181
|
+
name: "getImplementation",
|
|
182
|
+
outputs: [
|
|
183
|
+
{
|
|
184
|
+
name: "",
|
|
185
|
+
type: "address",
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
payable: false,
|
|
189
|
+
stateMutability: "view",
|
|
190
|
+
type: "function",
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
constant: true,
|
|
194
|
+
inputs: [],
|
|
195
|
+
name: "relayHubVersion",
|
|
196
|
+
outputs: [
|
|
197
|
+
{
|
|
198
|
+
name: "",
|
|
199
|
+
type: "string",
|
|
200
|
+
},
|
|
201
|
+
],
|
|
202
|
+
payable: false,
|
|
203
|
+
stateMutability: "view",
|
|
204
|
+
type: "function",
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
constant: false,
|
|
208
|
+
inputs: [
|
|
209
|
+
{
|
|
210
|
+
name: "gsnModule",
|
|
211
|
+
type: "address",
|
|
212
|
+
},
|
|
213
|
+
],
|
|
214
|
+
name: "setGSNModule",
|
|
215
|
+
outputs: [],
|
|
216
|
+
payable: false,
|
|
217
|
+
stateMutability: "nonpayable",
|
|
218
|
+
type: "function",
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
constant: false,
|
|
222
|
+
inputs: [
|
|
223
|
+
{
|
|
224
|
+
name: "context",
|
|
225
|
+
type: "bytes",
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
name: "success",
|
|
229
|
+
type: "bool",
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: "actualCharge",
|
|
233
|
+
type: "uint256",
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
name: "preRetVal",
|
|
237
|
+
type: "bytes32",
|
|
238
|
+
},
|
|
239
|
+
],
|
|
240
|
+
name: "postRelayedCall",
|
|
241
|
+
outputs: [],
|
|
242
|
+
payable: false,
|
|
243
|
+
stateMutability: "nonpayable",
|
|
244
|
+
type: "function",
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
constant: false,
|
|
248
|
+
inputs: [
|
|
249
|
+
{
|
|
250
|
+
name: "newOwner",
|
|
251
|
+
type: "address",
|
|
252
|
+
},
|
|
253
|
+
],
|
|
254
|
+
name: "transferOwnership",
|
|
255
|
+
outputs: [],
|
|
256
|
+
payable: false,
|
|
257
|
+
stateMutability: "nonpayable",
|
|
258
|
+
type: "function",
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
constant: true,
|
|
262
|
+
inputs: [],
|
|
263
|
+
name: "getGSNModule",
|
|
264
|
+
outputs: [
|
|
265
|
+
{
|
|
266
|
+
name: "",
|
|
267
|
+
type: "address",
|
|
268
|
+
},
|
|
269
|
+
],
|
|
270
|
+
payable: false,
|
|
271
|
+
stateMutability: "view",
|
|
272
|
+
type: "function",
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
inputs: [],
|
|
276
|
+
payable: false,
|
|
277
|
+
stateMutability: "nonpayable",
|
|
278
|
+
type: "constructor",
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
payable: true,
|
|
282
|
+
stateMutability: "payable",
|
|
283
|
+
type: "fallback",
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
anonymous: false,
|
|
287
|
+
inputs: [
|
|
288
|
+
{
|
|
289
|
+
indexed: true,
|
|
290
|
+
name: "oldRelayHub",
|
|
291
|
+
type: "address",
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
indexed: true,
|
|
295
|
+
name: "newRelayHub",
|
|
296
|
+
type: "address",
|
|
297
|
+
},
|
|
298
|
+
],
|
|
299
|
+
name: "RelayHubChanged",
|
|
300
|
+
type: "event",
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
anonymous: false,
|
|
304
|
+
inputs: [
|
|
305
|
+
{
|
|
306
|
+
indexed: true,
|
|
307
|
+
name: "previousOwner",
|
|
308
|
+
type: "address",
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
indexed: true,
|
|
312
|
+
name: "newOwner",
|
|
313
|
+
type: "address",
|
|
314
|
+
},
|
|
315
|
+
],
|
|
316
|
+
name: "OwnershipTransferred",
|
|
317
|
+
type: "event",
|
|
318
|
+
},
|
|
319
|
+
];
|