Skip to content

Commit

Permalink
Add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Jan 10, 2022
1 parent ea06f78 commit d4dcdd0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@

## Unreleased

### Breaking Change

- Remove the `createSubaccount` method from `Account` and `MuxedAccount` [#487](https://github.com/stellar/js-stellar-base/pull/487). You should prefer to do this manually:

```js
let mux1 = new MuxedAccount(someAccount, '1');

// before:
let mux2 = mux1.createSubaccount('2');

// now:
let mux2 = new MuxedAccount(mux1.baseAccount(), '2');
```

## [v6.0.6](https://github.com/stellar/js-stellar-base/compare/v6.0.5..v6.0.6)

Expand Down

0 comments on commit d4dcdd0

Please sign in to comment.