From 6f0a1508eea74de88528c9ec347a8fe17f465223 Mon Sep 17 00:00:00 2001 From: Alexander Schmidt Date: Mon, 26 Jun 2023 09:01:13 +0200 Subject: [PATCH] changelog --- .changes/account-native-token.md | 5 +++++ sdk/CHANGELOG.md | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changes/account-native-token.md diff --git a/.changes/account-native-token.md b/.changes/account-native-token.md new file mode 100644 index 0000000000..0a0dfd1898 --- /dev/null +++ b/.changes/account-native-token.md @@ -0,0 +1,5 @@ +--- +"wallet-nodejs-binding": patch +--- + +Rename `Account::mintNativeToken` to `createNativeToken`, `Account::increaseNativeTokenSupply` to `mintNativeToken`, `Account::decreaseNativeTokenSupply` to `meltNativeToken`; diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index bd655380cb..fd19a6d8d1 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -105,6 +105,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Use concrete ID types instead of String in HTTP responses; - `Client::get_outputs_metadata_ignore_errors` returns `OutputMetadata` instead of DTO; - `ClientInner::get_output_metadata` returns `OutputMetadata` instead of DTO; +- Rename `MintNativeToken` to `CreateNativeToken`, `IncreaseNativeTokenSupply` to `MintNativeToken`, `DecreaseNativeTokenSupply` to `MeltNativeToken`; ### Removed