-
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
feat: standalone fuels node
#3813
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Temporary PRThis PR is published in AWS CodeArtifact with version: Install using the below commands — PNPMpnpm config set registry https://npm-packages.fuel.network/ --global
pnpm install fuels@pr-3813
# pnpm create fuels@pr-3813 NPMnpm --registry=https://npm-packages.fuel.network/ install fuels@pr-3813
# npm --registry=https://npm-packages.fuel.network/ create fuels@pr-3813 Bunnpm_config_registry=https://npm-packages.fuel.network/ bun install fuels@pr-3813
# npm_config_registry=https://npm-packages.fuel.network/ bun create fuels@pr-3813 |
Coverage Report:
Changed Files:
|
"fuels": patch | ||
--- | ||
|
||
feat: standalone `fuels node` |
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.
I think the idea was that this command would start fuel-core using the default
configs that the TS SDK uses internally, but without watching files or re-compiling and re-deploying contracts, etc.
However, now we have forc node
(docs), introduced via:
Docs:
Examples:
forc node local
forc node testnet
forc node ignition
Because of all the above, I wonder if we still need a fuels node
command.
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.
So remove?
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 proxy to the forc command?
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.
Yes, let's remove it and focus on more important stuff.
fuels node
to work without afuels.config.ts
file #3523Release notes
In this release, we:
fuels node
to start a fuel-core instance without configuration.Summary
We can now run a fuel-core node anywhere:
Checklist