├── Gruntfile.js ├── README.md ├── README.ui ├── biome.json ├── bower.json ├── bun.lock ├── install.sh ├── package.json ├── po ├── es.po └── ja.po ├── public ├── css │ ├── main.min.css │ └── new.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── angularjs.png │ ├── icons │ │ ├── copy.png │ │ └── favicon.ico │ ├── leveldb.png │ ├── loading.gif │ ├── logo.png │ ├── logo.svg │ ├── nodejs.png │ └── smileyheader (1).png ├── index.html ├── js │ ├── angularjs-all.min.js │ ├── main.min.js │ └── vendors.min.js ├── lib │ └── zeroclipboard │ │ └── ZeroClipboard.swf ├── robots.txt ├── sound │ └── transaction.mp3 ├── src │ ├── css │ │ ├── common.css │ │ └── common.old.css │ └── js │ │ ├── app.js │ │ ├── config.js │ │ ├── controllers │ │ ├── address.js │ │ ├── blocks.js │ │ ├── connection.js │ │ ├── currency.js │ │ ├── footer.js │ │ ├── header.js │ │ ├── index.js │ │ ├── messages.js │ │ ├── scanner.js │ │ ├── search.js │ │ ├── status.js │ │ └── transactions.js │ │ ├── directives.js │ │ ├── filters.js │ │ ├── init.js │ │ ├── ios-imagefile-megapixel │ │ └── megapix-image.js │ │ ├── jsqrcode │ │ ├── alignpat.js │ │ ├── bitmat.js │ │ ├── bmparser.js │ │ ├── datablock.js │ │ ├── databr.js │ │ ├── datamask.js │ │ ├── decoder.js │ │ ├── detector.js │ │ ├── errorlevel.js │ │ ├── findpat.js │ │ ├── formatinf.js │ │ ├── gf256.js │ │ ├── gf256poly.js │ │ ├── grid.js │ │ ├── qrcode.js │ │ ├── rsdecoder.js │ │ ├── test.html │ │ └── version.js │ │ ├── services │ │ ├── address.js │ │ ├── blocks.js │ │ ├── currency.js │ │ ├── global.js │ │ ├── socket.js │ │ ├── status.js │ │ └── transactions.js │ │ └── translations.js └── views │ ├── 404.html │ ├── address.html │ ├── block.html │ ├── block_list.html │ ├── dummy-translations.html │ ├── includes │ ├── connection.html │ ├── currency.html │ ├── header.html │ ├── infoStatus.html │ └── search.html │ ├── index.html │ ├── messages_verify.html │ ├── redirect.html │ ├── status.html │ ├── transaction.html │ ├── transaction │ ├── list.html │ └── tx.html │ └── transaction_sendraw.html ├── tsconfig.json ├── worker-configuration.d.ts └── wrangler.jsonc /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/README.md -------------------------------------------------------------------------------- /README.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/README.ui -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/biome.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/bower.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/bun.lock -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/package.json -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/po/es.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/po/ja.po -------------------------------------------------------------------------------- /public/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/css/main.min.css -------------------------------------------------------------------------------- /public/css/new.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/css/new.min.css -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/img/angularjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/angularjs.png -------------------------------------------------------------------------------- /public/img/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/icons/copy.png -------------------------------------------------------------------------------- /public/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/icons/favicon.ico -------------------------------------------------------------------------------- /public/img/leveldb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/leveldb.png -------------------------------------------------------------------------------- /public/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/loading.gif -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/nodejs.png -------------------------------------------------------------------------------- /public/img/smileyheader (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/img/smileyheader (1).png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/angularjs-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/js/angularjs-all.min.js -------------------------------------------------------------------------------- /public/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/js/main.min.js -------------------------------------------------------------------------------- /public/js/vendors.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/js/vendors.min.js -------------------------------------------------------------------------------- /public/lib/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/lib/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sound/transaction.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/sound/transaction.mp3 -------------------------------------------------------------------------------- /public/src/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/css/common.css -------------------------------------------------------------------------------- /public/src/css/common.old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/css/common.old.css -------------------------------------------------------------------------------- /public/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/app.js -------------------------------------------------------------------------------- /public/src/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/config.js -------------------------------------------------------------------------------- /public/src/js/controllers/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/address.js -------------------------------------------------------------------------------- /public/src/js/controllers/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/blocks.js -------------------------------------------------------------------------------- /public/src/js/controllers/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/connection.js -------------------------------------------------------------------------------- /public/src/js/controllers/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/currency.js -------------------------------------------------------------------------------- /public/src/js/controllers/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/footer.js -------------------------------------------------------------------------------- /public/src/js/controllers/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/header.js -------------------------------------------------------------------------------- /public/src/js/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/index.js -------------------------------------------------------------------------------- /public/src/js/controllers/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/messages.js -------------------------------------------------------------------------------- /public/src/js/controllers/scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/scanner.js -------------------------------------------------------------------------------- /public/src/js/controllers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/search.js -------------------------------------------------------------------------------- /public/src/js/controllers/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/status.js -------------------------------------------------------------------------------- /public/src/js/controllers/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/controllers/transactions.js -------------------------------------------------------------------------------- /public/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/directives.js -------------------------------------------------------------------------------- /public/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/filters.js -------------------------------------------------------------------------------- /public/src/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/init.js -------------------------------------------------------------------------------- /public/src/js/ios-imagefile-megapixel/megapix-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/ios-imagefile-megapixel/megapix-image.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/alignpat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/alignpat.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/bitmat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/bitmat.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/bmparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/bmparser.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/datablock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/datablock.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/databr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/databr.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/datamask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/datamask.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/decoder.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/detector.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/errorlevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/errorlevel.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/findpat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/findpat.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/formatinf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/formatinf.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/gf256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/gf256.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/gf256poly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/gf256poly.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/grid.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/qrcode.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/rsdecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/rsdecoder.js -------------------------------------------------------------------------------- /public/src/js/jsqrcode/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/test.html -------------------------------------------------------------------------------- /public/src/js/jsqrcode/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/jsqrcode/version.js -------------------------------------------------------------------------------- /public/src/js/services/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/services/address.js -------------------------------------------------------------------------------- /public/src/js/services/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/services/blocks.js -------------------------------------------------------------------------------- /public/src/js/services/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/services/currency.js -------------------------------------------------------------------------------- /public/src/js/services/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/services/global.js -------------------------------------------------------------------------------- /public/src/js/services/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/services/socket.js -------------------------------------------------------------------------------- /public/src/js/services/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/services/status.js -------------------------------------------------------------------------------- /public/src/js/services/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/services/transactions.js -------------------------------------------------------------------------------- /public/src/js/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/src/js/translations.js -------------------------------------------------------------------------------- /public/views/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/404.html -------------------------------------------------------------------------------- /public/views/address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/address.html -------------------------------------------------------------------------------- /public/views/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/block.html -------------------------------------------------------------------------------- /public/views/block_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/block_list.html -------------------------------------------------------------------------------- /public/views/dummy-translations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/dummy-translations.html -------------------------------------------------------------------------------- /public/views/includes/connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/includes/connection.html -------------------------------------------------------------------------------- /public/views/includes/currency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/includes/currency.html -------------------------------------------------------------------------------- /public/views/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/includes/header.html -------------------------------------------------------------------------------- /public/views/includes/infoStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/includes/infoStatus.html -------------------------------------------------------------------------------- /public/views/includes/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/includes/search.html -------------------------------------------------------------------------------- /public/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/index.html -------------------------------------------------------------------------------- /public/views/messages_verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/messages_verify.html -------------------------------------------------------------------------------- /public/views/redirect.html: -------------------------------------------------------------------------------- 1 |
Redirecting...
2 | -------------------------------------------------------------------------------- /public/views/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/status.html -------------------------------------------------------------------------------- /public/views/transaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/transaction.html -------------------------------------------------------------------------------- /public/views/transaction/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/transaction/list.html -------------------------------------------------------------------------------- /public/views/transaction/tx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/transaction/tx.html -------------------------------------------------------------------------------- /public/views/transaction_sendraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/public/views/transaction_sendraw.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/worker-configuration.d.ts -------------------------------------------------------------------------------- /wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/insight/HEAD/wrangler.jsonc --------------------------------------------------------------------------------