@epicentral/sos-sdk 0.2.10 → 0.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.ts CHANGED
@@ -34,3 +34,5 @@ export {
34
34
  getCreateAssociatedTokenIdempotentInstructionWithAddress,
35
35
  NATIVE_MINT,
36
36
  } from "./wsol/instructions";
37
+
38
+ export { getCreateEscrowV2InstructionAsync } from "./generated/instructions/createEscrowV2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epicentral/sos-sdk",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "private": false,
5
5
  "description": "Solana Option Standard SDK. The frontend-first SDK for Native Options Trading on Solana. Created by Epicentral Labs.",
6
6
  "type": "module",
package/short/builders.ts CHANGED
@@ -200,6 +200,7 @@ export interface BuildOptionMintTransactionWithDerivationParams {
200
200
  makerCollateralAmount: bigint | number;
201
201
  borrowedAmount: bigint | number;
202
202
  maker: AddressLike;
203
+ /** Optional. When omitted, the SDK derives the maker's collateral ATA for underlyingMint. */
203
204
  makerCollateralAccount?: AddressLike;
204
205
  rpc: KitRpc;
205
206
  programId?: AddressLike;