import React from "react"; import { SignatureResult, TransactionInstruction } from "@solana/web3.js"; import { InstructionCard } from "../InstructionCard"; import { Address } from "components/common/Address"; import { CreateBot } from "./types"; export function CreateBotDetailsCard(props: { ix: TransactionInstruction; index: number; result: SignatureResult; info: CreateBot; innerCards?: JSX.Element[]; childIndex?: number; }) { const { ix, index, result, info, innerCards, childIndex } = props; return ( Program
Bot Token Mint
Bot Address
Target Pool Token Address
Serum Program ID
Signal Provider Address
Pool Seed {info.poolSeed} Fee Ratio {info.feeRatio} Fee Collection Period {info.feeCollectionPeriod} Serum Markets {info.markets} Deposit Amounts {info.depositAmounts} ); }