-
Notifications
You must be signed in to change notification settings - Fork 278
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
@@ -604,6 +625,7 @@ export class PythStakingClient { | |||
} | |||
|
|||
public async getClaimableRewards(stakeAccountPositions: PublicKey) { | |||
this.assertWallet(); |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does {} === undefined?
There was a problem hiding this comment.
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.
No description provided.