Skip to content

Commit 7504b53

Browse files
authored
solana: enable specifying rent payer in initial bid (#119)
1 parent 43ae9f0 commit 7504b53

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

solana/ts/src/matchingEngine/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1031,6 +1031,7 @@ export class MatchingEngineProgram {
10311031
const ixs = await this.placeInitialOfferCctpIx(
10321032
{
10331033
payer,
1034+
feePayer: signers[0]?.publicKey,
10341035
fastVaa,
10351036
auction,
10361037
fromRouterEndpoint,
@@ -1054,6 +1055,7 @@ export class MatchingEngineProgram {
10541055
async placeInitialOfferCctpIx(
10551056
accounts: {
10561057
payer: PublicKey;
1058+
feePayer?: PublicKey;
10571059
fastVaa: PublicKey;
10581060
offerToken?: PublicKey;
10591061
auction?: PublicKey;
@@ -1068,7 +1070,7 @@ export class MatchingEngineProgram {
10681070
): Promise<
10691071
[approveIx: TransactionInstruction, placeInitialOfferCctpIx: TransactionInstruction]
10701072
> {
1071-
const { payer, fastVaa } = accounts;
1073+
const { payer, feePayer, fastVaa } = accounts;
10721074

10731075
const { offerPrice } = args;
10741076

@@ -1122,7 +1124,7 @@ export class MatchingEngineProgram {
11221124
const placeInitialOfferCctpIx = await this.program.methods
11231125
.placeInitialOfferCctp(uint64ToBN(offerPrice))
11241126
.accounts({
1125-
payer,
1127+
payer: feePayer ?? payer,
11261128
transferAuthority,
11271129
custodian: this.checkedCustodianComposite(),
11281130
auctionConfig,

0 commit comments

Comments
 (0)