File tree 4 files changed +6
-7
lines changed
4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 58
58
uses : ncipollo/release-action@v1
59
59
with :
60
60
allowUpdates : true
61
- tag : v1.3.2
61
+ tag : v1.3.3
62
62
artifacts : " Output\\ AvmWinNode_*_Setup.exe"
Original file line number Diff line number Diff line change 2
2
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
3
4
4
#define MyAppName " AvmWinNode"
5
- #define MyAppVersion " 1.3.2 "
5
+ #define MyAppVersion " 1.3.3 "
6
6
#define MyAppPublisher " Galaxy Pay, LLC"
7
7
#define MyAppPublisherURL " https://galaxy-pay.com"
8
8
#define MyPublishPath " publish"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " avm-win-node-webui" ,
3
- "version" : " 1.3.2 " ,
3
+ "version" : " 1.3.3 " ,
4
4
"scripts" : {
5
5
"dev" : " vite" ,
6
6
"build" : " vue-tsc --noEmit && vite build" ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ async function getCatchpoint(name: string): Promise<string | undefined> {
32
32
const MAINNET_URL =
33
33
"https://afmetrics.api.nodely.io/v1/delayed/catchup/label/current" ;
34
34
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 " ;
36
36
37
37
switch ( name ) {
38
38
case "Algorand" : {
@@ -44,9 +44,8 @@ async function getCatchpoint(name: string): Promise<string | undefined> {
44
44
return resp . data [ "last-catchpoint" ] ;
45
45
}
46
46
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 ( ) ;
50
49
}
51
50
}
52
51
}
You can’t perform that action at this time.
0 commit comments