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

[SDK] add WithEventsCh settle option #450

Merged
merged 5 commits into from
Feb 7, 2025
Merged

Conversation

louisinger
Copy link
Collaborator

@louisinger louisinger commented Feb 6, 2025

This PR adds a way to inspect the settlement process by replaying theRoundEvent received from the server to a custom channel created by the client. It also allow to do the same with JS using a callback function.

Golang

eventsCh := make(chan client.RoundEvent)
defer close(eventsCh)
go func() {
	for event := range eventsCh {
		fmt.Println(event)
	}
}()

resp, err := arkSdkClient.Settle(context.Background(), arksdk.WithEventsCh(eventsCh))
if err != nil {
	return nil, err
}

WASM JS wrapper

await settle((e) => console.log(JSON.parse(e)));

@tiero @bordalix @altafan @sekulicd please review

@louisinger louisinger requested a review from altafan February 6, 2025 13:20
@sekulicd
Copy link
Collaborator

sekulicd commented Feb 6, 2025

@louisinger which use cases this helps with?

@tiero
Copy link
Member

tiero commented Feb 6, 2025

@louisinger which use cases this helps with?

clients can monitor settlement events for better UX instead now await settle() dont' really communicate the progression of the settlement process.

@altafan altafan merged commit b8ba288 into master Feb 7, 2025
7 checks passed
bordalix pushed a commit that referenced this pull request Feb 7, 2025
* [SDK] add WithEventCh settle option

* WASM: make the callback optional

* WASM: add callback in redeemNotes wrapper

* fix nak.Dockerfile

* typo fix
@altafan altafan deleted the stream-settle-progress branch March 26, 2025 17:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants