Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add verify command to verified build tab #396

Merged
merged 6 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
41 changes: 39 additions & 2 deletions app/components/account/VerifiedBuildCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ import { ExternalLink } from 'react-feather';

import { OsecRegistryInfo, useVerifiedProgramRegistry } from '@/app/utils/verified-builds';

import { Copyable } from '../common/Copyable';
import { LoadingCard } from '../common/LoadingCard';

export function VerifiedBuildCard({ data, pubkey }: { data: UpgradeableLoaderAccountData; pubkey: PublicKey }) {
const { data: registryInfo, isLoading } = useVerifiedProgramRegistry({
options: { suspense: true },
programAuthority: data.programData?.authority ? new PublicKey(data.programData.authority) : null,
programId: pubkey,
});
if (!data.programData) {
Expand Down Expand Up @@ -50,6 +52,7 @@ enum DisplayType {
String,
URL,
Date,
LongString,
}

type TableRow = {
Expand Down Expand Up @@ -84,6 +87,11 @@ const ROWS: TableRow[] = [
key: 'last_verified_at',
type: DisplayType.Date,
},
{
display: 'Verify Command',
key: 'verify_command',
type: DisplayType.LongString,
},
{
display: 'Repository URL',
key: 'repo_url',
Expand All @@ -100,7 +108,32 @@ function RenderEntry({ value, type }: { value: OsecRegistryInfo[keyof OsecRegist
</td>
);
case DisplayType.String:
return <td className="text-lg-end font-monospace" style={{whiteSpace: 'pre'}}>{value && (value as string).length > 1 ? value : '-'}</td>;
return (
<td className="text-lg-end font-monospace" style={{ whiteSpace: 'pre' }}>
{value && (value as string).length > 1 ? value : '-'}
</td>
);
case DisplayType.LongString:
return (
<td
className="text-lg-end font-monospace"
style={{
overflowWrap: 'break-word',
position: 'relative',
whiteSpace: 'pre-wrap',
wordWrap: 'break-word',
}}
>
{value && (value as string).length > 1 ? (
<>
<Copyable text={value as string}> </Copyable>
<span>{value}</span>
</>
) : (
'-'
)}
</td>
);
case DisplayType.URL:
if (isValidLink(value as string)) {
return (
Expand All @@ -120,7 +153,11 @@ function RenderEntry({ value, type }: { value: OsecRegistryInfo[keyof OsecRegist
</td>
);
case DisplayType.Date:
return <td className="text-lg-end font-monospace">{value && (value as string).length > 1 ? new Date(value as string).toUTCString() : '-'}</td>;
return (
<td className="text-lg-end font-monospace">
{value && (value as string).length > 1 ? new Date(value as string).toUTCString() : '-'}
</td>
);
default:
break;
}
Expand Down
2 changes: 1 addition & 1 deletion app/components/common/VerifiedProgramBadge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function VerifiedProgramBadge({
programData: ProgramDataAccountInfo;
pubkey: PublicKey;
}) {
const { isLoading, data: registryInfo } = useVerifiedProgramRegistry({ programId: pubkey });
const { isLoading, data: registryInfo } = useVerifiedProgramRegistry({ programAuthority: programData.authority ? new PublicKey(programData.authority) : null, programId: pubkey });
const verifiedBuildTabPath = useClusterPath({ pathname: `/address/${pubkey.toBase58()}/verified-build` });

const hash = hashProgramData(programData);
Expand Down
80 changes: 72 additions & 8 deletions app/utils/verified-builds.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import { sha256 } from '@noble/hashes/sha256';
import { PublicKey } from '@solana/web3.js';
import { Connection, PublicKey } from '@solana/web3.js';
import useSWRImmutable from 'swr/immutable';

import { useAnchorProgram } from '../providers/anchor';
import { useCluster } from '../providers/cluster';
import { ProgramDataAccountInfo } from '../validators/accounts/upgradeable-program';

const OSEC_REGISTRY_URL = 'https://verify.osec.io';
const VERIFY_PROGRAM_ID = 'verifycLy8mB96wd9wqq3WDXQwM4oU6r42Th37Db9fC';

export type OsecRegistryInfo = {
is_verified: boolean;
Expand All @@ -13,29 +16,90 @@ export type OsecRegistryInfo = {
executable_hash: string;
last_verified_at: string | null;
repo_url: string;
};

export type CheckedOsecRegistryInfo = {
explorer_hash: string;
verify_command: string;
};

export function useVerifiedProgramRegistry({
programId,
programAuthority,
options,
}: {
programId: PublicKey;
programAuthority: PublicKey | null;
options?: { suspense: boolean };
}) {
const { data, error, isLoading } = useSWRImmutable(
const { url: clusterUrl } = useCluster();
const connection = new Connection(clusterUrl);
Woody4618 marked this conversation as resolved.
Show resolved Hide resolved

const {
data: registryData,
error: registryError,
isLoading: isRegistryLoading,
} = useSWRImmutable(
`${programId.toBase58()}`,
async (programId: string) => {
return fetch(`${OSEC_REGISTRY_URL}/status/${programId}`).then(response => response.json());
const response = await fetch(`${OSEC_REGISTRY_URL}/status/${programId}`);
return response.json();
},
{ suspense: options?.suspense }
);
return { data: error ? null : (data as OsecRegistryInfo), isLoading };

const { program: accountAnchorProgram } = useAnchorProgram(VERIFY_PROGRAM_ID, connection.rpcEndpoint);

// Fetch the PDA derived from the program upgrade authority
// TODO: Add getting verifier pubkey from the security.txt as second option once implemented
const {
data: pdaData,
error: pdaError,
isLoading: isPdaLoading,
} = useSWRImmutable(
programAuthority && accountAnchorProgram ? `pda-${programId.toBase58()}` : null,
async () => {
const [pda] = PublicKey.findProgramAddressSync(
[Buffer.from('otter_verify'), programAuthority!.toBuffer(), programId.toBuffer()],
new PublicKey(VERIFY_PROGRAM_ID)
);
const pdaAccountInfo = await connection.getAccountInfo(pda);
if (!pdaAccountInfo || !pdaAccountInfo.data) {
console.log('PDA account info not found');
return null;
}
return accountAnchorProgram.coder.accounts.decode('buildParams', pdaAccountInfo.data);
},
{ suspense: options?.suspense }
);

const isLoading = isRegistryLoading || isPdaLoading;

if (registryError || pdaError) {
return { data: null, error: registryError || pdaError, isLoading };
}

// Create command from the args of the verify PDA
if (registryData && pdaData && !isLoading) {
const verifiedData = registryData as OsecRegistryInfo;
verifiedData.verify_command = `solana-verify verify-from-repo -um --program-id ${programId.toBase58()} ${
pdaData.gitUrl
Woody4618 marked this conversation as resolved.
Show resolved Hide resolved
} --commit-hash ${pdaData.commit}`;
Woody4618 marked this conversation as resolved.
Show resolved Hide resolved

// Add additional args if available, for example mount-path and --library-name
if (pdaData.args && pdaData.args.length > 0) {
const argsString = pdaData.args.join(' ');
verifiedData.verify_command += ` ${argsString}`;
}

return { data: verifiedData, isLoading };
}
if (registryData && pdaData == null && !isLoading) {
const verifiedData = registryData as OsecRegistryInfo;
verifiedData.verify_command = 'Program does not have a verify PDA uploaded.';
return { data: verifiedData, isLoading };
}

return { data: null, isLoading };
}

// Helper function to hash program data
export function hashProgramData(programData: ProgramDataAccountInfo): string {
const buffer = Buffer.from(programData.data[0], 'base64');
// Truncate null bytes at the end of the buffer
Expand Down
Loading