Releases: iExec-Nox/nox-hardhat-plugin
Releases · iExec-Nox/nox-hardhat-plugin
Release list
v0.2.0
0.2.0 (2026-07-29)
⚠ BREAKING CHANGES
- nox:
nox.connect()now requires aNetworkConnectionargument instead of taking none, and returns a standalone object (noxComputeAddress/handleGatewayUrl/encryptInput/decrypt/publicDecrypt) rather than merging those onto the connection — use.viem/.ethers/.provider/.close()directly off the connection you passed in.noxno longer exposesencryptInput,decrypt,publicDecrypt,noxComputeAddress, orhandleGatewayUrlas top-level members. The plugin no longer overrides Hardhat'stesttask, sonox.skipTestOverrideconfig and hardhat test auto-starting the local stack are gone; callnox.connect()(e.g. in a fixture/setup) to start it instead. NOX_COMPUTE_ADDRESS,handleGatewayUrl, andRPC_URLare no longer exported from the package.@iexec-nox/nox-protocol-contractsis no longer bundled as a direct dependency of the plugin — it's now a peerDependency, so consuming projects must install it themselves.
🚀 Added
- nox: add per-network config for connecting to an existing stack (#37) (1adcb32)
- nox: make nox.connect() the entry point for connecting to a Nox stack in any hardhat script (#40) (f9588fa)
- resolve NoxCompute address using Nox.sol lib from consumer's @iexec-nox/nox-protocol-contracts (#35) (d9049cc)