Releases: FuelLabs/fuels-npm-packs
Releases · FuelLabs/fuels-npm-packs
v0.26.0
@fuels/changeset@0.26.0
@fuels/eslint-plugin@0.26.0
@fuels/jest@0.26.0
@fuels/kms-account@0.26.0
@fuels/local-storage@0.26.0
Minor Changes
@fuels/prettier-config@0.26.0
@fuels/proxy-cli@0.26.0
@fuels/react-xstore@0.26.0
Minor Changes
@fuels/ts-config@0.26.0
@fuels/tsup-config@0.26.0
v0.25.1
@fuels/changeset@0.25.1
@fuels/eslint-plugin@0.25.1
@fuels/jest@0.25.1
@fuels/kms-account@0.25.1
Patch Changes
- Update README of the packages, by @luizstacio (See #130)
@fuels/local-storage@0.25.1
@fuels/prettier-config@0.25.1
@fuels/proxy-cli@0.25.1
Patch Changes
- Update README of the packages, by @luizstacio (See #130)
@fuels/react-xstore@0.25.1
@fuels/ts-config@0.25.1
@fuels/tsup-config@0.25.1
v0.25.0
@fuels/changeset@0.25.0
@fuels/eslint-plugin@0.25.0
@fuels/jest@0.25.0
@fuels/kms-account@0.25.0
@fuels/local-storage@0.25.0
@fuels/prettier-config@0.25.0
@fuels/proxy-cli@0.25.0
Minor Changes
- Create CLI to interact with proxy contrat, by @LuizAsFight (See #126)
Patch Changes
- chore: use kms account from workspace:* version, by @LuizAsFight (See #129)
@fuels/react-xstore@0.25.0
@fuels/ts-config@0.25.0
@fuels/tsup-config@0.25.0
v0.24.1
@fuels/changeset@0.24.1
@fuels/eslint-plugin@0.24.1
@fuels/jest@0.24.1
@fuels/kms-account@0.24.1
Patch Changes
- Add readme to kms-account, by @luizstacio (See #121)
@fuels/local-storage@0.24.1
@fuels/prettier-config@0.24.1
@fuels/react-xstore@0.24.1
@fuels/ts-config@0.24.1
@fuels/tsup-config@0.24.1
v0.24.0
@fuels/changeset@0.24.0
@fuels/eslint-plugin@0.24.0
@fuels/jest@0.24.0
@fuels/kms-account@0.24.0
Minor Changes
- Create KMSAccount for using KMS from AWS with fuels typescript SDK, by @luizstacio (See #120)
@fuels/local-storage@0.24.0
@fuels/prettier-config@0.24.0
@fuels/react-xstore@0.24.0
@fuels/ts-config@0.24.0
@fuels/tsup-config@0.24.0
v0.23.0
@fuels/assets@0.23.0
@fuels/changeset@0.23.0
@fuels/eslint-plugin@0.23.0
@fuels/jest@0.23.0
@fuels/local-storage@0.23.0
@fuels/prettier-config@0.23.0
@fuels/react@0.23.0
Minor Changes
- 🐞 Fixing infinite loading of wallet connector when fuelConfig connectors are defined asynchronously, by @rodrigobranas (See #108)
Patch Changes
- Updated UI connector's style to match provider's modal style, increasing user experience, by @LeoCourbassier (See #110)
@fuels/react-xstore@0.23.0
@fuels/playwright-utils@0.23.0
@fuels/ts-config@0.23.0
@fuels/tsup-config@0.23.0
v0.22.0
@fuels/assets@0.22.0
@fuels/changeset@0.22.0
@fuels/eslint-plugin@0.22.0
@fuels/jest@0.22.0
@fuels/local-storage@0.22.0
@fuels/prettier-config@0.22.0
@fuels/react@0.22.0
Minor Changes
- Add a loading state to display when the connector has installed status set to false, by @helciofranco (See #104)
@fuels/react-xstore@0.22.0
@fuels/playwright-utils@0.22.0
@fuels/ts-config@0.22.0
@fuels/tsup-config@0.22.0
v0.21.0
@fuels/assets@0.21.0
@fuels/changeset@0.21.0
@fuels/eslint-plugin@0.21.0
@fuels/jest@0.21.0
@fuels/local-storage@0.21.0
@fuels/prettier-config@0.21.0
@fuels/react@0.21.0
Minor Changes
- Created useContractRead hook to read contract data from a contract instance or from a contract id.
If provided Abi is declared withas const
, hook will dynamically infer possible method names, as well as the arguments quantity and types for a selected method, by @arthurgeron (See #91) -
- Add
useTransactionResult
hook to get a transaction that has been executed - Create a type
UseNamedQueryParams
to allow overridingselect
function of TanStack Query and our customname
property.
Basic usage with
select
functionconst { receipts } = useTransactionResult({ txId: '0xd7ad974cdccac8b41132dfe1d2a4219a681af1865f0775f141c4d6201ee428d1', query: { name: 'receipts', // Or anything else (optional, default: 'transactionResult') select: (data) => data?.receipts || null, }, }); ```, by [@helciofranco](https://github.com/helciofranco) (See [#94](https://github.com/FuelLabs/fuels-npm-packs/pull/94))
- Add
- Adds mutation callbacks, such as
onError
andonSuccess
, by @helciofranco (See #97) - Provide consistent return types across Fuel hooks, for an easier typed experience.
Every query hook will now return anull
value if the query is not available, instead ofundefined
.Examples
const { wallet } = useWallet(); // wallet is Wallet | null const { network } = useNetwork(); // network is Network | null // and so on... Every query hook will return T | null ```, by [@helciofranco](https://github.com/helciofranco) (See [#85](https://github.com/FuelLabs/fuels-npm-packs/pull/85))
- Add
useSendTransaction
hook that allows developers to easily send a transaction.const { sendTransaction } = useSendTransaction(); // [...] const transactionRequest = new ScriptTransactionRequest({}); // Or any other tx request sendTransaction({ address: 'fuel1zs7l8ajg0qgrak3jhhmq3xf3thd8stu535gj7p5fye2578yccjyqcgja3z', transaction, }); ```, by [@helciofranco](https://github.com/helciofranco) (See [#92](https://github.com/FuelLabs/fuels-npm-packs/pull/92))
@fuels/react-xstore@0.21.0
@fuels/playwright-utils@0.21.0
Patch Changes
- update wallet version to 0.21.0, by @LuizAsFight (See #98)
@fuels/ts-config@0.21.0
@fuels/tsup-config@0.21.0
v0.20.0
@fuels/assets@0.20.0
@fuels/changeset@0.20.0
@fuels/eslint-plugin@0.20.0
@fuels/jest@0.20.0
@fuels/local-storage@0.20.0
@fuels/prettier-config@0.20.0
@fuels/react@0.20.0
Minor Changes
- Update fuels dependency to 0.86.0, by @LuizAsFight (See #80)
@fuels/react-xstore@0.20.0
@fuels/playwright-utils@0.20.0
Minor Changes
- Update fuels dependency to 0.86.0, by @LuizAsFight (See #80)
- Use fuelWallet 0.19.0, by @LuizAsFight (See #80)
@fuels/ts-config@0.20.0
@fuels/tsup-config@0.20.0
v0.19.0
@fuels/assets@0.19.0
@fuels/changeset@0.19.0
@fuels/eslint-plugin@0.19.0
@fuels/jest@0.19.0
@fuels/local-storage@0.19.0
@fuels/prettier-config@0.19.0
@fuels/react@0.19.0
Minor Changes
- Upgrade to testnet (fuel-core 0.26.0 + fuels-ts 0.84.0), by @arthurgeron (See #72)
- Upgraded fuels-ts to new minor 0.83.0, by @arthurgeron (See #72)
@fuels/react-xstore@0.19.0
@fuels/playwright-utils@0.19.0
Minor Changes
- Upgrade to testnet (fuel-core 0.26.0 + fuels-ts 0.84.0), by @arthurgeron (See #72)
- Upgraded fuels-ts to new minor 0.83.0, by @arthurgeron (See #72)