Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions ensawards.org/data/apps/bitunix-exchange/benchmarks/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying app benchmarks

import BitunixExchange from "data/apps/bitunix-exchange";
import { defineAppBenchmarks } from "data/benchmarks/registry";
import type { BestPracticeBenchmarks } from "data/ens-best-practices/types";

import depositAddresses from "./resolution/deposit-addresses";
import ensv2ReadyResolution from "./resolution/ensv2-ready-resolution";

const benchmarks: BestPracticeBenchmarks = {
"ensv2-ready-resolution": ensv2ReadyResolution,
"deposit-addresses": depositAddresses,
};

defineAppBenchmarks(BitunixExchange, benchmarks);

export default benchmarks;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying app benchmarks

import { type AcceptanceTestBenchmarks, BenchmarkResults } from "data/benchmarks/types";
import contributors from "data/contributors";
import {
buildEnsNotSupportedNote,
buildNotApplicableForFailedTest,
} from "data/ens-best-practices/resolution/deposit-addresses/notes";

import { parseTimestamp } from "@ensnode/ensnode-sdk";

import at1Proof from "./at-1.png";

const depositAddresses = {
"at01-resolve-onchain-name": {
result: BenchmarkResults.Fail,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildEnsNotSupportedNote({
method: 'the "withdrawal" flow',
proof: {
image: at1Proof,
alt: "Bitunix Exchange doesn't allow ENS names as the recipient in the withdrawal flow",
},
}),
},
"at02-resolve-name-needing-normalization": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at03-resolve-offchain-eth-subname": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at04-resolve-offchain-dns-name": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at05-resolve-name-on-other-evm-chain": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at06-resolve-bitcoin-address": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at07-resolve-solana-address": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at08-handle-invalid-address-format": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T11:00:51Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
} as const satisfies AcceptanceTestBenchmarks;

export default depositAddresses;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying app benchmarks

import type { AcceptanceTestBenchmark } from "data/acceptance-tests/types";
import type { AcceptanceTestBenchmarks } from "data/benchmarks/types";
import { BenchmarkResults } from "data/benchmarks/types";
import contributors from "data/contributors";
import { acceptanceTestDetailsContainerStyles } from "data/ens-best-practices/styles";

import { parseTimestamp } from "@ensnode/ensnode-sdk";

import { cn } from "@/utils/tailwindClassConcatenation";

import at1ProofImage from "./at-1.png";

const ensv2ReadyResolution = {
"correctly-resolve-ensv2-test-name-address": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T10:59:49Z") },
],
notes: (
<div className={cn(acceptanceTestDetailsContainerStyles, "w-full")}>
<p className="w-full">
ENSv2 ready resolution was tested using the &quot;withdrawal&quot; flow. The app doesn't
support the use of ENS names at all as the recipient identifier.
<br />
<br />
While that's a key issue that this app is encouraged to improve, this best practice is
applicable specifically to apps that already have an existing ENS integration and making
sure existing integrations are ENSv2 compatible. Therefore, for this best practice we
apply a rating of not applicable.
</p>
<img
alt="Bitunix exchange doesn't allow ENS name as recipient in the withdrawal flow"
src={at1ProofImage.src}
className="w-auto h-full max-h-[325px] rounded-xl"
/>
</div>
),
} as const satisfies AcceptanceTestBenchmark,
} as const satisfies AcceptanceTestBenchmarks;

export default ensv2ReadyResolution;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions ensawards.org/data/apps/bitunix-exchange/icon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from "react";

import { cn } from "@/utils/tailwindClassConcatenation";

import icon from "./icon.png";

const Icon = ({ className, ...props }: React.SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
className={cn("rounded-md", className)}
{...props}
>
<image href={icon.src} width="24" height="24" />
</svg>
);

export default Icon;
28 changes: 28 additions & 0 deletions ensawards.org/data/apps/bitunix-exchange/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying apps

import BitunixProject from "data/projects/bitunix";

import { defineApp } from "../registry.ts";
import { type App, AppTypes } from "../types.ts";
import BitunixIcon from "./icon.tsx";

const BitunixExchange: App = {
id: "bitunix-exchange",
appSlug: "bitunix-exchange",
type: AppTypes.Exchange,
project: BitunixProject,
name: "Bitunix",
description:
"Cryptocurrency exchange centered on perpetual futures and spot trading, with copy trading and earn products for putting idle assets to work.",
socials: {
website: new URL("https://www.bitunix.com"),
twitter: new URL("https://x.com/BitunixOfficial"),
},
icon: BitunixIcon,
// TODO: Add OG images
};

defineApp(BitunixExchange);

export default BitunixExchange;
18 changes: 18 additions & 0 deletions ensawards.org/data/apps/ourbit-exchange/benchmarks/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying app benchmarks

import OurbitExchange from "data/apps/ourbit-exchange";
import { defineAppBenchmarks } from "data/benchmarks/registry";
import type { BestPracticeBenchmarks } from "data/ens-best-practices/types";

import depositAddresses from "./resolution/deposit-addresses";
import ensv2ReadyResolution from "./resolution/ensv2-ready-resolution";

