Skip to content

Commit b454fe1

Browse files
committed
Fix ARIO SDK functionality and clean up legacy code
- Re-enable ARIO SDK in gatewayService.js and SearchBar.vue - Remove temporary deployment disables that broke ArNS functionality - Remove unused components (Explorer.vue, UrlForm.vue) - Clean up unrelated tiny4vr directory and assets - Remove Simple Analytics script to avoid console errors - Update .gitignore to exclude test directories - Restore full Argo navigation functionality with 10,000+ ArNS domains Core Argo features now fully operational: ✅ ArNS domain resolution and autocomplete ✅ Wayfinder optimal gateway selection ✅ Undername support (mobile inline, desktop side panel) ✅ Multi-select filters (ArNS, Docs, Glossary) ✅ Transaction shortcuts and detection
1 parent 061c95e commit b454fe1

13 files changed

Lines changed: 20 additions & 617 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,5 @@ private-key*
4040
test-gateway.js
4141
test-visibility-refresh.html
4242
wallet-base64.txt
43+
test-dist/
44+
test-wallet/

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,19 @@
2424
alt=""
2525
referrerpolicy="no-referrer-when-downgrade"
2626
/></noscript>
27+
<!-- Simple Analytics removed to avoid ad-blocker conflicts -->
28+
<!-- Uncomment if needed for production analytics
29+
<script
30+
async
31+
defer
32+
src="https://scripts.simpleanalyticscdn.com/latest.js"
33+
></script>
34+
<noscript
35+
><img
36+
src="https://queue.simpleanalyticscdn.com/noscript.gif"
37+
alt=""
38+
referrerpolicy="no-referrer-when-downgrade"
39+
/></noscript>
40+
-->
2741
</body>
2842
</html>

src/assets/tiny4vr.png

-6.01 KB
Binary file not shown.

src/assets/vue.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/components/Explorer.vue

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/components/SearchBar.vue

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@ import { ref, computed, onMounted, watch, nextTick } from "vue";
33
import { debounce } from "lodash";
44
import { connect } from "@permaweb/aoconnect";
55
import { getOptimalGatewayHostname } from "../helpers/gatewayService";
6-
7-
// Temporarily disable ARIO SDK for deployment testing
8-
const getARIO = async () => {
9-
throw new Error("ArNS functionality temporarily disabled for deployment");
10-
};
6+
import { ARIO } from "@ar.io/sdk";
117
import { initializeDocs, searchDocs } from "../helpers/docsModule";
128
import { initializeGlossary, searchGlossary } from "../helpers/glossaryModule";
139

src/components/UrlForm.vue

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/helpers/gatewayService.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ import {
66
FastestPingRoutingStrategy,
77
NetworkGatewaysProvider,
88
} from "@ar.io/wayfinder-core";
9+
import { ARIO } from "@ar.io/sdk";
910

10-
// Temporarily disable ARIO SDK for deployment testing
11+
// Initialize ARIO for accessing AR.IO Network gateway data
1112
const getARIO = async () => {
12-
throw new Error("ArNS functionality temporarily disabled for deployment");
13+
return ARIO.mainnet();
1314
};
1415

1516
// State management

tiny4vr/src/assets/favicon.ico

-279 KB
Binary file not shown.

tiny4vr/src/assets/tiny4vr.png

-6.01 KB
Binary file not shown.

0 commit comments

Comments
 (0)