├── .babelrc ├── .dockerignore ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── MEW-PUP-KEY-GPG ├── README.md ├── app ├── fonts │ ├── Lato-Bold.woff │ ├── Lato-Light.woff │ └── Lato-Regular.woff ├── images │ ├── Kyber-Network-Main-Logo-Inverted.svg │ ├── Kyber-Network-Main-Logo.svg │ ├── MEWconnectLogo.svg │ ├── appstore.png │ ├── appstore.svg │ ├── coins │ │ ├── akroma.svg │ │ ├── atheios.svg │ │ ├── callisto.svg │ │ ├── egem.svg │ │ ├── ella.svg │ │ ├── eosc.svg │ │ ├── ethereum-classic.svg │ │ ├── ethereum.svg │ │ ├── ethersocial.svg │ │ ├── etho.svg │ │ ├── etsc.svg │ │ ├── exp.svg │ │ ├── gochain.svg │ │ ├── ilt.svg │ │ ├── music.svg │ │ ├── pirl.svg │ │ ├── poa.svg │ │ ├── reosc.svg │ │ ├── thundercore.svg │ │ ├── tomo.svg │ │ ├── ubiq.svg │ │ └── webchain.svg │ ├── fav │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ ├── google-play.svg │ ├── icon-arrow-left.svg │ ├── icon-arrow-right.svg │ ├── icon-check-green.svg │ ├── icon-check.svg │ ├── icon-edit-white.png │ ├── icon-edit.svg │ ├── icon-external-link.svg │ ├── icon-eye-closed.svg │ ├── icon-eye.svg │ ├── icon-help-2.svg │ ├── icon-help-3.svg │ ├── icon-help.svg │ ├── icon-load-tokens.svg │ ├── icon-protip.svg │ ├── icon-remove-red-white.png │ ├── icon-remove-red.svg │ ├── icon-remove.svg │ ├── icon-spinner-white.svg │ ├── icon-view-white.png │ ├── icon-view.svg │ ├── icon-x-orange.svg │ ├── icon-x.svg │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon192.png │ │ └── icon32.png │ ├── logo-bity-white.svg │ ├── logo-bity.svg │ ├── logo-coinbase.svg │ ├── logo-ethereum-1.png │ ├── logo-ethereum-2.png │ ├── logo-kyber-beta-raw.svg │ ├── logo-kyber-beta.svg │ ├── logo-kyber.svg │ ├── logo-ledger.svg │ ├── logo-myetherwallet.min.svg │ ├── logo-myetherwallet.svg │ ├── logo-myetherwalletcx.svg │ ├── logo-trezor.svg │ ├── myetherwallet-banner-fun.jpg │ ├── myetherwallet-logo-banner.png │ ├── myetherwallet-logo-square.png │ ├── myetherwallet-logo.png │ ├── notes-bg.png │ ├── onboarding_icon-01.svg │ ├── onboarding_icon-02.svg │ ├── onboarding_icon-03.svg │ ├── onboarding_icon-04.svg │ ├── onboarding_icon-05.svg │ ├── onboarding_icon-06.svg │ ├── onboarding_icon-07.svg │ ├── onboarding_icon-08.svg │ ├── onboarding_icon-09.svg │ ├── onboarding_icon-10.svg │ ├── print-sidebar.png │ └── visa-master.png ├── includes │ ├── addWallet.tpl │ ├── alerts.tpl │ ├── apple-mobile-modal.tpl │ ├── background │ │ └── extension.js │ ├── browser_action │ │ ├── browser_action.html │ │ └── cx-quicksend.html │ ├── bulkGenerate.tpl │ ├── contracts-deploy-1.tpl │ ├── contracts-deploy-modal.tpl │ ├── contracts-interact-1.tpl │ ├── contracts-interact-2.tpl │ ├── contracts-interact-modal.tpl │ ├── contracts.tpl │ ├── deprecationWarningModal.tpl │ ├── domainsale-action-bidbuy.tpl │ ├── domainsale-action-finish.tpl │ ├── domainsale-action-offercancel.tpl │ ├── domainsale-action-transfer.tpl │ ├── domainsale-action-withdraw.tpl │ ├── domainsale-confirm-table.tpl │ ├── domainsale-general-information.tpl │ ├── domainsale-modal.tpl │ ├── domainsale-status-auctioning.tpl │ ├── domainsale-status-available.tpl │ ├── domainsale-status-balance.tpl │ ├── domainsale-status-closed.tpl │ ├── domainsale-status-ineligible.tpl │ ├── domainsale-status-notoffered.tpl │ ├── domainsale-status-nottransferred.tpl │ ├── domainsale.tpl │ ├── ens-action-finalize.tpl │ ├── ens-action-primary.tpl │ ├── ens-action-resolve.tpl │ ├── ens-confirm-table.tpl │ ├── ens-domain.tpl │ ├── ens-general-information.tpl │ ├── ens-modal-after-sent.tpl │ ├── ens-modal-finalize.tpl │ ├── ens-modal-resolve.tpl │ ├── ens-modal.tpl │ ├── ens-resolve-information.tpl │ ├── ens-status-available.tpl │ ├── ens-status-finalized.tpl │ ├── ens-status-notavailable.tpl │ ├── ens-status-owned.tpl │ ├── ens-status-reveal.tpl │ ├── ens.tpl │ ├── footer-disclaimer-modal.tpl │ ├── footer.tpl │ ├── footerEmbedded.tpl │ ├── generateWallet.tpl │ ├── header-node-modal.tpl │ ├── header.tpl │ ├── headerEmbedded.tpl │ ├── help.tpl │ ├── helpers.tpl │ ├── myWallet.tpl │ ├── offlineTx-1.tpl │ ├── offlineTx-2.tpl │ ├── offlineTx-3.tpl │ ├── offlineTx-modal.tpl │ ├── offlineTx.tpl │ ├── print.tpl │ ├── sendTx-content.tpl │ ├── sendTx-modal.tpl │ ├── sendTx.tpl │ ├── signMsg.tpl │ ├── swap-kyber-modal.tpl │ ├── swap-kyber.tpl │ ├── swap-stage-1.tpl │ ├── swap-stage-2.tpl │ ├── swap-stage-3.tpl │ ├── swap.tpl │ ├── txStatus.tpl │ ├── viewWalletInfo-content.tpl │ └── viewWalletInfo.tpl ├── layouts │ ├── cx-wallet.html │ ├── embedded.html │ ├── helpers.html │ ├── index.html │ ├── phishing.html │ ├── privacy-policy.html │ └── signmsg.html ├── manifest.json ├── package.json ├── scripts │ ├── abiDefinitions │ │ ├── akromaAbi.json │ │ ├── athAbi.json │ │ ├── cloAbi.json │ │ ├── egemAbi.json │ │ ├── ellaAbi.json │ │ ├── eoscAbi.json │ │ ├── esnAbi.json │ │ ├── etcAbi.json │ │ ├── ethAbi.json │ │ ├── ethoAbi.json │ │ ├── etscAbi.json │ │ ├── expAbi.json │ │ ├── goAbi.json │ │ ├── iltAbi.json │ │ ├── kovanAbi.json │ │ ├── mixAbi.json │ │ ├── musicAbi.json │ │ ├── pirlAbi.json │ │ ├── poaAbi.json │ │ ├── reoscAbi.json │ │ ├── rinkebyAbi.json │ │ ├── ropstenAbi.json │ │ ├── thundercoreAbi.json │ │ ├── tomoAbi.json │ │ ├── ubqAbi.json │ │ ├── vicAbi.json │ │ └── webAbi.json │ ├── ajaxReq.js │ ├── bity.js │ ├── constants │ │ └── darkListConst.js │ ├── controllers │ │ ├── CX │ │ │ ├── addWalletCtrl.js │ │ │ ├── cxDecryptWalletCtrl.js │ │ │ ├── mainPopCtrl.js │ │ │ ├── myWalletsCtrl.js │ │ │ └── quickSendCtrl.js │ │ ├── bulkGenCtrl.js │ │ ├── contractsCtrl.js │ │ ├── decryptWalletCtrl.js │ │ ├── deprecationCtrl.js │ │ ├── domainsaleCtrl.js │ │ ├── ensCtrl.js │ │ ├── footerCtrl.js │ │ ├── helpersCtrl.js │ │ ├── offlineTxCtrl.js │ │ ├── sendTxCtrl.js │ │ ├── signMsgCtrl.js │ │ ├── swapCtrl.js │ │ ├── tabsCtrl.js │ │ ├── txStatusCtrl.js │ │ ├── viewCtrl.js │ │ ├── viewWalletCtrl.js │ │ ├── walletBalanceCtrl.js │ │ └── walletGenCtrl.js │ ├── customGas.js │ ├── cxFuncs.js │ ├── directives │ │ ├── QRCodeDrtv.js │ │ ├── addressFieldDrtv.js │ │ ├── balanceDrtv.html │ │ ├── balanceDrtv.js │ │ ├── blockiesDrtv.js │ │ ├── cxWalletDecryptDrtv.js │ │ ├── fileReaderDrtv.js │ │ ├── walletDecryptDrtv.html │ │ └── walletDecryptDrtv.js │ ├── domainsale.js │ ├── domainsaleConfigs │ │ └── domainsaleABI.json │ ├── ens.js │ ├── ensConfigs │ │ ├── ETHConfig.json │ │ ├── ROPConfig.json │ │ ├── RinkebyConfig.json │ │ ├── auctionABI.json │ │ ├── deedABI.json │ │ ├── registryABI.json │ │ ├── resolverABI.json │ │ └── subDomainABI.json │ ├── ethFuncs.js │ ├── etherUnits.js │ ├── globalFuncs.js │ ├── homoglyphs.json │ ├── kyber.js │ ├── kyberConfig │ │ ├── EthConfig.json │ │ ├── EthTokenABIs.json │ │ ├── KyberNetworkABI.json │ │ ├── KyberReserveABI.json │ │ ├── NullConfig.json │ │ ├── RopConfig.json │ │ ├── RopKyberNetworkABI.json │ │ ├── RopTokenABIs.json │ │ ├── True_Kyber_Addresses.json │ │ └── kyberConfig.json │ ├── localStoragePolyfill.js │ ├── main.js │ ├── myetherwallet.js │ ├── nodeHelpers │ │ ├── customNode.js │ │ ├── ethPrice.js │ │ ├── etherscan.js │ │ ├── etherscanKov.js │ │ ├── etherscanRin.js │ │ ├── infura.js │ │ ├── metamask.js │ │ ├── mewEtc.js │ │ ├── mewEth.js │ │ ├── mewRopsten.js │ │ └── mewServerTpl.js │ ├── nodes.js │ ├── services │ │ ├── globalService.js │ │ └── walletService.js │ ├── solidity │ │ ├── address.js │ │ ├── bool.js │ │ ├── bytes.js │ │ ├── coder.js │ │ ├── config.js │ │ ├── dynamicbytes.js │ │ ├── formatters.js │ │ ├── int.js │ │ ├── param.js │ │ ├── real.js │ │ ├── string.js │ │ ├── type.js │ │ ├── uint.js │ │ ├── ureal.js │ │ └── utils.js │ ├── staticJS │ │ ├── customMarked.js │ │ ├── digitalBitboxEth.js │ │ ├── digitalBitboxUsb.js │ │ ├── etherwallet-static.min.js │ │ ├── jquery-1.12.3.min.js │ │ ├── ledger-eth.js │ │ ├── ledger3.js │ │ ├── mewConnectEth.js │ │ ├── secalotEth.js │ │ ├── secalotUsb.js │ │ └── to-compile-to-static │ │ │ ├── blockies.js │ │ │ ├── modal-native.js │ │ │ └── qrcode.min.js │ ├── tokenlib.js │ ├── tokens │ │ ├── akromaTokens.json │ │ ├── athTokens.json │ │ ├── cloTokens.json │ │ ├── egemTokens.json │ │ ├── ellaTokens.json │ │ ├── eoscTokens.json │ │ ├── esnTokens.json │ │ ├── etcTokens.json │ │ ├── ethTokens.json │ │ ├── ethoTokens.json │ │ ├── etscTokens.json │ │ ├── expTokens.json │ │ ├── goTokens.json │ │ ├── iltTokens.json │ │ ├── kovanTokens.json │ │ ├── mixTokens.json │ │ ├── musicTokens.json │ │ ├── pirlTokens.json │ │ ├── poaTokens.json │ │ ├── reoscTokens.json │ │ ├── rinkebyTokens.json │ │ ├── ropstenTokens.json │ │ ├── thundercoreTokens.json │ │ ├── tomoTokens.json │ │ ├── ubqTokens.json │ │ ├── vicTokens.json │ │ └── webTokens.json │ ├── translations │ │ ├── ar.js │ │ ├── ca.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── ht.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ko.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── translate.js │ │ ├── vi.js │ │ ├── zhcn.js │ │ └── zhtw.js │ ├── uiFuncs.js │ ├── validator.js │ └── web3Wallet.js ├── sitemap.xml ├── styles │ ├── bootstrap │ │ ├── alerts.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── close.less │ │ ├── code.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── normalize.less │ │ ├── print.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── type.less │ │ ├── utilities.less │ │ └── wells.less │ ├── etherwallet-custom.less │ ├── etherwallet-ext-custom.less │ ├── etherwallet-fonts.less │ ├── etherwallet-master.less │ ├── etherwallet-nav.less │ ├── etherwallet-new.less │ ├── etherwallet-print.less │ ├── etherwallet-swap.less │ ├── etherwallet-txstatus.less │ ├── etherwallet-utilities.less │ ├── etherwallet-variables.less │ └── onboarding.less └── tests │ └── index.html ├── chrome-extension ├── background │ └── extension.js ├── browser_action │ ├── browser_action.html │ └── cx-quicksend.html ├── css │ └── etherwallet-master.min.css ├── cx-wallet.html ├── fonts │ ├── Lato-Bold.woff │ ├── Lato-Light.woff │ └── Lato-Regular.woff ├── helpers.html ├── images │ ├── Kyber-Network-Main-Logo-Inverted.svg │ ├── Kyber-Network-Main-Logo.svg │ ├── MEWconnectLogo.svg │ ├── akroma.svg │ ├── appstore.png │ ├── appstore.svg │ ├── callisto.svg │ ├── coins │ │ ├── akroma.svg │ │ ├── atheios.svg │ │ ├── callisto.svg │ │ ├── egem.svg │ │ ├── ella.svg │ │ ├── eosc.svg │ │ ├── ethereum-classic.svg │ │ ├── ethereum.svg │ │ ├── ethersocial.svg │ │ ├── etho.svg │ │ ├── etsc.svg │ │ ├── exp.svg │ │ ├── gochain.svg │ │ ├── ilt.svg │ │ ├── music.svg │ │ ├── pirl.svg │ │ ├── poa.svg │ │ ├── reosc.svg │ │ ├── thunder.svg │ │ ├── thundercore.svg │ │ ├── tomo.svg │ │ ├── ubiq.svg │ │ └── webchain.svg │ ├── egem.svg │ ├── ella.svg │ ├── eosc.svg │ ├── ethereum-classic.svg │ ├── ethereum.svg │ ├── ethersocial.svg │ ├── etho.svg │ ├── etsc.svg │ ├── exp.svg │ ├── fav │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ ├── gochain.svg │ ├── google-play.svg │ ├── icon-arrow-left.svg │ ├── icon-arrow-right.svg │ ├── icon-check-green.svg │ ├── icon-check.svg │ ├── icon-edit-white.png │ ├── icon-edit.svg │ ├── icon-external-link.svg │ ├── icon-eye-closed.svg │ ├── icon-eye.svg │ ├── icon-help-2.svg │ ├── icon-help-3.svg │ ├── icon-help.svg │ ├── icon-load-tokens.svg │ ├── icon-protip.svg │ ├── icon-remove-red-white.png │ ├── icon-remove-red.svg │ ├── icon-remove.svg │ ├── icon-spinner-white.svg │ ├── icon-view-white.png │ ├── icon-view.svg │ ├── icon-x-orange.svg │ ├── icon-x.svg │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon192.png │ │ ├── icon32.png │ │ └── icon48.png │ ├── logo-bity-white.svg │ ├── logo-bity.svg │ ├── logo-coinbase.svg │ ├── logo-ethereum-1.png │ ├── logo-ethereum-2.png │ ├── logo-kyber-beta-raw.svg │ ├── logo-kyber-beta.svg │ ├── logo-kyber.svg │ ├── logo-ledger.svg │ ├── logo-myetherwallet.min.svg │ ├── logo-myetherwallet.svg │ ├── logo-myetherwalletcx.svg │ ├── logo-shapeshift.svg │ ├── logo-trezor.svg │ ├── music.svg │ ├── myetherwallet-banner-fun.jpg │ ├── myetherwallet-logo-banner.png │ ├── myetherwallet-logo-square.png │ ├── myetherwallet-logo.png │ ├── notes-bg.png │ ├── onboarding_icon-01.svg │ ├── onboarding_icon-02.svg │ ├── onboarding_icon-03.svg │ ├── onboarding_icon-04.svg │ ├── onboarding_icon-05.svg │ ├── onboarding_icon-06.svg │ ├── onboarding_icon-07.svg │ ├── onboarding_icon-08.svg │ ├── onboarding_icon-09.svg │ ├── onboarding_icon-10.svg │ ├── pirl.svg │ ├── poa.svg │ ├── print-sidebar.png │ ├── shapeshift-dark.svg │ ├── tomo.svg │ ├── ubiq.svg │ └── visa-master.png ├── js │ ├── etherwallet-master.js │ ├── etherwallet-static.min.js │ └── jquery-1.12.3.min.js ├── manifest.json ├── phishing.html └── privacy-policy.html ├── dist ├── README.md ├── bin │ └── startMEW.js ├── css │ └── etherwallet-master.min.css ├── embedded.html ├── fonts │ ├── Lato-Bold.woff │ ├── Lato-Light.woff │ └── Lato-Regular.woff ├── helpers.html ├── images │ ├── Kyber-Network-Main-Logo-Inverted.svg │ ├── Kyber-Network-Main-Logo.svg │ ├── MEWconnectLogo.svg │ ├── akroma.svg │ ├── appstore.png │ ├── appstore.svg │ ├── callisto.svg │ ├── coins │ │ ├── akroma.svg │ │ ├── atheios.svg │ │ ├── callisto.svg │ │ ├── egem.svg │ │ ├── ella.svg │ │ ├── eosc.svg │ │ ├── ethereum-classic.svg │ │ ├── ethereum.svg │ │ ├── ethersocial.svg │ │ ├── etho.svg │ │ ├── etsc.svg │ │ ├── exp.svg │ │ ├── gochain.svg │ │ ├── ilt.svg │ │ ├── music.svg │ │ ├── pirl.svg │ │ ├── poa.svg │ │ ├── reosc.svg │ │ ├── thunder.svg │ │ ├── thundercore.svg │ │ ├── tomo.svg │ │ ├── ubiq.svg │ │ └── webchain.svg │ ├── egem.svg │ ├── ella.svg │ ├── eosc.svg │ ├── ethereum-classic.svg │ ├── ethereum.svg │ ├── ethersocial.svg │ ├── etho.svg │ ├── etsc.svg │ ├── exp.svg │ ├── fav │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ ├── gochain.svg │ ├── google-play.svg │ ├── icon-arrow-left.svg │ ├── icon-arrow-right.svg │ ├── icon-check-green.svg │ ├── icon-check.svg │ ├── icon-edit-white.png │ ├── icon-edit.svg │ ├── icon-external-link.svg │ ├── icon-eye-closed.svg │ ├── icon-eye.svg │ ├── icon-help-2.svg │ ├── icon-help-3.svg │ ├── icon-help.svg │ ├── icon-load-tokens.svg │ ├── icon-protip.svg │ ├── icon-remove-red-white.png │ ├── icon-remove-red.svg │ ├── icon-remove.svg │ ├── icon-spinner-white.svg │ ├── icon-view-white.png │ ├── icon-view.svg │ ├── icon-x-orange.svg │ ├── icon-x.svg │ ├── logo-bity-white.svg │ ├── logo-bity.svg │ ├── logo-coinbase.svg │ ├── logo-ethereum-1.png │ ├── logo-ethereum-2.png │ ├── logo-kyber-beta-raw.svg │ ├── logo-kyber-beta.svg │ ├── logo-kyber.svg │ ├── logo-ledger.svg │ ├── logo-myetherwallet.min.svg │ ├── logo-myetherwallet.svg │ ├── logo-myetherwalletcx.svg │ ├── logo-shapeshift.svg │ ├── logo-trezor.svg │ ├── music.svg │ ├── myetherwallet-banner-fun.jpg │ ├── myetherwallet-logo-banner.png │ ├── myetherwallet-logo-square.png │ ├── myetherwallet-logo.png │ ├── notes-bg.png │ ├── onboarding_icon-01.svg │ ├── onboarding_icon-02.svg │ ├── onboarding_icon-03.svg │ ├── onboarding_icon-04.svg │ ├── onboarding_icon-05.svg │ ├── onboarding_icon-06.svg │ ├── onboarding_icon-07.svg │ ├── onboarding_icon-08.svg │ ├── onboarding_icon-09.svg │ ├── onboarding_icon-10.svg │ ├── pirl.svg │ ├── poa.svg │ ├── print-sidebar.png │ ├── shapeshift-dark.svg │ ├── tomo.svg │ ├── ubiq.svg │ └── visa-master.png ├── index.html ├── js │ ├── etherwallet-master.js │ ├── etherwallet-static.min.js │ └── jquery-1.12.3.min.js ├── package.json ├── phishing.html ├── privacy-policy.html └── signmsg.html ├── gulpfile.js ├── mew.gpg.enc ├── package-lock.json └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "env", { 5 | "modules": false 6 | } 7 | ] 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | dist/ 3 | chrome-extension/ 4 | json_relay_node/ 5 | json_relay_php/ 6 | node_modules/ 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .DS_Store? 3 | ._* 4 | .Spotlight-V100 5 | .Trashes 6 | ehthumbs.db 7 | Thumbs.db 8 | 9 | node_modules/ 10 | deploy/ 11 | json_relay_node/node_modules/ 12 | dist/node_modules/ 13 | _ens/ 14 | *.zip 15 | cert.pem 16 | key.pem 17 | .idea/ 18 | 19 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:9.5-alpine as builder 2 | RUN apk add --update git python make g++ libnotify openssl 3 | RUN npm install -g gulp-cli 4 | 5 | # SSL self-signed certificate for localhost. 6 | RUN openssl genrsa -des3 -passout pass:x -out server.pass.key 2048 && \ 7 | openssl rsa -passin pass:x -in server.pass.key -out server.key && \ 8 | openssl req -new -key server.key -out server.csr -subj "/C=US/ST=California/L=California/O=localhost/OU=localhost/CN=localhost" && \ 9 | openssl x509 -req -sha256 -days 365 -in server.csr -signkey server.key -out server.crt 10 | 11 | WORKDIR /etherwallet 12 | ADD . /etherwallet 13 | RUN npm install 14 | RUN npm run dist 15 | 16 | 17 | FROM nginx 18 | 19 | RUN echo "server {\ 20 | listen 443 ssl; \ 21 | ssl on;\ 22 | ssl_certificate /opt/ssl/server.crt;\ 23 | ssl_certificate_key /opt/ssl/server.key;\ 24 | ssl_session_timeout 5m; \ 25 | ssl_session_cache shared:SSL:10m; \ 26 | ssl_protocols TLSv1 TLSv1.1 TLSv1.2; \ 27 | ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH'; \ 28 | ssl_prefer_server_ciphers on; \ 29 | server_name localhost; \ 30 | location / { \ 31 | root /usr/share/nginx/html; \ 32 | index index.html index.htm; \ 33 | }\ 34 | error_page 500 502 503 504 /50x.html;\ 35 | location = /50x.html {\ 36 | root /usr/share/nginx/html;\ 37 | }\ 38 | }" > /etc/nginx/conf.d/ssl.conf 39 | 40 | COPY --from=builder /etherwallet/dist /usr/share/nginx/html 41 | COPY --from=builder /server.crt /opt/ssl/server.crt 42 | COPY --from=builder /server.key /opt/ssl/server.key 43 | 44 | EXPOSE 80 45 | EXPOSE 443 46 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (C) 2015-2019 MyEtherWallet INC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /app/fonts/Lato-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/fonts/Lato-Bold.woff -------------------------------------------------------------------------------- /app/fonts/Lato-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/fonts/Lato-Light.woff -------------------------------------------------------------------------------- /app/fonts/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/fonts/Lato-Regular.woff -------------------------------------------------------------------------------- /app/images/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/appstore.png -------------------------------------------------------------------------------- /app/images/coins/atheios.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/images/coins/egem.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/images/coins/ella.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/coins/eosc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/images/coins/ethereum.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/images/coins/etsc.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/coins/gochain.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/images/coins/ilt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/images/coins/music.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/coins/pirl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/images/coins/poa.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/coins/ubiq.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/fav/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/fav/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/images/fav/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/fav/android-chrome-512x512.png -------------------------------------------------------------------------------- /app/images/fav/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/fav/apple-touch-icon.png -------------------------------------------------------------------------------- /app/images/fav/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #1d6986 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/images/fav/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/fav/favicon-16x16.png -------------------------------------------------------------------------------- /app/images/fav/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/fav/favicon-32x32.png -------------------------------------------------------------------------------- /app/images/fav/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/fav/favicon.ico -------------------------------------------------------------------------------- /app/images/fav/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MyEtherWallet", 3 | "icons": [ 4 | { 5 | "src": "/images/fav/android-chrome-192x192.png", 6 | "sizes": "192x192", 7 | "type": "image/png" 8 | }, 9 | { 10 | "src": "/images/fav/android-chrome-512x512.png", 11 | "sizes": "512x512", 12 | "type": "image/png" 13 | } 14 | ], 15 | "theme_color": "#1d6986", 16 | "background_color": "#1d6986", 17 | "display": "standalone" 18 | } -------------------------------------------------------------------------------- /app/images/fav/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/fav/mstile-150x150.png -------------------------------------------------------------------------------- /app/images/fav/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/icon-check-green.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-check.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/icon-edit-white.png -------------------------------------------------------------------------------- /app/images/icon-edit.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-external-link.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-eye-closed.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-help-2.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-help-3.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-help.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-load-tokens.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-remove-red-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/icon-remove-red-white.png -------------------------------------------------------------------------------- /app/images/icon-remove-red.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-remove.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-spinner-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/images/icon-view-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/icon-view-white.png -------------------------------------------------------------------------------- /app/images/icon-view.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-x-orange.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icon-x.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/icons/icon128.png -------------------------------------------------------------------------------- /app/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/icons/icon16.png -------------------------------------------------------------------------------- /app/images/icons/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/icons/icon192.png -------------------------------------------------------------------------------- /app/images/icons/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/icons/icon32.png -------------------------------------------------------------------------------- /app/images/logo-ethereum-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/logo-ethereum-1.png -------------------------------------------------------------------------------- /app/images/logo-ethereum-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/logo-ethereum-2.png -------------------------------------------------------------------------------- /app/images/myetherwallet-banner-fun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/myetherwallet-banner-fun.jpg -------------------------------------------------------------------------------- /app/images/myetherwallet-logo-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/myetherwallet-logo-banner.png -------------------------------------------------------------------------------- /app/images/myetherwallet-logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/myetherwallet-logo-square.png -------------------------------------------------------------------------------- /app/images/myetherwallet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/myetherwallet-logo.png -------------------------------------------------------------------------------- /app/images/notes-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/notes-bg.png -------------------------------------------------------------------------------- /app/images/print-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/print-sidebar.png -------------------------------------------------------------------------------- /app/images/visa-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/images/visa-master.png -------------------------------------------------------------------------------- /app/includes/alerts.tpl: -------------------------------------------------------------------------------- 1 |
2 | 9 |
10 | -------------------------------------------------------------------------------- /app/includes/apple-mobile-modal.tpl: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /app/includes/contracts-deploy-modal.tpl: -------------------------------------------------------------------------------- 1 | 39 | -------------------------------------------------------------------------------- /app/includes/deprecationWarningModal.tpl: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /app/includes/domainsale-confirm-table.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
Name{{objDomainSale.name}}.eth
Purchase price{{objDomainSale.priceEth}} {{ajaxReq.type}}
Minimum bid{{objDomainSale.reserveEth}} {{ajaxReq.type}}
Buy amount{{objDomainSale.buyEth}} {{ajaxReq.type}}
Bid amount{{objDomainSale.bidEth}} {{ajaxReq.type}}
20 | -------------------------------------------------------------------------------- /app/includes/domainsale-status-auctioning.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |
6 |

{{objDomainSale.name}}.eth is being auctioned.

7 | 8 | The current bid for this domain is {{objDomainSale.lastBidEth}} {{ajaxReq.type}}. It was placed by {{objDomainSale.lastBidder}}. 9 | 10 |
11 |
12 |

Auction finishes if no further bids received by

13 |

{{objDomainSale.auctionEnds.toString()}}

14 |

{{objDomainSale.timeRemaining}}

15 |
16 | 17 |
18 | -------------------------------------------------------------------------------- /app/includes/domainsale-status-balance.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |
6 |

{{objDomainSale.address}} has no balance

7 |
8 | 9 |
10 |

{{objDomainSale.address}} has balance of {{objDomainSale.balanceEth}} {{ajaxReq.type}}

11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /app/includes/domainsale-status-closed.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

{{objDomainSale.name}}.eth auction finished

6 | 7 | The auction for this domain was won by {{objDomainSale.lastBidder}} with a bid of {{objDomainSale.lastBidEth}} {{ajaxReq.type}}. 8 | 9 |
10 | -------------------------------------------------------------------------------- /app/includes/domainsale-status-ineligible.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

{{objDomainSale.name}}.eth is not eligible for auction.

6 | 7 | This domain has not yet been registered in ENS. You should check it out on the ENS tab to see its status, and bid for it if you want it. 8 | 9 |
10 | -------------------------------------------------------------------------------- /app/includes/domainsale-status-notoffered.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

