@wireio/stake 2.4.1 → 2.4.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/lib/stake.browser.js +2 -2
- package/lib/stake.browser.js.map +1 -1
- package/lib/stake.d.ts +1 -1
- package/lib/stake.js +2 -2
- package/lib/stake.js.map +1 -1
- package/lib/stake.m.js +2 -2
- package/lib/stake.m.js.map +1 -1
- package/package.json +1 -1
- package/src/networks/solana/solana.ts +2 -2
package/lib/stake.browser.js
CHANGED
|
@@ -16988,9 +16988,9 @@ const _SolanaStakingClient = class _SolanaStakingClient {
|
|
|
16988
16988
|
throw err;
|
|
16989
16989
|
}
|
|
16990
16990
|
}
|
|
16991
|
-
async getPendingWithdraws() {
|
|
16991
|
+
async getPendingWithdraws(address) {
|
|
16992
16992
|
this.ensureUser();
|
|
16993
|
-
const owner = this.squadsVaultPDA ?? this.anchor.wallet.publicKey;
|
|
16993
|
+
const owner = address ?? this.squadsVaultPDA ?? this.anchor.wallet.publicKey;
|
|
16994
16994
|
return await this.convertClient.fetchWithdrawReceipts(owner);
|
|
16995
16995
|
}
|
|
16996
16996
|
async claimWithdraw(tokenId) {
|