feat: deposit to any address #316
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request adds support for depositing funds to a different recipient address using the
PaymentsService.deposit()method, and updates related documentation and type definitions to reflect this new flexibility. The change replaces the previousDepositCallbacksparameter with a more generalDepositOptionsobject, which now includes an optionaltoproperty for specifying the recipient address, as well as callback functions for transaction visibility.SDK API enhancements:
PaymentsService.deposit()method now accepts an optionalDepositOptionsobject, which includes an optionaltoproperty to specify a recipient address other than the signer. This replaces the previousDepositCallbacksparameter. [1] [2] [3] [4]options.to(if present) as the recipient; otherwise, it defaults to the signer's address. [1] [2]DepositOptionsobject.Documentation updates:
AGENTS.md,getting-started.mdx, andcomponents.mdxhave been updated to describe and demonstrate the newtooption for deposits, including sample usage for depositing to another address. [1] [2] [3] [4] [5]