Builds ready [aa0f35a]
- builds: chrome, firefox, opera
- build viz: Build System
- code coverage: Report
- storybook: Storybook
- all artifacts
- bundle viz: * background: 0, 1, 10, 2, 3, 4, 5, 6, 7, 8, 9* common: 0, 1, 2, 3* contentscript: contentscript* disable-console: disable-console* inpage: inpage* phishing-detect: 0* sentry-install: sentry-install* ui: 0, 1, 2, 3, 4, 5
Page Load Metrics (688 ± 45 ms)
MetaMask/metamask-extension#11363
MetaMask/metamask-extension#11352
// source: https://github.com/MetaMask/metamask-extension/blob/714170c7b8a4b182b511d3fd5157ddcf5f381178/shared/constants/swaps.js#L101
const METASWAP_ETH_API_HOST = 'https://api.metaswap.codefi.network';
export const METASWAP_CHAINID_API_HOST_MAP = {
[MAINNET_CHAIN_ID]: METASWAP_ETH_API_HOST]
};
MetaMask/metamask-extension#11357
MetaMask/metamask-extension#11322
/*
* bytes4(keccak256('name()')) == 0x06fdde03
* bytes4(keccak256('symbol()')) == 0x95d89b41
* bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
*
* => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
*/
bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
// register the supported interfaces to conform to ERC721 via ERC165
_registerInterface(_INTERFACE_ID_ERC721_METADATA);
}
MetaMask/metamask-extension#11731
( granted this is not published yet ) https://github.com/MetaMask/metamask-extension/commit/d0e4a890c48859a3d8ae5f48257da1004039e7a3.diff
congratulations