mirror of
https://github.com/tornadocash/ui-minified
synced 2024-02-02 15:04:06 +01:00
617b461
This commit is contained in:
commit
7aeae4a53f
10
451.html
Normal file
10
451.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Unavailable For Legal Reasons</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Unavailable For Legal Reasons</h1>
|
||||
</body>
|
||||
</html>
|
1
451/index.html
Normal file
1
451/index.html
Normal file
File diff suppressed because one or more lines are too long
47
README.md
Normal file
47
README.md
Normal file
@ -0,0 +1,47 @@
|
||||
## How to use
|
||||
|
||||
Step 1. Clone repository
|
||||
```
|
||||
git clone https://github.com/tornadocash/ui-minified.git
|
||||
cd ui-minified
|
||||
```
|
||||
Step 2. Serve the folder with your favorite http server
|
||||
```
|
||||
python3 -m http.server 8080
|
||||
```
|
||||
Or use any other http web server, such as https://www.npmjs.com/package/http-server
|
||||
|
||||
Step 3. Open your web browser at http://localhost:8080
|
||||
|
||||
## Running a TOR service
|
||||
|
||||
If you wish to serve tornado cash UI on an .onion domain, there is an easy way to do it using docker-compose. Paste the following into `docker-compose.yml` and run `docker-compose up -d`
|
||||
|
||||
```yaml
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
tornado_ui:
|
||||
image: tornadocash/ui
|
||||
restart: always
|
||||
container_name: tornado_ui
|
||||
watchtower:
|
||||
image: v2tec/watchtower
|
||||
restart: always
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
command: --interval 60 tornado_ui
|
||||
tor:
|
||||
image: strm/tor
|
||||
restart: always
|
||||
depends_on: [ tornado_ui ]
|
||||
environment:
|
||||
LISTEN_PORT: 80
|
||||
REDIRECT: tornado_ui:80
|
||||
# Generate a new key with
|
||||
# docker run --rm --entrypoint shallot strm/tor-hiddenservice-nginx ^torn
|
||||
PRIVATE_KEY: |
|
||||
-----BEGIN RSA PRIVATE KEY-----
|
||||
...
|
||||
-----END RSA PRIVATE KEY-----
|
||||
```
|
2
_nuxt/68d7ff0.js
Normal file
2
_nuxt/68d7ff0.js
Normal file
File diff suppressed because one or more lines are too long
1
_nuxt/7feff3e.js
Normal file
1
_nuxt/7feff3e.js
Normal file
@ -0,0 +1 @@
|
||||
!function(e){function r(data){for(var r,n,f=data[0],c=data[1],d=data[2],i=0,v=[];i<f.length;i++)n=f[i],Object.prototype.hasOwnProperty.call(o,n)&&o[n]&&v.push(o[n][0]),o[n]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);for(y&&y(data);v.length;)v.shift()();return l.push.apply(l,d||[]),t()}function t(){for(var e,i=0;i<l.length;i++){for(var r=l[i],t=!0,n=1;n<r.length;n++){var c=r[n];0!==o[c]&&(t=!1)}t&&(l.splice(i--,1),e=f(f.s=r[0]))}return e}var n={},o={1:0},l=[];function f(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,f),t.l=!0,t.exports}f.m=e,f.c=n,f.d=function(e,r,t){f.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},f.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.t=function(e,r){if(1&r&&(e=f(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(f.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)f.d(t,n,function(r){return e[r]}.bind(null,n));return t},f.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return f.d(r,"a",r),r},f.o=function(object,e){return Object.prototype.hasOwnProperty.call(object,e)},f.p="/_nuxt/";var c=window.webpackJsonp=window.webpackJsonp||[],d=c.push.bind(c);c.push=r,c=c.slice();for(var i=0;i<c.length;i++)r(c[i]);var y=d;t()}([]);
|
242
_nuxt/LICENSES
Normal file
242
_nuxt/LICENSES
Normal file
@ -0,0 +1,242 @@
|
||||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
* Determine if an object is a Buffer
|
||||
*
|
||||
* @author Feross Aboukhadijeh <https://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
* Vue.js v2.6.12
|
||||
* (c) 2014-2020 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* clipboard.js v2.0.4
|
||||
* https://zenorocha.github.io/clipboard.js
|
||||
*
|
||||
* Licensed MIT © Zeno Rocha
|
||||
*/
|
||||
|
||||
/*!
|
||||
* v2.1.4-104-gc868b3a
|
||||
*
|
||||
*/
|
||||
|
||||
/*!
|
||||
* vue-client-only v2.0.0
|
||||
* (c) 2019-present egoist <0x142857@gmail.com>
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* vue-i18n v8.15.4
|
||||
* (c) 2020 kazuya kawaguchi
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* vue-no-ssr v1.1.1
|
||||
* (c) 2018-present egoist <0x142857@gmail.com>
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* vuex v3.6.0
|
||||
* (c) 2020 Evan You
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
|
||||
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
||||
|
||||
/**
|
||||
* @license
|
||||
*
|
||||
* Copyright (c) 2014 James Robb, https://github.com/jamesbrobb
|
||||
*
|
||||
*
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright (c) 2014 Steven Spungin (TwelveTone LLC) steven@twelvetone.tv
|
||||
*
|
||||
* Licensed under the MIT License.
|
||||
* http://opensource.org/licenses/mit-license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright (c) 2016 Alexander Weidt,
|
||||
* https://github.com/BiggA94
|
||||
*
|
||||
* Licensed under the MIT License. http://opensource.org/licenses/mit-license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright (c) 2017 Aras Abbasi
|
||||
*
|
||||
* Licensed under the MIT License.
|
||||
* http://opensource.org/licenses/mit-license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Licensed under the MIT License.
|
||||
* http://opensource.org/licenses/mit-license
|
||||
*/
|
||||
|
||||
/**
|
||||
* jsPDF fromHTML plugin. BETA stage. API subject to change. Needs browser
|
||||
* Copyright (c) 2012 Willow Systems Corporation, willow-systems.com
|
||||
* 2014 Juan Pablo Gaviria, https://github.com/juanpgaviria
|
||||
* 2014 Diego Casorran, https://github.com/diegocr
|
||||
* 2014 Daniel Husar, https://github.com/danielhusar
|
||||
* 2014 Wolfgang Gassler, https://github.com/woolfg
|
||||
* 2014 Steven Spungin, https://github.com/flamenco
|
||||
*
|
||||
* @license
|
||||
*
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Lodash <https://lodash.com/>
|
||||
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
||||
* Released under MIT license <https://lodash.com/license>
|
||||
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
||||
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
||||
*/
|
||||
|
||||
/**
|
||||
* [js-sha3]{@link https://github.com/emn178/js-sha3}
|
||||
*
|
||||
* @version 0.5.7
|
||||
* @author Chen, Yi-Cyuan [emn178@gmail.com]
|
||||
* @copyright Chen, Yi-Cyuan 2015-2016
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/**
|
||||
* [js-sha3]{@link https://github.com/emn178/js-sha3}
|
||||
*
|
||||
* @version 0.8.0
|
||||
* @author Chen, Yi-Cyuan [emn178@gmail.com]
|
||||
* @copyright Chen, Yi-Cyuan 2015-2018
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license
|
||||
* ====================================================================
|
||||
* Copyright (c) 2013 Youssef Beddad, youssef.beddad@gmail.com
|
||||
* 2013 Eduardo Menezes de Morais, eduardo.morais@usp.br
|
||||
* 2013 Lee Driscoll, https://github.com/lsdriscoll
|
||||
* 2014 Juan Pablo Gaviria, https://github.com/juanpgaviria
|
||||
* 2014 James Hall, james@parall.ax
|
||||
* 2014 Diego Casorran, https://github.com/diegocr
|
||||
*
|
||||
*
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
/** @license
|
||||
* Copyright (c) 2012 Willow Systems Corporation, willow-systems.com
|
||||
*
|
||||
*
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
/** @license
|
||||
* MIT license.
|
||||
* Copyright (c) 2012 Willow Systems Corporation, willow-systems.com
|
||||
* 2014 Diego Casorran, https://github.com/diegocr
|
||||
*
|
||||
*
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
/** @license
|
||||
* jsPDF - PDF Document creation from JavaScript
|
||||
* Version 1.5.3 Built on 2018-12-27T14:11:42.696Z
|
||||
* CommitID d93d28db14
|
||||
*
|
||||
* Copyright (c) 2010-2016 James Hall <james@parall.ax>, https://github.com/MrRio/jsPDF
|
||||
* 2010 Aaron Spike, https://github.com/acspike
|
||||
* 2012 Willow Systems Corporation, willow-systems.com
|
||||
* 2012 Pablo Hess, https://github.com/pablohess
|
||||
* 2012 Florian Jenett, https://github.com/fjenett
|
||||
* 2013 Warren Weckesser, https://github.com/warrenweckesser
|
||||
* 2013 Youssef Beddad, https://github.com/lifof
|
||||
* 2013 Lee Driscoll, https://github.com/lsdriscoll
|
||||
* 2013 Stefan Slonevskiy, https://github.com/stefslon
|
||||
* 2013 Jeremy Morel, https://github.com/jmorel
|
||||
* 2013 Christoph Hartmann, https://github.com/chris-rock
|
||||
* 2014 Juan Pablo Gaviria, https://github.com/juanpgaviria
|
||||
* 2014 James Makes, https://github.com/dollaruw
|
||||
* 2014 Diego Casorran, https://github.com/diegocr
|
||||
* 2014 Steven Spungin, https://github.com/Flamenco
|
||||
* 2014 Kenneth Glassey, https://github.com/Gavvers
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
*
|
||||
* Contributor(s):
|
||||
* siefkenj, ahwolf, rickygu, Midnith, saintclair, eaparango,
|
||||
* kim3er, mfo, alnorth, Flamenco
|
||||
*/
|
||||
|
||||
/** @license
|
||||
* jsPDF addImage plugin
|
||||
* Copyright (c) 2012 Jason Siefken, https://github.com/siefkenj/
|
||||
* 2013 Chris Dowling, https://github.com/gingerchris
|
||||
* 2013 Trinh Ho, https://github.com/ineedfat
|
||||
* 2013 Edwin Alejandro Perez, https://github.com/eaparango
|
||||
* 2013 Norah Smith, https://github.com/burnburnrocket
|
||||
* 2014 Diego Casorran, https://github.com/diegocr
|
||||
* 2014 James Robb, https://github.com/jamesbrobb
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/** @license
|
||||
jsPDF standard_fonts_metrics plugin
|
||||
* Copyright (c) 2012 Willow Systems Corporation, willow-systems.com
|
||||
* MIT license.
|
||||
*
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
/** @license URI.js v4.2.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
1
_nuxt/d573b16.js
Normal file
1
_nuxt/d573b16.js
Normal file
File diff suppressed because one or more lines are too long
1
account/index.html
Normal file
1
account/index.html
Normal file
File diff suppressed because one or more lines are too long
1
compliance/index.html
Normal file
1
compliance/index.html
Normal file
File diff suppressed because one or more lines are too long
BIN
events/deposits_bnb_0.1.json.zip
Normal file
BIN
events/deposits_bnb_0.1.json.zip
Normal file
Binary file not shown.
BIN
events/deposits_bnb_1.json.zip
Normal file
BIN
events/deposits_bnb_1.json.zip
Normal file
Binary file not shown.
BIN
events/deposits_bnb_10.json.zip
Normal file
BIN
events/deposits_bnb_10.json.zip
Normal file
Binary file not shown.
BIN
events/deposits_bnb_100.json.zip
Normal file
BIN
events/deposits_bnb_100.json.zip
Normal file
Binary file not shown.
BIN
events/deposits_eth_0.1.json.zip
Normal file
BIN
events/deposits_eth_0.1.json.zip
Normal file
Binary file not shown.
BIN
events/deposits_eth_1.json.zip
Normal file
BIN
events/deposits_eth_1.json.zip
Normal file
Binary file not shown.
BIN
events/deposits_eth_10.json.zip
Normal file
BIN
events/deposits_eth_10.json.zip
Normal file
Binary file not shown.
BIN
events/deposits_eth_100.json.zip
Normal file
BIN
events/deposits_eth_100.json.zip
Normal file
Binary file not shown.
BIN
events/encrypted_notes_1.json.zip
Normal file
BIN
events/encrypted_notes_1.json.zip
Normal file
Binary file not shown.
BIN
events/encrypted_notes_5.json.zip
Normal file
BIN
events/encrypted_notes_5.json.zip
Normal file
Binary file not shown.
BIN
events/encrypted_notes_56.json.zip
Normal file
BIN
events/encrypted_notes_56.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_bnb_0.1.json.zip
Normal file
BIN
events/withdrawals_bnb_0.1.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_bnb_1.json.zip
Normal file
BIN
events/withdrawals_bnb_1.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_bnb_10.json.zip
Normal file
BIN
events/withdrawals_bnb_10.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_bnb_100.json.zip
Normal file
BIN
events/withdrawals_bnb_100.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_eth_0.1.json.zip
Normal file
BIN
events/withdrawals_eth_0.1.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_eth_1.json.zip
Normal file
BIN
events/withdrawals_eth_1.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_eth_10.json.zip
Normal file
BIN
events/withdrawals_eth_10.json.zip
Normal file
Binary file not shown.
BIN
events/withdrawals_eth_100.json.zip
Normal file
BIN
events/withdrawals_eth_100.json.zip
Normal file
Binary file not shown.
BIN
favicon/android-chrome-192x192.png
Normal file
BIN
favicon/android-chrome-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
favicon/android-chrome-512x512.png
Normal file
BIN
favicon/android-chrome-512x512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
BIN
favicon/apple-touch-icon.png
Normal file
BIN
favicon/apple-touch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
9
favicon/browserconfig.xml
Normal file
9
favicon/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/favicon/mstile-150x150.png"/>
|
||||
<TileColor>#000403</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
favicon/favicon.ico
Normal file
BIN
favicon/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
BIN
favicon/mstile-150x150.png
Normal file
BIN
favicon/mstile-150x150.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
1
governance/create/index.html
Normal file
1
governance/create/index.html
Normal file
File diff suppressed because one or more lines are too long
1
governance/index.html
Normal file
1
governance/index.html
Normal file
File diff suppressed because one or more lines are too long
1
index.html
Normal file
1
index.html
Normal file
File diff suppressed because one or more lines are too long
1
ipfs-404.html
Normal file
1
ipfs-404.html
Normal file
File diff suppressed because one or more lines are too long
19
manifest.json
Normal file
19
manifest.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "Tornado Cash",
|
||||
"short_name": "Tornado Cash",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/favicon/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/favicon/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#000403",
|
||||
"background_color": "#000403",
|
||||
"display": "standalone"
|
||||
}
|
BIN
tornado.json.zip
Normal file
BIN
tornado.json.zip
Normal file
Binary file not shown.
BIN
tornadoProvingKey.bin.zip
Normal file
BIN
tornadoProvingKey.bin.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_0.1_bloom.json.zip
Normal file
BIN
trees/deposits_eth_0.1_bloom.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_0.1_slice1.json.zip
Normal file
BIN
trees/deposits_eth_0.1_slice1.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_0.1_slice2.json.zip
Normal file
BIN
trees/deposits_eth_0.1_slice2.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_0.1_slice3.json.zip
Normal file
BIN
trees/deposits_eth_0.1_slice3.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_0.1_slice4.json.zip
Normal file
BIN
trees/deposits_eth_0.1_slice4.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_100_bloom.json.zip
Normal file
BIN
trees/deposits_eth_100_bloom.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_100_slice1.json.zip
Normal file
BIN
trees/deposits_eth_100_slice1.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_100_slice2.json.zip
Normal file
BIN
trees/deposits_eth_100_slice2.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_100_slice3.json.zip
Normal file
BIN
trees/deposits_eth_100_slice3.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_100_slice4.json.zip
Normal file
BIN
trees/deposits_eth_100_slice4.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_10_bloom.json.zip
Normal file
BIN
trees/deposits_eth_10_bloom.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_10_slice1.json.zip
Normal file
BIN
trees/deposits_eth_10_slice1.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_10_slice2.json.zip
Normal file
BIN
trees/deposits_eth_10_slice2.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_10_slice3.json.zip
Normal file
BIN
trees/deposits_eth_10_slice3.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_10_slice4.json.zip
Normal file
BIN
trees/deposits_eth_10_slice4.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_1_bloom.json.zip
Normal file
BIN
trees/deposits_eth_1_bloom.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_1_slice1.json.zip
Normal file
BIN
trees/deposits_eth_1_slice1.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_1_slice2.json.zip
Normal file
BIN
trees/deposits_eth_1_slice2.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_1_slice3.json.zip
Normal file
BIN
trees/deposits_eth_1_slice3.json.zip
Normal file
Binary file not shown.
BIN
trees/deposits_eth_1_slice4.json.zip
Normal file
BIN
trees/deposits_eth_1_slice4.json.zip
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user