@coti-io/coti-contracts 1.1.0 → 1.3.0

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.
Files changed (433) hide show
  1. package/.github/workflows/npm-publish.yml +19 -15
  2. package/README.md +3 -1
  3. package/contracts/disperse/coinByRatio/FixedRatioCoinDisperser.sol +452 -0
  4. package/contracts/disperse/coinByRatio/FixedRatioCoinDisperserLeftoverS1.sol +490 -0
  5. package/contracts/disperse/coinByRatio/FixedRatioCoinDisperserUnlimitedWindow.sol +432 -0
  6. package/contracts/disperse/disperseToken/MintDisperser.sol +120 -0
  7. package/contracts/disperse/disperseToken/TokenDisperser.sol +139 -0
  8. package/contracts/messaging/PrivateMessaging.sol +456 -0
  9. package/contracts/mocks/messaging/PrivateMessagingHarness.sol +54 -0
  10. package/contracts/mocks/oracle/CotiPriceConsumerMock.sol +31 -0
  11. package/contracts/mocks/token/ERC20DecimalsMock.sol +21 -0
  12. package/contracts/mocks/token/ERC20Mock.sol +19 -0
  13. package/contracts/mocks/token/PrivateERC20/EncryptedTokenReceiverMock.sol +18 -0
  14. package/contracts/mocks/token/PrivateERC20/PrivacyBridgeERC20Mock.sol +18 -0
  15. package/contracts/mocks/token/PrivateERC20/PrivateERC20AuditorSupplyMock.sol +44 -0
  16. package/contracts/mocks/token/PrivateERC20/PrivateERC20CappedMock.sol +23 -0
  17. package/contracts/mocks/token/PrivateERC20/PrivateERC20GtCallerMock.sol +29 -0
  18. package/contracts/mocks/token/PrivateERC20/PrivateERC20Mock.sol +9 -4
  19. package/contracts/mocks/token/PrivateERC20/PrivateERC20ReentrantReceiverMock.sol +39 -0
  20. package/contracts/mocks/token/PrivateERC20/PublicReentrantTokenReceiverMock.sol +29 -0
  21. package/contracts/mocks/token/PrivateERC20/PublicTokenReceiverBoolMock.sol +18 -0
  22. package/contracts/mocks/token/PrivateERC20/PublicTokenReceiverMock.sol +12 -0
  23. package/contracts/mocks/utils/mpc/Arithmetic128TestsContract.sol +123 -0
  24. package/contracts/mocks/utils/mpc/Arithmetic256TestsContract.sol +122 -0
  25. package/contracts/mocks/utils/mpc/Bitwise128TestsContract.sol +65 -0
  26. package/contracts/mocks/utils/mpc/Bitwise256TestsContract.sol +65 -0
  27. package/contracts/mocks/utils/mpc/CheckedArithmetic128WithOverflowBitTestsContract.sol +64 -0
  28. package/contracts/mocks/utils/mpc/CheckedArithmetic256WithOverflowBitTestsContract.sol +64 -0
  29. package/contracts/mocks/utils/mpc/Comparison128TestsContract.sol +98 -0
  30. package/contracts/mocks/utils/mpc/Comparison256TestsContract.sol +98 -0
  31. package/contracts/mocks/utils/mpc/MinMax128TestsContract.sol +44 -0
  32. package/contracts/mocks/utils/mpc/MinMax256TestsContract.sol +44 -0
  33. package/contracts/mocks/utils/mpc/MinimalImplementation.sol +55 -0
  34. package/contracts/mocks/utils/mpc/MinimalProxy.sol +27 -0
  35. package/contracts/mocks/utils/mpc/MpcOperations128TestContract.sol +267 -0
  36. package/contracts/mocks/utils/mpc/MpcOperationsTestContract.sol +334 -0
  37. package/contracts/mocks/utils/mpc/Mux128TestsContract.sol +24 -0
  38. package/contracts/mocks/utils/mpc/Mux256TestsContract.sol +24 -0
  39. package/contracts/mocks/utils/mpc/OnBoard128TestsContract.sol +93 -0
  40. package/contracts/mocks/utils/mpc/OnBoard256TestsContract.sol +116 -0
  41. package/contracts/mocks/utils/mpc/PrivacyImplementationV1.sol +157 -0
  42. package/contracts/mocks/utils/mpc/PrivacyImplementationV2.sol +133 -0
  43. package/contracts/mocks/utils/mpc/PrivacyProxy.sol +137 -0
  44. package/contracts/mocks/utils/mpc/Random128TestsContract.sol +32 -0
  45. package/contracts/mocks/utils/mpc/Random256TestsContract.sol +32 -0
  46. package/contracts/mocks/utils/mpc/Shift128TestsContract.sol +36 -0
  47. package/contracts/mocks/utils/mpc/Shift256TestsContract.sol +36 -0
  48. package/contracts/mocks/utils/mpc/Transfer128TestsContract.sol +29 -0
  49. package/contracts/mocks/utils/mpc/Transfer256TestsContract.sol +29 -0
  50. package/contracts/mocks/utils/mpc/TransferWithAllowance128TestsContract.sol +32 -0
  51. package/contracts/mocks/utils/mpc/TransferWithAllowance256TestsContract.sol +32 -0
  52. package/contracts/mocks/utils/mpc/ValidateCiphertext128TestsContract.sol +59 -0
  53. package/contracts/mocks/utils/mpc/ValidateCiphertext256TestsContract.sol +63 -0
  54. package/contracts/mocks/utils/mpc/ValidateCiphertextTestsContract.sol +99 -0
  55. package/contracts/mocks/wallet/PrivateERC20Wallet/PrivateERC20WalletMock.sol +7 -6
  56. package/contracts/node/CotiNodeRewards.sol +199 -0
  57. package/contracts/node/SoulboundNodeNFT.sol +519 -0
  58. package/contracts/oracle/CotiPriceConsumer.sol +103 -0
  59. package/contracts/oracle/ICotiPriceConsumer.sol +15 -0
  60. package/contracts/oracle/IStdReference.sol +26 -0
  61. package/contracts/privacyBridge/PrivacyBridge.sol +600 -0
  62. package/contracts/privacyBridge/PrivacyBridgeCotiNative.sol +316 -0
  63. package/contracts/privacyBridge/PrivacyBridgeERC20.sol +333 -0
  64. package/contracts/privacyBridge/PrivacyBridgeUSDCe.sol +22 -0
  65. package/contracts/privacyBridge/PrivacyBridgeUSDT.sol +23 -0
  66. package/contracts/privacyBridge/PrivacyBridgeWADA.sol +23 -0
  67. package/contracts/privacyBridge/PrivacyBridgeWBTC.sol +23 -0
  68. package/contracts/privacyBridge/PrivacyBridgeWETH.sol +23 -0
  69. package/contracts/privacyBridge/PrivacyBridgegCoti.sol +23 -0
  70. package/contracts/token/PrivateERC20/IPrivateERC20.sol +273 -40
  71. package/contracts/token/PrivateERC20/ITokenReceiver.sol +17 -0
  72. package/contracts/token/PrivateERC20/ITokenReceiverEncrypted.sol +20 -0
  73. package/contracts/token/PrivateERC20/PrivateERC20.sol +861 -152
  74. package/contracts/token/PrivateERC20/tokens/PrivateBridgedUSDC.sol +17 -0
  75. package/contracts/token/PrivateERC20/tokens/PrivateCOTI.sol +13 -0
  76. package/contracts/token/PrivateERC20/tokens/PrivateCOTITreasuryGovernanceToken.sol +17 -0
  77. package/contracts/token/PrivateERC20/tokens/PrivateTetherUSD.sol +17 -0
  78. package/contracts/token/PrivateERC20/tokens/PrivateWrappedADA.sol +17 -0
  79. package/contracts/token/PrivateERC20/tokens/PrivateWrappedBTC.sol +17 -0
  80. package/contracts/token/PrivateERC20/tokens/PrivateWrappedEther.sol +13 -0
  81. package/contracts/utils/mpc/MpcCore.sol +10780 -4962
  82. package/contracts/utils/mpc/MpcInterface.sol +7 -2
  83. package/hardhat/gasPriceBump.ts +60 -0
  84. package/hardhat.config.ts +63 -12
  85. package/package.json +22 -4
  86. package/scripts/add-bridge-operators.cjs +87 -0
  87. package/scripts/deploy-coti-price-consumer-mainnet.cjs +49 -0
  88. package/scripts/deployCotiNodeRewards.ts +51 -0
  89. package/scripts/deploySoulboundNodeNFT.ts +57 -0
  90. package/scripts/redeploy-private-and-bridges.cjs +201 -0
  91. package/scripts/set-bridge-limits-mainnet.cjs +177 -0
  92. package/scripts/verify-mainnet-private-bridges.cjs +289 -0
  93. package/sonar-project.properties +11 -0
  94. package/test/messaging/PrivateMessaging.test.ts +158 -0
  95. package/test/privacyBridge/UnifiedPrivacyBridges.test.cjs +1663 -0
  96. package/test/token/PrivateERC20/PrivacyBridge.fees.test.ts +250 -0
  97. package/test/token/PrivateERC20/PrivateERC20.test.ts +1109 -268
  98. package/test/utils/mpc/Bitwise128.test.ts +92 -0
  99. package/test/utils/mpc/Bitwise256.test.ts +101 -0
  100. package/test/utils/mpc/BuildInputText128.test.ts +398 -0
  101. package/test/utils/mpc/CheckedArithmetic128.test.ts +45 -0
  102. package/test/utils/mpc/CheckedArithmetic256.test.ts +45 -0
  103. package/test/utils/mpc/Comparison128.test.ts +48 -0
  104. package/test/utils/mpc/Comparison256.test.ts +48 -0
  105. package/test/utils/mpc/InvalidCiphertext.test.ts +179 -0
  106. package/test/utils/mpc/InvalidCiphertext128.test.ts +179 -0
  107. package/test/utils/mpc/InvalidCiphertext256.test.ts +201 -0
  108. package/test/utils/mpc/InvalidTransfer128.test.ts +166 -0
  109. package/test/utils/mpc/InvalidTransfer256.test.ts +158 -0
  110. package/test/utils/mpc/MinMax128.test.ts +44 -0
  111. package/test/utils/mpc/MinMax256.test.ts +44 -0
  112. package/test/utils/mpc/MinimalProxyDemo.test.ts +280 -0
  113. package/test/utils/mpc/MpcOperations.test.ts +589 -0
  114. package/test/utils/mpc/MpcOperations128.test.ts +632 -0
  115. package/test/utils/mpc/Mux128.test.ts +41 -0
  116. package/test/utils/mpc/Mux256.test.ts +41 -0
  117. package/test/utils/mpc/NegativeCases.test.ts +478 -0
  118. package/test/utils/mpc/NegativeCases128.test.ts +237 -0
  119. package/test/utils/mpc/NegativeCases256.test.ts +236 -0
  120. package/test/utils/mpc/OnBoard128.test.ts +90 -0
  121. package/test/utils/mpc/OnBoard256.test.ts +114 -0
  122. package/test/utils/mpc/Precompile128.test.ts +51 -0
  123. package/test/utils/mpc/Precompile256.test.ts +115 -0
  124. package/test/utils/mpc/ProxyValidation.test.ts +199 -0
  125. package/test/utils/mpc/Random128.test.ts +47 -0
  126. package/test/utils/mpc/Random256.test.ts +47 -0
  127. package/test/utils/mpc/Shift128.test.ts +41 -0
  128. package/test/utils/mpc/Shift256.test.ts +41 -0
  129. package/test/utils/mpc/Transfer128.test.ts +46 -0
  130. package/test/utils/mpc/Transfer256.test.ts +46 -0
  131. package/test/utils/mpc/TransferWithAllowance128.test.ts +48 -0
  132. package/test/utils/mpc/TransferWithAllowance256.test.ts +48 -0
  133. package/test/utils/mpc/UpgradeablePrivacyProxy.test.ts +307 -0
  134. package/test/utils/mpc/ValidateCiphertext.test.ts +221 -0
  135. package/test/utils/mpc/ValidateCiphertext256.test.ts +161 -0
  136. package/test/utils/mpc/ValidateCiphertext256Decryption.test.ts +383 -0
  137. package/test/utils/mpc/WalletEncryptionFailures.test.ts +494 -0
  138. package/test/utils/privateErc20Helpers.ts +97 -0
  139. package/typechain-types/@openzeppelin/contracts/access/AccessControl.ts +324 -0
  140. package/typechain-types/@openzeppelin/contracts/access/AccessControlEnumerable.ts +361 -0
  141. package/typechain-types/@openzeppelin/contracts/access/IAccessControl.ts +292 -0
  142. package/typechain-types/@openzeppelin/contracts/access/IAccessControlEnumerable.ts +329 -0
  143. package/typechain-types/@openzeppelin/contracts/access/Ownable.ts +153 -0
  144. package/typechain-types/@openzeppelin/contracts/access/index.ts +8 -0
  145. package/typechain-types/@openzeppelin/contracts/index.ts +4 -0
  146. package/typechain-types/@openzeppelin/contracts/security/Pausable.ts +150 -0
  147. package/typechain-types/@openzeppelin/contracts/security/index.ts +4 -0
  148. package/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.ts +330 -0
  149. package/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.ts +262 -0
  150. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.ts +286 -0
  151. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.ts +143 -0
  152. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.ts +5 -0
  153. package/typechain-types/@openzeppelin/contracts/token/ERC20/index.ts +7 -0
  154. package/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.ts +420 -0
  155. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.ts +420 -0
  156. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.ts +4 -0
  157. package/typechain-types/@openzeppelin/contracts/token/ERC721/index.ts +3 -0
  158. package/typechain-types/@openzeppelin/contracts/token/index.ts +2 -0
  159. package/typechain-types/contracts/disperse/coinByRatio/FixedRatioCoinDisperser.ts +679 -0
  160. package/typechain-types/contracts/disperse/coinByRatio/FixedRatioCoinDisperserLeftoverS1.ts +735 -0
  161. package/typechain-types/contracts/disperse/coinByRatio/FixedRatioCoinDisperserUnlimitedWindow.ts +734 -0
  162. package/typechain-types/contracts/disperse/coinByRatio/index.ts +6 -0
  163. package/typechain-types/contracts/disperse/disperseToken/MintDisperser.sol/IMintableERC20.ts +97 -0
  164. package/typechain-types/contracts/disperse/disperseToken/MintDisperser.sol/IOwnable.ts +95 -0
  165. package/typechain-types/contracts/disperse/disperseToken/MintDisperser.sol/MintDisperser.ts +228 -0
  166. package/typechain-types/contracts/disperse/disperseToken/MintDisperser.sol/index.ts +6 -0
  167. package/typechain-types/contracts/disperse/disperseToken/TokenDisperser.ts +191 -0
  168. package/typechain-types/contracts/disperse/disperseToken/index.ts +6 -0
  169. package/typechain-types/contracts/disperse/index.ts +7 -0
  170. package/typechain-types/contracts/index.ts +10 -0
  171. package/typechain-types/contracts/messaging/PrivateMessaging.ts +871 -0
  172. package/typechain-types/contracts/messaging/index.ts +4 -0
  173. package/typechain-types/contracts/mocks/index.ts +4 -0
  174. package/typechain-types/contracts/mocks/messaging/PrivateMessagingHarness.ts +951 -0
  175. package/typechain-types/contracts/mocks/messaging/index.ts +4 -0
  176. package/typechain-types/contracts/mocks/oracle/CotiPriceConsumerMock.ts +163 -0
  177. package/typechain-types/contracts/mocks/oracle/index.ts +4 -0
  178. package/typechain-types/contracts/mocks/token/ERC20DecimalsMock.ts +349 -0
  179. package/typechain-types/contracts/mocks/token/ERC20Mock.ts +368 -0
  180. package/typechain-types/contracts/mocks/token/PrivateERC20/EncryptedTokenReceiverMock.ts +108 -0
  181. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivacyBridgeERC20Mock.ts +1892 -0
  182. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivateERC20AuditorSupplyMock.ts +1296 -0
  183. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivateERC20CappedMock.ts +1270 -0
  184. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivateERC20GtCallerMock.ts +166 -0
  185. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivateERC20Mock.ts +827 -78
  186. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivateERC20ReentrantReceiverMock.sol/IPrivateERC20TransferAndCallEncrypted.ts +102 -0
  187. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivateERC20ReentrantReceiverMock.sol/PrivateERC20ReentrantReceiverMock.ts +154 -0
  188. package/typechain-types/contracts/mocks/token/PrivateERC20/PrivateERC20ReentrantReceiverMock.sol/index.ts +5 -0
  189. package/typechain-types/contracts/mocks/token/PrivateERC20/PublicReentrantTokenReceiverMock.ts +155 -0
  190. package/typechain-types/contracts/mocks/token/PrivateERC20/PublicTokenReceiverBoolMock.ts +107 -0
  191. package/typechain-types/contracts/mocks/token/PrivateERC20/PublicTokenReceiverMock.ts +100 -0
  192. package/typechain-types/contracts/mocks/token/PrivateERC20/index.ts +10 -0
  193. package/typechain-types/contracts/mocks/token/index.ts +2 -0
  194. package/typechain-types/contracts/mocks/utils/mpc/{Arithmetic128BitTestsContract.ts → Arithmetic128TestsContract.ts} +96 -126
  195. package/typechain-types/contracts/mocks/utils/mpc/{Arithmetic256BitTestsContract.ts → Arithmetic256TestsContract.ts} +97 -133
  196. package/typechain-types/contracts/mocks/utils/mpc/{Bitwise128BitTestsContract.ts → Bitwise128TestsContract.ts} +52 -59
  197. package/typechain-types/contracts/mocks/utils/mpc/{Bitwise256BitTestsContract.ts → Bitwise256TestsContract.ts} +52 -59
  198. package/typechain-types/contracts/mocks/utils/mpc/CheckedArithmetic128WithOverflowBitTestsContract.ts +206 -0
  199. package/typechain-types/contracts/mocks/utils/mpc/CheckedArithmetic256WithOverflowBitTestsContract.ts +206 -0
  200. package/typechain-types/contracts/mocks/utils/mpc/{Comparison128BitTestsContract.ts → Comparison128TestsContract.ts} +115 -97
  201. package/typechain-types/contracts/mocks/utils/mpc/{Comparison256BitTestsContract.ts → Comparison256TestsContract.ts} +115 -97
  202. package/typechain-types/contracts/mocks/utils/mpc/MinMax128TestsContract.ts +142 -0
  203. package/typechain-types/contracts/mocks/utils/mpc/MinMax256TestsContract.ts +142 -0
  204. package/typechain-types/contracts/mocks/utils/mpc/MinimalImplementation.ts +259 -0
  205. package/typechain-types/contracts/mocks/utils/mpc/MinimalProxy.ts +90 -0
  206. package/typechain-types/contracts/mocks/utils/mpc/MpcOperations128TestContract.ts +388 -0
  207. package/typechain-types/contracts/mocks/utils/mpc/MpcOperationsTestContract.ts +455 -0
  208. package/typechain-types/contracts/mocks/utils/mpc/Mux128TestsContract.ts +109 -0
  209. package/typechain-types/contracts/mocks/utils/mpc/Mux256TestsContract.ts +109 -0
  210. package/typechain-types/contracts/mocks/utils/mpc/OnBoard128TestsContract.ts +166 -0
  211. package/typechain-types/contracts/mocks/utils/mpc/OnBoard256TestsContract.ts +194 -0
  212. package/typechain-types/contracts/mocks/utils/mpc/PrivacyImplementationV1.ts +385 -0
  213. package/typechain-types/contracts/mocks/utils/mpc/PrivacyImplementationV2.ts +441 -0
  214. package/typechain-types/contracts/mocks/utils/mpc/PrivacyProxy.ts +201 -0
  215. package/typechain-types/contracts/mocks/utils/mpc/Random128TestsContract.ts +131 -0
  216. package/typechain-types/contracts/mocks/utils/mpc/Random256TestsContract.ts +131 -0
  217. package/typechain-types/contracts/mocks/utils/mpc/Shift128TestsContract.ts +142 -0
  218. package/typechain-types/contracts/mocks/utils/mpc/Shift256TestsContract.ts +142 -0
  219. package/typechain-types/contracts/mocks/utils/mpc/Transfer128TestsContract.ts +109 -0
  220. package/typechain-types/contracts/mocks/utils/mpc/Transfer256TestsContract.ts +109 -0
  221. package/typechain-types/contracts/mocks/utils/mpc/TransferWithAllowance128TestsContract.ts +128 -0
  222. package/typechain-types/contracts/mocks/utils/mpc/TransferWithAllowance256TestsContract.ts +128 -0
  223. package/typechain-types/contracts/mocks/utils/mpc/ValidateCiphertext128TestsContract.ts +198 -0
  224. package/typechain-types/contracts/mocks/utils/mpc/ValidateCiphertext256TestsContract.ts +182 -0
  225. package/typechain-types/contracts/mocks/utils/mpc/ValidateCiphertextTestsContract.ts +257 -0
  226. package/typechain-types/contracts/mocks/utils/mpc/index.ts +32 -8
  227. package/typechain-types/contracts/mocks/wallet/PrivateERC20Wallet/PrivateERC20WalletMock.ts +6 -6
  228. package/typechain-types/contracts/node/CotiNodeRewards.ts +566 -0
  229. package/typechain-types/contracts/node/SoulboundNodeNFT.sol/IERC5192.ts +123 -0
  230. package/typechain-types/contracts/node/SoulboundNodeNFT.sol/SoulboundNodeNFT.ts +975 -0
  231. package/typechain-types/contracts/node/SoulboundNodeNFT.sol/index.ts +5 -0
  232. package/typechain-types/contracts/node/index.ts +6 -0
  233. package/typechain-types/contracts/oracle/CotiPriceConsumer.ts +256 -0
  234. package/typechain-types/contracts/oracle/ICotiPriceConsumer.ts +119 -0
  235. package/typechain-types/contracts/oracle/IStdReference.ts +136 -0
  236. package/typechain-types/contracts/oracle/index.ts +6 -0
  237. package/typechain-types/contracts/privacyBridge/PrivacyBridge.ts +1628 -0
  238. package/typechain-types/contracts/privacyBridge/PrivacyBridgeCotiNative.ts +1870 -0
  239. package/typechain-types/contracts/privacyBridge/PrivacyBridgeERC20.sol/IHasDecimals.ts +84 -0
  240. package/typechain-types/contracts/privacyBridge/PrivacyBridgeERC20.sol/PrivacyBridgeERC20.ts +1892 -0
  241. package/typechain-types/contracts/privacyBridge/PrivacyBridgeERC20.sol/index.ts +5 -0
  242. package/typechain-types/contracts/privacyBridge/PrivacyBridgeUSDCe.ts +1892 -0
  243. package/typechain-types/contracts/privacyBridge/PrivacyBridgeUSDT.ts +1892 -0
  244. package/typechain-types/contracts/privacyBridge/PrivacyBridgeWADA.ts +1892 -0
  245. package/typechain-types/contracts/privacyBridge/PrivacyBridgeWBTC.ts +1892 -0
  246. package/typechain-types/contracts/privacyBridge/PrivacyBridgeWETH.ts +1892 -0
  247. package/typechain-types/contracts/privacyBridge/PrivacyBridgegCoti.ts +1892 -0
  248. package/typechain-types/contracts/privacyBridge/index.ts +13 -0
  249. package/typechain-types/contracts/token/PrivateERC20/IPrivateERC20.ts +507 -70
  250. package/typechain-types/contracts/token/PrivateERC20/ITokenReceiver.ts +100 -0
  251. package/typechain-types/contracts/token/PrivateERC20/ITokenReceiverEncrypted.ts +99 -0
  252. package/typechain-types/contracts/token/PrivateERC20/PrivateERC20.ts +833 -68
  253. package/typechain-types/contracts/token/PrivateERC20/index.ts +4 -0
  254. package/typechain-types/contracts/token/PrivateERC20/tokens/PrivateBridgedUSDC.ts +1270 -0
  255. package/typechain-types/contracts/token/PrivateERC20/tokens/PrivateCOTI.ts +1270 -0
  256. package/typechain-types/contracts/token/PrivateERC20/tokens/PrivateCOTITreasuryGovernanceToken.ts +1270 -0
  257. package/typechain-types/contracts/token/PrivateERC20/tokens/PrivateTetherUSD.ts +1270 -0
  258. package/typechain-types/contracts/token/PrivateERC20/tokens/PrivateWrappedADA.ts +1270 -0
  259. package/typechain-types/contracts/token/PrivateERC20/tokens/PrivateWrappedBTC.ts +1270 -0
  260. package/typechain-types/contracts/token/PrivateERC20/tokens/PrivateWrappedEther.ts +1270 -0
  261. package/typechain-types/contracts/token/PrivateERC20/tokens/index.ts +10 -0
  262. package/typechain-types/contracts/utils/mpc/MpcInterface.sol/ExtendedOperations.ts +111 -10
  263. package/typechain-types/factories/@openzeppelin/contracts/access/AccessControlEnumerable__factory.ts +276 -0
  264. package/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.ts +229 -0
  265. package/typechain-types/factories/@openzeppelin/contracts/access/IAccessControlEnumerable__factory.ts +244 -0
  266. package/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.ts +197 -0
  267. package/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.ts +74 -0
  268. package/typechain-types/factories/@openzeppelin/contracts/access/index.ts +8 -0
  269. package/typechain-types/factories/@openzeppelin/contracts/index.ts +2 -0
  270. package/typechain-types/factories/@openzeppelin/contracts/security/Pausable__factory.ts +61 -0
  271. package/typechain-types/factories/@openzeppelin/contracts/security/index.ts +4 -0
  272. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.ts +356 -0
  273. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.ts +205 -0
  274. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.ts +247 -0
  275. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.ts +100 -0
  276. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.ts +5 -0
  277. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.ts +6 -0
  278. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.ts +416 -0
  279. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.ts +355 -0
  280. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.ts +4 -0
  281. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.ts +2 -0
  282. package/typechain-types/factories/@openzeppelin/contracts/token/index.ts +1 -0
  283. package/typechain-types/factories/contracts/disperse/coinByRatio/FixedRatioCoinDisperserLeftoverS1__factory.ts +791 -0
  284. package/typechain-types/factories/contracts/disperse/coinByRatio/FixedRatioCoinDisperserUnlimitedWindow__factory.ts +711 -0
  285. package/typechain-types/factories/contracts/disperse/coinByRatio/FixedRatioCoinDisperser__factory.ts +759 -0
  286. package/typechain-types/factories/contracts/disperse/coinByRatio/index.ts +6 -0
  287. package/typechain-types/factories/contracts/disperse/disperseToken/MintDisperser.sol/IMintableERC20__factory.ts +43 -0
  288. package/typechain-types/factories/contracts/disperse/disperseToken/MintDisperser.sol/IOwnable__factory.ts +35 -0
  289. package/typechain-types/factories/contracts/disperse/disperseToken/MintDisperser.sol/MintDisperser__factory.ts +203 -0
  290. package/typechain-types/factories/contracts/disperse/disperseToken/MintDisperser.sol/index.ts +6 -0
  291. package/typechain-types/factories/contracts/disperse/disperseToken/TokenDisperser__factory.ts +198 -0
  292. package/typechain-types/factories/contracts/disperse/disperseToken/index.ts +5 -0
  293. package/typechain-types/factories/contracts/disperse/index.ts +5 -0
  294. package/typechain-types/factories/contracts/index.ts +5 -0
  295. package/typechain-types/factories/contracts/messaging/PrivateMessaging__factory.ts +1035 -0
  296. package/typechain-types/factories/contracts/messaging/index.ts +4 -0
  297. package/typechain-types/factories/contracts/mocks/access/DataPrivacyFramework/DataPrivacyFrameworkMock__factory.ts +1 -1
  298. package/typechain-types/factories/contracts/mocks/index.ts +2 -0
  299. package/typechain-types/factories/contracts/mocks/messaging/PrivateMessagingHarness__factory.ts +1161 -0
  300. package/typechain-types/factories/contracts/mocks/messaging/index.ts +4 -0
  301. package/typechain-types/factories/contracts/mocks/oracle/CotiPriceConsumerMock__factory.ts +159 -0
  302. package/typechain-types/factories/contracts/mocks/oracle/index.ts +4 -0
  303. package/typechain-types/factories/contracts/mocks/token/ERC20DecimalsMock__factory.ts +394 -0
  304. package/typechain-types/factories/contracts/mocks/token/ERC20Mock__factory.ts +392 -0
  305. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/EncryptedTokenReceiverMock__factory.ts +125 -0
  306. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivacyBridgeERC20Mock__factory.ts +1797 -0
  307. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivateERC20AuditorSupplyMock__factory.ts +1514 -0
  308. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivateERC20CappedMock__factory.ts +1466 -0
  309. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivateERC20GtCallerMock__factory.ts +165 -0
  310. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivateERC20Mock__factory.ts +975 -127
  311. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivateERC20ReentrantReceiverMock.sol/IPrivateERC20TransferAndCallEncrypted__factory.ts +54 -0
  312. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivateERC20ReentrantReceiverMock.sol/PrivateERC20ReentrantReceiverMock__factory.ts +159 -0
  313. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PrivateERC20ReentrantReceiverMock.sol/index.ts +5 -0
  314. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PublicReentrantTokenReceiverMock__factory.ts +164 -0
  315. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PublicTokenReceiverBoolMock__factory.ts +130 -0
  316. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/PublicTokenReceiverMock__factory.ts +102 -0
  317. package/typechain-types/factories/contracts/mocks/token/PrivateERC20/index.ts +9 -0
  318. package/typechain-types/factories/contracts/mocks/token/PrivateERC721/PrivateERC721URIStorageMock__factory.ts +1 -1
  319. package/typechain-types/factories/contracts/mocks/token/index.ts +2 -0
  320. package/typechain-types/factories/contracts/mocks/utils/mpc/Arithmetic128TestsContract__factory.ts +330 -0
  321. package/typechain-types/factories/contracts/mocks/utils/mpc/Arithmetic256TestsContract__factory.ts +330 -0
  322. package/typechain-types/factories/contracts/mocks/utils/mpc/ArithmeticTestsContract__factory.ts +1 -1
  323. package/typechain-types/factories/contracts/mocks/utils/mpc/Bitwise128TestsContract__factory.ts +184 -0
  324. package/typechain-types/factories/contracts/mocks/utils/mpc/Bitwise256TestsContract__factory.ts +184 -0
  325. package/typechain-types/factories/contracts/mocks/utils/mpc/BitwiseTestsContract__factory.ts +1 -1
  326. package/typechain-types/factories/contracts/mocks/utils/mpc/CheckedArithmetic128WithOverflowBitTestsContract__factory.ts +203 -0
  327. package/typechain-types/factories/contracts/mocks/utils/mpc/CheckedArithmetic256WithOverflowBitTestsContract__factory.ts +203 -0
  328. package/typechain-types/factories/contracts/mocks/utils/mpc/CheckedArithmeticWIthOverflowBitTestsContract.sol/CheckedArithmeticWithOverflowBitTestsContract__factory.ts +1 -1
  329. package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison128TestsContract__factory.ts +295 -0
  330. package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison1TestsContract__factory.ts +1 -1
  331. package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison256TestsContract__factory.ts +295 -0
  332. package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison2TestsContract__factory.ts +1 -1
  333. package/typechain-types/factories/contracts/mocks/utils/mpc/MinMax128TestsContract__factory.ts +147 -0
  334. package/typechain-types/factories/contracts/mocks/utils/mpc/MinMax256TestsContract__factory.ts +147 -0
  335. package/typechain-types/factories/contracts/mocks/utils/mpc/MinMaxTestsContract__factory.ts +1 -1
  336. package/typechain-types/factories/contracts/mocks/utils/mpc/MinimalImplementation__factory.ts +263 -0
  337. package/typechain-types/factories/contracts/mocks/utils/mpc/MinimalProxy__factory.ts +104 -0
  338. package/typechain-types/factories/contracts/mocks/utils/mpc/Miscellaneous1TestsContract__factory.ts +1 -1
  339. package/typechain-types/factories/contracts/mocks/utils/mpc/MiscellaneousTestsContract__factory.ts +1 -1
  340. package/typechain-types/factories/contracts/mocks/utils/mpc/MpcOperations128TestContract__factory.ts +723 -0
  341. package/typechain-types/factories/contracts/mocks/utils/mpc/MpcOperationsTestContract__factory.ts +1410 -0
  342. package/typechain-types/factories/contracts/mocks/utils/mpc/Mux128TestsContract__factory.ts +115 -0
  343. package/typechain-types/factories/contracts/mocks/utils/mpc/Mux256TestsContract__factory.ts +115 -0
  344. package/typechain-types/factories/contracts/mocks/utils/mpc/OffboardToUserKeyTestContract__factory.ts +1 -1
  345. package/typechain-types/factories/contracts/mocks/utils/mpc/OnBoard128TestsContract__factory.ts +175 -0
  346. package/typechain-types/factories/contracts/mocks/utils/mpc/OnBoard256TestsContract__factory.ts +205 -0
  347. package/typechain-types/factories/contracts/mocks/utils/mpc/PrivacyImplementationV1__factory.ts +521 -0
  348. package/typechain-types/factories/contracts/mocks/utils/mpc/PrivacyImplementationV2__factory.ts +648 -0
  349. package/typechain-types/factories/contracts/mocks/utils/mpc/PrivacyProxy__factory.ts +179 -0
  350. package/typechain-types/factories/contracts/mocks/utils/mpc/Random128TestsContract__factory.ts +131 -0
  351. package/typechain-types/factories/contracts/mocks/utils/mpc/Random256TestsContract__factory.ts +131 -0
  352. package/typechain-types/factories/contracts/mocks/utils/mpc/Shift128TestsContract__factory.ts +147 -0
  353. package/typechain-types/factories/contracts/mocks/utils/mpc/Shift256TestsContract__factory.ts +147 -0
  354. package/typechain-types/factories/contracts/mocks/utils/mpc/ShiftTestsContract__factory.ts +1 -1
  355. package/typechain-types/factories/contracts/mocks/utils/mpc/StringTestsContract__factory.ts +1 -1
  356. package/typechain-types/factories/contracts/mocks/utils/mpc/Transfer128TestsContract__factory.ts +135 -0
  357. package/typechain-types/factories/contracts/mocks/utils/mpc/Transfer256TestsContract__factory.ts +135 -0
  358. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferScalarTestsContract__factory.ts +1 -1
  359. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferTestsContract__factory.ts +1 -1
  360. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowance128TestsContract__factory.ts +154 -0
  361. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowance256TestsContract__factory.ts +154 -0
  362. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowance64_16TestsContract__factory.ts +1 -1
  363. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowance64_32TestsContract__factory.ts +1 -1
  364. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowance64_64TestsContract__factory.ts +1 -1
  365. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowance64_8TestsContract__factory.ts +1 -1
  366. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowanceScalarTestsContract__factory.ts +1 -1
  367. package/typechain-types/factories/contracts/mocks/utils/mpc/TransferWithAllowanceTestsContract__factory.ts +1 -1
  368. package/typechain-types/factories/contracts/mocks/utils/mpc/ValidateCiphertext128TestsContract__factory.ts +190 -0
  369. package/typechain-types/factories/contracts/mocks/utils/mpc/ValidateCiphertext256TestsContract__factory.ts +210 -0
  370. package/typechain-types/factories/contracts/mocks/utils/mpc/ValidateCiphertextTestsContract__factory.ts +260 -0
  371. package/typechain-types/factories/contracts/mocks/utils/mpc/index.ts +32 -8
  372. package/typechain-types/factories/contracts/mocks/wallet/PrivateERC20Wallet/PrivateERC20WalletMock__factory.ts +10 -28
  373. package/typechain-types/factories/contracts/node/CotiNodeRewards__factory.ts +549 -0
  374. package/typechain-types/factories/contracts/node/SoulboundNodeNFT.sol/IERC5192__factory.ts +54 -0
  375. package/typechain-types/factories/contracts/node/SoulboundNodeNFT.sol/SoulboundNodeNFT__factory.ts +947 -0
  376. package/typechain-types/factories/contracts/node/SoulboundNodeNFT.sol/index.ts +5 -0
  377. package/typechain-types/factories/contracts/node/index.ts +5 -0
  378. package/typechain-types/factories/contracts/onboard/AccountOnboard__factory.ts +1 -1
  379. package/typechain-types/factories/contracts/oracle/CotiPriceConsumer__factory.ts +295 -0
  380. package/typechain-types/factories/contracts/oracle/ICotiPriceConsumer__factory.ts +73 -0
  381. package/typechain-types/factories/contracts/oracle/IStdReference__factory.ts +107 -0
  382. package/typechain-types/factories/contracts/oracle/index.ts +6 -0
  383. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeCotiNative__factory.ts +1676 -0
  384. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeERC20.sol/IHasDecimals__factory.ts +38 -0
  385. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeERC20.sol/PrivacyBridgeERC20__factory.ts +1678 -0
  386. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeERC20.sol/index.ts +5 -0
  387. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeUSDCe__factory.ts +1782 -0
  388. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeUSDT__factory.ts +1782 -0
  389. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeWADA__factory.ts +1782 -0
  390. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeWBTC__factory.ts +1782 -0
  391. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgeWETH__factory.ts +1782 -0
  392. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridge__factory.ts +1367 -0
  393. package/typechain-types/factories/contracts/privacyBridge/PrivacyBridgegCoti__factory.ts +1782 -0
  394. package/typechain-types/factories/contracts/privacyBridge/index.ts +12 -0
  395. package/typechain-types/factories/contracts/token/PrivateERC20/IPrivateERC20__factory.ts +639 -61
  396. package/typechain-types/factories/contracts/token/PrivateERC20/ITokenReceiverEncrypted__factory.ts +53 -0
  397. package/typechain-types/factories/contracts/token/PrivateERC20/ITokenReceiver__factory.ts +54 -0
  398. package/typechain-types/factories/contracts/token/PrivateERC20/PrivateERC20__factory.ts +986 -120
  399. package/typechain-types/factories/contracts/token/PrivateERC20/index.ts +3 -0
  400. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/PrivateBridgedUSDC__factory.ts +1445 -0
  401. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/PrivateCOTITreasuryGovernanceToken__factory.ts +1451 -0
  402. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/PrivateCOTI__factory.ts +1442 -0
  403. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/PrivateTetherUSD__factory.ts +1445 -0
  404. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/PrivateWrappedADA__factory.ts +1445 -0
  405. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/PrivateWrappedBTC__factory.ts +1445 -0
  406. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/PrivateWrappedEther__factory.ts +1451 -0
  407. package/typechain-types/factories/contracts/token/PrivateERC20/tokens/index.ts +10 -0
  408. package/typechain-types/factories/contracts/utils/mpc/MpcCore__factory.ts +1 -1
  409. package/typechain-types/factories/contracts/utils/mpc/MpcInterface.sol/ExtendedOperations__factory.ts +126 -0
  410. package/typechain-types/hardhat.d.ts +1772 -278
  411. package/typechain-types/index.ts +182 -16
  412. package/contracts/mocks/utils/mpc/Arithmetic128BitTestsContract.sol +0 -260
  413. package/contracts/mocks/utils/mpc/Arithmetic256BitTestsContract.sol +0 -264
  414. package/contracts/mocks/utils/mpc/Bitwise128BitTestsContract.sol +0 -91
  415. package/contracts/mocks/utils/mpc/Bitwise256BitTestsContract.sol +0 -91
  416. package/contracts/mocks/utils/mpc/Comparison128BitTestsContract.sol +0 -158
  417. package/contracts/mocks/utils/mpc/Comparison256BitTestsContract.sol +0 -158
  418. package/contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract.sol +0 -185
  419. package/contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract.sol +0 -190
  420. package/contracts/mocks/utils/mpc/README.md +0 -486
  421. package/test/utils/mpc/Unsigned128BitIntegers.test.ts +0 -945
  422. package/test/utils/mpc/Unsigned256BitIntegers.test.ts +0 -1124
  423. package/test/utils/mpc/helpers.ts +0 -77
  424. package/typechain-types/contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract.ts +0 -302
  425. package/typechain-types/contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract.ts +0 -322
  426. package/typechain-types/factories/contracts/mocks/utils/mpc/Arithmetic128BitTestsContract__factory.ts +0 -349
  427. package/typechain-types/factories/contracts/mocks/utils/mpc/Arithmetic256BitTestsContract__factory.ts +0 -364
  428. package/typechain-types/factories/contracts/mocks/utils/mpc/Bitwise128BitTestsContract__factory.ts +0 -182
  429. package/typechain-types/factories/contracts/mocks/utils/mpc/Bitwise256BitTestsContract__factory.ts +0 -182
  430. package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison128BitTestsContract__factory.ts +0 -255
  431. package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison256BitTestsContract__factory.ts +0 -255
  432. package/typechain-types/factories/contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract__factory.ts +0 -332
  433. package/typechain-types/factories/contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract__factory.ts +0 -380
