Arkiv Verification
Live entity counts and explorer links — all data from Braga testnet
Connect your wallet to see your entities
Live Arkiv SDK Query
import { createPublicClient, http } from "@arkiv-network/sdk";
import { braga } from "@arkiv-network/sdk/chains";
import { eq } from "@arkiv-network/sdk/query";
const client = createPublicClient({ chain: braga, transport: http() });
const result = await client
.buildQuery()
.where([
eq("app", "exo:v1"),
eq("type", "semantic"),
])
.ownedBy("0xYOUR_WALLET")
.withPayload(true)
.withAttributes(true)
.limit(50)
.fetch();
console.log(result.entities);