We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to get the multi-chain activity of an address but getting AttributeError for the given method in documentation. In the API Reference page it is using a different module but same thing AttributeError
from moralis import evm_api api_key = "YOUR_API_KEY" params = { "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", "chains": ["eth", "bsc", "polygon"], } result = evm_api.transaction.get_wallet_active_chains( api_key=api_key, params=params, ) print(result)
AND
from moralis import evm_api api_key = "YOUR_API_KEY" params = { "chains": [ "eth" ], "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" } result = evm_api.wallets.get_wallet_active_chains( api_key=api_key, params=params, ) print(result)
AttributeError: module 'moralis.evm_api.transaction.transaction' has no attribute 'get_wallet_active_chains'
AttributeError: module 'moralis.evm_api.evm_api' has no attribute 'wallets'
{ "address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e", "active_chains": { "chain": "eth", "chain_id": "0x1", "first_transaction": { "block_number": "123456789", "block_timestamp": "2022-08-23T20:58:31.000Z", "transaction_hash": "0x2d30ca6f024dbc1307ac8a1a44ca27de6f797ec22ef20627a1307243b0ab7d09" }, "last_transaction": { "block_number": "123456789", "block_timestamp": "2022-08-23T20:58:31.000Z", "transaction_hash": "0x2d30ca6f024dbc1307ac8a1a44ca27de6f797ec22ef20627a1307243b0ab7d09" } } }
Server
2.0
Client
0.1.37
EndeavourOS
Google Chrome
The text was updated successfully, but these errors were encountered:
No branches or pull requests
New Bug Report
Checklist
Issue Description
Trying to get the multi-chain activity of an address but getting AttributeError for the given method in documentation.
In the API Reference page it is using a different module but same thing AttributeError
Steps + code to reproduce
AND
Actual Outcome
AND
Expected Outcome
Environment
Server
2.0
Client
0.1.37
EndeavourOS
Google Chrome
Logs
The text was updated successfully, but these errors were encountered: