V3AirdropOperator

해당 컨트랙트는 각 에어드롭을 운영합니다. 에어드랍되는 LP와 토큰은 생성 시점에 결정되며 수정할 수 없습니다.

Code

Github Link: (Will be updated after official launch)

Events, Read-Only Functions, and State-Changing Functions

Read-Only Functions

getAirdropStat

function getAirdropStat() external view returns (
    uint256 totalAmount,
    uint256 blockAmount,
    uint256 distributableBlock,
    uint256 endBlock,
    uint256 distributed,
    uint256 remain,
    bool created
) 

Return Values:

NameTypeDescription

totalAmount

uint256

에어드랍 총 물량

blockAmount

uint256

블록당 에어드랍된 토큰의 양

distributableBlock

uint256

에어드랍가능한 블록의 블록 번호

endBlock

uint256

에어드랍 종료되는 블록 번호

distributed

uint256

현재 분배된 양

remain

uint256

남아있는 양

created

bool

초기화되었는지 여부

getDistributionId

function getDistributionId() public view returns (bytes32 id)

Return Values:

NameTypeDescription

id

bytes32

에어드랍 ID

Last updated