Return a list of transactions of specified address
address- the Address you want to get a balance of.sort- asc or desstartblock- from which block you want to searchendblock- to which block you want to search
List of Transaction of specified address.
let geth = Geth(network: .test)
geth.getTransactions(address: "0x91c79f31De5208fadCbF83f0a7B0A9b6d8aBA90F", sort: .asc, startBlock: 0, endBlock: 9999999) { result in
// do something...
}