@coinbase/cdp-sdk
Version:
SDK for interacting with the Coinbase Developer Platform Wallet API
20 lines • 547 B
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>;
//# sourceMappingURL=types.d.ts.map