Skip to content

0.1.11

Compare
Choose a tag to compare
@maciejhirsz maciejhirsz released this 23 Mar 17:42
· 1029 commits to master since this release
530f5b8
  • Updated @polkadot/api to 1.8.1.
  • New endpoint for submitting signed transactions:

  • /tx/ submit a signed transaction, excepts a string with hex-encoded signed transaction in a json POST body:
    curl localhost:8080/tx/ -X POST --data '{"tx": "0x..."}' -H 'Content-Type: application/json'
    
    Expected result is a json with transaction hash:
    {
        "hash": "..."
    }