Releases: paritytech/substrate-api-sidecar
Releases · paritytech/substrate-api-sidecar
0.3.0
- Added
/tx/artifacts
and/tx/artifacts/NUMBER
endpoints for getting artefacts useful for tx creation. - All numbers (not just those that can be larger than maximum integer precision) are now forced into decimal strings in the API for consistency. This should only affect the
/metadata
endpoint as all numbers used in elsewhere were already converted.
0.2.3
- The
/metadata
endpoint once again returns full data. - Updated
@polkadot.api
to 1.10.1.
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.