Skip to content

feat(staking): make wallet optional in staking sdk #1932

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 18, 2024
Merged

Conversation

keyvankhademi
Copy link
Contributor

No description provided.

Copy link

vercel bot commented Sep 18, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
api-reference ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 18, 2024 9:01pm
pyth-staking-v2-mainnet ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 18, 2024 9:01pm
staking-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 18, 2024 9:01pm
1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
xc-admin-frontend ⬜️ Ignored (Inspect) Visit Preview Sep 18, 2024 9:01pm

@@ -604,6 +625,7 @@ export class PythStakingClient {
}

public async getClaimableRewards(stakeAccountPositions: PublicKey) {
this.assertWallet();
Copy link
Contributor

@guibescos guibescos Sep 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this one require a wallet?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's using this.wallet.publicKey but since it's only the simulation i think we can replace this with any pubkey.

this.provider = new AnchorProvider(this.connection, this.wallet, {

// {} as AnchorWallet is a workaround for AnchorProvider requiring a wallet
this.provider = new AnchorProvider(this.connection, this.wallet ?? {} as AnchorWallet, {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does {} === undefined?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no, but the check is for this.wallet not the {} in the provider.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants