mirror of
https://github.com/zama-ai/fhevm-solidity.git
synced 2026-04-17 03:00:47 -04:00
* 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
23 lines
479 B
TypeScript
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;
|
|
}
|