-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Victor Yanev <[email protected]>
- Loading branch information
1 parent
41e3d39
commit 2f1afc2
Showing
14 changed files
with
816 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
contracts/system-contracts/hedera-token-service/IHRC904.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity >=0.4.9 <0.9.0; | ||
|
||
interface IHRC904 { | ||
function cancelAirdropFT(address receiverAddress) external returns (int64 responseCode); | ||
function cancelAirdropNFT(address receiverAddress, int64 serialNumber) external returns (int64 responseCode); | ||
function claimAirdropFT(address senderAddress) external returns (int64 responseCode); | ||
function claimAirdropNFT(address senderAddress, int64 serialNumber) external returns (int64 responseCode); | ||
function rejectTokenFT() external returns (int64 responseCode); | ||
function rejectTokenNFTs(int64[] memory serialNumbers) external returns (int64 responseCode); | ||
function setUnlimitedAutomaticAssociations(bool enableAutoAssociations) external returns (int64 responseCode); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.