Skip to content

Latest commit

 

History

History
75 lines (40 loc) · 1.56 KB

CHANGELOG.md

File metadata and controls

75 lines (40 loc) · 1.56 KB

Changelog

All notable changes to casper-client-sdk.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.0.23

Changed

  • Removes use of Buffer in parseKeyPair() and instead creates new Uint8Array concatenating public and private keys for use as secret key in Ed25519 key pair.

1.0.22

Fixed

  • Parsing ExecutableDeployItem's StoredContractByHash from JSON to the ExecutableDeployItem object.

1.0.21

Added

  • CasperClient.getDeployByHashFromRPC allows for getting Deploy instance from the Node's RPC.

Fixed

  • Secp keys generator returns Uint8Array instead of Buffer.

Changed

  • CLValue.publicKey accepts PublicKey object.

1.0.20

Fixed

  • Deserialize Deploy.hash to Uint8Array instead of Buffer.

1.0.19

Added

  • CLValue.isList and CLValue.asList.

Fixed

  • BytesArrayValue's fromBytes.

1.0.18

Added

  • Partial support for the Contract object under StoredValue.

Fixed

  • Deploy's body hash derivation.

1.0.17

Added

  • Added DeployUtils.addArgToDeploy(deploy: Deploy, name: string, value: CLValue) to be able to modify Deploy's session arguments. It creates a new deploy instance. Can not be used on signed deploys.

Changed

  • Default gasPrice changed from 10 to 1.
  • Casper balances checks return BigNumber now.

1.0.15

Added

  • Started using CHANGELOG.md.

Changed

  • Changed CLValue's value to value() and remainder to remainder().