Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
21 changes: 9 additions & 12 deletions .github/workflows/publish-docker-image-every-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ name: Publish Docker image on every push to master branch
on:
push:
branches:
- testThis
- test
- main
- master
pull_request:

env:
OTP_VERSION: '24.3.4.1'
ELIXIR_VERSION: '1.13.4'
Expand Down Expand Up @@ -36,7 +41,7 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: blockscout/blockscout
images: backstoptechnology/blockscout

- name: Add SHORT_SHA env property with commit short sha
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
Expand All @@ -53,9 +58,9 @@ jobs:
context: .
file: ./docker/Dockerfile
push: true
cache-from: type=registry,ref=blockscout/blockscout:buildcache
cache-to: type=registry,ref=blockscout/blockscout:buildcache,mode=max
tags: blockscout/blockscout:latest, blockscout/blockscout:${{ env.NEXT_RELEASE_VERSION }}-prerelease-${{ env.SHORT_SHA }}
cache-from: type=registry,ref=backstoptechnology/blockscout:buildcache
cache-to: type=registry,ref=backstoptechnology/blockscout:buildcache,mode=max
tags: backstoptechnology/blockscout:latest, backstoptechnology/blockscout:${{ env.NEXT_RELEASE_VERSION }}-prerelease-${{ env.SHORT_SHA }}
build-args: |
CACHE_EXCHANGE_RATES_PERIOD=
DISABLE_READ_API=false
Expand All @@ -70,11 +75,3 @@ jobs:
DISABLE_BRIDGE_MARKET_CAP_UPDATER=false
CACHE_BRIDGE_MARKET_CAP_UPDATE_INTERVAL=
SOCKET_ROOT=
tests:
needs: push_to_registry
uses: blockscout/blockscout-ci-cd/.github/workflows/e2e_k8s.yaml@master
with:
blockscout_image: blockscout/blockscout:${{ needs.push_to_registry.outputs.release-version }}-prerelease-${{ needs.push_to_registry.outputs.short-sha }}
environment: 'test'
verification_image: 'ghcr.io/blockscout/verification:latest'
secrets: inherit
78 changes: 19 additions & 59 deletions apps/block_scout_web/assets/static/images/blockscout_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/block_scout_web/assets/static/images/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/block_scout_web/assets/static/images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/block_scout_web/assets/static/images/favicon.ico
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
<footer class="footer">
<div class="footer-body container">
<!-- Logo -->
<div class="row footer-logo-row">
<div class="col-md-12">
<%= link to: webapp_url(@conn), class: "footer-brand" do %>
<%= if logo_footer() do %>
<img class="footer-logo" src="<%= static_path(@conn, logo_footer()) %>" alt="<%= subnetwork_title() %>" />
<% end %>
<%= if logo_text() do %>
<span class="logo-text in-footer <%= unless logo_footer(), do: "no-logo" %>"> <%= logo_text() %> </span>
<% end %>
<% end %>
</div>
</div>

<% other_explorers = other_explorers() %>
<% col_size = if Enum.empty?(other_explorers), do: 3, else: 2 %>
Expand All @@ -21,13 +8,13 @@
<div class="col-xs-12 col-lg-3">
<p class="footer-info-text"><%= gettext("Blockscout is a tool for inspecting and analyzing EVM based blockchains. Blockchain explorer for Ethereum Networks.") %></p>
<div class="footer-social-icons">
<a href="https://github.com/0xPolygonHermez" rel="noreferrer" target="_blank" class="footer-social-icon" title='<%= gettext("Github") %>'>
<a href="https://github.com/RealityETH/subjectivocracy" rel="noreferrer" target="_blank" class="footer-social-icon" title='<%= gettext("Github") %>'>
<div class="footer-social-icon-container fontawesome-icon github"></div>
</a>
<a href="https://twitter.com/0xPolygon" rel="noreferrer" target="_blank" class="footer-social-icon" title='<%= gettext("Twitter") %>'>
<a href="https://twitter.com/backstoptechi" rel="noreferrer" target="_blank" class="footer-social-icon" title='<%= gettext("Twitter") %>'>
<div class="footer-social-icon-container fontawesome-icon twitter"></div>
</a>
<a href="https://t.me/polygonhermezchat" rel="noreferrer" target="_blank" class="footer-social-icon" title='<%= gettext("Telegram") %>'>
<a href="https://t.me/+lc3cj2kzDog5Mjll" rel="noreferrer" target="_blank" class="footer-social-icon" title='<%= gettext("Telegram") %>'>
<div class="footer-social-icon-container fontawesome-icon telegram"></div>
</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ msgstr ""
#: lib/block_scout_web/templates/layout/_footer.html.eex:22
#, elixir-autogen, elixir-format
msgid "Blockscout is a tool for inspecting and analyzing EVM based blockchains. Blockchain explorer for Ethereum Networks."
msgstr "Polygon zkEVM is the first source code available zk-Rollup providing complete EVM opcode equivalence for a frictionless user experience and the security of Ethereum."
msgstr "Backstop protocol is the first forkable L2 that is able to provide security to all applications by esclating to a fork"

#: lib/block_scout_web/templates/block/_tile.html.eex:64
#: lib/block_scout_web/templates/block/overview.html.eex:216
Expand Down
4 changes: 3 additions & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
SYSTEM := $(shell uname -s)
HOST := host.docker.internal
DOCKER_REPO := hermeznetwork
DOCKER_REPO := backstoptechnology
DOCKER_USERNAME := backstoptechnology
APP_NAME := zkevm-explorer
BS_CONTAINER_IMAGE := $(DOCKER_REPO)/$(APP_NAME)
BS_CONTAINER_NAME := blockscout
PG_CONTAINER_IMAGE := postgres:14
PG_CONTAINER_NAME := db
LOGO := /Users/josojo/coding/forks/backstop-media-assets/logo/best_logo.png
THIS_FILE = $(lastword $(MAKEFILE_LIST))
TAG := $(RELEASE_VERSION)-prerelease-$(shell git log -1 --pretty=format:"%h")
STABLE_TAG := $(RELEASE_VERSION)
Expand Down