Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ All notable changes will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## Unreleased
- TBD

## 10.0.1-beta.1
- [TokenPayment instead of Balance, where applicable](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/193)
- [Breaking change: deprecate / remove balance & balance builder](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/194)
- [Breaking change: Deprecate / remove balance & balance builder](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/194)
- [Breaking change: Deprecate EsdtHelpers in favor of @elrondnetwork/transaction-decoder](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/195/files)

## 10.0.0-alpha.5
- [Breaking change: adjustements to transaction awaitening and completion, transaction watcher](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/173)
Expand Down Expand Up @@ -55,6 +59,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- Remove `interaction.withGasLimitComponents()`. Not so helpful anymore (since `NetworkConfig` isn't a singleton anymore).
- `TokenPayment` should be used instead of `Balance`, where applicable.
- Deprecate / remove `Balance` & `BalanceBuilder`. `TokenPayment` / `IAccountBalance` (a simple big number) should be used instead, depending on the purpose.
- Deprecated `EsdtHelpers` in favor of `@elrondnetwork/transaction-decoder`.

## [10.0.0-beta.3]
- [Extract dapp / signing providers to separate repositories](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/170)
Expand Down
20 changes: 11 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elrondnetwork/erdjs",
"version": "10.0.1-beta.0",
"version": "10.0.1-beta.1",
"description": "Smart Contracts interaction framework",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down Expand Up @@ -36,7 +36,7 @@
"protobufjs": "6.10.2"
},
"devDependencies": {
"@elrondnetwork/erdjs-network-providers": "0.1.3",
"@elrondnetwork/erdjs-network-providers": "0.1.4",
"@elrondnetwork/erdjs-walletcore": "1.0.0",
"@types/assert": "1.4.6",
"@types/chai": "4.2.11",
Expand Down
41 changes: 0 additions & 41 deletions src/esdtHelpers.spec.ts

This file was deleted.

75 changes: 0 additions & 75 deletions src/esdtHelpers.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ export * from "./networkParams";
export * from "./signableMessage";
export * from "./utils";
export * from "./scArgumentsParser";
export * from "./esdtHelpers";
export * from "./tokenPayment";
export * from "./smartcontracts";
6 changes: 3 additions & 3 deletions src/testutils/mockProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ export class MockProvider {

this.accounts.set(
MockProvider.AddressOfAlice.bech32(),
new AccountOnNetwork({ nonce: 0, balance: createAccountBalance(1000).toString() })
new AccountOnNetwork({ nonce: 0, balance: createAccountBalance(1000) })
);
this.accounts.set(
MockProvider.AddressOfBob.bech32(),
new AccountOnNetwork({ nonce: 5, balance: createAccountBalance(500).toString() })
new AccountOnNetwork({ nonce: 5, balance: createAccountBalance(500) })
);
this.accounts.set(
MockProvider.AddressOfCarol.bech32(),
new AccountOnNetwork({ nonce: 42, balance: createAccountBalance(300).toString() })
new AccountOnNetwork({ nonce: 42, balance: createAccountBalance(300) })
);
}

Expand Down