@theliem/xmarket-sdk 4.0.1 → 4.0.2

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/dist/index.d.mts CHANGED
@@ -138,7 +138,7 @@ interface CtfConfig {
138
138
  bump: number;
139
139
  }
140
140
  interface ClobConfig {
141
- owner: PublicKey;
141
+ admin: PublicKey;
142
142
  operators: PublicKey[];
143
143
  operatorsLen: number;
144
144
  feeRecipient: PublicKey;
package/dist/index.d.ts CHANGED
@@ -138,7 +138,7 @@ interface CtfConfig {
138
138
  bump: number;
139
139
  }
140
140
  interface ClobConfig {
141
- owner: PublicKey;
141
+ admin: PublicKey;
142
142
  operators: PublicKey[];
143
143
  operatorsLen: number;
144
144
  feeRecipient: PublicKey;
package/dist/index.js CHANGED
@@ -2936,7 +2936,7 @@ ${logs.join("\n")}`);
2936
2936
  try {
2937
2937
  const acc = await this.program.account.clobConfig.fetch(this.configPda());
2938
2938
  return {
2939
- owner: acc.owner,
2939
+ admin: acc.admin,
2940
2940
  operators: acc.operators,
2941
2941
  operatorsLen: acc.operatorsLen,
2942
2942
  feeRecipient: acc.feeRecipient,