{{objDomainSale.name}}.eth is ready to be put up for sale.

6 | 7 |
8 | -------------------------------------------------------------------------------- /app/includes/domainsale-status-nottransferred.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

{{objDomainSale.name}}.eth is not currently for sale.

6 | 7 |
8 | -------------------------------------------------------------------------------- /app/includes/ens-action-finalize.tpl: -------------------------------------------------------------------------------- 1 |
3 | 4 |
5 | 6 | 12 |

13 |

14 | Finalizing this name assigns the ENS name to the winning bidder. The winner will be refunded the difference between their bid and the next-highest bid. If you are the only bidder, you will be refunded all but 0.01 ETH. Any non-winners will also be refunded. 15 |

16 |
17 | 18 |
19 | 20 | @@if (site === 'mew' ) { @@include( './ens-modal-finalize.tpl', { "site": "mew" } ) } 21 | @@if (site === 'cx' ) { @@include( './ens-modal-finalize.tpl', { "site": "cx" } ) } 22 | -------------------------------------------------------------------------------- /app/includes/ens-modal-after-sent.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyEtherWallet/etherwallet/9623a34d7bcd9892140d3d8f02745eade14e7415/app/includes/ens-modal-after-sent.tpl -------------------------------------------------------------------------------- /app/includes/ens-modal-finalize.tpl: -------------------------------------------------------------------------------- 1 | 2 | 41 | 42 | -------------------------------------------------------------------------------- /app/includes/ens-modal-resolve.tpl: -------------------------------------------------------------------------------- 1 | 2 | 35 | 36 | -------------------------------------------------------------------------------- /app/includes/ens-resolve-information.tpl: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |
Name: 7 | 10 | {{objENS.name}}.eth 11 | 12 |
Labelhash ({{objENS.name}}): {{objENS.nameSHA3}}
Namehash ({{objENS.name}}.eth): {{objENS.namehash}}
Owner: {{objENS.owner}}
Highest Bidder (Deed Owner): {{objENS.deedOwner}}
Resolved Address: {{objENS.resolvedAddress}}
41 | -------------------------------------------------------------------------------- /app/includes/ens-status-available.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

