@layerzerolabs/lz-evm-sdk-v2 3.0.27 → 3.0.28

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 (224) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/artifacts-zk/contracts/EndpointV2.sol/EndpointV2.json +3 -3
  3. package/artifacts-zk/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +3 -3
  4. package/artifacts-zk/contracts/EndpointV2View.sol/EndpointV2View.json +2 -2
  5. package/artifacts-zk/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +2 -2
  6. package/artifacts-zk/contracts/Executor.sol/Executor.json +174 -6
  7. package/artifacts-zk/contracts/Executor.sol/ILayerZeroEndpointV2.json +231 -0
  8. package/artifacts-zk/contracts/ExecutorFeeLib.sol/ExecutorFeeLib.json +199 -5
  9. package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +52 -8
  10. package/artifacts-zk/contracts/SimpleReadExecutor.sol/ILayerZeroEndpointV2.json +140 -0
  11. package/artifacts-zk/contracts/SimpleReadExecutor.sol/SimpleReadExecutor.json +199 -0
  12. package/artifacts-zk/contracts/Treasury.sol/Treasury.json +2 -2
  13. package/artifacts-zk/contracts/decompressor/DVNDecoder.sol/DVNDecoder.json +2 -2
  14. package/artifacts-zk/contracts/decompressor/DVNDecompressor.sol/DVNDecompressor.json +2 -2
  15. package/artifacts-zk/contracts/decompressor/ExecutorDecoder.sol/ExecutorDecoder.json +2 -2
  16. package/artifacts-zk/contracts/decompressor/ExecutorDecompressor.sol/ExecutorDecompressor.json +2 -2
  17. package/artifacts-zk/contracts/interfaces/IExecutor.sol/IExecutor.json +59 -1
  18. package/artifacts-zk/contracts/interfaces/IExecutorFeeLib.sol/IExecutorFeeLib.json +186 -2
  19. package/artifacts-zk/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +2 -2
  20. package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +6 -6
  21. package/artifacts-zk/contracts/interfaces/ILayerZeroReadExecutor.sol/ILayerZeroReadExecutor.json +60 -0
  22. package/artifacts-zk/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +2 -2
  23. package/artifacts-zk/contracts/libs/ExecutorOptions.sol/ExecutorOptions.json +32 -0
  24. package/artifacts-zk/contracts/lowlat/EssenceDVNWrapper.sol/EssenceDVNWrapper.json +370 -0
  25. package/artifacts-zk/contracts/lowlat/MultiCall.sol/MultiCall.json +121 -0
  26. package/artifacts-zk/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +2 -2
  27. package/artifacts-zk/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +2 -2
  28. package/artifacts-zk/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +2 -2
  29. package/artifacts-zk/contracts/uln/LzExecutor.sol/LzExecutor.json +2 -2
  30. package/artifacts-zk/contracts/uln/dvn/DVN.sol/DVN.json +145 -6
  31. package/artifacts-zk/contracts/uln/dvn/DVNFeeLib.sol/DVNFeeLib.json +386 -2
  32. package/artifacts-zk/contracts/uln/dvn/DeadDVN.sol/DeadDVN.json +165 -0
  33. package/artifacts-zk/contracts/uln/dvn/MultiSig.sol/MultiSig.json +57 -4
  34. package/artifacts-zk/contracts/uln/dvn/SimpleReadDVN.sol/SimpleReadDVN.json +232 -0
  35. package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapter.sol/CCIPDVNAdapter.json +28 -49
  36. package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapterFeeLib.sol/CCIPDVNAdapterFeeLib.json +2 -2
  37. package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL1.sol/ArbitrumDVNAdapterL1.json +2 -2
  38. package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL2.sol/ArbitrumDVNAdapterL2.json +2 -2
  39. package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/AxelarDVNAdapter.json +28 -23
  40. package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapterFeeLib.sol/AxelarDVNAdapterFeeLib.json +3 -3
  41. package/artifacts-zk/contracts/uln/dvn/adapters/libs/DVNAdapterMessageCodec.sol/DVNAdapterMessageCodec.json +2 -2
  42. package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL1.sol/OptimismDVNAdapterL1.json +2 -2
  43. package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL2.sol/OptimismDVNAdapterL2.json +2 -2
  44. package/artifacts-zk/contracts/uln/interfaces/IDVN.sol/IDVN.json +68 -0
  45. package/artifacts-zk/contracts/uln/interfaces/IDVNFeeLib.sol/IDVNFeeLib.json +185 -0
  46. package/artifacts-zk/contracts/uln/interfaces/ILayerZeroReadDVN.sol/ILayerZeroReadDVN.json +80 -0
  47. package/artifacts-zk/contracts/uln/interfaces/adapters/IAxelarDVNAdapter.sol/IAxelarDVNAdapter.json +1 -1
  48. package/artifacts-zk/contracts/uln/interfaces/adapters/ICCIPDVNAdapter.sol/ICCIPDVNAdapter.json +1 -14
  49. package/artifacts-zk/contracts/uln/libs/ReadCmdCodecV1.sol/ReadCmdCodecV1.json +27 -0
  50. package/artifacts-zk/contracts/uln/libs/SupportedCmdTypes.sol/SupportedCmdTypesLib.json +17 -0
  51. package/artifacts-zk/contracts/uln/readlib/ReadLib1002.sol/ReadLib1002.json +1289 -0
  52. package/artifacts-zk/contracts/uln/readlib/ReadLib1002View.sol/ReadLib1002View.json +286 -0
  53. package/artifacts-zk/contracts/uln/readlib/ReadLibBase.sol/ReadLibBase.json +388 -0
  54. package/artifacts-zk/contracts/uln/uln301/ReceiveUln301.sol/ReceiveUln301.json +2 -2
  55. package/artifacts-zk/contracts/uln/uln301/ReceiveUln301View.sol/ReceiveUln301View.json +2 -2
  56. package/artifacts-zk/contracts/uln/uln301/SendUln301.sol/SendUln301.json +2 -2
  57. package/artifacts-zk/contracts/uln/uln302/ReceiveUln302.sol/ReceiveUln302.json +2 -2
  58. package/artifacts-zk/contracts/uln/uln302/ReceiveUln302View.sol/ReceiveUln302View.json +2 -2
  59. package/artifacts-zk/contracts/uln/uln302/SendUln302.sol/SendUln302.json +2 -2
  60. package/deployments/arbitrum-sandbox-local/DVN.json +1 -1
  61. package/deployments/arbitrum-sandbox-local/DVNDecompressor.json +1 -1
  62. package/deployments/arbitrum-sandbox-local/DVNFeeLib.json +1 -1
  63. package/deployments/arbitrum-sandbox-local/DefaultProxyAdmin.json +1 -1
  64. package/deployments/arbitrum-sandbox-local/EndpointV2.json +1 -1
  65. package/deployments/arbitrum-sandbox-local/EndpointV2View.json +1 -1
  66. package/deployments/arbitrum-sandbox-local/EndpointV2View_Implementation.json +1 -1
  67. package/deployments/arbitrum-sandbox-local/EndpointV2View_Proxy.json +1 -1
  68. package/deployments/arbitrum-sandbox-local/Executor.json +1 -1
  69. package/deployments/arbitrum-sandbox-local/ExecutorDecompressor.json +1 -1
  70. package/deployments/arbitrum-sandbox-local/ExecutorFeeLib.json +1 -1
  71. package/deployments/arbitrum-sandbox-local/ExecutorProxyAdmin.json +1 -1
  72. package/deployments/arbitrum-sandbox-local/Executor_Implementation.json +1 -1
  73. package/deployments/arbitrum-sandbox-local/Executor_Proxy.json +1 -1
  74. package/deployments/arbitrum-sandbox-local/LzExecutor.json +1 -1
  75. package/deployments/arbitrum-sandbox-local/LzExecutor_Implementation.json +1 -1
  76. package/deployments/arbitrum-sandbox-local/LzExecutor_Proxy.json +1 -1
  77. package/deployments/arbitrum-sandbox-local/MultiCall.json +1 -1
  78. package/deployments/arbitrum-sandbox-local/NonceContractMock.json +1 -1
  79. package/deployments/arbitrum-sandbox-local/PriceFeed.json +1 -1
  80. package/deployments/arbitrum-sandbox-local/PriceFeedProxyAdmin.json +1 -1
  81. package/deployments/arbitrum-sandbox-local/PriceFeed_Implementation.json +1 -1
  82. package/deployments/arbitrum-sandbox-local/PriceFeed_Proxy.json +1 -1
  83. package/deployments/arbitrum-sandbox-local/ReadLib1002.json +1 -1
  84. package/deployments/arbitrum-sandbox-local/ReadLib1002View.json +1 -1
  85. package/deployments/arbitrum-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
  86. package/deployments/arbitrum-sandbox-local/ReadLib1002View_Implementation.json +1 -1
  87. package/deployments/arbitrum-sandbox-local/ReadLib1002View_Proxy.json +1 -1
  88. package/deployments/arbitrum-sandbox-local/ReceiveUln301.json +1 -1
  89. package/deployments/arbitrum-sandbox-local/ReceiveUln301View.json +1 -1
  90. package/deployments/arbitrum-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
  91. package/deployments/arbitrum-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
  92. package/deployments/arbitrum-sandbox-local/ReceiveUln302.json +1 -1
  93. package/deployments/arbitrum-sandbox-local/ReceiveUln302View.json +1 -1
  94. package/deployments/arbitrum-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
  95. package/deployments/arbitrum-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
  96. package/deployments/arbitrum-sandbox-local/SendUln301.json +1 -1
  97. package/deployments/arbitrum-sandbox-local/SendUln302.json +1 -1
  98. package/deployments/arbitrum-sandbox-local/SimpleMessageLib.json +1 -1
  99. package/deployments/arbitrum-sandbox-local/Treasury.json +1 -1
  100. package/deployments/arbitrum-sandbox-local/TreasuryFeeHandler.json +1 -1
  101. package/deployments/bsc-sandbox-local/DVN.json +1 -1
  102. package/deployments/bsc-sandbox-local/DVNDecompressor.json +1 -1
  103. package/deployments/bsc-sandbox-local/DVNFeeLib.json +1 -1
  104. package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +1 -1
  105. package/deployments/bsc-sandbox-local/EndpointV2.json +1 -1
  106. package/deployments/bsc-sandbox-local/EndpointV2View.json +1 -1
  107. package/deployments/bsc-sandbox-local/EndpointV2View_Implementation.json +1 -1
  108. package/deployments/bsc-sandbox-local/EndpointV2View_Proxy.json +1 -1
  109. package/deployments/bsc-sandbox-local/Executor.json +1 -1
  110. package/deployments/bsc-sandbox-local/ExecutorDecompressor.json +1 -1
  111. package/deployments/bsc-sandbox-local/ExecutorFeeLib.json +1 -1
  112. package/deployments/bsc-sandbox-local/ExecutorProxyAdmin.json +1 -1
  113. package/deployments/bsc-sandbox-local/Executor_Implementation.json +1 -1
  114. package/deployments/bsc-sandbox-local/Executor_Proxy.json +1 -1
  115. package/deployments/bsc-sandbox-local/LzExecutor.json +1 -1
  116. package/deployments/bsc-sandbox-local/LzExecutor_Implementation.json +1 -1
  117. package/deployments/bsc-sandbox-local/LzExecutor_Proxy.json +1 -1
  118. package/deployments/bsc-sandbox-local/MultiCall.json +1 -1
  119. package/deployments/bsc-sandbox-local/NonceContractMock.json +1 -1
  120. package/deployments/bsc-sandbox-local/PriceFeed.json +1 -1
  121. package/deployments/bsc-sandbox-local/PriceFeedProxyAdmin.json +1 -1
  122. package/deployments/bsc-sandbox-local/PriceFeed_Implementation.json +1 -1
  123. package/deployments/bsc-sandbox-local/PriceFeed_Proxy.json +1 -1
  124. package/deployments/bsc-sandbox-local/ReadLib1002.json +1 -1
  125. package/deployments/bsc-sandbox-local/ReadLib1002View.json +1 -1
  126. package/deployments/bsc-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
  127. package/deployments/bsc-sandbox-local/ReadLib1002View_Implementation.json +1 -1
  128. package/deployments/bsc-sandbox-local/ReadLib1002View_Proxy.json +1 -1
  129. package/deployments/bsc-sandbox-local/ReceiveUln301.json +1 -1
  130. package/deployments/bsc-sandbox-local/ReceiveUln301View.json +1 -1
  131. package/deployments/bsc-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
  132. package/deployments/bsc-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
  133. package/deployments/bsc-sandbox-local/ReceiveUln302.json +1 -1
  134. package/deployments/bsc-sandbox-local/ReceiveUln302View.json +1 -1
  135. package/deployments/bsc-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
  136. package/deployments/bsc-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
  137. package/deployments/bsc-sandbox-local/SendUln301.json +1 -1
  138. package/deployments/bsc-sandbox-local/SendUln302.json +1 -1
  139. package/deployments/bsc-sandbox-local/SimpleMessageLib.json +1 -1
  140. package/deployments/bsc-sandbox-local/Treasury.json +1 -1
  141. package/deployments/bsc-sandbox-local/TreasuryFeeHandler.json +1 -1
  142. package/deployments/ethereum-sandbox-local/DVN.json +1 -1
  143. package/deployments/ethereum-sandbox-local/DVNDecompressor.json +1 -1
  144. package/deployments/ethereum-sandbox-local/DVNFeeLib.json +1 -1
  145. package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +1 -1
  146. package/deployments/ethereum-sandbox-local/EndpointV2.json +1 -1
  147. package/deployments/ethereum-sandbox-local/EndpointV2View.json +1 -1
  148. package/deployments/ethereum-sandbox-local/EndpointV2View_Implementation.json +1 -1
  149. package/deployments/ethereum-sandbox-local/EndpointV2View_Proxy.json +1 -1
  150. package/deployments/ethereum-sandbox-local/Executor.json +1 -1
  151. package/deployments/ethereum-sandbox-local/ExecutorDecompressor.json +1 -1
  152. package/deployments/ethereum-sandbox-local/ExecutorFeeLib.json +1 -1
  153. package/deployments/ethereum-sandbox-local/ExecutorProxyAdmin.json +1 -1
  154. package/deployments/ethereum-sandbox-local/Executor_Implementation.json +1 -1
  155. package/deployments/ethereum-sandbox-local/Executor_Proxy.json +1 -1
  156. package/deployments/ethereum-sandbox-local/LzExecutor.json +1 -1
  157. package/deployments/ethereum-sandbox-local/LzExecutor_Implementation.json +1 -1
  158. package/deployments/ethereum-sandbox-local/LzExecutor_Proxy.json +1 -1
  159. package/deployments/ethereum-sandbox-local/MultiCall.json +1 -1
  160. package/deployments/ethereum-sandbox-local/NonceContractMock.json +1 -1
  161. package/deployments/ethereum-sandbox-local/PriceFeed.json +1 -1
  162. package/deployments/ethereum-sandbox-local/PriceFeedProxyAdmin.json +1 -1
  163. package/deployments/ethereum-sandbox-local/PriceFeed_Implementation.json +1 -1
  164. package/deployments/ethereum-sandbox-local/PriceFeed_Proxy.json +1 -1
  165. package/deployments/ethereum-sandbox-local/ReadLib1002.json +1 -1
  166. package/deployments/ethereum-sandbox-local/ReadLib1002View.json +1 -1
  167. package/deployments/ethereum-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
  168. package/deployments/ethereum-sandbox-local/ReadLib1002View_Implementation.json +1 -1
  169. package/deployments/ethereum-sandbox-local/ReadLib1002View_Proxy.json +1 -1
  170. package/deployments/ethereum-sandbox-local/ReceiveUln301.json +1 -1
  171. package/deployments/ethereum-sandbox-local/ReceiveUln301View.json +1 -1
  172. package/deployments/ethereum-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
  173. package/deployments/ethereum-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
  174. package/deployments/ethereum-sandbox-local/ReceiveUln302.json +1 -1
  175. package/deployments/ethereum-sandbox-local/ReceiveUln302View.json +1 -1
  176. package/deployments/ethereum-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
  177. package/deployments/ethereum-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
  178. package/deployments/ethereum-sandbox-local/SendUln301.json +1 -1
  179. package/deployments/ethereum-sandbox-local/SendUln302.json +1 -1
  180. package/deployments/ethereum-sandbox-local/SimpleMessageLib.json +1 -1
  181. package/deployments/ethereum-sandbox-local/Treasury.json +1 -1
  182. package/deployments/ethereum-sandbox-local/TreasuryFeeHandler.json +1 -1
  183. package/deployments/tron-sandbox-local/DVN.json +2 -2
  184. package/deployments/tron-sandbox-local/DVNDecompressor.json +2 -2
  185. package/deployments/tron-sandbox-local/DVNFeeLib.json +2 -2
  186. package/deployments/tron-sandbox-local/DefaultProxyAdmin.json +2 -2
  187. package/deployments/tron-sandbox-local/EndpointV2.json +2 -2
  188. package/deployments/tron-sandbox-local/EndpointV2View.json +2 -2
  189. package/deployments/tron-sandbox-local/EndpointV2View_Implementation.json +2 -2
  190. package/deployments/tron-sandbox-local/EndpointV2View_Proxy.json +2 -2
  191. package/deployments/tron-sandbox-local/Executor.json +2 -2
  192. package/deployments/tron-sandbox-local/ExecutorDecompressor.json +2 -2
  193. package/deployments/tron-sandbox-local/ExecutorFeeLib.json +2 -2
  194. package/deployments/tron-sandbox-local/ExecutorProxyAdmin.json +2 -2
  195. package/deployments/tron-sandbox-local/Executor_Implementation.json +2 -2
  196. package/deployments/tron-sandbox-local/Executor_Proxy.json +2 -2
  197. package/deployments/tron-sandbox-local/LzExecutor.json +2 -2
  198. package/deployments/tron-sandbox-local/LzExecutor_Implementation.json +2 -2
  199. package/deployments/tron-sandbox-local/LzExecutor_Proxy.json +2 -2
  200. package/deployments/tron-sandbox-local/MultiCall.json +2 -2
  201. package/deployments/tron-sandbox-local/NonceContractMock.json +2 -2
  202. package/deployments/tron-sandbox-local/PriceFeed.json +2 -2
  203. package/deployments/tron-sandbox-local/PriceFeedProxyAdmin.json +2 -2
  204. package/deployments/tron-sandbox-local/PriceFeed_Implementation.json +2 -2
  205. package/deployments/tron-sandbox-local/PriceFeed_Proxy.json +2 -2
  206. package/deployments/tron-sandbox-local/ReadLib1002.json +2 -2
  207. package/deployments/tron-sandbox-local/ReadLib1002View.json +2 -2
  208. package/deployments/tron-sandbox-local/ReadLib1002ViewProxyAdmin.json +2 -2
  209. package/deployments/tron-sandbox-local/ReadLib1002View_Implementation.json +2 -2
  210. package/deployments/tron-sandbox-local/ReadLib1002View_Proxy.json +2 -2
  211. package/deployments/tron-sandbox-local/ReceiveUln301.json +2 -2
  212. package/deployments/tron-sandbox-local/ReceiveUln301View.json +2 -2
  213. package/deployments/tron-sandbox-local/ReceiveUln301View_Implementation.json +2 -2
  214. package/deployments/tron-sandbox-local/ReceiveUln301View_Proxy.json +2 -2
  215. package/deployments/tron-sandbox-local/ReceiveUln302.json +2 -2
  216. package/deployments/tron-sandbox-local/ReceiveUln302View.json +2 -2
  217. package/deployments/tron-sandbox-local/ReceiveUln302View_Implementation.json +2 -2
  218. package/deployments/tron-sandbox-local/ReceiveUln302View_Proxy.json +2 -2
  219. package/deployments/tron-sandbox-local/SendUln301.json +2 -2
  220. package/deployments/tron-sandbox-local/SendUln302.json +2 -2
  221. package/deployments/tron-sandbox-local/SimpleMessageLib.json +2 -2
  222. package/deployments/tron-sandbox-local/Treasury.json +2 -2
  223. package/deployments/tron-sandbox-local/TreasuryFeeHandler.json +2 -2
  224. package/package.json +9 -9
