- Dec 2021
-
ethereum.org ethereum.org
-
Complete data integrity – Data stored on the blockchain is immutable and indisputable, thanks to cryptographic primitives. Malicious actors cannot forge transactions or other data that has already been made public.
Immutable data
-
Resistance to censorship – No single entity on the network can block users from submitting transactions, deploying dapps, or reading data from the blockchain.
Once a smart contract has been deployed it stays there forever.
-
Privacy – You don’t need to provide real-world identity to deploy or interact with a dapp.
There are no names only hashes
-
Zero downtime – Once the smart contract is deployed and on the blockchain, the network as a whole will always be able to serve clients looking to interact with the contract. Malicious actors, therefore, cannot launch denial-of-service attacks targeted towards individual dapps.
Because the network is composed of nodes and not any centranlized server.
-
-
-
So the smaller the smart contract the better then.
-
So this must mean that solidity code is very lean. Importing packages takes up memory and since you're only borrowing from the miner this would be a bad idea.
Does this mean I'll have to recreate everything again or is it the wrong approach if you have to do so?
Tags
Annotators
URL
-
- Jul 2021
-
developers.google.com developers.google.com
-
Create an account or session
This is the process of using social login. Google/FB does the authentication part. Once the token has been confirmed, create a new access_token and refresh_token for the user like a normal user who logged in via email/password.
-
- Oct 2020
-
fastapi.tiangolo.com fastapi.tiangolo.com
-
OAuth2 was designed so that the backend or API could be independent of the server that authenticates the user.
There is a separation of concerns. Compartamentalized.
-
- Aug 2020
-
hackernoon.com hackernoon.com
-
This is Logout.
-
This is your Login right here. Instead of using "JWT" use "Bearer".
-
-
-
Instead of doing this, create a custom axios instance instead and set the baseUrs or something.
-
-
blog.fullstacktraining.com blog.fullstacktraining.com
-
What error code does this release? Is it 400 Bad Request?
-