Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to withdraw $KLAY from temporary account #653

Merged
merged 4 commits into from
Jun 2, 2023

Conversation

martinkersner
Copy link
Member

Description

Request created by temporary account can be canceled. In both VRF

sRequestIdToCommitment[requestId] = computeCommitment(
requestId,
block.number,
accId,
callbackGasLimit,
numWords,
msg.sender
);
sRequestOwner[requestId] = msg.sender;
and RR
sRequestIdToCommitment[requestId] = computeCommitment(
requestId,
block.number,
accId,
numSubmission,
callbackGasLimit,
msg.sender,
isDirectPayment,
req.id
);
sRequestOwner[requestId] = msg.sender;
, request commitment and owner of request are stored in contract local storage. The exactly same code is used for temporary account and permanent account. Any request can therefore be canceled using cancelRequestFunction
function cancelRequest(uint256 requestId) external {
if (!isValidRequestId(requestId)) {
revert NoCorrespondingRequest();
}
if (sRequestOwner[requestId] != msg.sender) {
revert NotRequestOwner();
}
delete sRequestIdToCommitment[requestId];
delete sRequestOwner[requestId];
emit RequestCanceled(requestId);
}
. Once the request is canceled, it cannot be fulfilled by any oracle because we have a validation of response in both RR
bytes32 commitment = sRequestIdToCommitment[requestId];
if (commitment == 0) {
revert NoCorrespondingRequest();
}
and VRF
bytes32 commitment = sRequestIdToCommitment[requestId];
if (commitment == 0) {
revert NoCorrespondingRequest();
}
.

When the request is canceled, the request itself cannot be used to charge for service fee. In case of permanent account, we have a witdthraw function

function withdraw(uint64 accId, uint256 amount) external onlyAccountOwner(accId) {
if (pendingRequestExists(accId)) {
revert PendingRequestExists();
}
(bool sent, uint256 balance) = sAccIdToAccount[accId].withdraw(amount);
if (!sent) {
revert FailedToWithdraw();
}
emit AccountBalanceDecreased(accId, balance + amount, balance);
}
, but for the temporary account $KLAY deposited during the request is basically stuck in the Prepayment contract, nobody can withdraw them, not even owner of the contract.

This PR allows to withdraw $KLAY from temporary account by owner of the account which requested for a service but the request was eventually canceled.

Type of change

  • Bug fix (non-breaking change which fixes an issue)

Checklist before requesting a review

  • I have performed a self-review of my code.
  • If it is a core feature, I have added thorough tests.

Sorry, something went wrong.

@martinkersner martinkersner requested review from a team, bayram98 and KelvinThai as code owners June 1, 2023 04:36
Copy link
Contributor

@bayram98 bayram98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@martinkersner martinkersner self-assigned this Jun 1, 2023
@KelvinThai KelvinThai merged commit ed82795 into master Jun 2, 2023
@martinkersner martinkersner deleted the i-652/feat/allow-to-withdraw-from-tmp-account branch June 2, 2023 01:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants