Skip to content

Latest commit

 

History

History
993 lines (660 loc) · 45.8 KB

CHANGELOG.md

File metadata and controls

993 lines (660 loc) · 45.8 KB

@moralisweb3/streams

2.27.2

Patch Changes

2.27.1

Patch Changes

2.27.0

Patch Changes

2.26.9

Patch Changes

2.26.8

Patch Changes

2.26.7

Patch Changes

2.26.6

Patch Changes

2.26.5

Patch Changes

2.26.4

Patch Changes

2.26.3

Patch Changes

2.26.2

Patch Changes

2.26.1

Patch Changes

2.26.0

Patch Changes

2.25.4

Patch Changes

2.25.3

Patch Changes

2.25.2

Patch Changes

2.25.1

Patch Changes

2.25.0

Patch Changes

2.24.3

Patch Changes

2.24.2

Patch Changes

2.24.1

Patch Changes

2.24.0

Patch Changes

2.23.2

Patch Changes

2.23.1

Patch Changes

2.23.0

Patch Changes

2.22.5

Patch Changes

2.22.4

Patch Changes

2.22.3

Patch Changes

2.22.2

Patch Changes

2.22.1

Patch Changes

2.22.0

Patch Changes

2.21.0

Minor Changes

  • #1125 465394674 Thanks @b4rtaz! - Breaking change: Deleted default exports from @moralisweb3/common-core, @moralisweb3/aptos-api, @moralisweb3/streams, @moralisweb3/evm-api, @moralisweb3/sol-api and @moralisweb3/auth packages. The moralis package is unchanged.

Patch Changes

2.20.0

Minor Changes

  • #1123 8a3bef8c2 Thanks @b4rtaz! - Breaking change: Deleted support for Cronos Testnet and Avalanche Testnet.

Patch Changes

2.19.1

Patch Changes

2.19.0

Minor Changes

  • #1101 586a71133 Thanks @b4rtaz! - Breaking change: The format() method has been deleted from the EvmAddress class and the EvmChain class. Please format the value by using a proper class property.

Patch Changes

2.18.4

Patch Changes

2.18.3

Patch Changes

2.18.2

Patch Changes

2.18.1

Patch Changes

2.18.0

Minor Changes

Patch Changes

2.17.0

Patch Changes

2.16.1

Patch Changes

2.16.0

Patch Changes

2.15.0

Patch Changes

2.14.3

Patch Changes

2.14.2

Patch Changes

2.14.1

Patch Changes

2.14.0

Patch Changes

2.13.0

Minor Changes

Patch Changes

2.12.0

Patch Changes

2.11.1

Patch Changes

2.11.0

Patch Changes

2.10.3

Patch Changes

2.10.2

Patch Changes

  • #912 26848dc2d Thanks @ErnoW! - Update api types to include latest features and fixes of evmApi and streams. This includes:

    • removal of deprecated subdomain and providerUrl params
    • evm endpooint for getMultipleNFTs
    • evm endpoint updated for getNFTContractTransfers to include fromBlock, toBlock, fromDate and toDate params
    • streams support for getNativeBalances
  • Updated dependencies [26848dc2d]:

2.10.1

Patch Changes

2.10.0

Patch Changes

2.9.0

Patch Changes

2.8.2

Patch Changes

2.8.1

Patch Changes

2.8.0

