Releases: moonbeam-foundation/xcm-sdk
Releases · moonbeam-foundation/xcm-sdk
v0.3.1
What's Changed
- Robonomics xcXRT integration with Moonriver by @mmaurello in #46
Full Changelog: v0.3.0...v0.3.1
v0.3.0
What's Changed
- Bit.Country Pioneer integration with Moonbase by @mmaurello in #39
Full Changelog: v0.2.0...v0.3.0
v0.2.0
What's Changed
- XCM Transact implementation by @ekenigs in #38
- Turborepo by @ekenigs in #41
- Fixed acceptance tests in CI after Turborepo PR by @ekenigs in #43
- Updated pipeline to publish dev or beta tag by @ekenigs in #44
- Crust Shadow + Calamari MOVR integration by @mmaurello in #42
- Bifrost integration with Moonbeam [xcBNC and GLMR] by @mmaurello in #45
Full Changelog: v0.1.1...v0.2.0
v0.1.1
v0.1.0
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
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