Skip to content

Commit c730397

Browse files
committed
2.0.4
Update openethereum from v3.0.1 to v3.1.1 why - openethereum downloads for v3.0.1 are no longer available caveat - there is no windows binary for v3.1.1
1 parent 626b7b3 commit c730397

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

install.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@ const fs = require('fs')
55
const stream = require('stream')
66
const path = require('path')
77

8-
const win32Sha256 = '42c05ed84a0588110afd8fe379685335cf792660d6684fc90cdac54695dda636'
9-
const darwinSha256 = 'f41cb1f49727ccf09e4f34b964fdfa9ad3802a046f6acd6c349a41020cdcf1c7'
10-
const linuxSha256 = '8dd753058e5db77ffaede5a53418005f9c8133212448e11df9169a651cdac997'
8+
const win32Sha256 = ''
9+
const darwinSha256 = '78cbb9c6b6f8d1cb40d7e65d152062d2e259e73fa85b83d3b8e778d62ddf9ba2'
10+
const linuxSha256 = '1bed234e83fa9196feffe1d5d3fdc23fb68b2cd4fbbfab579ff4ca058c3b3cb2'
1111

1212
var url
1313
var sha
1414
var exeName = 'openethereum.exe'
1515
const win32 = os.platform() === 'win32'
1616

1717
switch (os.platform()) {
18-
case 'win32':
19-
url = 'https://github.com/openethereum/openethereum/releases/download/v3.0.1/openethereum-windows-v3.0.1.zip'
20-
sha = win32Sha256
21-
break
18+
//case 'win32':
19+
// url = ''
20+
// sha = win32Sha256
21+
// break
2222
case 'darwin':
23-
url = 'https://github.com/openethereum/openethereum/releases/download/v3.0.1/openethereum-macos-v3.0.1.zip'
23+
url = 'https://github.com/openethereum/openethereum/releases/download/v3.1.1/openethereum-macos-v3.1.1.zip'
2424
sha = darwinSha256
2525
break
2626
case 'linux':
27-
url = 'https://github.com/openethereum/openethereum/releases/download/v3.0.1/openethereum-linux-v3.0.1.zip'
27+
url = 'https://github.com/openethereum/openethereum/releases/download/v3.1.1/openethereum-linux-v3.1.1.zip'
2828
sha = linuxSha256
2929
break
3030
default:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openethereum-binary",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Download latest openethereum and export the path",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)