diff --git a/blockchain/contracts/hardhat.config.ts b/blockchain/contracts/hardhat.config.ts index 6df24400..1d9a89c2 100644 --- a/blockchain/contracts/hardhat.config.ts +++ b/blockchain/contracts/hardhat.config.ts @@ -144,6 +144,15 @@ const config: HardhatUserConfig = { }), chainId: 175200, // @ts-ignore + stylusContractsForTests: { + p256: + process.env.LIT_STYLUS_P256_CONTRACT_ADDRESS || + '0x19c5c9de5234A35BDfCD7d201361D0d874B6E439', // this is a random empty address - the p256 precompile is never actually used anywhere so we just need a placeholder address here. + k256: + process.env.LIT_STYLUS_K256_CONTRACT_ADDRESS || + '0x029bedeacaf6821ce9a6bd7c8ac73350f24a014f', + }, + // @ts-ignore wlitAddress: '0x0996A48f8cc3c7c52Caf10d34c804eF5C9E7748B', trustedForwarderAddress: '0xa6A0Db95022e7859f1dff81D0Fedd5f9e38f042D', },