Skip to content

Commit

Permalink
update rpc / explorer, bump version & payload
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentgeneste committed Jan 26, 2024
1 parent a2c24cb commit 8bb8bd6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ecto",
"version": "1.5.4",
"version": "1.5.5",
"private": true,
"scripts": {
"build": "vue-cli-service build",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.development.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.5.4",
"version": "1.5.5",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.5.4",
"version": "1.5.5",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
Expand Down
4 changes: 2 additions & 2 deletions src/popup/PopupState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export interface NexusData<T> {

export class PopupState {
api = new PhantasmaAPI(
"http://pharpc1.phantasma.io:7077/rpc",
"https://pharpc1.phantasma.info/rpc",
"https://peers.phantasma.io/mainnet-getpeers.json"
);

Expand Down Expand Up @@ -115,7 +115,7 @@ export class PopupState {

allSwaps: Swap[] = [];

payload = "4543542d312e352e34";
payload = "4543542d312e352e35";

gasPrice = 100000;
gasLimit = 500000;
Expand Down
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ export default class extends Vue {
? "http://testnet.phantasma.io/tx/"
: state.nexus == "simnet"
? "https://localhost:7088/"
: "https://ngexplorer.phantasma.io/en/transaction?id=") + hash
: "https://explorer.phantasma.info/en/transaction?id=") + hash
);
}
Expand Down

0 comments on commit 8bb8bd6

Please sign in to comment.