@@ -13,10 +13,58 @@ import * as Contracts from ".";
13
13
 
14
14
  declare module "hardhat/types/runtime" {
15
15
  interface HardhatEthersHelpers extends HardhatEthersHelpersBase {
16
+ getContractFactory(
17
+ name: "AccessControl",
18
+ signerOrOptions?: ethers.Signer | FactoryOptions
19
+ ): Promise<Contracts.AccessControl__factory>;
20
+ getContractFactory(
21
+ name: "AccessControlEnumerable",
22
+ signerOrOptions?: ethers.Signer | FactoryOptions
23
+ ): Promise<Contracts.AccessControlEnumerable__factory>;
24
+ getContractFactory(
25
+ name: "IAccessControl",
26
+ signerOrOptions?: ethers.Signer | FactoryOptions
27
+ ): Promise<Contracts.IAccessControl__factory>;
28
+ getContractFactory(
29
+ name: "IAccessControlEnumerable",
30
+ signerOrOptions?: ethers.Signer | FactoryOptions
31
+ ): Promise<Contracts.IAccessControlEnumerable__factory>;
32
+ getContractFactory(
33
+ name: "Ownable",
34
+ signerOrOptions?: ethers.Signer | FactoryOptions
35
+ ): Promise<Contracts.Ownable__factory>;
16
36
  getContractFactory(
17
37
  name: "IERC4906",
18
38
  signerOrOptions?: ethers.Signer | FactoryOptions
19
39
  ): Promise<Contracts.IERC4906__factory>;
40
+ getContractFactory(
41
+ name: "Pausable",
42
+ signerOrOptions?: ethers.Signer | FactoryOptions
43
+ ): Promise<Contracts.Pausable__factory>;
44
+ getContractFactory(
45
+ name: "ERC20",
46
+ signerOrOptions?: ethers.Signer | FactoryOptions
47
+ ): Promise<Contracts.ERC20__factory>;
48
+ getContractFactory(
49
+ name: "IERC20Metadata",
50
+ signerOrOptions?: ethers.Signer | FactoryOptions
51
+ ): Promise<Contracts.IERC20Metadata__factory>;
52
+ getContractFactory(
53
+ name: "IERC20Permit",
54
+ signerOrOptions?: ethers.Signer | FactoryOptions
55
+ ): Promise<Contracts.IERC20Permit__factory>;
56
+ getContractFactory(
57
+ name: "IERC20",
58
+ signerOrOptions?: ethers.Signer | FactoryOptions
59
+ ): Promise<Contracts.IERC20__factory>;
60
+ getContractFactory(
61
+ name: "ERC721",
62
+ signerOrOptions?: ethers.Signer | FactoryOptions
63
+ ): Promise<Contracts.ERC721__factory>;
64
+ getContractFactory(
65
+ name: "IERC721Metadata",
66
+ signerOrOptions?: ethers.Signer | FactoryOptions
67
+ ): Promise<Contracts.IERC721Metadata__factory>;
20
68
  getContractFactory(
21
69
  name: "IERC721",
22
70
  signerOrOptions?: ethers.Signer | FactoryOptions
@@ -41,86 +89,242 @@ declare module "hardhat/types/runtime" {
41
89
  name: "DataPrivacyFrameworkMpc",
42
90
  signerOrOptions?: ethers.Signer | FactoryOptions
43
91
  ): Promise<Contracts.DataPrivacyFrameworkMpc__factory>;
92
+ getContractFactory(
93
+ name: "FixedRatioCoinDisperser",
94
+ signerOrOptions?: ethers.Signer | FactoryOptions
95
+ ): Promise<Contracts.FixedRatioCoinDisperser__factory>;
96
+ getContractFactory(
97
+ name: "FixedRatioCoinDisperserLeftoverS1",
98
+ signerOrOptions?: ethers.Signer | FactoryOptions
99
+ ): Promise<Contracts.FixedRatioCoinDisperserLeftoverS1__factory>;
100
+ getContractFactory(
101
+ name: "FixedRatioCoinDisperserUnlimitedWindow",
102
+ signerOrOptions?: ethers.Signer | FactoryOptions
103
+ ): Promise<Contracts.FixedRatioCoinDisperserUnlimitedWindow__factory>;
104
+ getContractFactory(
105
+ name: "IMintableERC20",
106
+ signerOrOptions?: ethers.Signer | FactoryOptions
107
+ ): Promise<Contracts.IMintableERC20__factory>;
108
+ getContractFactory(
109
+ name: "IOwnable",
110
+ signerOrOptions?: ethers.Signer | FactoryOptions
111
+ ): Promise<Contracts.IOwnable__factory>;
112
+ getContractFactory(
113
+ name: "MintDisperser",
114
+ signerOrOptions?: ethers.Signer | FactoryOptions
115
+ ): Promise<Contracts.MintDisperser__factory>;
116
+ getContractFactory(
117
+ name: "TokenDisperser",
118
+ signerOrOptions?: ethers.Signer | FactoryOptions
119
+ ): Promise<Contracts.TokenDisperser__factory>;
120
+ getContractFactory(
121
+ name: "PrivateMessaging",
122
+ signerOrOptions?: ethers.Signer | FactoryOptions
123
+ ): Promise<Contracts.PrivateMessaging__factory>;
44
124
  getContractFactory(
45
125
  name: "DataPrivacyFrameworkMock",
46
126
  signerOrOptions?: ethers.Signer | FactoryOptions
47
127
  ): Promise<Contracts.DataPrivacyFrameworkMock__factory>;
128
+ getContractFactory(
129
+ name: "PrivateMessagingHarness",
130
+ signerOrOptions?: ethers.Signer | FactoryOptions
131
+ ): Promise<Contracts.PrivateMessagingHarness__factory>;
132
+ getContractFactory(
133
+ name: "CotiPriceConsumerMock",
134
+ signerOrOptions?: ethers.Signer | FactoryOptions
135
+ ): Promise<Contracts.CotiPriceConsumerMock__factory>;
136
+ getContractFactory(
137
+ name: "ERC20DecimalsMock",
138
+ signerOrOptions?: ethers.Signer | FactoryOptions
139
+ ): Promise<Contracts.ERC20DecimalsMock__factory>;
140
+ getContractFactory(
141
+ name: "ERC20Mock",
142
+ signerOrOptions?: ethers.Signer | FactoryOptions
143
+ ): Promise<Contracts.ERC20Mock__factory>;
144
+ getContractFactory(
145
+ name: "EncryptedTokenReceiverMock",
146
+ signerOrOptions?: ethers.Signer | FactoryOptions
147
+ ): Promise<Contracts.EncryptedTokenReceiverMock__factory>;
148
+ getContractFactory(
149
+ name: "PrivacyBridgeERC20Mock",
150
+ signerOrOptions?: ethers.Signer | FactoryOptions
151
+ ): Promise<Contracts.PrivacyBridgeERC20Mock__factory>;
152
+ getContractFactory(
153
+ name: "PrivateERC20AuditorSupplyMock",
154
+ signerOrOptions?: ethers.Signer | FactoryOptions
155
+ ): Promise<Contracts.PrivateERC20AuditorSupplyMock__factory>;
156
+ getContractFactory(
157
+ name: "PrivateERC20CappedMock",
158
+ signerOrOptions?: ethers.Signer | FactoryOptions
159
+ ): Promise<Contracts.PrivateERC20CappedMock__factory>;
160
+ getContractFactory(
161
+ name: "PrivateERC20GtCallerMock",
162
+ signerOrOptions?: ethers.Signer | FactoryOptions
163
+ ): Promise<Contracts.PrivateERC20GtCallerMock__factory>;
48
164
  getContractFactory(
49
165
  name: "PrivateERC20Mock",
50
166
  signerOrOptions?: ethers.Signer | FactoryOptions
51
167
  ): Promise<Contracts.PrivateERC20Mock__factory>;
168
+ getContractFactory(
169
+ name: "IPrivateERC20TransferAndCallEncrypted",
170
+ signerOrOptions?: ethers.Signer | FactoryOptions
171
+ ): Promise<Contracts.IPrivateERC20TransferAndCallEncrypted__factory>;
172
+ getContractFactory(
173
+ name: "PrivateERC20ReentrantReceiverMock",
174
+ signerOrOptions?: ethers.Signer | FactoryOptions
175
+ ): Promise<Contracts.PrivateERC20ReentrantReceiverMock__factory>;
176
+ getContractFactory(
177
+ name: "PublicReentrantTokenReceiverMock",
178
+ signerOrOptions?: ethers.Signer | FactoryOptions
179
+ ): Promise<Contracts.PublicReentrantTokenReceiverMock__factory>;
180
+ getContractFactory(
181
+ name: "PublicTokenReceiverBoolMock",
182
+ signerOrOptions?: ethers.Signer | FactoryOptions
183
+ ): Promise<Contracts.PublicTokenReceiverBoolMock__factory>;
184
+ getContractFactory(
185
+ name: "PublicTokenReceiverMock",
186
+ signerOrOptions?: ethers.Signer | FactoryOptions
187
+ ): Promise<Contracts.PublicTokenReceiverMock__factory>;
52
188
  getContractFactory(
53
189
  name: "PrivateERC721URIStorageMock",
54
190
  signerOrOptions?: ethers.Signer | FactoryOptions
55
191
  ): Promise<Contracts.PrivateERC721URIStorageMock__factory>;
56
192
  getContractFactory(
57
- name: "Arithmetic128BitTestsContract",
193
+ name: "Arithmetic128TestsContract",
58
194
  signerOrOptions?: ethers.Signer | FactoryOptions
59
- ): Promise<Contracts.Arithmetic128BitTestsContract__factory>;
195
+ ): Promise<Contracts.Arithmetic128TestsContract__factory>;
60
196
  getContractFactory(
61
- name: "Arithmetic256BitTestsContract",
197
+ name: "Arithmetic256TestsContract",
62
198
  signerOrOptions?: ethers.Signer | FactoryOptions
63
- ): Promise<Contracts.Arithmetic256BitTestsContract__factory>;
199
+ ): Promise<Contracts.Arithmetic256TestsContract__factory>;
64
200
  getContractFactory(
65
201
  name: "ArithmeticTestsContract",
66
202
  signerOrOptions?: ethers.Signer | FactoryOptions
67
203
  ): Promise<Contracts.ArithmeticTestsContract__factory>;
68
204
  getContractFactory(
69
- name: "Bitwise128BitTestsContract",
205
+ name: "Bitwise128TestsContract",
70
206
  signerOrOptions?: ethers.Signer | FactoryOptions
71
- ): Promise<Contracts.Bitwise128BitTestsContract__factory>;
207
+ ): Promise<Contracts.Bitwise128TestsContract__factory>;
72
208
  getContractFactory(
73
- name: "Bitwise256BitTestsContract",
209
+ name: "Bitwise256TestsContract",
74
210
  signerOrOptions?: ethers.Signer | FactoryOptions
75
- ): Promise<Contracts.Bitwise256BitTestsContract__factory>;
211
+ ): Promise<Contracts.Bitwise256TestsContract__factory>;
76
212
  getContractFactory(
77
213
  name: "BitwiseTestsContract",
78
214
  signerOrOptions?: ethers.Signer | FactoryOptions
79
215
  ): Promise<Contracts.BitwiseTestsContract__factory>;
