Skip to content

Commit fbb1fc4

Browse files
authoredNov 21, 2024··
Merge pull request #22 from GalaxyPay/dev
fnet catchpoint lookup
2 parents 981ce52 + 8cf144c commit fbb1fc4

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed
 

‎.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ jobs:
5858
uses: ncipollo/release-action@v1
5959
with:
6060
allowUpdates: true
61-
tag: v1.3.2
61+
tag: v1.3.3
6262
artifacts: "Output\\AvmWinNode_*_Setup.exe"

‎AvmWinNode.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "AvmWinNode"
5-
#define MyAppVersion "1.3.2"
5+
#define MyAppVersion "1.3.3"
66
#define MyAppPublisher "Galaxy Pay, LLC"
77
#define MyAppPublisherURL "https://galaxy-pay.com"
88
#define MyPublishPath "publish"

‎webui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "avm-win-node-webui",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"scripts": {
55
"dev": "vite",
66
"build": "vue-tsc --noEmit && vite build",

‎webui/src/utils.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function getCatchpoint(name: string): Promise<string | undefined> {
3232
const MAINNET_URL =
3333
"https://afmetrics.api.nodely.io/v1/delayed/catchup/label/current";
3434
const VOIMAIN_URL = "https://mainnet-api.voi.nodely.dev/v2/status";
35-
// const FNET_URL = "https://fnet-api.4160.nodely.io/v2/status";
35+
const FNET_URL = "https://fnet-catchpoints.algorand.green/latest";
3636

3737
switch (name) {
3838
case "Algorand": {
@@ -44,9 +44,8 @@ async function getCatchpoint(name: string): Promise<string | undefined> {
4444
return resp.data["last-catchpoint"];
4545
}
4646
case "FNet": {
47-
// const resp = await axios({ url: FNET_URL });
48-
// return resp.data["last-catchpoint"];
49-
return "2520000#PRWW73GNIFJFFDLXQZRIC2HV2TXDCW6C6L4VLUBD26K5FBOV3FOA";
47+
const resp = await axios({ url: FNET_URL });
48+
return resp.data.trim();
5049
}
5150
}
5251
}

0 commit comments

Comments
 (0)
Please sign in to comment.