Releases: paritytech/substrate-api-sidecar
Releases · paritytech/substrate-api-sidecar
0.2.2
- Added
/payout/ADDRESS
and/payout/ADDRESS/NUMBER
endpoints.
0.2.1
/balance
endpoint once again reports correct values.
0.2.0
- BREAKING: all big integer instances in the API should now be printed as decimal strings, eg.:
"42"
, regardless of value. - Updated
@polkadot.api
to 1.9.1.
0.1.12
- Updated
@polkadot/api
to 1.9.0-beta. - Error responses will now always come through with status code 500.
0.1.11
- 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:Expected result is a json with transaction hash:curl localhost:8080/tx/ -X POST --data '{"tx": "0x..."}' -H 'Content-Type: application/json'
{ "hash": "..." }
0.1.10
- Upgraded
@polkadot/api
to 1.7.1. - Upgraded account balances to use new RPC methods.
0.1.9
- Updated
@polkadot/api
to 1.6.2.
0.1.8
- Updated
@polkadot/api
to 1.6.1.
0.1.7
- Updated
@polkadot/api
to 1.5.1. - Added
/metadata
and/metadata/NUMBER
endpoints.
0.1.6
- Fixes issues with Kusama blocks that had mismatched metadata.