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

How to exchange FLT-DROP to FLT token? #125

Closed
firattale opened this issue Apr 16, 2024 · 11 comments
Closed

How to exchange FLT-DROP to FLT token? #125

firattale opened this issue Apr 16, 2024 · 11 comments

Comments

@firattale
Copy link

It is not certain how to exchange FLT-DROP for FLT tokens.

https://blog.fluence.network/fluence-developer-community/

Here it just says:

Can I exchange the airdrop tokens?
You can exchange them to FLT after the 2 months lock up period since claiming.

and I can't find anything related to that in your contracts.

could you please explain how to do that?

@jonas089
Copy link

I'd also like to know how to exchange them after the lockup period.

@jonas089
Copy link

Upon reading their smart contract, I think that you can literally just transfer the FLT-DROP tokens once the lock up period has expired. If you attempt to transfer beforehand you'll encounter an error:

    function transfer(address to, uint256 value) external returns (bool) {
        require(value > 0, "Value is 0");
        require(lockedBalances[msg.sender].amount == value, "Invalid amount");
        require(block.timestamp > lockedBalances[msg.sender].unlockTime, "Tokens are locked");

        lockedBalances[msg.sender].amount = 0;
        _totalSupply -= value;
        IERC20(token).safeTransfer(msg.sender, value);
        emit Transfer(msg.sender, address(0x00), value);

        return true;
    }

I'm not 100% confident but maybe the transfer function of FLT-DROP unlocks the tokens if called after the lock up period has expired.

Don't take this for granted and wait for someone to officially confirm it before you attempt anything!

@FernNguyen
Copy link

Based on the information in Telegram and reading the contract, I received the following information:
The transfer function of FLT-DROP has been rewritten and when the lock expires, you just need to transfer your FLT-DROP to any address, or sent to yourself, the contract will check the validity and transfer $FLT back to your wallet.

@justinkb
Copy link

Guessing this transfer will incur gas fee?

@agongdai
Copy link

agongdai commented May 5, 2024

I have tried to transfer the $FLT-DROP to my self address, it does not work: https://etherscan.io/tx/0xe8d6056a9fd12c8a3f34212e75e526db82aac7d4b587580c590c24a4e7906ff0

@agongdai
Copy link

agongdai commented May 5, 2024

Could anybody explain how to transfer? My FLT-DROP has been locked for 61 days: https://etherscan.io/tx/0x70077426125f5c2b5cba9cdbbb3ab1d777ac545f7c536d76ed7d190fb47c0c1d

@jonas089
Copy link

jonas089 commented May 5, 2024

Could anybody explain how to transfer? My FLT-DROP has been locked for 61 days: https://etherscan.io/tx/0x70077426125f5c2b5cba9cdbbb3ab1d777ac545f7c536d76ed7d190fb47c0c1d

You can only transfer 2 Months after you claimed the airdrop. When did you claim

=> If you claimed yesterday then you need to wait for another 59 days

@LBruyne
Copy link

LBruyne commented May 6, 2024

@vedantmgoyal9
Copy link

https://claim.fluence.network/claim-flt

@firattale
Copy link
Author

I'm closing this issue because it has been solved.

https://claim.fluence.network/claim-flt

@waruqi
Copy link

waruqi commented May 24, 2024

https://claim.fluence.network/claim-flt

I tried it and I connected metamask, but I got some errors.

The supported networks are: mainnet. Falling back to default provider.

then I clicked convert button, it got :

Please sign tx in your walletunknown account #0 (operation="getAddress", code=UNSUPPORTED_OPERATION, version=providers/5.7.2)

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

No branches or pull requests

8 participants