@triadxyz/triad-protocol 0.3.7-beta → 0.3.8-beta
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/stake.d.ts +2 -1
- package/dist/stake.js +1 -1
- package/package.json +1 -1
package/dist/stake.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="@coral-xyz/anchor/node_modules/@solana/web3.js" />
|
|
1
2
|
import { AnchorProvider, Program } from '@coral-xyz/anchor';
|
|
2
3
|
import { PublicKey } from '@solana/web3.js';
|
|
3
4
|
import { TriadProtocol } from './types/triad_protocol';
|
|
@@ -123,5 +124,5 @@ export default class Stake {
|
|
|
123
124
|
* @param nftName - Name of the nft
|
|
124
125
|
*
|
|
125
126
|
*/
|
|
126
|
-
claimStakeRewards({ wallet, stakeVault, nftName, collections, rank }: ClaimStakeRewardsArgs, options?: RpcOptions): Promise<
|
|
127
|
+
claimStakeRewards({ wallet, stakeVault, nftName, collections, rank }: ClaimStakeRewardsArgs, options?: RpcOptions): Promise<import("@solana/web3.js").Transaction>;
|
|
127
128
|
}
|
package/dist/stake.js
CHANGED