Today I've learnt more about the value proposition of Cryptoflix. The things I learnt was that iTunes/Netflix can take a long time to pay content creators (and Cryptoflix will be able to pay instantly), and also that there will be a lower minimum quality of movies/video on the platform
Cryptoflix will need to feature as many improvements as possible in order to compete with the establishment. My favorite is the payments for investments.
the road is still long and difficult, there are going to be a lot of legal stuff involved in doing something like that, however is something new and interesting if they manage to do it
what is soft cap requirement for this project? All those partnerships should be consider in softcap.
The caps are minimum 3k ETH and maximum 25k ETH. The tokens will be compliant to the latest ERC223 standard, so it will be smart contract-based. The token sale date is provisionally April 15th.
What is this ERC-223 standard? I heard only about the standard of erc-20 (eth)
ERC-223 has some critical issues, it's no longer used imo.
The main and the most important is lack of event handling mechanism of ERC20 standard.
Lol I don't know where you get you informations but it's the other way around, it's well exapalined on github
https://github.com/ethereum/EIPs/issues/223 This paragraph:
Another disadvantages of ERC20 that ERC223 will solve:
Lack of transfer handling possibility.
Loss of tokens.
Token-transactions should match Ethereum ideology of uniformity. When a user wants to transfer tokens, he should always call transfer. It doesn't matter if the user is depositing to a contract or sending to an externally owned account.
Seems you are correct:
3 Primary improvements with ERC223:
(1) Eliminates the problem of lost tokens which happens during the transfer of ERC20 tokens to a contract (when people mistakenly use the instructions for sending tokens to a wallet). ERC223 allows users to send their tokens to either wallet or contract with the same function transfer, thereby eliminating the potential for confusion and lost tokens.
(2) Allows developers to handle incoming token transactions, and reject non-supported tokens (not possible with ERC20)
(3) Energy savings. The transfer of ERC223 tokens to a contract is a one step process rather than 2 step process (for ERC20), and this means 2 times less gas and no extra blockchain bloating.
Switching from ERC20 to ERC223
"ERC23 tokens are backwards compatible with ERC20 tokens. It means that ERC23 supports every ERC20 functions and contracts or services working with ERC20 tokens will work with ERC23 tokens correctly."
Sources:
https://github.com/Dexaran/ERC23-tokens/tree/Recommended#erc23-token-standard (ERC23 and 223 are the same thing). To read the full discussion about ERC20 and ERC223, follow this link:
https://github.com/ethereum/EIPs/issues/223