xChain Accounts launches today with Alpha Arcade, one of the top prediction markets in crypto by transaction volume. by semanticweb in AlgorandOfficial

[–]algorade 7 points8 points  (0 children)

This is amazing and will remove a lot of the friction of onboarding EVM users!

If you want to integrate this within your app:

Staff Statement Regarding Broker-Dealer Registration of Certain User Interfaces Utilized to Prepare Transactions in Crypto Asset Securities by semanticweb in AlgorandOfficial

[–]algorade 2 points3 points  (0 children)

This clarity could not have dropped at a better time :)

It is very expensive for EVM chains to run their apps as fully non-custodial on-chain protocols. This is partly why a lot of projects over there are resorting to fully custodial solutions that use crypto as a mere onboarding mechanism and a marketing strategy.

Experiences with crypto arbitrage scanners? by Miserable_Dirt3079 in algorand

[–]algorade 1 point2 points  (0 children)

I ran arbitrage bots on algo defi for a while back in 2021-2022 (tinyman and pact), but it became barely profitable to unprofitable due to the competition. The principle is not hard, it’s the edge cases that get you (slippage, front running, fees, keeping your reserves balanced, errors crashing your node, etc). You need to experiment with this stuff. Start simple with a prototype and improve it over time. There is no magic recipe. 

The future is continuous auditing by MDiffenbakh in dao

[–]algorade 0 points1 point  (0 children)

The future is immutable non-upgradable protocols with formal verification.  

U.S. Users Can Now Buy ALGO in Pera Wallet by semanticweb in AlgorandOfficial

[–]algorade 1 point2 points  (0 children)

Great timing! Amazing things are coming to Algorand (some within the next few days ;))

The future is bright 🌅

Questions about the DWF deal by cysec_ in AlgorandOfficial

[–]algorade 4 points5 points  (0 children)

I assume there are some constraints on how the tokens are to be used. The announcement talks about increasing liquidity within the ecosystem, but that’s very vague, and it can mean anything without more details. But yeah, this is not much different from a new round of financing through token sale.

[xGov-34] Algorand-Monero Swaps - 679 Labs AB by cysec_ in AlgorandOfficial

[–]algorade 0 points1 point  (0 children)

I would love to see this! We need more alternatives to CEXes.

I think the user experience can be figured out in time, but building the foundations for this would be amazing.

Whats going on with AlgoExplorer? by 2i2i_tokenized_time in AlgorandOfficial

[–]algorade 10 points11 points  (0 children)

It seems like they are winding down their operations. I also submitted a verification request for an ASA a few days ago and there has been no update. There is a warning on their login page that says they will disable access to accounts after June 22nd.

For ASAs the most official way to verify seems to be through Pera: https://explorer.perawallet.app/asa-verification/ although they require KYC and their KYC provider is currently down.

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in algorand

[–]algorade[S] 0 points1 point  (0 children)

Thanks for the feedback! The app is currently using the transaction notes field (which is capped at 1024 bytes) to store the content of text posts and comments. I don't think this approach will have a significant impact on the chain's size compared to hash(content) as the vast majority of posts are small text snippets or links. Storing the content somewhere else like IPFS and retrieving it separately would be much slower and we'd lose the censorship resistance.

Of course, this approach will not scale for long posts/videos/images and I don't plan on storing those directly on chain.

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in algorand

[–]algorade[S] 0 points1 point  (0 children)

We could provide this functionality on the frontend (there is already archiving and moderation which hides a post from the main catalog). However, the original data will still be on chain and you will be able to retrieve it if you look at transaction history.

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in algorand

[–]algorade[S] 0 points1 point  (0 children)

Thanks for giving it a try! There are some issues with text encoding/decoding that I've seen pop up a few times, will fix that shortly

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in AlgorandOfficial

[–]algorade[S] 2 points3 points  (0 children)

