Pages:
Author

Topic: [ANN][FYP] Flyp.me Exchange - 🌟 50% PROFIT SHARING 🌟 FYP Token - SegWit - page 38. (Read 28632 times)

sr. member
Activity: 490
Merit: 250
I just received on my eth address the coins I have acquired thru your presale with some ETH, DOGE and LTC
Thumbs up! Nothing is missing!
Maybe I spend some more  Wink
Of course, 50 profit sharing is worth it Smiley
jr. member
Activity: 69
Merit: 2
@flyp.me thank you for your answer. Are the Tokens bought in pre sale already all distributed to ETH wallets? Because I am still waiting for mine.... What happens if soft cap is not reached? Would that mean that the token sale is cancelled?
member
Activity: 109
Merit: 12
Staker.network - POS Smart Contract ETH Token
I just received on my eth address the coins I have acquired thru your presale with some ETH, DOGE and LTC
Thumbs up! Nothing is missing!
Maybe I spend some more  Wink
hero member
Activity: 896
Merit: 527
₿₿₿₿₿₿₿
How many confirmations are needed for each coin?
full member
Activity: 756
Merit: 102
Can I send from MetaMask to the smart contract?

Yes, you can participate also from MetaMask.

Here is a tutorial on "How to participate with MyEtherWallet":
https://github.com/flypme/flypme-contracts/blob/master/instructions/MyEtherWallet_Tutorial_for_the_FYP_Token_Crowdsale_ENG.pdf


full member
Activity: 142
Merit: 101
HolyTransaction.com
If we have FLYP.me Tokens in our Holytransaction wallet, can they be moved automatically to Ethereum address in the same wallet?

If you have FYP Tokens on HolyTransaction, they will be assigned to your HolyTransaction account and the payout will also be automatically associated with it.
hero member
Activity: 896
Merit: 527
₿₿₿₿₿₿₿
What is the recommended gas price? I can see the recommended gas limit is 250000 but I don't know what is the gas price that should be used.

Hi! 21000 (21 Gwei) is the minimum reccommended gas price
Thanks for your reply.

Do you plan on having more APIs?
full member
Activity: 756
Merit: 102
What is the recommended gas price? I can see the recommended gas limit is 250000 but I don't know what is the gas price that should be used.

Hi! 21000 (21 Gwei) is the minimum reccommended gas price
full member
Activity: 137
Merit: 100
Can I send from MetaMask to the smart contract?
sr. member
Activity: 490
Merit: 250
Are the relationships between the transactions private?
hero member
Activity: 896
Merit: 527
₿₿₿₿₿₿₿
What is the recommended gas price? I can see the recommended gas limit is 250000 but I don't know what is the gas price that should be used.
full member
Activity: 756
Merit: 102
Sorry but this is the first time I saw a "hidden hard cap" ICO lol.

That's ridiculous!

The Hard-Cap will be disclosed, once reached. We published the hash of the Hard-Cap, so that anyone can check that Hard-Cap hasn't been changed.
jr. member
Activity: 69
Merit: 2
If we have FLYP.me Tokens in our Holytransaction wallet, can they be moved automatically to Ethereum address in the same wallet?
hero member
Activity: 896
Merit: 527
₿₿₿₿₿₿₿
How will we know the revenue share amount is trustable?

We will be developing cryptographic auditing to allow anyone to check volumes. While that is being developed, FYP Token owners with more than 200,000 FYP will be able audit costs, volumes and related information to certify them for the wider community. In the eventuality that no FYP Token owner requests to perform an audit, Flyp.me will use the services of an independent auditor yearly.

How many times a year will the be the revenue sharing?

Every three months, as per this post:

What will the first dividend dates be?

Three months after the end of the ICO, the payout will be sent in ETH by default.
member
Activity: 130
Merit: 11
Sorry but this is the first time I saw a "hidden hard cap" ICO lol.

That's ridiculous!
hero member
Activity: 630
Merit: 500
How will we know the revenue share amount is trustable?

We will be developing cryptographic auditing to allow anyone to check volumes. While that is being developed, FYP Token owners with more than 200,000 FYP will be able audit costs, volumes and related information to certify them for the wider community. In the eventuality that no FYP Token owner requests to perform an audit, Flyp.me will use the services of an independent auditor yearly.

How many times a year will the be the revenue sharing?
hero member
Activity: 896
Merit: 527
₿₿₿₿₿₿₿
Just noticed the "hidden" at the right of the "Hard Cap" information in your website has an asterisk. Checked the contract and there's a hardCapHash.

I can see it is because it's actually set (obviously, it's a smart contract) but hashed to keep it hidden as intended by the sale terms.

Could you explain how is it calculated on the contract yet kept secure?

EDIT: For those who don't understand some of the words above, there's nothing wrong. Just asking how they coded the contract Cheesy

The hardCapHash 0x3c11d870f0fc097ed9a45ae2a08b6557f80822501686b7376fef5590f1527599 is a hashed number encrypted (hidden) by a key, so nobody can know the value without the key, even the contract can't know it. So the contract has a function to decipher (show) the hard cap, setHardCap(uint256 _hardCap, uint256 _key). When this function is correctly executed with the correct key the contract public variable hardCap that now is 0 will contain the correct value and everybody will be able to see it, and the contract too.

You can read the contract source from here: https://etherscan.io/address/0x06dafc2a5fe47fcc9f37b5f91c0c2bd1cf2a9a4c#code
Or even from the github source code: https://github.com/flypme/flypme-contracts

Regards
Thanks a lot for the explanation.

I am not a contract coder so I was unsure of how it worked.
newbie
Activity: 26
Merit: 0
Just noticed the "hidden" at the right of the "Hard Cap" information in your website has an asterisk. Checked the contract and there's a hardCapHash.

I can see it is because it's actually set (obviously, it's a smart contract) but hashed to keep it hidden as intended by the sale terms.

Could you explain how is it calculated on the contract yet kept secure?

EDIT: For those who don't understand some of the words above, there's nothing wrong. Just asking how they coded the contract Cheesy

The hardCapHash 0x3c11d870f0fc097ed9a45ae2a08b6557f80822501686b7376fef5590f1527599 is a hashed number encrypted (hidden) by a key, so nobody can know the value without the key, even the contract can't know it. So the contract has a function to decipher (show) the hard cap, setHardCap(uint256 _hardCap, uint256 _key). When this function is correctly executed with the correct key the contract public variable hardCap that now is 0 will contain the correct value and everybody will be able to see it, and the contract too.

You can read the contract source from here: https://etherscan.io/address/0x06dafc2a5fe47fcc9f37b5f91c0c2bd1cf2a9a4c#code
Or even from the github source code: https://github.com/flypme/flypme-contracts

Regards
full member
Activity: 756
Merit: 102
How will we know the revenue share amount is trustable?

We will be developing cryptographic auditing to allow anyone to check volumes. While that is being developed, FYP Token owners with more than 200,000 FYP will be able audit costs, volumes and related information to certify them for the wider community. In the eventuality that no FYP Token owner requests to perform an audit, Flyp.me will use the services of an independent auditor yearly.
sr. member
Activity: 490
Merit: 250
How will we know the revenue share amount is trustable?
Pages:
Jump to: