Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

To Enable Decompiled mode in Explorer under Script tab #126

Open
wants to merge 59 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
da3eb1e
delete faucet, delete unneeded config fils
Jan 5, 2020
a2c1dc9
remove unneeded vostok reference
Jan 5, 2020
d4d1e0c
add line break
Jan 5, 2020
b20e94c
play with colors
Jan 5, 2020
223d88d
update images and some colors
Jan 7, 2020
40d3dd6
color changes
Jan 7, 2020
35cd05c
version 0.0.7
Jan 7, 2020
0bd8d34
bump version
Jan 8, 2020
5c68d5d
add new images ba_nano, add grey background
Jan 11, 2020
665e1d0
update background color, split header color, change images
Jan 11, 2020
0d3409f
add tools page, ad dgateway page,..
Jan 12, 2020
0ae4dce
add turtlcap to explorer
Jan 14, 2020
7bf7599
Update index.html
BlackTurtle123 Feb 10, 2020
89dfabe
Update index.html
BlackTurtle123 Feb 10, 2020
475c891
Merge pull request #1 from TurtleNetwork/ba_nano
BlackTurtle123 Feb 10, 2020
a9391d8
make explorer cookie free
Feb 10, 2020
484b9e2
add base url datafeed
Feb 13, 2020
2e7a3ca
bump version
Feb 13, 2020
c14a93e
add dataservice url
Feb 13, 2020
74a2af4
add eth ticker to turtlecap
Feb 14, 2020
ac76a76
TN-39: remove dead usdt and add new pair
Feb 19, 2020
970d47f
TN-39: remove dead usdt and add new pair
Feb 19, 2020
ccef7aa
update doge gw url
Mar 11, 2020
588acc2
update bch gw url
Mar 16, 2020
2f42091
update gw url, also remove unmanaged nodes
Mar 28, 2020
faea48f
update gw urls
Apr 21, 2020
a8f468b
disable google analitics for now
May 8, 2020
95ecc5a
update testnet base url
May 25, 2020
7faef55
add usdt gateway and add etho gateway
Jul 8, 2020
1dadc46
add all testnet and mainnet nodes to explorer
Jul 8, 2020
25784ea
update urls, add firefox turtleshell urls
Jul 8, 2020
829be1f
add new gateway urls
Feb 4, 2021
3cfc5e9
remove syscoin, change the node ip's into pool
Mar 24, 2021
f1377cc
bump version
Mar 24, 2021
eb9bf76
remove turtlecap and gateways"
Apr 10, 2021
25298d4
add hacks
Apr 19, 2021
4588aed
update to spinning gemshell
Jun 18, 2021
77fe8e0
Merge pull request #2 from greywolf42069/master
BlackTurtle123 Jun 18, 2021
4f21381
Updates Explorer Logo
Jun 21, 2021
c8090b3
Merge pull request #3 from greywolf42069/master
BlackTurtle123 Jun 21, 2021
bd7aead
Update Favicon
Jun 22, 2021
6a1984c
1904 Res to 1204 Res
Jun 22, 2021
bc84ca5
Merge pull request #4 from greywolf42069/master
BlackTurtle123 Jun 22, 2021
b4f12ea
version update and ocnfig update
Jun 22, 2021
b90983f
update node-sass
Jun 22, 2021
acde943
delete unneeded dir
Jun 22, 2021
252b207
updates to logo & styling
iammortimer Jul 17, 2021
3a59581
Updated spinner
iammortimer Jul 17, 2021
f86e4e6
Merge pull request #6 from iammortimer/master
BlackTurtle123 Jul 19, 2021
df189ee
udpate docker container and bump version
Jul 19, 2021
180b450
push repo to public docker
Aug 8, 2021
587878f
remove gordon
Aug 8, 2021
8775eae
bump version
Aug 8, 2021
c785a95
enable delay function again
Aug 11, 2021
6db9234
update explorer
Nov 3, 2021
f67f188
remove vostok legacy
Nov 9, 2021
1662ebf
update nodeService to display the fixed info's
Nov 9, 2021
44f7693
bugfix broken lease cancel, add button to new ui
Nov 10, 2021
7250a1d
fix asset balance loading explorer
Jan 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10 AS build
FROM node:12 AS build

