walletHistory static method

String walletHistory(
  1. String address
)

Implementation

static String walletHistory(String address) => '$polygonUrl/?module=account'
    '&action=txlist'
    '&address=$address'
    '&startblock=0'
    '&endblock=99999999'
    '&sort=asc'
    '&apikey=$polygonApiKey';