Specific concerns with Algorand

Hi all, new to Algorand and had spent time in Ethereum and Cardano. Have a couple concerns below that I need help with.

  1. Is Algorand considered deterministic? If it is, how does it deal with time? Cardano is finding this is problematic to their vision of a purely deterministic Blockchain. See this thread:
    https://twitter.com/ravanave/status/1589241299667800065?t=gYrgVl_MeWS1Q78Jg9GnPA&s=19

  2. What is the deal with fractionalizable NFTs by design?

  3. Where can you go to mint a token or NFT collection?

  4. Ethereum is a account-based and Cardano is eutxo, and Ethereum keeps the smart contracts on-chain and Cardano keeps theirs off-chain (in concept). How does Algorand fit into this?

Economic finality with algorand is one block.

I dont know much about how precise timestamps are on blockchain/s, but the deterministic is always the block number. There is opcall to calculate with the current time as well, so i believe it might be calculated correctly. I think there is committee of 1000 servers who vote for block, so it is quite unprobable that half of them will have their time unsynced…

NFTs represent unit of something… Eg one appartment is one unit. If we make it tradable on 1000000 parts than it is fractional nft. There is ARC-0003 covering this, possibly some others algorand standards.

According to the standard you deploy json spec to the ipfs or web and hash of this document with api call to the blockchain… To create ASA it is matter of one form to be filled in, you do not need even programming skills.

Check these currently 63 projects which can help you minting NFTs and sell them… Ecosystem | Algorand Foundation

Smart contracts as well as logic sigs are public… You can see them in public explorer in decompiled way.

To complement @scholtz 's response

Algorand is completely deterministic regarding transaction and smart contract execution.
Smart contracts can only access the timestamp of previous blocks not of the current block (nor the time of the machine executing the smart contract).
The timestamps of blocks are chosen by the block proposer (within some limits to prevent abuse). As such they are not a perfect representation of time: malicious block proposer can fast forward or slow down a little bit time, and good proposers can then fix it in future timestamps. Timestamps are ensure to be increasing (time does not go backward).

Algorand is account-based and keep all smart contracts on-chain.

1 Like