1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/test/data/mock-state.json

1571 lines
49 KiB
JSON
Raw Normal View History

2018-09-24 18:28:04 +02:00
{
"DNS": {
"resolution": null
},
"appState": {
"networkDropdownOpen": false,
"gasIsLoading": false,
"isLoading": false,
"modal": {
"open": false,
"modalState": {
"name": null,
"props": {}
},
"previousModalState": {
"name": null
}
},
"warning": null
},
2022-08-16 17:25:30 +02:00
"history": {
"mostRecentOverviewPage": "/mostRecentOverviewPage"
2022-08-16 17:25:30 +02:00
},
2018-09-24 18:28:04 +02:00
"metamask": {
"ipfsGateway": "dweb.link",
"dismissSeedBackUpReminder": false,
"usePhishDetect": true,
"useMultiAccountBalanceChecker": false,
"participateInMetaMetrics": false,
"gasEstimateType": "fee-market",
"showBetaHeader": false,
2022-08-16 17:25:30 +02:00
"gasFeeEstimates": {
"low": {
"minWaitTimeEstimate": 180000,
"maxWaitTimeEstimate": 300000,
"suggestedMaxPriorityFeePerGas": "3",
"suggestedMaxFeePerGas": "53"
2022-08-16 17:25:30 +02:00
},
"medium": {
"minWaitTimeEstimate": 15000,
"maxWaitTimeEstimate": 60000,
"suggestedMaxPriorityFeePerGas": "7",
"suggestedMaxFeePerGas": "70"
2022-08-16 17:25:30 +02:00
},
"high": {
"minWaitTimeEstimate": 0,
"maxWaitTimeEstimate": 15000,
"suggestedMaxPriorityFeePerGas": "10",
"suggestedMaxFeePerGas": "100"
2022-08-16 17:25:30 +02:00
},
"estimatedBaseFee": "50",
"historicalBaseFeeRange": ["28.533098435", "70.351148354"],
2022-08-16 17:25:30 +02:00
"baseFeeTrend": "up",
"latestPriorityFeeRange": ["1", "40"],
"historicalPriorityFeeRange": ["0.1458417", "700.156384646"],
"priorityFeeTrend": "down",
"networkCongestion": 0.90625
2022-08-16 17:25:30 +02:00
},
"snaps": [{}],
2022-08-16 17:25:30 +02:00
"preferences": {
"hideZeroBalanceTokens": false,
"showFiatInTestnets": false,
"showTestNetworks": true,
"useNativeCurrencyAsPrimaryCurrency": true
},
"ensResolutionsByAddress": {},
"isAccountMenuOpen": false,
"isUnlocked": true,
"alertEnabledness": {
"unconnectedAccount": true
},
"featureFlags": {
"showIncomingTransactions": true
},
NetworkController: Split `network` into `networkId` and `networkStatus` (#17556) The `network` store of the network controller crams two types of data into one place. It roughly tracks whether we have enough information to make requests to the network and whether the network is capable of receiving requests, but it also stores the ID of the network (as obtained via `net_version`). Generally we shouldn't be using the network ID for anything, as it has been completely replaced by chain ID, which all custom RPC endpoints have been required to support for over a year now. However, as the network ID is used in various places within the extension codebase, removing it entirely would be a non-trivial effort. So, minimally, this commit splits `network` into two stores: `networkId` and `networkStatus`. But it also expands the concept of network status. Previously, the network was in one of two states: "loading" and "not-loading". But now it can be in one of four states: - `available`: The network is able to receive and respond to requests. - `unavailable`: The network is not able to receive and respond to requests for unknown reasons. - `blocked`: The network is actively blocking requests based on the user's geolocation. (This is specific to Infura.) - `unknown`: We don't know whether the network can receive and respond to requests, either because we haven't checked or we tried to check and were unsuccessful. This commit also changes how the network status is determined — specifically, how many requests are used to determine that status, when they occur, and whether they are awaited. Previously, the network controller would make 2 to 3 requests during the course of running `lookupNetwork`. * First, if it was an Infura network, it would make a request for `eth_blockNumber` to determine whether Infura was blocking requests or not, then emit an appropriate event. This operation was not awaited. * Then, regardless of the network, it would fetch the network ID via `net_version`. This operation was awaited. * Finally, regardless of the network, it would fetch the latest block via `eth_getBlockByNumber`, then use the result to determine whether the network supported EIP-1559. This operation was awaited. Now: * One fewer request is made, specifically `eth_blockNumber`, as we don't need to make an extra request to determine whether Infura is blocking requests; we can reuse `eth_getBlockByNumber`; * All requests are awaited, which makes `lookupNetwork` run fully in-band instead of partially out-of-band; and * Both requests for `net_version` and `eth_getBlockByNumber` are performed in parallel to make `lookupNetwork` run slightly faster.
2023-03-31 00:49:12 +02:00
"networkId": "5",
"networkStatus": "available",
"provider": {
"type": "rpc",
"chainId": "0x5",
"ticker": "ETH",
"id": "testNetworkConfigurationId"
},
"networkConfigurations": {
"testNetworkConfigurationId": {
"rpcUrl": "https://testrpc.com",
"chainId": "0x1"
}
},
"keyrings": [
{
"type": "HD Key Tree",
"accounts": [
"0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc",
"0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b"
]
},
{
"type": "Ledger Hardware",
"accounts": ["0xc42edfcc21ed14dda456aa0756c153f7985d8813"]
},
{
"type": "Simple Key Pair",
"accounts": ["0xeb9e64b93097bc15f01f13eae97015c57ab64823"]
}
],
2018-09-24 18:28:04 +02:00
"identities": {
"0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc": {
"address": "0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc",
"name": "Test Account"
},
"0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b": {
"address": "0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b",
"name": "Test Account 2"
},
2018-09-24 18:28:04 +02:00
"0xc42edfcc21ed14dda456aa0756c153f7985d8813": {
"address": "0xc42edfcc21ed14dda456aa0756c153f7985d8813",
"name": "Test Ledger 1"
},
"0xeb9e64b93097bc15f01f13eae97015c57ab64823": {
"name": "Test Account 3",
"address": "0xeb9e64b93097bc15f01f13eae97015c57ab64823"
2018-09-24 18:28:04 +02:00
}
},
"networkDetails": {
"EIPS": {
"1559": true
}
},
2022-08-16 17:25:30 +02:00
"frequentRpcListDetail": [],
"subjectMetadata": {},
"notifications": {
"test": {
"id": "test",
"origin": "local:http://localhost:8086/",
"createdDate": 1652967897732,
"readDate": null,
"message": "Hello, http://localhost:8086!"
},
"test2": {
"id": "test2",
"origin": "local:http://localhost:8086/",
"createdDate": 1652967897732,
"readDate": 1652967897732,
"message": "Hello, http://localhost:8086!"
}
},
"cachedBalances": {},
"incomingTransactions": {},
2018-09-24 18:28:04 +02:00
"unapprovedTxs": {
"8393540981007587": {
"chainId": "0x5",
2018-09-24 18:28:04 +02:00
"id": 8393540981007587,
"time": 1536268017676,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": false,
"txParams": {
"data": "0xa9059cbb000000000000000000000000b19ac54efa18cc3a14a5b821bfec73d284bf0c5e0000000000000000000000000000000000000000000000003782dace9d900000",
2018-09-24 18:28:04 +02:00
"from": "0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc",
"to": "0xc42edfcc21ed14dda456aa0756c153f7985d8813",
"value": "0x0",
"gas": "0x5208",
"gasPrice": "0x3b9aca00"
},
"history": [
{
"id": 8393540981007587,
"time": 1536268017676,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": true,
"txParams": {
"from": "0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc",
"to": "0xc42edfcc21ed14dda456aa0756c153f7985d8813",
"value": "0x0",
"gas": "0x5208",
"gasPrice": "0x3b9aca00"
}
},
[
{
"op": "replace",
"path": "/loadingDefaults",
"value": false,
"timestamp": 1536268017685
}
],
[
{
"op": "add",
"path": "/origin",
"value": "MetaMask",
"note": "#newUnapprovedTransaction - adding the origin",
"timestamp": 1536268017686
}
]
],
"origin": "metamask"
2018-09-24 18:28:04 +02:00
}
},
"selectedAddress": "0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc",
"accounts": {
"0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc": {
"balance": "0x346ba7725f412cbfdb",
2018-09-24 18:28:04 +02:00
"address": "0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc"
},
"0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b": {
"address": "0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b",
"balance": "0x0"
},
2018-09-24 18:28:04 +02:00
"0xc42edfcc21ed14dda456aa0756c153f7985d8813": {
"address": "0xc42edfcc21ed14dda456aa0756c153f7985d8813",
"balance": "0x0"
},
"0xeb9e64b93097bc15f01f13eae97015c57ab64823": {
"address": "0xeb9e64b93097bc15f01f13eae97015c57ab64823",
"balance": "0x0"
2018-09-24 18:28:04 +02:00
}
},
"tokens": [
{
"address": "0x108cf70c7d384c552f42c07c41c0e1e46d77ea0d",
"symbol": "TEST",
"decimals": "0"
},
{
"address": "0xd8f6a2ffb0fc5952d16c9768b71cfd35b6399aa5",
"decimals": "8",
"symbol": "TEST2"
},
{
"address": "0x617b3f8050a0bd94b6b1da02b4384ee5b4df13f4",
"symbol": "META",
"decimals": "18"
}
],
"contractExchangeRates": {
"0x108cf70c7d384c552f42c07c41c0e1e46d77ea0d": 0.00039345803819379796,
"0xd8f6a2ffb0fc5952d16c9768b71cfd35b6399aa5": 0.00008189274407698049
},
"ticker": "ETH",
2018-09-24 18:28:04 +02:00
"currentCurrency": "usd",
"nativeCurrency": "ETH",
2018-09-24 18:28:04 +02:00
"conversionRate": 556.12,
"addressBook": {
"0x5": {
"0xc42edfcc21ed14dda456aa0756c153f7985d8813": {
"address": "0xc42edfcc21ed14dda456aa0756c153f7985d8813",
"chainId": "0x5",
"isEns": false,
"memo": "",
2020-05-05 16:05:16 +02:00
"name": "Address Book Account 1"
}
2018-09-24 18:28:04 +02:00
}
},
2018-09-24 18:28:04 +02:00
"unapprovedMsgs": {},
"unapprovedMsgCount": 0,
"unapprovedPersonalMsgs": {},
"unapprovedPersonalMsgCount": 0,
"unapprovedDecryptMsgs": {},
"unapprovedDecryptMsgCount": 0,
"unapprovedEncryptionPublicKeyMsgs": {},
"unapprovedEncryptionPublicKeyMsgCount": 0,
2018-09-24 18:28:04 +02:00
"unapprovedTypedMessages": {},
"unapprovedTypedMessagesCount": 0,
"useTokenDetection": true,
"useCurrencyRateCheck": true,
"advancedGasFee": {
"maxBaseFee": "75",
"priorityFee": "2"
},
"nftsDropdownState": {
"0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc": {
"0x5": {
"0x495f947276749Ce646f68AC8c248420045cb7b5e": false
}
}
},
"allNftContracts": {
2023-03-07 15:46:02 +01:00
"0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc": {
"1": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"description": null,
"name": "Munk Generator",
"logo": null,
"symbol": "MUNK",
"assetContractType": "non-fungible",
"createdDate": null,
"schemaName": "ERC721",
"externalLink": null
}
],
"137": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"description": null,
"name": "Munk Generator",
"logo": null,
"symbol": "MUNK",
"assetContractType": "non-fungible",
"createdDate": null,
"schemaName": "ERC721",
"externalLink": null
}
],
"11155111": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"description": null,
"name": "Munk Generator",
"logo": null,
"symbol": "MUNK",
"assetContractType": "non-fungible",
"createdDate": null,
"schemaName": "ERC721",
"externalLink": null
}
],
"5": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"description": null,
"name": "Munk Generator",
"logo": null,
"symbol": "MUNK",
"assetContractType": "non-fungible",
"createdDate": null,
"schemaName": "ERC721",
"externalLink": null
},
{
"address": "0x495f947276749Ce646f68AC8c248420045cb7b5e",
"description": null,
"name": "Punk Generator",
"logo": null,
"symbol": "PUNK",
"assetContractType": "non-fungible",
"createdDate": null,
"schemaName": "ERC1155",
"externalLink": null
}
],
"153": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"description": null,
"name": "Munk Generator",
"logo": null,
"symbol": "MUNK",
"assetContractType": "non-fungible",
"createdDate": null,
"schemaName": "ERC721",
"externalLink": null
}
]
}
},
"allNfts": {
"0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc": {
"1": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"tokenId": "1",
"name": "MUNK #1",
"description": null,
"image": "ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL",
"standard": "ERC721"
}
],
"137": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"tokenId": "1",
"name": "MUNK #1",
"description": null,
"image": "ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL",
"standard": "ERC721"
}
],
"11155111": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"tokenId": "1",
"name": "MUNK #1",
"description": null,
"image": "ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL",
"standard": "ERC721"
}
],
"5": [
{
"address": "0x495f947276749Ce646f68AC8c248420045cb7b5e",
"tokenId": "58076532811975507823669075598676816378162417803895263482849101575514658701313",
"name": "Punk #4",
"creator": {
"user": {
"username": null
},
"profile_img_url": null,
"address": "0x806627172af48bd5b0765d3449a7def80d6576ff",
"config": ""
},
"description": "Red Mohawk bam!",
"image": "https://lh3.googleusercontent.com/BdxvLseXcfl57BiuQcQYdJ64v-aI8din7WPk0Pgo3qQFhAUH-B6i-dCqqc_mCkRIzULmwzwecnohLhrcH8A9mpWIZqA7ygc52Sr81hE",
"standard": "ERC1155"
},
{
"address": "0x495f947276749Ce646f68AC8c248420045cb7b5e",
"tokenId": "58076532811975507823669075598676816378162417803895263482849101574415147073537",
"name": "Punk #3",
"creator": {
"user": {
"username": null
},
"profile_img_url": null,
"address": "0x806627172af48bd5b0765d3449a7def80d6576ff",
"config": ""
},
"description": "Clown PUNK!!!",
"image": "https://lh3.googleusercontent.com/H7VrxaalZv4PF1B8U7ADuc8AfuqTVyzmMEDQ5OXKlx0Tqu5XiwsKYj4j_pAF6wUJjLMQbSN_0n3fuj84lNyRhFW9hyrxqDfY1IiQEQ",
"standard": "ERC1155"
},
{
"address": "0x495f947276749Ce646f68AC8c248420045cb7b5e",
"tokenId": "58076532811975507823669075598676816378162417803895263482849101573315635445761",
"name": "Punk #2",
"creator": {
"user": {
"username": null
},
"profile_img_url": null,
"address": "0x806627172af48bd5b0765d3449a7def80d6576ff",
"config": ""
},
"description": "Got glasses and black hair!",
"image": "https://lh3.googleusercontent.com/CHNTSlKB_Gob-iwTq8jcag6XwBkTqBMLt_vEKeBv18Q4AoPFAEPceqK6mRzkad2s5djx6CT5zbGQwDy81WwtNzViK5dQbG60uAWv",
"standard": "ERC1155"
},
{
"address": "0x495f947276749Ce646f68AC8c248420045cb7b5e",
"tokenId": "58076532811975507823669075598676816378162417803895263482849101572216123817985",
"name": "Punk #1",
"creator": {
"user": {
"username": null
},
"profile_img_url": null,
"address": "0x806627172af48bd5b0765d3449a7def80d6576ff",
"config": ""
},
"image": "https://lh3.googleusercontent.com/4jfPi-nQNWCUXD5qVNVWX7LX2UufU_elEJcvICFlsTdcBXv70asnDEOlI8oKECZxlXq1wseeIXMwmP5tLyOUxMKk",
"standard": "ERC1155"
},
{
"address": "0x495f947276749Ce646f68AC8c248420045cb7b5e",
"tokenId": "58076532811975507823669075598676816378162417803895263482849101571116612190209",
"name": "Punk #4651",
"creator": {
"user": {
"username": null
},
"profile_img_url": null,
"address": "0x806627172af48bd5b0765d3449a7def80d6576ff",
"config": ""
},
"image": "https://lh3.googleusercontent.com/BdxvLseXcfl57BiuQcQYdJ64v-aI8din7WPk0Pgo3qQFhAUH-B6i-dCqqc_mCkRIzULmwzwecnohLhrcH8A9mpWIZqA7ygc52Sr81hE",
"standard": "ERC1155"
},
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"tokenId": "1",
"name": "MUNK #1",
"description": null,
"image": "ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL",
"standard": "ERC721",
"lastSale": {
"total_price": "4900000000000000",
"event_timestamp": "2023-01-18T21:51:23",
"payment_token": {
"symbol": "ETH"
}
}
},
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"tokenId": "2",
"name": "MUNK #2",
"description": null,
"image": "ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL",
"standard": "ERC721"
},
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"tokenId": "3",
"name": "MUNK #3",
"description": null,
"image": "ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL",
"standard": "ERC721"
}
],
"153": [
{
"address": "0xDc7382Eb0Bc9C352A4CbA23c909bDA01e0206414",
"tokenId": "1",
"name": "MUNK #1",
"description": null,
"image": "ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL",
"standard": "ERC721"
}
]
}
},
"tokenList": {
"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
"address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
"symbol": "WBTC",
"decimals": 8,
"name": "Wrapped Bitcoin",
"iconUrl": "https://s3.amazonaws.com/airswap-token-images/WBTC.png",
"aggregators": [
"airswapLight",
"bancor",
"cmc",
"coinGecko",
"kleros",
"oneInch",
"paraswap",
"pmm",
"totle",
"zapper",
"zerion",
"zeroEx"
],
"occurrences": 12
},
"0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": {
"address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
"symbol": "YFI",
"decimals": 18,
"name": "yearn.finance",
"iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png",
"aggregators": [
"airswapLight",
"bancor",
"cmc",
"coinGecko",
"kleros",
"oneInch",
"paraswap",
"pmm",
"totle",
"zapper",
"zerion",
"zeroEx"
],
"occurrences": 12
}
},
"currentNetworkTxList": [
2018-09-24 18:28:04 +02:00
{
"id": 3387511061307736,
"time": 1528133130531,
"status": "confirmed",
"metamaskNetworkId": "4",
"loadingDefaults": false,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x92e659448c48fc926ec942d0da1459260d36bb33",
"value": "0x1bc16d674ec80000",
"gas": "0xcf08",
"gasPrice": "0x3b9aca00",
"nonce": "0xb5"
},
"history": [
{
"id": 3387511061307736,
"time": 1528133130531,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": true,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x92e659448c48fc926ec942d0da1459260d36bb33",
"value": "0x1bc16d674ec80000",
"gas": "0xcf08",
"gasPrice": "0x3b9aca00"
}
},
[
{
"op": "replace",
"path": "/loadingDefaults",
"value": false,
"timestamp": 1528133130666
}
],
[
{
"op": "add",
"path": "/origin",
"value": "MetaMask",
"note": "#newUnapprovedTransaction - adding the origin",
"timestamp": 1528133130667
}
],
[],
[
{
"op": "replace",
"path": "/status",
"value": "approved",
"note": "txStateManager: setting status to approved",
"timestamp": 1528133131716
}
],
[
{
"op": "add",
"path": "/txParams/nonce",
"value": "0xb5",
"note": "transactions#approveTransaction",
"timestamp": 1528133131806
},
{
"op": "add",
"path": "/nonceDetails",
"value": {
"params": {
"highestLocallyConfirmed": 0,
"highestSuggested": 181,
"nextNetworkNonce": 181
},
"local": {
"name": "local",
"nonce": 181,
"details": {
"startPoint": 181,
"highest": 181
}
},
"network": {
"name": "network",
"nonce": 181,
"details": {
"baseCount": 181
}
}
}
}
],
[
{
"op": "replace",
"path": "/status",
"value": "signed",
"note": "transactions#publishTransaction",
"timestamp": 1528133131825
},
{
"op": "add",
"path": "/rawTx",
"value": "0xf86c81b5843b9aca0082cf089492e659448c48fc926ec942d0da1459260d36bb33881bc16d674ec80000802ba03f879cd33a31180da38545d0f809822e00ddf35954d8b0ece83bacf22347ce54a06ad050487978e425ca6a014ed55ea8e9a190069863ed96a0eefa88d729ea1eda"
}
],
[],
[
{
"op": "add",
"path": "/hash",
"value": "0x516b77569173a04c76fdb6545cf279ebd0c75f5d25d6e4ce019925205f0e3709",
"note": "transactions#setTxHash",
"timestamp": 1528133131951
}
],
[
{
"op": "add",
"path": "/submittedTime",
"value": 1528133131951,
"note": "txStateManager - add submitted time stamp",
"timestamp": 1528133131952
}
],
[
{
"op": "replace",
"path": "/status",
"value": "submitted",
"note": "txStateManager: setting status to submitted",
"timestamp": 1528133131955
}
],
[
{
"op": "add",
"path": "/firstRetryBlockNumber",
"value": "0x24af6b",
"note": "transactions/pending-tx-tracker#event: tx:block-update",
"timestamp": 1528133134414
}
],
[
{
"op": "replace",
"path": "/status",
"value": "confirmed",
"note": "txStateManager: setting status to confirmed",
"timestamp": 1528133158516
}
]
],
"origin": "MetaMask",
"nonceDetails": {
"params": {
"highestLocallyConfirmed": 0,
"highestSuggested": 181,
"nextNetworkNonce": 181
},
"local": {
"name": "local",
"nonce": 181,
"details": {
"startPoint": 181,
"highest": 181
}
},
"network": {
"name": "network",
"nonce": 181,
"details": {
"baseCount": 181
}
}
},
"rawTx": "0xf86c81b5843b9aca0082cf089492e659448c48fc926ec942d0da1459260d36bb33881bc16d674ec80000802ba03f879cd33a31180da38545d0f809822e00ddf35954d8b0ece83bacf22347ce54a06ad050487978e425ca6a014ed55ea8e9a190069863ed96a0eefa88d729ea1eda",
"hash": "0x516b77569173a04c76fdb6545cf279ebd0c75f5d25d6e4ce019925205f0e3709",
"submittedTime": 1528133131951,
"firstRetryBlockNumber": "0x24af6b"
},
{
"id": 3387511061307737,
"time": 1528133149983,
"status": "confirmed",
"metamaskNetworkId": "4",
"loadingDefaults": false,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x92e659448c48fc926ec942d0da1459260d36bb33",
"value": "0x1bc16d674ec80000",
"gas": "0xcf08",
"gasPrice": "0x3b9aca00",
"nonce": "0xb6"
},
"history": [
{
"id": 3387511061307737,
"time": 1528133149983,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": true,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x92e659448c48fc926ec942d0da1459260d36bb33",
"value": "0x1bc16d674ec80000",
"gas": "0xcf08",
"gasPrice": "0x3b9aca00"
}
},
[
{
"op": "replace",
"path": "/loadingDefaults",
"value": false,
"timestamp": 1528133150011
}
],
[
{
"op": "add",
"path": "/origin",
"value": "MetaMask",
"note": "#newUnapprovedTransaction - adding the origin",
"timestamp": 1528133150013
}
],
[],
[
{
"op": "replace",
"path": "/status",
"value": "approved",
"note": "txStateManager: setting status to approved",
"timestamp": 1528133151102
}
],
[
{
"op": "add",
"path": "/txParams/nonce",
"value": "0xb6",
"note": "transactions#approveTransaction",
"timestamp": 1528133151189
},
{
"op": "add",
"path": "/nonceDetails",
"value": {
"params": {
"highestLocallyConfirmed": 0,
"highestSuggested": 181,
"nextNetworkNonce": 181
},
"local": {
"name": "local",
"nonce": 182,
"details": {
"startPoint": 181,
"highest": 182
}
},
"network": {
"name": "network",
"nonce": 181,
"details": {
"baseCount": 181
}
}
}
}
],
[
{
"op": "replace",
"path": "/status",
"value": "signed",
"note": "transactions#publishTransaction",
"timestamp": 1528133151203
},
{
"op": "add",
"path": "/rawTx",
"value": "0xf86c81b6843b9aca0082cf089492e659448c48fc926ec942d0da1459260d36bb33881bc16d674ec80000802ba0692deaabf0d79544d41e7c475ad43760679a4f25d0fee908b1da308db1a291a7a0384db85fc6c843ea25986a0760f3c50ab6504fc559fc71fc7f23f60950eb316d"
}
],
[],
[
{
"op": "add",
"path": "/hash",
"value": "0x9271b266d05022cfa841362fae43763ebafcee540d84278b0157ef4a68d4e26f",
"note": "transactions#setTxHash",
"timestamp": 1528133151342
}
],
[
{
"op": "add",
"path": "/submittedTime",
"value": 1528133151347,
"note": "txStateManager - add submitted time stamp",
"timestamp": 1528133151347
}
],
[
{
"op": "replace",
"path": "/status",
"value": "submitted",
"note": "txStateManager: setting status to submitted",
"timestamp": 1528133151368
}
],
[
{
"op": "add",
"path": "/firstRetryBlockNumber",
"value": "0x24af6d",
"note": "transactions/pending-tx-tracker#event: tx:block-update",
"timestamp": 1528133158532
}
],
[
{
"op": "replace",
"path": "/status",
"value": "confirmed",
"note": "txStateManager: setting status to confirmed",
"timestamp": 1528133190636
}
]
],
"origin": "MetaMask",
"nonceDetails": {
"params": {
"highestLocallyConfirmed": 0,
"highestSuggested": 181,
"nextNetworkNonce": 181
},
"local": {
"name": "local",
"nonce": 182,
"details": {
"startPoint": 181,
"highest": 182
}
},
"network": {
"name": "network",
"nonce": 181,
"details": {
"baseCount": 181
}
}
},
"rawTx": "0xf86c81b6843b9aca0082cf089492e659448c48fc926ec942d0da1459260d36bb33881bc16d674ec80000802ba0692deaabf0d79544d41e7c475ad43760679a4f25d0fee908b1da308db1a291a7a0384db85fc6c843ea25986a0760f3c50ab6504fc559fc71fc7f23f60950eb316d",
"hash": "0x9271b266d05022cfa841362fae43763ebafcee540d84278b0157ef4a68d4e26f",
"submittedTime": 1528133151347,
"firstRetryBlockNumber": "0x24af6d"
},
{
"id": 3387511061307738,
"time": 1528133180635,
"status": "confirmed",
"metamaskNetworkId": "4",
"loadingDefaults": false,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x92e659448c48fc926ec942d0da1459260d36bb33",
"value": "0x1bc16d674ec80000",
"gas": "0xcf08",
"gasPrice": "0x12a05f200",
"nonce": "0xb7"
},
"history": [
{
"id": 3387511061307738,
"time": 1528133180635,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": true,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x92e659448c48fc926ec942d0da1459260d36bb33",
"value": "0x1bc16d674ec80000",
"gas": "0xcf08",
"gasPrice": "0x12a05f200"
}
},
[
{
"op": "replace",
"path": "/loadingDefaults",
"value": false,
"timestamp": 1528133180720
}
],
[
{
"op": "add",
"path": "/origin",
"value": "MetaMask",
"note": "#newUnapprovedTransaction - adding the origin",
"timestamp": 1528133180722
}
],
[],
[
{
"op": "replace",
"path": "/status",
"value": "approved",
"note": "txStateManager: setting status to approved",
"timestamp": 1528133181623
}
],
[
{
"op": "add",
"path": "/txParams/nonce",
"value": "0xb7",
"note": "transactions#approveTransaction",
"timestamp": 1528133181726
},
{
"op": "add",
"path": "/nonceDetails",
"value": {
"params": {
"highestLocallyConfirmed": 182,
"highestSuggested": 182,
"nextNetworkNonce": 182
},
"local": {
"name": "local",
"nonce": 183,
"details": {
"startPoint": 182,
"highest": 183
}
},
"network": {
"name": "network",
"nonce": 182,
"details": {
"baseCount": 182
}
}
}
}
],
[
{
"op": "replace",
"path": "/status",
"value": "signed",
"note": "transactions#publishTransaction",
"timestamp": 1528133181749
},
{
"op": "add",
"path": "/rawTx",
"value": "0xf86d81b785012a05f20082cf089492e659448c48fc926ec942d0da1459260d36bb33881bc16d674ec80000802ba086f9846798be6988c39a5cf85f0dbe267e59ca0b96a6a7077e92cba33e10a258a064ffa52ac90c238ce21e6f085283216191b185a1eccd7daae6e2ab66ba26ada0"
}
],
[],
[
{
"op": "add",
"path": "/hash",
"value": "0x4e061e977c099735bc9e5203e717f7d9dccb3fcb2f82031a12a3ed326f95d43b",
"note": "transactions#setTxHash",
"timestamp": 1528133181885
}
],
[
{
"op": "add",
"path": "/submittedTime",
"value": 1528133181885,
"note": "txStateManager - add submitted time stamp",
"timestamp": 1528133181885
}
],
[
{
"op": "replace",
"path": "/status",
"value": "submitted",
"note": "txStateManager: setting status to submitted",
"timestamp": 1528133181888
}
],
[
{
"op": "add",
"path": "/firstRetryBlockNumber",
"value": "0x24af6f",
"note": "transactions/pending-tx-tracker#event: tx:block-update",
"timestamp": 1528133190653
}
],
[
{
"op": "replace",
"path": "/status",
"value": "confirmed",
"note": "txStateManager: setting status to confirmed",
"timestamp": 1528133222745
}
]
],
"origin": "MetaMask",
"nonceDetails": {
"params": {
"highestLocallyConfirmed": 182,
"highestSuggested": 182,
"nextNetworkNonce": 182
},
"local": {
"name": "local",
"nonce": 183,
"details": {
"startPoint": 182,
"highest": 183
}
},
"network": {
"name": "network",
"nonce": 182,
"details": {
"baseCount": 182
}
}
},
"rawTx": "0xf86d81b785012a05f20082cf089492e659448c48fc926ec942d0da1459260d36bb33881bc16d674ec80000802ba086f9846798be6988c39a5cf85f0dbe267e59ca0b96a6a7077e92cba33e10a258a064ffa52ac90c238ce21e6f085283216191b185a1eccd7daae6e2ab66ba26ada0",
"hash": "0x4e061e977c099735bc9e5203e717f7d9dccb3fcb2f82031a12a3ed326f95d43b",
"submittedTime": 1528133181885,
"firstRetryBlockNumber": "0x24af6f"
},
{
"id": 3387511061307739,
"time": 1528133223918,
"status": "confirmed",
"metamaskNetworkId": "4",
"loadingDefaults": false,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0xfe2149773b3513703e79ad23d05a778a185016ee",
"value": "0xaa87bee538000",
"data": "0xea94496b000000000000000000000000000000000000000000000000000000000001e1eb000000000000000000000000000000000000000000000000000000000001de33",
"gasPrice": "0x3b9aca00",
"gas": "0x6169e",
"nonce": "0xb8"
},
"history": [
{
"id": 3387511061307739,
"time": 1528133223918,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": true,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0xfe2149773b3513703e79ad23d05a778a185016ee",
"value": "0xaa87bee538000",
"data": "0xea94496b000000000000000000000000000000000000000000000000000000000001e1eb000000000000000000000000000000000000000000000000000000000001de33",
"gasPrice": "0x3b9aca00"
}
},
[
{
"op": "add",
"path": "/txParams/gas",
"value": "0x6169e",
"timestamp": 1528133225488
},
{
"op": "replace",
"path": "/loadingDefaults",
"value": false
}
],
[
{
"note": "#newUnapprovedTransaction - adding the origin",
"op": "add",
"path": "/origin",
"value": "crypko.ai"
}
],
[],
[
{
"op": "replace",
"path": "/status",
"value": "approved",
"note": "txStateManager: setting status to approved",
"timestamp": 1528133227279
}
],
[
{
"op": "add",
"path": "/txParams/nonce",
"value": "0xb8",
"note": "transactions#approveTransaction",
"timestamp": 1528133227374
},
{
"op": "add",
"path": "/nonceDetails",
"value": {
"params": {
"highestLocallyConfirmed": 184,
"highestSuggested": 184,
"nextNetworkNonce": 184
},
"local": {
"name": "local",
"nonce": 184,
"details": {
"startPoint": 184,
"highest": 184
}
},
"network": {
"name": "network",
"nonce": 184,
"details": {
"baseCount": 184
}
}
}
}
],
[
{
"op": "replace",
"path": "/status",
"value": "signed",
"note": "transactions#publishTransaction",
"timestamp": 1528133227405
},
{
"op": "add",
"path": "/rawTx",
"value": "0xf8b181b8843b9aca008306169e94fe2149773b3513703e79ad23d05a778a185016ee870aa87bee538000b844ea94496b000000000000000000000000000000000000000000000000000000000001e1eb000000000000000000000000000000000000000000000000000000000001de332ca07bb2efbb8529d67606f9f89e7934c594a31d50c7d24a3286c20a2944a3b8c2a9a07b55ebd8aa28728ce0e38dd3b3503b78fccedae80053626d8649c68346c7c49c"
}
],
[],
[
{
"op": "add",
"path": "/hash",
"value": "0x466ae7d4b7c270121f0a8d68fbc6c9091ffc4aa976a553a5bfa56a79cf9f63dd",
"note": "transactions#setTxHash",
"timestamp": 1528133227534
}
],
[
{
"op": "add",
"path": "/submittedTime",
"value": 1528133227538,
"note": "txStateManager - add submitted time stamp",
"timestamp": 1528133227538
}
],
[
{
"op": "replace",
"path": "/status",
"value": "submitted",
"note": "txStateManager: setting status to submitted",
"timestamp": 1528133227543
}
],
[
{
"op": "add",
"path": "/firstRetryBlockNumber",
"value": "0x24af72",
"note": "transactions/pending-tx-tracker#event: tx:block-update",
"timestamp": 1528133238980
}
],
[
{
"op": "replace",
"path": "/status",
"value": "confirmed",
"note": "txStateManager: setting status to confirmed",
"timestamp": 1528133255035
}
]
],
"origin": "crypko.ai",
"nonceDetails": {
"params": {
"highestLocallyConfirmed": 184,
"highestSuggested": 184,
"nextNetworkNonce": 184
},
"local": {
"name": "local",
"nonce": 184,
"details": {
"startPoint": 184,
"highest": 184
}
},
"network": {
"name": "network",
"nonce": 184,
"details": {
"baseCount": 184
}
}
},
"rawTx": "0xf8b181b8843b9aca008306169e94fe2149773b3513703e79ad23d05a778a185016ee870aa87bee538000b844ea94496b000000000000000000000000000000000000000000000000000000000001e1eb000000000000000000000000000000000000000000000000000000000001de332ca07bb2efbb8529d67606f9f89e7934c594a31d50c7d24a3286c20a2944a3b8c2a9a07b55ebd8aa28728ce0e38dd3b3503b78fccedae80053626d8649c68346c7c49c",
"hash": "0x466ae7d4b7c270121f0a8d68fbc6c9091ffc4aa976a553a5bfa56a79cf9f63dd",
"submittedTime": 1528133227538,
"firstRetryBlockNumber": "0x24af72"
},
{
"id": 3387511061307740,
"time": 1528133291381,
"status": "confirmed",
"metamaskNetworkId": "4",
"loadingDefaults": false,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x108cf70c7d384c552f42c07c41c0e1e46d77ea0d",
"value": "0x0",
"data": "0xa9059cbb00000000000000000000000092e659448c48fc926ec942d0da1459260d36bb330000000000000000000000000000000000000000000000000000000000000002",
"gas": "0xd508",
"gasPrice": "0x3b9aca00",
"nonce": "0xb9"
},
"history": [
{
"id": 3387511061307740,
"time": 1528133291381,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": true,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x108cf70c7d384c552f42c07c41c0e1e46d77ea0d",
"value": "0x0",
"data": "0xa9059cbb00000000000000000000000092e659448c48fc926ec942d0da1459260d36bb330000000000000000000000000000000000000000000000000000000000000002",
"gas": "0xd508",
"gasPrice": "0x3b9aca00"
}
},
[
{
"op": "replace",
"path": "/loadingDefaults",
"value": false,
"timestamp": 1528133291486
}
],
[
{
"op": "add",
"path": "/origin",
"value": "MetaMask",
"note": "#newUnapprovedTransaction - adding the origin",
"timestamp": 1528133291486
}
],
[],
[
{
"op": "replace",
"path": "/status",
"value": "approved",
"note": "txStateManager: setting status to approved",
"timestamp": 1528133293588
}
],
[
{
"op": "add",
"path": "/txParams/nonce",
"value": "0xb9",
"note": "transactions#approveTransaction",
"timestamp": 1528133293706
},
{
"op": "add",
"path": "/nonceDetails",
"value": {
"params": {
"highestLocallyConfirmed": 185,
"highestSuggested": 185,
"nextNetworkNonce": 185
},
"local": {
"name": "local",
"nonce": 185,
"details": {
"startPoint": 185,
"highest": 185
}
},
"network": {
"name": "network",
"nonce": 185,
"details": {
"baseCount": 185
}
}
}
}
],
[
{
"op": "replace",
"path": "/status",
"value": "signed",
"note": "transactions#publishTransaction",
"timestamp": 1528133293724
},
{
"op": "add",
"path": "/rawTx",
"value": "0xf8a981b9843b9aca0082d50894108cf70c7d384c552f42c07c41c0e1e46d77ea0d80b844a9059cbb00000000000000000000000092e659448c48fc926ec942d0da1459260d36bb3300000000000000000000000000000000000000000000000000000000000000022ca04f05310490d3e3a9a159ae25f52cec9afb0a69527d30be832aaae12e64ff056ea075f81a5220bed481e764bab8830c57169c59fe528ca9cf3442f47f7618a9b4a9"
}
],
[],
[
{
"op": "add",
"path": "/hash",
"value": "0x3680dc9815cd05b620b6dd0017d949604ca7d92f051d5542fc8a5ecaa876af09",
"note": "transactions#setTxHash",
"timestamp": 1528133293853
}
],
[
{
"op": "add",
"path": "/submittedTime",
"value": 1528133293859,
"note": "txStateManager - add submitted time stamp",
"timestamp": 1528133293862
}
],
[
{
"op": "replace",
"path": "/status",
"value": "submitted",
"note": "txStateManager: setting status to submitted",
"timestamp": 1528133293867
}
],
[
{
"op": "add",
"path": "/firstRetryBlockNumber",
"value": "0x24af76",
"note": "transactions/pending-tx-tracker#event: tx:block-update",
"timestamp": 1528133295200
}
],
[
{
"op": "replace",
"path": "/status",
"value": "confirmed",
"note": "txStateManager: setting status to confirmed",
"timestamp": 1528133327522
}
]
],
"origin": "MetaMask",
"nonceDetails": {
"params": {
"highestLocallyConfirmed": 185,
"highestSuggested": 185,
"nextNetworkNonce": 185
},
"local": {
"name": "local",
"nonce": 185,
"details": {
"startPoint": 185,
"highest": 185
}
},
"network": {
"name": "network",
"nonce": 185,
"details": {
"baseCount": 185
}
}
},
"rawTx": "0xf8a981b9843b9aca0082d50894108cf70c7d384c552f42c07c41c0e1e46d77ea0d80b844a9059cbb00000000000000000000000092e659448c48fc926ec942d0da1459260d36bb3300000000000000000000000000000000000000000000000000000000000000022ca04f05310490d3e3a9a159ae25f52cec9afb0a69527d30be832aaae12e64ff056ea075f81a5220bed481e764bab8830c57169c59fe528ca9cf3442f47f7618a9b4a9",
"hash": "0x3680dc9815cd05b620b6dd0017d949604ca7d92f051d5542fc8a5ecaa876af09",
"submittedTime": 1528133293859,
"firstRetryBlockNumber": "0x24af76"
},
{
"id": 3387511061307741,
"time": 1528133318440,
"status": "rejected",
"metamaskNetworkId": "4",
"loadingDefaults": false,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"value": "0x0",
"gasPrice": "0x3b9aca00",
"gas": "0x5208"
},
"history": [
{
"id": 3387511061307741,
"time": 1528133318440,
"status": "unapproved",
"metamaskNetworkId": "4",
"loadingDefaults": true,
"txParams": {
"from": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62",
"to": "0x3b222de3aaba8ec9771ca9e9af5d8ed757fb7f62"
}
},
[
{
"op": "add",
"path": "/txParams/value",
"value": "0x0",
"timestamp": 1528133319641
},
{
"op": "add",
"path": "/txParams/gasPrice",
"value": "0x3b9aca00"
},
{
"op": "add",
"path": "/txParams/gas",
"value": "0x5208"
},
{
"op": "replace",
"path": "/loadingDefaults",
"value": false
}
],
[
{
"op": "add",
"path": "/origin",
"value": "tmashuang.github.io",
"note": "#newUnapprovedTransaction - adding the origin",
"timestamp": 1528133319642
}
],
[
{
"op": "replace",
"path": "/status",
"value": "rejected",
"note": "txStateManager: setting status to rejected",
"timestamp": 1528133320924
}
]
],
"origin": "tmashuang.github.io"
}
],
"desktopEnabled": false,
"pendingApprovals": {
"testApprovalId": {
"id": "testApprovalId",
"time": 1528133319641,
"origin": "metamask",
"type": "transaction",
"requestData": { "txId": "testTransactionId" },
"requestState": { "test": "value" }
}
},
"pendingApprovalCount": 1
},
"send": {
"amountMode": "INPUT",
"currentTransactionUUID": null,
"draftTransactions": {},
"eip1559support": false,
"gasEstimateIsLoading": true,
"gasEstimatePollToken": null,
"gasIsSetInModal": false,
"gasPriceEstimate": "0x0",
"gasLimitMinimum": "0x5208",
"gasTotalForLayer1": "0x0",
"recipientMode": "CONTACT_LIST",
"recipientInput": "",
"selectedAccount": {
"address": "0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc",
"balance": "0x0"
},
"stage": "INACTIVE"
2018-09-24 18:28:04 +02:00
}
}