216
+ getContractFactory(
217
+ name: "CheckedArithmetic128WithOverflowBitTestsContract",
218
+ signerOrOptions?: ethers.Signer | FactoryOptions
219
+ ): Promise<Contracts.CheckedArithmetic128WithOverflowBitTestsContract__factory>;
220
+ getContractFactory(
221
+ name: "CheckedArithmetic256WithOverflowBitTestsContract",
222
+ signerOrOptions?: ethers.Signer | FactoryOptions
223
+ ): Promise<Contracts.CheckedArithmetic256WithOverflowBitTestsContract__factory>;
80
224
  getContractFactory(
81
225
  name: "CheckedArithmeticWithOverflowBitTestsContract",
82
226
  signerOrOptions?: ethers.Signer | FactoryOptions
83
227
  ): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract__factory>;
84
228
  getContractFactory(
85
- name: "Comparison128BitTestsContract",
229
+ name: "Comparison128TestsContract",
86
230
  signerOrOptions?: ethers.Signer | FactoryOptions
87
- ): Promise<Contracts.Comparison128BitTestsContract__factory>;
231
+ ): Promise<Contracts.Comparison128TestsContract__factory>;
88
232
  getContractFactory(
89
233
  name: "Comparison1TestsContract",
90
234
  signerOrOptions?: ethers.Signer | FactoryOptions
91
235
  ): Promise<Contracts.Comparison1TestsContract__factory>;
92
236
  getContractFactory(
93
- name: "Comparison256BitTestsContract",
237
+ name: "Comparison256TestsContract",
94
238
  signerOrOptions?: ethers.Signer | FactoryOptions
95
- ): Promise<Contracts.Comparison256BitTestsContract__factory>;
239
+ ): Promise<Contracts.Comparison256TestsContract__factory>;
96
240
  getContractFactory(
97
241
  name: "Comparison2TestsContract",
98
242
  signerOrOptions?: ethers.Signer | FactoryOptions
99
243
  ): Promise<Contracts.Comparison2TestsContract__factory>;
100
244
  getContractFactory(
101
- name: "MinMaxTestsContract",
245
+ name: "MinimalImplementation",
102
246
  signerOrOptions?: ethers.Signer | FactoryOptions
103
- ): Promise<Contracts.MinMaxTestsContract__factory>;
247
+ ): Promise<Contracts.MinimalImplementation__factory>;
104
248
  getContractFactory(
105
- name: "Miscellaneous128BitTestsContract",
249
+ name: "MinimalProxy",
106
250
  signerOrOptions?: ethers.Signer | FactoryOptions
107
- ): Promise<Contracts.Miscellaneous128BitTestsContract__factory>;
251
+ ): Promise<Contracts.MinimalProxy__factory>;
108
252
  getContractFactory(
109
- name: "Miscellaneous1TestsContract",
253
+ name: "MinMax128TestsContract",
110
254
  signerOrOptions?: ethers.Signer | FactoryOptions
111
- ): Promise<Contracts.Miscellaneous1TestsContract__factory>;
255
+ ): Promise<Contracts.MinMax128TestsContract__factory>;
256
+ getContractFactory(
257
+ name: "MinMax256TestsContract",
258
+ signerOrOptions?: ethers.Signer | FactoryOptions
259
+ ): Promise<Contracts.MinMax256TestsContract__factory>;
260
+ getContractFactory(
261
+ name: "MinMaxTestsContract",
262
+ signerOrOptions?: ethers.Signer | FactoryOptions
263
+ ): Promise<Contracts.MinMaxTestsContract__factory>;
112
264
  getContractFactory(
113
- name: "Miscellaneous256BitTestsContract",
265
+ name: "Miscellaneous1TestsContract",
114
266
  signerOrOptions?: ethers.Signer | FactoryOptions
115
- ): Promise<Contracts.Miscellaneous256BitTestsContract__factory>;
267
+ ): Promise<Contracts.Miscellaneous1TestsContract__factory>;
116
268
  getContractFactory(
117
269
  name: "MiscellaneousTestsContract",
118
270
  signerOrOptions?: ethers.Signer | FactoryOptions
119
271
  ): Promise<Contracts.MiscellaneousTestsContract__factory>;
272
+ getContractFactory(
273
+ name: "MpcOperations128TestContract",
274
+ signerOrOptions?: ethers.Signer | FactoryOptions
275
+ ): Promise<Contracts.MpcOperations128TestContract__factory>;
276
+ getContractFactory(
277
+ name: "MpcOperationsTestContract",
278
+ signerOrOptions?: ethers.Signer | FactoryOptions
279
+ ): Promise<Contracts.MpcOperationsTestContract__factory>;
280
+ getContractFactory(
281
+ name: "Mux128TestsContract",
282
+ signerOrOptions?: ethers.Signer | FactoryOptions
283
+ ): Promise<Contracts.Mux128TestsContract__factory>;
284
+ getContractFactory(
285
+ name: "Mux256TestsContract",
286
+ signerOrOptions?: ethers.Signer | FactoryOptions
287
+ ): Promise<Contracts.Mux256TestsContract__factory>;
120
288
  getContractFactory(
121
289
  name: "OffboardToUserKeyTestContract",
122
290
  signerOrOptions?: ethers.Signer | FactoryOptions
123
291
  ): Promise<Contracts.OffboardToUserKeyTestContract__factory>;
