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

Commit c34d4b5

Browse files
authored
Merge pull request #2278 from kvhnuke/devop/prep-release
Some left over dist
2 parents 07c7b4e + bb94cac commit c34d4b5

11 files changed

Lines changed: 18215 additions & 0 deletions

File tree

chrome-extension/embedded.html

Lines changed: 579 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}

chrome-extension/index.html

Lines changed: 8525 additions & 0 deletions
Large diffs are not rendered by default.

chrome-extension/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "MyEtherWallet",
3+
"version": "3.38.0",
4+
"description": "An NPM dist of MyEtherWallet. For easier downloading & updating via CLI.",
5+
"author": "MyEtherWallet",
6+
"license": "ISC",
7+
"devDependencies": {
8+
"open": "0.0.5"
9+
},
10+
"bin": {
11+
"mew": "bin/startMEW.js"
12+
}
13+
}

chrome-extension/signmsg.html

Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
<!DOCTYPE html>
2+
<html lang="en" ng-app="mewApp">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>MyEtherWallet.com</title>
6+
<link rel="canonical" href="https://vintage.myetherwallet.com" />
7+
<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.">
8+
<meta name="author" content="">
9+
<meta name="viewport" content="width=device-width, initial-scale=1">
10+
<link rel="stylesheet" href="css/etherwallet-master.min.css">
11+
<script type="text/javascript" src="js/etherwallet-static.min.js"></script>
12+
<script type="text/javascript" src="js/etherwallet-master.js"></script>
13+
<link rel="apple-touch-icon" sizes="60x60" href="images/fav/apple-touch-icon-60x60.png">
14+
<link rel="apple-touch-icon" sizes="76x76" href="images/fav/apple-touch-icon-76x76.png">
15+
<link rel="apple-touch-icon" sizes="120x120" href="images/fav/apple-touch-icon-120x120.png">
16+
<link rel="apple-touch-icon" sizes="152x152" href="images/fav/apple-touch-icon-152x152.png">
17+
<link rel="apple-touch-icon" sizes="180x180" href="images/fav/apple-touch-icon-180x180.png">
18+
<link rel="icon" type="image/png" href="images/fav/favicon-32x32.png" sizes="32x32">
19+
<link rel="icon" type="image/png" href="images/fav/favicon-194x194.png" sizes="194x194">
20+
<link rel="icon" type="image/png" href="images/fav/favicon-96x96.png" sizes="96x96">
21+
<link rel="icon" type="image/png" href="images/fav/android-chrome-192x192.png" sizes="192x192">
22+
<link rel="icon" type="image/png" href="images/fav/favicon-16x16.png" sizes="16x16">
23+
<link rel="manifest" href="images/fav/manifest.json">
24+
<link rel="shortcut icon" href="images/favicon.ico">
25+
<meta name="msapplication-TileColor" content="#2e4868">
26+
<meta name="msapplication-TileImage" content="images/fav/mstile-144x144.png">
27+
<meta name="msapplication-config" content="images/fav/browserconfig.xml">
28+
<meta name="theme-color" content="#2e4868">
29+
</head>
30+
31+
<body>
32+
33+
<header class="bg-gradient text-white">
34+
<section class="container text-center">
35+
<a href="https://vintage.myetherwallet.com/"><img src="images/logo-myetherwallet.svg" height="50px" width="auto" alt="Ether Wallet" class="embedded-logo" /></a>
36+
</section>
37+
</header>
38+
39+
40+
<section ng-controller="tabsCtrl" ng-cloak>
41+
42+
<section class="container" style="min-height: 50%" ng-controller='signMsgCtrl'>
43+
44+
<div class="tab-content">
45+
46+
<div class="clearfix">
47+
<article class="col-xs-12 clearfix">
48+
<div class="block text-center">
49+
<h2>
50+
<a translate="NAV_SignMsg"
51+
ng-class="{ 'isActive': visibility=='signView'}"
52+
ng-click="setVisibility('signView')">
53+
Sign Message
54+
</a>
55+
or
56+
<a translate="MSG_verify"
57+
ng-class="{ 'isActive': visibility=='verifyView'}"
58+
ng-click="setVisibility('verifyView')">
59+
Verify Message
60+
</a>
61+
</h2>
62+
</div>
63+
</article>
64+
65+
<article class="col-xs-12 clearfix" ng-switch on="visibility">
66+
67+
<section class="block" ng-switch-when="signView">
68+
69+
<h4 translate="MSG_message">
70+
Message
71+
</h4>
72+
73+
<textarea class="form-control"
74+
ng-model="signMsg.message"
75+
placeholder="This is a sweet message that you are signing to prove that you own the address you say you own."
76+
rows="5"
77+
ng-disabled="signMsg.signedMsg">
78+
</textarea>
79+
80+
<p class="small">
81+
<em translate="MSG_info2">
82+
Include your nickname and where you use the nickname so someone else cannot use it.
83+
</em>
84+
<em translate="MSG_info3">
85+
Include a specific reason for the message so it cannot be reused for a different purpose.
86+
</em>
87+
</p>
88+
89+
<br />
90+
91+
<a class="btn btn-info btn-block"
92+
ng-click="generateSignedMsg()"
93+
translate="NAV_SignMsg"
94+
ng-show="wallet!=null">
95+
Sign Message
96+
</a>
97+
98+
<div ng-show="signMsg.signedMsg">
99+
<h4 translate="MSG_signature">
100+
Signature
101+
</h4>
102+
<textarea class="form-control"
103+
rows="8"
104+
style="word-break: break-all;"
105+
readonly
106+
title="Signature">{{ signMsg.signedMsg }}</textarea>
107+
</div>
108+
</section>
109+
110+
111+
<section class="block" ng-switch-when="verifyView">
112+
113+
<h5 translate="MSG_signature">
114+
Signature
115+
</h5>
116+
<textarea class="form-control"
117+
ng-model="verifyMsg.signedMsg"
118+
rows="8"
119+
placeholder='{"address": "0xdecaf9cd2367cdbb726e904cd6397edfcae6068d","msg": "MEW IS AWESOME","sig": "0xe26ce7ae8b04a20dbdd32de82bf16c4b7a367312341eef6761208bcf8bc518021b8ec354eae8af54ad8190bef6bf8337eacafe3ce9710fe9c7f28596f1daaf631b","version": "2"}'>
120+
</textarea>
121+
122+
<a class="btn btn-info btn-block"
123+
ng-click="verifySignedMessage()"
124+
translate="MSG_verify"
125+
ng-show="verifyMsg.signedMsg!=''">
126+
Verify Message
127+
</a>
128+
129+
<p class="alert alert-success"
130+
ng-show="verifiedMsg.address!=null">
131+
<strong>{{ verifiedMsg.address }}</strong> did sign the message <strong>{{ verifiedMsg.msg }}</strong>.
132+
</p>
133+
134+
</section>
135+
136+
</article>
137+
138+
</div>
139+
140+
<div class="clearfix col-xs-12" ng-show="visibility=='signView' && wallet==null">
141+
<wallet-decrypt-drtv></wallet-decrypt-drtv>
142+
</div>
143+
144+
</div>
145+
146+
<div data-ng-repeat="alert in notifier.alerts">
147+
<div class="alert popup alert-{{alert.type}} animated-show-hide"
148+
style="bottom: {{85*$index}}px; z-index: {{999+$index}};">
149+
<div class="container">
150+
<div class='alert-message' ng-bind-html="alert.message"></div>
151+
</div>
152+
<i class="icon-close" ng-click="alert.close()"></i>
153+
</div>
154+
</div>
155+
156+
157+
</section>
158+
159+
</section>
160+
161+
<br /><br /><br /><br /><br />
162+
163+
<footer>
164+
165+
<script type='application/ld+json'>{"@context":"http://schema.org","@type":"Organization","@id":"#organization","url":"https://vintage.myetherwallet.com/","name":"MyEtherWallet",
166+
"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>
167+
168+
</body>
169+
170+
</html>
171+

0 commit comments

Comments
 (0)