
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@kadena/chainweb-stream-client
Advanced tools
Chainweb-stream client for browsers and node.js
Chainweb-stream client for browsers and node.js
Stream account or module/event transactions from chainweb-stream, including their confirmation depth.
Introduces and normalizes the following features across environments:
Alpha version / unstable.
npm install @kadena/chainweb-stream-client
yarn add @kadena/chainweb-stream-client
import { ChainwebStreamClient } from '@kadena/chainweb-stream-client';
const client = new ChainwebStreamClient({
network: 'mainnet01',
type: 'event',
id: 'coin',
host: 'http://localhost:4000/',
});
client.on('confirmed', (txn) => console.log('confirmed', txn));
client.connect();
Find more detailed examples under src/examples
.
Key | Required | Description | Example Values |
---|---|---|---|
network | Yes | Chainweb network | mainnet01 /testnet04 /... |
type | Yes | Transaction type to stream (event/account) | event /account |
id | Yes | Account ID or module/event name | k:abcdef01234.. |
host | Yes | Chainweb-stream backend URL | http://localhost:4000 |
limit | No | Initial data load limit | 100 |
connectTimeout | No | Connection timeout in ms | 10_000 |
heartbeatTimeout | No | Stale connection timeout in ms | 30_000 |
maxReconnects | No | How many reconnections to attempt before giving up | 5 |
confirmationDepth | No | How many confirmations for a transaction to be considered final | 6 |
Make sure that your client and server confirmationDepth
values are compatible.
If your client confirmationDepth
is larger than the server's, the confirmed
event will never fire. The client will automatically detect this condition, emit
an error
event and disconnect.
If your client's configured network does not match the server's, the client will
emit an error
event and disconnect.
If your client heartbeatTimeout
is smaller than the server heartbeat interval,
the client will automatically adapt its heartbeat timeout to 2500ms larger than
the server value.
When the connection is interrupted or determined to be stale (no heartbeats
received within the heartbeatTimeout interval), a reconnection attempt will be
made (up to maxReconnects
times.)
It is recommended to handle the fired will-reconnect and error events.
ChainwebStreamClient is an EventEmitter. You can subscribe to the following
events using .on('event-name', callback)
.
You can look up named types in src/types.ts
.
Emitted when the connection to the backend is first established. Reconnections to not fire this event, see reconnect instead.
Callback type: () => void
Emitted when a reconnection is established. If a connection is dropped or intentionally killed (e.g. due to staleness/heartbeat timeout) the client will attempt reconnections at exponential intervals.
Callback type: () => void
Emitted when a confirmed transaction is received from the backend. Confirmation depends on the CONFIRMATION_DEPTH
Callback type: (txn: ITransaction) => void
Emitted when an unconfirmed transaction is received from the backend. Multiple unconfirmed events will be fire for the same transaction, as each time the backend detects a confirmation depth update, it will send the data again with the latest confirmation depth.
Hint: You can rely on the .meta.id
value to de-duplicate the underlying
unconfirmed transactions
Callback type: (txn: ITransaction) => void
Emitted when a heights
event is received by the server. This carries the
maximum height as seen from stream-server's corresponding chainweb-data. This
event is mostly intended for calculating minheight when reconnecting, but the
event itself is exposed to users in case they have use cases beyond that, such
as detecting a stalled cw-data.
Callback type: (maxChainwebDataHeight: number) => void
Emitted when any transaction payload is received (unconfirmd and confirmed.)
See: unconfirmed
Emitted when the client encounters a retryable error, such as a stale connection that will be disconnected and retried.
Callback type: (message: string) => void
Emitted when the client encounters a non-retryable error, such as when connection retries are exhausted.
Callback type: (message: string) => void
Emitted when the client encounters an error that will be retried, signaling intent to reconnect.
Callback type:
({ attempts: number, timeout: number, message: string }) => void
Developer event emitted whenever anything significant happens. You can attach a console log to see what is going on internally if you are encountering unexpected behaviors.
Callback type: (dbg: IDebugMsgObject) => void
FAQs
Chainweb-stream client for browsers and node.js
We found that @kadena/chainweb-stream-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.