89 lines
2.2 KiB
TypeScript
89 lines
2.2 KiB
TypeScript
import React from "react";
|
|
import { SignatureResult, TransactionInstruction } from "@solana/web3.js";
|
|
import { InstructionCard } from "../InstructionCard";
|
|
import { Address } from "components/common/Address";
|
|
import { Prune } from "./types";
|
|
|
|
export function PruneDetailsCard(props: {
|
|
ix: TransactionInstruction;
|
|
index: number;
|
|
result: SignatureResult;
|
|
info: Prune;
|
|
innerCards?: JSX.Element[];
|
|
childIndex?: number;
|
|
}) {
|
|
const { ix, index, result, info, innerCards, childIndex } = props;
|
|
|
|
return (
|
|
<InstructionCard
|
|
ix={ix}
|
|
index={index}
|
|
result={result}
|
|
title="Serum Program: Prune"
|
|
innerCards={innerCards}
|
|
childIndex={childIndex}
|
|
>
|
|
<tr>
|
|
<td>Program</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.programId} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Market</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.accounts.market} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Bids</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.accounts.bids} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Asks</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.accounts.asks} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Prune Authority</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.accounts.pruneAuthority} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Open Orders</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.accounts.openOrders} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Open Orders Owner</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.accounts.openOrdersOwner} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Event Queue</td>
|
|
<td className="text-lg-right">
|
|
<Address pubkey={info.accounts.eventQueue} alignRight link />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Iteration Limit</td>
|
|
<td className="text-lg-right">{info.data.limit}</td>
|
|
</tr>
|
|
</InstructionCard>
|
|
);
|
|
}
|