import React from "react"; import { SignatureResult, TransactionInstruction } from "@solana/web3.js"; import { InstructionCard } from "../InstructionCard"; import { Address } from "components/common/Address"; import { SettleFunds } from "./types"; export function SettleFundsDetailsCard(props: { ix: TransactionInstruction; index: number; result: SignatureResult; info: SettleFunds; innerCards?: JSX.Element[]; childIndex?: number; }) { const { ix, index, result, info, innerCards, childIndex } = props; return ( Program
Market
Open Orders
Open Orders Owner
Base Vault
Quote Vault
Base Wallet
Quote Wallet
Vault Signer
{info.accounts.referrerQuoteWallet && ( Referrer Quote Wallet
)} ); }