@solana/rpc-parsed-types
Advanced tools
Comparing version 2.0.0-canary-20241027103025 to 2.0.0-canary-20241027112806
import { Address } from '@solana/addresses'; | ||
import { StringifiedBigInt, UnixTimestampUnsafeBeyond2Pow53Minus1 } from '@solana/rpc-types'; | ||
import { StringifiedBigInt, UnixTimestamp } from '@solana/rpc-types'; | ||
import { RpcParsedType } from './rpc-parsed-type'; | ||
@@ -13,3 +13,3 @@ type JsonParsedStakeAccount = Readonly<{ | ||
epoch: bigint; | ||
unixTimestamp: UnixTimestampUnsafeBeyond2Pow53Minus1; | ||
unixTimestamp: UnixTimestamp; | ||
}>; | ||
@@ -16,0 +16,0 @@ rentExemptReserve: StringifiedBigInt; |
@@ -1,2 +0,2 @@ | ||
import type { Blockhash, Epoch, Slot, StringifiedBigInt, UnixTimestampUnsafeBeyond2Pow53Minus1 } from '@solana/rpc-types'; | ||
import type { Blockhash, Epoch, Slot, StringifiedBigInt, UnixTimestamp } from '@solana/rpc-types'; | ||
import { RpcParsedType } from './rpc-parsed-type'; | ||
@@ -8,6 +8,6 @@ type FeeCalculator = Readonly<{ | ||
epoch: Epoch; | ||
epochStartTimestamp: UnixTimestampUnsafeBeyond2Pow53Minus1; | ||
epochStartTimestamp: UnixTimestamp; | ||
leaderScheduleEpoch: Epoch; | ||
slot: Slot; | ||
unixTimestamp: UnixTimestampUnsafeBeyond2Pow53Minus1; | ||
unixTimestamp: UnixTimestamp; | ||
}>; | ||
@@ -14,0 +14,0 @@ type JsonParsedEpochScheduleAccount = Readonly<{ |
import { Address } from '@solana/addresses'; | ||
import { Epoch, Slot, StringifiedBigInt, UnixTimestampUnsafeBeyond2Pow53Minus1 } from '@solana/rpc-types'; | ||
import { Epoch, Slot, StringifiedBigInt, UnixTimestamp } from '@solana/rpc-types'; | ||
import { RpcParsedInfo } from './rpc-parsed-type'; | ||
@@ -18,3 +18,3 @@ export type JsonParsedVoteAccount = RpcParsedInfo<{ | ||
slot: Slot; | ||
timestamp: UnixTimestampUnsafeBeyond2Pow53Minus1; | ||
timestamp: UnixTimestamp; | ||
}>; | ||
@@ -21,0 +21,0 @@ nodePubkey: Address; |
{ | ||
"name": "@solana/rpc-parsed-types", | ||
"version": "2.0.0-canary-20241027103025", | ||
"version": "2.0.0-canary-20241027112806", | ||
"description": "Type definitions for parsed types used in the Solana RPC", | ||
@@ -5,0 +5,0 @@ "exports": { |
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
22303