Skip to content
Open
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
5 changes: 0 additions & 5 deletions .changeset/advanced-mode-settings.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/appearance-changed-event.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/bump-widget-deps.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/emb-452-amount-input-cards.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/metamask-bitcoin-support.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/remove-phantom-bitcoin.md

This file was deleted.

24 changes: 24 additions & 0 deletions packages/wallet-management/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @lifi/wallet-management

## 4.1.1

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- [#805](https://github.com/lifinance/widget/pull/805) [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d) Thanks [@chybisov](https://github.com/chybisov)! - feat: recognize MetaMask Bitcoin in the wallet list

Adds MetaMask Bitcoin (`io.metamask.bitcoin`) detection (via the shared
`window.ethereum.isMetaMask` signal, same extension as MetaMask EVM) and icon, so
it dedupes with MetaMask EVM in the wallet list. `BitcoinProvider` now accepts a
`connectors` option to append extra Bigmi connectors.

The connector itself is opt-in, mirroring `reown()`: install
`@metamask/bitcoin-wallet-standard` + `@metamask/multichain-api-client`, call
`registerBitcoinWalletStandard({ client })`, and add `metamask()` (from
`@bigmi/client`) via `BitcoinProvider({ connectors: [metamask()] })` or
`createDefaultBigmiConfig`. No `@metamask/*` deps are added to the widget packages.

Also bumps `@bigmi/client` to `^0.9.0` and `@bigmi/react` to `^0.8.2`.

- Updated dependencies [[`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5), [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d), [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9)]:
- @lifi/widget-provider@4.2.0

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-management/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/wallet-management",
"version": "4.1.0",
"version": "4.1.1",
"description": "LI.FI Wallet Management solution.",
"type": "module",
"main": "./src/index.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/widget-light/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lifi/widget-light

## 4.2.0

### Minor Changes

- [#778](https://github.com/lifinance/widget/pull/778) [`eb4268f`](https://github.com/lifinance/widget/commit/eb4268fcdfedec194a35121d525fb1f7262348f6) Thanks [@effie-ms](https://github.com/effie-ms)! - Add `AppearanceChanged` widget event emitted when the user toggles light/dark/system in the settings page.

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-light/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget-light",
"version": "4.1.0",
"version": "4.2.0",
"description": "LI.FI Widget Light - a lightweight version of the LI.FI Widget for cross-chain bridging and swapping.",
"type": "module",
"main": "./src/index.ts",
Expand Down
28 changes: 28 additions & 0 deletions packages/widget-provider-bitcoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @lifi/widget-provider-bitcoin

## 4.2.0

### Minor Changes

- [#805](https://github.com/lifinance/widget/pull/805) [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d) Thanks [@chybisov](https://github.com/chybisov)! - feat: recognize MetaMask Bitcoin in the wallet list

Adds MetaMask Bitcoin (`io.metamask.bitcoin`) detection (via the shared
`window.ethereum.isMetaMask` signal, same extension as MetaMask EVM) and icon, so
it dedupes with MetaMask EVM in the wallet list. `BitcoinProvider` now accepts a
`connectors` option to append extra Bigmi connectors.

The connector itself is opt-in, mirroring `reown()`: install
`@metamask/bitcoin-wallet-standard` + `@metamask/multichain-api-client`, call
`registerBitcoinWalletStandard({ client })`, and add `metamask()` (from
`@bigmi/client`) via `BitcoinProvider({ connectors: [metamask()] })` or
`createDefaultBigmiConfig`. No `@metamask/*` deps are added to the widget packages.

Also bumps `@bigmi/client` to `^0.9.0` and `@bigmi/react` to `^0.8.2`.

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- [#804](https://github.com/lifinance/widget/pull/804) [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9) Thanks [@chybisov](https://github.com/chybisov)! - Remove Phantom from the Bitcoin wallet connectors. Phantom deprecated its Bitcoin wallet and removed the injected `window.phantom.bitcoin` provider, so it no longer connects for Bitcoin. The default Bitcoin config no longer registers the `phantom()` connector, and the `app.phantom.bitcoin` installed-wallet detection has been removed. Phantom for Solana/EVM is unaffected.

- Updated dependencies [[`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5), [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d), [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9)]:
- @lifi/widget-provider@4.2.0

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-provider-bitcoin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget-provider-bitcoin",
"version": "4.1.0",
"version": "4.2.0",
"description": "LI.FI Widget Provider for Bitcoin blockchain integration.",
"type": "module",
"main": "./src/index.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/widget-provider-ethereum/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @lifi/widget-provider-ethereum

## 4.1.1

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- Updated dependencies [[`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5), [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d), [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9)]:
- @lifi/widget-provider@4.2.0

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-provider-ethereum/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget-provider-ethereum",
"version": "4.1.0",
"version": "4.1.1",
"description": "LI.FI Widget Provider for Ethereum blockchain integration.",
"type": "module",
"main": "./src/index.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/widget-provider-solana/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @lifi/widget-provider-solana

## 4.1.1

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- Updated dependencies [[`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5), [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d), [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9)]:
- @lifi/widget-provider@4.2.0

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-provider-solana/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget-provider-solana",
"version": "4.1.0",
"version": "4.1.1",
"description": "LI.FI Widget Provider for Solana blockchain integration.",
"type": "module",
"main": "./src/index.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/widget-provider-sui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @lifi/widget-provider-sui

## 4.1.1

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- Updated dependencies [[`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5), [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d), [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9)]:
- @lifi/widget-provider@4.2.0

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-provider-sui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget-provider-sui",
"version": "4.1.0",
"version": "4.1.1",
"description": "LI.FI Widget Provider for Sui blockchain integration.",
"type": "module",
"main": "./src/index.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/widget-provider-tron/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @lifi/widget-provider-tron

## 4.1.1

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- Updated dependencies [[`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5), [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d), [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9)]:
- @lifi/widget-provider@4.2.0

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-provider-tron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget-provider-tron",
"version": "4.1.0",
"version": "4.1.1",
"description": "LI.FI Widget Provider for Tron blockchain integration.",
"type": "module",
"main": "./src/index.ts",
Expand Down
25 changes: 25 additions & 0 deletions packages/widget-provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @lifi/widget-provider

## 4.2.0

### Minor Changes

- [#805](https://github.com/lifinance/widget/pull/805) [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d) Thanks [@chybisov](https://github.com/chybisov)! - feat: recognize MetaMask Bitcoin in the wallet list

Adds MetaMask Bitcoin (`io.metamask.bitcoin`) detection (via the shared
`window.ethereum.isMetaMask` signal, same extension as MetaMask EVM) and icon, so
it dedupes with MetaMask EVM in the wallet list. `BitcoinProvider` now accepts a
`connectors` option to append extra Bigmi connectors.

The connector itself is opt-in, mirroring `reown()`: install
`@metamask/bitcoin-wallet-standard` + `@metamask/multichain-api-client`, call
`registerBitcoinWalletStandard({ client })`, and add `metamask()` (from
`@bigmi/client`) via `BitcoinProvider({ connectors: [metamask()] })` or
`createDefaultBigmiConfig`. No `@metamask/*` deps are added to the widget packages.

Also bumps `@bigmi/client` to `^0.9.0` and `@bigmi/react` to `^0.8.2`.

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- [#804](https://github.com/lifinance/widget/pull/804) [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9) Thanks [@chybisov](https://github.com/chybisov)! - Remove Phantom from the Bitcoin wallet connectors. Phantom deprecated its Bitcoin wallet and removed the injected `window.phantom.bitcoin` provider, so it no longer connects for Bitcoin. The default Bitcoin config no longer registers the `phantom()` connector, and the `app.phantom.bitcoin` installed-wallet detection has been removed. Phantom for Solana/EVM is unaffected.

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget-provider",
"version": "4.1.0",
"version": "4.2.0",
"description": "LI.FI Widget Provider - base provider package for blockchain integrations.",
"type": "module",
"main": "./src/index.ts",
Expand Down
18 changes: 18 additions & 0 deletions packages/widget/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @lifi/widget

## 4.2.0

### Minor Changes

- [#792](https://github.com/lifinance/widget/pull/792) [`549d0f0`](https://github.com/lifinance/widget/commit/549d0f0dd8e4d25a57c0c8a52181531cad8b32ee) Thanks [@effie-ms](https://github.com/effie-ms)! - Add advanced mode settings with dedicated slippage and route priority pages, plus a settings panel for configuring them.

- [#778](https://github.com/lifinance/widget/pull/778) [`eb4268f`](https://github.com/lifinance/widget/commit/eb4268fcdfedec194a35121d525fb1f7262348f6) Thanks [@effie-ms](https://github.com/effie-ms)! - Add `AppearanceChanged` widget event emitted when the user toggles light/dark/system in the settings page.

- [#776](https://github.com/lifinance/widget/pull/776) [`befcc74`](https://github.com/lifinance/widget/commit/befcc74bedbeb5f46814c96b67485f75517e7ab7) Thanks [@effie-ms](https://github.com/effie-ms)! - Add an opt-in redesigned Send/Receive amount input card pair (`AmountInputCardPair`), enabled via `defaultUI.layout: 'cards'` (defaults to `'default'`). With `'default'`, the chain/token selectors plus the single `AmountInput` remain the amount-entry UI. The new cards feature a token pill selector, percentage chips with gas-reserve deduction, fiat/token toggle, price (fiat) input mode, a swap button that reverses the from/to selection, and a receive card showing route price impact.

### Patch Changes

- [#816](https://github.com/lifinance/widget/pull/816) [`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5) Thanks [@chybisov](https://github.com/chybisov)! - Bump dependencies (@lifi/sdk → 4.1.x, MUI, wagmi, vite, and others).

- Updated dependencies [[`5071e9e`](https://github.com/lifinance/widget/commit/5071e9e93febb833b7a5989ab30586d4dcf527d5), [`6d19d22`](https://github.com/lifinance/widget/commit/6d19d22f9ed796a0067cccb14885c15d0ca6061d), [`bf91f25`](https://github.com/lifinance/widget/commit/bf91f25149496c00e1e5635e6d65d848c49a56c9)]:
- @lifi/wallet-management@4.1.1
- @lifi/widget-provider@4.2.0

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/widget/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/widget",
"version": "4.1.0",
"version": "4.2.0",
"description": "LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.",
"type": "module",
"main": "./src/index.ts",
Expand Down