From 2c57b4cdb5b3977601ebe5a1698ea1fd5cd461e8 Mon Sep 17 00:00:00 2001 From: Minimons Date: Sun, 5 Jul 2026 12:11:41 +0200 Subject: [PATCH] X: Add new `CustodyAccountInfo` class --- .../perps/impl/anchoridl/CustodyAccountInfo.tjava | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/main/tjava/com/r35157/libs/jupiter/perps/impl/anchoridl/CustodyAccountInfo.tjava diff --git a/src/main/tjava/com/r35157/libs/jupiter/perps/impl/anchoridl/CustodyAccountInfo.tjava b/src/main/tjava/com/r35157/libs/jupiter/perps/impl/anchoridl/CustodyAccountInfo.tjava new file mode 100644 index 0000000..b6cb2ec --- /dev/null +++ b/src/main/tjava/com/r35157/libs/jupiter/perps/impl/anchoridl/CustodyAccountInfo.tjava @@ -0,0 +1,9 @@ +package com.r35157.libs.jupiter.perps.impl.anchoridl; + +import java.math.BigInteger; + +public record CustodyAccountInfo( + ΩSPLMintAddressΩ mintAddress, + BigInteger currentCumulativeInterestRate +) { +}