pull/2/merge
Szymon Lesisz 6 years ago
parent 3db968df6a
commit ebaf57f841

@ -22,7 +22,27 @@
} }
], ],
"eth": {
"name": "Ethereum",
"symbol": "ETH",
"network": "ethereum",
"bip44": "m/44'/60'/0'/0",
"defaultGasPrice": 64,
"defaultGasLimit": 21000,
"defaultGasLimitTokens": 200000,
"backends": [
{
"name": "TREZOR Wallet - Ethereum",
"urls": [
"http://88.208.115.69"
]
}
],
"explorer": "https://etherscan.io"
},
"coins": [ "coins": [
{ {
"name": "Ethereum Ropsten", "name": "Ethereum Ropsten",
"symbol": "tETH", "symbol": "tETH",

@ -43,7 +43,7 @@ const initSelectedDevice = async (store: any, device: any): void => {
// }); // });
// if (response && response.success) { // if (response && response.success) {
// const xpub = response.data.xpub; // const xpub = response.payload.xpub;
// store.dispatch({ // store.dispatch({
// type: CONNECT.AUTH_DEVICE, // type: CONNECT.AUTH_DEVICE,
// device: selectedDevice, // device: selectedDevice,
@ -150,7 +150,7 @@ const TrezorConnectService = (store: any) => (next: any) => (action: any) => {
// post event to TrezorConnectReducer // post event to TrezorConnectReducer
store.dispatch({ store.dispatch({
type: event.type, type: event.type,
device: event.data device: event.payload
}); });
}); });

Loading…
Cancel
Save