Files
fhevm-solidity/test/types.ts
jat 367290f93d feat: use latest core contracts, updated lib API, renamed to fhevm an… (#745)
* feat: use latest core contracts, updated lib API, renamed to fhevm and fhe

chore: add dummy addresses for CI

test: add tests for makePubliclyDecryptable method

* chore: update package-lock.json for linux

* chore: update package-lock.json

* fix: solidity comments (#746)

* chore: update oracle version

* chore: update fhevm core-contracts version

* feat: update fhevm sdk and mocked userDecrypt

* chore: fix coverage
2025-04-19 14:45:30 +02:00

23 lines
479 B
TypeScript

import type { FhevmInstance } from '@fhevm/sdk';
import { EncryptedERC20, Rand } from '../types';
import type { Signers } from './signers';
declare module 'mocha' {
export interface Context {
signers: Signers;
contractAddress: string;
instances: FhevmInstances;
erc20: EncryptedERC20;
rand: Rand;
}
}
export interface FhevmInstances {
alice: FhevmInstance;
bob: FhevmInstance;
carol: FhevmInstance;
dave: FhevmInstance;
eve: FhevmInstance;
}