bet-test-sdk 1.3.7 → 1.3.8

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.
@@ -19410,6 +19410,12 @@ class BetSDK {
19410
19410
  .transaction());
19411
19411
  return transaction;
19412
19412
  }
19413
+ getFeeStoreAccount() {
19414
+ const [feeStoreAccount] = PublicKey.findProgramAddressSync([
19415
+ Buffer.from(FEE_STORE_SEED)
19416
+ ], this.program.programId);
19417
+ return feeStoreAccount;
19418
+ }
19413
19419
  getFeeRecivedAccount() {
19414
19420
  const [feeRecivedAccount] = PublicKey.findProgramAddressSync([
19415
19421
  Buffer.from(FEE_RECIVED_ACCOUNT_SEED)