292
+ getContractFactory(
293
+ name: "OnBoard128TestsContract",
294
+ signerOrOptions?: ethers.Signer | FactoryOptions
295
+ ): Promise<Contracts.OnBoard128TestsContract__factory>;
296
+ getContractFactory(
297
+ name: "OnBoard256TestsContract",
298
+ signerOrOptions?: ethers.Signer | FactoryOptions
299
+ ): Promise<Contracts.OnBoard256TestsContract__factory>;
300
+ getContractFactory(
301
+ name: "PrivacyImplementationV1",
302
+ signerOrOptions?: ethers.Signer | FactoryOptions
303
+ ): Promise<Contracts.PrivacyImplementationV1__factory>;
304
+ getContractFactory(
305
+ name: "PrivacyImplementationV2",
306
+ signerOrOptions?: ethers.Signer | FactoryOptions
307
+ ): Promise<Contracts.PrivacyImplementationV2__factory>;
308
+ getContractFactory(
309
+ name: "PrivacyProxy",
310
+ signerOrOptions?: ethers.Signer | FactoryOptions
311
+ ): Promise<Contracts.PrivacyProxy__factory>;
312
+ getContractFactory(
313
+ name: "Random128TestsContract",
314
+ signerOrOptions?: ethers.Signer | FactoryOptions
315
+ ): Promise<Contracts.Random128TestsContract__factory>;
316
+ getContractFactory(
317
+ name: "Random256TestsContract",
318
+ signerOrOptions?: ethers.Signer | FactoryOptions
319
+ ): Promise<Contracts.Random256TestsContract__factory>;
320
+ getContractFactory(
321
+ name: "Shift128TestsContract",
322
+ signerOrOptions?: ethers.Signer | FactoryOptions
323
+ ): Promise<Contracts.Shift128TestsContract__factory>;
324
+ getContractFactory(
325
+ name: "Shift256TestsContract",
326
+ signerOrOptions?: ethers.Signer | FactoryOptions
327
+ ): Promise<Contracts.Shift256TestsContract__factory>;
124
328
  getContractFactory(
125
329
  name: "ShiftTestsContract",
126
330
  signerOrOptions?: ethers.Signer | FactoryOptions
@@ -129,6 +333,14 @@ declare module "hardhat/types/runtime" {
129
333
  name: "StringTestsContract",
130
334
  signerOrOptions?: ethers.Signer | FactoryOptions
131
335
  ): Promise<Contracts.StringTestsContract__factory>;
336
+ getContractFactory(
337
+ name: "Transfer128TestsContract",
338
+ signerOrOptions?: ethers.Signer | FactoryOptions
339
+ ): Promise<Contracts.Transfer128TestsContract__factory>;
340
+ getContractFactory(
341
+ name: "Transfer256TestsContract",
342
+ signerOrOptions?: ethers.Signer | FactoryOptions
343
+ ): Promise<Contracts.Transfer256TestsContract__factory>;
132
344
  getContractFactory(
133
345
  name: "TransferScalarTestsContract",
134
346
  signerOrOptions?: ethers.Signer | FactoryOptions
@@ -137,6 +349,14 @@ declare module "hardhat/types/runtime" {
137
349
  name: "TransferTestsContract",
138
350
  signerOrOptions?: ethers.Signer | FactoryOptions
139
351
  ): Promise<Contracts.TransferTestsContract__factory>;
352
+ getContractFactory(
353
+ name: "TransferWithAllowance128TestsContract",
354
+ signerOrOptions?: ethers.Signer | FactoryOptions
355
+ ): Promise<Contracts.TransferWithAllowance128TestsContract__factory>;
356
+ getContractFactory(
357
+ name: "TransferWithAllowance256TestsContract",
358
+ signerOrOptions?: ethers.Signer | FactoryOptions
359
+ ): Promise<Contracts.TransferWithAllowance256TestsContract__factory>;
140
360
  getContractFactory(
141
361
  name: "TransferWithAllowance64_16TestsContract",
142
362
  signerOrOptions?: ethers.Signer | FactoryOptions
@@ -161,22 +381,134 @@ declare module "hardhat/types/runtime" {
161
381
  name: "TransferWithAllowanceTestsContract",
162
382
  signerOrOptions?: ethers.Signer | FactoryOptions
163
383
  ): Promise<Contracts.TransferWithAllowanceTestsContract__factory>;
384
+ getContractFactory(
385
+ name: "ValidateCiphertext128TestsContract",
386
+ signerOrOptions?: ethers.Signer | FactoryOptions
387
+ ): Promise<Contracts.ValidateCiphertext128TestsContract__factory>;
388
+ getContractFactory(
389
+ name: "ValidateCiphertext256TestsContract",
390
+ signerOrOptions?: ethers.Signer | FactoryOptions
391
+ ): Promise<Contracts.ValidateCiphertext256TestsContract__factory>;
392
+ getContractFactory(
393
+ name: "ValidateCiphertextTestsContract",
394
+ signerOrOptions?: ethers.Signer | FactoryOptions
395
+ ): Promise<Contracts.ValidateCiphertextTestsContract__factory>;
164
396
  getContractFactory(
165
397
  name: "PrivateERC20WalletMock",
166
398
  signerOrOptions?: ethers.Signer | FactoryOptions
167
399
  ): Promise<Contracts.PrivateERC20WalletMock__factory>;
400
+ getContractFactory(
401
+ name: "CotiNodeRewards",
402
+ signerOrOptions?: ethers.Signer | FactoryOptions
403
+ ): Promise<Contracts.CotiNodeRewards__factory>;
404
+ getContractFactory(
405
+ name: "IERC5192",
406
+ signerOrOptions?: ethers.Signer | FactoryOptions
407
+ ): Promise<Contracts.IERC5192__factory>;
408
+ getContractFactory(
409
+ name: "SoulboundNodeNFT",
410
+ signerOrOptions?: ethers.Signer | FactoryOptions
411
+ ): Promise<Contracts.SoulboundNodeNFT__factory>;
168
412
  getContractFactory(
169
413
  name: "AccountOnboard",
170
414
  signerOrOptions?: ethers.Signer | FactoryOptions
171
415
  ): Promise<Contracts.AccountOnboard__factory>;
416
+ getContractFactory(
417
+ name: "CotiPriceConsumer",
418
+ signerOrOptions?: ethers.Signer | FactoryOptions
419
+ ): Promise<Contracts.CotiPriceConsumer__factory>;
420
+ getContractFactory(
421
+ name: "ICotiPriceConsumer",
422
+ signerOrOptions?: ethers.Signer | FactoryOptions
423
+ ): Promise<Contracts.ICotiPriceConsumer__factory>;
424
+ getContractFactory(
425
+ name: "IStdReference",
426
+ signerOrOptions?: ethers.Signer | FactoryOptions
427
+ ): Promise<Contracts.IStdReference__factory>;
428
+ getContractFactory(
429
+ name: "PrivacyBridge",
430
+ signerOrOptions?: ethers.Signer | FactoryOptions
431
+ ): Promise<Contracts.PrivacyBridge__factory>;
432
+ getContractFactory(
433
+ name: "PrivacyBridgeCotiNative",
434
+ signerOrOptions?: ethers.Signer | FactoryOptions
435
+ ): Promise<Contracts.PrivacyBridgeCotiNative__factory>;
436
+ getContractFactory(
437
+ name: "IHasDecimals",
438
+ signerOrOptions?: ethers.Signer | FactoryOptions
439
+ ): Promise<Contracts.IHasDecimals__factory>;
440
+ getContractFactory(
441
+ name: "PrivacyBridgeERC20",
442
+ signerOrOptions?: ethers.Signer | FactoryOptions
443
+ ): Promise<Contracts.PrivacyBridgeERC20__factory>;
444
+ getContractFactory(
445
+ name: "PrivacyBridgegCoti",
446
+ signerOrOptions?: ethers.Signer | FactoryOptions
447
+ ): Promise<Contracts.PrivacyBridgegCoti__factory>;
448
+ getContractFactory(
449
+ name: "PrivacyBridgeUSDCe",
450
+ signerOrOptions?: ethers.Signer | FactoryOptions
451
+ ): Promise<Contracts.PrivacyBridgeUSDCe__factory>;
452
+ getContractFactory(
453
+ name: "PrivacyBridgeUSDT",
454
+ signerOrOptions?: ethers.Signer | FactoryOptions
455
+ ): Promise<Contracts.PrivacyBridgeUSDT__factory>;
456
+ getContractFactory(
457
+ name: "PrivacyBridgeWADA",
458
+ signerOrOptions?: ethers.Signer | FactoryOptions
459
+ ): Promise<Contracts.PrivacyBridgeWADA__factory>;
460
+ getContractFactory(
461
+ name: "PrivacyBridgeWBTC",
462
+ signerOrOptions?: ethers.Signer | FactoryOptions
463
+ ): Promise<Contracts.PrivacyBridgeWBTC__factory>;
464
+ getContractFactory(
465
+ name: "PrivacyBridgeWETH",
466
+ signerOrOptions?: ethers.Signer | FactoryOptions
467
+ ): Promise<Contracts.PrivacyBridgeWETH__factory>;
172
468
  getContractFactory(
173
469
  name: "IPrivateERC20",
174
470
  signerOrOptions?: ethers.Signer | FactoryOptions
175
471
  ): Promise<Contracts.IPrivateERC20__factory>;
472
+ getContractFactory(
473
+ name: "ITokenReceiver",
474
+ signerOrOptions?: ethers.Signer | FactoryOptions
475
+ ): Promise<Contracts.ITokenReceiver__factory>;
476
+ getContractFactory(
477
+ name: "ITokenReceiverEncrypted",
478
+ signerOrOptions?: ethers.Signer | FactoryOptions
479
+ ): Promise<Contracts.ITokenReceiverEncrypted__factory>;
176
480
  getContractFactory(
177
481
  name: "PrivateERC20",
178
482
  signerOrOptions?: ethers.Signer | FactoryOptions
179
483
  ): Promise<Contracts.PrivateERC20__factory>;
484
+ getContractFactory(
485
+ name: "PrivateBridgedUSDC",
486
+ signerOrOptions?: ethers.Signer | FactoryOptions
487
+ ): Promise<Contracts.PrivateBridgedUSDC__factory>;
488
+ getContractFactory(
489
+ name: "PrivateCOTI",
490
+ signerOrOptions?: ethers.Signer | FactoryOptions
491
+ ): Promise<Contracts.PrivateCOTI__factory>;
492
+ getContractFactory(
493
+ name: "PrivateCOTITreasuryGovernanceToken",
494
+ signerOrOptions?: ethers.Signer | FactoryOptions
495
+ ): Promise<Contracts.PrivateCOTITreasuryGovernanceToken__factory>;
496
+ getContractFactory(
497
+ name: "PrivateTetherUSD",
498
+ signerOrOptions?: ethers.Signer | FactoryOptions
499
+ ): Promise<Contracts.PrivateTetherUSD__factory>;
500
+ getContractFactory(
501
+ name: "PrivateWrappedADA",
502
+ signerOrOptions?: ethers.Signer | FactoryOptions
503
+ ): Promise<Contracts.PrivateWrappedADA__factory>;
504
+ getContractFactory(
505
+ name: "PrivateWrappedBTC",
506
+ signerOrOptions?: ethers.Signer | FactoryOptions
507
+ ): Promise<Contracts.PrivateWrappedBTC__factory>;
508
+ getContractFactory(
509
+ name: "PrivateWrappedEther",
510
+ signerOrOptions?: ethers.Signer | FactoryOptions
511
+ ): Promise<Contracts.PrivateWrappedEther__factory>;
180
512
  getContractFactory(
181
513
  name: "IPrivateERC721URIStorage",
182
514
  signerOrOptions?: ethers.Signer | FactoryOptions
@@ -203,635 +535,1797 @@ declare module "hardhat/types/runtime" {
203
535
  ): Promise<Contracts.ExtendedOperations__factory>;
204
536
 
205
537
  getContractAt(
206
- name: "IERC4906",
538
+ name: "AccessControl",
207
539
  address: string | ethers.Addressable,
208
540
  signer?: ethers.Signer
209
- ): Promise<Contracts.IERC4906>;
541
+ ): Promise<Contracts.AccessControl>;
210
542
  getContractAt(
211
- name: "IERC721",
543
+ name: "AccessControlEnumerable",
212
544
  address: string | ethers.Addressable,
213
545
  signer?: ethers.Signer
214
- ): Promise<Contracts.IERC721>;
546
+ ): Promise<Contracts.AccessControlEnumerable>;
215
547
  getContractAt(
216
- name: "IERC721Receiver",
548
+ name: "IAccessControl",
217
549
  address: string | ethers.Addressable,
218
550
  signer?: ethers.Signer
219
- ): Promise<Contracts.IERC721Receiver>;
551
+ ): Promise<Contracts.IAccessControl>;
220
552
  getContractAt(
221
- name: "ERC165",
553
+ name: "IAccessControlEnumerable",
222
554
  address: string | ethers.Addressable,
223
555
  signer?: ethers.Signer
224
- ): Promise<Contracts.ERC165>;
556
+ ): Promise<Contracts.IAccessControlEnumerable>;
225
557
  getContractAt(
226
- name: "IERC165",
558
+ name: "Ownable",
227
559
  address: string | ethers.Addressable,
228
560
  signer?: ethers.Signer
229
- ): Promise<Contracts.IERC165>;
561
+ ): Promise<Contracts.Ownable>;
230
562
  getContractAt(
231
- name: "DataPrivacyFramework",
563
+ name: "IERC4906",
232
564
  address: string | ethers.Addressable,
233
565
  signer?: ethers.Signer
234
- ): Promise<Contracts.DataPrivacyFramework>;
566
+ ): Promise<Contracts.IERC4906>;
235
567
  getContractAt(
236
- name: "DataPrivacyFrameworkMpc",
568
+ name: "Pausable",
237
569
  address: string | ethers.Addressable,
238
570
  signer?: ethers.Signer
239
- ): Promise<Contracts.DataPrivacyFrameworkMpc>;
571
+ ): Promise<Contracts.Pausable>;
240
572
  getContractAt(
241
- name: "DataPrivacyFrameworkMock",
573
+ name: "ERC20",
242
574
  address: string | ethers.Addressable,
243
575
  signer?: ethers.Signer
244
- ): Promise<Contracts.DataPrivacyFrameworkMock>;
576
+ ): Promise<Contracts.ERC20>;
245
577
  getContractAt(
246
- name: "PrivateERC20Mock",
578
+ name: "IERC20Metadata",
247
579
  address: string | ethers.Addressable,
248
580
  signer?: ethers.Signer
249
- ): Promise<Contracts.PrivateERC20Mock>;
581
+ ): Promise<Contracts.IERC20Metadata>;
250
582
  getContractAt(
251
- name: "PrivateERC721URIStorageMock",
583
+ name: "IERC20Permit",
252
584
  address: string | ethers.Addressable,
253
585
  signer?: ethers.Signer
254
- ): Promise<Contracts.PrivateERC721URIStorageMock>;
586
+ ): Promise<Contracts.IERC20Permit>;
255
587
  getContractAt(
256
- name: "Arithmetic128BitTestsContract",
588
+ name: "IERC20",
257
589
  address: string | ethers.Addressable,
258
590
  signer?: ethers.Signer
259
- ): Promise<Contracts.Arithmetic128BitTestsContract>;
591
+ ): Promise<Contracts.IERC20>;
260
592
  getContractAt(
261
- name: "Arithmetic256BitTestsContract",
593
+ name: "ERC721",
262
594
  address: string | ethers.Addressable,
263
595
  signer?: ethers.Signer
264
- ): Promise<Contracts.Arithmetic256BitTestsContract>;
596
+ ): Promise<Contracts.ERC721>;
265
597
  getContractAt(
266
- name: "ArithmeticTestsContract",
598
+ name: "IERC721Metadata",
267
599
  address: string | ethers.Addressable,
268
600
  signer?: ethers.Signer
269
- ): Promise<Contracts.ArithmeticTestsContract>;
601
+ ): Promise<Contracts.IERC721Metadata>;
270
602
  getContractAt(
271
- name: "Bitwise128BitTestsContract",
603
+ name: "IERC721",
272
604
  address: string | ethers.Addressable,
273
605
  signer?: ethers.Signer
274
- ): Promise<Contracts.Bitwise128BitTestsContract>;
606
+ ): Promise<Contracts.IERC721>;
275
607
  getContractAt(
276
- name: "Bitwise256BitTestsContract",
608
+ name: "IERC721Receiver",
277
609
  address: string | ethers.Addressable,
278
610
  signer?: ethers.Signer
279
- ): Promise<Contracts.Bitwise256BitTestsContract>;
611
+ ): Promise<Contracts.IERC721Receiver>;
280
612
  getContractAt(
281
- name: "BitwiseTestsContract",
613
+ name: "ERC165",
282
614
  address: string | ethers.Addressable,
283
615
  signer?: ethers.Signer
284
- ): Promise<Contracts.BitwiseTestsContract>;
616
+ ): Promise<Contracts.ERC165>;
285
617
  getContractAt(
286
- name: "CheckedArithmeticWithOverflowBitTestsContract",
618
+ name: "IERC165",
287
619
  address: string | ethers.Addressable,
288
620
  signer?: ethers.Signer
289
- ): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
621
+ ): Promise<Contracts.IERC165>;
290
622
  getContractAt(
291
- name: "Comparison128BitTestsContract",
623
+ name: "DataPrivacyFramework",
292
624
  address: string | ethers.Addressable,
293
625
  signer?: ethers.Signer
294
- ): Promise<Contracts.Comparison128BitTestsContract>;
626
+ ): Promise<Contracts.DataPrivacyFramework>;
295
627
  getContractAt(
296
- name: "Comparison1TestsContract",
628
+ name: "DataPrivacyFrameworkMpc",
297
629
  address: string | ethers.Addressable,
298
630
  signer?: ethers.Signer
299
- ): Promise<Contracts.Comparison1TestsContract>;
631
+ ): Promise<Contracts.DataPrivacyFrameworkMpc>;
300
632
  getContractAt(
301
- name: "Comparison256BitTestsContract",
633
+ name: "FixedRatioCoinDisperser",
302
634
  address: string | ethers.Addressable,
303
635
  signer?: ethers.Signer
304
- ): Promise<Contracts.Comparison256BitTestsContract>;
636
+ ): Promise<Contracts.FixedRatioCoinDisperser>;
305
637
  getContractAt(
306
- name: "Comparison2TestsContract",
638
+ name: "FixedRatioCoinDisperserLeftoverS1",
307
639
  address: string | ethers.Addressable,
308
640
  signer?: ethers.Signer
309
- ): Promise<Contracts.Comparison2TestsContract>;
641
+ ): Promise<Contracts.FixedRatioCoinDisperserLeftoverS1>;
310
642
  getContractAt(
311
- name: "MinMaxTestsContract",
643
+ name: "FixedRatioCoinDisperserUnlimitedWindow",
312
644
  address: string | ethers.Addressable,
313
645
  signer?: ethers.Signer
314
- ): Promise<Contracts.MinMaxTestsContract>;
646
+ ): Promise<Contracts.FixedRatioCoinDisperserUnlimitedWindow>;
315
647
  getContractAt(
316
- name: "Miscellaneous128BitTestsContract",
648
+ name: "IMintableERC20",
317
649
  address: string | ethers.Addressable,
318
650
  signer?: ethers.Signer
319
- ): Promise<Contracts.Miscellaneous128BitTestsContract>;
651
+ ): Promise<Contracts.IMintableERC20>;
320
652
  getContractAt(
321
- name: "Miscellaneous1TestsContract",
653
+ name: "IOwnable",
322
654
  address: string | ethers.Addressable,
323
655
  signer?: ethers.Signer
324
- ): Promise<Contracts.Miscellaneous1TestsContract>;
656
+ ): Promise<Contracts.IOwnable>;
325
657
  getContractAt(
326
- name: "Miscellaneous256BitTestsContract",
658
+ name: "MintDisperser",
327
659
  address: string | ethers.Addressable,
328
660
  signer?: ethers.Signer
329
- ): Promise<Contracts.Miscellaneous256BitTestsContract>;
661
+ ): Promise<Contracts.MintDisperser>;
330
662
  getContractAt(
331
- name: "MiscellaneousTestsContract",
663
+ name: "TokenDisperser",
332
664
  address: string | ethers.Addressable,
333
665
  signer?: ethers.Signer
334
- ): Promise<Contracts.MiscellaneousTestsContract>;
666
+ ): Promise<Contracts.TokenDisperser>;
335
667
  getContractAt(
336
- name: "OffboardToUserKeyTestContract",
668
+ name: "PrivateMessaging",
337
669
  address: string | ethers.Addressable,
338
670
  signer?: ethers.Signer
339
- ): Promise<Contracts.OffboardToUserKeyTestContract>;
671
+ ): Promise<Contracts.PrivateMessaging>;
340
672
  getContractAt(
341
- name: "ShiftTestsContract",
673
+ name: "DataPrivacyFrameworkMock",
342
674
  address: string | ethers.Addressable,
343
675
  signer?: ethers.Signer
344
- ): Promise<Contracts.ShiftTestsContract>;
676
+ ): Promise<Contracts.DataPrivacyFrameworkMock>;
345
677
  getContractAt(
346
- name: "StringTestsContract",
678
+ name: "PrivateMessagingHarness",
347
679
  address: string | ethers.Addressable,
348
680
  signer?: ethers.Signer
349
- ): Promise<Contracts.StringTestsContract>;
681
+ ): Promise<Contracts.PrivateMessagingHarness>;
350
682
  getContractAt(
351
- name: "TransferScalarTestsContract",
683
+ name: "CotiPriceConsumerMock",
352
684
  address: string | ethers.Addressable,
353
685
  signer?: ethers.Signer
354
- ): Promise<Contracts.TransferScalarTestsContract>;
686
+ ): Promise<Contracts.CotiPriceConsumerMock>;
355
687
  getContractAt(
356
- name: "TransferTestsContract",
688
+ name: "ERC20DecimalsMock",
357
689
  address: string | ethers.Addressable,
358
690
  signer?: ethers.Signer
359
- ): Promise<Contracts.TransferTestsContract>;
691
+ ): Promise<Contracts.ERC20DecimalsMock>;
360
692
  getContractAt(
361
- name: "TransferWithAllowance64_16TestsContract",
693
+ name: "ERC20Mock",
362
694
  address: string | ethers.Addressable,
363
695
  signer?: ethers.Signer
364
- ): Promise<Contracts.TransferWithAllowance64_16TestsContract>;
696
+ ): Promise<Contracts.ERC20Mock>;
365
697
  getContractAt(
366
- name: "TransferWithAllowance64_32TestsContract",
698
+ name: "EncryptedTokenReceiverMock",
367
699
  address: string | ethers.Addressable,
368
700
  signer?: ethers.Signer
369
- ): Promise<Contracts.TransferWithAllowance64_32TestsContract>;
701
+ ): Promise<Contracts.EncryptedTokenReceiverMock>;
370
702
  getContractAt(
371
- name: "TransferWithAllowance64_64TestsContract",
703
+ name: "PrivacyBridgeERC20Mock",
372
704
  address: string | ethers.Addressable,
373
705
  signer?: ethers.Signer
374
- ): Promise<Contracts.TransferWithAllowance64_64TestsContract>;
706
+ ): Promise<Contracts.PrivacyBridgeERC20Mock>;
375
707
  getContractAt(
376
- name: "TransferWithAllowance64_8TestsContract",
708
+ name: "PrivateERC20AuditorSupplyMock",
377
709
  address: string | ethers.Addressable,
378
710
  signer?: ethers.Signer
379
- ): Promise<Contracts.TransferWithAllowance64_8TestsContract>;
711
+ ): Promise<Contracts.PrivateERC20AuditorSupplyMock>;
380
712
  getContractAt(
381
- name: "TransferWithAllowanceScalarTestsContract",
713
+ name: "PrivateERC20CappedMock",
382
714
  address: string | ethers.Addressable,
383
715
  signer?: ethers.Signer
384
- ): Promise<Contracts.TransferWithAllowanceScalarTestsContract>;
716
+ ): Promise<Contracts.PrivateERC20CappedMock>;
385
717
  getContractAt(
386
- name: "TransferWithAllowanceTestsContract",
718
+ name: "PrivateERC20GtCallerMock",
387
719
  address: string | ethers.Addressable,
388
720
  signer?: ethers.Signer
389
- ): Promise<Contracts.TransferWithAllowanceTestsContract>;
721
+ ): Promise<Contracts.PrivateERC20GtCallerMock>;
390
722
  getContractAt(
391
- name: "PrivateERC20WalletMock",
723
+ name: "PrivateERC20Mock",
392
724
  address: string | ethers.Addressable,
393
725
  signer?: ethers.Signer
394
- ): Promise<Contracts.PrivateERC20WalletMock>;
726
+ ): Promise<Contracts.PrivateERC20Mock>;
395
727
  getContractAt(
396
- name: "AccountOnboard",
728
+ name: "IPrivateERC20TransferAndCallEncrypted",
397
729
  address: string | ethers.Addressable,
398
730
  signer?: ethers.Signer
399
- ): Promise<Contracts.AccountOnboard>;
731
+ ): Promise<Contracts.IPrivateERC20TransferAndCallEncrypted>;
400
732
  getContractAt(
401
- name: "IPrivateERC20",
733
+ name: "PrivateERC20ReentrantReceiverMock",
402
734
  address: string | ethers.Addressable,
403
735
  signer?: ethers.Signer
404
- ): Promise<Contracts.IPrivateERC20>;
736
+ ): Promise<Contracts.PrivateERC20ReentrantReceiverMock>;
405
737
  getContractAt(
406
- name: "PrivateERC20",
738
+ name: "PublicReentrantTokenReceiverMock",
407
739
  address: string | ethers.Addressable,
408
740
  signer?: ethers.Signer
409
- ): Promise<Contracts.PrivateERC20>;
741
+ ): Promise<Contracts.PublicReentrantTokenReceiverMock>;
410
742
  getContractAt(
411
- name: "IPrivateERC721URIStorage",
743
+ name: "PublicTokenReceiverBoolMock",
412
744
  address: string | ethers.Addressable,
413
745
  signer?: ethers.Signer
414
- ): Promise<Contracts.IPrivateERC721URIStorage>;
746
+ ): Promise<Contracts.PublicTokenReceiverBoolMock>;
415
747
  getContractAt(
416
- name: "PrivateERC721URIStorage",
748
+ name: "PublicTokenReceiverMock",
417
749
  address: string | ethers.Addressable,
418
750
  signer?: ethers.Signer
419
- ): Promise<Contracts.PrivateERC721URIStorage>;
751
+ ): Promise<Contracts.PublicTokenReceiverMock>;
420
752
  getContractAt(
421
- name: "IERC721Errors",
753
+ name: "PrivateERC721URIStorageMock",
422
754
  address: string | ethers.Addressable,
423
755
  signer?: ethers.Signer
424
- ): Promise<Contracts.IERC721Errors>;
756
+ ): Promise<Contracts.PrivateERC721URIStorageMock>;
425
757
  getContractAt(
426
- name: "PrivateERC721",
758
+ name: "Arithmetic128TestsContract",
427
759
  address: string | ethers.Addressable,
428
760
  signer?: ethers.Signer
429
- ): Promise<Contracts.PrivateERC721>;
761
+ ): Promise<Contracts.Arithmetic128TestsContract>;
430
762
  getContractAt(
431
- name: "MpcCore",
763
+ name: "Arithmetic256TestsContract",
432
764
  address: string | ethers.Addressable,
433
765
  signer?: ethers.Signer
434
- ): Promise<Contracts.MpcCore>;
766
+ ): Promise<Contracts.Arithmetic256TestsContract>;
435
767
  getContractAt(
436
- name: "ExtendedOperations",
768
+ name: "ArithmeticTestsContract",
437
769
  address: string | ethers.Addressable,
438
770
  signer?: ethers.Signer
439
- ): Promise<Contracts.ExtendedOperations>;
440
-
771
+ ): Promise<Contracts.ArithmeticTestsContract>;
772
+ getContractAt(
773
+ name: "Bitwise128TestsContract",
774
+ address: string | ethers.Addressable,
775
+ signer?: ethers.Signer
776
+ ): Promise<Contracts.Bitwise128TestsContract>;
777
+ getContractAt(
778
+ name: "Bitwise256TestsContract",
779
+ address: string | ethers.Addressable,
780
+ signer?: ethers.Signer
781
+ ): Promise<Contracts.Bitwise256TestsContract>;
782
+ getContractAt(
783
+ name: "BitwiseTestsContract",
784
+ address: string | ethers.Addressable,
785
+ signer?: ethers.Signer
786
+ ): Promise<Contracts.BitwiseTestsContract>;
787
+ getContractAt(
788
+ name: "CheckedArithmetic128WithOverflowBitTestsContract",
789
+ address: string | ethers.Addressable,
790
+ signer?: ethers.Signer
791
+ ): Promise<Contracts.CheckedArithmetic128WithOverflowBitTestsContract>;
792
+ getContractAt(
793
+ name: "CheckedArithmetic256WithOverflowBitTestsContract",
794
+ address: string | ethers.Addressable,
795
+ signer?: ethers.Signer
796
+ ): Promise<Contracts.CheckedArithmetic256WithOverflowBitTestsContract>;
797
+ getContractAt(
798
+ name: "CheckedArithmeticWithOverflowBitTestsContract",
799
+ address: string | ethers.Addressable,
800
+ signer?: ethers.Signer
801
+ ): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
802
+ getContractAt(
803
+ name: "Comparison128TestsContract",
804
+ address: string | ethers.Addressable,
805
+ signer?: ethers.Signer
806
+ ): Promise<Contracts.Comparison128TestsContract>;
807
+ getContractAt(
808
+ name: "Comparison1TestsContract",
809
+ address: string | ethers.Addressable,
810
+ signer?: ethers.Signer
811
+ ): Promise<Contracts.Comparison1TestsContract>;
812
+ getContractAt(
813
+ name: "Comparison256TestsContract",
814
+ address: string | ethers.Addressable,
815
+ signer?: ethers.Signer
816
+ ): Promise<Contracts.Comparison256TestsContract>;
817
+ getContractAt(
818
+ name: "Comparison2TestsContract",
819
+ address: string | ethers.Addressable,
820
+ signer?: ethers.Signer
821
+ ): Promise<Contracts.Comparison2TestsContract>;
822
+ getContractAt(
823
+ name: "MinimalImplementation",
824
+ address: string | ethers.Addressable,
825
+ signer?: ethers.Signer
826
+ ): Promise<Contracts.MinimalImplementation>;
827
+ getContractAt(
828
+ name: "MinimalProxy",
829
+ address: string | ethers.Addressable,
830
+ signer?: ethers.Signer
831
+ ): Promise<Contracts.MinimalProxy>;
832
+ getContractAt(
833
+ name: "MinMax128TestsContract",
834
+ address: string | ethers.Addressable,
835
+ signer?: ethers.Signer
836
+ ): Promise<Contracts.MinMax128TestsContract>;
837
+ getContractAt(
838
+ name: "MinMax256TestsContract",
839
+ address: string | ethers.Addressable,
840
+ signer?: ethers.Signer
841
+ ): Promise<Contracts.MinMax256TestsContract>;
842
+ getContractAt(
843
+ name: "MinMaxTestsContract",
844
+ address: string | ethers.Addressable,
845
+ signer?: ethers.Signer
846
+ ): Promise<Contracts.MinMaxTestsContract>;
847
+ getContractAt(
848
+ name: "Miscellaneous1TestsContract",
849
+ address: string | ethers.Addressable,
850
+ signer?: ethers.Signer
851
+ ): Promise<Contracts.Miscellaneous1TestsContract>;
852
+ getContractAt(
853
+ name: "MiscellaneousTestsContract",
854
+ address: string | ethers.Addressable,
855
+ signer?: ethers.Signer
856
+ ): Promise<Contracts.MiscellaneousTestsContract>;
857
+ getContractAt(
858
+ name: "MpcOperations128TestContract",
859
+ address: string | ethers.Addressable,
860
+ signer?: ethers.Signer
861
+ ): Promise<Contracts.MpcOperations128TestContract>;
862
+ getContractAt(
863
+ name: "MpcOperationsTestContract",
864
+ address: string | ethers.Addressable,
865
+ signer?: ethers.Signer
866
+ ): Promise<Contracts.MpcOperationsTestContract>;
867
+ getContractAt(
868
+ name: "Mux128TestsContract",
869
+ address: string | ethers.Addressable,
870
+ signer?: ethers.Signer
871
+ ): Promise<Contracts.Mux128TestsContract>;
872
+ getContractAt(
873
+ name: "Mux256TestsContract",
874
+ address: string | ethers.Addressable,
875
+ signer?: ethers.Signer
876
+ ): Promise<Contracts.Mux256TestsContract>;
877
+ getContractAt(
878
+ name: "OffboardToUserKeyTestContract",
879
+ address: string | ethers.Addressable,
880
+ signer?: ethers.Signer
881
+ ): Promise<Contracts.OffboardToUserKeyTestContract>;
882
+ getContractAt(
883
+ name: "OnBoard128TestsContract",
884
+ address: string | ethers.Addressable,
885
+ signer?: ethers.Signer
886
+ ): Promise<Contracts.OnBoard128TestsContract>;
887
+ getContractAt(
888
+ name: "OnBoard256TestsContract",
889
+ address: string | ethers.Addressable,
890
+ signer?: ethers.Signer
891
+ ): Promise<Contracts.OnBoard256TestsContract>;
892
+ getContractAt(
893
+ name: "PrivacyImplementationV1",
894
+ address: string | ethers.Addressable,
895
+ signer?: ethers.Signer
896
+ ): Promise<Contracts.PrivacyImplementationV1>;
897
+ getContractAt(
898
+ name: "PrivacyImplementationV2",
899
+ address: string | ethers.Addressable,
900
+ signer?: ethers.Signer
901
+ ): Promise<Contracts.PrivacyImplementationV2>;
902
+ getContractAt(
903
+ name: "PrivacyProxy",
904
+ address: string | ethers.Addressable,
905
+ signer?: ethers.Signer
906
+ ): Promise<Contracts.PrivacyProxy>;
907
+ getContractAt(
908
+ name: "Random128TestsContract",
909
+ address: string | ethers.Addressable,
910
+ signer?: ethers.Signer
911
+ ): Promise<Contracts.Random128TestsContract>;
912
+ getContractAt(
913
+ name: "Random256TestsContract",
914
+ address: string | ethers.Addressable,
915
+ signer?: ethers.Signer
916
+ ): Promise<Contracts.Random256TestsContract>;
917
+ getContractAt(
918
+ name: "Shift128TestsContract",
919
+ address: string | ethers.Addressable,
920
+ signer?: ethers.Signer
921
+ ): Promise<Contracts.Shift128TestsContract>;
922
+ getContractAt(
923
+ name: "Shift256TestsContract",
924
+ address: string | ethers.Addressable,
925
+ signer?: ethers.Signer
926
+ ): Promise<Contracts.Shift256TestsContract>;
927
+ getContractAt(
928
+ name: "ShiftTestsContract",
929
+ address: string | ethers.Addressable,
930
+ signer?: ethers.Signer
931
+ ): Promise<Contracts.ShiftTestsContract>;
932
+ getContractAt(
933
+ name: "StringTestsContract",
934
+ address: string | ethers.Addressable,
935
+ signer?: ethers.Signer
936
+ ): Promise<Contracts.StringTestsContract>;
937
+ getContractAt(
938
+ name: "Transfer128TestsContract",
939
+ address: string | ethers.Addressable,
940
+ signer?: ethers.Signer
941
+ ): Promise<Contracts.Transfer128TestsContract>;
942
+ getContractAt(
943
+ name: "Transfer256TestsContract",
944
+ address: string | ethers.Addressable,
945
+ signer?: ethers.Signer
946
+ ): Promise<Contracts.Transfer256TestsContract>;
947
+ getContractAt(
948
+ name: "TransferScalarTestsContract",
949
+ address: string | ethers.Addressable,
950
+ signer?: ethers.Signer
951
+ ): Promise<Contracts.TransferScalarTestsContract>;
952
+ getContractAt(
953
+ name: "TransferTestsContract",
954
+ address: string | ethers.Addressable,
955
+ signer?: ethers.Signer
956
+ ): Promise<Contracts.TransferTestsContract>;
957
+ getContractAt(
958
+ name: "TransferWithAllowance128TestsContract",
959
+ address: string | ethers.Addressable,
960
+ signer?: ethers.Signer
961
+ ): Promise<Contracts.TransferWithAllowance128TestsContract>;
962
+ getContractAt(
963
+ name: "TransferWithAllowance256TestsContract",
964
+ address: string | ethers.Addressable,
965
+ signer?: ethers.Signer
966
+ ): Promise<Contracts.TransferWithAllowance256TestsContract>;
967
+ getContractAt(
968
+ name: "TransferWithAllowance64_16TestsContract",
969
+ address: string | ethers.Addressable,
970
+ signer?: ethers.Signer
971
+ ): Promise<Contracts.TransferWithAllowance64_16TestsContract>;
972
+ getContractAt(
973
+ name: "TransferWithAllowance64_32TestsContract",
974
+ address: string | ethers.Addressable,
975
+ signer?: ethers.Signer
976
+ ): Promise<Contracts.TransferWithAllowance64_32TestsContract>;
977
+ getContractAt(
978
+ name: "TransferWithAllowance64_64TestsContract",
979
+ address: string | ethers.Addressable,
980
+ signer?: ethers.Signer
981
+ ): Promise<Contracts.TransferWithAllowance64_64TestsContract>;
982
+ getContractAt(
983
+ name: "TransferWithAllowance64_8TestsContract",
984
+ address: string | ethers.Addressable,
985
+ signer?: ethers.Signer
986
+ ): Promise<Contracts.TransferWithAllowance64_8TestsContract>;
987
+ getContractAt(
988
+ name: "TransferWithAllowanceScalarTestsContract",
989
+ address: string | ethers.Addressable,
990
+ signer?: ethers.Signer
991
+ ): Promise<Contracts.TransferWithAllowanceScalarTestsContract>;
992
+ getContractAt(
993
+ name: "TransferWithAllowanceTestsContract",
994
+ address: string | ethers.Addressable,
995
+ signer?: ethers.Signer
996
+ ): Promise<Contracts.TransferWithAllowanceTestsContract>;
997
+ getContractAt(
998
+ name: "ValidateCiphertext128TestsContract",
999
+ address: string | ethers.Addressable,
1000
+ signer?: ethers.Signer
1001
+ ): Promise<Contracts.ValidateCiphertext128TestsContract>;
1002
+ getContractAt(
1003
+ name: "ValidateCiphertext256TestsContract",
1004
+ address: string | ethers.Addressable,
1005
+ signer?: ethers.Signer
1006
+ ): Promise<Contracts.ValidateCiphertext256TestsContract>;
1007
+ getContractAt(
1008
+ name: "ValidateCiphertextTestsContract",
1009
+ address: string | ethers.Addressable,
1010
+ signer?: ethers.Signer
1011
+ ): Promise<Contracts.ValidateCiphertextTestsContract>;
1012
+ getContractAt(
1013
+ name: "PrivateERC20WalletMock",
1014
+ address: string | ethers.Addressable,
1015
+ signer?: ethers.Signer
1016
+ ): Promise<Contracts.PrivateERC20WalletMock>;
1017
+ getContractAt(
1018
+ name: "CotiNodeRewards",
1019
+ address: string | ethers.Addressable,
1020
+ signer?: ethers.Signer
1021
+ ): Promise<Contracts.CotiNodeRewards>;
1022
+ getContractAt(
1023
+ name: "IERC5192",
1024
+ address: string | ethers.Addressable,
1025
+ signer?: ethers.Signer
1026
+ ): Promise<Contracts.IERC5192>;
1027
+ getContractAt(
1028
+ name: "SoulboundNodeNFT",
1029
+ address: string | ethers.Addressable,
1030
+ signer?: ethers.Signer
1031
+ ): Promise<Contracts.SoulboundNodeNFT>;
1032
+ getContractAt(
1033
+ name: "AccountOnboard",
1034
+ address: string | ethers.Addressable,
1035
+ signer?: ethers.Signer
1036
+ ): Promise<Contracts.AccountOnboard>;
1037
+ getContractAt(
1038
+ name: "CotiPriceConsumer",
1039
+ address: string | ethers.Addressable,
1040
+ signer?: ethers.Signer
1041
+ ): Promise<Contracts.CotiPriceConsumer>;
1042
+ getContractAt(
1043
+ name: "ICotiPriceConsumer",
1044
+ address: string | ethers.Addressable,
1045
+ signer?: ethers.Signer
1046
+ ): Promise<Contracts.ICotiPriceConsumer>;
1047
+ getContractAt(
1048
+ name: "IStdReference",
1049
+ address: string | ethers.Addressable,
1050
+ signer?: ethers.Signer
1051
+ ): Promise<Contracts.IStdReference>;
1052
+ getContractAt(
1053
+ name: "PrivacyBridge",
1054
+ address: string | ethers.Addressable,
1055
+ signer?: ethers.Signer
1056
+ ): Promise<Contracts.PrivacyBridge>;
1057
+ getContractAt(
1058
+ name: "PrivacyBridgeCotiNative",
1059
+ address: string | ethers.Addressable,
1060
+ signer?: ethers.Signer
1061
+ ): Promise<Contracts.PrivacyBridgeCotiNative>;
1062
+ getContractAt(
1063
+ name: "IHasDecimals",
1064
+ address: string | ethers.Addressable,
1065
+ signer?: ethers.Signer
1066
+ ): Promise<Contracts.IHasDecimals>;
1067
+ getContractAt(
1068
+ name: "PrivacyBridgeERC20",
1069
+ address: string | ethers.Addressable,
1070
+ signer?: ethers.Signer
1071
+ ): Promise<Contracts.PrivacyBridgeERC20>;
1072
+ getContractAt(
1073
+ name: "PrivacyBridgegCoti",
1074
+ address: string | ethers.Addressable,
1075
+ signer?: ethers.Signer
1076
+ ): Promise<Contracts.PrivacyBridgegCoti>;
1077
+ getContractAt(
1078
+ name: "PrivacyBridgeUSDCe",
1079
+ address: string | ethers.Addressable,
1080
+ signer?: ethers.Signer
1081
+ ): Promise<Contracts.PrivacyBridgeUSDCe>;
1082
+ getContractAt(
1083
+ name: "PrivacyBridgeUSDT",
1084
+ address: string | ethers.Addressable,
1085
+ signer?: ethers.Signer
1086
+ ): Promise<Contracts.PrivacyBridgeUSDT>;
1087
+ getContractAt(
1088
+ name: "PrivacyBridgeWADA",
1089
+ address: string | ethers.Addressable,
1090
+ signer?: ethers.Signer
1091
+ ): Promise<Contracts.PrivacyBridgeWADA>;
1092
+ getContractAt(
1093
+ name: "PrivacyBridgeWBTC",
1094
+ address: string | ethers.Addressable,
1095
+ signer?: ethers.Signer
1096
+ ): Promise<Contracts.PrivacyBridgeWBTC>;
1097
+ getContractAt(
1098
+ name: "PrivacyBridgeWETH",
1099
+ address: string | ethers.Addressable,
1100
+ signer?: ethers.Signer
1101
+ ): Promise<Contracts.PrivacyBridgeWETH>;
1102
+ getContractAt(
1103
+ name: "IPrivateERC20",
1104
+ address: string | ethers.Addressable,
1105
+ signer?: ethers.Signer
1106
+ ): Promise<Contracts.IPrivateERC20>;
1107
+ getContractAt(
1108
+ name: "ITokenReceiver",
1109
+ address: string | ethers.Addressable,
1110
+ signer?: ethers.Signer
1111
+ ): Promise<Contracts.ITokenReceiver>;
1112
+ getContractAt(
1113
+ name: "ITokenReceiverEncrypted",
1114
+ address: string | ethers.Addressable,
1115
+ signer?: ethers.Signer
1116
+ ): Promise<Contracts.ITokenReceiverEncrypted>;
1117
+ getContractAt(
1118
+ name: "PrivateERC20",
1119
+ address: string | ethers.Addressable,
1120
+ signer?: ethers.Signer
1121
+ ): Promise<Contracts.PrivateERC20>;
1122
+ getContractAt(
1123
+ name: "PrivateBridgedUSDC",
1124
+ address: string | ethers.Addressable,
1125
+ signer?: ethers.Signer
1126
+ ): Promise<Contracts.PrivateBridgedUSDC>;
1127
+ getContractAt(
1128
+ name: "PrivateCOTI",
1129
+ address: string | ethers.Addressable,
1130
+ signer?: ethers.Signer
1131
+ ): Promise<Contracts.PrivateCOTI>;
1132
+ getContractAt(
1133
+ name: "PrivateCOTITreasuryGovernanceToken",
1134
+ address: string | ethers.Addressable,
1135
+ signer?: ethers.Signer
1136
+ ): Promise<Contracts.PrivateCOTITreasuryGovernanceToken>;
1137
+ getContractAt(
1138
+ name: "PrivateTetherUSD",
1139
+ address: string | ethers.Addressable,
1140
+ signer?: ethers.Signer
1141
+ ): Promise<Contracts.PrivateTetherUSD>;
1142
+ getContractAt(
1143
+ name: "PrivateWrappedADA",
1144
+ address: string | ethers.Addressable,
1145
+ signer?: ethers.Signer
1146
+ ): Promise<Contracts.PrivateWrappedADA>;
1147
+ getContractAt(
1148
+ name: "PrivateWrappedBTC",
1149
+ address: string | ethers.Addressable,
1150
+ signer?: ethers.Signer
1151
+ ): Promise<Contracts.PrivateWrappedBTC>;
1152
+ getContractAt(
1153
+ name: "PrivateWrappedEther",
1154
+ address: string | ethers.Addressable,
1155
+ signer?: ethers.Signer
1156
+ ): Promise<Contracts.PrivateWrappedEther>;
1157
+ getContractAt(
1158
+ name: "IPrivateERC721URIStorage",
1159
+ address: string | ethers.Addressable,
1160
+ signer?: ethers.Signer
1161
+ ): Promise<Contracts.IPrivateERC721URIStorage>;
1162
+ getContractAt(
1163
+ name: "PrivateERC721URIStorage",
1164
+ address: string | ethers.Addressable,
1165
+ signer?: ethers.Signer
1166
+ ): Promise<Contracts.PrivateERC721URIStorage>;
1167
+ getContractAt(
1168
+ name: "IERC721Errors",
1169
+ address: string | ethers.Addressable,
1170
+ signer?: ethers.Signer
1171
+ ): Promise<Contracts.IERC721Errors>;
1172
+ getContractAt(
1173
+ name: "PrivateERC721",
1174
+ address: string | ethers.Addressable,
1175
+ signer?: ethers.Signer
1176
+ ): Promise<Contracts.PrivateERC721>;
1177
+ getContractAt(
1178
+ name: "MpcCore",
1179
+ address: string | ethers.Addressable,
1180
+ signer?: ethers.Signer
1181
+ ): Promise<Contracts.MpcCore>;
1182
+ getContractAt(
1183
+ name: "ExtendedOperations",
1184
+ address: string | ethers.Addressable,
1185
+ signer?: ethers.Signer
1186
+ ): Promise<Contracts.ExtendedOperations>;
1187
+
1188
+ deployContract(
1189
+ name: "AccessControl",
1190
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1191
+ ): Promise<Contracts.AccessControl>;
1192
+ deployContract(
1193
+ name: "AccessControlEnumerable",
1194
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1195
+ ): Promise<Contracts.AccessControlEnumerable>;
1196
+ deployContract(
1197
+ name: "IAccessControl",
1198
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1199
+ ): Promise<Contracts.IAccessControl>;
1200
+ deployContract(
1201
+ name: "IAccessControlEnumerable",
1202
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1203
+ ): Promise<Contracts.IAccessControlEnumerable>;
1204
+ deployContract(
1205
+ name: "Ownable",
1206
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1207
+ ): Promise<Contracts.Ownable>;
1208
+ deployContract(
1209
+ name: "IERC4906",
1210
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1211
+ ): Promise<Contracts.IERC4906>;
1212
+ deployContract(
1213
+ name: "Pausable",
1214
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1215
+ ): Promise<Contracts.Pausable>;
1216
+ deployContract(
1217
+ name: "ERC20",
1218
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1219
+ ): Promise<Contracts.ERC20>;
1220
+ deployContract(
1221
+ name: "IERC20Metadata",
1222
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1223
+ ): Promise<Contracts.IERC20Metadata>;
1224
+ deployContract(
1225
+ name: "IERC20Permit",
1226
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1227
+ ): Promise<Contracts.IERC20Permit>;
1228
+ deployContract(
1229
+ name: "IERC20",
1230
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1231
+ ): Promise<Contracts.IERC20>;
1232
+ deployContract(
1233
+ name: "ERC721",
1234
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1235
+ ): Promise<Contracts.ERC721>;
1236
+ deployContract(
1237
+ name: "IERC721Metadata",
1238
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1239
+ ): Promise<Contracts.IERC721Metadata>;
1240
+ deployContract(
1241
+ name: "IERC721",
1242
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1243
+ ): Promise<Contracts.IERC721>;
1244
+ deployContract(
1245
+ name: "IERC721Receiver",
1246
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1247
+ ): Promise<Contracts.IERC721Receiver>;
1248
+ deployContract(
1249
+ name: "ERC165",
1250
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1251
+ ): Promise<Contracts.ERC165>;
1252
+ deployContract(
1253
+ name: "IERC165",
1254
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1255
+ ): Promise<Contracts.IERC165>;
1256
+ deployContract(
1257
+ name: "DataPrivacyFramework",
1258
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1259
+ ): Promise<Contracts.DataPrivacyFramework>;
1260
+ deployContract(
1261
+ name: "DataPrivacyFrameworkMpc",
1262
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1263
+ ): Promise<Contracts.DataPrivacyFrameworkMpc>;
1264
+ deployContract(
1265
+ name: "FixedRatioCoinDisperser",
1266
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1267
+ ): Promise<Contracts.FixedRatioCoinDisperser>;
1268
+ deployContract(
1269
+ name: "FixedRatioCoinDisperserLeftoverS1",
1270
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1271
+ ): Promise<Contracts.FixedRatioCoinDisperserLeftoverS1>;
1272
+ deployContract(
1273
+ name: "FixedRatioCoinDisperserUnlimitedWindow",
1274
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1275
+ ): Promise<Contracts.FixedRatioCoinDisperserUnlimitedWindow>;
1276
+ deployContract(
1277
+ name: "IMintableERC20",
1278
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1279
+ ): Promise<Contracts.IMintableERC20>;
1280
+ deployContract(
1281
+ name: "IOwnable",
1282
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1283
+ ): Promise<Contracts.IOwnable>;
1284
+ deployContract(
1285
+ name: "MintDisperser",
1286
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1287
+ ): Promise<Contracts.MintDisperser>;
1288
+ deployContract(
1289
+ name: "TokenDisperser",
1290
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1291
+ ): Promise<Contracts.TokenDisperser>;
1292
+ deployContract(
1293
+ name: "PrivateMessaging",
1294
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1295
+ ): Promise<Contracts.PrivateMessaging>;
1296
+ deployContract(
1297
+ name: "DataPrivacyFrameworkMock",
1298
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1299
+ ): Promise<Contracts.DataPrivacyFrameworkMock>;
1300
+ deployContract(
1301
+ name: "PrivateMessagingHarness",
1302
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1303
+ ): Promise<Contracts.PrivateMessagingHarness>;
1304
+ deployContract(
1305
+ name: "CotiPriceConsumerMock",
1306
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1307
+ ): Promise<Contracts.CotiPriceConsumerMock>;
1308
+ deployContract(
1309
+ name: "ERC20DecimalsMock",
1310
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1311
+ ): Promise<Contracts.ERC20DecimalsMock>;
1312
+ deployContract(
1313
+ name: "ERC20Mock",
1314
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1315
+ ): Promise<Contracts.ERC20Mock>;
1316
+ deployContract(
1317
+ name: "EncryptedTokenReceiverMock",
1318
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1319
+ ): Promise<Contracts.EncryptedTokenReceiverMock>;
1320
+ deployContract(
1321
+ name: "PrivacyBridgeERC20Mock",
1322
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1323
+ ): Promise<Contracts.PrivacyBridgeERC20Mock>;
1324
+ deployContract(
1325
+ name: "PrivateERC20AuditorSupplyMock",
1326
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1327
+ ): Promise<Contracts.PrivateERC20AuditorSupplyMock>;
1328
+ deployContract(
1329
+ name: "PrivateERC20CappedMock",
1330
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1331
+ ): Promise<Contracts.PrivateERC20CappedMock>;
1332
+ deployContract(
1333
+ name: "PrivateERC20GtCallerMock",
1334
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1335
+ ): Promise<Contracts.PrivateERC20GtCallerMock>;
1336
+ deployContract(
1337
+ name: "PrivateERC20Mock",
1338
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1339
+ ): Promise<Contracts.PrivateERC20Mock>;
1340
+ deployContract(
1341
+ name: "IPrivateERC20TransferAndCallEncrypted",
1342
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1343
+ ): Promise<Contracts.IPrivateERC20TransferAndCallEncrypted>;
1344
+ deployContract(
1345
+ name: "PrivateERC20ReentrantReceiverMock",
1346
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1347
+ ): Promise<Contracts.PrivateERC20ReentrantReceiverMock>;
1348
+ deployContract(
1349
+ name: "PublicReentrantTokenReceiverMock",
1350
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1351
+ ): Promise<Contracts.PublicReentrantTokenReceiverMock>;
1352
+ deployContract(
1353
+ name: "PublicTokenReceiverBoolMock",
1354
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1355
+ ): Promise<Contracts.PublicTokenReceiverBoolMock>;
1356
+ deployContract(
1357
+ name: "PublicTokenReceiverMock",
1358
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1359
+ ): Promise<Contracts.PublicTokenReceiverMock>;
1360
+ deployContract(
1361
+ name: "PrivateERC721URIStorageMock",
1362
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1363
+ ): Promise<Contracts.PrivateERC721URIStorageMock>;
1364
+ deployContract(
1365
+ name: "Arithmetic128TestsContract",
1366
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1367
+ ): Promise<Contracts.Arithmetic128TestsContract>;
1368
+ deployContract(
1369
+ name: "Arithmetic256TestsContract",
1370
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1371
+ ): Promise<Contracts.Arithmetic256TestsContract>;
1372
+ deployContract(
1373
+ name: "ArithmeticTestsContract",
1374
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1375
+ ): Promise<Contracts.ArithmeticTestsContract>;
1376
+ deployContract(
1377
+ name: "Bitwise128TestsContract",
1378
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1379
+ ): Promise<Contracts.Bitwise128TestsContract>;
1380
+ deployContract(
1381
+ name: "Bitwise256TestsContract",
1382
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1383
+ ): Promise<Contracts.Bitwise256TestsContract>;
1384
+ deployContract(
1385
+ name: "BitwiseTestsContract",
1386
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1387
+ ): Promise<Contracts.BitwiseTestsContract>;
1388
+ deployContract(
1389
+ name: "CheckedArithmetic128WithOverflowBitTestsContract",
1390
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1391
+ ): Promise<Contracts.CheckedArithmetic128WithOverflowBitTestsContract>;
1392
+ deployContract(
1393
+ name: "CheckedArithmetic256WithOverflowBitTestsContract",
1394
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1395
+ ): Promise<Contracts.CheckedArithmetic256WithOverflowBitTestsContract>;
1396
+ deployContract(
1397
+ name: "CheckedArithmeticWithOverflowBitTestsContract",
1398
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1399
+ ): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
1400
+ deployContract(
1401
+ name: "Comparison128TestsContract",
1402
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1403
+ ): Promise<Contracts.Comparison128TestsContract>;
1404
+ deployContract(
1405
+ name: "Comparison1TestsContract",
1406
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1407
+ ): Promise<Contracts.Comparison1TestsContract>;
1408
+ deployContract(
1409
+ name: "Comparison256TestsContract",
1410
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1411
+ ): Promise<Contracts.Comparison256TestsContract>;
1412
+ deployContract(
1413
+ name: "Comparison2TestsContract",
1414
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1415
+ ): Promise<Contracts.Comparison2TestsContract>;
1416
+ deployContract(
1417
+ name: "MinimalImplementation",
1418
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1419
+ ): Promise<Contracts.MinimalImplementation>;
1420
+ deployContract(
1421
+ name: "MinimalProxy",
1422
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1423
+ ): Promise<Contracts.MinimalProxy>;
1424
+ deployContract(
1425
+ name: "MinMax128TestsContract",
1426
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1427
+ ): Promise<Contracts.MinMax128TestsContract>;
1428
+ deployContract(
1429
+ name: "MinMax256TestsContract",
1430
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1431
+ ): Promise<Contracts.MinMax256TestsContract>;
1432
+ deployContract(
1433
+ name: "MinMaxTestsContract",
1434
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1435
+ ): Promise<Contracts.MinMaxTestsContract>;
1436
+ deployContract(
1437
+ name: "Miscellaneous1TestsContract",
1438
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1439
+ ): Promise<Contracts.Miscellaneous1TestsContract>;
1440
+ deployContract(
1441
+ name: "MiscellaneousTestsContract",
1442
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1443
+ ): Promise<Contracts.MiscellaneousTestsContract>;
1444
+ deployContract(
1445
+ name: "MpcOperations128TestContract",
1446
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1447
+ ): Promise<Contracts.MpcOperations128TestContract>;
1448
+ deployContract(
1449
+ name: "MpcOperationsTestContract",
1450
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1451
+ ): Promise<Contracts.MpcOperationsTestContract>;
1452
+ deployContract(
1453
+ name: "Mux128TestsContract",
1454
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1455
+ ): Promise<Contracts.Mux128TestsContract>;
1456
+ deployContract(
1457
+ name: "Mux256TestsContract",
1458
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1459
+ ): Promise<Contracts.Mux256TestsContract>;
1460
+ deployContract(
1461
+ name: "OffboardToUserKeyTestContract",
1462
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1463
+ ): Promise<Contracts.OffboardToUserKeyTestContract>;
1464
+ deployContract(
1465
+ name: "OnBoard128TestsContract",
1466
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1467
+ ): Promise<Contracts.OnBoard128TestsContract>;
1468
+ deployContract(
1469
+ name: "OnBoard256TestsContract",
1470
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1471
+ ): Promise<Contracts.OnBoard256TestsContract>;
1472
+ deployContract(
1473
+ name: "PrivacyImplementationV1",
1474
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1475
+ ): Promise<Contracts.PrivacyImplementationV1>;
1476
+ deployContract(
1477
+ name: "PrivacyImplementationV2",
1478
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1479
+ ): Promise<Contracts.PrivacyImplementationV2>;
1480
+ deployContract(
1481
+ name: "PrivacyProxy",
1482
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1483
+ ): Promise<Contracts.PrivacyProxy>;
1484
+ deployContract(
1485
+ name: "Random128TestsContract",
1486
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1487
+ ): Promise<Contracts.Random128TestsContract>;
1488
+ deployContract(
1489
+ name: "Random256TestsContract",
1490
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1491
+ ): Promise<Contracts.Random256TestsContract>;
1492
+ deployContract(
1493
+ name: "Shift128TestsContract",
1494
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1495
+ ): Promise<Contracts.Shift128TestsContract>;
1496
+ deployContract(
1497
+ name: "Shift256TestsContract",
1498
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1499
+ ): Promise<Contracts.Shift256TestsContract>;
1500
+ deployContract(
1501
+ name: "ShiftTestsContract",
1502
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1503
+ ): Promise<Contracts.ShiftTestsContract>;
1504
+ deployContract(
1505
+ name: "StringTestsContract",
1506
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1507
+ ): Promise<Contracts.StringTestsContract>;
1508
+ deployContract(
1509
+ name: "Transfer128TestsContract",
1510
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1511
+ ): Promise<Contracts.Transfer128TestsContract>;
1512
+ deployContract(
1513
+ name: "Transfer256TestsContract",
1514
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1515
+ ): Promise<Contracts.Transfer256TestsContract>;
1516
+ deployContract(
1517
+ name: "TransferScalarTestsContract",
1518
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1519
+ ): Promise<Contracts.TransferScalarTestsContract>;
1520
+ deployContract(
1521
+ name: "TransferTestsContract",
1522
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1523
+ ): Promise<Contracts.TransferTestsContract>;
1524
+ deployContract(
1525
+ name: "TransferWithAllowance128TestsContract",
1526
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1527
+ ): Promise<Contracts.TransferWithAllowance128TestsContract>;
1528
+ deployContract(
1529
+ name: "TransferWithAllowance256TestsContract",
1530
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1531
+ ): Promise<Contracts.TransferWithAllowance256TestsContract>;
1532
+ deployContract(
1533
+ name: "TransferWithAllowance64_16TestsContract",
1534
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1535
+ ): Promise<Contracts.TransferWithAllowance64_16TestsContract>;
1536
+ deployContract(
1537
+ name: "TransferWithAllowance64_32TestsContract",
1538
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1539
+ ): Promise<Contracts.TransferWithAllowance64_32TestsContract>;
1540
+ deployContract(
1541
+ name: "TransferWithAllowance64_64TestsContract",
1542
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1543
+ ): Promise<Contracts.TransferWithAllowance64_64TestsContract>;
1544
+ deployContract(
1545
+ name: "TransferWithAllowance64_8TestsContract",
1546
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1547
+ ): Promise<Contracts.TransferWithAllowance64_8TestsContract>;
1548
+ deployContract(
1549
+ name: "TransferWithAllowanceScalarTestsContract",
1550
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1551
+ ): Promise<Contracts.TransferWithAllowanceScalarTestsContract>;
1552
+ deployContract(
1553
+ name: "TransferWithAllowanceTestsContract",
1554
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1555
+ ): Promise<Contracts.TransferWithAllowanceTestsContract>;
1556
+ deployContract(
1557
+ name: "ValidateCiphertext128TestsContract",
1558
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1559
+ ): Promise<Contracts.ValidateCiphertext128TestsContract>;
1560
+ deployContract(
1561
+ name: "ValidateCiphertext256TestsContract",
1562
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1563
+ ): Promise<Contracts.ValidateCiphertext256TestsContract>;
1564
+ deployContract(
1565
+ name: "ValidateCiphertextTestsContract",
1566
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1567
+ ): Promise<Contracts.ValidateCiphertextTestsContract>;
1568
+ deployContract(
1569
+ name: "PrivateERC20WalletMock",
1570
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1571
+ ): Promise<Contracts.PrivateERC20WalletMock>;
1572
+ deployContract(
1573
+ name: "CotiNodeRewards",
1574
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1575
+ ): Promise<Contracts.CotiNodeRewards>;
1576
+ deployContract(
1577
+ name: "IERC5192",
1578
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1579
+ ): Promise<Contracts.IERC5192>;
1580
+ deployContract(
1581
+ name: "SoulboundNodeNFT",
1582
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1583
+ ): Promise<Contracts.SoulboundNodeNFT>;
1584
+ deployContract(
1585
+ name: "AccountOnboard",
1586
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1587
+ ): Promise<Contracts.AccountOnboard>;
1588
+ deployContract(
1589
+ name: "CotiPriceConsumer",
1590
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1591
+ ): Promise<Contracts.CotiPriceConsumer>;
1592
+ deployContract(
1593
+ name: "ICotiPriceConsumer",
1594
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1595
+ ): Promise<Contracts.ICotiPriceConsumer>;
1596
+ deployContract(
1597
+ name: "IStdReference",
1598
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1599
+ ): Promise<Contracts.IStdReference>;
1600
+ deployContract(
1601
+ name: "PrivacyBridge",
1602
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1603
+ ): Promise<Contracts.PrivacyBridge>;
1604
+ deployContract(
1605
+ name: "PrivacyBridgeCotiNative",
1606
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1607
+ ): Promise<Contracts.PrivacyBridgeCotiNative>;
1608
+ deployContract(
1609
+ name: "IHasDecimals",
1610
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1611
+ ): Promise<Contracts.IHasDecimals>;
1612
+ deployContract(
1613
+ name: "PrivacyBridgeERC20",
1614
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1615
+ ): Promise<Contracts.PrivacyBridgeERC20>;
1616
+ deployContract(
1617
+ name: "PrivacyBridgegCoti",
1618
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1619
+ ): Promise<Contracts.PrivacyBridgegCoti>;
1620
+ deployContract(
1621
+ name: "PrivacyBridgeUSDCe",
1622
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1623
+ ): Promise<Contracts.PrivacyBridgeUSDCe>;
1624
+ deployContract(
1625
+ name: "PrivacyBridgeUSDT",
1626
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1627
+ ): Promise<Contracts.PrivacyBridgeUSDT>;
1628
+ deployContract(
1629
+ name: "PrivacyBridgeWADA",
1630
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1631
+ ): Promise<Contracts.PrivacyBridgeWADA>;
1632
+ deployContract(
1633
+ name: "PrivacyBridgeWBTC",
1634
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1635
+ ): Promise<Contracts.PrivacyBridgeWBTC>;
1636
+ deployContract(
1637
+ name: "PrivacyBridgeWETH",
1638
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1639
+ ): Promise<Contracts.PrivacyBridgeWETH>;
1640
+ deployContract(
1641
+ name: "IPrivateERC20",
1642
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1643
+ ): Promise<Contracts.IPrivateERC20>;
1644
+ deployContract(
1645
+ name: "ITokenReceiver",
1646
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1647
+ ): Promise<Contracts.ITokenReceiver>;
1648
+ deployContract(
1649
+ name: "ITokenReceiverEncrypted",
1650
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1651
+ ): Promise<Contracts.ITokenReceiverEncrypted>;
1652
+ deployContract(
1653
+ name: "PrivateERC20",
1654
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1655
+ ): Promise<Contracts.PrivateERC20>;
1656
+ deployContract(
1657
+ name: "PrivateBridgedUSDC",
1658
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1659
+ ): Promise<Contracts.PrivateBridgedUSDC>;
1660
+ deployContract(
1661
+ name: "PrivateCOTI",
1662
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1663
+ ): Promise<Contracts.PrivateCOTI>;
1664
+ deployContract(
1665
+ name: "PrivateCOTITreasuryGovernanceToken",
1666
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1667
+ ): Promise<Contracts.PrivateCOTITreasuryGovernanceToken>;
1668
+ deployContract(
1669
+ name: "PrivateTetherUSD",
1670
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1671
+ ): Promise<Contracts.PrivateTetherUSD>;
1672
+ deployContract(
1673
+ name: "PrivateWrappedADA",
1674
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1675
+ ): Promise<Contracts.PrivateWrappedADA>;
1676
+ deployContract(
1677
+ name: "PrivateWrappedBTC",
1678
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1679
+ ): Promise<Contracts.PrivateWrappedBTC>;
1680
+ deployContract(
1681
+ name: "PrivateWrappedEther",
1682
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1683
+ ): Promise<Contracts.PrivateWrappedEther>;
1684
+ deployContract(
1685
+ name: "IPrivateERC721URIStorage",
1686
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1687
+ ): Promise<Contracts.IPrivateERC721URIStorage>;
1688
+ deployContract(
1689
+ name: "PrivateERC721URIStorage",
1690
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1691
+ ): Promise<Contracts.PrivateERC721URIStorage>;
1692
+ deployContract(
1693
+ name: "IERC721Errors",
1694
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1695
+ ): Promise<Contracts.IERC721Errors>;
1696
+ deployContract(
1697
+ name: "PrivateERC721",
1698
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1699
+ ): Promise<Contracts.PrivateERC721>;
1700
+ deployContract(
1701
+ name: "MpcCore",
1702
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1703
+ ): Promise<Contracts.MpcCore>;
1704
+ deployContract(
1705
+ name: "ExtendedOperations",
1706
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1707
+ ): Promise<Contracts.ExtendedOperations>;
1708
+
1709
+ deployContract(
1710
+ name: "AccessControl",
1711
+ args: any[],
1712
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1713
+ ): Promise<Contracts.AccessControl>;
1714
+ deployContract(
1715
+ name: "AccessControlEnumerable",
1716
+ args: any[],
1717
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1718
+ ): Promise<Contracts.AccessControlEnumerable>;
1719
+ deployContract(
1720
+ name: "IAccessControl",
1721
+ args: any[],
1722
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1723
+ ): Promise<Contracts.IAccessControl>;
1724
+ deployContract(
1725
+ name: "IAccessControlEnumerable",
1726
+ args: any[],
1727
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1728
+ ): Promise<Contracts.IAccessControlEnumerable>;
1729
+ deployContract(
1730
+ name: "Ownable",
1731
+ args: any[],
1732
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1733
+ ): Promise<Contracts.Ownable>;
1734
+ deployContract(
1735
+ name: "IERC4906",
1736
+ args: any[],
1737
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1738
+ ): Promise<Contracts.IERC4906>;
1739
+ deployContract(
1740
+ name: "Pausable",
1741
+ args: any[],
1742
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1743
+ ): Promise<Contracts.Pausable>;
1744
+ deployContract(
1745
+ name: "ERC20",
1746
+ args: any[],
1747
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1748
+ ): Promise<Contracts.ERC20>;
1749
+ deployContract(
1750
+ name: "IERC20Metadata",
1751
+ args: any[],
1752
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1753
+ ): Promise<Contracts.IERC20Metadata>;
1754
+ deployContract(
1755
+ name: "IERC20Permit",
1756
+ args: any[],
1757
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1758
+ ): Promise<Contracts.IERC20Permit>;
1759
+ deployContract(
1760
+ name: "IERC20",
1761
+ args: any[],
1762
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1763
+ ): Promise<Contracts.IERC20>;
1764
+ deployContract(
1765
+ name: "ERC721",
1766
+ args: any[],
1767
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1768
+ ): Promise<Contracts.ERC721>;
1769
+ deployContract(
1770
+ name: "IERC721Metadata",
1771
+ args: any[],
1772
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1773
+ ): Promise<Contracts.IERC721Metadata>;
1774
+ deployContract(
1775
+ name: "IERC721",
1776
+ args: any[],
1777
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1778
+ ): Promise<Contracts.IERC721>;
1779
+ deployContract(
1780
+ name: "IERC721Receiver",
1781
+ args: any[],
1782
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1783
+ ): Promise<Contracts.IERC721Receiver>;
1784
+ deployContract(
1785
+ name: "ERC165",
1786
+ args: any[],
1787
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1788
+ ): Promise<Contracts.ERC165>;
1789
+ deployContract(
1790
+ name: "IERC165",
1791
+ args: any[],
1792
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1793
+ ): Promise<Contracts.IERC165>;
1794
+ deployContract(
1795
+ name: "DataPrivacyFramework",
1796
+ args: any[],
1797
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1798
+ ): Promise<Contracts.DataPrivacyFramework>;
1799
+ deployContract(
1800
+ name: "DataPrivacyFrameworkMpc",
1801
+ args: any[],
1802
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1803
+ ): Promise<Contracts.DataPrivacyFrameworkMpc>;
1804
+ deployContract(
1805
+ name: "FixedRatioCoinDisperser",
1806
+ args: any[],
1807
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1808
+ ): Promise<Contracts.FixedRatioCoinDisperser>;
1809
+ deployContract(
1810
+ name: "FixedRatioCoinDisperserLeftoverS1",
1811
+ args: any[],
1812
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1813
+ ): Promise<Contracts.FixedRatioCoinDisperserLeftoverS1>;
1814
+ deployContract(
1815
+ name: "FixedRatioCoinDisperserUnlimitedWindow",
1816
+ args: any[],
1817
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1818
+ ): Promise<Contracts.FixedRatioCoinDisperserUnlimitedWindow>;
1819
+ deployContract(
1820
+ name: "IMintableERC20",
1821
+ args: any[],
1822
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1823
+ ): Promise<Contracts.IMintableERC20>;
441
1824
  deployContract(
442
- name: "IERC4906",
1825
+ name: "IOwnable",
1826
+ args: any[],
443
1827
  signerOrOptions?: ethers.Signer | DeployContractOptions
444
- ): Promise<Contracts.IERC4906>;
1828
+ ): Promise<Contracts.IOwnable>;
445
1829
  deployContract(
446
- name: "IERC721",
1830
+ name: "MintDisperser",
1831
+ args: any[],
447
1832
  signerOrOptions?: ethers.Signer | DeployContractOptions
448
- ): Promise<Contracts.IERC721>;
1833
+ ): Promise<Contracts.MintDisperser>;
449
1834
  deployContract(
450
- name: "IERC721Receiver",
1835
+ name: "TokenDisperser",
1836
+ args: any[],
451
1837
  signerOrOptions?: ethers.Signer | DeployContractOptions
452
- ): Promise<Contracts.IERC721Receiver>;
1838
+ ): Promise<Contracts.TokenDisperser>;
453
1839
  deployContract(
454
- name: "ERC165",
1840
+ name: "PrivateMessaging",
1841
+ args: any[],
455
1842
  signerOrOptions?: ethers.Signer | DeployContractOptions
456
- ): Promise<Contracts.ERC165>;
1843
+ ): Promise<Contracts.PrivateMessaging>;
457
1844
  deployContract(
458
- name: "IERC165",
1845
+ name: "DataPrivacyFrameworkMock",
1846
+ args: any[],
459
1847
  signerOrOptions?: ethers.Signer | DeployContractOptions
460
- ): Promise<Contracts.IERC165>;
1848
+ ): Promise<Contracts.DataPrivacyFrameworkMock>;
461
1849
  deployContract(
462
- name: "DataPrivacyFramework",
1850
+ name: "PrivateMessagingHarness",
1851
+ args: any[],
463
1852
  signerOrOptions?: ethers.Signer | DeployContractOptions
464
- ): Promise<Contracts.DataPrivacyFramework>;
1853
+ ): Promise<Contracts.PrivateMessagingHarness>;
465
1854
  deployContract(
466
- name: "DataPrivacyFrameworkMpc",
1855
+ name: "CotiPriceConsumerMock",
1856
+ args: any[],
467
1857
  signerOrOptions?: ethers.Signer | DeployContractOptions
468
- ): Promise<Contracts.DataPrivacyFrameworkMpc>;
1858
+ ): Promise<Contracts.CotiPriceConsumerMock>;
469
1859
  deployContract(
470
- name: "DataPrivacyFrameworkMock",
1860
+ name: "ERC20DecimalsMock",
1861
+ args: any[],
471
1862
  signerOrOptions?: ethers.Signer | DeployContractOptions
472
- ): Promise<Contracts.DataPrivacyFrameworkMock>;
1863
+ ): Promise<Contracts.ERC20DecimalsMock>;
1864
+ deployContract(
1865
+ name: "ERC20Mock",
1866
+ args: any[],
1867
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1868
+ ): Promise<Contracts.ERC20Mock>;
1869
+ deployContract(
1870
+ name: "EncryptedTokenReceiverMock",
1871
+ args: any[],
1872
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1873
+ ): Promise<Contracts.EncryptedTokenReceiverMock>;
1874
+ deployContract(
1875
+ name: "PrivacyBridgeERC20Mock",
1876
+ args: any[],
1877
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1878
+ ): Promise<Contracts.PrivacyBridgeERC20Mock>;
1879
+ deployContract(
1880
+ name: "PrivateERC20AuditorSupplyMock",
1881
+ args: any[],
1882
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1883
+ ): Promise<Contracts.PrivateERC20AuditorSupplyMock>;
1884
+ deployContract(
1885
+ name: "PrivateERC20CappedMock",
1886
+ args: any[],
1887
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1888
+ ): Promise<Contracts.PrivateERC20CappedMock>;
1889
+ deployContract(
1890
+ name: "PrivateERC20GtCallerMock",
1891
+ args: any[],
1892
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1893
+ ): Promise<Contracts.PrivateERC20GtCallerMock>;
473
1894
  deployContract(
474
1895
  name: "PrivateERC20Mock",
1896
+ args: any[],
475
1897
  signerOrOptions?: ethers.Signer | DeployContractOptions
476
1898
  ): Promise<Contracts.PrivateERC20Mock>;
