This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
v2.3.0
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