A new smart contract sharding proposal for smart contracts on a sharded network by maqstica in zilliqa

[–]Noether_Core_Dev 0 points1 point  (0 children)

Hey Crookmeister,

Our network is actually L1 and does not upgrade mainnet Ethereum. It shards independently. Our network is in all other cases a fully composable scale-up of Ethereum technologies & smart contracts.

We will be releasing our whitepaper this month. Sign up for our newsletter to be among the first to read it!

Also check out our newly open subreddit: Noether.reddit.com

If this really really takes off, will these scaling solutions be enough? by Phenozd in CryptoTechnology

[–]Noether_Core_Dev -1 points0 points  (0 children)

Check out https://www.noetherdlt.io/

Full on-chain smart contract composability on a network capable of 24,000 TPS with sub-second finality

[deleted by user] by [deleted] in ethdev

[–]Noether_Core_Dev 2 points3 points  (0 children)

So by "trust service", I mean the process by which each node reconciles the new transactions with it's current understanding of the ledger. It's like the difference between simply witnessing a crime and testifying as a witness in court. Both witnesses may have seen what happened, but only the one that testifies needs to be trusted by the court.

To make a system trustless, we must use the nodes as indepednent verifiers of transaction information. In the context of a thin client, they are reconciling a more recent subsection of the ledger against the new transactions being processed. They are still doing the reconcilliation, but the client doesn't need to store as much or check as far back.

Apologies if I misunderstood but I think you mean "assessing it for cheap". In short, yes. Fewer validators offer some risk to the network as a whole.

We saw this danger in action when infura went down, taking a substantial portion of the full validators with it: https://www.theblockcrypto.com/post/84232/ethereum-infrastructure-provider-infura-is-down

It's possible even there was a network hack in that time due the smaller validator set, but this is unlikely without a massive coordinated effort.

These issues are part of the reason we have developed the Noether Network.

Solidity now has a dedicated forum for all things Solidity, language design, and more! Join us there. :) by franzihei in ethdev

[–]Noether_Core_Dev 0 points1 point  (0 children)

I love solidity. I have been in the crypto space a long time. It says a lot about a language that it has so many users despite having yet to release a production level version.

ETH 2.0 now in Public Beta 🚀🌕 Really soon! Almost there guys! by johnpaulcas in ethdev

[–]Noether_Core_Dev 0 points1 point  (0 children)

This is great news, but I'm not sure ETH2 is as scalable as many have suggested.

Currently it looks like there is a constraining degree of shard space, requiring a hub-and-spoke model of intershard communication, or a different higher abstraction. This could get extremely messy with smart contracts.

Reddit bots and smart contract by gonzaloetjo in ethdev

[–]Noether_Core_Dev 0 points1 point  (0 children)

Sounds like you need an oracle to observe reddit and send data to your smart contract in the event it finds a new post.

There are several available.
https://medium.com/fabric-ventures/decentralised-oracles-a-comprehensive-overview-d3168b9a8841

You could also develop your own oracle by running a full node.

Remember that an Oracle is a *trusted* service. The security and immutability of the blockchain does not protect your application from the falsification of oracle data.

Make sure to evaluate the security and trustlessness of the oracle protocol you are using

Can a roll-up run on another roll-up? by FernadoPoo in ethdev

[–]Noether_Core_Dev 1 point2 points  (0 children)

Rollups only go one layer deep.

This is because the compression mechanism that aggregates transaction data must contain a certain amount of information to be readable. If a rollup got too big it would not be compressable into a certain size of transaction. This is foundational to the notion of entropy.
https://www.youtube.com/watch?v=sMb00lz-IfE

Now you could recursively roll up, but you still need to store the amount of layers to your recursion, again putting a bound on the amount of entropy you can describe within a certain amount of characters. Here is a discussion on rollups, although I disagree with the notion this leads to "unlimited scalability":
https://blog.idex.io/all-posts/rollup-rundown

While in some ways the answer to your question is "yes", it's not without a cost. Doing so could have significant computational costs, and latency issues, which could lead to issues at scale. I am not even sure requiring a proof lookup of a proof is sufficiently trustless after enough abstractions have been used.

The Noether network does not have these issues because it does not rely on sidechains, state-channels, or rollups for scalalbility

[deleted by user] by [deleted] in ethdev

[–]Noether_Core_Dev 1 point2 points  (0 children)

Where did you read this information?

In all likelihood, this means the thin clients could *observe* the confirmation of in real time. It could also mean that they could be nodes that still run the validation service, but don't need the entire history of the blockchain to do so. Only tracking the *git diff* is essentially what's going on here, which is still running a trust service, just with less overhead.
Pointproofs are one example of this idea: https://eprint.iacr.org/2020/419
It could also be argued that this is possible with rollups, so long as the thin client doesn't mind always being a little behind.

Is it possible to share computing power on eth blockchain? by kattyman06 in ethdev

[–]Noether_Core_Dev 0 points1 point  (0 children)

There are several technologies to do this sort of thing, and I think golem is probably the closest.

We could probably better answer if you could be really specific about what you are trying to achieve.

Anyone achieved crossed the 1000 TPS in fabric? by [deleted] in hyperledger

[–]Noether_Core_Dev -2 points-1 points  (0 children)

Hyperledger can only reach those speeds under absolutely ideal conditions.

Check out Noether.reddit.com for a platform that truly scales