Skip to content
Merged
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
4 changes: 4 additions & 0 deletions packages/bridge-status-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Support batch sell (EIP-7702/nested batch) transactions in the quote-status flow, so every quote submitted under a single batch transaction is reported to the backend. All quotes sharing one batch source transaction are reported as `SUBMITTED` under the shared source transaction hash and `txMetaId`, and are finalized together when that transaction confirms or fails. ([#9514](https://github.com/MetaMask/core/pull/9514))

## [74.2.0]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5138,7 +5138,6 @@ exports[`BridgeStatusController submitTx: Solana bridge should successfully subm
"steps": [
{
"action": "bridge",
"destAmount": "0.5",
"destAsset": {
"address": "0x...",
"assetId": "eip155:1/slip44:60",
Expand All @@ -5148,12 +5147,6 @@ exports[`BridgeStatusController submitTx: Solana bridge should successfully subm
"symbol": "ETH",
},
"destChainId": 1,
"protocol": {
"displayName": "Test Protocol",
"icon": "test-icon",
"name": "test-protocol",
},
"srcAmount": "1000000000",
"srcAsset": {
"address": "native",
"assetId": "eip155:1399811149/slip44:501",
Expand Down Expand Up @@ -5544,7 +5537,6 @@ exports[`BridgeStatusController submitTx: Solana swap should successfully submit
"steps": [
{
"action": "bridge",
"destAmount": "0.5",
"destAsset": {
"address": "0x...",
"assetId": "eip155:1/slip44:60",
Expand All @@ -5554,12 +5546,6 @@ exports[`BridgeStatusController submitTx: Solana swap should successfully submit
"symbol": "ETH",
},
"destChainId": 1,
"protocol": {
"displayName": "Test Protocol",
"icon": "test-icon",
"name": "test-protocol",
},
"srcAmount": "1000000000",
"srcAsset": {
"address": "native",
"assetId": "eip155:1399811149/slip44:501",
Expand Down Expand Up @@ -5953,7 +5939,6 @@ exports[`BridgeStatusController submitTx: Tron swap with approval should success
"steps": [
{
"action": "swap",
"destAmount": "500000000",
"destAsset": {
"address": "native",
"assetId": "tron:728126428/slip44:195",
Expand All @@ -5963,12 +5948,6 @@ exports[`BridgeStatusController submitTx: Tron swap with approval should success
"symbol": "TRX",
},
"destChainId": 728126428,
"protocol": {
"displayName": "Test Protocol",
"icon": "test-icon",
"name": "test-protocol",
},
"srcAmount": "1000000",
"srcAsset": {
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"assetId": "tron:728126428/slip44:195",
Expand Down Expand Up @@ -6174,7 +6153,6 @@ exports[`BridgeStatusController submitTx: Tron swap with approval should success
"steps": [
{
"action": "swap",
"destAmount": "500000000",
"destAsset": {
"address": "native",
"assetId": "tron:728126428/slip44:195",
Expand All @@ -6184,12 +6162,6 @@ exports[`BridgeStatusController submitTx: Tron swap with approval should success
"symbol": "TRX",
},
"destChainId": 728126428,
"protocol": {
"displayName": "Test Protocol",
"icon": "test-icon",
"name": "test-protocol",
},
"srcAmount": "1000000",
"srcAsset": {
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"assetId": "tron:728126428/slip44:195",
Expand Down
Loading