Minor Changes

  • #777 f1336a35 Thanks @ErnoW! - Move @moralisweb3/core package to @moralisweb3/common-core
  • #846 1374573d Thanks @ErnoW! - # Api responses (breaking change)

    For any api call, you get a resultAdapter response. The value of the toJSON() value has changed. Now it is the same value as .raw. Previously this caused a lot of confusion, and as both return a json. The value of this method has changed. So if you used .toJSON() on an api result you can:

    • Use .result, this will probably contain dataTypes with lots of utility functions. If you only care about the data, you can call .format() or .toJSON() on this datatype. This is the prefered way as it provides you wilt additional utilites and extra properties. We suggest you to use Typescript, to easily see the available properties/methods on these datatypes.
    • Or. use the new values (or values from .raw), these values are identical as they are provided by the internal api, without any data transformation. The types might be different than before, so please check this (we suggest to use Typescript, as all responses are typed, otherwise you can log the output and see any differences)

    Package name changes (deprecated, upcomming breaking change)

    If you're using some of our internal packages @moralisweb3/core for example then these names have been changed to differentiate between server-side packages, and packages that are compatible with client-side and server-side. We name these common-*. This is a first step to provide better client-side support:

    Migration guide

    • @moralisweb3/core -> @moralisweb3/common-core
    • @moralisweb3/evm-utils -> @moralisweb3/common-evm-utils
    • @moralisweb3/sol-utils -> @moralisweb3/common-sol-utils

    Change your dependencies in package.json and the corresponding imports in your code to the new names.

    For the time being, the old packages will remain, and we use them to forward to the common-* package, this will be removed in a future version, so please update to the new package name.

    NextJs package

    For easy integration we created a nextJs package. See packages/next. This contains:

    • hooks to all api endpoints
    • adapter to integrate into NextJs authentication via Moralis Auth

    For a demo check out demos/nextjs

    Operation types

    The parameters and return types are now exported for every api operation. These are exported from

    • moralis/common-evm-utils for evm api methods
    • moralis/common-sol-utils for sol api methods
    • moralis/common-auth-utils for auth methods
    • moralis/common-streams-utils for streams methods

    For example:

    import Moralis from 'moralis';
    import { GetContractNFTsRequest, EvmChain, GetContractNFTsResponse } from 'moralis/common-evm-utils';
    
    const getBlockOptions: GetContractNFTsRequest = {
      address: '0xd8da6bf26964af9d7eed9e03e53415d37aa96045',
      chain: EvmChain.ETHEREUM,
    };
    
    let result: GetContractNFTsResponse;
    
    const response = await Moralis.EvmApi.nft.getContractNFTs(getBlockOptions);
    result = response.result;

    Dataytypes support in client-side projects

    As a first step to provide better client-side support, all datatypes are now usable in server-side and client-side.

Patch Changes

2.7.4

Patch Changes

2.7.3

Patch Changes

2.7.2

Patch Changes

2.7.1

Patch Changes

2.7.0

Minor Changes

  • #782 07c8ca69 Thanks @sogunshola! - Incuded parse server package with streams plugin implementation and added document builder to streams package.
  • #782 07c8ca69 Thanks @sogunshola! - Included parse server package and added document builder logic to streams package

Patch Changes

2.6.7

Patch Changes

2.6.6

Patch Changes

2.6.5

Patch Changes

2.6.4

Patch Changes

2.6.3

Patch Changes

2.6.2

Patch Changes

  • ed6dfb2e Thanks @ErnoW! - Fix put call to post call for Moralis.Streams.addAddress

2.6.1

Patch Changes

  • #715 f3cd2b5c Thanks @ErnoW! - Update types according to api changes: remove address and tokenAddress, add includeContractLogs, includeInternalTxs and allAddresses flags, and mape topic0 an array
  • #714 42893723 Thanks @ErnoW! - Rename network param to networkType for Moralis.Streams and Moralis.Auth, to communicate more clearly the purpose of this param. Also make this value optional and default to "evm"

2.6.0

Minor Changes

  • #707 683b6ce8 Thanks @ErnoW! - Add endpoints to attach, delete or get addresses to streams via Moralis.Streams.addAddress, Moralis.Streams.getAddresses, and Moralis.Streams.deleteAddress

Patch Changes

2.5.8

Patch Changes

2.5.7

Patch Changes

2.5.6

Patch Changes

2.5.5

Patch Changes

2.5.4

Patch Changes

2.5.3

Patch Changes

2.5.2

Patch Changes

2.5.1

Patch Changes

2.5.0

Minor Changes

  • #683 cd9a9ce5 Thanks @ErnoW! - Add Moralis.Streams.retry() to retry failed webhooks, and add Moralis.Streams.updateStatus() to update the status of a webhook.
  • #677 b5f3bc77 Thanks @ErnoW! - Add Moralis.Streams.getHistory to get all failed webhooks

Patch Changes

2.4.0

Minor Changes

  • #658 7fffd1e4 Thanks @sogunshola! - Intergrating stream API in code base, creating a new package @moralisweb3/streams

Patch Changes