@solana/accounts
Advanced tools
Comparing version 2.0.0-experimental.34c3228 to 2.0.0-experimental.356279e
import type { Address } from '@solana/addresses'; | ||
import type { Commitment, Rpc, Slot } from '@solana/rpc-types'; | ||
import type { Rpc } from '@solana/rpc-spec'; | ||
import type { Commitment, Slot } from '@solana/rpc-types'; | ||
import type { MaybeAccount, MaybeEncodedAccount } from './maybe-account.js'; | ||
@@ -4,0 +5,0 @@ import type { GetAccountInfoApi, GetMultipleAccountsApi } from './rpc-api/index.js'; |
import type { Address } from '@solana/addresses'; | ||
import type { AccountInfoBase, AccountInfoWithBase58Bytes, AccountInfoWithBase58EncodedData, AccountInfoWithBase64EncodedData } from '@solana/rpc-types'; | ||
import type { Account, EncodedAccount } from './account.js'; | ||
import { MaybeAccount, MaybeEncodedAccount } from './maybe-account.js'; | ||
import type { AccountInfoBase, AccountInfoWithBase58Bytes, AccountInfoWithBase58EncodedData, AccountInfoWithBase64EncodedData, JsonParsedDataResponse } from './rpc-api/index.js'; | ||
import type { MaybeAccount, MaybeEncodedAccount } from './maybe-account.js'; | ||
import type { JsonParsedDataResponse } from './rpc-api/index.js'; | ||
type Base64EncodedRpcAccount = AccountInfoBase & AccountInfoWithBase64EncodedData; | ||
@@ -6,0 +7,0 @@ /** Parse an account object received from a base64-encoded RPC call into an EncodedAccount or MaybeEncodedAccount type. */ |
@@ -1,34 +0,2 @@ | ||
import { Address } from '@solana/addresses'; | ||
import type { Base58EncodedBytes, Base58EncodedDataResponse, Base64EncodedDataResponse, Base64EncodedZStdCompressedDataResponse, LamportsUnsafeBeyond2Pow53Minus1, U64UnsafeBeyond2Pow53Minus1 } from '@solana/rpc-types'; | ||
export type DataSlice = Readonly<{ | ||
offset: number; | ||
length: number; | ||
}>; | ||
export type AccountInfoBase = Readonly<{ | ||
/** indicates if the account contains a program (and is strictly read-only) */ | ||
executable: boolean; | ||
/** number of lamports assigned to this account */ | ||
lamports: LamportsUnsafeBeyond2Pow53Minus1; | ||
/** pubkey of the program this account has been assigned to */ | ||
owner: Address; | ||
/** the epoch at which this account will next owe rent */ | ||
rentEpoch: U64UnsafeBeyond2Pow53Minus1; | ||
}>; | ||
/** @deprecated */ | ||
export type AccountInfoWithBase58Bytes = Readonly<{ | ||
data: Base58EncodedBytes; | ||
}>; | ||
/** @deprecated */ | ||
export type AccountInfoWithBase58EncodedData = Readonly<{ | ||
data: Base58EncodedDataResponse; | ||
}>; | ||
export type AccountInfoWithBase64EncodedData = Readonly<{ | ||
data: Base64EncodedDataResponse; | ||
}>; | ||
export type AccountInfoWithBase64EncodedZStdCompressedData = Readonly<{ | ||
data: Base64EncodedZStdCompressedDataResponse; | ||
}>; | ||
export type AccountInfoWithJsonData = Readonly<{ | ||
data: JsonParsedDataResponse | Base64EncodedDataResponse; | ||
}>; | ||
import type { U64UnsafeBeyond2Pow53Minus1 } from '@solana/rpc-types'; | ||
export type JsonParsedDataResponse<TData = object> = Readonly<{ | ||
@@ -35,0 +3,0 @@ program: string; |
import type { Address } from '@solana/addresses'; | ||
import type { Commitment, IRpcApiMethods, RpcResponse, Slot } from '@solana/rpc-types'; | ||
import { AccountInfoBase, AccountInfoWithBase58Bytes, AccountInfoWithBase58EncodedData, AccountInfoWithBase64EncodedData, AccountInfoWithBase64EncodedZStdCompressedData, AccountInfoWithJsonData, DataSlice } from './common.js'; | ||
type GetAccountInfoApiResponseBase = RpcResponse<AccountInfoBase | null>; | ||
import type { RpcApiMethods } from '@solana/rpc-spec'; | ||
import type { AccountInfoBase, AccountInfoWithBase58Bytes, AccountInfoWithBase58EncodedData, AccountInfoWithBase64EncodedData, AccountInfoWithBase64EncodedZStdCompressedData, AccountInfoWithJsonData, Commitment, DataSlice, Slot, SolanaRpcResponse } from '@solana/rpc-types'; | ||
type GetAccountInfoApiResponseBase = SolanaRpcResponse<AccountInfoBase | null>; | ||
type NestInRpcResponseOrNull<T> = Readonly<{ | ||
@@ -15,3 +15,3 @@ value: T | null; | ||
}>; | ||
export interface GetAccountInfoApi extends IRpcApiMethods { | ||
export interface GetAccountInfoApi extends RpcApiMethods { | ||
/** | ||
@@ -18,0 +18,0 @@ * Returns all information associated with the account of provided public key |
import type { Address } from '@solana/addresses'; | ||
import type { Commitment, IRpcApiMethods, RpcResponse, Slot } from '@solana/rpc-types'; | ||
import { AccountInfoBase, AccountInfoWithBase58EncodedData, AccountInfoWithBase64EncodedData, AccountInfoWithBase64EncodedZStdCompressedData, AccountInfoWithJsonData, DataSlice } from './common.js'; | ||
import type { RpcApiMethods } from '@solana/rpc-spec'; | ||
import type { AccountInfoBase, AccountInfoWithBase58EncodedData, AccountInfoWithBase64EncodedData, AccountInfoWithBase64EncodedZStdCompressedData, AccountInfoWithJsonData, Commitment, DataSlice, Slot, SolanaRpcResponse } from '@solana/rpc-types'; | ||
type GetMultipleAccountsApiResponseBase = AccountInfoBase | null; | ||
@@ -15,3 +15,3 @@ type GetMultipleAccountsApiCommonConfig = Readonly<{ | ||
}>; | ||
export interface GetMultipleAccountsApi extends IRpcApiMethods { | ||
export interface GetMultipleAccountsApi extends RpcApiMethods { | ||
/** | ||
@@ -24,3 +24,3 @@ * Returns the account information for a list of Pubkeys. | ||
encoding: 'base64'; | ||
}>): RpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase64EncodedData | null))[]>; | ||
}>): SolanaRpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase64EncodedData | null))[]>; | ||
getMultipleAccounts( | ||
@@ -30,3 +30,3 @@ /** An array of up to 100 Pubkeys to query */ | ||
encoding: 'base64+zstd'; | ||
}>): RpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase64EncodedZStdCompressedData | null))[]>; | ||
}>): SolanaRpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase64EncodedZStdCompressedData | null))[]>; | ||
getMultipleAccounts( | ||
@@ -36,3 +36,3 @@ /** An array of up to 100 Pubkeys to query */ | ||
encoding: 'jsonParsed'; | ||
}>): RpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithJsonData | null))[]>; | ||
}>): SolanaRpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithJsonData | null))[]>; | ||
getMultipleAccounts( | ||
@@ -42,8 +42,8 @@ /** An array of up to 100 Pubkeys to query */ | ||
encoding: 'base58'; | ||
}>): RpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase58EncodedData | null))[]>; | ||
}>): SolanaRpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase58EncodedData | null))[]>; | ||
getMultipleAccounts( | ||
/** An array of up to 100 Pubkeys to query */ | ||
addresses: Address[], config?: GetMultipleAccountsApiCommonConfig): RpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase64EncodedData | null))[]>; | ||
addresses: Address[], config?: GetMultipleAccountsApiCommonConfig): SolanaRpcResponse<(GetMultipleAccountsApiResponseBase & (AccountInfoWithBase64EncodedData | null))[]>; | ||
} | ||
export {}; | ||
//# sourceMappingURL=getMultipleAccounts.d.ts.map |
{ | ||
"name": "@solana/accounts", | ||
"version": "2.0.0-experimental.34c3228", | ||
"version": "2.0.0-experimental.356279e", | ||
"description": "Helpers for representing, fetching and decoding Solana accounts", | ||
@@ -49,6 +49,7 @@ "exports": { | ||
"dependencies": { | ||
"@solana/addresses": "2.0.0-experimental.34c3228", | ||
"@solana/codecs-core": "2.0.0-experimental.34c3228", | ||
"@solana/codecs-strings": "2.0.0-experimental.34c3228", | ||
"@solana/rpc-types": "2.0.0-experimental.34c3228" | ||
"@solana/addresses": "2.0.0-experimental.356279e", | ||
"@solana/codecs-core": "2.0.0-experimental.356279e", | ||
"@solana/codecs-strings": "2.0.0-experimental.356279e", | ||
"@solana/rpc-spec": "2.0.0-experimental.356279e", | ||
"@solana/rpc-types": "2.0.0-experimental.356279e" | ||
}, | ||
@@ -55,0 +56,0 @@ "bundlewatch": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
159831
5
827
+ Added@solana/addresses@2.0.0-experimental.356279e(transitive)
+ Added@solana/assertions@2.0.0-experimental.356279e(transitive)
+ Added@solana/codecs-core@2.0.0-experimental.356279e(transitive)
+ Added@solana/codecs-numbers@2.0.0-experimental.356279e(transitive)
+ Added@solana/codecs-strings@2.0.0-experimental.356279e(transitive)
+ Added@solana/rpc-spec@2.0.0-experimental.356279e(transitive)
+ Added@solana/rpc-spec-types@2.0.0-experimental.356279e(transitive)
+ Added@solana/rpc-types@2.0.0-experimental.356279e(transitive)
- Removed@solana/addresses@2.0.0-experimental.34c3228(transitive)
- Removed@solana/assertions@2.0.0-experimental.34c3228(transitive)
- Removed@solana/codecs-core@2.0.0-experimental.34c3228(transitive)
- Removed@solana/codecs-numbers@2.0.0-experimental.34c3228(transitive)
- Removed@solana/codecs-strings@2.0.0-experimental.34c3228(transitive)
- Removed@solana/rpc-types@2.0.0-experimental.34c3228(transitive)