For the first time my anger over crypto moves into genuine concern. Is an entire generation of young people experiencing a kind of "pokemonisation" of crypto well into early adulthood? In other words, is a generation of 20-somethings wasting the better part of that decade on this tech, in these scams? If so, this feels new (?). We're not talking about the chain-letter crazes of the 20s/30s, the housewife pyramid sche…
The overwhelming majority of dev in the space looks exactly like web2. You whip up an Express/Lambda/whatever API backend that (at it's most "blockchain") uses a library like web3.js to talk to a blockchain node from a commercial service provider via HTTP or websockets. More likely than that you go further up the stack and use a really easy to consume library[0] from your API provider and don't even really get exposed to the nitty-gritty blockchain methods exposed by a lower level library like web3.js. Literally import lib, provide your API key, and do things like:
const nftsForOwner = await alchemy.nft.getNftsForOwner("0xshah.eth");
I find it fascinating to meet devs in the space who say they're a "blockchain developer" and after a tiny amount of conversation you realize there's no difference whatsoever between what they're doing and wiring up a backend + frontend solution to something like Square (or whatever).So I agree with you completely - when these crypto companies or whatever start laying off left and right you can be certain the vast majority of the devs in the space can use what they've learned anywhere.
[0] - https://docs.alchemy.com/reference/nft-api-quickstart#alchem...