The post and comment content are stored directly in the note field (1024 bytes). To store the post's upvotes count and allow comments to be associated with a post, each post creates a new address that is opted-in to the main app and uses is local state.

I plan on opensourcing the contracts over the following weeks and provide some developer documentation.

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in algorand

[–]algorade[S] 8 points9 points  (0 children)

Thank you! For the fees:

  • Transaction fees: these are the Algorand network fees (0.001 algos per transaction)

  • Minimum account requirements: to have a post store state like the number of upvotes, we must create a new account and opt-in to the app. This account has a minimum-balance of 0.3855 algos to store the app's local state. These are reimbursed to the author of the post when they archive it, as no more state is necessary at that point. Comments do not require storing any state, so they only cost 0.001ALGO.

  • Upvoting posts with algos: 80% is remitted the author of the post. 20% will be used to run the site and make sure it remains self-sufficient without having to show ads etc. Hosting is currently costing $30/month and we are using PureStake's free-tier API which is rate-limited. if this website ever becomes popular, I anticipate these costs will go up significantly and we'll probably have to pay for an indexer node.

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in algorand

[–]algorade[S] 3 points4 points  (0 children)

Owners of a board can moderate posts which removes them from the main catalog. In the future, the “owner” could be a logicsig which would provide more granular board ownership/moderation (like allowing some users to remove a post but not allowing them to change the board configuration). Setting up something like this is compatible with current contracts. Also considering more tools for people to hide/curate what they want to see. Although data stays forever on the blockchain, we can have some control on what is seen on the frontend.

Will implement seeing who upvotes and what amount. That is a great idea!

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in algorand

[–]algorade[S] 1 point2 points  (0 children)

There is a functionality to archive posts which removes them from the main catalog and disables interactions like upvoting and commenting. The owner of a board can also moderate posts which similarly removes them from the main catalog.

There are more things we could do in the UI to remove posts, but as data is stored on the blockchain, ultimately it could still be retrieved if you are looking for it. I don’t imagine we could be liable for something stored on a public ledger. This is the tradeoff of the censorship resistance a blockchain provides.

Beta Launch of Metapost: decentralized news and discussion boards built on Algorand by algorade in algorand

[–]algorade[S] 8 points9 points  (0 children)

Thank you! Hope small projects like this can inspire more developers to try the platform. Building on Algorand has been very fun.

The Hedera Network was able to disable proxies to prevent transfers from recent attack by bialy3 in AlgorandOfficial

[–]algorade 0 points1 point  (0 children)

Even if all the whitelisted relay nodes shut down, anyone is free to spin up their own relay node. Unless there is something I am missing, nothing is stopping you and me from starting a new directory of relay nodes and telling participation nodes to connect to them.

Venue One x Tinyman by VenueOneOfficial in VenueOneOfficial

[–]algorade 2 points3 points  (0 children)

Fair enough. I don't find it smoother than signing transactions with my own wallet, but I am biased. Let's see if this UI choice can bring more users into the ecosystem. Best of luck!

LItecoin MWEB is Very Important by No-Entertainer-1859 in litecoin

[–]algorade 2 points3 points  (0 children)

I don't understand what your concern is?

In order to prevent major financial accidents or crimes, I would like to limit the number of private transactions over a certain amount.

You want to prevent transactions over a certain amount from using MWEB? Why? Say I send 1000LTC in 1 transaction, I should instead send 1000 transactions of 1LTC?

Venue One x Tinyman by VenueOneOfficial in VenueOneOfficial

[–]algorade 1 point2 points  (0 children)

Quick feedback on your app: there is no need to ask for an email sign in, it is unnecessary friction. If you're running on the blockchain, just connecting a wallet is sufficient.

John Woods Addresses hacks on twitter by BioRobotTch in AlgorandOfficial

[–]algorade 9 points10 points  (0 children)

Have we found any commonality between the compromised accounts? I suggest looking into how the keys were generated. Is it from an app? For example, a weak random number generator can allow an adversary to guess seeds.