Skip to content
This repository was archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2278 from kvhnuke/devop/prep-release
Browse files Browse the repository at this point in the history
Some left over dist
  • Loading branch information
gamalielhere authored Jun 19, 2019
2 parents 07c7b4e + bb94cac commit c34d4b5
Show file tree
Hide file tree
Showing 11 changed files with 18,215 additions and 0 deletions.
579 changes: 579 additions & 0 deletions chrome-extension/embedded.html

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions chrome-extension/images/fav/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "MyEtherWallet",
"icons": [
{
"src": "/images/fav/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/images/fav/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#1d6986",
"background_color": "#1d6986",
"display": "standalone"
}
8,525 changes: 8,525 additions & 0 deletions chrome-extension/index.html

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions chrome-extension/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "MyEtherWallet",
"version": "3.38.0",
"description": "An NPM dist of MyEtherWallet. For easier downloading & updating via CLI.",
"author": "MyEtherWallet",
"license": "ISC",
"devDependencies": {
"open": "0.0.5"
},
"bin": {
"mew": "bin/startMEW.js"
}
}
171 changes: 171 additions & 0 deletions chrome-extension/signmsg.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
<!DOCTYPE html>
<html lang="en" ng-app="mewApp">
<head>
<meta charset="utf-8">
<title>MyEtherWallet.com</title>
<link rel="canonical" href="https://vintage.myetherwallet.com" />
<meta name="description" content="MyEtherWallet.com is a free, open-source, client-side interface for generating Ethereum wallets &amp; more. Interact with the Ethereum blockchain easily &amp; securely. Double-check the URL ( myetherwallet.com ) before unlocking your wallet.">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/etherwallet-master.min.css">
<script type="text/javascript" src="js/etherwallet-static.min.js"></script>
<script type="text/javascript" src="js/etherwallet-master.js"></script>
<link rel="apple-touch-icon" sizes="60x60" href="images/fav/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/fav/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/fav/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/fav/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/fav/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="images/fav/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="images/fav/favicon-194x194.png" sizes="194x194">
<link rel="icon" type="image/png" href="images/fav/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="images/fav/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="images/fav/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="images/fav/manifest.json">
<link rel="shortcut icon" href="images/favicon.ico">
<meta name="msapplication-TileColor" content="#2e4868">
<meta name="msapplication-TileImage" content="images/fav/mstile-144x144.png">
<meta name="msapplication-config" content="images/fav/browserconfig.xml">
<meta name="theme-color" content="#2e4868">
</head>

<body>

<header class="bg-gradient text-white">
<section class="container text-center">
<a href="https://vintage.myetherwallet.com/"><img src="images/logo-myetherwallet.svg" height="50px" width="auto" alt="Ether Wallet" class="embedded-logo" /></a>
</section>
</header>


<section ng-controller="tabsCtrl" ng-cloak>

<section class="container" style="min-height: 50%" ng-controller='signMsgCtrl'>

<div class="tab-content">

<div class="clearfix">
<article class="col-xs-12 clearfix">
<div class="block text-center">
<h2>
<a translate="NAV_SignMsg"
ng-class="{ 'isActive': visibility=='signView'}"
ng-click="setVisibility('signView')">
Sign Message
</a>
or
<a translate="MSG_verify"
ng-class="{ 'isActive': visibility=='verifyView'}"
ng-click="setVisibility('verifyView')">
Verify Message
</a>
</h2>
</div>
</article>

<article class="col-xs-12 clearfix" ng-switch on="visibility">

<section class="block" ng-switch-when="signView">

<h4 translate="MSG_message">
Message
</h4>

<textarea class="form-control"
ng-model="signMsg.message"
placeholder="This is a sweet message that you are signing to prove that you own the address you say you own."
rows="5"
ng-disabled="signMsg.signedMsg">
</textarea>

<p class="small">
<em translate="MSG_info2">
Include your nickname and where you use the nickname so someone else cannot use it.
</em>
<em translate="MSG_info3">
Include a specific reason for the message so it cannot be reused for a different purpose.
</em>
</p>

<br />

<a class="btn btn-info btn-block"
ng-click="generateSignedMsg()"
translate="NAV_SignMsg"
ng-show="wallet!=null">
Sign Message
</a>

<div ng-show="signMsg.signedMsg">
<h4 translate="MSG_signature">
Signature
</h4>
<textarea class="form-control"
rows="8"
style="word-break: break-all;"
readonly
title="Signature">{{ signMsg.signedMsg }}</textarea>
</div>
</section>


<section class="block" ng-switch-when="verifyView">

<h5 translate="MSG_signature">
Signature
</h5>
<textarea class="form-control"
ng-model="verifyMsg.signedMsg"
rows="8"
placeholder='{"address": "0xdecaf9cd2367cdbb726e904cd6397edfcae6068d","msg": "MEW IS AWESOME","sig": "0xe26ce7ae8b04a20dbdd32de82bf16c4b7a367312341eef6761208bcf8bc518021b8ec354eae8af54ad8190bef6bf8337eacafe3ce9710fe9c7f28596f1daaf631b","version": "2"}'>
</textarea>

<a class="btn btn-info btn-block"
ng-click="verifySignedMessage()"
translate="MSG_verify"
ng-show="verifyMsg.signedMsg!=''">
Verify Message
</a>

<p class="alert alert-success"
ng-show="verifiedMsg.address!=null">
<strong>{{ verifiedMsg.address }}</strong> did sign the message <strong>{{ verifiedMsg.msg }}</strong>.
</p>

</section>

</article>

</div>

<div class="clearfix col-xs-12" ng-show="visibility=='signView' && wallet==null">
<wallet-decrypt-drtv></wallet-decrypt-drtv>
</div>

</div>

<div data-ng-repeat="alert in notifier.alerts">
<div class="alert popup alert-{{alert.type}} animated-show-hide"
style="bottom: {{85*$index}}px; z-index: {{999+$index}};">
<div class="container">
<div class='alert-message' ng-bind-html="alert.message"></div>
</div>
<i class="icon-close" ng-click="alert.close()"></i>
</div>
</div>


</section>

</section>

<br /><br /><br /><br /><br />

<footer>

<script type='application/ld+json'>{"@context":"http://schema.org","@type":"Organization","@id":"#organization","url":"https://vintage.myetherwallet.com/","name":"MyEtherWallet",
"logo":"https://myetherwallet.com/images/myetherwallet-logo-banner.png","description": "MyEtherWallet.com is a free, open-source, client-side interface for generating Ethereum wallets &amp; more. Interact with the Ethereum blockchain easily &amp; securely. Double-check the URL ( myetherwallet.com ) before unlocking your wallet.","sameAs":["https://www.myetherwallet.com/","https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm","https://www.facebook.com/MyEtherWallet/","https://twitter.com/myetherwallet","https://medium.com/@myetherwallet_96408","https://kb.myetherwallet.com/","https://github.com/kvhnuke/etherwallet","https://github.com/MyEtherWallet","https://kvhnuke.github.io/etherwallet/","https://github.com/kvhnuke/etherwallet/releases/latest","https://github.com/409H/EtherAddressLookup","https://myetherwallet.slack.com/","https://myetherwallet.herokuapp.com/","https://www.reddit.com/r/MyEtherWallet/","https://www.reddit.com/user/insomniasexx/","https://www.reddit.com/user/kvhnuke/","https://www.reddit.com/user/myetherwallet"]}</script>

</body>

</html>

Loading

0 comments on commit c34d4b5

Please sign in to comment.