@coinbase/cdp-sdk
Version:
SDK for interacting with the Coinbase Developer Platform Wallet API
23 lines (19 loc) • 515 B
text/typescript
/**
* @module Accounts
*/
import { AccountActions } from "../../actions/solana/types.js";
import { SolanaAccount as OpenAPISolanaAccount } from "../../openapi-client/index.js";
import { Prettify } from "../../types/utils.js";
/**
* A base Solana account.
*
* @internal
*/
export type Account = OpenAPISolanaAccount;
/**
* A Solana account with actions.
*
* @see {@link OpenAPISolanaAccount}
* @see {@link AccountActions}
*/
export type SolanaAccount = Prettify<OpenAPISolanaAccount & AccountActions>;