Hi,
is there call or ā¦ to get transaction (not internal) from polygonscan by address ? Internal trans is available through get_internal_txs_by_address, but what about normal, external transactions (not contract or ā¦).
Hi,
is there call or ā¦ to get transaction (not internal) from polygonscan by address ? Internal trans is available through get_internal_txs_by_address, but what about normal, external transactions (not contract or ā¦).
You can check PolygonScanās API documentation for what is available.
Otherwise you can look at Moralisās API e.g. getTransactions.
thanks for pointing me back to RTFM polygonscan, and yes there is:
https://api.polygonscan.com/api?module=account&action=txlist
is there call or ā¦ to get transaction (not internal) from polygonscan
Iām not sure what it is youāre asking exactly. Anything available with their API should be in their documentation.
i didnāt find info for normal transaction in documentation, only in logs dir of python api lib:
polygonscan-python\logs\standard:
āmethodā: āget_normal_txs_by_address_paginatedā,
āmoduleā: āaccountsā,
ākwargsā: {
āaddressā: ā0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121aā,
āstartblockā: 0,
āendblockā: 99999999,
āpageā: 1,
āoffsetā: 10,
āsortā: āascā
},
ā¦