|
|
|
import EventEmitter from 'safe-event-emitter';
|
|
|
|
import { ObservableStore } from '@metamask/obs-store';
|
|
|
|
import { bufferToHex, keccak, toBuffer, isHexString } from 'ethereumjs-util';
|
|
|
|
import EthQuery from 'ethjs-query';
|
|
|
|
import { ethErrors } from 'eth-rpc-errors';
|
|
|
|
import Common from '@ethereumjs/common';
|
|
|
|
import { TransactionFactory } from '@ethereumjs/tx';
|
|
|
|
import NonceTracker from 'nonce-tracker';
|
|
|
|
import log from 'loglevel';
|
|
|
|
import BigNumber from 'bignumber.js';
|
|
|
|
import { merge, pickBy } from 'lodash';
|
|
|
|
import cleanErrorStack from '../../lib/cleanErrorStack';
|
|
|
|
import {
|
|
|
|
hexToBn,
|
|
|
|
bnToHex,
|
|
|
|
BnMultiplyByFraction,
|
|
|
|
addHexPrefix,
|
|
|
|
getChainType,
|
|
|
|
} from '../../lib/util';
|
|
|
|
import { TRANSACTION_NO_CONTRACT_ERROR_KEY } from '../../../../ui/helpers/constants/error-keys';
|
|
|
|
import { calcGasTotal } from '../../../../ui/pages/send/send.utils';
|
|
|
|
import { getSwapsTokensReceivedFromTxMeta } from '../../../../ui/pages/swaps/swaps.util';
|
|
|
|
import {
|
|
|
|
hexWEIToDecGWEI,
|
|
|
|
decimalToHex,
|
|
|
|
hexWEIToDecETH,
|
|
|
|
} from '../../../../ui/helpers/utils/conversions.util';
|
|
|
|
import {
|
|
|
|
TRANSACTION_STATUSES,
|
|
|
|
TRANSACTION_TYPES,
|
|
|
|
TRANSACTION_ENVELOPE_TYPES,
|
|
|
|
TRANSACTION_EVENTS,
|
|
|
|
} from '../../../../shared/constants/transaction';
|
|
|
|
import { TRANSACTION_ENVELOPE_TYPE_NAMES } from '../../../../ui/helpers/constants/transactions';
|
|
|
|
import { METAMASK_CONTROLLER_EVENTS } from '../../metamask-controller';
|
|
|
|
import {
|
|
|
|
GAS_LIMITS,
|
|
|
|
GAS_ESTIMATE_TYPES,
|
|
|
|
GAS_RECOMMENDATIONS,
|
|
|
|
CUSTOM_GAS_ESTIMATE,
|
|
|
|
PRIORITY_LEVELS,
|
|
|
|
} from '../../../../shared/constants/gas';
|
|
|
|
import { decGWEIToHexWEI } from '../../../../shared/modules/conversion.utils';
|
|
|
|
import { isSwapsDefaultTokenAddress } from '../../../../shared/modules/swaps.utils';
|
|
|
|
import { EVENT } from '../../../../shared/constants/metametrics';
|
|
|
|
import {
|
|
|
|
HARDFORKS,
|
|
|
|
MAINNET,
|
|
|
|
NETWORK_TYPE_RPC,
|
|
|
|
CHAIN_ID_TO_GAS_LIMIT_BUFFER_MAP,
|
|
|
|
} from '../../../../shared/constants/network';
|
|
|
|
import {
|
|
|
|
determineTransactionAssetType,
|
|
|
|
determineTransactionType,
|
|
|
|
isEIP1559Transaction,
|
|
|
|
} from '../../../../shared/modules/transaction.utils';
|
|
|
|
import { ORIGIN_METAMASK } from '../../../../shared/constants/app';
|
|
|
|
import TransactionStateManager from './tx-state-manager';
|
|
|
|
import TxGasUtil from './tx-gas-utils';
|
|
|
|
import PendingTransactionTracker from './pending-tx-tracker';
|
|
|
|
import * as txUtils from './lib/util';
|
|
|
|
|
|
|
|
const MAX_MEMSTORE_TX_LIST_SIZE = 100; // Number of transactions (by unique nonces) to keep in memory
|
|
|
|
const UPDATE_POST_TX_BALANCE_TIMEOUT = 5000;
|
|
|
|
|
|
|
|
const SWAP_TRANSACTION_TYPES = [
|
|
|
|
TRANSACTION_TYPES.SWAP,
|
|
|
|
TRANSACTION_TYPES.SWAP_APPROVAL,
|
|
|
|
];
|
|
|
|
|
|
|
|
// Only certain types of transactions should be allowed to be specified when
|
|
|
|
// adding a new unapproved transaction.
|
|
|
|
const VALID_UNAPPROVED_TRANSACTION_TYPES = [
|
|
|
|
...SWAP_TRANSACTION_TYPES,
|
|
|
|
TRANSACTION_TYPES.SIMPLE_SEND,
|
|
|
|
TRANSACTION_TYPES.TOKEN_METHOD_TRANSFER,
|
|
|
|
TRANSACTION_TYPES.TOKEN_METHOD_TRANSFER_FROM,
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {import('../../../../shared/constants/transaction').TransactionMeta} TransactionMeta
|
|
|
|
* @typedef {import('../../../../shared/constants/transaction').TransactionMetaMetricsEventString} TransactionMetaMetricsEventString
|
|
|
|
*/
|
|
|
|
|
|
|
|
const METRICS_STATUS_FAILED = 'failed on-chain';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {object} CustomGasSettings
|
|
|
|
* @property {string} [gas] - The gas limit to use for the transaction
|
|
|
|
* @property {string} [gasPrice] - The gasPrice to use for a legacy transaction
|
|
|
|
* @property {string} [maxFeePerGas] - The maximum amount to pay per gas on a
|
|
|
|
* EIP-1559 transaction
|
|
|
|
* @property {string} [maxPriorityFeePerGas] - The maximum amount of paid fee
|
|
|
|
* to be distributed to miner in an EIP-1559 transaction
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transaction Controller is an aggregate of sub-controllers and trackers
|
|
|
|
* composing them in a way to be exposed to the metamask controller
|
|
|
|
*
|
|
|
|
* - `txStateManager
|
|
|
|
* responsible for the state of a transaction and
|
|
|
|
* storing the transaction
|
|
|
|
* - pendingTxTracker
|
|
|
|
* watching blocks for transactions to be include
|
|
|
|
* and emitting confirmed events
|
|
|
|
* - txGasUtil
|
|
|
|
* gas calculations and safety buffering
|
|
|
|
* - nonceTracker
|
|
|
|
* calculating nonces
|
|
|
|
*
|
|
|
|
* @param {object} opts
|
|
|
|
* @param {object} opts.initState - initial transaction list default is an empty array
|
|
|
|
* @param {object} opts.networkStore - an observable store for network number
|
|
|
|
* @param {object} opts.blockTracker - An instance of eth-blocktracker
|
|
|
|
* @param {object} opts.provider - A network provider.
|
|
|
|
* @param {Function} opts.signTransaction - function the signs an @ethereumjs/tx
|
|
|
|
* @param {object} opts.getPermittedAccounts - get accounts that an origin has permissions for
|
|
|
|
* @param {Function} opts.signTransaction - ethTx signer that returns a rawTx
|
|
|
|
* @param {number} [opts.txHistoryLimit] - number *optional* for limiting how many transactions are in state
|
|
|
|
* @param {object} opts.preferencesStore
|
|
|
|
*/
|
|
|
|
|
|
|
|
export default class TransactionController extends EventEmitter {
|
|
|
|
constructor(opts) {
|
|
|
|
super();
|
|
|
|
this.networkStore = opts.networkStore || new ObservableStore({});
|
|
|
|
this._getCurrentChainId = opts.getCurrentChainId;
|
|
|
|
this.getProviderConfig = opts.getProviderConfig;
|
|
|
|
this._getCurrentNetworkEIP1559Compatibility =
|
|
|
|
opts.getCurrentNetworkEIP1559Compatibility;
|
|
|
|
this._getCurrentAccountEIP1559Compatibility =
|
|
|
|
opts.getCurrentAccountEIP1559Compatibility;
|
|
|
|
this.preferencesStore = opts.preferencesStore || new ObservableStore({});
|
|
|
|
this.provider = opts.provider;
|
|
|
|
this.getPermittedAccounts = opts.getPermittedAccounts;
|
|
|
|
this.blockTracker = opts.blockTracker;
|
|
|
|
this.signEthTx = opts.signTransaction;
|
|
|
|
this.inProcessOfSigning = new Set();
|
|
|
|
this._trackMetaMetricsEvent = opts.trackMetaMetricsEvent;
|
|
|
|
this._getParticipateInMetrics = opts.getParticipateInMetrics;
|
|
|
|
this._getEIP1559GasFeeEstimates = opts.getEIP1559GasFeeEstimates;
|
|
|
|
this.createEventFragment = opts.createEventFragment;
|
|
|
|
this.updateEventFragment = opts.updateEventFragment;
|
|
|
|
this.finalizeEventFragment = opts.finalizeEventFragment;
|
|
|
|
this.getEventFragmentById = opts.getEventFragmentById;
|
|
|
|
this.getDeviceModel = opts.getDeviceModel;
|
|
|
|
this.getAccountType = opts.getAccountType;
|
|
|
|
this.getTokenStandardAndDetails = opts.getTokenStandardAndDetails;
|
|
|
|
|
|
|
|
this.memStore = new ObservableStore({});
|
|
|
|
this.query = new EthQuery(this.provider);
|
|
|
|
|
|
|
|
this.txGasUtil = new TxGasUtil(this.provider);
|
|
|
|
this._mapMethods();
|
|
|
|
this.txStateManager = new TransactionStateManager({
|
|
|
|
initState: opts.initState,
|
|
|
|
txHistoryLimit: opts.txHistoryLimit,
|
|
|
|
getNetwork: this.getNetwork.bind(this),
|
|
|
|
getCurrentChainId: opts.getCurrentChainId,
|
|
|
|
});
|
|
|
|
this._onBootCleanUp();
|
|
|
|
|
|
|
|
this.store = this.txStateManager.store;
|
|
|
|
this.nonceTracker = new NonceTracker({
|
|
|
|
provider: this.provider,
|
|
|
|
blockTracker: this.blockTracker,
|
|
|
|
getPendingTransactions: (...args) => {
|
|
|
|
const pendingTransactions = this.txStateManager.getPendingTransactions(
|
|
|
|
...args,
|
|
|
|
);
|
|
|
|
const externalPendingTransactions = opts.getExternalPendingTransactions(
|
|
|
|
...args,
|
|
|
|
);
|
|
|
|
return [...pendingTransactions, ...externalPendingTransactions];
|
|
|
|
},
|
|
|
|
getConfirmedTransactions: this.txStateManager.getConfirmedTransactions.bind(
|
|
|
|
this.txStateManager,
|
|
|
|
),
|
|
|
|
});
|
|
|
|
|
|
|
|
this.pendingTxTracker = new PendingTransactionTracker({
|
|
|
|
provider: this.provider,
|
|
|
|
nonceTracker: this.nonceTracker,
|
|
|
|
publishTransaction: (rawTx) => this.query.sendRawTransaction(rawTx),
|
|
|
|
getPendingTransactions: () => {
|
|
|
|
const pending = this.txStateManager.getPendingTransactions();
|
|
|
|
const approved = this.txStateManager.getApprovedTransactions();
|
|
|
|
return [...pending, ...approved];
|
|
|
|
},
|
|
|
|
approveTransaction: this.approveTransaction.bind(this),
|
|
|
|
getCompletedTransactions: this.txStateManager.getConfirmedTransactions.bind(
|
|
|
|
this.txStateManager,
|
|
|
|
),
|
|
|
|
});
|
|
|
|
|
|
|
|
this.txStateManager.store.subscribe(() =>
|
|
|
|
this.emit(METAMASK_CONTROLLER_EVENTS.UPDATE_BADGE),
|
|
|
|
);
|
|
|
|
this._setupListeners();
|
|
|
|
// memstore is computed from a few different stores
|
|
|
|
this._updateMemstore();
|
|
|
|
this.txStateManager.store.subscribe(() => this._updateMemstore());
|
Fixed Vivek's bug (#5860)
* Fixed Vivek's bug
Fixes #5850
What was happening:
It seems that his MetaMask had crashed while some new transactions had
been loading defaults. He probably had a network connectivity issue to
Infura (which we are working with Infura to address).
As a result of this network cutout, his three unapproved transactions
were not marked failed, and were not marked as `loadingDefaults =
false`, as their gas prices had not yet been estimated.
Normally this behavior is supposed to clean itself up when the
transaction controller starts up, via the
`TransactionController._onBootCleanUp()` function, but in this case,
during unlock, that function was unable to do its job because when it
requested the transaction list, the current network was in the `loading`
state, making it proceed as if there were no pending transactions.
To fix this, I am doing two things:
- Setting transactions to loadingDefaults = false in more catch blocks.
- Calling `onBootCleanUp()` when the network store's status changes, so
that it will re-trigger when loading completes.
* Fixed reference
* Fixed infinite loop bug
Was refreshing the tx list on every tx state change instead of just
network changes, creating an infinite loop.
* Add notes to tx updates to clarify logs
6 years ago
|
|
|
this.networkStore.subscribe(() => {
|
|
|
|
this._onBootCleanUp();
|
|
|
|
this._updateMemstore();
|
|
|
|
});
|
|
|
|
|
|
|
|
// request state update to finalize initialization
|
|
|
|
this._updatePendingTxsAfterFirstBlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current chainId in the network store as a number, returning 0 if
|
|
|
|
* the chainId parses to NaN.
|
|
|
|
*
|
|
|
|
* @returns {number} The numerical chainId.
|
|
|
|
*/
|
|
|
|
getChainId() {
|
|
|
|
const networkState = this.networkStore.getState();
|
|
|
|
const chainId = this._getCurrentChainId();
|
|
|
|
const integerChainId = parseInt(chainId, 16);
|
|
|
|
if (networkState === 'loading' || Number.isNaN(integerChainId)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return integerChainId;
|
|
|
|
}
|
|
|
|
|
|
|
|
async getEIP1559Compatibility(fromAddress) {
|
|
|
|
const currentNetworkIsCompatible = await this._getCurrentNetworkEIP1559Compatibility();
|
|
|
|
const fromAccountIsCompatible = await this._getCurrentAccountEIP1559Compatibility(
|
|
|
|
fromAddress,
|
|
|
|
);
|
|
|
|
return currentNetworkIsCompatible && fromAccountIsCompatible;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* `@ethereumjs/tx` uses `@ethereumjs/common` as a configuration tool for
|
|
|
|
* specifying which chain, network, hardfork and EIPs to support for
|
|
|
|
* a transaction. By referencing this configuration, and analyzing the fields
|
|
|
|
* specified in txParams, `@ethereumjs/tx` is able to determine which EIP-2718
|
|
|
|
* transaction type to use.
|
|
|
|
*
|
|
|
|
* @param fromAddress
|
|
|
|
* @returns {Common} common configuration object
|
|
|
|
*/
|
|
|
|
async getCommonConfiguration(fromAddress) {
|
|
|
|
const { type, nickname: name } = this.getProviderConfig();
|
|
|
|
const supportsEIP1559 = await this.getEIP1559Compatibility(fromAddress);
|
|
|
|
|
|
|
|
// This logic below will have to be updated each time a hardfork happens
|
|
|
|
// that carries with it a new Transaction type. It is inconsequential for
|
|
|
|
// hardforks that do not include new types.
|
|
|
|
const hardfork = supportsEIP1559 ? HARDFORKS.LONDON : HARDFORKS.BERLIN;
|
|
|
|
|
|
|
|
// type will be one of our default network names or 'rpc'. the default
|
|
|
|
// network names are sufficient configuration, simply pass the name as the
|
|
|
|
// chain argument in the constructor.
|
|
|
|
if (type !== NETWORK_TYPE_RPC) {
|
|
|
|
return new Common({
|
|
|
|
chain: type,
|
|
|
|
hardfork,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// For 'rpc' we need to use the same basic configuration as mainnet,
|
|
|
|
// since we only support EVM compatible chains, and then override the
|
|
|
|
// name, chainId and networkId properties. This is done using the
|
|
|
|
// `forCustomChain` static method on the Common class.
|
|
|
|
const chainId = parseInt(this._getCurrentChainId(), 16);
|
|
|
|
const networkId = this.networkStore.getState();
|
|
|
|
|
|
|
|
const customChainParams = {
|
|
|
|
name,
|
|
|
|
chainId,
|
|
|
|
// It is improbable for a transaction to be signed while the network
|
|
|
|
// is loading for two reasons.
|
|
|
|
// 1. Pending, unconfirmed transactions are wiped on network change
|
|
|
|
// 2. The UI is unusable (loading indicator) when network is loading.
|
|
|
|
// setting the networkId to 0 is for type safety and to explicity lead
|
|
|
|
// the transaction to failing if a user is able to get to this branch
|
|
|
|
// on a custom network that requires valid network id. I have not ran
|
|
|
|
// into this limitation on any network I have attempted, even when
|
|
|
|
// hardcoding networkId to 'loading'.
|
|
|
|
networkId: networkId === 'loading' ? 0 : parseInt(networkId, 10),
|
|
|
|
};
|
|
|
|
|
|
|
|
return Common.forCustomChain(MAINNET, customChainParams, hardfork);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a tx to the txlist
|
|
|
|
*
|
|
|
|
* @param txMeta
|
|
|
|
* @fires ${txMeta.id}:unapproved
|
|
|
|
*/
|
|
|
|
addTransaction(txMeta) {
|
|
|
|
this.txStateManager.addTransaction(txMeta);
|
|
|
|
this.emit(`${txMeta.id}:unapproved`, txMeta);
|
|
|
|
this._trackTransactionMetricsEvent(txMeta, TRANSACTION_EVENTS.ADDED);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wipes the transactions for a given account
|
|
|
|
*
|
|
|
|
* @param {string} address - hex string of the from address for txs being removed
|
|
|
|
*/
|
|
|
|
wipeTransactions(address) {
|
|
|
|
this.txStateManager.wipeTransactions(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new unapproved transaction to the pipeline
|
|
|
|
*
|
|
|
|
* @returns {Promise<string>} the hash of the transaction after being submitted to the network
|
|
|
|
* @param {object} txParams - txParams for the transaction
|
|
|
|
* @param {object} opts - with the key origin to put the origin on the txMeta
|
|
|
|
*/
|
|
|
|
async newUnapprovedTransaction(txParams, opts = {}) {
|
|
|
|
log.debug(
|
|
|
|
`MetaMaskController newUnapprovedTransaction ${JSON.stringify(txParams)}`,
|
|
|
|
);
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
|
|
|
|
const initialTxMeta = await this.addUnapprovedTransaction(
|
|
|
|
txParams,
|
|
|
|
opts.origin,
|
|
|
|
);
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
|
|
|
|
// listen for tx completion (success, fail)
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
this.txStateManager.once(
|
|
|
|
`${initialTxMeta.id}:finished`,
|
|
|
|
(finishedTxMeta) => {
|
|
|
|
switch (finishedTxMeta.status) {
|
|
|
|
case TRANSACTION_STATUSES.SUBMITTED:
|
|
|
|
return resolve(finishedTxMeta.hash);
|
|
|
|
case TRANSACTION_STATUSES.REJECTED:
|
|
|
|
return reject(
|
|
|
|
cleanErrorStack(
|
|
|
|
ethErrors.provider.userRejectedRequest(
|
|
|
|
'MetaMask Tx Signature: User denied transaction signature.',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
case TRANSACTION_STATUSES.FAILED:
|
|
|
|
return reject(
|
|
|
|
cleanErrorStack(
|
|
|
|
ethErrors.rpc.internal(finishedTxMeta.err.message),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
return reject(
|
|
|
|
cleanErrorStack(
|
|
|
|
ethErrors.rpc.internal(
|
|
|
|
`MetaMask Tx Signature: Unknown problem: ${JSON.stringify(
|
|
|
|
finishedTxMeta.txParams,
|
|
|
|
)}`,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// ====================================================================================================================================================
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} txId
|
|
|
|
* @returns {TransactionMeta} the txMeta who matches the given id if none found
|
|
|
|
* for the network returns undefined
|
|
|
|
*/
|
|
|
|
_getTransaction(txId) {
|
|
|
|
const { transactions } = this.store.getState();
|
|
|
|
return transactions[txId];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} txId
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
_isUnapprovedTransaction(txId) {
|
|
|
|
return (
|
|
|
|
this.txStateManager.getTransaction(txId).status ===
|
|
|
|
TRANSACTION_STATUSES.UNAPPROVED
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} txId
|
|
|
|
* @param {string} fnName
|
|
|
|
*/
|
|
|
|
_throwErrorIfNotUnapprovedTx(txId, fnName) {
|
|
|
|
if (!this._isUnapprovedTransaction(txId)) {
|
|
|
|
throw new Error(
|
|
|
|
`TransactionsController: Can only call ${fnName} on an unapproved transaction.
|
|
|
|
Current tx status: ${this.txStateManager.getTransaction(txId).status}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_updateTransaction(txId, proposedUpdate, note) {
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
const updated = merge(txMeta, proposedUpdate);
|
|
|
|
this.txStateManager.updateTransaction(updated, note);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the params that are editible in the send edit flow
|
|
|
|
*
|
|
|
|
* @param {string} txId - transaction id
|
|
|
|
* @param {object} previousGasParams - holds the parameter to update
|
|
|
|
* @param {string} previousGasParams.maxFeePerGas
|
|
|
|
* @param {string} previousGasParams.maxPriorityFeePerGas
|
|
|
|
* @param {string} previousGasParams.gasLimit
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
updatePreviousGasParams(
|
|
|
|
txId,
|
|
|
|
{ maxFeePerGas, maxPriorityFeePerGas, gasLimit },
|
|
|
|
) {
|
|
|
|
const previousGasParams = {
|
|
|
|
previousGas: {
|
|
|
|
maxFeePerGas,
|
|
|
|
maxPriorityFeePerGas,
|
|
|
|
gasLimit,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// only update what is defined
|
|
|
|
previousGasParams.previousGas = pickBy(previousGasParams.previousGas);
|
|
|
|
const note = `Update Previous Gas for ${txId}`;
|
|
|
|
this._updateTransaction(txId, previousGasParams, note);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} txId - transaction id
|
|
|
|
* @param {object} editableParams - holds the eip1559 fees parameters
|
|
|
|
* @param {object} editableParams.data
|
|
|
|
* @param {string} editableParams.from
|
|
|
|
* @param {string} editableParams.to
|
|
|
|
* @param {string} editableParams.value
|
|
|
|
* @param {string} editableParams.gas
|
|
|
|
* @param {string} editableParams.gasPrice
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
async updateEditableParams(txId, { data, from, to, value, gas, gasPrice }) {
|
|
|
|
this._throwErrorIfNotUnapprovedTx(txId, 'updateEditableParams');
|
|
|
|
|
|
|
|
const editableParams = {
|
|
|
|
txParams: {
|
|
|
|
data,
|
|
|
|
from,
|
|
|
|
to,
|
|
|
|
value,
|
|
|
|
gas,
|
|
|
|
gasPrice,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// only update what is defined
|
|
|
|
editableParams.txParams = pickBy(
|
|
|
|
editableParams.txParams,
|
|
|
|
(prop) => prop !== undefined,
|
|
|
|
);
|
|
|
|
|
|
|
|
// update transaction type in case it has changes
|
|
|
|
const transactionBeforeEdit = this._getTransaction(txId);
|
|
|
|
const { type } = await determineTransactionType(
|
|
|
|
{
|
|
|
|
...transactionBeforeEdit.txParams,
|
|
|
|
...editableParams.txParams,
|
|
|
|
},
|
|
|
|
this.query,
|
|
|
|
);
|
|
|
|
editableParams.type = type;
|
|
|
|
|
|
|
|
const note = `Update Editable Params for ${txId}`;
|
|
|
|
|
|
|
|
this._updateTransaction(txId, editableParams, note);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the gas fees of the transaction with id if the transaction state is unapproved
|
|
|
|
*
|
|
|
|
* @param {string} txId - transaction id
|
|
|
|
* @param {object} txGasFees - holds the gas fees parameters
|
|
|
|
* @param {string} txGasFees.gasLimit
|
|
|
|
* @param {string} txGasFees.gasPrice
|
|
|
|
* @param {string} txGasFees.maxPriorityFeePerGas
|
|
|
|
* @param {string} txGasFees.maxFeePerGas
|
|
|
|
* @param {string} txGasFees.estimateUsed
|
|
|
|
* @param {string} txGasFees.estimateSuggested
|
|
|
|
* @param {string} txGasFees.defaultGasEstimates
|
|
|
|
* @param {string} txGasFees.gas
|
|
|
|
* @param {string} txGasFees.originalGasEstimate
|
|
|
|
* @param {string} txGasFees.userEditedGasLimit
|
|
|
|
* @param {string} txGasFees.userFeeLevel
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
updateTransactionGasFees(
|
|
|
|
txId,
|
|
|
|
{
|
|
|
|
gas,
|
|
|
|
gasLimit,
|
|
|
|
gasPrice,
|
|
|
|
maxPriorityFeePerGas,
|
|
|
|
maxFeePerGas,
|
|
|
|
estimateUsed,
|
|
|
|
estimateSuggested,
|
|
|
|
defaultGasEstimates,
|
|
|
|
originalGasEstimate,
|
|
|
|
userEditedGasLimit,
|
|
|
|
userFeeLevel,
|
|
|
|
},
|
|
|
|
) {
|
|
|
|
this._throwErrorIfNotUnapprovedTx(txId, 'updateTransactionGasFees');
|
|
|
|
|
|
|
|
let txGasFees = {
|
|
|
|
txParams: {
|
|
|
|
gas,
|
|
|
|
gasLimit,
|
|
|
|
gasPrice,
|
|
|
|
maxPriorityFeePerGas,
|
|
|
|
maxFeePerGas,
|
|
|
|
},
|
|
|
|
estimateUsed,
|
|
|
|
estimateSuggested,
|
|
|
|
defaultGasEstimates,
|
|
|
|
originalGasEstimate,
|
|
|
|
userEditedGasLimit,
|
|
|
|
userFeeLevel,
|
|
|
|
};
|
|
|
|
|
|
|
|
// only update what is defined
|
|
|
|
txGasFees.txParams = pickBy(txGasFees.txParams);
|
|
|
|
txGasFees = pickBy(txGasFees);
|
|
|
|
const note = `Update Transaction Gas Fees for ${txId}`;
|
|
|
|
this._updateTransaction(txId, txGasFees, note);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the estimate base fees of the transaction with id if the transaction state is unapproved
|
|
|
|
*
|
|
|
|
* @param {string} txId - transaction id
|
|
|
|
* @param {object} txEstimateBaseFees - holds the estimate base fees parameters
|
|
|
|
* @param {string} txEstimateBaseFees.estimatedBaseFee
|
|
|
|
* @param {string} txEstimateBaseFees.decEstimatedBaseFee
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
updateTransactionEstimatedBaseFee(
|
|
|
|
txId,
|
|
|
|
{ estimatedBaseFee, decEstimatedBaseFee },
|
|
|
|
) {
|
|
|
|
this._throwErrorIfNotUnapprovedTx(
|
|
|
|
txId,
|
|
|
|
'updateTransactionEstimatedBaseFee',
|
|
|
|
);
|
|
|
|
|
|
|
|
let txEstimateBaseFees = { estimatedBaseFee, decEstimatedBaseFee };
|
|
|
|
// only update what is defined
|
|
|
|
txEstimateBaseFees = pickBy(txEstimateBaseFees);
|
|
|
|
|
|
|
|
const note = `Update Transaction Estimated Base Fees for ${txId}`;
|
|
|
|
this._updateTransaction(txId, txEstimateBaseFees, note);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates a swap approval transaction with provided metadata and source token symbol
|
|
|
|
* if the transaction state is unapproved.
|
|
|
|
*
|
|
|
|
* @param {string} txId
|
|
|
|
* @param {object} swapApprovalTransaction - holds the metadata and token symbol
|
|
|
|
* @param {string} swapApprovalTransaction.type
|
|
|
|
* @param {string} swapApprovalTransaction.sourceTokenSymbol
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
updateSwapApprovalTransaction(txId, { type, sourceTokenSymbol }) {
|
|
|
|
this._throwErrorIfNotUnapprovedTx(txId, 'updateSwapApprovalTransaction');
|
|
|
|
|
|
|
|
let swapApprovalTransaction = { type, sourceTokenSymbol };
|
|
|
|
// only update what is defined
|
|
|
|
swapApprovalTransaction = pickBy(swapApprovalTransaction);
|
|
|
|
|
|
|
|
const note = `Update Swap Approval Transaction for ${txId}`;
|
|
|
|
this._updateTransaction(txId, swapApprovalTransaction, note);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates a swap transaction with provided metadata and source token symbol
|
|
|
|
* if the transaction state is unapproved.
|
|
|
|
*
|
|
|
|
* @param {string} txId
|
|
|
|
* @param {object} swapTransaction - holds the metadata
|
|
|
|
* @param {string} swapTransaction.sourceTokenSymbol
|
|
|
|
* @param {string} swapTransaction.destinationTokenSymbol
|
|
|
|
* @param {string} swapTransaction.type
|
|
|
|
* @param {string} swapTransaction.destinationTokenDecimals
|
|
|
|
* @param {string} swapTransaction.destinationTokenAddress
|
|
|
|
* @param {string} swapTransaction.swapMetaData
|
|
|
|
* @param {string} swapTransaction.swapTokenValue
|
|
|
|
* @param {string} swapTransaction.estimatedBaseFee
|
|
|
|
* @param {string} swapTransaction.approvalTxId
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
updateSwapTransaction(
|
|
|
|
txId,
|
|
|
|
{
|
|
|
|
sourceTokenSymbol,
|
|
|
|
destinationTokenSymbol,
|
|
|
|
type,
|
|
|
|
destinationTokenDecimals,
|
|
|
|
destinationTokenAddress,
|
|
|
|
swapMetaData,
|
|
|
|
swapTokenValue,
|
|
|
|
estimatedBaseFee,
|
|
|
|
approvalTxId,
|
|
|
|
},
|
|
|
|
) {
|
|
|
|
this._throwErrorIfNotUnapprovedTx(txId, 'updateSwapTransaction');
|
|
|
|
|
|
|
|
let swapTransaction = {
|
|
|
|
sourceTokenSymbol,
|
|
|
|
destinationTokenSymbol,
|
|
|
|
type,
|
|
|
|
destinationTokenDecimals,
|
|
|
|
destinationTokenAddress,
|
|
|
|
swapMetaData,
|
|
|
|
swapTokenValue,
|
|
|
|
estimatedBaseFee,
|
|
|
|
approvalTxId,
|
|
|
|
};
|
|
|
|
|
|
|
|
// only update what is defined
|
|
|
|
swapTransaction = pickBy(swapTransaction);
|
|
|
|
|
|
|
|
const note = `Update Swap Transaction for ${txId}`;
|
|
|
|
this._updateTransaction(txId, swapTransaction, note);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates a transaction's user settings only if the transaction state is unapproved
|
|
|
|
*
|
|
|
|
* @param {string} txId
|
|
|
|
* @param {object} userSettings - holds the metadata
|
|
|
|
* @param {string} userSettings.userEditedGasLimit
|
|
|
|
* @param {string} userSettings.userFeeLevel
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
updateTransactionUserSettings(txId, { userEditedGasLimit, userFeeLevel }) {
|
|
|
|
this._throwErrorIfNotUnapprovedTx(txId, 'updateTransactionUserSettings');
|
|
|
|
|
|
|
|
let userSettings = { userEditedGasLimit, userFeeLevel };
|
|
|
|
// only update what is defined
|
|
|
|
userSettings = pickBy(userSettings);
|
|
|
|
|
|
|
|
const note = `Update User Settings for ${txId}`;
|
|
|
|
this._updateTransaction(txId, userSettings, note);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* append new sendFlowHistory to the transaction with id if the transaction
|
|
|
|
* state is unapproved. Returns the updated transaction.
|
|
|
|
*
|
|
|
|
* @param {string} txId - transaction id
|
|
|
|
* @param {Array<{ entry: string, timestamp: number }>} sendFlowHistory -
|
|
|
|
* history to add to the sendFlowHistory property of txMeta.
|
|
|
|
* @returns {TransactionMeta} the txMeta of the updated transaction
|
|
|
|
*/
|
|
|
|
updateTransactionSendFlowHistory(txId, sendFlowHistory) {
|
|
|
|
this._throwErrorIfNotUnapprovedTx(txId, 'updateTransactionSendFlowHistory');
|
|
|
|
const txMeta = this._getTransaction(txId);
|
|
|
|
|
|
|
|
// only update what is defined
|
|
|
|
const note = `Update sendFlowHistory for ${txId}`;
|
|
|
|
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
{
|
|
|
|
...txMeta,
|
|
|
|
sendFlowHistory: [
|
|
|
|
...(txMeta?.sendFlowHistory ?? []),
|
|
|
|
...sendFlowHistory,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
note,
|
|
|
|
);
|
|
|
|
return this._getTransaction(txId);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ====================================================================================================================================================
|
|
|
|
|
|
|
|
/**
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
* Validates and generates a txMeta with defaults and puts it in txStateManager
|
|
|
|
* store.
|
|
|
|
*
|
|
|
|
* @param txParams
|
|
|
|
* @param origin
|
|
|
|
* @param transactionType
|
|
|
|
* @param sendFlowHistory
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
* @returns {txMeta}
|
|
|
|
*/
|
|
|
|
async addUnapprovedTransaction(
|
|
|
|
txParams,
|
|
|
|
origin,
|
|
|
|
transactionType,
|
|
|
|
sendFlowHistory = [],
|
|
|
|
) {
|
|
|
|
if (
|
|
|
|
transactionType !== undefined &&
|
|
|
|
!VALID_UNAPPROVED_TRANSACTION_TYPES.includes(transactionType)
|
|
|
|
) {
|
|
|
|
throw new Error(
|
|
|
|
`TransactionController - invalid transactionType value: ${transactionType}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate
|
|
|
|
const normalizedTxParams = txUtils.normalizeTxParams(txParams);
|
|
|
|
const eip1559Compatibility = await this.getEIP1559Compatibility();
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
|
|
|
|
txUtils.validateTxParams(normalizedTxParams, eip1559Compatibility);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* `generateTxMeta` adds the default txMeta properties to the passed object.
|
|
|
|
* These include the tx's `id`. As we use the id for determining order of
|
|
|
|
* txes in the tx-state-manager, it is necessary to call the asynchronous
|
|
|
|
* method `determineTransactionType` after `generateTxMeta`.
|
|
|
|
*/
|
|
|
|
let txMeta = this.txStateManager.generateTxMeta({
|
|
|
|
txParams: normalizedTxParams,
|
|
|
|
origin,
|
|
|
|
sendFlowHistory,
|
|
|
|
});
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
|
|
|
|
if (origin === ORIGIN_METAMASK) {
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
// Assert the from address is the selected address
|
|
|
|
if (normalizedTxParams.from !== this.getSelectedAddress()) {
|
|
|
|
throw ethErrors.rpc.internal({
|
|
|
|
message: `Internally initiated transaction is using invalid account.`,
|
|
|
|
data: {
|
|
|
|
origin,
|
|
|
|
fromAddress: normalizedTxParams.from,
|
|
|
|
selectedAddress: this.getSelectedAddress(),
|
|
|
|
},
|
|
|
|
});
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Assert that the origin has permissions to initiate transactions from
|
|
|
|
// the specified address
|
|
|
|
const permittedAddresses = await this.getPermittedAccounts(origin);
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
if (!permittedAddresses.includes(normalizedTxParams.from)) {
|
|
|
|
throw ethErrors.provider.unauthorized({ data: { origin } });
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const { type, getCodeResponse } = await determineTransactionType(
|
|
|
|
txParams,
|
|
|
|
this.query,
|
|
|
|
);
|
|
|
|
txMeta.type = transactionType || type;
|
|
|
|
|
|
|
|
// ensure value
|
|
|
|
txMeta.txParams.value = txMeta.txParams.value
|
|
|
|
? addHexPrefix(txMeta.txParams.value)
|
|
|
|
: '0x0';
|
|
|
|
|
|
|
|
this.addTransaction(txMeta);
|
|
|
|
this.emit('newUnapprovedTx', txMeta);
|
|
|
|
|
|
|
|
try {
|
|
|
|
txMeta = await this.addTxGasDefaults(txMeta, getCodeResponse);
|
|
|
|
} catch (error) {
|
|
|
|
log.warn(error);
|
|
|
|
txMeta = this.txStateManager.getTransaction(txMeta.id);
|
|
|
|
txMeta.loadingDefaults = false;
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'Failed to calculate gas defaults.',
|
|
|
|
);
|
|
|
|
throw error;
|
|
|
|
}
|
Fixed Vivek's bug (#5860)
* Fixed Vivek's bug
Fixes #5850
What was happening:
It seems that his MetaMask had crashed while some new transactions had
been loading defaults. He probably had a network connectivity issue to
Infura (which we are working with Infura to address).
As a result of this network cutout, his three unapproved transactions
were not marked failed, and were not marked as `loadingDefaults =
false`, as their gas prices had not yet been estimated.
Normally this behavior is supposed to clean itself up when the
transaction controller starts up, via the
`TransactionController._onBootCleanUp()` function, but in this case,
during unlock, that function was unable to do its job because when it
requested the transaction list, the current network was in the `loading`
state, making it proceed as if there were no pending transactions.
To fix this, I am doing two things:
- Setting transactions to loadingDefaults = false in more catch blocks.
- Calling `onBootCleanUp()` when the network store's status changes, so
that it will re-trigger when loading completes.
* Fixed reference
* Fixed infinite loop bug
Was refreshing the tx list on every tx state change instead of just
network changes, creating an infinite loop.
* Add notes to tx updates to clarify logs
6 years ago
|
|
|
|
|
|
|
txMeta.loadingDefaults = false;
|
|
|
|
// save txMeta
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'Added new unapproved transaction.',
|
|
|
|
);
|
|
|
|
|
|
|
|
return txMeta;
|
|
|
|
}
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
|
|
|
|
/**
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
* Adds the tx gas defaults: gas && gasPrice
|
|
|
|
*
|
|
|
|
* @param {object} txMeta - the txMeta object
|
|
|
|
* @param getCodeResponse
|
|
|
|
* @returns {Promise<object>} resolves with txMeta
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
*/
|
|
|
|
async addTxGasDefaults(txMeta, getCodeResponse) {
|
|
|
|
const eip1559Compatibility =
|
|
|
|
txMeta.txParams.type !== TRANSACTION_ENVELOPE_TYPES.LEGACY &&
|
|
|
|
(await this.getEIP1559Compatibility());
|
|
|
|
const {
|
|
|
|
gasPrice: defaultGasPrice,
|
|
|
|
maxFeePerGas: defaultMaxFeePerGas,
|
|
|
|
maxPriorityFeePerGas: defaultMaxPriorityFeePerGas,
|
|
|
|
} = await this._getDefaultGasFees(txMeta, eip1559Compatibility);
|
|
|
|
const {
|
|
|
|
gasLimit: defaultGasLimit,
|
|
|
|
simulationFails,
|
|
|
|
} = await this._getDefaultGasLimit(txMeta, getCodeResponse);
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-param-reassign
|
|
|
|
txMeta = this.txStateManager.getTransaction(txMeta.id);
|
|
|
|
if (simulationFails) {
|
|
|
|
txMeta.simulationFails = simulationFails;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eip1559Compatibility) {
|
|
|
|
const { eip1559V2Enabled } = this.preferencesStore.getState();
|
|
|
|
const advancedGasFeeDefaultValues = this.getAdvancedGasFee();
|
|
|
|
if (
|
|
|
|
eip1559V2Enabled &&
|
|
|
|
Boolean(advancedGasFeeDefaultValues) &&
|
|
|
|
!SWAP_TRANSACTION_TYPES.includes(txMeta.type)
|
|
|
|
) {
|
|
|
|
txMeta.userFeeLevel = CUSTOM_GAS_ESTIMATE;
|
|
|
|
txMeta.txParams.maxFeePerGas = decGWEIToHexWEI(
|
|
|
|
advancedGasFeeDefaultValues.maxBaseFee,
|
|
|
|
);
|
|
|
|
txMeta.txParams.maxPriorityFeePerGas = decGWEIToHexWEI(
|
|
|
|
advancedGasFeeDefaultValues.priorityFee,
|
|
|
|
);
|
|
|
|
} else if (
|
|
|
|
txMeta.txParams.gasPrice &&
|
|
|
|
!txMeta.txParams.maxFeePerGas &&
|
|
|
|
!txMeta.txParams.maxPriorityFeePerGas
|
|
|
|
) {
|
|
|
|
// If the dapp has suggested a gas price, but no maxFeePerGas or maxPriorityFeePerGas
|
|
|
|
// then we set maxFeePerGas and maxPriorityFeePerGas to the suggested gasPrice.
|
|
|
|
txMeta.txParams.maxFeePerGas = txMeta.txParams.gasPrice;
|
|
|
|
txMeta.txParams.maxPriorityFeePerGas = txMeta.txParams.gasPrice;
|
|
|
|
if (eip1559V2Enabled && txMeta.origin !== ORIGIN_METAMASK) {
|
|
|
|
txMeta.userFeeLevel = PRIORITY_LEVELS.DAPP_SUGGESTED;
|
|
|
|
} else {
|
|
|
|
txMeta.userFeeLevel = CUSTOM_GAS_ESTIMATE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (
|
|
|
|
(defaultMaxFeePerGas &&
|
|
|
|
defaultMaxPriorityFeePerGas &&
|
|
|
|
!txMeta.txParams.maxFeePerGas &&
|
|
|
|
!txMeta.txParams.maxPriorityFeePerGas) ||
|
|
|
|
txMeta.origin === ORIGIN_METAMASK
|
|
|
|
) {
|
|
|
|
txMeta.userFeeLevel = GAS_RECOMMENDATIONS.MEDIUM;
|
|
|
|
} else if (eip1559V2Enabled) {
|
|
|
|
txMeta.userFeeLevel = PRIORITY_LEVELS.DAPP_SUGGESTED;
|
|
|
|
} else {
|
|
|
|
txMeta.userFeeLevel = CUSTOM_GAS_ESTIMATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defaultMaxFeePerGas && !txMeta.txParams.maxFeePerGas) {
|
|
|
|
// If the dapp has not set the gasPrice or the maxFeePerGas, then we set maxFeePerGas
|
|
|
|
// with the one returned by the gasFeeController, if that is available.
|
|
|
|
txMeta.txParams.maxFeePerGas = defaultMaxFeePerGas;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
defaultMaxPriorityFeePerGas &&
|
|
|
|
!txMeta.txParams.maxPriorityFeePerGas
|
|
|
|
) {
|
|
|
|
// If the dapp has not set the gasPrice or the maxPriorityFeePerGas, then we set maxPriorityFeePerGas
|
|
|
|
// with the one returned by the gasFeeController, if that is available.
|
|
|
|
txMeta.txParams.maxPriorityFeePerGas = defaultMaxPriorityFeePerGas;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defaultGasPrice && !txMeta.txParams.maxFeePerGas) {
|
|
|
|
// If the dapp has not set the gasPrice or the maxFeePerGas, and no maxFeePerGas is available
|
|
|
|
// from the gasFeeController, then we set maxFeePerGas to the defaultGasPrice, assuming it is
|
|
|
|
// available.
|
|
|
|
txMeta.txParams.maxFeePerGas = defaultGasPrice;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
txMeta.txParams.maxFeePerGas &&
|
|
|
|
!txMeta.txParams.maxPriorityFeePerGas
|
|
|
|
) {
|
|
|
|
// If the dapp has not set the gasPrice or the maxPriorityFeePerGas, and no maxPriorityFeePerGas is
|
|
|
|
// available from the gasFeeController, then we set maxPriorityFeePerGas to
|
|
|
|
// txMeta.txParams.maxFeePerGas, which will either be the gasPrice from the controller, the maxFeePerGas
|
|
|
|
// set by the dapp, or the maxFeePerGas from the controller.
|
|
|
|
txMeta.txParams.maxPriorityFeePerGas = txMeta.txParams.maxFeePerGas;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We remove the gasPrice param entirely when on an eip1559 compatible network
|
|
|
|
|
|
|
|
delete txMeta.txParams.gasPrice;
|
|
|
|
} else {
|
|
|
|
// We ensure that maxFeePerGas and maxPriorityFeePerGas are not in the transaction params
|
|
|
|
// when not on a EIP1559 compatible network
|
|
|
|
|
|
|
|
delete txMeta.txParams.maxPriorityFeePerGas;
|
|
|
|
delete txMeta.txParams.maxFeePerGas;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have gotten to this point, and none of gasPrice, maxPriorityFeePerGas or maxFeePerGas are
|
|
|
|
// set on txParams, it means that either we are on a non-EIP1559 network and the dapp didn't suggest
|
|
|
|
// a gas price, or we are on an EIP1559 network, and none of gasPrice, maxPriorityFeePerGas or maxFeePerGas
|
|
|
|
// were available from either the dapp or the network.
|
|
|
|
if (
|
|
|
|
defaultGasPrice &&
|
|
|
|
!txMeta.txParams.gasPrice &&
|
|
|
|
!txMeta.txParams.maxPriorityFeePerGas &&
|
|
|
|
!txMeta.txParams.maxFeePerGas
|
|
|
|
) {
|
|
|
|
txMeta.txParams.gasPrice = defaultGasPrice;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defaultGasLimit && !txMeta.txParams.gas) {
|
|
|
|
txMeta.txParams.gas = defaultGasLimit;
|
|
|
|
txMeta.originalGasEstimate = defaultGasLimit;
|
|
|
|
}
|
|
|
|
txMeta.defaultGasEstimates = {
|
|
|
|
estimateType: txMeta.userFeeLevel,
|
|
|
|
gas: txMeta.txParams.gas,
|
|
|
|
gasPrice: txMeta.txParams.gasPrice,
|
|
|
|
maxFeePerGas: txMeta.txParams.maxFeePerGas,
|
|
|
|
maxPriorityFeePerGas: txMeta.txParams.maxPriorityFeePerGas,
|
|
|
|
};
|
|
|
|
return txMeta;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets default gas fees, or returns `undefined` if gas fees are already set
|
|
|
|
*
|
|
|
|
* @param {object} txMeta - The txMeta object
|
|
|
|
* @param eip1559Compatibility
|
|
|
|
* @returns {Promise<string|undefined>} The default gas price
|
|
|
|
*/
|
|
|
|
async _getDefaultGasFees(txMeta, eip1559Compatibility) {
|
|
|
|
if (
|
|
|
|
(!eip1559Compatibility && txMeta.txParams.gasPrice) ||
|
|
|
|
(eip1559Compatibility &&
|
|
|
|
txMeta.txParams.maxFeePerGas &&
|
|
|
|
txMeta.txParams.maxPriorityFeePerGas)
|
|
|
|
) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const {
|
|
|
|
gasFeeEstimates,
|
|
|
|
gasEstimateType,
|
|
|
|
} = await this._getEIP1559GasFeeEstimates();
|
|
|
|
if (
|
|
|
|
eip1559Compatibility &&
|
|
|
|
gasEstimateType === GAS_ESTIMATE_TYPES.FEE_MARKET
|
|
|
|
) {
|
|
|
|
const {
|
|
|
|
medium: { suggestedMaxPriorityFeePerGas, suggestedMaxFeePerGas } = {},
|
|
|
|
} = gasFeeEstimates;
|
|
|
|
|
|
|
|
if (suggestedMaxPriorityFeePerGas && suggestedMaxFeePerGas) {
|
|
|
|
return {
|
|
|
|
maxFeePerGas: decGWEIToHexWEI(suggestedMaxFeePerGas),
|
|
|
|
maxPriorityFeePerGas: decGWEIToHexWEI(
|
|
|
|
suggestedMaxPriorityFeePerGas,
|
|
|
|
),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
} else if (gasEstimateType === GAS_ESTIMATE_TYPES.LEGACY) {
|
|
|
|
// The LEGACY type includes low, medium and high estimates of
|
|
|
|
// gas price values.
|
|
|
|
return {
|
|
|
|
gasPrice: decGWEIToHexWEI(gasFeeEstimates.medium),
|
|
|
|
};
|
|
|
|
} else if (gasEstimateType === GAS_ESTIMATE_TYPES.ETH_GASPRICE) {
|
|
|
|
// The ETH_GASPRICE type just includes a single gas price property,
|
|
|
|
// which we can assume was retrieved from eth_gasPrice
|
|
|
|
return {
|
|
|
|
gasPrice: decGWEIToHexWEI(gasFeeEstimates.gasPrice),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
const gasPrice = await this.query.gasPrice();
|
|
|
|
|
|
|
|
return { gasPrice: gasPrice && addHexPrefix(gasPrice.toString(16)) };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets default gas limit, or debug information about why gas estimate failed.
|
|
|
|
*
|
|
|
|
* @param {object} txMeta - The txMeta object
|
|
|
|
* @param {string} getCodeResponse - The transaction category code response, used for debugging purposes
|
|
|
|
* @returns {Promise<object>} Object containing the default gas limit, or the simulation failure object
|
|
|
|
*/
|
|
|
|
async _getDefaultGasLimit(txMeta, getCodeResponse) {
|
|
|
|
const chainId = this._getCurrentChainId();
|
|
|
|
const customNetworkGasBuffer = CHAIN_ID_TO_GAS_LIMIT_BUFFER_MAP[chainId];
|
|
|
|
const chainType = getChainType(chainId);
|
|
|
|
|
|
|
|
if (txMeta.txParams.gas) {
|
|
|
|
return {};
|
|
|
|
} else if (
|
|
|
|
txMeta.txParams.to &&
|
|
|
|
txMeta.type === TRANSACTION_TYPES.SIMPLE_SEND &&
|
|
|
|
chainType !== 'custom'
|
|
|
|
) {
|
|
|
|
// if there's data in the params, but there's no contract code, it's not a valid transaction
|
|
|
|
if (txMeta.txParams.data) {
|
|
|
|
const err = new Error(
|
|
|
|
'TxGasUtil - Trying to call a function on a non-contract address',
|
|
|
|
);
|
|
|
|
// set error key so ui can display localized error message
|
|
|
|
err.errorKey = TRANSACTION_NO_CONTRACT_ERROR_KEY;
|
|
|
|
|
|
|
|
// set the response on the error so that we can see in logs what the actual response was
|
|
|
|
err.getCodeResponse = getCodeResponse;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a standard ether simple send, gas requirement is exactly 21k
|
|
|
|
return { gasLimit: GAS_LIMITS.SIMPLE };
|
|
|
|
}
|
|
|
|
|
|
|
|
const {
|
|
|
|
blockGasLimit,
|
|
|
|
estimatedGasHex,
|
|
|
|
simulationFails,
|
|
|
|
} = await this.txGasUtil.analyzeGasUsage(txMeta);
|
|
|
|
|
|
|
|
// add additional gas buffer to our estimation for safety
|
|
|
|
const gasLimit = this.txGasUtil.addGasBuffer(
|
|
|
|
addHexPrefix(estimatedGasHex),
|
|
|
|
blockGasLimit,
|
|
|
|
customNetworkGasBuffer,
|
|
|
|
);
|
|
|
|
return { gasLimit, simulationFails };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a TransactionMeta object, generate new gas params such that if the
|
|
|
|
* transaction was an EIP1559 transaction, it only has EIP1559 gas fields,
|
|
|
|
* otherwise it only has gasPrice. Will use whatever custom values are
|
|
|
|
* specified in customGasSettings, or falls back to incrementing by a percent
|
|
|
|
* which is defined by specifying a numerator. 11 is a 10% bump, 12 would be
|
|
|
|
* a 20% bump, and so on.
|
|
|
|
*
|
|
|
|
* @param {TransactionMeta} originalTxMeta - Original transaction to use as
|
|
|
|
* base
|
|
|
|
* @param {CustomGasSettings} [customGasSettings] - overrides for the gas
|
|
|
|
* fields to use instead of the multiplier
|
|
|
|
* @param {number} [incrementNumerator] - Numerator from which to generate a
|
|
|
|
* percentage bump of gas price. E.g 11 would be a 10% bump over base.
|
|
|
|
* @returns {{ newGasParams: CustomGasSettings, previousGasParams: CustomGasSettings }}
|
|
|
|
*/
|
|
|
|
generateNewGasParams(
|
|
|
|
originalTxMeta,
|
|
|
|
customGasSettings = {},
|
|
|
|
incrementNumerator = 11,
|
|
|
|
) {
|
|
|
|
const { txParams } = originalTxMeta;
|
|
|
|
const previousGasParams = {};
|
|
|
|
const newGasParams = {};
|
|
|
|
if (customGasSettings.gasLimit) {
|
|
|
|
newGasParams.gas = customGasSettings?.gas ?? GAS_LIMITS.SIMPLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (customGasSettings.estimateSuggested) {
|
|
|
|
newGasParams.estimateSuggested = customGasSettings.estimateSuggested;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (customGasSettings.estimateUsed) {
|
|
|
|
newGasParams.estimateUsed = customGasSettings.estimateUsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isEIP1559Transaction(originalTxMeta)) {
|
|
|
|
previousGasParams.maxFeePerGas = txParams.maxFeePerGas;
|
|
|
|
previousGasParams.maxPriorityFeePerGas = txParams.maxPriorityFeePerGas;
|
|
|
|
newGasParams.maxFeePerGas =
|
|
|
|
customGasSettings?.maxFeePerGas ||
|
|
|
|
bnToHex(
|
|
|
|
BnMultiplyByFraction(
|
|
|
|
hexToBn(txParams.maxFeePerGas),
|
|
|
|
incrementNumerator,
|
|
|
|
10,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
newGasParams.maxPriorityFeePerGas =
|
|
|
|
customGasSettings?.maxPriorityFeePerGas ||
|
|
|
|
bnToHex(
|
|
|
|
BnMultiplyByFraction(
|
|
|
|
hexToBn(txParams.maxPriorityFeePerGas),
|
|
|
|
incrementNumerator,
|
|
|
|
10,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
previousGasParams.gasPrice = txParams.gasPrice;
|
|
|
|
newGasParams.gasPrice =
|
|
|
|
customGasSettings?.gasPrice ||
|
|
|
|
bnToHex(
|
|
|
|
BnMultiplyByFraction(
|
|
|
|
hexToBn(txParams.gasPrice),
|
|
|
|
incrementNumerator,
|
|
|
|
10,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return { previousGasParams, newGasParams };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new approved transaction to attempt to cancel a previously submitted transaction. The
|
|
|
|
* new transaction contains the same nonce as the previous, is a basic ETH transfer of 0x value to
|
|
|
|
* the sender's address, and has a higher gasPrice than that of the previous transaction.
|
|
|
|
*
|
|
|
|
* @param {number} originalTxId - the id of the txMeta that you want to attempt to cancel
|
|
|
|
* @param {CustomGasSettings} [customGasSettings] - overrides to use for gas
|
|
|
|
* params instead of allowing this method to generate them
|
|
|
|
* @param options
|
|
|
|
* @param options.estimatedBaseFee
|
|
|
|
* @returns {txMeta}
|
|
|
|
*/
|
|
|
|
async createCancelTransaction(
|
|
|
|
originalTxId,
|
|
|
|
customGasSettings,
|
|
|
|
{ estimatedBaseFee } = {},
|
|
|
|
) {
|
|
|
|
const originalTxMeta = this.txStateManager.getTransaction(originalTxId);
|
|
|
|
const { txParams } = originalTxMeta;
|
|
|
|
const { from, nonce } = txParams;
|
|
|
|
|
|
|
|
const { previousGasParams, newGasParams } = this.generateNewGasParams(
|
|
|
|
originalTxMeta,
|
|
|
|
{
|
|
|
|
...customGasSettings,
|
|
|
|
// We want to override the previous transactions gasLimit because it
|
|
|
|
// will now be a simple send instead of whatever it was before such
|
|
|
|
// as a token transfer or contract call.
|
|
|
|
gasLimit: customGasSettings.gasLimit || GAS_LIMITS.SIMPLE,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const newTxMeta = this.txStateManager.generateTxMeta({
|
|
|
|
txParams: {
|
|
|
|
from,
|
|
|
|
to: from,
|
|
|
|
nonce,
|
|
|
|
value: '0x0',
|
|
|
|
...newGasParams,
|
|
|
|
},
|
|
|
|
previousGasParams,
|
|
|
|
loadingDefaults: false,
|
|
|
|
status: TRANSACTION_STATUSES.APPROVED,
|
|
|
|
type: TRANSACTION_TYPES.CANCEL,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (estimatedBaseFee) {
|
|
|
|
newTxMeta.estimatedBaseFee = estimatedBaseFee;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.addTransaction(newTxMeta);
|
|
|
|
await this.approveTransaction(newTxMeta.id);
|
|
|
|
return newTxMeta;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new approved transaction to attempt to speed up a previously submitted transaction. The
|
|
|
|
* new transaction contains the same nonce as the previous. By default, the new transaction will use
|
|
|
|
* the same gas limit and a 10% higher gas price, though it is possible to set a custom value for
|
|
|
|
* each instead.
|
|
|
|
*
|
|
|
|
* @param {number} originalTxId - the id of the txMeta that you want to speed up
|
|
|
|
* @param {CustomGasSettings} [customGasSettings] - overrides to use for gas
|
|
|
|
* params instead of allowing this method to generate them
|
|
|
|
* @param options
|
|
|
|
* @param options.estimatedBaseFee
|
|
|
|
* @returns {txMeta}
|
|
|
|
*/
|
|
|
|
async createSpeedUpTransaction(
|
|
|
|
originalTxId,
|
|
|
|
customGasSettings,
|
|
|
|
{ estimatedBaseFee } = {},
|
|
|
|
) {
|
|
|
|
const originalTxMeta = this.txStateManager.getTransaction(originalTxId);
|
|
|
|
const { txParams } = originalTxMeta;
|
|
|
|
|
|
|
|
const { previousGasParams, newGasParams } = this.generateNewGasParams(
|
|
|
|
originalTxMeta,
|
|
|
|
customGasSettings,
|
|
|
|
);
|
|
|
|
|
|
|
|
const newTxMeta = this.txStateManager.generateTxMeta({
|
|
|
|
txParams: {
|
|
|
|
...txParams,
|
|
|
|
...newGasParams,
|
|
|
|
},
|
|
|
|
previousGasParams,
|
|
|
|
loadingDefaults: false,
|
|
|
|
status: TRANSACTION_STATUSES.APPROVED,
|
|
|
|
type: TRANSACTION_TYPES.RETRY,
|
|
|
|
originalType: originalTxMeta.type,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (estimatedBaseFee) {
|
|
|
|
newTxMeta.estimatedBaseFee = estimatedBaseFee;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.addTransaction(newTxMeta);
|
|
|
|
await this.approveTransaction(newTxMeta.id);
|
|
|
|
return newTxMeta;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the txMeta in the txStateManager
|
|
|
|
*
|
|
|
|
* @param {object} txMeta - the updated txMeta
|
|
|
|
*/
|
|
|
|
async updateTransaction(txMeta) {
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'confTx: user updated transaction',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates and approves the transaction
|
|
|
|
*
|
|
|
|
* @param {object} txMeta
|
|
|
|
*/
|
|
|
|
async updateAndApproveTransaction(txMeta) {
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'confTx: user approved transaction',
|
|
|
|
);
|
|
|
|
await this.approveTransaction(txMeta.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets the tx status to approved
|
|
|
|
* auto fills the nonce
|
|
|
|
* signs the transaction
|
|
|
|
* publishes the transaction
|
|
|
|
* if any of these steps fails the tx status will be set to failed
|
|
|
|
*
|
|
|
|
* @param {number} txId - the tx's Id
|
|
|
|
*/
|
|
|
|
async approveTransaction(txId) {
|
|
|
|
// TODO: Move this safety out of this function.
|
|
|
|
// Since this transaction is async,
|
|
|
|
// we need to keep track of what is currently being signed,
|
|
|
|
// So that we do not increment nonce + resubmit something
|
|
|
|
// that is already being incremented & signed.
|
|
|
|
if (this.inProcessOfSigning.has(txId)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.inProcessOfSigning.add(txId);
|
|
|
|
let nonceLock;
|
|
|
|
try {
|
|
|
|
// approve
|
|
|
|
this.txStateManager.setTxStatusApproved(txId);
|
|
|
|
// get next nonce
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
|
|
|
|
const fromAddress = txMeta.txParams.from;
|
|
|
|
// wait for a nonce
|
|
|
|
let { customNonceValue } = txMeta;
|
|
|
|
customNonceValue = Number(customNonceValue);
|
|
|
|
nonceLock = await this.nonceTracker.getNonceLock(fromAddress);
|
|
|
|
// add nonce to txParams
|
|
|
|
// if txMeta has previousGasParams then it is a retry at same nonce with
|
|
|
|
// higher gas settings and therefor the nonce should not be recalculated
|
|
|
|
const nonce = txMeta.previousGasParams
|
|
|
|
? txMeta.txParams.nonce
|
|
|
|
: nonceLock.nextNonce;
|
|
|
|
const customOrNonce =
|
|
|
|
customNonceValue === 0 ? customNonceValue : customNonceValue || nonce;
|
|
|
|
|
|
|
|
txMeta.txParams.nonce = addHexPrefix(customOrNonce.toString(16));
|
|
|
|
// add nonce debugging information to txMeta
|
|
|
|
txMeta.nonceDetails = nonceLock.nonceDetails;
|
|
|
|
if (customNonceValue) {
|
|
|
|
txMeta.nonceDetails.customNonceValue = customNonceValue;
|
|
|
|
}
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions#approveTransaction',
|
|
|
|
);
|
|
|
|
// sign transaction
|
|
|
|
const rawTx = await this.signTransaction(txId);
|
|
|
|
await this.publishTransaction(txId, rawTx);
|
|
|
|
this._trackTransactionMetricsEvent(txMeta, TRANSACTION_EVENTS.APPROVED);
|
|
|
|
// must set transaction to submitted/failed before releasing lock
|
|
|
|
nonceLock.releaseLock();
|
|
|
|
} catch (err) {
|
|
|
|
// this is try-catch wrapped so that we can guarantee that the nonceLock is released
|
|
|
|
try {
|
|
|
|
this._failTransaction(txId, err);
|
|
|
|
} catch (err2) {
|
|
|
|
log.error(err2);
|
|
|
|
}
|
|
|
|
// must set transaction to submitted/failed before releasing lock
|
|
|
|
if (nonceLock) {
|
|
|
|
nonceLock.releaseLock();
|
|
|
|
}
|
|
|
|
// continue with error chain
|
|
|
|
throw err;
|
|
|
|
} finally {
|
|
|
|
this.inProcessOfSigning.delete(txId);
|
|
|
|
}
|
|
|
|
}
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
5 years ago
|
|
|
|
|
|
|
async approveTransactionsWithSameNonce(listOfTxParams = []) {
|
|
|
|
if (listOfTxParams.length === 0) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
const initialTx = listOfTxParams[0];
|
|
|
|
const common = await this.getCommonConfiguration(initialTx.from);
|
|
|
|
const initialTxAsEthTx = TransactionFactory.fromTxData(initialTx, {
|
|
|
|
common,
|
|
|
|
});
|
|
|
|
const initialTxAsSerializedHex = bufferToHex(initialTxAsEthTx.serialize());
|
|
|
|
|
|
|
|
if (this.inProcessOfSigning.has(initialTxAsSerializedHex)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
this.inProcessOfSigning.add(initialTxAsSerializedHex);
|
|
|
|
let rawTxes, nonceLock;
|
|
|
|
try {
|
|
|
|
// TODO: we should add a check to verify that all transactions have the same from address
|
|
|
|
const fromAddress = initialTx.from;
|
|
|
|
nonceLock = await this.nonceTracker.getNonceLock(fromAddress);
|
|
|
|
const nonce = nonceLock.nextNonce;
|
|
|
|
|
|
|
|
rawTxes = await Promise.all(
|
|
|
|
listOfTxParams.map((txParams) => {
|
|
|
|
txParams.nonce = addHexPrefix(nonce.toString(16));
|
|
|
|
return this.signExternalTransaction(txParams);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
} catch (err) {
|
|
|
|
log.error(err);
|
|
|
|
// must set transaction to submitted/failed before releasing lock
|
|
|
|
// continue with error chain
|
|
|
|
throw err;
|
|
|
|
} finally {
|
|
|
|
if (nonceLock) {
|
|
|
|
nonceLock.releaseLock();
|
|
|
|
}
|
|
|
|
this.inProcessOfSigning.delete(initialTxAsSerializedHex);
|
|
|
|
}
|
|
|
|
return rawTxes;
|
|
|
|
}
|
|
|
|
|
|
|
|
async signExternalTransaction(_txParams) {
|
|
|
|
const normalizedTxParams = txUtils.normalizeTxParams(_txParams);
|
|
|
|
// add network/chain id
|
|
|
|
const chainId = this.getChainId();
|
|
|
|
const type = isEIP1559Transaction({ txParams: normalizedTxParams })
|
|
|
|
? TRANSACTION_ENVELOPE_TYPES.FEE_MARKET
|
|
|
|
: TRANSACTION_ENVELOPE_TYPES.LEGACY;
|
|
|
|
const txParams = {
|
|
|
|
...normalizedTxParams,
|
|
|
|
type,
|
|
|
|
gasLimit: normalizedTxParams.gas,
|
|
|
|
chainId: addHexPrefix(decimalToHex(chainId)),
|
|
|
|
};
|
|
|
|
// sign tx
|
|
|
|
const fromAddress = txParams.from;
|
|
|
|
const common = await this.getCommonConfiguration(fromAddress);
|
|
|
|
const unsignedEthTx = TransactionFactory.fromTxData(txParams, { common });
|
|
|
|
const signedEthTx = await this.signEthTx(unsignedEthTx, fromAddress);
|
|
|
|
|
|
|
|
const rawTx = bufferToHex(signedEthTx.serialize());
|
|
|
|
return rawTx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* adds the chain id and signs the transaction and set the status to signed
|
|
|
|
*
|
|
|
|
* @param {number} txId - the tx's Id
|
|
|
|
* @returns {string} rawTx
|
|
|
|
*/
|
|
|
|
async signTransaction(txId) {
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
// add network/chain id
|
|
|
|
const chainId = this.getChainId();
|
|
|
|
const type = isEIP1559Transaction(txMeta)
|
|
|
|
? TRANSACTION_ENVELOPE_TYPES.FEE_MARKET
|
|
|
|
: TRANSACTION_ENVELOPE_TYPES.LEGACY;
|
|
|
|
const txParams = {
|
|
|
|
...txMeta.txParams,
|
|
|
|
type,
|
|
|
|
chainId,
|
|
|
|
gasLimit: txMeta.txParams.gas,
|
|
|
|
};
|
|
|
|
// sign tx
|
|
|
|
const fromAddress = txParams.from;
|
|
|
|
const common = await this.getCommonConfiguration(txParams.from);
|
|
|
|
const unsignedEthTx = TransactionFactory.fromTxData(txParams, { common });
|
|
|
|
const signedEthTx = await this.signEthTx(unsignedEthTx, fromAddress);
|
|
|
|
|
|
|
|
// add r,s,v values for provider request purposes see createMetamaskMiddleware
|
|
|
|
// and JSON rpc standard for further explanation
|
|
|
|
txMeta.r = bufferToHex(signedEthTx.r);
|
|
|
|
txMeta.s = bufferToHex(signedEthTx.s);
|
|
|
|
txMeta.v = bufferToHex(signedEthTx.v);
|
|
|
|
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions#signTransaction: add r, s, v values',
|
|
|
|
);
|
|
|
|
|
|
|
|
// set state to signed
|
|
|
|
this.txStateManager.setTxStatusSigned(txMeta.id);
|
|
|
|
const rawTx = bufferToHex(signedEthTx.serialize());
|
|
|
|
return rawTx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* publishes the raw tx and sets the txMeta to submitted
|
|
|
|
*
|
|
|
|
* @param {number} txId - the tx's Id
|
|
|
|
* @param {string} rawTx - the hex string of the serialized signed transaction
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
async publishTransaction(txId, rawTx) {
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
txMeta.rawTx = rawTx;
|
|
|
|
if (txMeta.type === TRANSACTION_TYPES.SWAP) {
|
|
|
|
const preTxBalance = await this.query.getBalance(txMeta.txParams.from);
|
|
|
|
txMeta.preTxBalance = preTxBalance.toString(16);
|
|
|
|
}
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions#publishTransaction',
|
|
|
|
);
|
|
|
|
let txHash;
|
|
|
|
try {
|
|
|
|
txHash = await this.query.sendRawTransaction(rawTx);
|
|
|
|
} catch (error) {
|
|
|
|
if (error.message.toLowerCase().includes('known transaction')) {
|
|
|
|
txHash = keccak(toBuffer(addHexPrefix(rawTx), 'hex')).toString('hex');
|
|
|
|
txHash = addHexPrefix(txHash);
|
|
|
|
} else {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.setTxHash(txId, txHash);
|
|
|
|
|
|
|
|
this.txStateManager.setTxStatusSubmitted(txId);
|
|
|
|
|
|
|
|
this._trackTransactionMetricsEvent(txMeta, TRANSACTION_EVENTS.SUBMITTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
async updatePostTxBalance({ txMeta, txId, numberOfAttempts = 6 }) {
|
|
|
|
const postTxBalance = await this.query.getBalance(txMeta.txParams.from);
|
|
|
|
const latestTxMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
const approvalTxMeta = latestTxMeta.approvalTxId
|
|
|
|
? this.txStateManager.getTransaction(latestTxMeta.approvalTxId)
|
|
|
|
: null;
|
|
|
|
latestTxMeta.postTxBalance = postTxBalance.toString(16);
|
|
|
|
const isDefaultTokenAddress = isSwapsDefaultTokenAddress(
|
|
|
|
txMeta.destinationTokenAddress,
|
|
|
|
txMeta.chainId,
|
|
|
|
);
|
|
|
|
if (
|
|
|
|
isDefaultTokenAddress &&
|
|
|
|
txMeta.preTxBalance === latestTxMeta.postTxBalance &&
|
|
|
|
numberOfAttempts > 0
|
|
|
|
) {
|
|
|
|
setTimeout(() => {
|
|
|
|
// If postTxBalance is the same as preTxBalance, try it again.
|
|
|
|
this.updatePostTxBalance({
|
|
|
|
txMeta,
|
|
|
|
txId,
|
|
|
|
numberOfAttempts: numberOfAttempts - 1,
|
|
|
|
});
|
|
|
|
}, UPDATE_POST_TX_BALANCE_TIMEOUT);
|
|
|
|
} else {
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
latestTxMeta,
|
|
|
|
'transactions#confirmTransaction - add postTxBalance',
|
|
|
|
);
|
|
|
|
this._trackSwapsMetrics(latestTxMeta, approvalTxMeta);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the status of the transaction to confirmed and sets the status of nonce duplicates as
|
|
|
|
* dropped if the txParams have data it will fetch the txReceipt
|
|
|
|
*
|
|
|
|
* @param {number} txId - The tx's ID
|
|
|
|
* @param txReceipt
|
|
|
|
* @param baseFeePerGas
|
|
|
|
* @param blockTimestamp
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
async confirmTransaction(txId, txReceipt, baseFeePerGas, blockTimestamp) {
|
|
|
|
// get the txReceipt before marking the transaction confirmed
|
|
|
|
// to ensure the receipt is gotten before the ui revives the tx
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
|
|
|
|
if (!txMeta) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const gasUsed = txUtils.normalizeTxReceiptGasUsed(txReceipt.gasUsed);
|
|
|
|
|
|
|
|
txMeta.txReceipt = {
|
|
|
|
...txReceipt,
|
|
|
|
gasUsed,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (baseFeePerGas) {
|
|
|
|
txMeta.baseFeePerGas = baseFeePerGas;
|
|
|
|
}
|
|
|
|
if (blockTimestamp) {
|
|
|
|
txMeta.blockTimestamp = blockTimestamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.txStateManager.setTxStatusConfirmed(txId);
|
|
|
|
this._markNonceDuplicatesDropped(txId);
|
|
|
|
|
|
|
|
const { submittedTime } = txMeta;
|
|
|
|
const metricsParams = { gas_used: gasUsed };
|
|
|
|
|
|
|
|
if (submittedTime) {
|
|
|
|
metricsParams.completion_time = this._getTransactionCompletionTime(
|
|
|
|
submittedTime,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (txReceipt.status === '0x0') {
|
|
|
|
metricsParams.status = METRICS_STATUS_FAILED;
|
|
|
|
// metricsParams.error = TODO: figure out a way to get the on-chain failure reason
|
|
|
|
}
|
|
|
|
|
|
|
|
this._trackTransactionMetricsEvent(
|
|
|
|
txMeta,
|
|
|
|
TRANSACTION_EVENTS.FINALIZED,
|
|
|
|
metricsParams,
|
|
|
|
);
|
|
|
|
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions#confirmTransaction - add txReceipt',
|
|
|
|
);
|
|
|
|
|
|
|
|
if (txMeta.type === TRANSACTION_TYPES.SWAP) {
|
|
|
|
await this.updatePostTxBalance({
|
|
|
|
txMeta,
|
|
|
|
txId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
log.error(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async confirmExternalTransaction(txMeta, txReceipt, baseFeePerGas) {
|
|
|
|
// add external transaction
|
|
|
|
await this.txStateManager.addExternalTransaction(txMeta);
|
|
|
|
|
|
|
|
if (!txMeta) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const txId = txMeta.id;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const gasUsed = txUtils.normalizeTxReceiptGasUsed(txReceipt.gasUsed);
|
|
|
|
|
|
|
|
txMeta.txReceipt = {
|
|
|
|
...txReceipt,
|
|
|
|
gasUsed,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (baseFeePerGas) {
|
|
|
|
txMeta.baseFeePerGas = baseFeePerGas;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.txStateManager.setTxStatusConfirmed(txId);
|
|
|
|
this._markNonceDuplicatesDropped(txId);
|
|
|
|
|
|
|
|
const { submittedTime } = txMeta;
|
|
|
|
const metricsParams = { gas_used: gasUsed };
|
|
|
|
|
|
|
|
if (submittedTime) {
|
|
|
|
metricsParams.completion_time = this._getTransactionCompletionTime(
|
|
|
|
submittedTime,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (txReceipt.status === '0x0') {
|
|
|
|
metricsParams.status = METRICS_STATUS_FAILED;
|
|
|
|
// metricsParams.error = TODO: figure out a way to get the on-chain failure reason
|
|
|
|
}
|
|
|
|
|
|
|
|
this._trackTransactionMetricsEvent(
|
|
|
|
txMeta,
|
|
|
|
TRANSACTION_EVENTS.FINALIZED,
|
|
|
|
metricsParams,
|
|
|
|
);
|
|
|
|
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions#confirmTransaction - add txReceipt',
|
|
|
|
);
|
|
|
|
|
|
|
|
if (txMeta.type === TRANSACTION_TYPES.SWAP) {
|
|
|
|
await this.updatePostTxBalance({
|
|
|
|
txMeta,
|
|
|
|
txId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
log.error(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience method for the ui thats sets the transaction to rejected
|
|
|
|
*
|
|
|
|
* @param {number} txId - the tx's Id
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
async cancelTransaction(txId) {
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
this.txStateManager.setTxStatusRejected(txId);
|
|
|
|
this._trackTransactionMetricsEvent(txMeta, TRANSACTION_EVENTS.REJECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the txHas on the txMeta
|
|
|
|
*
|
|
|
|
* @param {number} txId - the tx's Id
|
|
|
|
* @param {string} txHash - the hash for the txMeta
|
|
|
|
*/
|
|
|
|
setTxHash(txId, txHash) {
|
|
|
|
// Add the tx hash to the persisted meta-tx object
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
txMeta.hash = txHash;
|
|
|
|
this.txStateManager.updateTransaction(txMeta, 'transactions#setTxHash');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience method for the UI to easily create event fragments when the
|
|
|
|
* fragment does not exist in state.
|
|
|
|
*
|
|
|
|
* @param {number} transactionId - The transaction id to create the event
|
|
|
|
* fragment for
|
|
|
|
* @param {valueOf<TRANSACTION_EVENTS>} event - event type to create
|
|
|
|
*/
|
|
|
|
async createTransactionEventFragment(transactionId, event) {
|
|
|
|
const txMeta = this.txStateManager.getTransaction(transactionId);
|
|
|
|
const {
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
} = await this._buildEventFragmentProperties(txMeta);
|
|
|
|
this._createTransactionEventFragment(
|
|
|
|
txMeta,
|
|
|
|
event,
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// PRIVATE METHODS
|
|
|
|
//
|
|
|
|
/** maps methods for convenience*/
|
|
|
|
_mapMethods() {
|
|
|
|
/** @returns {object} the state in transaction controller */
|
|
|
|
this.getState = () => this.memStore.getState();
|
|
|
|
|
|
|
|
/** @returns {string|number} the network number stored in networkStore */
|
|
|
|
this.getNetwork = () => this.networkStore.getState();
|
|
|
|
|
|
|
|
/** @returns {string} the user selected address */
|
|
|
|
this.getSelectedAddress = () =>
|
|
|
|
this.preferencesStore.getState().selectedAddress;
|
|
|
|
|
|
|
|
/** @returns {Array} transactions whos status is unapproved */
|
|
|
|
this.getUnapprovedTxCount = () =>
|
|
|
|
Object.keys(this.txStateManager.getUnapprovedTxList()).length;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {number} number of transactions that have the status submitted
|
|
|
|
* @param {string} account - hex prefixed account
|
|
|
|
*/
|
|
|
|
this.getPendingTxCount = (account) =>
|
|
|
|
this.txStateManager.getPendingTransactions(account).length;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* see txStateManager
|
|
|
|
*
|
|
|
|
* @param opts
|
|
|
|
*/
|
|
|
|
this.getTransactions = (opts) => this.txStateManager.getTransactions(opts);
|
|
|
|
|
|
|
|
/** @returns {object} the saved default values for advancedGasFee */
|
|
|
|
this.getAdvancedGasFee = () =>
|
|
|
|
this.preferencesStore.getState().advancedGasFee;
|
|
|
|
}
|
|
|
|
|
|
|
|
// called once on startup
|
|
|
|
async _updatePendingTxsAfterFirstBlock() {
|
|
|
|
// wait for first block so we know we're ready
|
|
|
|
await this.blockTracker.getLatestBlock();
|
|
|
|
// get status update for all pending transactions (for the current network)
|
|
|
|
await this.pendingTxTracker.updatePendingTxs();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If transaction controller was rebooted with transactions that are uncompleted
|
|
|
|
* in steps of the transaction signing or user confirmation process it will either
|
|
|
|
* transition txMetas to a failed state or try to redo those tasks.
|
|
|
|
*/
|
|
|
|
|
|
|
|
_onBootCleanUp() {
|
|
|
|
this.txStateManager
|
|
|
|
.getTransactions({
|
|
|
|
searchCriteria: {
|
|
|
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
|
|
|
loadingDefaults: true,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.forEach((tx) => {
|
|
|
|
this.addTxGasDefaults(tx)
|
|
|
|
.then((txMeta) => {
|
|
|
|
txMeta.loadingDefaults = false;
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions: gas estimation for tx on boot',
|
|
|
|
);
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
const txMeta = this.txStateManager.getTransaction(tx.id);
|
|
|
|
txMeta.loadingDefaults = false;
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'failed to estimate gas during boot cleanup.',
|
|
|
|
);
|
|
|
|
this._failTransaction(txMeta.id, error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
this.txStateManager
|
|
|
|
.getTransactions({
|
|
|
|
searchCriteria: {
|
|
|
|
status: TRANSACTION_STATUSES.APPROVED,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.forEach((txMeta) => {
|
|
|
|
const txSignError = new Error(
|
|
|
|
'Transaction found as "approved" during boot - possibly stuck during signing',
|
|
|
|
);
|
|
|
|
this._failTransaction(txMeta.id, txSignError);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* is called in constructor applies the listeners for pendingTxTracker txStateManager
|
|
|
|
* and blockTracker
|
|
|
|
*/
|
|
|
|
_setupListeners() {
|
|
|
|
this.txStateManager.on(
|
|
|
|
'tx:status-update',
|
|
|
|
this.emit.bind(this, 'tx:status-update'),
|
|
|
|
);
|
|
|
|
this._setupBlockTrackerListener();
|
|
|
|
this.pendingTxTracker.on('tx:warning', (txMeta) => {
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions/pending-tx-tracker#event: tx:warning',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
this.pendingTxTracker.on('tx:failed', (txId, error) => {
|
|
|
|
this._failTransaction(txId, error);
|
|
|
|
});
|
|
|
|
this.pendingTxTracker.on(
|
|
|
|
'tx:confirmed',
|
|
|
|
(txId, transactionReceipt, baseFeePerGas, blockTimestamp) =>
|
|
|
|
this.confirmTransaction(
|
|
|
|
txId,
|
|
|
|
transactionReceipt,
|
|
|
|
baseFeePerGas,
|
|
|
|
blockTimestamp,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
this.pendingTxTracker.on('tx:dropped', (txId) => {
|
|
|
|
this._dropTransaction(txId);
|
|
|
|
});
|
|
|
|
this.pendingTxTracker.on('tx:block-update', (txMeta, latestBlockNumber) => {
|
|
|
|
if (!txMeta.firstRetryBlockNumber) {
|
|
|
|
txMeta.firstRetryBlockNumber = latestBlockNumber;
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions/pending-tx-tracker#event: tx:block-update',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.pendingTxTracker.on('tx:retry', (txMeta) => {
|
|
|
|
if (!('retryCount' in txMeta)) {
|
|
|
|
txMeta.retryCount = 0;
|
|
|
|
}
|
|
|
|
txMeta.retryCount += 1;
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions/pending-tx-tracker#event: tx:retry',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets other txMeta statuses to dropped if the txMeta that has been confirmed has other transactions
|
|
|
|
* in the list have the same nonce
|
|
|
|
*
|
|
|
|
* @param {number} txId - the txId of the transaction that has been confirmed in a block
|
|
|
|
*/
|
|
|
|
_markNonceDuplicatesDropped(txId) {
|
|
|
|
// get the confirmed transactions nonce and from address
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
const { nonce, from } = txMeta.txParams;
|
|
|
|
const sameNonceTxs = this.txStateManager.getTransactions({
|
|
|
|
searchCriteria: { nonce, from },
|
|
|
|
});
|
|
|
|
if (!sameNonceTxs.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// mark all same nonce transactions as dropped and give i a replacedBy hash
|
|
|
|
sameNonceTxs.forEach((otherTxMeta) => {
|
|
|
|
if (otherTxMeta.id === txId) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
otherTxMeta.replacedBy = txMeta.hash;
|
|
|
|
this.txStateManager.updateTransaction(
|
|
|
|
txMeta,
|
|
|
|
'transactions/pending-tx-tracker#event: tx:confirmed reference to confirmed txHash with same nonce',
|
|
|
|
);
|
|
|
|
// Drop any transaction that wasn't previously failed (off chain failure)
|
|
|
|
if (otherTxMeta.status !== TRANSACTION_STATUSES.FAILED) {
|
|
|
|
this._dropTransaction(otherTxMeta.id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_setupBlockTrackerListener() {
|
|
|
|
let listenersAreActive = false;
|
|
|
|
const latestBlockHandler = this._onLatestBlock.bind(this);
|
|
|
|
const { blockTracker, txStateManager } = this;
|
|
|
|
|
|
|
|
txStateManager.on('tx:status-update', updateSubscription);
|
|
|
|
updateSubscription();
|
|
|
|
|
|
|
|
function updateSubscription() {
|
|
|
|
const pendingTxs = txStateManager.getPendingTransactions();
|
|
|
|
if (!listenersAreActive && pendingTxs.length > 0) {
|
|
|
|
blockTracker.on('latest', latestBlockHandler);
|
|
|
|
listenersAreActive = true;
|
|
|
|
} else if (listenersAreActive && !pendingTxs.length) {
|
|
|
|
blockTracker.removeListener('latest', latestBlockHandler);
|
|
|
|
listenersAreActive = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async _onLatestBlock(blockNumber) {
|
|
|
|
try {
|
|
|
|
await this.pendingTxTracker.updatePendingTxs();
|
|
|
|
} catch (err) {
|
|
|
|
log.error(err);
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await this.pendingTxTracker.resubmitPendingTxs(blockNumber);
|
|
|
|
} catch (err) {
|
|
|
|
log.error(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the memStore in transaction controller
|
|
|
|
*/
|
|
|
|
_updateMemstore() {
|
|
|
|
const unapprovedTxs = this.txStateManager.getUnapprovedTxList();
|
|
|
|
const currentNetworkTxList = this.txStateManager.getTransactions({
|
|
|
|
limit: MAX_MEMSTORE_TX_LIST_SIZE,
|
|
|
|
});
|
|
|
|
this.memStore.updateState({ unapprovedTxs, currentNetworkTxList });
|
|
|
|
}
|
|
|
|
|
|
|
|
_calculateTransactionsCost(txMeta, approvalTxMeta) {
|
|
|
|
let approvalGasCost = '0x0';
|
|
|
|
if (approvalTxMeta?.txReceipt) {
|
|
|
|
approvalGasCost = calcGasTotal(
|
|
|
|
approvalTxMeta.txReceipt.gasUsed,
|
|
|
|
approvalTxMeta.txReceipt.effectiveGasPrice,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const tradeGasCost = calcGasTotal(
|
|
|
|
txMeta.txReceipt.gasUsed,
|
|
|
|
txMeta.txReceipt.effectiveGasPrice,
|
|
|
|
);
|
|
|
|
const tradeAndApprovalGasCost = new BigNumber(tradeGasCost, 16)
|
|
|
|
.plus(approvalGasCost, 16)
|
|
|
|
.toString(16);
|
|
|
|
return {
|
|
|
|
approvalGasCostInEth: Number(hexWEIToDecETH(approvalGasCost)),
|
|
|
|
tradeGasCostInEth: Number(hexWEIToDecETH(tradeGasCost)),
|
|
|
|
tradeAndApprovalGasCostInEth: Number(
|
|
|
|
hexWEIToDecETH(tradeAndApprovalGasCost),
|
|
|
|
),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
_trackSwapsMetrics(txMeta, approvalTxMeta) {
|
|
|
|
if (this._getParticipateInMetrics() && txMeta.swapMetaData) {
|
|
|
|
if (txMeta.txReceipt.status === '0x0') {
|
|
|
|
this._trackMetaMetricsEvent({
|
|
|
|
event: 'Swap Failed',
|
|
|
|
sensitiveProperties: { ...txMeta.swapMetaData },
|
|
|
|
category: EVENT.CATEGORIES.SWAPS,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const tokensReceived = getSwapsTokensReceivedFromTxMeta(
|
|
|
|
txMeta.destinationTokenSymbol,
|
|
|
|
txMeta,
|
|
|
|
txMeta.destinationTokenAddress,
|
|
|
|
txMeta.txParams.from,
|
|
|
|
txMeta.destinationTokenDecimals,
|
|
|
|
approvalTxMeta,
|
|
|
|
txMeta.chainId,
|
|
|
|
);
|
|
|
|
|
|
|
|
const quoteVsExecutionRatio = tokensReceived
|
|
|
|
? `${new BigNumber(tokensReceived, 10)
|
|
|
|
.div(txMeta.swapMetaData.token_to_amount, 10)
|
|
|
|
.times(100)
|
|
|
|
.round(2)}%`
|
|
|
|
: null;
|
|
|
|
|
|
|
|
const estimatedVsUsedGasRatio =
|
|
|
|
txMeta.txReceipt.gasUsed && txMeta.swapMetaData.estimated_gas
|
|
|
|
? `${new BigNumber(txMeta.txReceipt.gasUsed, 16)
|
|
|
|
.div(txMeta.swapMetaData.estimated_gas, 10)
|
|
|
|
.times(100)
|
|
|
|
.round(2)}%`
|
|
|
|
: null;
|
|
|
|
|
|
|
|
const transactionsCost = this._calculateTransactionsCost(
|
|
|
|
txMeta,
|
|
|
|
approvalTxMeta,
|
|
|
|
);
|
|
|
|
|
|
|
|
this._trackMetaMetricsEvent({
|
|
|
|
event: 'Swap Completed',
|
|
|
|
category: EVENT.CATEGORIES.SWAPS,
|
|
|
|
sensitiveProperties: {
|
|
|
|
...txMeta.swapMetaData,
|
|
|
|
token_to_amount_received: tokensReceived,
|
|
|
|
quote_vs_executionRatio: quoteVsExecutionRatio,
|
|
|
|
estimated_vs_used_gasRatio: estimatedVsUsedGasRatio,
|
|
|
|
approval_gas_cost_in_eth: transactionsCost.approvalGasCostInEth,
|
|
|
|
trade_gas_cost_in_eth: transactionsCost.tradeGasCostInEth,
|
|
|
|
trade_and_approval_gas_cost_in_eth:
|
|
|
|
transactionsCost.tradeAndApprovalGasCostInEth,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async _buildEventFragmentProperties(txMeta, extraParams) {
|
|
|
|
const {
|
|
|
|
id,
|
|
|
|
type,
|
|
|
|
time,
|
|
|
|
status,
|
|
|
|
chainId,
|
|
|
|
origin: referrer,
|
|
|
|
txParams: {
|
|
|
|
gasPrice,
|
|
|
|
gas: gasLimit,
|
|
|
|
maxFeePerGas,
|
|
|
|
maxPriorityFeePerGas,
|
|
|
|
estimateSuggested,
|
|
|
|
estimateUsed,
|
|
|
|
},
|
|
|
|
defaultGasEstimates,
|
|
|
|
originalType,
|
|
|
|
metamaskNetworkId: network,
|
|
|
|
} = txMeta;
|
|
|
|
const { transactions } = this.store.getState();
|
|
|
|
const source = referrer === ORIGIN_METAMASK ? 'user' : 'dapp';
|
|
|
|
|
|
|
|
const { assetType, tokenStandard } = await determineTransactionAssetType(
|
|
|
|
txMeta,
|
|
|
|
this.query,
|
|
|
|
this.getTokenStandardAndDetails,
|
|
|
|
);
|
|
|
|
|
|
|
|
const gasParams = {};
|
|
|
|
|
|
|
|
if (isEIP1559Transaction(txMeta)) {
|
|
|
|
gasParams.max_fee_per_gas = maxFeePerGas;
|
|
|
|
gasParams.max_priority_fee_per_gas = maxPriorityFeePerGas;
|
|
|
|
} else {
|
|
|
|
gasParams.gas_price = gasPrice;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defaultGasEstimates) {
|
|
|
|
const { estimateType } = defaultGasEstimates;
|
|
|
|
if (estimateType) {
|
|
|
|
gasParams.default_estimate = estimateType;
|
|
|
|
let defaultMaxFeePerGas = txMeta.defaultGasEstimates.maxFeePerGas;
|
|
|
|
let defaultMaxPriorityFeePerGas =
|
|
|
|
txMeta.defaultGasEstimates.maxPriorityFeePerGas;
|
|
|
|
|
|
|
|
if (
|
|
|
|
[
|
|
|
|
GAS_RECOMMENDATIONS.LOW,
|
|
|
|
GAS_RECOMMENDATIONS.MEDIUM,
|
|
|
|
GAS_RECOMMENDATIONS.MEDIUM.HIGH,
|
|
|
|
].includes(estimateType)
|
|
|
|
) {
|
|
|
|
const { gasFeeEstimates } = await this._getEIP1559GasFeeEstimates();
|
|
|
|
if (gasFeeEstimates?.[estimateType]?.suggestedMaxFeePerGas) {
|
|
|
|
defaultMaxFeePerGas =
|
|
|
|
gasFeeEstimates[estimateType]?.suggestedMaxFeePerGas;
|
|
|
|
gasParams.default_max_fee_per_gas = defaultMaxFeePerGas;
|
|
|
|
}
|
|
|
|
if (gasFeeEstimates?.[estimateType]?.suggestedMaxPriorityFeePerGas) {
|
|
|
|
defaultMaxPriorityFeePerGas =
|
|
|
|
gasFeeEstimates[estimateType]?.suggestedMaxPriorityFeePerGas;
|
|
|
|
gasParams.default_max_priority_fee_per_gas = defaultMaxPriorityFeePerGas;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (txMeta.defaultGasEstimates.gas) {
|
|
|
|
gasParams.default_gas = txMeta.defaultGasEstimates.gas;
|
|
|
|
}
|
|
|
|
if (txMeta.defaultGasEstimates.gasPrice) {
|
|
|
|
gasParams.default_gas_price = txMeta.defaultGasEstimates.gasPrice;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (estimateSuggested) {
|
|
|
|
gasParams.estimate_suggested = estimateSuggested;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (estimateUsed) {
|
|
|
|
gasParams.estimate_used = estimateUsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extraParams?.gas_used) {
|
|
|
|
gasParams.gas_used = extraParams.gas_used;
|
|
|
|
}
|
|
|
|
|
|
|
|
const gasParamsInGwei = this._getGasValuesInGWEI(gasParams);
|
|
|
|
|
|
|
|
let eip1559Version = '0';
|
|
|
|
if (txMeta.txParams.maxFeePerGas) {
|
|
|
|
const { eip1559V2Enabled } = this.preferencesStore.getState();
|
|
|
|
eip1559Version = eip1559V2Enabled ? '2' : '1';
|
|
|
|
}
|
|
|
|
|
|
|
|
const contractInteractionTypes = [
|
|
|
|
TRANSACTION_TYPES.CONTRACT_INTERACTION,
|
|
|
|
TRANSACTION_TYPES.TOKEN_METHOD_APPROVE,
|
|
|
|
TRANSACTION_TYPES.TOKEN_METHOD_SAFE_TRANSFER_FROM,
|
|
|
|
TRANSACTION_TYPES.TOKEN_METHOD_SET_APPROVAL_FOR_ALL,
|
|
|
|
TRANSACTION_TYPES.TOKEN_METHOD_TRANSFER,
|
|
|
|
TRANSACTION_TYPES.TOKEN_METHOD_TRANSFER_FROM,
|
|
|
|
TRANSACTION_TYPES.SMART,
|
|
|
|
TRANSACTION_TYPES.SWAP,
|
|
|
|
TRANSACTION_TYPES.SWAP_APPROVAL,
|
|
|
|
].includes(type);
|
|
|
|
|
|
|
|
let transactionType = TRANSACTION_TYPES.SIMPLE_SEND;
|
|
|
|
let transactionContractMethod;
|
|
|
|
if (type === TRANSACTION_TYPES.CANCEL) {
|
|
|
|
transactionType = TRANSACTION_TYPES.CANCEL;
|
|
|
|
} else if (type === TRANSACTION_TYPES.RETRY) {
|
|
|
|
transactionType = originalType;
|
|
|
|
} else if (type === TRANSACTION_TYPES.DEPLOY_CONTRACT) {
|
|
|
|
transactionType = TRANSACTION_TYPES.DEPLOY_CONTRACT;
|
|
|
|
} else if (contractInteractionTypes) {
|
|
|
|
transactionType = TRANSACTION_TYPES.CONTRACT_INTERACTION;
|
|
|
|
transactionContractMethod = transactions[id]?.contractMethodName;
|
|
|
|
}
|
|
|
|
|
|
|
|
const properties = {
|
|
|
|
chain_id: chainId,
|
|
|
|
referrer,
|
|
|
|
source,
|
|
|
|
network,
|
|
|
|
eip_1559_version: eip1559Version,
|
|
|
|
gas_edit_type: 'none',
|
|
|
|
gas_edit_attempted: 'none',
|
|
|
|
account_type: await this.getAccountType(this.getSelectedAddress()),
|
|
|
|
device_model: await this.getDeviceModel(this.getSelectedAddress()),
|
|
|
|
asset_type: assetType,
|
|
|
|
token_standard: tokenStandard,
|
|
|
|
transaction_type: transactionType,
|
|
|
|
transaction_speed_up: type === TRANSACTION_TYPES.RETRY,
|
|
|
|
};
|
|
|
|
|
|
|
|
const sensitiveProperties = {
|
|
|
|
status,
|
|
|
|
transaction_envelope_type: isEIP1559Transaction(txMeta)
|
|
|
|
? TRANSACTION_ENVELOPE_TYPE_NAMES.FEE_MARKET
|
|
|
|
: TRANSACTION_ENVELOPE_TYPE_NAMES.LEGACY,
|
|
|
|
first_seen: time,
|
|
|
|
gas_limit: gasLimit,
|
|
|
|
transaction_contract_method: transactionContractMethod,
|
|
|
|
...extraParams,
|
|
|
|
...gasParamsInGwei,
|
|
|
|
};
|
|
|
|
|
|
|
|
return { properties, sensitiveProperties };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method that checks for the presence of an existing fragment by id
|
|
|
|
* appropriate for the type of event that triggered fragment creation. If the
|
|
|
|
* appropriate fragment exists, then nothing is done. If it does not exist a
|
|
|
|
* new event fragment is created with the appropriate payload.
|
|
|
|
*
|
|
|
|
* @param {TransactionMeta} txMeta - Transaction meta object
|
|
|
|
* @param {TransactionMetaMetricsEventString} event - The event type that
|
|
|
|
* triggered fragment creation
|
|
|
|
* @param {object} properties - properties to include in the fragment
|
|
|
|
* @param {object} [sensitiveProperties] - sensitive properties to include in
|
|
|
|
* the fragment
|
|
|
|
*/
|
|
|
|
_createTransactionEventFragment(
|
|
|
|
txMeta,
|
|
|
|
event,
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
) {
|
|
|
|
const isSubmitted = [
|
|
|
|
TRANSACTION_EVENTS.FINALIZED,
|
|
|
|
TRANSACTION_EVENTS.SUBMITTED,
|
|
|
|
].includes(event);
|
|
|
|
const uniqueIdentifier = `transaction-${
|
|
|
|
isSubmitted ? 'submitted' : 'added'
|
|
|
|
}-${txMeta.id}`;
|
|
|
|
|
|
|
|
const fragment = this.getEventFragmentById(uniqueIdentifier);
|
|
|
|
if (typeof fragment !== 'undefined') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
// When a transaction is added to the controller, we know that the user
|
|
|
|
// will be presented with a confirmation screen. The user will then
|
|
|
|
// either confirm or reject that transaction. Each has an associated
|
|
|
|
// event we want to track. While we don't necessarily need an event
|
|
|
|
// fragment to model this, having one allows us to record additional
|
|
|
|
// properties onto the event from the UI. For example, when the user
|
|
|
|
// edits the transactions gas params we can record that property and
|
|
|
|
// then get analytics on the number of transactions in which gas edits
|
|
|
|
// occur.
|
|
|
|
case TRANSACTION_EVENTS.ADDED:
|
|
|
|
this.createEventFragment({
|
|
|
|
category: EVENT.CATEGORIES.TRANSACTIONS,
|
|
|
|
initialEvent: TRANSACTION_EVENTS.ADDED,
|
|
|
|
successEvent: TRANSACTION_EVENTS.APPROVED,
|
|
|
|
failureEvent: TRANSACTION_EVENTS.REJECTED,
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
persist: true,
|
|
|
|
uniqueIdentifier,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
// If for some reason an approval or rejection occurs without the added
|
|
|
|
// fragment existing in memory, we create the added fragment but without
|
|
|
|
// the initialEvent firing. This is to prevent possible duplication of
|
|
|
|
// events. A good example why this might occur is if the user had
|
|
|
|
// unapproved transactions in memory when updating to the version that
|
|
|
|
// includes this change. A migration would have also helped here but this
|
|
|
|
// implementation hardens against other possible bugs where a fragment
|
|
|
|
// does not exist.
|
|
|
|
case TRANSACTION_EVENTS.APPROVED:
|
|
|
|
case TRANSACTION_EVENTS.REJECTED:
|
|
|
|
this.createEventFragment({
|
|
|
|
category: EVENT.CATEGORIES.TRANSACTIONS,
|
|
|
|
successEvent: TRANSACTION_EVENTS.APPROVED,
|
|
|
|
failureEvent: TRANSACTION_EVENTS.REJECTED,
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
persist: true,
|
|
|
|
uniqueIdentifier,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
// When a transaction is submitted it will always result in updating
|
|
|
|
// to a finalized state (dropped, failed, confirmed) -- eventually.
|
|
|
|
// However having a fragment started at this stage allows augmenting
|
|
|
|
// analytics data with user interactions such as speeding up and
|
|
|
|
// canceling the transactions. From this controllers perspective a new
|
|
|
|
// transaction with a new id is generated for speed up and cancel
|
|
|
|
// transactions, but from the UI we could augment the previous ID with
|
|
|
|
// supplemental data to show user intent. Such as when they open the
|
|
|
|
// cancel UI but don't submit. We can record that this happened and add
|
|
|
|
// properties to the transaction event.
|
|
|
|
case TRANSACTION_EVENTS.SUBMITTED:
|
|
|
|
this.createEventFragment({
|
|
|
|
category: EVENT.CATEGORIES.TRANSACTIONS,
|
|
|
|
initialEvent: TRANSACTION_EVENTS.SUBMITTED,
|
|
|
|
successEvent: TRANSACTION_EVENTS.FINALIZED,
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
persist: true,
|
|
|
|
uniqueIdentifier,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
// If for some reason a transaction is finalized without the submitted
|
|
|
|
// fragment existing in memory, we create the submitted fragment but
|
|
|
|
// without the initialEvent firing. This is to prevent possible
|
|
|
|
// duplication of events. A good example why this might occur is if th
|
|
|
|
// user had pending transactions in memory when updating to the version
|
|
|
|
// that includes this change. A migration would have also helped here but
|
|
|
|
// this implementation hardens against other possible bugs where a
|
|
|
|
// fragment does not exist.
|
|
|
|
case TRANSACTION_EVENTS.FINALIZED:
|
|
|
|
this.createEventFragment({
|
|
|
|
category: EVENT.CATEGORIES.TRANSACTIONS,
|
|
|
|
successEvent: TRANSACTION_EVENTS.FINALIZED,
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
persist: true,
|
|
|
|
uniqueIdentifier,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extracts relevant properties from a transaction meta
|
|
|
|
* object and uses them to create and send metrics for various transaction
|
|
|
|
* events.
|
|
|
|
*
|
|
|
|
* @param {object} txMeta - the txMeta object
|
|
|
|
* @param {TransactionMetaMetricsEventString} event - the name of the transaction event
|
|
|
|
* @param {object} extraParams - optional props and values to include in sensitiveProperties
|
|
|
|
*/
|
|
|
|
async _trackTransactionMetricsEvent(txMeta, event, extraParams = {}) {
|
|
|
|
if (!txMeta) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const {
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
} = await this._buildEventFragmentProperties(txMeta, extraParams);
|
|
|
|
|
|
|
|
// Create event fragments for event types that spawn fragments, and ensure
|
|
|
|
// existence of fragments for event types that act upon them.
|
|
|
|
this._createTransactionEventFragment(
|
|
|
|
txMeta,
|
|
|
|
event,
|
|
|
|
properties,
|
|
|
|
sensitiveProperties,
|
|
|
|
);
|
|
|
|
|
|
|
|
let id;
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
// If the user approves a transaction, finalize the transaction added
|
|
|
|
// event fragment.
|
|
|
|
case TRANSACTION_EVENTS.APPROVED:
|
|
|
|
id = `transaction-added-${txMeta.id}`;
|
|
|
|
this.updateEventFragment(id, { properties, sensitiveProperties });
|
|
|
|
this.finalizeEventFragment(id);
|
|
|
|
break;
|
|
|
|
// If the user rejects a transaction, finalize the transaction added
|
|
|
|
// event fragment. with the abandoned flag set.
|
|
|
|
case TRANSACTION_EVENTS.REJECTED:
|
|
|
|
id = `transaction-added-${txMeta.id}`;
|
|
|
|
this.updateEventFragment(id, { properties, sensitiveProperties });
|
|
|
|
this.finalizeEventFragment(id, {
|
|
|
|
abandoned: true,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
// When a transaction is finalized, also finalize the transaction
|
|
|
|
// submitted event fragment.
|
|
|
|
case TRANSACTION_EVENTS.FINALIZED:
|
|
|
|
id = `transaction-submitted-${txMeta.id}`;
|
|
|
|
this.updateEventFragment(id, { properties, sensitiveProperties });
|
|
|
|
this.finalizeEventFragment(`transaction-submitted-${txMeta.id}`);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_getTransactionCompletionTime(submittedTime) {
|
|
|
|
return Math.round((Date.now() - submittedTime) / 1000).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
_getGasValuesInGWEI(gasParams) {
|
|
|
|
const gasValuesInGwei = {};
|
|
|
|
for (const param in gasParams) {
|
|
|
|
if (isHexString(gasParams[param])) {
|
|
|
|
gasValuesInGwei[param] = hexWEIToDecGWEI(gasParams[param]);
|
|
|
|
} else {
|
|
|
|
gasValuesInGwei[param] = gasParams[param];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return gasValuesInGwei;
|
|
|
|
}
|
|
|
|
|
|
|
|
_failTransaction(txId, error) {
|
|
|
|
this.txStateManager.setTxStatusFailed(txId, error);
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
this._trackTransactionMetricsEvent(txMeta, TRANSACTION_EVENTS.FINALIZED, {
|
|
|
|
error: error.message,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_dropTransaction(txId) {
|
|
|
|
this.txStateManager.setTxStatusDropped(txId);
|
|
|
|
const txMeta = this.txStateManager.getTransaction(txId);
|
|
|
|
this._trackTransactionMetricsEvent(txMeta, TRANSACTION_EVENTS.FINALIZED);
|
|
|
|
}
|
|
|
|
}
|