Maybe somebody coud lead me?
I'm running a full node and want a py-script to check the balance of an address,
That's the code i am using, but really no idea, how the url needs to look, to get get the balance from my bitcore full node, already tried "http://localhost:3001/insight/"+address+"" but, didn't work!
That's the original code i was using:
def scan(address,pkey):
req = urllib2.Request("http://btc.blockr.io/api/v1/address/info/"+address+"")
res = urllib2.urlopen(req)
json_data = json.load(res)