Skip to content

Releases: moonbeam-foundation/xcm-sdk

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

v0.0.25

29 Sep 12:23
04dbe4d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.24...v0.0.25

v0.0.24

27 Sep 12:20
23580e0
Compare
Choose a tag to compare

What's Changed

  • GitHub actions pipeline to release packages and update json files by @ekenigs in #20
  • Updated license to MIT by @ekenigs in #22
  • Fixed type after license update by @ekenigs in #23
  • Added option to pass Symbol or Asset and Key or Chain by @ekenigs in #25
  • USDT Moonbeam integration by @mmaurello in #24