Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

v2.3.0

Compare
Choose a tag to compare
@alexeychr alexeychr released this 31 May 10:59
· 99 commits to main since this release
e81c2c2

What's Changed

  • feature: send transaction with signed transaction by @mncdg in #77
  • feat: Fantom blockchain now supported for taking orders (to/from) by @mncdg in #87

What's New

This release introduces the support of Fantom blockchain. To start fulfilling orders from/to Fantom, you need to add the new section in your configuration file, as stated in sample.config.ts:

chains: [
  // ... 

    {
      chain: ChainId.Fantom,
      chainRpc: `${process.env.FANTOM_RPC}`,

      beneficiary: `${process.env.FANTOM_BENEFICIARY}`,
      takerPrivateKey: `${process.env.FANTOM_TAKER_PRIVATE_KEY}`,
      unlockAuthorityPrivateKey: `${process.env.FANTOM_UNLOCK_AUTHORITY_PRIVATE_KEY}`,
    },
]

Additionally, add the following new environment variables to your .env file, as stated in sample.env:

FANTOM_RPC=https://
FANTOM_TAKER_PRIVATE_KEY=
FANTOM_UNLOCK_AUTHORITY_PRIVATE_KEY=
FANTOM_BENEFICIARY=0x...

Full Changelog: v2.2.3...v2.3.0