Skip to content

Commit

Permalink
Merge pull request #27 from phantasma-io/dev
Browse files Browse the repository at this point in the history
Update the RPC's and DNS
  • Loading branch information
TeknoPT authored Jan 25, 2024
2 parents 7f4f677 + d03f9b6 commit 4609e1b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phantasma-hub",
"version": "1.0.10",
"version": "1.0.11",
"private": true,
"scripts": {
"dev": "npm run version:update && vite dev --cors true",
Expand Down
6 changes: 3 additions & 3 deletions src/lib/Components/Dao/ManageDAO.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
export let organization_id: string;
export let organization: Organization | null;
let explorer_url = 'https://explorer.phantasma.io/address/';
let explorer_url = 'https://explorer.phantasma.info/address/';
const columnsDefault = [
{
name: 'ID',
Expand Down Expand Up @@ -145,9 +145,9 @@
function SetExplorerURL() {
if (_apiLink == TestnetURL) {
explorer_url = 'https://test-explorer.phantasma.io/address/';
explorer_url = 'https://test-explorer.phantasma.info/address/';
} else {
explorer_url = 'https://explorer.phantasma.io/address/';
explorer_url = 'https://explorer.phantasma.info/address/';
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Components/Footer/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{new Date().getFullYear() + ','}
made with <Icon icon="ant-design:heart-filled" /> by
<a
href="https://phantasma.io/"
href="https://phantasma.info/"
class="font-semibold text-slate-700 hover:underline"
target="_blank"
rel="noreferrer">Phantasma Contributors</a
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Icon from '@iconify/svelte';
</script>

<footer class="pt-4 ">
<footer class="pt-4">
<div class="w-full px-6 mx-auto">
<div class="flex flex-wrap items-center -mx-3 lg:justify-between">
<div class="w-full max-w-full px-3 mt-0 mb-6 shrink-0 lg:mb-0 lg:w-1/2 lg:flex-none">
Expand All @@ -27,7 +27,7 @@
</li>
<li class="nav-item">
<a
href="https://phantasma.io/"
href="https://phantasma.info/"
class="block px-4 pt-0 pb-1 font-normal transition-colors ease-soft-in-out text-sm text-slate-500"
target="_blank">Phantasma</a
>
Expand Down
8 changes: 4 additions & 4 deletions src/lib/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import { ethers } from 'ethers';
import moment from 'moment';

export const SimnetURL = 'http://127.0.0.1:7077/rpc';
export const TestnetURL = 'https://testnet.phantasma.io/rpc';
export const MainnetURL = 'https://bp1.phantasma.io/rpc';
export const TestnetURL = 'https://testnet.phantasma.info/rpc';
export const MainnetURL = 'https://pharpc1.phantasma.info/rpc';

export const SoftwareName = 'Phantasma Hub';
export const DefaultNetwork = 'testnet';
export const DefaultAPIURL = TestnetURL;

export const ExplorerURLMainnet = 'https://explorer.phantasma.io';
export const ExplorerURLTestnet = 'https://test-explorer.phantasma.io';
export const ExplorerURLMainnet = 'https://explorer.phantasma.info';
export const ExplorerURLTestnet = 'https://test-explorer.phantasma.info';
export const ExplorerURL = writable(ExplorerURLTestnet);

export const DateTimeFormat = moment.HTML5_FMT.DATETIME_LOCAL;
Expand Down
2 changes: 1 addition & 1 deletion static/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.0.10"
"version": "1.0.11"
}

0 comments on commit 4609e1b

Please sign in to comment.