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

Remove Edenia Nodes from endpoints config #1412

Merged
merged 3 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion hapi/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "eosiodashboard",
xavier506 marked this conversation as resolved.
Show resolved Hide resolved
"name": "antelopetools",
"version": "1.0.0",
"description": "Antelope Tools BackEnd",
"repository": "https://github.com/edenia/antelope-tools.git",
Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "eosiodashboard",
"name": "antelopetools",
"version": "v0.1.11",
"description": "Antelope Tools WebApp",
"repository": "https://github.com/edenia/antelope-tools.git",
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/config/general.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const disabledMenuItems = JSON.parse(
)
export const appVersion =
process.env.REACT_APP_VERSION.split('/').pop() || 'v1.0'
export const appName = process.env.REACT_APP_NAME || 'eosiodashboard'
xavier506 marked this conversation as resolved.
Show resolved Hide resolved
export const appName = process.env.REACT_APP_NAME || 'antelopetools'
export const networkLinks = process.env.REACT_APP_NETWORK_URL
? JSON.parse(process.env.REACT_APP_NETWORK_URL)
: []
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/config/ual.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Anchor } from 'ual-anchor'

const appName = process.env.REACT_APP_EOS_APP_NAME || 'eosiodashboard'
xavier506 marked this conversation as resolved.
Show resolved Hide resolved
const appName = process.env.REACT_APP_EOS_APP_NAME || 'antelopetools'
const network = {
chainId:
process.env.REACT_APP_EOS_CHAIN_ID ||
Expand Down
Loading