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 ( Program
Account Address
Base Address
Seed {info.seed} Assigned Owner
); }