@enclave-e3/contracts 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -2
- package/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json +135 -0
- package/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/artifacts.d.ts +27 -0
- package/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.json +77 -0
- package/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +126 -0
- package/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/artifacts.d.ts +43 -0
- package/artifacts/build-info/solc-0_8_28-5150b9e6b6cf4df4986fccba97bea37a16fdfebc.json +311 -0
- package/artifacts/build-info/solc-0_8_28-5150b9e6b6cf4df4986fccba97bea37a16fdfebc.output.json +1 -0
- package/artifacts/contracts/Enclave.sol/Enclave.json +239 -147
- package/artifacts/contracts/Enclave.sol/artifacts.d.ts +6 -6
- package/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json +881 -0
- package/artifacts/contracts/interfaces/IBondingRegistry.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json +326 -10
- package/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/artifacts.d.ts +2 -2
- package/artifacts/contracts/interfaces/IComputeProvider.sol/IComputeProvider.json +1 -1
- package/artifacts/contracts/interfaces/IComputeProvider.sol/artifacts.d.ts +1 -1
- package/artifacts/contracts/interfaces/IDecryptionVerifier.sol/IDecryptionVerifier.json +1 -1
- package/artifacts/contracts/interfaces/IDecryptionVerifier.sol/artifacts.d.ts +1 -1
- package/artifacts/contracts/interfaces/IE3Program.sol/IE3Program.json +21 -3
- package/artifacts/contracts/interfaces/IE3Program.sol/artifacts.d.ts +2 -2
- package/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json +247 -27
- package/artifacts/contracts/interfaces/IEnclave.sol/artifacts.d.ts +2 -2
- package/artifacts/contracts/interfaces/{IRegistryFilter.sol/IRegistryFilter.json → ISlashVerifier.sol/ISlashVerifier.json} +10 -10
- package/artifacts/contracts/interfaces/ISlashVerifier.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json +759 -0
- package/artifacts/contracts/interfaces/ISlashingManager.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/lib/ExitQueueLib.sol/ExitQueueLib.json +116 -0
- package/artifacts/contracts/lib/ExitQueueLib.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/registry/BondingRegistry.sol/BondingRegistry.json +1217 -0
- package/artifacts/contracts/registry/BondingRegistry.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json +351 -57
- package/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/artifacts.d.ts +6 -6
- package/artifacts/contracts/slashing/SlashingManager.sol/SlashingManager.json +1107 -0
- package/artifacts/contracts/slashing/SlashingManager.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistry.json +328 -12
- package/artifacts/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistryEmptyKey.json +328 -12
- package/artifacts/contracts/test/MockCiphernodeRegistry.sol/artifacts.d.ts +8 -8
- package/artifacts/contracts/test/MockComputeProvider.sol/MockComputeProvider.json +4 -4
- package/artifacts/contracts/test/MockComputeProvider.sol/artifacts.d.ts +4 -4
- package/artifacts/contracts/test/MockDecryptionVerifier.sol/MockDecryptionVerifier.json +3 -3
- package/artifacts/contracts/test/MockDecryptionVerifier.sol/artifacts.d.ts +3 -3
- package/artifacts/contracts/test/MockE3Program.sol/MockE3Program.json +26 -32
- package/artifacts/contracts/test/MockE3Program.sol/artifacts.d.ts +4 -4
- package/artifacts/contracts/test/MockSlashingVerifier.sol/MockSlashingVerifier.json +38 -0
- package/artifacts/contracts/test/MockSlashingVerifier.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/test/MockStableToken.sol/MockUSDC.json +425 -0
- package/artifacts/contracts/test/MockStableToken.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/token/EnclaveTicketToken.sol/EnclaveTicketToken.json +1222 -0
- package/artifacts/contracts/token/EnclaveTicketToken.sol/artifacts.d.ts +27 -0
- package/artifacts/contracts/token/EnclaveToken.sol/EnclaveToken.json +1460 -0
- package/artifacts/contracts/token/EnclaveToken.sol/artifacts.d.ts +27 -0
- package/artifacts/poseidon-solidity/PoseidonT3.sol/PoseidonT3.json +3 -3
- package/artifacts/poseidon-solidity/PoseidonT3.sol/artifacts.d.ts +3 -3
- package/contracts/Enclave.sol +230 -81
- package/contracts/interfaces/IBondingRegistry.sol +446 -0
- package/contracts/interfaces/ICiphernodeRegistry.sol +153 -9
- package/contracts/interfaces/IComputeProvider.sol +12 -2
- package/contracts/interfaces/IDecryptionVerifier.sol +11 -6
- package/contracts/interfaces/IE3.sol +21 -17
- package/contracts/interfaces/IE3Program.sol +30 -17
- package/contracts/interfaces/IEnclave.sol +95 -21
- package/contracts/interfaces/ISlashVerifier.sol +23 -0
- package/contracts/interfaces/ISlashingManager.sol +426 -0
- package/contracts/lib/ExitQueueLib.sol +490 -0
- package/contracts/registry/BondingRegistry.sol +737 -0
- package/contracts/registry/CiphernodeRegistryOwnable.sol +393 -26
- package/contracts/slashing/SlashingManager.sol +367 -0
- package/contracts/test/MockCiphernodeRegistry.sol +118 -24
- package/contracts/test/MockComputeProvider.sol +2 -2
- package/contracts/test/MockE3Program.sol +17 -14
- package/contracts/test/MockSlashingVerifier.sol +19 -0
- package/contracts/test/MockStableToken.sol +28 -0
- package/contracts/token/EnclaveTicketToken.sol +243 -0
- package/contracts/token/EnclaveToken.sol +267 -0
- package/dist/hardhat.config.d.ts.map +1 -1
- package/dist/hardhat.config.js +35 -16
- package/dist/ignition/modules/{mockInputValidator.d.ts → bondingRegistry.d.ts} +1 -1
- package/dist/ignition/modules/bondingRegistry.d.ts.map +1 -0
- package/dist/ignition/modules/bondingRegistry.js +35 -0
- package/dist/ignition/modules/ciphernodeRegistry.d.ts.map +1 -1
- package/dist/ignition/modules/ciphernodeRegistry.js +12 -2
- package/dist/ignition/modules/enclave.d.ts.map +1 -1
- package/dist/ignition/modules/enclave.js +16 -7
- package/dist/ignition/modules/{naiveRegistryFilter.d.ts → enclaveTicketToken.d.ts} +1 -1
- package/dist/ignition/modules/enclaveTicketToken.d.ts.map +1 -0
- package/dist/ignition/modules/enclaveTicketToken.js +17 -0
- package/dist/ignition/modules/enclaveToken.d.ts +3 -0
- package/dist/ignition/modules/enclaveToken.d.ts.map +1 -0
- package/dist/ignition/modules/{mockInputValidator.js → enclaveToken.js} +4 -4
- package/dist/ignition/modules/mockCiphernodeRegistry.d.ts.map +1 -1
- package/dist/ignition/modules/mockCiphernodeRegistry.js +0 -1
- package/dist/ignition/modules/mockCiphernodeRegistryEmptyKey.d.ts.map +1 -1
- package/dist/ignition/modules/mockCiphernodeRegistryEmptyKey.js +0 -1
- package/dist/ignition/modules/mockComputeProvider.d.ts.map +1 -1
- package/dist/ignition/modules/mockComputeProvider.js +0 -1
- package/dist/ignition/modules/mockDecryptionVerifier.d.ts.map +1 -1
- package/dist/ignition/modules/mockDecryptionVerifier.js +0 -1
- package/dist/ignition/modules/mockE3Program.d.ts.map +1 -1
- package/dist/ignition/modules/mockE3Program.js +1 -3
- package/dist/ignition/modules/mockSlashingVerifier.d.ts +3 -0
- package/dist/ignition/modules/mockSlashingVerifier.d.ts.map +1 -0
- package/dist/ignition/modules/mockSlashingVerifier.js +10 -0
- package/dist/ignition/modules/mockStableToken.d.ts +3 -0
- package/dist/ignition/modules/mockStableToken.d.ts.map +1 -0
- package/dist/ignition/modules/mockStableToken.js +11 -0
- package/dist/ignition/modules/poseidonT3.d.ts.map +1 -1
- package/dist/ignition/modules/poseidonT3.js +0 -1
- package/dist/ignition/modules/slashingManager.d.ts +3 -0
- package/dist/ignition/modules/slashingManager.d.ts.map +1 -0
- package/dist/ignition/modules/slashingManager.js +16 -0
- package/dist/scripts/cleanIgnitionState.d.ts +12 -0
- package/dist/scripts/cleanIgnitionState.d.ts.map +1 -0
- package/dist/scripts/cleanIgnitionState.js +41 -0
- package/dist/scripts/deployAndSave/bondingRegistry.d.ts +38 -0
- package/dist/scripts/deployAndSave/bondingRegistry.d.ts.map +1 -0
- package/dist/scripts/deployAndSave/bondingRegistry.js +133 -0
- package/dist/scripts/deployAndSave/ciphernodeRegistryOwnable.d.ts +11 -1
- package/dist/scripts/deployAndSave/ciphernodeRegistryOwnable.d.ts.map +1 -1
- package/dist/scripts/deployAndSave/ciphernodeRegistryOwnable.js +76 -19
- package/dist/scripts/deployAndSave/enclave.d.ts +16 -2
- package/dist/scripts/deployAndSave/enclave.d.ts.map +1 -1
- package/dist/scripts/deployAndSave/enclave.js +89 -22
- package/dist/scripts/deployAndSave/enclaveTicketToken.d.ts +20 -0
- package/dist/scripts/deployAndSave/enclaveTicketToken.d.ts.map +1 -0
- package/dist/scripts/deployAndSave/enclaveTicketToken.js +41 -0
- package/dist/scripts/deployAndSave/enclaveToken.d.ts +18 -0
- package/dist/scripts/deployAndSave/enclaveToken.d.ts.map +1 -0
- package/dist/scripts/deployAndSave/enclaveToken.js +57 -0
- package/dist/scripts/deployAndSave/mockComputeProvider.d.ts.map +1 -1
- package/dist/scripts/deployAndSave/mockComputeProvider.js +5 -5
- package/dist/scripts/deployAndSave/mockDecryptionVerifier.d.ts.map +1 -1
- package/dist/scripts/deployAndSave/mockDecryptionVerifier.js +5 -5
- package/dist/scripts/deployAndSave/mockProgram.d.ts +1 -2
- package/dist/scripts/deployAndSave/mockProgram.d.ts.map +1 -1
- package/dist/scripts/deployAndSave/mockProgram.js +7 -19
- package/dist/scripts/deployAndSave/mockStableToken.d.ts +18 -0
- package/dist/scripts/deployAndSave/mockStableToken.d.ts.map +1 -0
- package/dist/scripts/deployAndSave/mockStableToken.js +36 -0
- package/dist/scripts/deployAndSave/poseidonT3.d.ts +11 -0
- package/dist/scripts/deployAndSave/poseidonT3.d.ts.map +1 -0
- package/dist/scripts/deployAndSave/poseidonT3.js +41 -0
- package/dist/scripts/deployAndSave/slashingManager.d.ts +19 -0
- package/dist/scripts/deployAndSave/slashingManager.d.ts.map +1 -0
- package/dist/scripts/deployAndSave/slashingManager.js +38 -0
- package/dist/scripts/deployEnclave.d.ts.map +1 -1
- package/dist/scripts/deployEnclave.js +109 -23
- package/dist/scripts/deployMocks.d.ts +0 -1
- package/dist/scripts/deployMocks.d.ts.map +1 -1
- package/dist/scripts/deployMocks.js +3 -6
- package/dist/scripts/index.d.ts +7 -2
- package/dist/scripts/index.d.ts.map +1 -1
- package/dist/scripts/index.js +7 -2
- package/dist/scripts/proxy.d.ts +22 -0
- package/dist/scripts/proxy.d.ts.map +1 -0
- package/dist/scripts/proxy.js +36 -0
- package/dist/scripts/runVerification.d.ts +2 -0
- package/dist/scripts/runVerification.d.ts.map +1 -0
- package/dist/scripts/runVerification.js +16 -0
- package/dist/scripts/upgrade/bondingRegistry.d.ts +6 -0
- package/dist/scripts/upgrade/bondingRegistry.d.ts.map +1 -0
- package/dist/scripts/upgrade/bondingRegistry.js +49 -0
- package/dist/scripts/upgrade/ciphernodeRegistryOwnable.d.ts +6 -0
- package/dist/scripts/upgrade/ciphernodeRegistryOwnable.d.ts.map +1 -0
- package/dist/scripts/upgrade/ciphernodeRegistryOwnable.js +52 -0
- package/dist/scripts/upgrade/enclave.d.ts +6 -0
- package/dist/scripts/upgrade/enclave.d.ts.map +1 -0
- package/dist/scripts/upgrade/enclave.js +49 -0
- package/dist/scripts/utils.d.ts +51 -2
- package/dist/scripts/utils.d.ts.map +1 -1
- package/dist/scripts/utils.js +67 -4
- package/dist/scripts/verify.d.ts +6 -0
- package/dist/scripts/verify.d.ts.map +1 -0
- package/dist/scripts/verify.js +142 -0
- package/dist/tasks/ciphernode.d.ts +2 -0
- package/dist/tasks/ciphernode.d.ts.map +1 -1
- package/dist/tasks/ciphernode.js +290 -19
- package/dist/tasks/enclave.d.ts.map +1 -1
- package/dist/tasks/enclave.js +76 -31
- package/dist/test/Enclave.spec.js +377 -370
- package/dist/test/Registry/BondingRegistry.spec.d.ts +2 -0
- package/dist/test/Registry/BondingRegistry.spec.d.ts.map +1 -0
- package/dist/test/Registry/BondingRegistry.spec.js +684 -0
- package/dist/test/Registry/CiphernodeRegistryOwnable.spec.d.ts.map +1 -0
- package/dist/test/Registry/CiphernodeRegistryOwnable.spec.js +374 -0
- package/dist/test/Slashing/SlashingManager.spec.d.ts +2 -0
- package/dist/test/Slashing/SlashingManager.spec.d.ts.map +1 -0
- package/dist/test/Slashing/SlashingManager.spec.js +672 -0
- package/dist/types/@openzeppelin/contracts/index.d.ts +3 -0
- package/dist/types/@openzeppelin/contracts/index.d.ts.map +1 -0
- package/dist/types/@openzeppelin/contracts/proxy/index.d.ts +3 -0
- package/dist/types/@openzeppelin/contracts/proxy/index.d.ts.map +1 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.d.ts +97 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.d.ts.map +1 -0
- package/dist/types/{contracts/registry/NaiveRegistryFilter.js → @openzeppelin/contracts/proxy/transparent/ProxyAdmin.js} +0 -4
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +81 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts.map +1 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.js +12 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +52 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts.map +1 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.js +8 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +3 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts.map +1 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/index.d.ts +4 -0
- package/dist/types/@openzeppelin/contracts/proxy/transparent/index.d.ts.map +1 -0
- package/dist/types/@openzeppelin/index.d.ts +3 -0
- package/dist/types/@openzeppelin/index.d.ts.map +1 -0
- package/dist/types/contracts/Enclave.d.ts +126 -53
- package/dist/types/contracts/Enclave.d.ts.map +1 -1
- package/dist/types/contracts/Enclave.js +12 -0
- package/dist/types/contracts/index.d.ts +6 -0
- package/dist/types/contracts/index.d.ts.map +1 -1
- package/dist/types/contracts/interfaces/IBondingRegistry.d.ts +622 -0
- package/dist/types/contracts/interfaces/IBondingRegistry.d.ts.map +1 -0
- package/dist/types/contracts/interfaces/IBondingRegistry.js +24 -0
- package/dist/types/contracts/interfaces/ICiphernodeRegistry.d.ts +245 -15
- package/dist/types/contracts/interfaces/ICiphernodeRegistry.d.ts.map +1 -1
- package/dist/types/contracts/interfaces/ICiphernodeRegistry.js +16 -0
- package/dist/types/contracts/interfaces/IE3Program.d.ts +20 -10
- package/dist/types/contracts/interfaces/IE3Program.d.ts.map +1 -1
- package/dist/types/contracts/interfaces/IEnclave.d.ts +149 -20
- package/dist/types/contracts/interfaces/IEnclave.d.ts.map +1 -1
- package/dist/types/contracts/interfaces/IEnclave.js +12 -0
- package/dist/types/contracts/interfaces/{IRegistryFilter.d.ts → ISlashVerifier.d.ts} +16 -16
- package/dist/types/contracts/interfaces/ISlashVerifier.d.ts.map +1 -0
- package/dist/types/contracts/interfaces/ISlashVerifier.js +1 -0
- package/dist/types/contracts/interfaces/ISlashingManager.d.ts +384 -0
- package/dist/types/contracts/interfaces/ISlashingManager.d.ts.map +1 -0
- package/dist/types/contracts/interfaces/ISlashingManager.js +24 -0
- package/dist/types/contracts/interfaces/index.d.ts +3 -2
- package/dist/types/contracts/interfaces/index.d.ts.map +1 -1
- package/dist/types/contracts/lib/ExitQueueLib.d.ts +73 -0
- package/dist/types/contracts/lib/ExitQueueLib.d.ts.map +1 -0
- package/dist/types/contracts/lib/ExitQueueLib.js +12 -0
- package/dist/types/contracts/lib/index.d.ts +2 -0
- package/dist/types/contracts/lib/index.d.ts.map +1 -0
- package/dist/types/contracts/lib/index.js +1 -0
- package/dist/types/contracts/registry/BondingRegistry.d.ts +821 -0
- package/dist/types/contracts/registry/BondingRegistry.d.ts.map +1 -0
- package/dist/types/contracts/registry/BondingRegistry.js +44 -0
- package/dist/types/contracts/registry/CiphernodeRegistryOwnable.d.ts +194 -34
- package/dist/types/contracts/registry/CiphernodeRegistryOwnable.d.ts.map +1 -1
- package/dist/types/contracts/registry/CiphernodeRegistryOwnable.js +20 -0
- package/dist/types/contracts/registry/index.d.ts +1 -1
- package/dist/types/contracts/registry/index.d.ts.map +1 -1
- package/dist/types/contracts/slashing/SlashingManager.d.ts +592 -0
- package/dist/types/contracts/slashing/SlashingManager.d.ts.map +1 -0
- package/dist/types/contracts/slashing/SlashingManager.js +36 -0
- package/dist/types/contracts/slashing/index.d.ts +2 -0
- package/dist/types/contracts/slashing/index.d.ts.map +1 -0
- package/dist/types/contracts/slashing/index.js +1 -0
- package/dist/types/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistry.d.ts +247 -17
- package/dist/types/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistry.d.ts.map +1 -1
- package/dist/types/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistry.js +16 -0
- package/dist/types/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistryEmptyKey.d.ts +247 -17
- package/dist/types/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistryEmptyKey.d.ts.map +1 -1
- package/dist/types/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistryEmptyKey.js +16 -0
- package/dist/types/contracts/test/MockE3Program.d.ts +20 -14
- package/dist/types/contracts/test/MockE3Program.d.ts.map +1 -1
- package/dist/types/contracts/test/{MockInputValidator.d.ts → MockSlashingVerifier.d.ts} +15 -15
- package/dist/types/contracts/test/MockSlashingVerifier.d.ts.map +1 -0
- package/dist/types/contracts/test/MockSlashingVerifier.js +1 -0
- package/dist/types/contracts/test/MockStableToken.sol/MockUSDC.d.ts +227 -0
- package/dist/types/contracts/test/MockStableToken.sol/MockUSDC.d.ts.map +1 -0
- package/dist/types/contracts/test/MockStableToken.sol/MockUSDC.js +12 -0
- package/dist/types/contracts/test/MockStableToken.sol/index.d.ts +2 -0
- package/dist/types/contracts/test/MockStableToken.sol/index.d.ts.map +1 -0
- package/dist/types/contracts/test/MockStableToken.sol/index.js +1 -0
- package/dist/types/contracts/test/index.d.ts +3 -3
- package/dist/types/contracts/test/index.d.ts.map +1 -1
- package/dist/types/contracts/token/EnclaveTicketToken.d.ts +574 -0
- package/dist/types/contracts/token/EnclaveTicketToken.d.ts.map +1 -0
- package/dist/types/contracts/token/EnclaveTicketToken.js +24 -0
- package/dist/types/contracts/token/EnclaveToken.d.ts +775 -0
- package/dist/types/contracts/token/EnclaveToken.d.ts.map +1 -0
- package/dist/types/contracts/token/EnclaveToken.js +48 -0
- package/dist/types/contracts/token/index.d.ts +3 -0
- package/dist/types/contracts/token/index.d.ts.map +1 -0
- package/dist/types/contracts/token/index.js +1 -0
- package/dist/types/factories/@openzeppelin/contracts/index.d.ts +2 -0
- package/dist/types/factories/@openzeppelin/contracts/index.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/contracts/index.js +4 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/index.d.ts +2 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/index.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/index.js +4 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +118 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.js +157 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +57 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.js +78 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +105 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.js +141 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +3 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.js +5 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +3 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/contracts/proxy/transparent/index.js +5 -0
- package/dist/types/factories/@openzeppelin/index.d.ts +2 -0
- package/dist/types/factories/@openzeppelin/index.d.ts.map +1 -0
- package/dist/types/factories/@openzeppelin/index.js +4 -0
- package/dist/types/factories/contracts/Enclave__factory.d.ts +190 -104
- package/dist/types/factories/contracts/Enclave__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/Enclave__factory.js +241 -134
- package/dist/types/factories/contracts/index.d.ts +3 -0
- package/dist/types/factories/contracts/index.d.ts.map +1 -1
- package/dist/types/factories/contracts/index.js +3 -0
- package/dist/types/factories/contracts/interfaces/IBondingRegistry__factory.d.ts +678 -0
- package/dist/types/factories/contracts/interfaces/IBondingRegistry__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/interfaces/IBondingRegistry__factory.js +882 -0
- package/dist/types/factories/contracts/interfaces/ICiphernodeRegistry__factory.d.ts +253 -9
- package/dist/types/factories/contracts/interfaces/ICiphernodeRegistry__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/interfaces/ICiphernodeRegistry__factory.js +325 -9
- package/dist/types/factories/contracts/interfaces/IE3Program__factory.d.ts +16 -2
- package/dist/types/factories/contracts/interfaces/IE3Program__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/interfaces/IE3Program__factory.js +20 -2
- package/dist/types/factories/contracts/interfaces/IEnclave__factory.d.ts +190 -24
- package/dist/types/factories/contracts/interfaces/IEnclave__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/interfaces/IEnclave__factory.js +246 -26
- package/dist/types/factories/contracts/interfaces/ISlashVerifier__factory.d.ts +26 -0
- package/dist/types/factories/contracts/interfaces/ISlashVerifier__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/interfaces/{IRegistryFilter__factory.js → ISlashVerifier__factory.js} +7 -7
- package/dist/types/factories/contracts/interfaces/ISlashingManager__factory.d.ts +594 -0
- package/dist/types/factories/contracts/interfaces/ISlashingManager__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/interfaces/ISlashingManager__factory.js +760 -0
- package/dist/types/factories/contracts/interfaces/index.d.ts +3 -2
- package/dist/types/factories/contracts/interfaces/index.d.ts.map +1 -1
- package/dist/types/factories/contracts/interfaces/index.js +3 -2
- package/dist/types/factories/contracts/lib/ExitQueueLib__factory.d.ts +107 -0
- package/dist/types/factories/contracts/lib/ExitQueueLib__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/lib/ExitQueueLib__factory.js +138 -0
- package/dist/types/factories/contracts/lib/index.d.ts +2 -0
- package/dist/types/factories/contracts/lib/index.d.ts.map +1 -0
- package/dist/types/factories/contracts/lib/index.js +4 -0
- package/dist/types/factories/contracts/registry/BondingRegistry__factory.d.ts +958 -0
- package/dist/types/factories/contracts/registry/BondingRegistry__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/registry/BondingRegistry__factory.js +1239 -0
- package/dist/types/factories/contracts/registry/CiphernodeRegistryOwnable__factory.d.ts +272 -40
- package/dist/types/factories/contracts/registry/CiphernodeRegistryOwnable__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/registry/CiphernodeRegistryOwnable__factory.js +343 -49
- package/dist/types/factories/contracts/registry/index.d.ts +1 -1
- package/dist/types/factories/contracts/registry/index.d.ts.map +1 -1
- package/dist/types/factories/contracts/registry/index.js +1 -1
- package/dist/types/factories/contracts/slashing/SlashingManager__factory.d.ts +879 -0
- package/dist/types/factories/contracts/slashing/SlashingManager__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/slashing/SlashingManager__factory.js +1129 -0
- package/dist/types/factories/contracts/slashing/index.d.ts +2 -0
- package/dist/types/factories/contracts/slashing/index.d.ts.map +1 -0
- package/dist/types/factories/contracts/slashing/index.js +4 -0
- package/dist/types/factories/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistryEmptyKey__factory.d.ts +254 -10
- package/dist/types/factories/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistryEmptyKey__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistryEmptyKey__factory.js +326 -10
- package/dist/types/factories/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistry__factory.d.ts +254 -10
- package/dist/types/factories/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistry__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/test/MockCiphernodeRegistry.sol/MockCiphernodeRegistry__factory.js +326 -10
- package/dist/types/factories/contracts/test/MockComputeProvider__factory.d.ts +2 -2
- package/dist/types/factories/contracts/test/MockComputeProvider__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/test/MockComputeProvider__factory.js +2 -2
- package/dist/types/factories/contracts/test/MockDecryptionVerifier__factory.d.ts +1 -1
- package/dist/types/factories/contracts/test/MockDecryptionVerifier__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/test/MockDecryptionVerifier__factory.js +1 -1
- package/dist/types/factories/contracts/test/MockE3Program__factory.d.ts +23 -27
- package/dist/types/factories/contracts/test/MockE3Program__factory.d.ts.map +1 -1
- package/dist/types/factories/contracts/test/MockE3Program__factory.js +28 -34
- package/dist/types/factories/contracts/test/MockSlashingVerifier__factory.d.ts +43 -0
- package/dist/types/factories/contracts/test/MockSlashingVerifier__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/test/MockSlashingVerifier__factory.js +60 -0
- package/dist/types/factories/contracts/test/MockStableToken.sol/MockUSDC__factory.d.ts +338 -0
- package/dist/types/factories/contracts/test/MockStableToken.sol/MockUSDC__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/test/MockStableToken.sol/MockUSDC__factory.js +447 -0
- package/dist/types/factories/contracts/test/MockStableToken.sol/index.d.ts +2 -0
- package/dist/types/factories/contracts/test/MockStableToken.sol/index.d.ts.map +1 -0
- package/dist/types/factories/contracts/test/MockStableToken.sol/index.js +4 -0
- package/dist/types/factories/contracts/test/index.d.ts +2 -2
- package/dist/types/factories/contracts/test/index.d.ts.map +1 -1
- package/dist/types/factories/contracts/test/index.js +2 -2
- package/dist/types/factories/contracts/token/EnclaveTicketToken__factory.d.ts +894 -0
- package/dist/types/factories/contracts/token/EnclaveTicketToken__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/token/EnclaveTicketToken__factory.js +1175 -0
- package/dist/types/factories/contracts/token/EnclaveToken__factory.d.ts +1101 -0
- package/dist/types/factories/contracts/token/EnclaveToken__factory.d.ts.map +1 -0
- package/dist/types/factories/contracts/token/EnclaveToken__factory.js +1439 -0
- package/dist/types/factories/contracts/token/index.d.ts +3 -0
- package/dist/types/factories/contracts/token/index.d.ts.map +1 -0
- package/dist/types/factories/contracts/token/index.js +5 -0
- package/dist/types/factories/index.d.ts +1 -0
- package/dist/types/factories/index.d.ts.map +1 -1
- package/dist/types/factories/index.js +1 -0
- package/dist/types/factories/poseidon-solidity/PoseidonT3__factory.d.ts +1 -1
- package/dist/types/factories/poseidon-solidity/PoseidonT3__factory.d.ts.map +1 -1
- package/dist/types/factories/poseidon-solidity/PoseidonT3__factory.js +1 -1
- package/dist/types/index.d.ts +28 -12
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +13 -6
- package/package.json +30 -21
- package/LICENSE.md +0 -165
- package/artifacts/build-info/solc-0_8_27-9aea5e3f6e25811e781e96c22e8edaf1eb1a01c5.json +0 -130
- package/artifacts/build-info/solc-0_8_27-9aea5e3f6e25811e781e96c22e8edaf1eb1a01c5.output.json +0 -1
- package/artifacts/contracts/interfaces/IInputValidator.sol/IInputValidator.json +0 -38
- package/artifacts/contracts/interfaces/IInputValidator.sol/artifacts.d.ts +0 -27
- package/artifacts/contracts/interfaces/IRegistryFilter.sol/artifacts.d.ts +0 -27
- package/artifacts/contracts/registry/NaiveRegistryFilter.sol/NaiveRegistryFilter.json +0 -309
- package/artifacts/contracts/registry/NaiveRegistryFilter.sol/artifacts.d.ts +0 -27
- package/artifacts/contracts/test/MockInputValidator.sol/MockInputValidator.json +0 -43
- package/artifacts/contracts/test/MockInputValidator.sol/artifacts.d.ts +0 -27
- package/artifacts/contracts/test/MockRegistryFilter.sol/IRegistry.json +0 -37
- package/artifacts/contracts/test/MockRegistryFilter.sol/MockNaiveRegistryFilter.json +0 -262
- package/artifacts/contracts/test/MockRegistryFilter.sol/artifacts.d.ts +0 -43
- package/contracts/interfaces/IInputValidator.sol +0 -18
- package/contracts/interfaces/IRegistryFilter.sol +0 -13
- package/contracts/registry/NaiveRegistryFilter.sol +0 -124
- package/contracts/test/MockInputValidator.sol +0 -29
- package/contracts/test/MockRegistryFilter.sol +0 -117
- package/dist/ignition/modules/mockInputValidator.d.ts.map +0 -1
- package/dist/ignition/modules/naiveRegistryFilter.d.ts.map +0 -1
- package/dist/ignition/modules/naiveRegistryFilter.js +0 -16
- package/dist/scripts/deployAndSave/mockInputValidator.d.ts +0 -6
- package/dist/scripts/deployAndSave/mockInputValidator.d.ts.map +0 -1
- package/dist/scripts/deployAndSave/mockInputValidator.js +0 -18
- package/dist/scripts/deployAndSave/naiveRegistryFilter.d.ts +0 -11
- package/dist/scripts/deployAndSave/naiveRegistryFilter.d.ts.map +0 -1
- package/dist/scripts/deployAndSave/naiveRegistryFilter.js +0 -41
- package/dist/test/CiphernodeRegistry/CiphernodeRegistryOwnable.spec.d.ts.map +0 -1
- package/dist/test/CiphernodeRegistry/CiphernodeRegistryOwnable.spec.js +0 -279
- package/dist/test/CiphernodeRegistry/NaiveRegistryFilter.spec.d.ts +0 -2
- package/dist/test/CiphernodeRegistry/NaiveRegistryFilter.spec.d.ts.map +0 -1
- package/dist/test/CiphernodeRegistry/NaiveRegistryFilter.spec.js +0 -160
- package/dist/types/contracts/interfaces/IInputValidator.d.ts +0 -36
- package/dist/types/contracts/interfaces/IInputValidator.d.ts.map +0 -1
- package/dist/types/contracts/interfaces/IRegistryFilter.d.ts.map +0 -1
- package/dist/types/contracts/registry/NaiveRegistryFilter.d.ts +0 -187
- package/dist/types/contracts/registry/NaiveRegistryFilter.d.ts.map +0 -1
- package/dist/types/contracts/test/MockInputValidator.d.ts.map +0 -1
- package/dist/types/contracts/test/MockRegistryFilter.sol/IRegistry.d.ts +0 -38
- package/dist/types/contracts/test/MockRegistryFilter.sol/IRegistry.d.ts.map +0 -1
- package/dist/types/contracts/test/MockRegistryFilter.sol/MockNaiveRegistryFilter.d.ts +0 -163
- package/dist/types/contracts/test/MockRegistryFilter.sol/MockNaiveRegistryFilter.d.ts.map +0 -1
- package/dist/types/contracts/test/MockRegistryFilter.sol/MockNaiveRegistryFilter.js +0 -8
- package/dist/types/contracts/test/MockRegistryFilter.sol/index.d.ts +0 -3
- package/dist/types/contracts/test/MockRegistryFilter.sol/index.d.ts.map +0 -1
- package/dist/types/factories/contracts/interfaces/IInputValidator__factory.d.ts +0 -26
- package/dist/types/factories/contracts/interfaces/IInputValidator__factory.d.ts.map +0 -1
- package/dist/types/factories/contracts/interfaces/IInputValidator__factory.js +0 -39
- package/dist/types/factories/contracts/interfaces/IRegistryFilter__factory.d.ts +0 -26
- package/dist/types/factories/contracts/interfaces/IRegistryFilter__factory.d.ts.map +0 -1
- package/dist/types/factories/contracts/registry/NaiveRegistryFilter__factory.d.ts +0 -251
- package/dist/types/factories/contracts/registry/NaiveRegistryFilter__factory.d.ts.map +0 -1
- package/dist/types/factories/contracts/registry/NaiveRegistryFilter__factory.js +0 -331
- package/dist/types/factories/contracts/test/MockInputValidator__factory.d.ts +0 -47
- package/dist/types/factories/contracts/test/MockInputValidator__factory.d.ts.map +0 -1
- package/dist/types/factories/contracts/test/MockInputValidator__factory.js +0 -65
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/IRegistry__factory.d.ts +0 -26
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/IRegistry__factory.d.ts.map +0 -1
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/IRegistry__factory.js +0 -38
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/MockNaiveRegistryFilter__factory.d.ts +0 -216
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/MockNaiveRegistryFilter__factory.d.ts.map +0 -1
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/MockNaiveRegistryFilter__factory.js +0 -284
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/index.d.ts +0 -3
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/index.d.ts.map +0 -1
- package/dist/types/factories/contracts/test/MockRegistryFilter.sol/index.js +0 -5
- /package/dist/test/{CiphernodeRegistry → Registry}/CiphernodeRegistryOwnable.spec.d.ts +0 -0
- /package/dist/types/{contracts/test/MockRegistryFilter.sol → @openzeppelin/contracts}/index.js +0 -0
- /package/dist/types/{contracts/interfaces/IInputValidator.js → @openzeppelin/contracts/proxy/index.js} +0 -0
- /package/dist/types/{contracts/interfaces/IRegistryFilter.js → @openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.js} +0 -0
- /package/dist/types/{contracts/test/MockInputValidator.js → @openzeppelin/contracts/proxy/transparent/index.js} +0 -0
- /package/dist/types/{contracts/test/MockRegistryFilter.sol/IRegistry.js → @openzeppelin/index.js} +0 -0
|
@@ -10,13 +10,13 @@ export type E3Struct = {
|
|
|
10
10
|
encryptionSchemeId: BytesLike;
|
|
11
11
|
e3Program: AddressLike;
|
|
12
12
|
e3ProgramParams: BytesLike;
|
|
13
|
-
|
|
13
|
+
customParams: BytesLike;
|
|
14
14
|
decryptionVerifier: AddressLike;
|
|
15
15
|
committeePublicKey: BytesLike;
|
|
16
16
|
ciphertextOutput: BytesLike;
|
|
17
17
|
plaintextOutput: BytesLike;
|
|
18
18
|
};
|
|
19
|
-
export type E3StructOutput = [seed: bigint, threshold: [bigint, bigint], requestBlock: bigint, startWindow: [bigint, bigint], duration: bigint, expiration: bigint, encryptionSchemeId: string, e3Program: string, e3ProgramParams: string,
|
|
19
|
+
export type E3StructOutput = [seed: bigint, threshold: [bigint, bigint], requestBlock: bigint, startWindow: [bigint, bigint], duration: bigint, expiration: bigint, encryptionSchemeId: string, e3Program: string, e3ProgramParams: string, customParams: string, decryptionVerifier: string, committeePublicKey: string, ciphertextOutput: string, plaintextOutput: string] & {
|
|
20
20
|
seed: bigint;
|
|
21
21
|
threshold: [bigint, bigint];
|
|
22
22
|
requestBlock: bigint;
|
|
@@ -26,7 +26,7 @@ export type E3StructOutput = [seed: bigint, threshold: [bigint, bigint], request
|
|
|
26
26
|
encryptionSchemeId: string;
|
|
27
27
|
e3Program: string;
|
|
28
28
|
e3ProgramParams: string;
|
|
29
|
-
|
|
29
|
+
customParams: string;
|
|
30
30
|
decryptionVerifier: string;
|
|
31
31
|
committeePublicKey: string;
|
|
32
32
|
ciphertextOutput: string;
|
|
@@ -34,46 +34,60 @@ export type E3StructOutput = [seed: bigint, threshold: [bigint, bigint], request
|
|
|
34
34
|
};
|
|
35
35
|
export declare namespace IEnclave {
|
|
36
36
|
type E3RequestParamsStruct = {
|
|
37
|
-
filter: AddressLike;
|
|
38
37
|
threshold: [BigNumberish, BigNumberish];
|
|
39
38
|
startWindow: [BigNumberish, BigNumberish];
|
|
40
39
|
duration: BigNumberish;
|
|
41
40
|
e3Program: AddressLike;
|
|
42
41
|
e3ProgramParams: BytesLike;
|
|
43
42
|
computeProviderParams: BytesLike;
|
|
43
|
+
customParams: BytesLike;
|
|
44
44
|
};
|
|
45
|
-
type E3RequestParamsStructOutput = [
|
|
46
|
-
filter: string;
|
|
45
|
+
type E3RequestParamsStructOutput = [threshold: [bigint, bigint], startWindow: [bigint, bigint], duration: bigint, e3Program: string, e3ProgramParams: string, computeProviderParams: string, customParams: string] & {
|
|
47
46
|
threshold: [bigint, bigint];
|
|
48
47
|
startWindow: [bigint, bigint];
|
|
49
48
|
duration: bigint;
|
|
50
49
|
e3Program: string;
|
|
51
50
|
e3ProgramParams: string;
|
|
52
51
|
computeProviderParams: string;
|
|
52
|
+
customParams: string;
|
|
53
53
|
};
|
|
54
54
|
}
|
|
55
55
|
export interface IEnclaveInterface extends Interface {
|
|
56
|
-
getFunction(nameOrSignature: "activate" | "disableE3Program" | "enableE3Program" | "getE3" | "
|
|
57
|
-
getEvent(nameOrSignatureOrTopic: "AllowedE3ProgramsParamsSet" | "CiphernodeRegistrySet" | "CiphertextOutputPublished" | "E3Activated" | "E3ProgramDisabled" | "E3ProgramEnabled" | "E3Requested" | "EncryptionSchemeDisabled" | "EncryptionSchemeEnabled" | "InputPublished" | "MaxDurationSet" | "PlaintextOutputPublished"): EventFragment;
|
|
56
|
+
getFunction(nameOrSignature: "activate" | "disableE3Program" | "disableEncryptionScheme" | "enableE3Program" | "getDecryptionVerifier" | "getE3" | "getE3Quote" | "publishCiphertextOutput" | "publishInput" | "publishPlaintextOutput" | "request" | "setBondingRegistry" | "setCiphernodeRegistry" | "setDecryptionVerifier" | "setE3ProgramsParams" | "setFeeToken" | "setMaxDuration"): FunctionFragment;
|
|
57
|
+
getEvent(nameOrSignatureOrTopic: "AllowedE3ProgramsParamsSet" | "BondingRegistrySet" | "CiphernodeRegistrySet" | "CiphertextOutputPublished" | "E3Activated" | "E3ProgramDisabled" | "E3ProgramEnabled" | "E3Requested" | "EncryptionSchemeDisabled" | "EncryptionSchemeEnabled" | "FeeTokenSet" | "InputPublished" | "MaxDurationSet" | "PlaintextOutputPublished" | "RewardsDistributed"): EventFragment;
|
|
58
58
|
encodeFunctionData(functionFragment: 'activate', values: [BigNumberish, BytesLike]): string;
|
|
59
59
|
encodeFunctionData(functionFragment: 'disableE3Program', values: [AddressLike]): string;
|
|
60
|
+
encodeFunctionData(functionFragment: 'disableEncryptionScheme', values: [BytesLike]): string;
|
|
60
61
|
encodeFunctionData(functionFragment: 'enableE3Program', values: [AddressLike]): string;
|
|
62
|
+
encodeFunctionData(functionFragment: 'getDecryptionVerifier', values: [BytesLike]): string;
|
|
61
63
|
encodeFunctionData(functionFragment: 'getE3', values: [BigNumberish]): string;
|
|
62
|
-
encodeFunctionData(functionFragment: '
|
|
64
|
+
encodeFunctionData(functionFragment: 'getE3Quote', values: [IEnclave.E3RequestParamsStruct]): string;
|
|
63
65
|
encodeFunctionData(functionFragment: 'publishCiphertextOutput', values: [BigNumberish, BytesLike, BytesLike]): string;
|
|
64
66
|
encodeFunctionData(functionFragment: 'publishInput', values: [BigNumberish, BytesLike]): string;
|
|
65
67
|
encodeFunctionData(functionFragment: 'publishPlaintextOutput', values: [BigNumberish, BytesLike, BytesLike]): string;
|
|
66
68
|
encodeFunctionData(functionFragment: 'request', values: [IEnclave.E3RequestParamsStruct]): string;
|
|
69
|
+
encodeFunctionData(functionFragment: 'setBondingRegistry', values: [AddressLike]): string;
|
|
70
|
+
encodeFunctionData(functionFragment: 'setCiphernodeRegistry', values: [AddressLike]): string;
|
|
71
|
+
encodeFunctionData(functionFragment: 'setDecryptionVerifier', values: [BytesLike, AddressLike]): string;
|
|
72
|
+
encodeFunctionData(functionFragment: 'setE3ProgramsParams', values: [BytesLike[]]): string;
|
|
73
|
+
encodeFunctionData(functionFragment: 'setFeeToken', values: [AddressLike]): string;
|
|
67
74
|
encodeFunctionData(functionFragment: 'setMaxDuration', values: [BigNumberish]): string;
|
|
68
75
|
decodeFunctionResult(functionFragment: 'activate', data: BytesLike): Result;
|
|
69
76
|
decodeFunctionResult(functionFragment: 'disableE3Program', data: BytesLike): Result;
|
|
77
|
+
decodeFunctionResult(functionFragment: 'disableEncryptionScheme', data: BytesLike): Result;
|
|
70
78
|
decodeFunctionResult(functionFragment: 'enableE3Program', data: BytesLike): Result;
|
|
79
|
+
decodeFunctionResult(functionFragment: 'getDecryptionVerifier', data: BytesLike): Result;
|
|
71
80
|
decodeFunctionResult(functionFragment: 'getE3', data: BytesLike): Result;
|
|
72
|
-
decodeFunctionResult(functionFragment: '
|
|
81
|
+
decodeFunctionResult(functionFragment: 'getE3Quote', data: BytesLike): Result;
|
|
73
82
|
decodeFunctionResult(functionFragment: 'publishCiphertextOutput', data: BytesLike): Result;
|
|
74
83
|
decodeFunctionResult(functionFragment: 'publishInput', data: BytesLike): Result;
|
|
75
84
|
decodeFunctionResult(functionFragment: 'publishPlaintextOutput', data: BytesLike): Result;
|
|
76
85
|
decodeFunctionResult(functionFragment: 'request', data: BytesLike): Result;
|
|
86
|
+
decodeFunctionResult(functionFragment: 'setBondingRegistry', data: BytesLike): Result;
|
|
87
|
+
decodeFunctionResult(functionFragment: 'setCiphernodeRegistry', data: BytesLike): Result;
|
|
88
|
+
decodeFunctionResult(functionFragment: 'setDecryptionVerifier', data: BytesLike): Result;
|
|
89
|
+
decodeFunctionResult(functionFragment: 'setE3ProgramsParams', data: BytesLike): Result;
|
|
90
|
+
decodeFunctionResult(functionFragment: 'setFeeToken', data: BytesLike): Result;
|
|
77
91
|
decodeFunctionResult(functionFragment: 'setMaxDuration', data: BytesLike): Result;
|
|
78
92
|
}
|
|
79
93
|
export declare namespace AllowedE3ProgramsParamsSetEvent {
|
|
@@ -87,6 +101,17 @@ export declare namespace AllowedE3ProgramsParamsSetEvent {
|
|
|
87
101
|
type Log = TypedEventLog<Event>;
|
|
88
102
|
type LogDescription = TypedLogDescription<Event>;
|
|
89
103
|
}
|
|
104
|
+
export declare namespace BondingRegistrySetEvent {
|
|
105
|
+
type InputTuple = [bondingRegistry: AddressLike];
|
|
106
|
+
type OutputTuple = [bondingRegistry: string];
|
|
107
|
+
interface OutputObject {
|
|
108
|
+
bondingRegistry: string;
|
|
109
|
+
}
|
|
110
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
111
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
112
|
+
type Log = TypedEventLog<Event>;
|
|
113
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
114
|
+
}
|
|
90
115
|
export declare namespace CiphernodeRegistrySetEvent {
|
|
91
116
|
type InputTuple = [ciphernodeRegistry: AddressLike];
|
|
92
117
|
type OutputTuple = [ciphernodeRegistry: string];
|
|
@@ -146,12 +171,11 @@ export declare namespace E3ProgramEnabledEvent {
|
|
|
146
171
|
type LogDescription = TypedLogDescription<Event>;
|
|
147
172
|
}
|
|
148
173
|
export declare namespace E3RequestedEvent {
|
|
149
|
-
type InputTuple = [e3Id: BigNumberish, e3: E3Struct,
|
|
150
|
-
type OutputTuple = [e3Id: bigint, e3: E3StructOutput,
|
|
174
|
+
type InputTuple = [e3Id: BigNumberish, e3: E3Struct, e3Program: AddressLike];
|
|
175
|
+
type OutputTuple = [e3Id: bigint, e3: E3StructOutput, e3Program: string];
|
|
151
176
|
interface OutputObject {
|
|
152
177
|
e3Id: bigint;
|
|
153
178
|
e3: E3StructOutput;
|
|
154
|
-
filter: string;
|
|
155
179
|
e3Program: string;
|
|
156
180
|
}
|
|
157
181
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
@@ -181,6 +205,17 @@ export declare namespace EncryptionSchemeEnabledEvent {
|
|
|
181
205
|
type Log = TypedEventLog<Event>;
|
|
182
206
|
type LogDescription = TypedLogDescription<Event>;
|
|
183
207
|
}
|
|
208
|
+
export declare namespace FeeTokenSetEvent {
|
|
209
|
+
type InputTuple = [feeToken: AddressLike];
|
|
210
|
+
type OutputTuple = [feeToken: string];
|
|
211
|
+
interface OutputObject {
|
|
212
|
+
feeToken: string;
|
|
213
|
+
}
|
|
214
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
215
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
216
|
+
type Log = TypedEventLog<Event>;
|
|
217
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
218
|
+
}
|
|
184
219
|
export declare namespace InputPublishedEvent {
|
|
185
220
|
type InputTuple = [e3Id: BigNumberish, data: BytesLike, inputHash: BigNumberish, index: BigNumberish];
|
|
186
221
|
type OutputTuple = [e3Id: bigint, data: string, inputHash: bigint, index: bigint];
|
|
@@ -218,6 +253,19 @@ export declare namespace PlaintextOutputPublishedEvent {
|
|
|
218
253
|
type Log = TypedEventLog<Event>;
|
|
219
254
|
type LogDescription = TypedLogDescription<Event>;
|
|
220
255
|
}
|
|
256
|
+
export declare namespace RewardsDistributedEvent {
|
|
257
|
+
type InputTuple = [e3Id: BigNumberish, nodes: AddressLike[], amounts: BigNumberish[]];
|
|
258
|
+
type OutputTuple = [e3Id: bigint, nodes: string[], amounts: bigint[]];
|
|
259
|
+
interface OutputObject {
|
|
260
|
+
e3Id: bigint;
|
|
261
|
+
nodes: string[];
|
|
262
|
+
amounts: bigint[];
|
|
263
|
+
}
|
|
264
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
265
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
266
|
+
type Log = TypedEventLog<Event>;
|
|
267
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
268
|
+
}
|
|
221
269
|
export interface IEnclave extends BaseContract {
|
|
222
270
|
connect(runner?: ContractRunner | null): IEnclave;
|
|
223
271
|
waitForDeployment(): Promise<this>;
|
|
@@ -242,18 +290,28 @@ export interface IEnclave extends BaseContract {
|
|
|
242
290
|
], [
|
|
243
291
|
boolean
|
|
244
292
|
], 'nonpayable'>;
|
|
293
|
+
disableEncryptionScheme: TypedContractMethod<[
|
|
294
|
+
encryptionSchemeId: BytesLike
|
|
295
|
+
], [
|
|
296
|
+
boolean
|
|
297
|
+
], 'nonpayable'>;
|
|
245
298
|
enableE3Program: TypedContractMethod<[
|
|
246
299
|
e3Program: AddressLike
|
|
247
300
|
], [
|
|
248
301
|
boolean
|
|
249
302
|
], 'nonpayable'>;
|
|
303
|
+
getDecryptionVerifier: TypedContractMethod<[
|
|
304
|
+
encryptionSchemeId: BytesLike
|
|
305
|
+
], [
|
|
306
|
+
string
|
|
307
|
+
], 'view'>;
|
|
250
308
|
getE3: TypedContractMethod<[
|
|
251
309
|
e3Id: BigNumberish
|
|
252
310
|
], [
|
|
253
311
|
E3StructOutput
|
|
254
312
|
], 'view'>;
|
|
255
|
-
|
|
256
|
-
|
|
313
|
+
getE3Quote: TypedContractMethod<[
|
|
314
|
+
e3Params: IEnclave.E3RequestParamsStruct
|
|
257
315
|
], [
|
|
258
316
|
bigint
|
|
259
317
|
], 'view'>;
|
|
@@ -284,7 +342,33 @@ export interface IEnclave extends BaseContract {
|
|
|
284
342
|
e3Id: bigint;
|
|
285
343
|
e3: E3StructOutput;
|
|
286
344
|
}
|
|
287
|
-
], '
|
|
345
|
+
], 'nonpayable'>;
|
|
346
|
+
setBondingRegistry: TypedContractMethod<[
|
|
347
|
+
_bondingRegistry: AddressLike
|
|
348
|
+
], [
|
|
349
|
+
boolean
|
|
350
|
+
], 'nonpayable'>;
|
|
351
|
+
setCiphernodeRegistry: TypedContractMethod<[
|
|
352
|
+
_ciphernodeRegistry: AddressLike
|
|
353
|
+
], [
|
|
354
|
+
boolean
|
|
355
|
+
], 'nonpayable'>;
|
|
356
|
+
setDecryptionVerifier: TypedContractMethod<[
|
|
357
|
+
encryptionSchemeId: BytesLike,
|
|
358
|
+
decryptionVerifier: AddressLike
|
|
359
|
+
], [
|
|
360
|
+
boolean
|
|
361
|
+
], 'nonpayable'>;
|
|
362
|
+
setE3ProgramsParams: TypedContractMethod<[
|
|
363
|
+
_e3ProgramsParams: BytesLike[]
|
|
364
|
+
], [
|
|
365
|
+
boolean
|
|
366
|
+
], 'nonpayable'>;
|
|
367
|
+
setFeeToken: TypedContractMethod<[
|
|
368
|
+
_feeToken: AddressLike
|
|
369
|
+
], [
|
|
370
|
+
boolean
|
|
371
|
+
], 'nonpayable'>;
|
|
288
372
|
setMaxDuration: TypedContractMethod<[
|
|
289
373
|
_maxDuration: BigNumberish
|
|
290
374
|
], [
|
|
@@ -302,18 +386,28 @@ export interface IEnclave extends BaseContract {
|
|
|
302
386
|
], [
|
|
303
387
|
boolean
|
|
304
388
|
], 'nonpayable'>;
|
|
389
|
+
getFunction(nameOrSignature: 'disableEncryptionScheme'): TypedContractMethod<[
|
|
390
|
+
encryptionSchemeId: BytesLike
|
|
391
|
+
], [
|
|
392
|
+
boolean
|
|
393
|
+
], 'nonpayable'>;
|
|
305
394
|
getFunction(nameOrSignature: 'enableE3Program'): TypedContractMethod<[
|
|
306
395
|
e3Program: AddressLike
|
|
307
396
|
], [
|
|
308
397
|
boolean
|
|
309
398
|
], 'nonpayable'>;
|
|
399
|
+
getFunction(nameOrSignature: 'getDecryptionVerifier'): TypedContractMethod<[
|
|
400
|
+
encryptionSchemeId: BytesLike
|
|
401
|
+
], [
|
|
402
|
+
string
|
|
403
|
+
], 'view'>;
|
|
310
404
|
getFunction(nameOrSignature: 'getE3'): TypedContractMethod<[
|
|
311
405
|
e3Id: BigNumberish
|
|
312
406
|
], [
|
|
313
407
|
E3StructOutput
|
|
314
408
|
], 'view'>;
|
|
315
|
-
getFunction(nameOrSignature: '
|
|
316
|
-
|
|
409
|
+
getFunction(nameOrSignature: 'getE3Quote'): TypedContractMethod<[
|
|
410
|
+
e3Params: IEnclave.E3RequestParamsStruct
|
|
317
411
|
], [
|
|
318
412
|
bigint
|
|
319
413
|
], 'view'>;
|
|
@@ -344,13 +438,40 @@ export interface IEnclave extends BaseContract {
|
|
|
344
438
|
e3Id: bigint;
|
|
345
439
|
e3: E3StructOutput;
|
|
346
440
|
}
|
|
347
|
-
], '
|
|
441
|
+
], 'nonpayable'>;
|
|
442
|
+
getFunction(nameOrSignature: 'setBondingRegistry'): TypedContractMethod<[
|
|
443
|
+
_bondingRegistry: AddressLike
|
|
444
|
+
], [
|
|
445
|
+
boolean
|
|
446
|
+
], 'nonpayable'>;
|
|
447
|
+
getFunction(nameOrSignature: 'setCiphernodeRegistry'): TypedContractMethod<[
|
|
448
|
+
_ciphernodeRegistry: AddressLike
|
|
449
|
+
], [
|
|
450
|
+
boolean
|
|
451
|
+
], 'nonpayable'>;
|
|
452
|
+
getFunction(nameOrSignature: 'setDecryptionVerifier'): TypedContractMethod<[
|
|
453
|
+
encryptionSchemeId: BytesLike,
|
|
454
|
+
decryptionVerifier: AddressLike
|
|
455
|
+
], [
|
|
456
|
+
boolean
|
|
457
|
+
], 'nonpayable'>;
|
|
458
|
+
getFunction(nameOrSignature: 'setE3ProgramsParams'): TypedContractMethod<[
|
|
459
|
+
_e3ProgramsParams: BytesLike[]
|
|
460
|
+
], [
|
|
461
|
+
boolean
|
|
462
|
+
], 'nonpayable'>;
|
|
463
|
+
getFunction(nameOrSignature: 'setFeeToken'): TypedContractMethod<[
|
|
464
|
+
_feeToken: AddressLike
|
|
465
|
+
], [
|
|
466
|
+
boolean
|
|
467
|
+
], 'nonpayable'>;
|
|
348
468
|
getFunction(nameOrSignature: 'setMaxDuration'): TypedContractMethod<[
|
|
349
469
|
_maxDuration: BigNumberish
|
|
350
470
|
], [
|
|
351
471
|
boolean
|
|
352
472
|
], 'nonpayable'>;
|
|
353
473
|
getEvent(key: 'AllowedE3ProgramsParamsSet'): TypedContractEvent<AllowedE3ProgramsParamsSetEvent.InputTuple, AllowedE3ProgramsParamsSetEvent.OutputTuple, AllowedE3ProgramsParamsSetEvent.OutputObject>;
|
|
474
|
+
getEvent(key: 'BondingRegistrySet'): TypedContractEvent<BondingRegistrySetEvent.InputTuple, BondingRegistrySetEvent.OutputTuple, BondingRegistrySetEvent.OutputObject>;
|
|
354
475
|
getEvent(key: 'CiphernodeRegistrySet'): TypedContractEvent<CiphernodeRegistrySetEvent.InputTuple, CiphernodeRegistrySetEvent.OutputTuple, CiphernodeRegistrySetEvent.OutputObject>;
|
|
355
476
|
getEvent(key: 'CiphertextOutputPublished'): TypedContractEvent<CiphertextOutputPublishedEvent.InputTuple, CiphertextOutputPublishedEvent.OutputTuple, CiphertextOutputPublishedEvent.OutputObject>;
|
|
356
477
|
getEvent(key: 'E3Activated'): TypedContractEvent<E3ActivatedEvent.InputTuple, E3ActivatedEvent.OutputTuple, E3ActivatedEvent.OutputObject>;
|
|
@@ -359,12 +480,16 @@ export interface IEnclave extends BaseContract {
|
|
|
359
480
|
getEvent(key: 'E3Requested'): TypedContractEvent<E3RequestedEvent.InputTuple, E3RequestedEvent.OutputTuple, E3RequestedEvent.OutputObject>;
|
|
360
481
|
getEvent(key: 'EncryptionSchemeDisabled'): TypedContractEvent<EncryptionSchemeDisabledEvent.InputTuple, EncryptionSchemeDisabledEvent.OutputTuple, EncryptionSchemeDisabledEvent.OutputObject>;
|
|
361
482
|
getEvent(key: 'EncryptionSchemeEnabled'): TypedContractEvent<EncryptionSchemeEnabledEvent.InputTuple, EncryptionSchemeEnabledEvent.OutputTuple, EncryptionSchemeEnabledEvent.OutputObject>;
|
|
483
|
+
getEvent(key: 'FeeTokenSet'): TypedContractEvent<FeeTokenSetEvent.InputTuple, FeeTokenSetEvent.OutputTuple, FeeTokenSetEvent.OutputObject>;
|
|
362
484
|
getEvent(key: 'InputPublished'): TypedContractEvent<InputPublishedEvent.InputTuple, InputPublishedEvent.OutputTuple, InputPublishedEvent.OutputObject>;
|
|
363
485
|
getEvent(key: 'MaxDurationSet'): TypedContractEvent<MaxDurationSetEvent.InputTuple, MaxDurationSetEvent.OutputTuple, MaxDurationSetEvent.OutputObject>;
|
|
364
486
|
getEvent(key: 'PlaintextOutputPublished'): TypedContractEvent<PlaintextOutputPublishedEvent.InputTuple, PlaintextOutputPublishedEvent.OutputTuple, PlaintextOutputPublishedEvent.OutputObject>;
|
|
487
|
+
getEvent(key: 'RewardsDistributed'): TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
|
|
365
488
|
filters: {
|
|
366
489
|
'AllowedE3ProgramsParamsSet(bytes[])': TypedContractEvent<AllowedE3ProgramsParamsSetEvent.InputTuple, AllowedE3ProgramsParamsSetEvent.OutputTuple, AllowedE3ProgramsParamsSetEvent.OutputObject>;
|
|
367
490
|
AllowedE3ProgramsParamsSet: TypedContractEvent<AllowedE3ProgramsParamsSetEvent.InputTuple, AllowedE3ProgramsParamsSetEvent.OutputTuple, AllowedE3ProgramsParamsSetEvent.OutputObject>;
|
|
491
|
+
'BondingRegistrySet(address)': TypedContractEvent<BondingRegistrySetEvent.InputTuple, BondingRegistrySetEvent.OutputTuple, BondingRegistrySetEvent.OutputObject>;
|
|
492
|
+
BondingRegistrySet: TypedContractEvent<BondingRegistrySetEvent.InputTuple, BondingRegistrySetEvent.OutputTuple, BondingRegistrySetEvent.OutputObject>;
|
|
368
493
|
'CiphernodeRegistrySet(address)': TypedContractEvent<CiphernodeRegistrySetEvent.InputTuple, CiphernodeRegistrySetEvent.OutputTuple, CiphernodeRegistrySetEvent.OutputObject>;
|
|
369
494
|
CiphernodeRegistrySet: TypedContractEvent<CiphernodeRegistrySetEvent.InputTuple, CiphernodeRegistrySetEvent.OutputTuple, CiphernodeRegistrySetEvent.OutputObject>;
|
|
370
495
|
'CiphertextOutputPublished(uint256,bytes)': TypedContractEvent<CiphertextOutputPublishedEvent.InputTuple, CiphertextOutputPublishedEvent.OutputTuple, CiphertextOutputPublishedEvent.OutputObject>;
|
|
@@ -375,18 +500,22 @@ export interface IEnclave extends BaseContract {
|
|
|
375
500
|
E3ProgramDisabled: TypedContractEvent<E3ProgramDisabledEvent.InputTuple, E3ProgramDisabledEvent.OutputTuple, E3ProgramDisabledEvent.OutputObject>;
|
|
376
501
|
'E3ProgramEnabled(address)': TypedContractEvent<E3ProgramEnabledEvent.InputTuple, E3ProgramEnabledEvent.OutputTuple, E3ProgramEnabledEvent.OutputObject>;
|
|
377
502
|
E3ProgramEnabled: TypedContractEvent<E3ProgramEnabledEvent.InputTuple, E3ProgramEnabledEvent.OutputTuple, E3ProgramEnabledEvent.OutputObject>;
|
|
378
|
-
'E3Requested(uint256,tuple,address
|
|
503
|
+
'E3Requested(uint256,tuple,address)': TypedContractEvent<E3RequestedEvent.InputTuple, E3RequestedEvent.OutputTuple, E3RequestedEvent.OutputObject>;
|
|
379
504
|
E3Requested: TypedContractEvent<E3RequestedEvent.InputTuple, E3RequestedEvent.OutputTuple, E3RequestedEvent.OutputObject>;
|
|
380
505
|
'EncryptionSchemeDisabled(bytes32)': TypedContractEvent<EncryptionSchemeDisabledEvent.InputTuple, EncryptionSchemeDisabledEvent.OutputTuple, EncryptionSchemeDisabledEvent.OutputObject>;
|
|
381
506
|
EncryptionSchemeDisabled: TypedContractEvent<EncryptionSchemeDisabledEvent.InputTuple, EncryptionSchemeDisabledEvent.OutputTuple, EncryptionSchemeDisabledEvent.OutputObject>;
|
|
382
507
|
'EncryptionSchemeEnabled(bytes32)': TypedContractEvent<EncryptionSchemeEnabledEvent.InputTuple, EncryptionSchemeEnabledEvent.OutputTuple, EncryptionSchemeEnabledEvent.OutputObject>;
|
|
383
508
|
EncryptionSchemeEnabled: TypedContractEvent<EncryptionSchemeEnabledEvent.InputTuple, EncryptionSchemeEnabledEvent.OutputTuple, EncryptionSchemeEnabledEvent.OutputObject>;
|
|
509
|
+
'FeeTokenSet(address)': TypedContractEvent<FeeTokenSetEvent.InputTuple, FeeTokenSetEvent.OutputTuple, FeeTokenSetEvent.OutputObject>;
|
|
510
|
+
FeeTokenSet: TypedContractEvent<FeeTokenSetEvent.InputTuple, FeeTokenSetEvent.OutputTuple, FeeTokenSetEvent.OutputObject>;
|
|
384
511
|
'InputPublished(uint256,bytes,uint256,uint256)': TypedContractEvent<InputPublishedEvent.InputTuple, InputPublishedEvent.OutputTuple, InputPublishedEvent.OutputObject>;
|
|
385
512
|
InputPublished: TypedContractEvent<InputPublishedEvent.InputTuple, InputPublishedEvent.OutputTuple, InputPublishedEvent.OutputObject>;
|
|
386
513
|
'MaxDurationSet(uint256)': TypedContractEvent<MaxDurationSetEvent.InputTuple, MaxDurationSetEvent.OutputTuple, MaxDurationSetEvent.OutputObject>;
|
|
387
514
|
MaxDurationSet: TypedContractEvent<MaxDurationSetEvent.InputTuple, MaxDurationSetEvent.OutputTuple, MaxDurationSetEvent.OutputObject>;
|
|
388
515
|
'PlaintextOutputPublished(uint256,bytes)': TypedContractEvent<PlaintextOutputPublishedEvent.InputTuple, PlaintextOutputPublishedEvent.OutputTuple, PlaintextOutputPublishedEvent.OutputObject>;
|
|
389
516
|
PlaintextOutputPublished: TypedContractEvent<PlaintextOutputPublishedEvent.InputTuple, PlaintextOutputPublishedEvent.OutputTuple, PlaintextOutputPublishedEvent.OutputObject>;
|
|
517
|
+
'RewardsDistributed(uint256,address[],uint256[])': TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
|
|
518
|
+
RewardsDistributed: TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
|
|
390
519
|
};
|
|
391
520
|
}
|
|
392
521
|
//# sourceMappingURL=IEnclave.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IEnclave.d.ts","sourceRoot":"","sources":["../../../../types/contracts/interfaces/IEnclave.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"IEnclave.d.ts","sourceRoot":"","sources":["../../../../types/contracts/interfaces/IEnclave.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,10 @@ export var AllowedE3ProgramsParamsSetEvent;
|
|
|
2
2
|
(function (AllowedE3ProgramsParamsSetEvent) {
|
|
3
3
|
;
|
|
4
4
|
})(AllowedE3ProgramsParamsSetEvent || (AllowedE3ProgramsParamsSetEvent = {}));
|
|
5
|
+
export var BondingRegistrySetEvent;
|
|
6
|
+
(function (BondingRegistrySetEvent) {
|
|
7
|
+
;
|
|
8
|
+
})(BondingRegistrySetEvent || (BondingRegistrySetEvent = {}));
|
|
5
9
|
export var CiphernodeRegistrySetEvent;
|
|
6
10
|
(function (CiphernodeRegistrySetEvent) {
|
|
7
11
|
;
|
|
@@ -34,6 +38,10 @@ export var EncryptionSchemeEnabledEvent;
|
|
|
34
38
|
(function (EncryptionSchemeEnabledEvent) {
|
|
35
39
|
;
|
|
36
40
|
})(EncryptionSchemeEnabledEvent || (EncryptionSchemeEnabledEvent = {}));
|
|
41
|
+
export var FeeTokenSetEvent;
|
|
42
|
+
(function (FeeTokenSetEvent) {
|
|
43
|
+
;
|
|
44
|
+
})(FeeTokenSetEvent || (FeeTokenSetEvent = {}));
|
|
37
45
|
export var InputPublishedEvent;
|
|
38
46
|
(function (InputPublishedEvent) {
|
|
39
47
|
;
|
|
@@ -46,3 +54,7 @@ export var PlaintextOutputPublishedEvent;
|
|
|
46
54
|
(function (PlaintextOutputPublishedEvent) {
|
|
47
55
|
;
|
|
48
56
|
})(PlaintextOutputPublishedEvent || (PlaintextOutputPublishedEvent = {}));
|
|
57
|
+
export var RewardsDistributedEvent;
|
|
58
|
+
(function (RewardsDistributedEvent) {
|
|
59
|
+
;
|
|
60
|
+
})(RewardsDistributedEvent || (RewardsDistributedEvent = {}));
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common.js";
|
|
3
|
-
export interface
|
|
4
|
-
getFunction(nameOrSignature: "
|
|
5
|
-
encodeFunctionData(functionFragment: '
|
|
6
|
-
decodeFunctionResult(functionFragment: '
|
|
3
|
+
export interface ISlashVerifierInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "verify"): FunctionFragment;
|
|
5
|
+
encodeFunctionData(functionFragment: 'verify', values: [BigNumberish, BytesLike]): string;
|
|
6
|
+
decodeFunctionResult(functionFragment: 'verify', data: BytesLike): Result;
|
|
7
7
|
}
|
|
8
|
-
export interface
|
|
9
|
-
connect(runner?: ContractRunner | null):
|
|
8
|
+
export interface ISlashVerifier extends BaseContract {
|
|
9
|
+
connect(runner?: ContractRunner | null): ISlashVerifier;
|
|
10
10
|
waitForDeployment(): Promise<this>;
|
|
11
|
-
interface:
|
|
11
|
+
interface: ISlashVerifierInterface;
|
|
12
12
|
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
13
13
|
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
14
14
|
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
@@ -18,19 +18,19 @@ export interface IRegistryFilter extends BaseContract {
|
|
|
18
18
|
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
19
19
|
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
20
20
|
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
verify: TypedContractMethod<[
|
|
22
|
+
proposalId: BigNumberish,
|
|
23
|
+
proof: BytesLike
|
|
24
24
|
], [
|
|
25
25
|
boolean
|
|
26
|
-
], '
|
|
26
|
+
], 'view'>;
|
|
27
27
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
28
|
-
getFunction(nameOrSignature: '
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
getFunction(nameOrSignature: 'verify'): TypedContractMethod<[
|
|
29
|
+
proposalId: BigNumberish,
|
|
30
|
+
proof: BytesLike
|
|
31
31
|
], [
|
|
32
32
|
boolean
|
|
33
|
-
], '
|
|
33
|
+
], 'view'>;
|
|
34
34
|
filters: {};
|
|
35
35
|
}
|
|
36
|
-
//# sourceMappingURL=
|
|
36
|
+
//# sourceMappingURL=ISlashVerifier.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ISlashVerifier.d.ts","sourceRoot":"","sources":["../../../../types/contracts/interfaces/ISlashVerifier.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|