We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96eb6a2 commit 4a4b5ecCopy full SHA for 4a4b5ec
src/ChatterPayPaymaster.sol
@@ -151,6 +151,15 @@ contract ChatterPayPaymaster is IPaymaster {
151
entryPoint.withdrawStake(withdrawAddress);
152
}
153
154
+ /**
155
+ * withdraw from the deposit.
156
+ * @param withdrawAddress the address to send withdrawn value.
157
+ * @param withdrawAmount the amount to withdraw.
158
+ */
159
+ function withdrawTo(address payable withdrawAddress, uint256 withdrawAmount) external {
160
+ entryPoint.withdrawTo(withdrawAddress, withdrawAmount);
161
+ }
162
+
163
/**
164
* @notice Executes a low-level call to a specified address
165
* @dev Only callable by the contract owner
0 commit comments