1899
+ deployContract(
1900
+ name: "IPrivateERC20TransferAndCallEncrypted",
1901
+ args: any[],
1902
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1903
+ ): Promise<Contracts.IPrivateERC20TransferAndCallEncrypted>;
1904
+ deployContract(
1905
+ name: "PrivateERC20ReentrantReceiverMock",
1906
+ args: any[],
1907
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1908
+ ): Promise<Contracts.PrivateERC20ReentrantReceiverMock>;
1909
+ deployContract(
1910
+ name: "PublicReentrantTokenReceiverMock",
1911
+ args: any[],
1912
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1913
+ ): Promise<Contracts.PublicReentrantTokenReceiverMock>;
1914
+ deployContract(
1915
+ name: "PublicTokenReceiverBoolMock",
1916
+ args: any[],
1917
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1918
+ ): Promise<Contracts.PublicTokenReceiverBoolMock>;
1919
+ deployContract(
1920
+ name: "PublicTokenReceiverMock",
1921
+ args: any[],
1922
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1923
+ ): Promise<Contracts.PublicTokenReceiverMock>;
477
1924
  deployContract(
478
1925
  name: "PrivateERC721URIStorageMock",
1926
+ args: any[],
479
1927
  signerOrOptions?: ethers.Signer | DeployContractOptions
480
1928
  ): Promise<Contracts.PrivateERC721URIStorageMock>;
