@@ -47,18 +47,22 @@ class ResponseWrapperAddressContractResult {
4747 if ( data . hasOwnProperty ( 'cybercrime' ) ) obj . cybercrime = _ApiClient . ApiClient . convertToType ( data [ 'cybercrime' ] , 'String' ) ;
4848 if ( data . hasOwnProperty ( 'money_laundering' ) ) obj . money_laundering = _ApiClient . ApiClient . convertToType ( data [ 'money_laundering' ] , 'String' ) ;
4949 if ( data . hasOwnProperty ( 'number_of_malicious_contracts_created' ) ) obj . number_of_malicious_contracts_created = _ApiClient . ApiClient . convertToType ( data [ 'number_of_malicious_contracts_created' ] , 'String' ) ;
50+ if ( data . hasOwnProperty ( 'gas_abuse' ) ) obj . gas_abuse = _ApiClient . ApiClient . convertToType ( data [ 'gas_abuse' ] , 'String' ) ;
5051 if ( data . hasOwnProperty ( 'financial_crime' ) ) obj . financial_crime = _ApiClient . ApiClient . convertToType ( data [ 'financial_crime' ] , 'String' ) ;
5152 if ( data . hasOwnProperty ( 'darkweb_transactions' ) ) obj . darkweb_transactions = _ApiClient . ApiClient . convertToType ( data [ 'darkweb_transactions' ] , 'String' ) ;
53+ if ( data . hasOwnProperty ( 'reinit' ) ) obj . reinit = _ApiClient . ApiClient . convertToType ( data [ 'reinit' ] , 'String' ) ;
5254 if ( data . hasOwnProperty ( 'phishing_activities' ) ) obj . phishing_activities = _ApiClient . ApiClient . convertToType ( data [ 'phishing_activities' ] , 'String' ) ;
5355 if ( data . hasOwnProperty ( 'contract_address' ) ) obj . contract_address = _ApiClient . ApiClient . convertToType ( data [ 'contract_address' ] , 'String' ) ;
5456 if ( data . hasOwnProperty ( 'fake_kyc' ) ) obj . fake_kyc = _ApiClient . ApiClient . convertToType ( data [ 'fake_kyc' ] , 'String' ) ;
5557 if ( data . hasOwnProperty ( 'blacklist_doubt' ) ) obj . blacklist_doubt = _ApiClient . ApiClient . convertToType ( data [ 'blacklist_doubt' ] , 'String' ) ;
5658 if ( data . hasOwnProperty ( 'data_source' ) ) obj . data_source = _ApiClient . ApiClient . convertToType ( data [ 'data_source' ] , 'String' ) ;
59+ if ( data . hasOwnProperty ( 'fake_standard_interface' ) ) obj . fake_standard_interface = _ApiClient . ApiClient . convertToType ( data [ 'fake_standard_interface' ] , 'String' ) ;
5760 if ( data . hasOwnProperty ( 'stealing_attack' ) ) obj . stealing_attack = _ApiClient . ApiClient . convertToType ( data [ 'stealing_attack' ] , 'String' ) ;
5861 if ( data . hasOwnProperty ( 'blackmail_activities' ) ) obj . blackmail_activities = _ApiClient . ApiClient . convertToType ( data [ 'blackmail_activities' ] , 'String' ) ;
5962 if ( data . hasOwnProperty ( 'sanctioned' ) ) obj . sanctioned = _ApiClient . ApiClient . convertToType ( data [ 'sanctioned' ] , 'String' ) ;
6063 if ( data . hasOwnProperty ( 'malicious_mining_activities' ) ) obj . malicious_mining_activities = _ApiClient . ApiClient . convertToType ( data [ 'malicious_mining_activities' ] , 'String' ) ;
6164 if ( data . hasOwnProperty ( 'mixer' ) ) obj . mixer = _ApiClient . ApiClient . convertToType ( data [ 'mixer' ] , 'String' ) ;
65+ if ( data . hasOwnProperty ( 'fake_token' ) ) obj . fake_token = _ApiClient . ApiClient . convertToType ( data [ 'fake_token' ] , 'String' ) ;
6266 if ( data . hasOwnProperty ( 'honeypot_related_address' ) ) obj . honeypot_related_address = _ApiClient . ApiClient . convertToType ( data [ 'honeypot_related_address' ] , 'String' ) ;
6367 }
6468 return obj ;
@@ -84,6 +88,12 @@ ResponseWrapperAddressContractResult.prototype.money_laundering = undefined;
8488 */
8589ResponseWrapperAddressContractResult . prototype . number_of_malicious_contracts_created = undefined ;
8690
91+ /**
92+ * 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.)
93+ * @member {String} gas_abuse
94+ */
95+ ResponseWrapperAddressContractResult . prototype . gas_abuse = undefined ;
96+
8797/**
8898 * It describes whether this address is involved in financial crime. \"1\" means true; \"0\" means false.
8999 * @member {String} financial_crime
@@ -96,6 +106,12 @@ ResponseWrapperAddressContractResult.prototype.financial_crime = undefined;
96106 */
97107ResponseWrapperAddressContractResult . prototype . darkweb_transactions = undefined ;
98108
109+ /**
110+ * 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.)
111+ * @member {String} reinit
112+ */
113+ ResponseWrapperAddressContractResult . prototype . reinit = undefined ;
114+
99115/**
100116 * It describes whether this address has implemented phishing activities. \"1\" means true; \"0\" means false.
101117 * @member {String} phishing_activities
@@ -126,6 +142,12 @@ ResponseWrapperAddressContractResult.prototype.blacklist_doubt = undefined;
126142 */
127143ResponseWrapperAddressContractResult . prototype . data_source = undefined ;
128144
145+ /**
146+ * 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.)
147+ * @member {String} fake_standard_interface
148+ */
149+ ResponseWrapperAddressContractResult . prototype . fake_standard_interface = undefined ;
150+
129151/**
130152 * It describes whether this address has implemented stealing attacks. \"1\" means true; \"0\" means false.
131153 * @member {String} stealing_attack
@@ -156,6 +178,12 @@ ResponseWrapperAddressContractResult.prototype.malicious_mining_activities = und
156178 */
157179ResponseWrapperAddressContractResult . prototype . mixer = undefined ;
158180
181+ /**
182+ * It indicates whether the token is a counterfeit of a mainstream asset.
183+ * @member {String} fake_token
184+ */
185+ ResponseWrapperAddressContractResult . prototype . fake_token = undefined ;
186+
159187/**
160188 * It describes whether this address is related to honeypot tokens or has created scam tokens. \"1\" means true; \"0\" means false.(Notice:Addresses related to honeypot mean the creators or owners of the honeypot tokens. This is a dangerous address if the address is ralated to honeypot tokens.)
161189 * @member {String} honeypot_related_address
0 commit comments