File tree Expand file tree Collapse file tree 5 files changed +35
-15
lines changed
Expand file tree Collapse file tree 5 files changed +35
-15
lines changed Original file line number Diff line number Diff line change @@ -97,10 +97,11 @@ Parameters:
9797| batcher_ | contract IBatcher | the batcher contract coordinating batched executions. |
9898| redeemDetails_ | bytes | encoded data defining the redeem operation. |
9999
100- ### getOperationHash (0x24977a20 )
100+ ### getOperationHash (0xfd0532cf )
101101
102102``` solidity
103103function getOperationHash(
104+ IBridge bridge_,
104105 string calldata network_,
105106 bytes calldata redeemDetails_
106107) external view virtual returns (bytes32)
@@ -111,10 +112,11 @@ A function to compute a redeem operation hash used for signing.
111112
112113Parameters:
113114
114- | Name | Type | Description |
115- | :------------- | :----- | :--------------------------------- |
116- | network_ | string | the network name. |
117- | redeemDetails_ | bytes | encoded redeem operation details. |
115+ | Name | Type | Description |
116+ | :------------- | :--------------- | :--------------------------------- |
117+ | bridge_ | contract IBridge | the bridge contract. |
118+ | network_ | string | the network name. |
119+ | redeemDetails_ | bytes | encoded redeem operation details. |
118120
119121
120122Return values:
Original file line number Diff line number Diff line change @@ -76,10 +76,11 @@ Parameters:
7676| batcher_ | contract IBatcher | the batcher contract coordinating batched executions. |
7777| redeemDetails_ | bytes | encoded data defining the redeem operation. |
7878
79- ### getOperationHash (0x24977a20 )
79+ ### getOperationHash (0xfd0532cf )
8080
8181``` solidity
8282function getOperationHash(
83+ IBridge bridge_,
8384 string calldata network_,
8485 bytes calldata redeemDetails_
8586) external view virtual returns (bytes32)
@@ -90,10 +91,11 @@ A function to compute a redeem operation hash used for signing.
9091
9192Parameters:
9293
93- | Name | Type | Description |
94- | :------------- | :----- | :--------------------------------- |
95- | network_ | string | the network name. |
96- | redeemDetails_ | bytes | encoded redeem operation details. |
94+ | Name | Type | Description |
95+ | :------------- | :--------------- | :--------------------------------- |
96+ | bridge_ | contract IBridge | the bridge contract. |
97+ | network_ | string | the network name. |
98+ | redeemDetails_ | bytes | encoded redeem operation details. |
9799
98100
99101Return values:
Original file line number Diff line number Diff line change @@ -79,10 +79,11 @@ Parameters:
7979| batcher_ | contract IBatcher | the batcher contract coordinating batched executions. |
8080| redeemDetails_ | bytes | encoded data defining the redeem operation. |
8181
82- ### getOperationHash (0x24977a20 )
82+ ### getOperationHash (0xfd0532cf )
8383
8484``` solidity
8585function getOperationHash(
86+ IBridge bridge_,
8687 string calldata network_,
8788 bytes calldata redeemDetails_
8889) external view virtual returns (bytes32)
@@ -93,10 +94,11 @@ A function to compute a redeem operation hash used for signing.
9394
9495Parameters:
9596
96- | Name | Type | Description |
97- | :------------- | :----- | :--------------------------------- |
98- | network_ | string | the network name. |
99- | redeemDetails_ | bytes | encoded redeem operation details. |
97+ | Name | Type | Description |
98+ | :------------- | :--------------- | :--------------------------------- |
99+ | bridge_ | contract IBridge | the bridge contract. |
100+ | network_ | string | the network name. |
101+ | redeemDetails_ | bytes | encoded redeem operation details. |
100102
101103
102104Return values:
Original file line number Diff line number Diff line change @@ -194,6 +194,13 @@ error StartTimeIsZero()
194194```
195195
196196
197+ ### InvalidScheduleId
198+
199+ ``` solidity
200+ error InvalidScheduleId(uint256 scheduleId)
201+ ```
202+
203+
197204### ScheduleInvalidPeriodParameter
198205
199206``` solidity
Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ The Diamond standard module
1313The Ownable preset of Diamond proxy
1414## Functions info
1515
16+ ### __ OwnableDiamond_init (0x3948bfaf)
17+
18+ ``` solidity
19+ function __OwnableDiamond_init() public initializer
20+ ```
21+
22+
1623### diamondCut (0xe57e69c6)
1724
1825``` solidity
You can’t perform that action at this time.
0 commit comments