@@ -54,12 +54,6 @@ The ``web3.geth.admin`` object exposes methods to interact with the RPC APIs und
54
54
}
55
55
56
56
57
- .. py :method :: nodeInfo()
58
-
59
- .. warning :: Deprecated: This method is deprecated in favor of
60
- :meth: `~web3.geth.admin.node_info() `
61
-
62
-
63
57
.. py :method :: peers()
64
58
65
59
* Delegates to ``admin_peers `` RPC Method
@@ -118,10 +112,6 @@ The ``web3.geth.admin`` object exposes methods to interact with the RPC APIs und
118
112
True
119
113
120
114
121
- .. py :method :: addPeer(node_url)
122
-
123
- .. warning :: Deprecated: This method is deprecated in favor of :meth:`~web3.geth.admin.add_peer()`
124
-
125
115
.. py :method :: start_rpc(host = ' localhost' , port = 8545 , cors = " " , apis = " eth,net,web3" )
126
116
127
117
* Delegates to ``admin_startRPC `` RPC Method
@@ -137,12 +127,6 @@ The ``web3.geth.admin`` object exposes methods to interact with the RPC APIs und
137
127
True
138
128
139
129
140
- .. py :method :: startRPC(host = ' localhost' , port = 8545 , cors = " " , apis = " eth,net,web3" )
141
-
142
- .. warning :: Deprecated: This method is deprecated in favor of
143
- :meth: `~web3.geth.admin.start_rpc() `
144
-
145
-
146
130
.. py :method :: start_ws(host = ' localhost' , port = 8546 , cors = " " , apis = " eth,net,web3" )
147
131
148
132
* Delegates to ``admin_startWS `` RPC Method
@@ -158,12 +142,6 @@ The ``web3.geth.admin`` object exposes methods to interact with the RPC APIs und
158
142
True
159
143
160
144
161
- .. py :method :: startWS(host = ' localhost' , port = 8546 , cors = " " , apis = " eth,net,web3" )
162
-
163
- .. warning :: Deprecated: This method is deprecated in favor of
164
- :meth: `~web3.geth.admin.start_ws() `
165
-
166
-
167
145
.. py :method :: stop_rpc()
168
146
169
147
* Delegates to ``admin_stopRPC `` RPC Method
@@ -176,12 +154,6 @@ The ``web3.geth.admin`` object exposes methods to interact with the RPC APIs und
176
154
True
177
155
178
156
179
- .. py :method :: stopRPC()
180
-
181
- .. warning :: Deprecated: This method is deprecated in favor of
182
- :meth: `~web3.geth.admin.stop_rpc() `
183
-
184
-
185
157
.. py :method :: stop_ws()
186
158
187
159
* Delegates to ``admin_stopWS `` RPC Method
@@ -194,12 +166,6 @@ The ``web3.geth.admin`` object exposes methods to interact with the RPC APIs und
194
166
True
195
167
196
168
197
- .. py :method :: stopWS()
198
-
199
- .. warning :: Deprecated: This method is deprecated in favor of
200
- :meth: `~web3.geth.admin.stop_ws() `
201
-
202
-
203
169
.. py :module :: web3.geth.personal
204
170
205
171
GethPersonal API
@@ -219,12 +185,6 @@ The following methods are available on the ``web3.geth.personal`` namespace.
219
185
[' 0xd3CdA913deB6f67967B99D67aCDFa1712C293601' ]
220
186
221
187
222
- .. py :method :: listAccounts()
223
-
224
- .. warning :: Deprecated: This method is deprecated in favor of
225
- :meth: `~web3.geth.personal.list_accounts() `
226
-
227
-
228
188
.. py :method :: list_wallets()
229
189
230
190
* Delegates to ``personal_listWallets `` RPC Method
@@ -257,12 +217,6 @@ The following methods are available on the ``web3.geth.personal`` namespace.
257
217
' 0xd3CdA913deB6f67967B99D67aCDFa1712C293601'
258
218
259
219
260
- .. py :method :: importRawKey()
261
-
262
- .. warning :: Deprecated: This method is deprecated in favor of
263
- :meth: `~web3.geth.personal.import_raw_key() `
264
-
265
-
266
220
.. py :method :: new_account(self , passphrase)
267
221
268
222
* Delegates to ``personal_newAccount `` RPC Method
@@ -276,12 +230,6 @@ The following methods are available on the ``web3.geth.personal`` namespace.
276
230
' 0xd3CdA913deB6f67967B99D67aCDFa1712C293601'
277
231
278
232
279
- .. py :method :: newAccount()
280
-
281
- .. warning :: Deprecated: This method is deprecated in favor of
282
- :meth: `~web3.geth.personal.new_account() `
283
-
284
-
285
233
.. py :method :: lock_account(self , account)
286
234
287
235
* Delegates to ``personal_lockAccount `` RPC Method
@@ -293,12 +241,6 @@ The following methods are available on the ``web3.geth.personal`` namespace.
293
241
>> > web3.geth.personal.lock_account(' 0xd3CdA913deB6f67967B99D67aCDFa1712C293601' )
294
242
295
243
296
- .. py :method :: lockAccount()
297
-
298
- .. warning :: Deprecated: This method is deprecated in favor of
299
- :meth: `~web3.geth.personal.lock_account() `
300
-
301
-
302
244
.. py :method :: unlock_account(self , account, passphrase, duration = None )
303
245
304
246
* Delegates to ``personal_unlockAccount `` RPC Method
@@ -317,25 +259,13 @@ The following methods are available on the ``web3.geth.personal`` namespace.
317
259
True
318
260
319
261
320
- .. py :method :: unlockAccount()
321
-
322
- .. warning :: Deprecated: This method is deprecated in favor of
323
- :meth: `~web3.geth.personal.unlock_account() `
324
-
325
-
326
262
.. py :method :: send_transaction(self , transaction, passphrase)
327
263
328
264
* Delegates to ``personal_sendTransaction `` RPC Method
329
265
330
266
Sends the transaction.
331
267
332
268
333
- .. py :method :: sendTransaction()
334
-
335
- .. warning :: Deprecated: This method is deprecated in favor of
336
- :meth: `~web3.geth.personal.send_transaction() `
337
-
338
-
339
269
.. py :module :: web3.geth.txpool
340
270
341
271
GethTxPool API
0 commit comments