forked from MyEtherWallet/MEWconnect-web-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23255ed
commit 9af7c97
Showing
8 changed files
with
41 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/connectProvider/web3Provider/networks/nodes/goerli-mew-ws.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { GOERLI } from '../types'; | ||
export default { | ||
type: GOERLI, | ||
service: 'myetherwallet.com-ws', | ||
url: 'wss://nodes.mewapi.io/ws/goerli', | ||
port: 443, | ||
auth: false, | ||
username: '', | ||
password: '' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import ethmewws from './eth-mew-ws'; | ||
import kovmewws from './kov-mew-ws'; | ||
import ropmewws from './rop-mew-ws'; | ||
import goerlimewws from './goerli-mew-ws' | ||
|
||
export { ethmewws, kovmewws, ropmewws }; | ||
export { ethmewws, kovmewws, ropmewws, goerlimewws }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,13 @@ | ||
// import tokens from '@/tokens/tokens-goerli.json'; | ||
// import contracts from '@/contracts/contract-abi-goerli.json'; | ||
// import { GOERLI } from '../tlds'; | ||
// import goerli from '@/assets/images/icons/network.svg'; | ||
|
||
export default { | ||
name: 'GOERLI', | ||
name_long: 'Goerli', | ||
homePage: 'https://github.com/goerli/testnet', | ||
blockExplorerTX: 'https://blockscout.com/eth/goerli/tx/[[txHash]]', | ||
blockExplorerAddr: 'https://blockscout.com/eth/goerli/address/[[address]]', | ||
blockExplorerTX: 'https://goerli.etherscan.io/tx/[[txHash]]', | ||
blockExplorerAddr: 'https://goerli.etherscan.io/address/[[address]]', | ||
chainID: 5, | ||
tokens: [], | ||
contracts: [], | ||
// ens: { | ||
// registry: '0x112234455c3a32fd11230c42e7bccd4a84e02010', | ||
// registrarTLD: 'eth', | ||
// registrarType: 'permanent', | ||
// supportedTld: GOERLI | ||
// }, | ||
// icon: goerli, | ||
currencyName: 'GöETH' | ||
}; |