Potion Migrator

The PotionMigrator contract converts Potion Crates into 4x of the specified Potion.

A Potion Crate will need to be approved to the PotionMigrator contract before calling the migrate function.

Contracts

Addresses

NameMainnetTestnet

DFK Chain

0x6755dEBef85929aC4cd541c81147Bc17C4F0CD0e

0x5EA8D5021a29814B6B4077b55e673aa1FdCC6Fcd

Klaytn

0x8050156C08b2525D2a83Cb237abD3a7533F06355

0x9504EB8c9b6e84eC4659BD14427a6A6352468fb1

Interfaces

interface IPotionMigrator {

    event TokensMigrated(address indexed account, address indexed token1, address indexed token2, uint256 amount);
    
    function migrate(address _tokenToMigrate);
    function tokenMappings(address) view returns (address);
    
}

ABIs

Last updated