-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
docs: add max outputs documentation to combining UTXO docs #3435
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
CodSpeed Performance ReportMerging #3435 will not alter performanceComparing Summary
|
Coverage Report:
Changed Files:Coverage values did not change👌. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be worthwhile separating the snippet into 2, one for separation and another for combination?
|
||
## Max Outputs | ||
|
||
It's also important to note that depending on the chain configuration, you may be limited on the number of outputs you can have in a transaction. This amount can be queried via the [TxParameters](https://docs.fuel.network/docs/graphql/reference/objects/#txparameters) GraphQL query |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The user could be limited on both the inputs and outputs depending on the operation.
Would it be worthwhile showing how to query these with the TS SDK:
const { maxInputs, maxOutputs } = provider.getChain().consensusParameters.txParameters;
--- | ||
--- | ||
|
||
docs: add max outputs documentation to combining UTXO docs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be closing #3429, looks like it should just be related to?
Summary
Merely added a section about
maxOutputs
to the Combining UTXOs docsChecklist