Socket
Socket
Sign inDemoInstall

@trezor/blockchain-link-types

Package Overview
Dependencies
Maintainers
6
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trezor/blockchain-link-types - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

lib/solana.d.ts

13

CHANGELOG.md

@@ -0,1 +1,14 @@

# 1.0.8
- chore(repo): Upgrade TS 5.3 (#10017) (7277f9d0f)
- chore(repo): upgrade to TS 5.2 (#9989) (bf8d0fe80)
- chore(suite): update lockfile (761aea82b)
- feat(blockchain-link): Solana tx history (9dff5e509)
- feat(blockchain-link): Solana tokens (9adc115ce)
- feat(blockchain-link): Solana getAccountInfo (248913743)
- feat(blockchain-link): Solana estimateFee (34a2f28a0)
- feat(blockchain-link): Solana worker setup (662bc092a)
- feat(deps): update deps without breaking changes (7e0584c51)
- chore(desktop): update deps related to desktop packages (af412cfb5)
# 1.0.6

@@ -2,0 +15,0 @@

9

lib/common.d.ts

@@ -28,3 +28,3 @@ import type { SocksProxyAgentOptions } from 'socks-proxy-agent';

}
export type TokenStandard = 'ERC20' | 'ERC1155' | 'ERC721';
export type TokenStandard = 'ERC20' | 'ERC1155' | 'ERC721' | 'SPL';
export type TransferType = 'sent' | 'recv' | 'self' | 'unknown';

@@ -133,2 +133,6 @@ export type TokenTransfer = Omit<BlockbookTokenTransfer, 'value'> & {

}
export interface TokenAccount {
publicKey: string;
balance: string;
}
export interface TokenInfo {

@@ -141,2 +145,3 @@ type: string;

decimals: number;
accounts?: TokenAccount[];
}

@@ -170,2 +175,3 @@ export interface AccountInfo {

};
owner?: string;
};

@@ -185,2 +191,3 @@ page?: {

addresses?: AccountAddresses;
subscriptionId?: number;
}

@@ -187,0 +194,0 @@ export type ChannelMessage<T> = T & {

@@ -30,2 +30,3 @@ export interface AccountBalanceHistoryParams {

value?: string;
isCreatingAccount?: boolean;
};

@@ -32,0 +33,0 @@ }

11

package.json
{
"name": "@trezor/blockchain-link-types",
"version": "1.0.7",
"version": "1.0.8",
"license": "See LICENSE.md in repo root",

@@ -19,9 +19,10 @@ "sideEffects": false,

"devDependencies": {
"@trezor/utxo-lib": "1.0.12",
"rimraf": "^5.0.1",
"@solana/web3.js": "1.87.6",
"@trezor/utxo-lib": "2.0.1",
"rimraf": "^5.0.5",
"ripple-lib": "^1.10.1",
"socks-proxy-agent": "6.1.1",
"tsx": "^3.12.7",
"typescript": "4.9.5"
"tsx": "^3.14.0",
"typescript": "5.3.2"
}
}
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