@layerzerolabs/lz-evm-sdk-v2 3.1.2 → 3.1.3

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 (35) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/deployments/arc-mainnet/DVN.json +1504 -0
  3. package/deployments/arc-mainnet/DVNFeeLib.json +690 -0
  4. package/deployments/arc-mainnet/DeadDVN.json +159 -0
  5. package/deployments/arc-mainnet/DefaultProxyAdmin.json +166 -0
  6. package/deployments/arc-mainnet/EndpointV2.json +2356 -0
  7. package/deployments/arc-mainnet/EndpointV2View.json +335 -0
  8. package/deployments/arc-mainnet/EndpointV2View_Implementation.json +204 -0
  9. package/deployments/arc-mainnet/EndpointV2View_Proxy.json +137 -0
  10. package/deployments/arc-mainnet/Executor.json +1476 -0
  11. package/deployments/arc-mainnet/ExecutorFeeLib.json +541 -0
  12. package/deployments/arc-mainnet/ExecutorProxyAdmin.json +176 -0
  13. package/deployments/arc-mainnet/Executor_Implementation.json +1345 -0
  14. package/deployments/arc-mainnet/Executor_Proxy.json +137 -0
  15. package/deployments/arc-mainnet/LzExecutor.json +641 -0
  16. package/deployments/arc-mainnet/LzExecutor_Implementation.json +510 -0
  17. package/deployments/arc-mainnet/LzExecutor_Proxy.json +137 -0
  18. package/deployments/arc-mainnet/MultiCall.json +115 -0
  19. package/deployments/arc-mainnet/PriceFeed.json +820 -0
  20. package/deployments/arc-mainnet/PriceFeedProxyAdmin.json +176 -0
  21. package/deployments/arc-mainnet/PriceFeed_Implementation.json +689 -0
  22. package/deployments/arc-mainnet/PriceFeed_Proxy.json +137 -0
  23. package/deployments/arc-mainnet/ReceiveUln301.json +995 -0
  24. package/deployments/arc-mainnet/ReceiveUln301View.json +252 -0
  25. package/deployments/arc-mainnet/ReceiveUln301View_Implementation.json +121 -0
  26. package/deployments/arc-mainnet/ReceiveUln301View_Proxy.json +137 -0
  27. package/deployments/arc-mainnet/ReceiveUln302.json +752 -0
  28. package/deployments/arc-mainnet/ReceiveUln302View.json +377 -0
  29. package/deployments/arc-mainnet/ReceiveUln302View_Implementation.json +246 -0
  30. package/deployments/arc-mainnet/ReceiveUln302View_Proxy.json +137 -0
  31. package/deployments/arc-mainnet/SendUln301.json +1273 -0
  32. package/deployments/arc-mainnet/SendUln302.json +1254 -0
  33. package/deployments/arc-mainnet/Treasury.json +304 -0
  34. package/deployments/arc-mainnet/TreasuryFeeHandler.json +89 -0
  35. package/package.json +1 -1
@@ -0,0 +1,176 @@
1
+ {
2
+ "address": "0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4",
3
+ "transactionHash": "0x4b950dce6e3320a4736274fc5650d8d706281eddc5203f296cd18cc1b4c1c03f",
4
+ "abi": [
5
+ {
6
+ "inputs": [
7
+ {
8
+ "internalType": "address",
9
+ "name": "initialOwner",
10
+ "type": "address"
11
+ }
12
+ ],
13
+ "stateMutability": "nonpayable",
14
+ "type": "constructor"
15
+ },
16
+ {
17
+ "inputs": [],
18
+ "name": "AdminCallFailed",
19
+ "type": "error"
20
+ },
21
+ {
22
+ "inputs": [],
23
+ "name": "ImplementationCallFailed",
24
+ "type": "error"
25
+ },
26
+ {
27
+ "anonymous": false,
28
+ "inputs": [
29
+ {
30
+ "indexed": true,
31
+ "internalType": "address",
32
+ "name": "previousOwner",
33
+ "type": "address"
34
+ },
35
+ {
36
+ "indexed": true,
37
+ "internalType": "address",
38
+ "name": "newOwner",
39
+ "type": "address"
40
+ }
41
+ ],
42
+ "name": "OwnershipTransferred",
43
+ "type": "event"
44
+ },
45
+ {
46
+ "inputs": [
47
+ {
48
+ "internalType": "contract TransparentUpgradeableProxy",
49
+ "name": "proxy",
50
+ "type": "address"
51
+ },
52
+ {
53
+ "internalType": "address",
54
+ "name": "newAdmin",
55
+ "type": "address"
56
+ }
57
+ ],
58
+ "name": "changeProxyAdmin",
59
+ "outputs": [],
60
+ "stateMutability": "nonpayable",
61
+ "type": "function"
62
+ },
63
+ {
64
+ "inputs": [
65
+ {
66
+ "internalType": "contract TransparentUpgradeableProxy",
67
+ "name": "proxy",
68
+ "type": "address"
69
+ }
70
+ ],
71
+ "name": "getProxyAdmin",
72
+ "outputs": [
73
+ {
74
+ "internalType": "address",
75
+ "name": "",
76
+ "type": "address"
77
+ }
78
+ ],
79
+ "stateMutability": "view",
80
+ "type": "function"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "contract TransparentUpgradeableProxy",
86
+ "name": "proxy",
87
+ "type": "address"
88
+ }
89
+ ],
90
+ "name": "getProxyImplementation",
91
+ "outputs": [
92
+ {
93
+ "internalType": "address",
94
+ "name": "",
95
+ "type": "address"
96
+ }
97
+ ],
98
+ "stateMutability": "view",
99
+ "type": "function"
100
+ },
101
+ {
102
+ "inputs": [],
103
+ "name": "owner",
104
+ "outputs": [
105
+ {
106
+ "internalType": "address",
107
+ "name": "",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "stateMutability": "view",
112
+ "type": "function"
113
+ },
114
+ {
115
+ "inputs": [],
116
+ "name": "renounceOwnership",
117
+ "outputs": [],
118
+ "stateMutability": "nonpayable",
119
+ "type": "function"
120
+ },
121
+ {
122
+ "inputs": [
123
+ {
124
+ "internalType": "address",
125
+ "name": "newOwner",
126
+ "type": "address"
127
+ }
128
+ ],
129
+ "name": "transferOwnership",
130
+ "outputs": [],
131
+ "stateMutability": "nonpayable",
132
+ "type": "function"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "contract TransparentUpgradeableProxy",
138
+ "name": "proxy",
139
+ "type": "address"
140
+ },
141
+ {
142
+ "internalType": "address",
143
+ "name": "implementation",
144
+ "type": "address"
145
+ }
146
+ ],
147
+ "name": "upgrade",
148
+ "outputs": [],
149
+ "stateMutability": "nonpayable",
150
+ "type": "function"
151
+ },
152
+ {
153
+ "inputs": [
154
+ {
155
+ "internalType": "contract TransparentUpgradeableProxy",
156
+ "name": "proxy",
157
+ "type": "address"
158
+ },
159
+ {
160
+ "internalType": "address",
161
+ "name": "implementation",
162
+ "type": "address"
163
+ },
164
+ {
165
+ "internalType": "bytes",
166
+ "name": "data",
167
+ "type": "bytes"
168
+ }
169
+ ],
170
+ "name": "upgradeAndCall",
171
+ "outputs": [],
172
+ "stateMutability": "payable",
173
+ "type": "function"
174
+ }
175
+ ]
176
+ }