Skip to content

Releases: moonbeam-foundation/xcm-sdk

v0.3.5

27 Dec 17:57
80c99b7
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.4...v0.3.5

v0.3.4

23 Dec 09:01
fc078b8
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.3...v0.3.4

v0.3.3

16 Dec 14:10
438a8c6
Compare
Choose a tag to compare

What's Changed

  • Fixed toDecimal and added toBigInt by @ekenigs in #50
  • Fixes for getPolkadotApi and others by @ekenigs in #51

Full Changelog: v0.3.2...v0.3.3

-import { toDecimal, getPolkadotApi } from '@moonbeam-network/xcm-sdk'
+import { toDecimal, getPolkadotApi } from '@moonbeam-network/xcm-utils'

v0.3.2

12 Dec 13:24
80c199c
Compare
Choose a tag to compare

What's Changed

  • Patch xTokens weight param breaking changes by @fxgamundi in #47
  • Removed unused Alphanet chains and assets by @fxgamundi in #48

Full Changelog: v0.3.1...v0.3.2

v0.3.1

22 Nov 09:44
15eaf5e
Compare
Choose a tag to compare

What's Changed

  • Robonomics xcXRT integration with Moonriver by @mmaurello in #46

Full Changelog: v0.3.0...v0.3.1

v0.3.0

21 Nov 10:48
811f6ae
Compare
Choose a tag to compare

What's Changed

  • Bit.Country Pioneer integration with Moonbase by @mmaurello in #39

Full Changelog: v0.2.0...v0.3.0

v0.2.0

16 Nov 17:43
bcaec2a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.1...v0.2.0

v0.1.1

28 Oct 11:27
e9bdbfc
Compare
Choose a tag to compare

What's Changed

  • xcXRT integration with moonbase (#40)

v0.1.0

21 Oct 11:51
19f2d56
Compare
Choose a tag to compare

What's Changed

  • Compatibility with local assets and better handling of deposits XCM fee by @fxgamundi in #31
  • Removed Centrifuge Alphanet and xUSDC by @fxgamundi in #35
  • Configure minimal balance for GLMR and MOVR on Acala and Karura by @mmaurello in #36

Breaking Changes

export interface DepositTransferData<
  Symbols extends AssetSymbol = AssetSymbol,
  ChainKeys extends ChainKey = ChainKey,
> {
  asset: AssetWithDecimals<Symbols>;
  existentialDeposit: bigint;
  min: bigint;
- moonChainFee?: bigint;
+ moonChainFee: XcmFeeWithBalance; 
  native: AssetWithDecimals<Symbols>;
  origin: MoonChain | Chain<ChainKeys>;
  source: Chain<ChainKeys>;
  sourceBalance: bigint;
  sourceFeeBalance?: Balance<Symbols>;
  sourceMinBalance: bigint;
  getFee: (amount?: bigint) => Promise<bigint>;
  send: (amount: bigint, cb?: ExtrinsicEventsCallback) => Promise<Hash>;
}

+export interface XcmFeeWithBalance extends Balance {
+  fee: bigint;
+}

Full Changelog: v0.0.26...v0.1.0

v0.0.26

14 Oct 11:49
4bfce5d
Compare
Choose a tag to compare

What's Changed

  • Updated Acala and Karura WS endpoints by @ekenigs in #28
  • Acceptance tests for Moonbeam by @ekenigs in #21
  • Acceptance tests fix by @ekenigs in #30
  • Removed unused Alphanet chains and assets by @fxgamundi in #32
  • Darwinia integration for Moonbeam, fix for Crab in Moonriver by @mmaurello in #33

New Contributors

  • @fxgamundi made their first contribution in #32

Full Changelog: v0.0.25...v0.0.26