Skip to content

Commit 3d663e4

Browse files
committed
chore: update build
1 parent b1becba commit 3d663e4

File tree

4 files changed

+55
-10
lines changed

4 files changed

+55
-10
lines changed

dist/solana/SolanaManager.d.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,23 @@ export declare class SolanaManager {
2828
* Get the current signer
2929
*/
3030
get signer(): Keypair | null;
31+
/**
32+
* Get account info for a given address
33+
* @param address - The public key or address string
34+
*/
35+
accountInfo(address: PublicKey | string): import("../types/query.js").Query<import("@solana/web3.js").AccountInfo<Buffer> | null>;
3136
/**
3237
* Get the balance of a Solana account in lamports
3338
* @param address - The public key or address string
3439
*/
3540
balance(address: PublicKey | string): import("../types/query.js").Query<number>;
3641
/**
37-
* Get account info for a given address
38-
* @param address - The public key or address string
42+
* Get the USDC balance for a given Solana wallet address
43+
* Returns the balance as a Balance object
44+
* @param address - The wallet's public key or address string
45+
* @returns Observable that emits the USDC balance
3946
*/
40-
accountInfo(address: PublicKey | string): import("../types/query.js").Query<import("@solana/web3.js").AccountInfo<Buffer> | null>;
47+
usdcBalance(address: PublicKey | string): import("../types/query.js").Query<Balance>;
4148
/**
4249
* Transfer SOL from the signer to another account
4350
* Returns an observable that emits transaction status updates

dist/solana/SolanaManager.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/solana/SolanaManager.js

Lines changed: 43 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)