diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-11-22 03:45:31 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-11-22 03:45:31 +0800 |
commit | 6ae2400ef2fc6e6c5096cc71b3fcf422ccc5e8b2 (patch) | |
tree | 3fe01c75054dde48d3324bf55387c1d81d1cd32a /development/states | |
parent | 7021c7708c927b8723b6ba5842b451b6f46dbb3e (diff) | |
download | tangerine-wallet-browser-6ae2400ef2fc6e6c5096cc71b3fcf422ccc5e8b2.tar.gz tangerine-wallet-browser-6ae2400ef2fc6e6c5096cc71b3fcf422ccc5e8b2.tar.zst tangerine-wallet-browser-6ae2400ef2fc6e6c5096cc71b3fcf422ccc5e8b2.zip |
Fix custom provider menu item
The Custom RPC menu item in the provider menu would not appear when Localhost:8545 was selected.
Diffstat (limited to 'development/states')
-rw-r--r-- | development/states/private-network.json | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/development/states/private-network.json b/development/states/private-network.json new file mode 100644 index 000000000..546387aed --- /dev/null +++ b/development/states/private-network.json @@ -0,0 +1,86 @@ +{ + "metamask": { + "isInitialized": true, + "isUnlocked": true, + "rpcTarget": "https://rawtestrpc.metamask.io/", + "identities": { + "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825": { + "name": "Account 1", + "address": "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825", + "mayBeFauceting": false + }, + "0xc5b8dbac4c1d3f152cdeb400e2313f309c410acb": { + "name": "Account 2", + "address": "0xc5b8dbac4c1d3f152cdeb400e2313f309c410acb", + "mayBeFauceting": false + } + }, + "unconfTxs": {}, + "currentFiat": "USD", + "conversionRate": 9.52855776, + "conversionDate": 1479756513, + "accounts": { + "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825": { + "balance": "0x0", + "nonce": "0x0", + "code": "0x0", + "address": "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825" + }, + "0xc5b8dbac4c1d3f152cdeb400e2313f309c410acb": { + "balance": "0x0", + "nonce": "0x0", + "code": "0x0", + "address": "0xc5b8dbac4c1d3f152cdeb400e2313f309c410acb" + } + }, + "transactions": [ + { + "id": 5551995700357153, + "txParams": { + "from": "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825", + "to": "0x48ff0cbac0acefedf152281ee80e9a0a01d5da63", + "data": "0x90b98a11000000000000000000000000c5b8dbac4c1d3f152cdeb400e2313f309c410acb000000000000000000000000000000000000000000000000000000000000000a", + "metamaskId": 5551995700357153, + "metamaskNetworkId": "1479490588308" + }, + "time": 1479498745949, + "status": "confirmed", + "gasMultiplier": 1, + "metamaskNetworkId": "1479490588308", + "containsDelegateCall": true, + "estimatedGas": "0x24b33", + "hash": "0xad609a6931f54a575ad71222ffc27cd6746017106d5b89f4ad300b37b273f8ac" + } + ], + "selectedAddress": "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825", + "network": "1479753732793", + "isConfirmed": true, + "isEthConfirmed": true, + "unconfMsgs": {}, + "messages": [], + "shapeShiftTxList": [], + "gasMultiplier": false, + "provider": { + "type": "rpc", + "rpcTarget": "http://localhost:8545" + }, + "selectedAccount": "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825", + "isDisclaimerConfirmed": true + }, + "appState": { + "menuOpen": false, + "currentView": { + "name": "accountDetail" + }, + "accountDetail": { + "subview": "transactions", + "accountExport": "none", + "privateKey": "" + }, + "transForward": false, + "isLoading": false, + "warning": null, + "scrollToBottom": false + }, + "identities": {} +}
\ No newline at end of file |