65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import React from "react";
|
|
import {
|
|
SystemProgram,
|
|
SignatureResult,
|
|
ParsedInstruction,
|
|
} from "@solana/web3.js";
|
|
import { InstructionCard } from "../InstructionCard";
|
|
import { Copyable } from "components/common/Copyable";
|
|
import { Address } from "components/common/Address";
|
|
|
|
export function AssignWithSeedDetailsCard(props: {
|
|
ix: ParsedInstruction;
|
|
index: number;
|
|
result: SignatureResult;
|
|
info: any;
|
|
}) {
|
|
const { ix, index, result, info } = props;
|
|
|
|
return (
|
|
<InstructionCard
|
|
ix={ix}
|
|
index={index}
|
|
result={result}
|
|
title="Assign Account w/ Seed"
|
|
>
|
|
<tr>
|
|
<td>Program</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={SystemProgram.programId} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Account Address</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.account} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Base Address</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.base} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Seed</td>
|
|
<td className="text-lg-right">
|
|
<Copyable right text={info.seed}>
|
|
<code>{info.seed}</code>
|
|
</Copyable>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Assigned Owner</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.owner} alignRight link />
|
|
</td>
|
|
</tr>
|
|
</InstructionCard>
|
|
);
|
|
}
|