ARG CONF_SWITCH
ENV CONF_SWITCH ${CONF_SWITCH:-buildOfficialProd}
Expand Down
31 changes: 14 additions & 17 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,28 +45,25 @@ function buildOfficialTestnet(done) {
}, 'prod', done);
}

function buildOfficialStagenet(done) {
buildApp({
network: 'stagenet',
decompileUrl: 'https://nodes-stagenet.wavesnodes.com/utils/script/decompile'
}, 'prod', done);
function dockerImage(done) {
exec('docker build . -t turtlenetwork/tn-explorer:' + config.package.data.version, function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
done(err);
});
}

function buildOfficialStaging(done) {
buildApp({network: 'mainnet'}, 'dev', done);
function pushDockerImage(done){
exec('docker push turtlenetwork/tn-explorer:' + config.package.data.version, function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
done(err);
});
}

function buildDevnet(done) {
buildApp({network: 'devnet'}, 'prod', done);
}

function buildCustom(done) {
buildApp({network: 'custom'}, 'prod', done);
}


exports.buildOfficialProd = gulp.series(clean, buildOfficialProd);
exports.buildOfficialStaging = gulp.series(clean, buildOfficialStaging);
exports.buildOfficialStagenet = gulp.series(clean, buildOfficialStagenet);
exports.buildOfficialTestnet = gulp.series(clean, buildOfficialTestnet);
exports.buildDevnet = gulp.series(clean, buildDevnet);
exports.buildCustom = gulp.series(clean, buildCustom);
exports.buildOfficialDocker = gulp.series(clean,buildOfficialProd, dockerImage,pushDockerImage);
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"short_name": "Waves Explorer",
"name": "Waves blockchain explorer",
"short_name": "TN Explorer",
"name": "TN blockchain explorer",
"icons": [
{
"src": "favicon.png",
"src": "favicon.ico",
"sizes": "16x16",
"type": "image/png"
}
Expand Down
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "waves-blockchain-explorer",
"version": "3.2.4",
"name": "TN-blockchain-explorer",
"version": "3.2.9",
"private": true,
"description": "Waves blockchain information tool",
"description": "Turtle Network blockchain information tool",
"repository": {
"type": "git",
"url": "https://github.com/wavesplatform/WavesExplorerLite.git"
"url": "https://github.com/TurtleNetwork/ExplorerLite.git"
},
"license": "Apache-2.0",
"scripts": {
Expand All @@ -19,16 +19,18 @@
"dependencies": {
"@babel/runtime": "^7.3.4",
"@sentry/browser": "^4.6.4",
"@turtlenetwork/signature-generator": "^5.0.0",
"@waves/node-api-js": "1.2.4",
"@waves/ride-js": "2.1.1",
"@waves/signature-generator": "^5.0.0",
"amplitude-js": "^4.6.0-beta.2",
"axios": "0.19.0",
"decimal.js": "10.0.1",
"detect-browser": "^4.8.0",
"dexie": "^2.0.4",
"formik": "^1.5.8",
"json-bigint": "^0.3.0",
"lodash": "4.17.15",
"node-sass": "^6.0.0",
"lodash": "^4.17.20",
"prop-types": "15.6.2",
"react": "16.6.1",
Expand Down
Binary file added src/favicon.ico
Binary file not shown.
Binary file removed src/favicon.png
Binary file not shown.
Binary file modified src/images/app-loading.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
82 changes: 72 additions & 10 deletions src/images/check-18-success-400.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
77 changes: 71 additions & 6 deletions src/images/confirmed-88.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 65 additions & 5 deletions src/images/copy-14-submit-400.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading