Skip to content

Commit

Permalink
fixup! feat(blockchain-link): add Solana epoch info call and upgrade SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-pvl committed Dec 20, 2024
1 parent ee7b835 commit 74cd1b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/blockchain-link-types/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,6 @@ export interface AccountInfo {
nonce?: string;
contractInfo?: ContractInfo;
stakingPools?: StakingPool[];
solStakingAccounts?: SolanaStakingAccount[]; // solana staking accounts
solEpoch?: number;
addressAliases?: { [key: string]: AddressAlias };
// XRP
sequence?: number;
Expand All @@ -231,6 +229,8 @@ export interface AccountInfo {
// SOL
owner?: string; // The Solana program owning the account
rent?: number; // The rent required for the account to opened
solStakingAccounts?: SolanaStakingAccount[]; // Solana staking accounts
solEpoch?: number; // Solana current epoch
};
page?: {
// blockbook and blockfrost
Expand Down

0 comments on commit 74cd1b0

Please sign in to comment.