481
1929
  deployContract(
482
- name: "Arithmetic128BitTestsContract",
1930
+ name: "Arithmetic128TestsContract",
1931
+ args: any[],
483
1932
  signerOrOptions?: ethers.Signer | DeployContractOptions
484
- ): Promise<Contracts.Arithmetic128BitTestsContract>;
1933
+ ): Promise<Contracts.Arithmetic128TestsContract>;
485
1934
  deployContract(
486
- name: "Arithmetic256BitTestsContract",
1935
+ name: "Arithmetic256TestsContract",
1936
+ args: any[],
487
1937
  signerOrOptions?: ethers.Signer | DeployContractOptions
488
- ): Promise<Contracts.Arithmetic256BitTestsContract>;
1938
+ ): Promise<Contracts.Arithmetic256TestsContract>;
489
1939
  deployContract(
490
1940
  name: "ArithmeticTestsContract",
1941
+ args: any[],
491
1942
  signerOrOptions?: ethers.Signer | DeployContractOptions
492
1943
  ): Promise<Contracts.ArithmeticTestsContract>;
493
1944
  deployContract(
494
- name: "Bitwise128BitTestsContract",
1945
+ name: "Bitwise128TestsContract",
1946
+ args: any[],
495
1947
  signerOrOptions?: ethers.Signer | DeployContractOptions
496
- ): Promise<Contracts.Bitwise128BitTestsContract>;
1948
+ ): Promise<Contracts.Bitwise128TestsContract>;
497
1949
  deployContract(
498
- name: "Bitwise256BitTestsContract",
1950
+ name: "Bitwise256TestsContract",
1951
+ args: any[],
499
1952
  signerOrOptions?: ethers.Signer | DeployContractOptions
500
- ): Promise<Contracts.Bitwise256BitTestsContract>;
1953
+ ): Promise<Contracts.Bitwise256TestsContract>;
501
1954
  deployContract(
502
1955
  name: "BitwiseTestsContract",
1956
+ args: any[],
503
1957
  signerOrOptions?: ethers.Signer | DeployContractOptions
504
1958
  ): Promise<Contracts.BitwiseTestsContract>;
1959
+ deployContract(
1960
+ name: "CheckedArithmetic128WithOverflowBitTestsContract",
1961
+ args: any[],
1962
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1963
+ ): Promise<Contracts.CheckedArithmetic128WithOverflowBitTestsContract>;
1964
+ deployContract(
1965
+ name: "CheckedArithmetic256WithOverflowBitTestsContract",
1966
+ args: any[],
1967
+ signerOrOptions?: ethers.Signer | DeployContractOptions
1968
+ ): Promise<Contracts.CheckedArithmetic256WithOverflowBitTestsContract>;
505
1969
  deployContract(
506
1970
  name: "CheckedArithmeticWithOverflowBitTestsContract",
1971
+ args: any[],
507
1972
  signerOrOptions?: ethers.Signer | DeployContractOptions
508
1973
  ): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
509
1974
  deployContract(
510
- name: "Comparison128BitTestsContract",
1975
+ name: "Comparison128TestsContract",
1976
+ args: any[],
511
1977
  signerOrOptions?: ethers.Signer | DeployContractOptions
512
- ): Promise<Contracts.Comparison128BitTestsContract>;
1978
+ ): Promise<Contracts.Comparison128TestsContract>;
513
1979
  deployContract(
514
1980
  name: "Comparison1TestsContract",
1981
+ args: any[],
515
1982
  signerOrOptions?: ethers.Signer | DeployContractOptions
516
1983
  ): Promise<Contracts.Comparison1TestsContract>;
517
1984
  deployContract(
518
- name: "Comparison256BitTestsContract",
1985
+ name: "Comparison256TestsContract",
1986
+ args: any[],
519
1987
  signerOrOptions?: ethers.Signer | DeployContractOptions
520
- ): Promise<Contracts.Comparison256BitTestsContract>;
1988
+ ): Promise<Contracts.Comparison256TestsContract>;
521
1989
  deployContract(
522
1990
  name: "Comparison2TestsContract",
1991
+ args: any[],
523
1992
  signerOrOptions?: ethers.Signer | DeployContractOptions
524
1993
  ): Promise<Contracts.Comparison2TestsContract>;
