Socket
Socket
Sign inDemoInstall

@solana/rpc-core

Package Overview
Dependencies
Maintainers
13
Versions
456
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solana/rpc-core - npm Package Compare versions

Comparing version 2.0.0-experimental.dccb97c to 2.0.0-experimental.e1fc77c

dist/types/blockhash.d.ts

36

dist/index.browser.js

@@ -0,1 +1,25 @@

import bs58 from 'bs58';
// src/blockhash.ts
function assertIsBlockhash(putativeBlockhash) {
try {
if (
// Lowest value (32 bytes of zeroes)
putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
putativeBlockhash.length > 44
) {
throw new Error("Expected input string to decode to a byte array of length 32.");
}
const bytes = bs58.decode(putativeBlockhash);
const numBytes = bytes.byteLength;
if (numBytes !== 32) {
throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
}
} catch (e) {
throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
cause: e
});
}
}
// src/params-patcher.ts

@@ -33,3 +57,9 @@ function visitNode(value, keyPath, onIntegerOverflow) {

var ALLOWED_NUMERIC_KEYPATHS = {
getInflationReward: [[KEYPATH_WILDCARD, "commission"]]
getBlockTime: [[]],
getInflationReward: [[KEYPATH_WILDCARD, "commission"]],
getRecentPerformanceSamples: [[KEYPATH_WILDCARD, "samplePeriodSecs"]],
getVoteAccounts: [
["current", KEYPATH_WILDCARD, "commission"],
["delinquent", KEYPATH_WILDCARD, "commission"]
]
};

@@ -67,3 +97,3 @@

// src/index.ts
// src/rpc-methods/index.ts
function createSolanaRpcApi(config) {

@@ -96,4 +126,4 @@ return new Proxy({}, {

export { createSolanaRpcApi };
export { assertIsBlockhash, createSolanaRpcApi };
//# sourceMappingURL=out.js.map
//# sourceMappingURL=index.browser.js.map

@@ -0,1 +1,25 @@

import bs58 from 'bs58';
// src/blockhash.ts
function assertIsBlockhash(putativeBlockhash) {
try {
if (
// Lowest value (32 bytes of zeroes)
putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
putativeBlockhash.length > 44
) {
throw new Error("Expected input string to decode to a byte array of length 32.");
}
const bytes = bs58.decode(putativeBlockhash);
const numBytes = bytes.byteLength;
if (numBytes !== 32) {
throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
}
} catch (e) {
throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
cause: e
});
}
}
// src/params-patcher.ts

@@ -33,3 +57,9 @@ function visitNode(value, keyPath, onIntegerOverflow) {

var ALLOWED_NUMERIC_KEYPATHS = {
getInflationReward: [[KEYPATH_WILDCARD, "commission"]]
getBlockTime: [[]],
getInflationReward: [[KEYPATH_WILDCARD, "commission"]],
getRecentPerformanceSamples: [[KEYPATH_WILDCARD, "samplePeriodSecs"]],
getVoteAccounts: [
["current", KEYPATH_WILDCARD, "commission"],
["delinquent", KEYPATH_WILDCARD, "commission"]
]
};

@@ -67,3 +97,3 @@

// src/index.ts
// src/rpc-methods/index.ts
function createSolanaRpcApi(config) {

@@ -96,4 +126,4 @@ return new Proxy({}, {

export { createSolanaRpcApi };
export { assertIsBlockhash, createSolanaRpcApi };
//# sourceMappingURL=out.js.map
//# sourceMappingURL=index.native.js.map

@@ -0,1 +1,25 @@

import bs58 from 'bs58';
// src/blockhash.ts
function assertIsBlockhash(putativeBlockhash) {
try {
if (
// Lowest value (32 bytes of zeroes)
putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
putativeBlockhash.length > 44
) {
throw new Error("Expected input string to decode to a byte array of length 32.");
}
const bytes = bs58.decode(putativeBlockhash);
const numBytes = bytes.byteLength;
if (numBytes !== 32) {
throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
}
} catch (e) {
throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
cause: e
});
}
}
// src/params-patcher.ts

@@ -33,3 +57,9 @@ function visitNode(value, keyPath, onIntegerOverflow) {

var ALLOWED_NUMERIC_KEYPATHS = {
getInflationReward: [[KEYPATH_WILDCARD, "commission"]]
getBlockTime: [[]],
getInflationReward: [[KEYPATH_WILDCARD, "commission"]],
getRecentPerformanceSamples: [[KEYPATH_WILDCARD, "samplePeriodSecs"]],
getVoteAccounts: [
["current", KEYPATH_WILDCARD, "commission"],
["delinquent", KEYPATH_WILDCARD, "commission"]
]
};

@@ -67,3 +97,3 @@

// src/index.ts
// src/rpc-methods/index.ts
function createSolanaRpcApi(config) {

@@ -96,4 +126,4 @@ return new Proxy({}, {

export { createSolanaRpcApi };
export { assertIsBlockhash, createSolanaRpcApi };
//# sourceMappingURL=out.js.map
//# sourceMappingURL=index.node.js.map

13

dist/types/index.d.ts

@@ -1,12 +0,3 @@

import { IRpcApi } from '@solana/rpc-transport/dist/types/json-rpc-transport/json-rpc-transport-types';
import { GetAccountInfoApi } from './rpc-methods/getAccountInfo';
import { GetBlockHeightApi } from './rpc-methods/getBlockHeight';
import { GetBlocksApi } from './rpc-methods/getBlocks';
import { GetInflationRewardApi } from './rpc-methods/getInflationReward';
type Config = Readonly<{
onIntegerOverflow?: (methodName: string, keyPath: (number | string)[], value: bigint) => void;
}>;
export type SolanaRpcMethods = GetAccountInfoApi & GetBlockHeightApi & GetBlocksApi & GetInflationRewardApi;
export declare function createSolanaRpcApi(config?: Config): IRpcApi<SolanaRpcMethods>;
export {};
export * from './blockhash';
export * from './rpc-methods';
//# sourceMappingURL=index.d.ts.map

@@ -1,3 +0,3 @@

import { createSolanaRpcApi } from './index';
import { KeyPath } from './response-patcher';
import { createSolanaRpcApi } from './rpc-methods';
/**

@@ -4,0 +4,0 @@ * These are keypaths at the end of which you will find a numeric value that should *not* be upcast

@@ -1,5 +0,5 @@

import { createSolanaRpcApi } from './index';
import { KeyPathWildcard } from './response-patcher-types';
import { createSolanaRpcApi } from './rpc-methods';
export type KeyPath = ReadonlyArray<KeyPathWildcard | number | string | KeyPath>;
export declare function patchResponseForSolanaLabsRpc<T>(rawResponse: unknown, methodName?: keyof ReturnType<typeof createSolanaRpcApi>): T;
//# sourceMappingURL=response-patcher.d.ts.map

@@ -6,4 +6,13 @@ export type Commitment = 'confirmed' | 'finalized' | 'processed';

}>;
export type LamportsUnsafeBeyond2Pow53Minus1 = bigint & {
readonly __lamports: unique symbol;
};
export type Slot = U64UnsafeBeyond2Pow53Minus1;
export type U64UnsafeBeyond2Pow53Minus1 = bigint;
export type RpcResponse<TValue> = Readonly<{
context: Readonly<{
slot: Slot;
}>;
value: TValue;
}>;
//# sourceMappingURL=common.d.ts.map
import { Base58EncodedAddress } from '@solana/keys';
import { Commitment, DataSlice, Slot, U64UnsafeBeyond2Pow53Minus1 } from './common';
import { Commitment, DataSlice, LamportsUnsafeBeyond2Pow53Minus1, Slot, U64UnsafeBeyond2Pow53Minus1 } from './common';
type Base58EncodedBytes = string & {

@@ -21,3 +21,3 @@ readonly __base58EncodedBytes: unique symbol;

executable: boolean;
lamports: U64UnsafeBeyond2Pow53Minus1;
lamports: LamportsUnsafeBeyond2Pow53Minus1;
owner: Base58EncodedAddress;

@@ -24,0 +24,0 @@ rentEpoch: U64UnsafeBeyond2Pow53Minus1;

@@ -1,2 +0,2 @@

import { U64UnsafeBeyond2Pow53Minus1, Commitment, Slot } from './common';
import { Commitment, Slot, U64UnsafeBeyond2Pow53Minus1 } from './common';
type GetBlockHeightApiResponse = U64UnsafeBeyond2Pow53Minus1;

@@ -3,0 +3,0 @@ export interface GetBlockHeightApi {

@@ -1,2 +0,2 @@

import { Slot, Commitment } from './common';
import { Commitment, Slot } from './common';
type GetBlocksApiResponse = Slot[];

@@ -3,0 +3,0 @@ export interface GetBlocksApi {

import { Base58EncodedAddress } from '@solana/keys';
import { Commitment, Slot, U64UnsafeBeyond2Pow53Minus1 } from './common';
import { Commitment, LamportsUnsafeBeyond2Pow53Minus1, Slot, U64UnsafeBeyond2Pow53Minus1 } from './common';
type GetInflationRewardApiResponse = Readonly<{
amount: U64UnsafeBeyond2Pow53Minus1;
amount: LamportsUnsafeBeyond2Pow53Minus1;
commission: number;
effectiveSlot: U64UnsafeBeyond2Pow53Minus1;
effectiveSlot: Slot;
epoch: U64UnsafeBeyond2Pow53Minus1;
postBalance: U64UnsafeBeyond2Pow53Minus1;
postBalance: LamportsUnsafeBeyond2Pow53Minus1;
}>;

@@ -10,0 +10,0 @@ export interface GetInflationRewardApi {

{
"name": "@solana/rpc-core",
"version": "2.0.0-experimental.dccb97c",
"version": "2.0.0-experimental.e1fc77c",
"description": "A library for making calls to the Solana JSON RPC API",

@@ -49,6 +49,7 @@ "exports": {

"dependencies": {
"@solana/keys": "2.0.0-experimental.dccb97c"
"bs58": "^5.0.0",
"@solana/keys": "2.0.0-experimental.e1fc77c"
},
"devDependencies": {
"@solana/eslint-config-solana": "^1.0.0",
"@solana/eslint-config-solana": "^1.0.1",
"@swc/core": "^1.3.18",

@@ -66,3 +67,3 @@ "@swc/jest": "^0.2.23",

"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jest-fetch-mock-fork": "^3.0.4",
"jest-runner-eslint": "^2.0.0",

@@ -74,6 +75,5 @@ "jest-runner-prettier": "^1.0.0",

"tsup": "6.7.0",
"turbo": "^1.6.3",
"typescript": "^5.0.3",
"version-from-git": "^1.1.1",
"@solana/rpc-transport": "2.0.0-experimental.dccb97c",
"@solana/rpc-transport": "2.0.0-experimental.e1fc77c",
"build-scripts": "0.0.0",

@@ -80,0 +80,0 @@ "test-config": "0.0.0",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc