-
Notifications
You must be signed in to change notification settings - Fork 196
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(faucet): add faucet service #1517
Conversation
🦋 Changeset detectedLatest commit: fbdb500 The changes in this PR will be included in the next version bump. This PR includes changesets to release 29 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
amazing! |
(let's add a changeset with minimal usage instructions before merging) |
const drip = async () => { | ||
console.log("dripping"); | ||
const tx = await faucet.drip.mutate({ address: burnerAccount.address }); | ||
console.log("got drip", tx); |
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 we still only do this if the balance is below a certain threshold?
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.
this is just the example app, but yes the templates should once we get this wired up to k8s
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.
or better yet, consider putting the threshold in the faucet itself? so folks don't try to load up
This is the last thing left in services package before we can 🔥