525
1994
  deployContract(
526
- name: "MinMaxTestsContract",
1995
+ name: "MinimalImplementation",
1996
+ args: any[],
527
1997
  signerOrOptions?: ethers.Signer | DeployContractOptions
528
- ): Promise<Contracts.MinMaxTestsContract>;
1998
+ ): Promise<Contracts.MinimalImplementation>;
529
1999
  deployContract(
530
- name: "Miscellaneous128BitTestsContract",
2000
+ name: "MinimalProxy",
2001
+ args: any[],
531
2002
  signerOrOptions?: ethers.Signer | DeployContractOptions
532
- ): Promise<Contracts.Miscellaneous128BitTestsContract>;
2003
+ ): Promise<Contracts.MinimalProxy>;
533
2004
  deployContract(
534
- name: "Miscellaneous1TestsContract",
2005
+ name: "MinMax128TestsContract",
2006
+ args: any[],
535
2007
  signerOrOptions?: ethers.Signer | DeployContractOptions
536
- ): Promise<Contracts.Miscellaneous1TestsContract>;
2008
+ ): Promise<Contracts.MinMax128TestsContract>;
537
2009
  deployContract(
538
- name: "Miscellaneous256BitTestsContract",
2010
+ name: "MinMax256TestsContract",
2011
+ args: any[],
539
2012
  signerOrOptions?: ethers.Signer | DeployContractOptions
540
- ): Promise<Contracts.Miscellaneous256BitTestsContract>;
2013
+ ): Promise<Contracts.MinMax256TestsContract>;
541
2014
  deployContract(
542
- name: "MiscellaneousTestsContract",
2015
+ name: "MinMaxTestsContract",
2016
+ args: any[],
543
2017
  signerOrOptions?: ethers.Signer | DeployContractOptions
544
- ): Promise<Contracts.MiscellaneousTestsContract>;
2018
+ ): Promise<Contracts.MinMaxTestsContract>;
545
2019
  deployContract(
546
- name: "OffboardToUserKeyTestContract",
2020
+ name: "Miscellaneous1TestsContract",
2021
+ args: any[],
547
2022
  signerOrOptions?: ethers.Signer | DeployContractOptions
548
- ): Promise<Contracts.OffboardToUserKeyTestContract>;
2023
+ ): Promise<Contracts.Miscellaneous1TestsContract>;
549
2024
  deployContract(
550
- name: "ShiftTestsContract",
2025
+ name: "MiscellaneousTestsContract",
2026
+ args: any[],
551
2027
  signerOrOptions?: ethers.Signer | DeployContractOptions
552
- ): Promise<Contracts.ShiftTestsContract>;
2028
+ ): Promise<Contracts.MiscellaneousTestsContract>;
553
2029
  deployContract(
554
- name: "StringTestsContract",
2030
+ name: "MpcOperations128TestContract",
2031
+ args: any[],
555
2032
  signerOrOptions?: ethers.Signer | DeployContractOptions
556
- ): Promise<Contracts.StringTestsContract>;
2033
+ ): Promise<Contracts.MpcOperations128TestContract>;
557
2034
  deployContract(
558
- name: "TransferScalarTestsContract",
2035
+ name: "MpcOperationsTestContract",
2036
+ args: any[],
559
2037
  signerOrOptions?: ethers.Signer | DeployContractOptions
560
- ): Promise<Contracts.TransferScalarTestsContract>;
2038
+ ): Promise<Contracts.MpcOperationsTestContract>;
561
2039
  deployContract(
562
- name: "TransferTestsContract",
2040
+ name: "Mux128TestsContract",
2041
+ args: any[],
563
2042
  signerOrOptions?: ethers.Signer | DeployContractOptions
564
- ): Promise<Contracts.TransferTestsContract>;
2043
+ ): Promise<Contracts.Mux128TestsContract>;
565
2044
  deployContract(
566
- name: "TransferWithAllowance64_16TestsContract",
2045
+ name: "Mux256TestsContract",
2046
+ args: any[],
567
2047
  signerOrOptions?: ethers.Signer | DeployContractOptions
568
- ): Promise<Contracts.TransferWithAllowance64_16TestsContract>;
2048
+ ): Promise<Contracts.Mux256TestsContract>;
569
2049
  deployContract(
570
- name: "TransferWithAllowance64_32TestsContract",
2050
+ name: "OffboardToUserKeyTestContract",
2051
+ args: any[],
571
2052
  signerOrOptions?: ethers.Signer | DeployContractOptions
572
- ): Promise<Contracts.TransferWithAllowance64_32TestsContract>;
2053
+ ): Promise<Contracts.OffboardToUserKeyTestContract>;
573
2054
  deployContract(
574
- name: "TransferWithAllowance64_64TestsContract",
2055
+ name: "OnBoard128TestsContract",
2056
+ args: any[],
575
2057
  signerOrOptions?: ethers.Signer | DeployContractOptions
576
- ): Promise<Contracts.TransferWithAllowance64_64TestsContract>;
2058
+ ): Promise<Contracts.OnBoard128TestsContract>;
577
2059
  deployContract(
578
- name: "TransferWithAllowance64_8TestsContract",
2060
+ name: "OnBoard256TestsContract",
2061
+ args: any[],
579
2062
  signerOrOptions?: ethers.Signer | DeployContractOptions
580
- ): Promise<Contracts.TransferWithAllowance64_8TestsContract>;
2063
+ ): Promise<Contracts.OnBoard256TestsContract>;
581
2064
  deployContract(
582
- name: "TransferWithAllowanceScalarTestsContract",
2065
+ name: "PrivacyImplementationV1",
2066
+ args: any[],
583
2067
  signerOrOptions?: ethers.Signer | DeployContractOptions
584
- ): Promise<Contracts.TransferWithAllowanceScalarTestsContract>;
2068
+ ): Promise<Contracts.PrivacyImplementationV1>;
585
2069
  deployContract(
586
- name: "TransferWithAllowanceTestsContract",
2070
+ name: "PrivacyImplementationV2",
2071
+ args: any[],
587
2072
  signerOrOptions?: ethers.Signer | DeployContractOptions
588
- ): Promise<Contracts.TransferWithAllowanceTestsContract>;
2073
+ ): Promise<Contracts.PrivacyImplementationV2>;
589
2074
  deployContract(
590
- name: "PrivateERC20WalletMock",
2075
+ name: "PrivacyProxy",
2076
+ args: any[],
591
2077
  signerOrOptions?: ethers.Signer | DeployContractOptions
592
- ): Promise<Contracts.PrivateERC20WalletMock>;
2078
+ ): Promise<Contracts.PrivacyProxy>;
593
2079
  deployContract(
594
- name: "AccountOnboard",
2080
+ name: "Random128TestsContract",
2081
+ args: any[],
595
2082
  signerOrOptions?: ethers.Signer | DeployContractOptions
596
- ): Promise<Contracts.AccountOnboard>;
2083
+ ): Promise<Contracts.Random128TestsContract>;
597
2084
  deployContract(
598
- name: "IPrivateERC20",
2085
+ name: "Random256TestsContract",
2086
+ args: any[],
599
2087
  signerOrOptions?: ethers.Signer | DeployContractOptions
600
- ): Promise<Contracts.IPrivateERC20>;
2088
+ ): Promise<Contracts.Random256TestsContract>;
601
2089
  deployContract(
602
- name: "PrivateERC20",
2090
+ name: "Shift128TestsContract",
2091
+ args: any[],
603
2092
  signerOrOptions?: ethers.Signer | DeployContractOptions
604
- ): Promise<Contracts.PrivateERC20>;
2093
+ ): Promise<Contracts.Shift128TestsContract>;
605
2094
  deployContract(
606
- name: "IPrivateERC721URIStorage",
2095
+ name: "Shift256TestsContract",
2096
+ args: any[],
607
2097
  signerOrOptions?: ethers.Signer | DeployContractOptions
608
- ): Promise<Contracts.IPrivateERC721URIStorage>;
2098
+ ): Promise<Contracts.Shift256TestsContract>;
609
2099
  deployContract(
610
- name: "PrivateERC721URIStorage",
2100
+ name: "ShiftTestsContract",
2101
+ args: any[],
611
2102
  signerOrOptions?: ethers.Signer | DeployContractOptions
612
- ): Promise<Contracts.PrivateERC721URIStorage>;
2103
+ ): Promise<Contracts.ShiftTestsContract>;
613
2104
  deployContract(
614
- name: "IERC721Errors",
2105
+ name: "StringTestsContract",
2106
+ args: any[],
615
2107
  signerOrOptions?: ethers.Signer | DeployContractOptions
616
- ): Promise<Contracts.IERC721Errors>;
2108
+ ): Promise<Contracts.StringTestsContract>;
617
2109
  deployContract(
618
- name: "PrivateERC721",
2110
+ name: "Transfer128TestsContract",
2111
+ args: any[],
619
2112
  signerOrOptions?: ethers.Signer | DeployContractOptions
620
- ): Promise<Contracts.PrivateERC721>;
2113
+ ): Promise<Contracts.Transfer128TestsContract>;
621
2114
  deployContract(
622
- name: "MpcCore",
2115
+ name: "Transfer256TestsContract",
2116
+ args: any[],
623
2117
  signerOrOptions?: ethers.Signer | DeployContractOptions
624
- ): Promise<Contracts.MpcCore>;
2118
+ ): Promise<Contracts.Transfer256TestsContract>;
625
2119
  deployContract(
626
- name: "ExtendedOperations",
2120
+ name: "TransferScalarTestsContract",
2121
+ args: any[],
627
2122
  signerOrOptions?: ethers.Signer | DeployContractOptions
628
- ): Promise<Contracts.ExtendedOperations>;
629
-
2123
+ ): Promise<Contracts.TransferScalarTestsContract>;
630
2124
  deployContract(
631
- name: "IERC4906",
2125
+ name: "TransferTestsContract",
632
2126
  args: any[],
633
2127
  signerOrOptions?: ethers.Signer | DeployContractOptions
634
- ): Promise<Contracts.IERC4906>;
2128
+ ): Promise<Contracts.TransferTestsContract>;
635
2129
  deployContract(
636
- name: "IERC721",
2130
+ name: "TransferWithAllowance128TestsContract",
637
2131
  args: any[],
638
2132
  signerOrOptions?: ethers.Signer | DeployContractOptions
639
- ): Promise<Contracts.IERC721>;
2133
+ ): Promise<Contracts.TransferWithAllowance128TestsContract>;
640
2134
  deployContract(
641
- name: "IERC721Receiver",
2135
+ name: "TransferWithAllowance256TestsContract",
642
2136
  args: any[],
643
2137
  signerOrOptions?: ethers.Signer | DeployContractOptions
644
- ): Promise<Contracts.IERC721Receiver>;
2138
+ ): Promise<Contracts.TransferWithAllowance256TestsContract>;
645
2139
  deployContract(
646
- name: "ERC165",
2140
+ name: "TransferWithAllowance64_16TestsContract",
647
2141
  args: any[],
648
2142
  signerOrOptions?: ethers.Signer | DeployContractOptions
649
- ): Promise<Contracts.ERC165>;
2143
+ ): Promise<Contracts.TransferWithAllowance64_16TestsContract>;
650
2144
  deployContract(
651
- name: "IERC165",
2145
+ name: "TransferWithAllowance64_32TestsContract",
652
2146
  args: any[],
653
2147
  signerOrOptions?: ethers.Signer | DeployContractOptions
654
- ): Promise<Contracts.IERC165>;
2148
+ ): Promise<Contracts.TransferWithAllowance64_32TestsContract>;
655
2149
  deployContract(
656
- name: "DataPrivacyFramework",
2150
+ name: "TransferWithAllowance64_64TestsContract",
657
2151
  args: any[],
658
2152
  signerOrOptions?: ethers.Signer | DeployContractOptions
659
- ): Promise<Contracts.DataPrivacyFramework>;
2153
+ ): Promise<Contracts.TransferWithAllowance64_64TestsContract>;
660
2154
  deployContract(
661
- name: "DataPrivacyFrameworkMpc",
2155
+ name: "TransferWithAllowance64_8TestsContract",
662
2156
  args: any[],
663
2157
  signerOrOptions?: ethers.Signer | DeployContractOptions
664
- ): Promise<Contracts.DataPrivacyFrameworkMpc>;
2158
+ ): Promise<Contracts.TransferWithAllowance64_8TestsContract>;
665
2159
  deployContract(
666
- name: "DataPrivacyFrameworkMock",
2160
+ name: "TransferWithAllowanceScalarTestsContract",
667
2161
  args: any[],
668
2162
  signerOrOptions?: ethers.Signer | DeployContractOptions
669
- ): Promise<Contracts.DataPrivacyFrameworkMock>;
2163
+ ): Promise<Contracts.TransferWithAllowanceScalarTestsContract>;
670
2164
  deployContract(
671
- name: "PrivateERC20Mock",
2165
+ name: "TransferWithAllowanceTestsContract",
672
2166
  args: any[],
673
2167
  signerOrOptions?: ethers.Signer | DeployContractOptions
674
- ): Promise<Contracts.PrivateERC20Mock>;
2168
+ ): Promise<Contracts.TransferWithAllowanceTestsContract>;
675
2169
  deployContract(
676
- name: "PrivateERC721URIStorageMock",
2170
+ name: "ValidateCiphertext128TestsContract",
677
2171
  args: any[],
678
2172
  signerOrOptions?: ethers.Signer | DeployContractOptions
679
- ): Promise<Contracts.PrivateERC721URIStorageMock>;
2173
+ ): Promise<Contracts.ValidateCiphertext128TestsContract>;
680
2174
  deployContract(
681
- name: "Arithmetic128BitTestsContract",
2175
+ name: "ValidateCiphertext256TestsContract",
682
2176
  args: any[],
683
2177
  signerOrOptions?: ethers.Signer | DeployContractOptions
684
- ): Promise<Contracts.Arithmetic128BitTestsContract>;
2178
+ ): Promise<Contracts.ValidateCiphertext256TestsContract>;
685
2179
  deployContract(
686
- name: "Arithmetic256BitTestsContract",
2180
+ name: "ValidateCiphertextTestsContract",
687
2181
  args: any[],
688
2182
  signerOrOptions?: ethers.Signer | DeployContractOptions
689
- ): Promise<Contracts.Arithmetic256BitTestsContract>;
2183
+ ): Promise<Contracts.ValidateCiphertextTestsContract>;
690
2184
  deployContract(
691
- name: "ArithmeticTestsContract",
2185
+ name: "PrivateERC20WalletMock",
692
2186
  args: any[],
693
2187
  signerOrOptions?: ethers.Signer | DeployContractOptions
694
- ): Promise<Contracts.ArithmeticTestsContract>;
2188
+ ): Promise<Contracts.PrivateERC20WalletMock>;
695
2189
  deployContract(
696
- name: "Bitwise128BitTestsContract",
2190
+ name: "CotiNodeRewards",
697
2191
  args: any[],
698
2192
  signerOrOptions?: ethers.Signer | DeployContractOptions
699
- ): Promise<Contracts.Bitwise128BitTestsContract>;
2193
+ ): Promise<Contracts.CotiNodeRewards>;
700
2194
  deployContract(
701
- name: "Bitwise256BitTestsContract",
2195
+ name: "IERC5192",
702
2196
  args: any[],
703
2197
  signerOrOptions?: ethers.Signer | DeployContractOptions
704
- ): Promise<Contracts.Bitwise256BitTestsContract>;
2198
+ ): Promise<Contracts.IERC5192>;
705
2199
  deployContract(
706
- name: "BitwiseTestsContract",
2200
+ name: "SoulboundNodeNFT",
707
2201
  args: any[],
708
2202
  signerOrOptions?: ethers.Signer | DeployContractOptions
709
- ): Promise<Contracts.BitwiseTestsContract>;
2203
+ ): Promise<Contracts.SoulboundNodeNFT>;
710
2204
  deployContract(
711
- name: "CheckedArithmeticWithOverflowBitTestsContract",
2205
+ name: "AccountOnboard",
712
2206
  args: any[],
713
2207
  signerOrOptions?: ethers.Signer | DeployContractOptions
714
- ): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
2208
+ ): Promise<Contracts.AccountOnboard>;
715
2209
  deployContract(
716
- name: "Comparison128BitTestsContract",
2210
+ name: "CotiPriceConsumer",
717
2211
  args: any[],
718
2212
  signerOrOptions?: ethers.Signer | DeployContractOptions
719
- ): Promise<Contracts.Comparison128BitTestsContract>;
2213
+ ): Promise<Contracts.CotiPriceConsumer>;
720
2214
  deployContract(
721
- name: "Comparison1TestsContract",
2215
+ name: "ICotiPriceConsumer",
722
2216
  args: any[],
723
2217
  signerOrOptions?: ethers.Signer | DeployContractOptions
724
- ): Promise<Contracts.Comparison1TestsContract>;
2218
+ ): Promise<Contracts.ICotiPriceConsumer>;
725
2219
  deployContract(
726
- name: "Comparison256BitTestsContract",
2220
+ name: "IStdReference",
727
2221
  args: any[],
728
2222
  signerOrOptions?: ethers.Signer | DeployContractOptions
729
- ): Promise<Contracts.Comparison256BitTestsContract>;
2223
+ ): Promise<Contracts.IStdReference>;
730
2224
  deployContract(
731
- name: "Comparison2TestsContract",
2225
+ name: "PrivacyBridge",
732
2226
  args: any[],
733
2227
  signerOrOptions?: ethers.Signer | DeployContractOptions
734
- ): Promise<Contracts.Comparison2TestsContract>;
2228
+ ): Promise<Contracts.PrivacyBridge>;
735
2229
  deployContract(
736
- name: "MinMaxTestsContract",
2230
+ name: "PrivacyBridgeCotiNative",
737
2231
  args: any[],
738
2232
  signerOrOptions?: ethers.Signer | DeployContractOptions
739
- ): Promise<Contracts.MinMaxTestsContract>;
2233
+ ): Promise<Contracts.PrivacyBridgeCotiNative>;
740
2234
  deployContract(
741
- name: "Miscellaneous128BitTestsContract",
2235
+ name: "IHasDecimals",
742
2236
  args: any[],
743
2237
  signerOrOptions?: ethers.Signer | DeployContractOptions
744
- ): Promise<Contracts.Miscellaneous128BitTestsContract>;
2238
+ ): Promise<Contracts.IHasDecimals>;
745
2239
  deployContract(
746
- name: "Miscellaneous1TestsContract",
2240
+ name: "PrivacyBridgeERC20",
747
2241
  args: any[],
748
2242
  signerOrOptions?: ethers.Signer | DeployContractOptions
749
- ): Promise<Contracts.Miscellaneous1TestsContract>;
2243
+ ): Promise<Contracts.PrivacyBridgeERC20>;
750
2244
  deployContract(
751
- name: "Miscellaneous256BitTestsContract",
2245
+ name: "PrivacyBridgegCoti",
752
2246
  args: any[],
753
2247
  signerOrOptions?: ethers.Signer | DeployContractOptions
754
- ): Promise<Contracts.Miscellaneous256BitTestsContract>;
2248
+ ): Promise<Contracts.PrivacyBridgegCoti>;
755
2249
  deployContract(
756
- name: "MiscellaneousTestsContract",
2250
+ name: "PrivacyBridgeUSDCe",
757
2251
  args: any[],
758
2252
  signerOrOptions?: ethers.Signer | DeployContractOptions
759
- ): Promise<Contracts.MiscellaneousTestsContract>;
2253
+ ): Promise<Contracts.PrivacyBridgeUSDCe>;
760
2254
  deployContract(
761
- name: "OffboardToUserKeyTestContract",
2255
+ name: "PrivacyBridgeUSDT",
762
2256
  args: any[],
763
2257
  signerOrOptions?: ethers.Signer | DeployContractOptions
764
- ): Promise<Contracts.OffboardToUserKeyTestContract>;
2258
+ ): Promise<Contracts.PrivacyBridgeUSDT>;
765
2259
  deployContract(
766
- name: "ShiftTestsContract",
2260
+ name: "PrivacyBridgeWADA",
767
2261
  args: any[],
768
2262
  signerOrOptions?: ethers.Signer | DeployContractOptions
769
- ): Promise<Contracts.ShiftTestsContract>;
2263
+ ): Promise<Contracts.PrivacyBridgeWADA>;
770
2264
  deployContract(
771
- name: "StringTestsContract",
2265
+ name: "PrivacyBridgeWBTC",
772
2266
  args: any[],
773
2267
  signerOrOptions?: ethers.Signer | DeployContractOptions
774
- ): Promise<Contracts.StringTestsContract>;
2268
+ ): Promise<Contracts.PrivacyBridgeWBTC>;
775
2269
  deployContract(
776
- name: "TransferScalarTestsContract",
2270
+ name: "PrivacyBridgeWETH",
777
2271
  args: any[],
778
2272
  signerOrOptions?: ethers.Signer | DeployContractOptions
779
- ): Promise<Contracts.TransferScalarTestsContract>;
2273
+ ): Promise<Contracts.PrivacyBridgeWETH>;
780
2274
  deployContract(
781
- name: "TransferTestsContract",
2275
+ name: "IPrivateERC20",
782
2276
  args: any[],
783
2277
  signerOrOptions?: ethers.Signer | DeployContractOptions
784
- ): Promise<Contracts.TransferTestsContract>;
2278
+ ): Promise<Contracts.IPrivateERC20>;
785
2279
  deployContract(
786
- name: "TransferWithAllowance64_16TestsContract",
2280
+ name: "ITokenReceiver",
787
2281
  args: any[],
788
2282
  signerOrOptions?: ethers.Signer | DeployContractOptions
789
- ): Promise<Contracts.TransferWithAllowance64_16TestsContract>;
2283
+ ): Promise<Contracts.ITokenReceiver>;
790
2284
  deployContract(
791
- name: "TransferWithAllowance64_32TestsContract",
2285
+ name: "ITokenReceiverEncrypted",
792
2286
  args: any[],
793
2287
  signerOrOptions?: ethers.Signer | DeployContractOptions
794
- ): Promise<Contracts.TransferWithAllowance64_32TestsContract>;
2288
+ ): Promise<Contracts.ITokenReceiverEncrypted>;
795
2289
  deployContract(
796
- name: "TransferWithAllowance64_64TestsContract",
2290
+ name: "PrivateERC20",
797
2291
  args: any[],
798
2292
  signerOrOptions?: ethers.Signer | DeployContractOptions
799
- ): Promise<Contracts.TransferWithAllowance64_64TestsContract>;
2293
+ ): Promise<Contracts.PrivateERC20>;
800
2294
  deployContract(
801
- name: "TransferWithAllowance64_8TestsContract",
2295
+ name: "PrivateBridgedUSDC",
802
2296
  args: any[],
803
2297
  signerOrOptions?: ethers.Signer | DeployContractOptions
804
- ): Promise<Contracts.TransferWithAllowance64_8TestsContract>;
2298
+ ): Promise<Contracts.PrivateBridgedUSDC>;
805
2299
  deployContract(
806
- name: "TransferWithAllowanceScalarTestsContract",
2300
+ name: "PrivateCOTI",
807
2301
  args: any[],
808
2302
  signerOrOptions?: ethers.Signer | DeployContractOptions
809
- ): Promise<Contracts.TransferWithAllowanceScalarTestsContract>;
2303
+ ): Promise<Contracts.PrivateCOTI>;
810
2304
  deployContract(
811
- name: "TransferWithAllowanceTestsContract",
2305
+ name: "PrivateCOTITreasuryGovernanceToken",
812
2306
  args: any[],
813
2307
  signerOrOptions?: ethers.Signer | DeployContractOptions
814
- ): Promise<Contracts.TransferWithAllowanceTestsContract>;
2308
+ ): Promise<Contracts.PrivateCOTITreasuryGovernanceToken>;
815
2309
  deployContract(
816
- name: "PrivateERC20WalletMock",
2310
+ name: "PrivateTetherUSD",
817
2311
  args: any[],
818
2312
  signerOrOptions?: ethers.Signer | DeployContractOptions
819
- ): Promise<Contracts.PrivateERC20WalletMock>;
2313
+ ): Promise<Contracts.PrivateTetherUSD>;
820
2314
  deployContract(
821
- name: "AccountOnboard",
2315
+ name: "PrivateWrappedADA",
822
2316
  args: any[],
823
2317
  signerOrOptions?: ethers.Signer | DeployContractOptions
824
- ): Promise<Contracts.AccountOnboard>;
2318
+ ): Promise<Contracts.PrivateWrappedADA>;
825
2319
  deployContract(
826
- name: "IPrivateERC20",
2320
+ name: "PrivateWrappedBTC",
827
2321
  args: any[],
828
2322
  signerOrOptions?: ethers.Signer | DeployContractOptions
829
- ): Promise<Contracts.IPrivateERC20>;
2323
+ ): Promise<Contracts.PrivateWrappedBTC>;
830
2324
  deployContract(
831
- name: "PrivateERC20",
2325
+ name: "PrivateWrappedEther",
832
2326
  args: any[],
833
2327
  signerOrOptions?: ethers.Signer | DeployContractOptions
834
- ): Promise<Contracts.PrivateERC20>;
2328
+ ): Promise<Contracts.PrivateWrappedEther>;
835
2329
  deployContract(
836
2330
  name: "IPrivateERC721URIStorage",
837
2331
  args: any[],