Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update chunk size comments #2738

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/topic/TopicMessageSubmitTransaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,16 @@ export default class TopicMessageSubmitTransaction extends Transaction {
/**
* @private
* @type {number}
* The maximum number of chunks a topic message can be split into.
* Default max chunk size: 20
* This value can be overridden with `setMaxChunks`
*/
this._maxChunks = 20;

/**
* @private
* @type {number}
* The size of each chunk for a given topic message in bytes.
*/
this._chunkSize = CHUNK_SIZE;

Expand Down
2 changes: 2 additions & 0 deletions src/transaction/Transaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ export const DEFAULT_RECORD_THRESHOLD = Hbar.fromTinybars(
// 120 seconds
const DEFAULT_TRANSACTION_VALID_DURATION = 120;

// The default message chunk size in bytes when splitting a given message.
// This value can be overriden using `setChunkSize` when preparing to submit a messsage via `TopicMessageSubmitTransaction`.
export const CHUNK_SIZE = 1024;

/**
Expand Down
Loading