npm npm-downloads
code-style-prettier

@solana/rpc-types

This package defines types for values used in the Solana JSON-RPC and a series of helpers for working with them. It can be used standalone, but it is also exported as part of the Solana JavaScript SDK @solana/web3.js@next.

A type that enumerates the possible commitment statuses – each a measure of the network confirmation and stake levels on a particular block. Read more about the statuses themselves, here.

This type represents an integer value denominated in Lamports (ie. $1 \times 10^{-9}$ ◎). It is represented as a bigint in client code and an u64 in server code.

This type represents a bigint which has been encoded as a string for transit over a transport that does not support bigint values natively. The JSON-RPC is such a transport.

This type represents a number which has been encoded as a string for transit over a transport where loss of precision when using the native number type is a concern. The JSON-RPC is such a transport.

This type represents a Unix timestamp in seconds. It is represented as a bigint in client code and an i64 in server code.

Lamport values returned from the RPC API conform to the type Lamports. You can use a value of that type wherever a quantity of Lamports is expected.

From time to time you might acquire a number that you expect to be a quantity of Lamports, from an untrusted network API or user input. To assert that such an arbitrary number is usable as a quantity of Lamports, use the assertIsLamports function.

import { assertIsLamports } from '@solana/rpc-types';

// Imagine a function that creates a transfer instruction when a user submits a form.
function handleSubmit() {
// We know only that what the user typed conforms to the `number` type.
const lamports: number = parseInt(quantityInput.value, 10);
try {
// If this type assertion function doesn't throw, then
// Typescript will upcast `lamports` to `Lamports`.
assertIsLamports(lamports);
// At this point, `lamports` is a `Lamports` that can be used anywhere Lamports are expected.
await transfer(fromAddress, toAddress, lamports);
} catch (e) {
// `lamports` turned out not to validate as a quantity of Lamports.
}
}

Large integers returned from the RPC API encoded as strings conform to the type StringifiedBigInt.

From time to time you might acquire a string that you suspect might validate as a StringifiedBigInt, from an untrusted network API or user input. To assert that such an arbitrary string is usable as a StringifiedBigInt, use the assertIsStringifiedBigInt function.

See assertIsLamports() for an example of how to use an assertion function.

Large numbers returned from the RPC API encoded as strings conform to the type StringifiedNumber.

From time to time you might acquire a string that you suspect might validate as a StringifiedNumber, from an untrusted network API or user input. To assert that such an arbitrary string is usable as a StringifiedNumber, use the assertIsStringifiedNumber function.

See assertIsLamports() for an example of how to use an assertion function.

Timestamps returned from the RPC API conform to the type UnixTimestamp.

From time to time you might acquire a number that you suspect might validate as a UnixTimestamp, from an untrusted network API or user input. To assert that such an arbitrary number is usable as a UnixTimestamp, use the assertIsUnixTimestamp function.

See assertIsLamports() for an example of how to use an assertion function.

A function that accepts two Commitments as input, and returns -1 if the first is lower than the second, 0 if they are the same, and 1 if the second is higher than the first. You can use this comparator to sort items by commitment, or to determine an upper/lower bound on a level of commitment given two options.

import { commitmentComparator } from '@solana/rpc-types';

transactions.sort((a, b) => commitmentComparator(a.confirmationStatus, b.confirmationStatus));

This is a type guard that accepts a bigint as input. It will both return true if the integer conforms to the Lamports type and will refine the type for use in your program.

import { isLamports } from '@solana/rpc-types';

if (isLamports(lamports)) {
// At this point, `lamports` has been refined to a
// `Lamports` that can be used anywhere Lamports are expected.
await transfer(fromAddress, toAddress, lamports);
} else {
setError(`${ownerAddress} is not an address`);
}

This is a type guard that accepts a string as input. It will both return true if the string can be parsed as a bigint and will refine the type for use in your program.

See isLamports() for an example of how to use a type guard.

This is a type guard that accepts a string as input. It will both return true if the string can be parsed as a JavaScript Number and will refine the type for use in your program.

See isLamports() for an example of how to use a type guard.

This is a type guard that accepts a number as input. It will both return true if the number is in the Unix timestamp range and will refine the type for use in your program.

See isLamports() for an example of how to use a type guard.

This helper combines asserting that a number is a possible number of Lamports with coercing it to the Lamports type. It's best used with untrusted input.

import { lamports } from '@solana/rpc-types';

await transfer(address(fromAddress), address(toAddress), lamports(100000n));

This helper combines asserting that a string represents a bigint with coercing it to the StringifiedBigInt type. It's best used with untrusted input.

This helper combines asserting that a string parses as a JavaScript Number with coercing it to the StringifiedNumber type. It's best used with untrusted input.

This helper combines asserting that a number is in the Unix timestamp range with coercing it to the UnixTimestamp type. It's best used with untrusted input.

Modules

<internal>

Type Aliases

AccountInfoBase
AccountInfoWithBase58Bytes
AccountInfoWithBase58EncodedData
AccountInfoWithBase64EncodedData
AccountInfoWithBase64EncodedZStdCompressedData
AccountInfoWithJsonData
AccountInfoWithPubkey
Base58EncodedBytes
Base58EncodedDataResponse
Base64EncodedBytes
Base64EncodedDataResponse
Base64EncodedZStdCompressedBytes
Base64EncodedZStdCompressedDataResponse
Blockhash
ClusterUrl
Commitment
DataSlice
DevnetUrl
Epoch
F64UnsafeSeeDocumentation
GetProgramAccountsDatasizeFilter
GetProgramAccountsMemcmpFilter
Lamports
MainnetUrl
MicroLamports
Reward
SignedLamports
Slot
SolanaRpcResponse
StringifiedBigInt
StringifiedNumber
TestnetUrl
TokenAmount
TokenBalance
TransactionError
TransactionForAccounts
TransactionForFullBase58
TransactionForFullBase64
TransactionForFullJson
TransactionForFullJsonParsed
TransactionForFullMetaInnerInstructionsParsed
TransactionForFullMetaInnerInstructionsUnparsed
TransactionStatus
UnixTimestamp

Functions

assertIsBlockhash
assertIsLamports
assertIsStringifiedBigInt
assertIsStringifiedNumber
assertIsUnixTimestamp
blockhash
commitmentComparator
devnet
getBlockhashCodec
getBlockhashComparator
getBlockhashDecoder
getBlockhashEncoder
getDefaultLamportsCodec
getDefaultLamportsDecoder
getDefaultLamportsEncoder
getLamportsCodec
getLamportsDecoder
getLamportsEncoder
isBlockhash
isLamports
isStringifiedBigInt
isStringifiedNumber
isUnixTimestamp
lamports
mainnet
stringifiedBigInt
stringifiedNumber
testnet
unixTimestamp