Skip to content

Releases: FuelLabs/fuels-npm-packs

v0.26.0

25 Dec 22:01
ad90d36
Compare
Choose a tag to compare

@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

  • Check for localStorage availability, by @nelitow (See #132)

@fuels/prettier-config@0.26.0

@fuels/proxy-cli@0.26.0

@fuels/react-xstore@0.26.0

Minor Changes

  • Update tests to handle the new local-storage checks, by @nelitow (See #132)

@fuels/ts-config@0.26.0

@fuels/tsup-config@0.26.0

v0.25.1

07 Oct 02:58
801bf16
Compare
Choose a tag to compare

@fuels/changeset@0.25.1

@fuels/eslint-plugin@0.25.1

@fuels/jest@0.25.1

@fuels/kms-account@0.25.1

Patch Changes

@fuels/local-storage@0.25.1

@fuels/prettier-config@0.25.1

@fuels/proxy-cli@0.25.1

Patch Changes

@fuels/react-xstore@0.25.1

@fuels/ts-config@0.25.1

@fuels/tsup-config@0.25.1

v0.25.0

06 Oct 10:13
d074567
Compare
Choose a tag to compare

@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

Patch Changes

@fuels/react-xstore@0.25.0

@fuels/ts-config@0.25.0

@fuels/tsup-config@0.25.0

v0.24.1

05 Oct 23:37
563be06
Compare
Choose a tag to compare

@fuels/changeset@0.24.1

@fuels/eslint-plugin@0.24.1

@fuels/jest@0.24.1

@fuels/kms-account@0.24.1

Patch Changes

@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

30 Sep 01:43
3428471
Compare
Choose a tag to compare

@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

12 Jul 18:53
7155602
Compare
Choose a tag to compare

@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

29 Jun 02:29
8a4aaa2
Compare
Choose a tag to compare

@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

04 Jun 16:48
985d66c
Compare
Choose a tag to compare

@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 with as 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 overriding select function of TanStack Query and our custom name property.

    Basic usage with select function

    const { 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))
  • Adds mutation callbacks, such as onError and onSuccess, by @helciofranco (See #97)
  • Provide consistent return types across Fuel hooks, for an easier typed experience.
    Every query hook will now return a null value if the query is not available, instead of undefined.

    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

@fuels/ts-config@0.21.0

@fuels/tsup-config@0.21.0

v0.20.0

23 May 11:38
a6b4dcf
Compare
Choose a tag to compare

@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

@fuels/react-xstore@0.20.0

@fuels/playwright-utils@0.20.0

Minor Changes

@fuels/ts-config@0.20.0

@fuels/tsup-config@0.20.0

v0.19.0

07 May 13:09
8feffe6
Compare
Choose a tag to compare

@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

@fuels/react-xstore@0.19.0

@fuels/playwright-utils@0.19.0

Minor Changes

@fuels/ts-config@0.19.0

@fuels/tsup-config@0.19.0