@@ -0,0 +1,388 @@
1
+ {
2
+ "_format": "hh-zksolc-artifact-1",
3
+ "contractName": "ReadLibBase",
4
+ "sourceName": "contracts/uln/readlib/ReadLibBase.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "LZ_RL_AtLeastOneDVN",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "LZ_RL_InvalidExecutor",
14
+ "type": "error"
15
+ },
16
+ {
17
+ "inputs": [],
18
+ "name": "LZ_RL_InvalidOptionalDVNCount",
19
+ "type": "error"
20
+ },
21
+ {
22
+ "inputs": [],
23
+ "name": "LZ_RL_InvalidOptionalDVNThreshold",
24
+ "type": "error"
25
+ },
26
+ {
27
+ "inputs": [],
28
+ "name": "LZ_RL_InvalidRequiredDVNCount",
29
+ "type": "error"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "LZ_RL_Unsorted",
34
+ "type": "error"
35
+ },
36
+ {
37
+ "inputs": [
38
+ {
39
+ "internalType": "uint32",
40
+ "name": "eid",
41
+ "type": "uint32"
42
+ }
43
+ ],
44
+ "name": "LZ_RL_UnsupportedEid",
45
+ "type": "error"
46
+ },
47
+ {
48
+ "anonymous": false,
49
+ "inputs": [
50
+ {
51
+ "components": [
52
+ {
53
+ "internalType": "uint32",
54
+ "name": "eid",
55
+ "type": "uint32"
56
+ },
57
+ {
58
+ "components": [
59
+ {
60
+ "internalType": "address",
61
+ "name": "executor",
62
+ "type": "address"
63
+ },
64
+ {
65
+ "internalType": "uint8",
66
+ "name": "requiredDVNCount",
67
+ "type": "uint8"
68
+ },
69
+ {
70
+ "internalType": "uint8",
71
+ "name": "optionalDVNCount",
72
+ "type": "uint8"
73
+ },
74
+ {
75
+ "internalType": "uint8",
76
+ "name": "optionalDVNThreshold",
77
+ "type": "uint8"
78
+ },
79
+ {
80
+ "internalType": "address[]",
81
+ "name": "requiredDVNs",
82
+ "type": "address[]"
83
+ },
84
+ {
85
+ "internalType": "address[]",
86
+ "name": "optionalDVNs",
87
+ "type": "address[]"
88
+ }
89
+ ],
90
+ "internalType": "struct ReadLibConfig",
91
+ "name": "config",
92
+ "type": "tuple"
93
+ }
94
+ ],
95
+ "indexed": false,
96
+ "internalType": "struct SetDefaultReadLibConfigParam[]",
97
+ "name": "params",
98
+ "type": "tuple[]"
99
+ }
100
+ ],
101
+ "name": "DefaultReadLibConfigsSet",
102
+ "type": "event"
103
+ },
104
+ {
105
+ "anonymous": false,
106
+ "inputs": [
107
+ {
108
+ "indexed": true,
109
+ "internalType": "address",
110
+ "name": "previousOwner",
111
+ "type": "address"
112
+ },
113
+ {
114
+ "indexed": true,
115
+ "internalType": "address",
116
+ "name": "newOwner",
117
+ "type": "address"
118
+ }
119
+ ],
120
+ "name": "OwnershipTransferred",
121
+ "type": "event"
122
+ },
123
+ {
124
+ "anonymous": false,
125
+ "inputs": [
126
+ {
127
+ "indexed": false,
128
+ "internalType": "address",
129
+ "name": "oapp",
130
+ "type": "address"
131
+ },
132
+ {
133
+ "indexed": false,
134
+ "internalType": "uint32",
135
+ "name": "eid",
136
+ "type": "uint32"
137
+ },
138
+ {
139
+ "components": [
140
+ {
141
+ "internalType": "address",
142
+ "name": "executor",
143
+ "type": "address"
144
+ },
145
+ {
146
+ "internalType": "uint8",
147
+ "name": "requiredDVNCount",
148
+ "type": "uint8"
149
+ },
150
+ {
151
+ "internalType": "uint8",
152
+ "name": "optionalDVNCount",
153
+ "type": "uint8"
154
+ },
155
+ {
156
+ "internalType": "uint8",
157
+ "name": "optionalDVNThreshold",
158
+ "type": "uint8"
159
+ },
160
+ {
161
+ "internalType": "address[]",
162
+ "name": "requiredDVNs",
163
+ "type": "address[]"
164
+ },
165
+ {
166
+ "internalType": "address[]",
167
+ "name": "optionalDVNs",
168
+ "type": "address[]"
169
+ }
170
+ ],
171
+ "indexed": false,
172
+ "internalType": "struct ReadLibConfig",
173
+ "name": "config",
174
+ "type": "tuple"
175
+ }
176
+ ],
177
+ "name": "ReadLibConfigSet",
178
+ "type": "event"
179
+ },
180
+ {
181
+ "inputs": [
182
+ {
183
+ "internalType": "address",
184
+ "name": "_oapp",
185
+ "type": "address"
186
+ },
187
+ {
188
+ "internalType": "uint32",
189
+ "name": "_remoteEid",
190
+ "type": "uint32"
191
+ }
192
+ ],
193
+ "name": "getAppReadLibConfig",
194
+ "outputs": [
195
+ {
196
+ "components": [
197
+ {
198
+ "internalType": "address",
199
+ "name": "executor",
200
+ "type": "address"
201
+ },
202
+ {
203
+ "internalType": "uint8",
204
+ "name": "requiredDVNCount",
205
+ "type": "uint8"
206
+ },
207
+ {
208
+ "internalType": "uint8",
209
+ "name": "optionalDVNCount",
210
+ "type": "uint8"
211
+ },
212
+ {
213
+ "internalType": "uint8",
214
+ "name": "optionalDVNThreshold",
215
+ "type": "uint8"
216
+ },
217
+ {
218
+ "internalType": "address[]",
219
+ "name": "requiredDVNs",
220
+ "type": "address[]"
221
+ },
222
+ {
223
+ "internalType": "address[]",
224
+ "name": "optionalDVNs",
225
+ "type": "address[]"
226
+ }
227
+ ],
228
+ "internalType": "struct ReadLibConfig",
229
+ "name": "",
230
+ "type": "tuple"
231
+ }
232
+ ],
233
+ "stateMutability": "view",
234
+ "type": "function"
235
+ },
236
+ {
237
+ "inputs": [
238
+ {
239
+ "internalType": "address",
240
+ "name": "_oapp",
241
+ "type": "address"
242
+ },
243
+ {
244
+ "internalType": "uint32",
245
+ "name": "_remoteEid",
246
+ "type": "uint32"
247
+ }
248
+ ],
249
+ "name": "getReadLibConfig",
250
+ "outputs": [
251
+ {
252
+ "components": [
253
+ {
254
+ "internalType": "address",
255
+ "name": "executor",
256
+ "type": "address"
257
+ },
258
+ {
259
+ "internalType": "uint8",
260
+ "name": "requiredDVNCount",
261
+ "type": "uint8"
262
+ },
263
+ {
264
+ "internalType": "uint8",
265
+ "name": "optionalDVNCount",
266
+ "type": "uint8"
267
+ },
268
+ {
269
+ "internalType": "uint8",
270
+ "name": "optionalDVNThreshold",
271
+ "type": "uint8"
272
+ },
273
+ {
274
+ "internalType": "address[]",
275
+ "name": "requiredDVNs",
276
+ "type": "address[]"
277
+ },
278
+ {
279
+ "internalType": "address[]",
280
+ "name": "optionalDVNs",
281
+ "type": "address[]"
282
+ }
283
+ ],
284
+ "internalType": "struct ReadLibConfig",
285
+ "name": "rtnConfig",
286
+ "type": "tuple"
287
+ }
288
+ ],
289
+ "stateMutability": "view",
290
+ "type": "function"
291
+ },
292
+ {
293
+ "inputs": [],
294
+ "name": "owner",
295
+ "outputs": [
296
+ {
297
+ "internalType": "address",
298
+ "name": "",
299
+ "type": "address"
300
+ }
301
+ ],
302
+ "stateMutability": "view",
303
+ "type": "function"
304
+ },
305
+ {
306
+ "inputs": [],
307
+ "name": "renounceOwnership",
308
+ "outputs": [],
309
+ "stateMutability": "nonpayable",
310
+ "type": "function"
311
+ },
312
+ {
313
+ "inputs": [
314
+ {
315
+ "components": [
316
+ {
317
+ "internalType": "uint32",
318
+ "name": "eid",
319
+ "type": "uint32"
320
+ },
321
+ {
322
+ "components": [
323
+ {
324
+ "internalType": "address",
325
+ "name": "executor",
326
+ "type": "address"
327
+ },
328
+ {
329
+ "internalType": "uint8",
330
+ "name": "requiredDVNCount",
331
+ "type": "uint8"
332
+ },
333
+ {
334
+ "internalType": "uint8",
335
+ "name": "optionalDVNCount",
336
+ "type": "uint8"
337
+ },
338
+ {
339
+ "internalType": "uint8",
340
+ "name": "optionalDVNThreshold",
341
+ "type": "uint8"
342
+ },
343
+ {
344
+ "internalType": "address[]",
345
+ "name": "requiredDVNs",
346
+ "type": "address[]"
347
+ },
348
+ {
349
+ "internalType": "address[]",
350
+ "name": "optionalDVNs",
351
+ "type": "address[]"
352
+ }
353
+ ],
354
+ "internalType": "struct ReadLibConfig",
355
+ "name": "config",
356
+ "type": "tuple"
357
+ }
358
+ ],
359
+ "internalType": "struct SetDefaultReadLibConfigParam[]",
360
+ "name": "_params",
361
+ "type": "tuple[]"
362
+ }
363
+ ],
364
+ "name": "setDefaultReadLibConfigs",
365
+ "outputs": [],
366
+ "stateMutability": "nonpayable",
367
+ "type": "function"
368
+ },
369
+ {
370
+ "inputs": [
371
+ {
372
+ "internalType": "address",
373
+ "name": "newOwner",
374
+ "type": "address"
375
+ }
376
+ ],
377
+ "name": "transferOwnership",
378
+ "outputs": [],
379
+ "stateMutability": "nonpayable",
380
+ "type": "function"
381
+ }
382
+ ],
383
+ "bytecode": "0x",
384
+ "deployedBytecode": "0x",
385
+ "linkReferences": {},
386
+ "deployedLinkReferences": {},
387
+ "factoryDeps": {}
388
+ }