const benchmarks: BestPracticeBenchmarks = {
"ensv2-ready-resolution": ensv2ReadyResolution,
"deposit-addresses": depositAddresses,
};

defineAppBenchmarks(OurbitExchange, benchmarks);

export default benchmarks;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying app benchmarks

import { type AcceptanceTestBenchmarks, BenchmarkResults } from "data/benchmarks/types";
import contributors from "data/contributors";
import {
buildEnsNotSupportedNote,
buildNotApplicableForFailedTest,
} from "data/ens-best-practices/resolution/deposit-addresses/notes";

import { parseTimestamp } from "@ensnode/ensnode-sdk";

import at1Proof from "./at-1.png";

const depositAddresses = {
"at01-resolve-onchain-name": {
result: BenchmarkResults.Fail,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildEnsNotSupportedNote({
method: 'the "Address management" feature',
proof: {
image: at1Proof,
alt: "Ourbit Exchange doesn't allow ENS names as the recipient in the Address management feature",
},
}),
},
"at02-resolve-name-needing-normalization": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at03-resolve-offchain-eth-subname": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at04-resolve-offchain-dns-name": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at05-resolve-name-on-other-evm-chain": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at06-resolve-bitcoin-address": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at07-resolve-solana-address": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
"at08-handle-invalid-address-format": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:10:50Z") },
],
notes: buildNotApplicableForFailedTest({ testNumber: 1 }),
},
} as const satisfies AcceptanceTestBenchmarks;

export default depositAddresses;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying app benchmarks

import type { AcceptanceTestBenchmark } from "data/acceptance-tests/types";
import type { AcceptanceTestBenchmarks } from "data/benchmarks/types";
import { BenchmarkResults } from "data/benchmarks/types";
import contributors from "data/contributors";
import { acceptanceTestDetailsContainerStyles } from "data/ens-best-practices/styles";

import { parseTimestamp } from "@ensnode/ensnode-sdk";

import { cn } from "@/utils/tailwindClassConcatenation";

import correctlyResolveEnsv2TestNameAddressProofImage from "./at-1.png";

const ensv2ReadyResolution = {
"correctly-resolve-ensv2-test-name-address": {
result: BenchmarkResults.NotApplicable,
contributions: [
{ from: contributors.y3drk, lastUpdated: parseTimestamp("2026-07-01T14:05:52Z") },
],
notes: (
<div className={cn(acceptanceTestDetailsContainerStyles, "w-full")}>
<p className="w-full">
ENSv2 ready resolution was tested using the &quot;Address management&quot; feature. The
app doesn't support the use of ENS names at all as the recipient identifier.
<br />
<br />
While that's a key issue that this app is encouraged to improve, this best practice is
applicable specifically to apps that already have an existing ENS integration and making
sure existing integrations are ENSv2 compatible. Therefore, for this best practice we
apply a rating of not applicable.
</p>
<img
alt="Ourbit exchange doesn't allow ENS name as recipient in the Address management feature"
src={correctlyResolveEnsv2TestNameAddressProofImage.src}
className="w-auto h-full max-h-[325px] rounded-xl"
/>
</div>
),
} as const satisfies AcceptanceTestBenchmark,
} as const satisfies AcceptanceTestBenchmarks;

export default ensv2ReadyResolution;
27 changes: 27 additions & 0 deletions ensawards.org/data/apps/ourbit-exchange/icon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import React from "react";

import { cn } from "@/utils/tailwindClassConcatenation";

const Icon = ({ className, ...props }: React.SVGProps<SVGSVGElement>) => (
<svg
width="24"
height="24"
viewBox="-1.5 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={cn("p-1", className)}
{...props}
>
<path d="M14 2L10.5 0L6.99999 2L10.5 4L14 2Z" fill="#079A4B" />
<path
d="M1.50898e-06 6L3.49999 4L7 6.00001L3.5 8L3.5 16L10.5 20L17.5 16V8L14 6L17.5 4L21 6L21 18L10.5 24L0 18L1.50898e-06 6Z"
fill="#079A4B"
/>
<path
d="M13.978 14.0126V10.0126L10.478 8.01257L6.97795 10.0126V14.0126L10.478 16.0126L13.978 14.0126Z"
fill="#079A4B"
/>
</svg>
);

export default Icon;
28 changes: 28 additions & 0 deletions ensawards.org/data/apps/ourbit-exchange/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Read https://github.com/namehash/ensawards/blob/main/CONTRIBUTING.md
// for additional advice on adding and modifying apps

import OurbitProject from "data/projects/ourbit";

import { defineApp } from "../registry.ts";
import { type App, AppTypes } from "../types.ts";
import OurbitIcon from "./icon.tsx";

const OurbitExchange: App = {
id: "ourbit-exchange",
appSlug: "ourbit-exchange",
type: AppTypes.Exchange,
project: OurbitProject,
name: "Ourbit",
description:
"Cryptocurrency exchange offering spot and futures trading, copy trading, and earn products for growing a broad range of digital assets.",
socials: {
website: new URL("https://www.ourbit.com"),
twitter: new URL("https://x.com/ourbit"),
},
icon: OurbitIcon,
// TODO: Add OG images
};

defineApp(OurbitExchange);

export default OurbitExchange;
Loading
Loading