6 | An auction has been started for {{objENS.name}}.eth. 7 |

8 | 9 |

10 | {{objENS.name}}.eth is available! 11 |

12 | 13 | 14 |
15 |
16 |

Reveal Bids On

17 |

{{getRevealTime().toString()}}

18 |

{{objENS.timeRemainingReveal}}

19 |
20 |
21 |

Auction Closes On

22 |

{{objENS.registrationDate.toString()}}

23 |

{{objENS.timeRemaining}}

24 |
25 |
26 | 27 |
28 | -------------------------------------------------------------------------------- /app/includes/ens-status-finalized.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

It appears this name has already been finalized.

6 |

{{objENS.name}}.eth is owned by the highest bidder.

7 | 8 | @@if (site === 'mew' ) { @@include( './ens-resolve-information.tpl', { "site": "mew" } ) } 9 | @@if (site === 'cx' ) { @@include( './ens-resolve-information.tpl', { "site": "cx" } ) } 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /app/includes/ens-status-notavailable.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

6 | {{objENS.name}}.eth is not yet available. 7 |

8 | 9 |

10 | {{objENS.name}}.eth not available. (Forbidden) 11 |

12 | 13 |
14 | 15 |
16 |
17 |

Auction Open On

18 |

{{objENS.allowedTime.toString()}}

19 |
20 |
21 |

Auction Opens In

22 |

{{objENS.timeRemaining}}

23 |
24 |
25 | -------------------------------------------------------------------------------- /app/includes/ens-status-owned.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

{{objENS.name}}.eth 6 | is already owned: 7 | can be purchased through DomainSale 8 |

9 | 10 |
11 | @@if (site === 'mew' ) { @@include( './ens-resolve-information.tpl', { "site": "mew" } ) } 12 | @@if (site === 'cx' ) { @@include( './ens-resolve-information.tpl', { "site": "cx" } ) } 13 |
14 | 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /app/includes/ens-status-reveal.tpl: -------------------------------------------------------------------------------- 1 |
2 |

3 |

It's time to reveal the bids for {{objENS.name}}.eth.
Current highest bid is {{objENS.highestBid}} ETH.

4 | 5 |
6 |
7 |

Auction Closes On

8 |

{{objENS.registrationDate.toString()}}

9 |

{{objENS.timeRemaining}}

10 |
11 |
12 | 13 |
14 | 15 | -------------------------------------------------------------------------------- /app/includes/footerEmbedded.tpl: -------------------------------------------------------------------------------- 1 |