You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Gets the gas_abuse of this ResponseWrapperAddressContractResult. # noqa: E501
212
+
213
+
It describes whether this address is cheating other user's gas fee to mint other assets.(Notice:Any interaction with such addresses may result in loss of property.) # noqa: E501
214
+
215
+
:return: The gas_abuse of this ResponseWrapperAddressContractResult. # noqa: E501
216
+
:rtype: str
217
+
"""
218
+
returnself._gas_abuse
219
+
220
+
@gas_abuse.setter
221
+
defgas_abuse(self, gas_abuse):
222
+
"""Sets the gas_abuse of this ResponseWrapperAddressContractResult.
223
+
224
+
It describes whether this address is cheating other user's gas fee to mint other assets.(Notice:Any interaction with such addresses may result in loss of property.) # noqa: E501
225
+
226
+
:param gas_abuse: The gas_abuse of this ResponseWrapperAddressContractResult. # noqa: E501
227
+
:type: str
228
+
"""
229
+
230
+
self._gas_abuse=gas_abuse
231
+
189
232
@property
190
233
deffinancial_crime(self):
191
234
"""Gets the financial_crime of this ResponseWrapperAddressContractResult. # noqa: E501
"""Gets the reinit of this ResponseWrapperAddressContractResult. # noqa: E501
281
+
282
+
It describes whether this address/contract has been deployed more than onces, and can be deployed again.(Notice:If a contract can be reinited, the developer can change the contract code whenever he wants.) # noqa: E501
283
+
284
+
:return: The reinit of this ResponseWrapperAddressContractResult. # noqa: E501
285
+
:rtype: str
286
+
"""
287
+
returnself._reinit
288
+
289
+
@reinit.setter
290
+
defreinit(self, reinit):
291
+
"""Sets the reinit of this ResponseWrapperAddressContractResult.
292
+
293
+
It describes whether this address/contract has been deployed more than onces, and can be deployed again.(Notice:If a contract can be reinited, the developer can change the contract code whenever he wants.) # noqa: E501
294
+
295
+
:param reinit: The reinit of this ResponseWrapperAddressContractResult. # noqa: E501
296
+
:type: str
297
+
"""
298
+
299
+
self._reinit=reinit
300
+
235
301
@property
236
302
defphishing_activities(self):
237
303
"""Gets the phishing_activities of this ResponseWrapperAddressContractResult. # noqa: E501
"""Gets the fake_standard_interface of this ResponseWrapperAddressContractResult. # noqa: E501
419
+
420
+
It describes whether this contract contains standard interfaces that do not conform the requirements of the standard protocol.(Notice:Fake Standard Interface is mostly seen in scam assets.) # noqa: E501
421
+
422
+
:return: The fake_standard_interface of this ResponseWrapperAddressContractResult. # noqa: E501
"""Sets the fake_standard_interface of this ResponseWrapperAddressContractResult.
430
+
431
+
It describes whether this contract contains standard interfaces that do not conform the requirements of the standard protocol.(Notice:Fake Standard Interface is mostly seen in scam assets.) # noqa: E501
432
+
433
+
:param fake_standard_interface: The fake_standard_interface of this ResponseWrapperAddressContractResult. # noqa: E501
0 commit comments