CryptoLwei

234 posts

CryptoLwei banner
CryptoLwei

CryptoLwei

@CryptoLwei

Web3 builder. 🏗️ Building on @Solana + @Algorand — tokens, NFT infra & onchain products. Sharing insights, news & the build process.

Sweden Se unió Aralık 2024
20 Siguiendo21 Seguidores
CryptoLwei
CryptoLwei@CryptoLwei·
The full-stack multi-asset architecture is officially live. 🔨⛓️ Wrapped up the final layer of the CryptoLwei protocol sandbox, taking it from a raw backend terminal to a dynamic multi-token application ecosystem. What’s running now: • ASA-Style Token Provisioning: Minted $GLITCH with customized metadata extensions and total supply tracking. • Multi-Asset Ledger State: Upgraded the node balance sheet to store and track varying token balances simultaneously under one wallet address. • Gas Burning Mechanics: Successfully integrated programmatic protocol fee deductions ($LWEI) from the creator wallet on asset generation. • Full HUD Data Integration: Built a customized frontend terminal complete with automated address state binding and an integrated explorer lookup engine. Mints, transfers, state transitions, and gas burns are all verifying seamlessly across the immutable ledger. This marks the end of the sandbox phase. This entire proof of work is heading straight to GitHub next. Building the core infrastructure from scratch changes everything. 📦🚀 #BuildInPublic #CryptoLwei #Web3Infra #ReactJS #PythonDev #FullStackWeb3
CryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet media
English
1
0
0
32
CryptoLwei
CryptoLwei@CryptoLwei·
Decided to build a custom blockchain network protocol from scratch in Python to really master core Web3 infrastructure mechanics. Meet the CryptoLwei Protocol. 🛠️📦 What’s under the hood: • SHA-256 Chained Ledgers (Immutable state verification) • Proof-of-Work Mining Engine (CPU nonce puzzle solving) • Asymmetric Cryptography (RSA Key pair wallet generation) • Active Mempool with gas fee priority sorting • Live Node API Layer (Wrapped via Flask for RPC-style execution) Hooked up a second terminal client, broadcasted a transaction, watched the mempool prioritize the highest tip, and successfully mined Block 1 with a valid zero-prefix hash over a local network loop. Understanding the protocol layer completely changes how you look at the dApp layer. Next up: building out a local state machine to track wallet balances across blocks. Coding is cool, but understanding the foundational math is cooler. 🧠💻 #BuildInPublic #CryptoDevs #Web3Builders #AlgorandDev #SolanaDev #ProofOfWork #Mempool #NodeEngine #CryptoLwei
CryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet media
English
0
0
0
17
CryptoLwei
CryptoLwei@CryptoLwei·
Been building an ASA minting dApp on Algorand and testing both FTs and NFTs with ARC‑3 metadata + IPFS logos. Setup: •FTs: large total supply, decimals > 0, url → ARC‑3 JSON (name, unitName, decimals, description, image, image_mimetype).

 •NFTs: total = 1, decimals = 0, similar ARC‑3 JSON with image.
 Observed behavior across tools: •Lora + Pera Explorer: read ARC‑3 metadata, show logo + description, and correctly mark fungible vs non‑fungible from on‑chain params.

 •Pera Wallet: some fungible ARC‑3 assets with logos appear under the NFTs tab, even though they have 100M supply and 6 decimals.

 •Defly: assets sometimes show as ? / no name or logo depending on metadata URL format (ipfs://... vs https://gateway/...) and how the ARC‑3 URL is encoded.
 I’m trying to align tooling with wallet expectations for both FTs and NFTs, so creators get predictable results. @PeraAlgoWallet @deflyapp is there a recommended pattern (ARC‑3 vs ARC‑19, URL format, metadata_hash, etc.) to ensure: •FTs show as “tokens” and NFTs as “collectibles” in your UIs, and •logos / names resolve reliably across wallets? Not criticizing—just looking for guidance so dev tools can follow the same rules your apps are using. Any pointers or docs appreciated. 🙏 #Algorand #AlgorandDev #ASA #NFT
CryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet media
English
1
0
3
465
CryptoLwei
CryptoLwei@CryptoLwei·
Took ASA_TERMINAL on Algorand from v1.0 → v1.1.
Main goal: make FTs behave like FTs and NFTs behave like NFTs across wallets. In v1.0, giving everything rich metadata + logos meant some wallets started treating fungible tokens like NFTs. Wrong tabs, confusing UX. v1.1 (live on testnet) fixes that: •Dual mode: Fungible Token / NFT / Collectible •FT mode: minimal metadata, no on‑chain logo, no #arc3 → shows up correctly as a fungible asset •NFT mode: full ARC‑style metadata + logo upload, total = 1, decimals = 0, metadata_hash = sha512_256(url) → lands in the NFTs tab as it should •4‑step terminal pipeline: prepare metadata → createAsset() → user opt‑in → claim supply •Every mint sends an extra 0.3 ALGO to the contract account to keep it funded so it doesn’t silently run out of balance as usage grows •Sticky header, themed wallet modal with dynamic network info, and a soft reset that clears the form + logs but keeps the wallet + mode Honest trade‑off in v1.1: •NFTs get full logo + metadata at mint time. •FTs stay “clean” at mint time so wallets stop misclassifying them. Logos can be added later via other tooling. #Algorand #AlgorandDevs #AlgorandNFTs #ASA #DeFi #Web3Builders
CryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet mediaCryptoLwei tweet media
English
0
0
1
49
CryptoLwei
CryptoLwei@CryptoLwei·
🛠️ Web3 Build Log: Built a custom React frontend terminal and successfully wired it to my deployed Algorand smart contract factory. Ran the full integration loop on Testnet: automated the pipeline to mint the asset via the contract, execute the wallet opt-in, and securely claim the supply directly to Defly. Encountered some state param bugs on the asset identity mapping during the initial run, but the underlying orchestration pipeline is fully functional and live. Ready to patch the form bindings next. #Algorand #Web3 #BuildInPublic #BlockchainDev #AlgoDev
CryptoLwei tweet mediaCryptoLwei tweet media
English
1
0
2
83
CryptoLwei
CryptoLwei@CryptoLwei·
🛠 The "Building in Public" Report: Environmental Cleanup The Problem: I had AlgoKit installed through two different managers (Homebrew Cask and Pipx). This caused a path conflict where my terminal was trying to run the CLI using an old Python environment inside Anaconda. • The Symptom: Unhandled ImportError: cannot import name 'AlgorandClient' from 'algokit-utils'. • The Reason: Anaconda was "hijacking" my Python path, forcing AlgoKit to look at outdated libraries instead of the fresh ones. The Solution (The "Scorched Earth" Method): 1.Uninstall everything: brew uninstall algokit and pipx uninstall algokit. 2.Deactivate the "Base" environment: conda deactivate to stop Anaconda from interfering. 3.Clean Reinstall: Used Homebrew for a fresh, isolated install. 4.Align Python: Used pyenv to set a global version (3.13.5) so the terminal isn't guessing which Python to use. The Result: algokit doctor is 100% green. LocalNet is live. Ready to build. #Algorand #AlgoKit #Web3Dev #BuildInPublic #Python #CodingStruggle #BlockchainDeveloper
English
2
0
3
58
CryptoLwei
CryptoLwei@CryptoLwei·
@briskcrypt01 It was supposed to work fine. We test it in different browsers both desktop and mobile. What browser you using? In app browser on x does not work fine in old mobile.
English
1
0
1
18
CryptoLwei
CryptoLwei@CryptoLwei·
We building different NFTs infrastructure on algorand on cryptolwei.com you’ll find the POC of LearnDefi in video how it works as others still a big surprise to safeguard the projects before it launches but we will have them on GitHub as well. We just made a big upgrade of site which will launch in the next 24 to 48 hours as well. As we experiment the memecoin world on Solana, stress testing liquidity and bounding. So stay tune a lot will be happening in the next 3 weeks with lots of goodies 😜
English
1
0
1
72
JOHNEY
JOHNEY@john_j279·
@CryptoLwei What are you building on Algorand ?
English
1
0
0
40
CryptoLwei
CryptoLwei@CryptoLwei·
Algo fam, huge upgrade for builders 💚 The AlgoKit Utils beta is live with: •One unified AlgorandClient for TS + Python •Signer-based accounts (no raw private keys) •Built-in HD wallets (BIP-44, ARC-52) •ARC-56 app specs by default This is a big step toward AlgoKit 4.0 and a smoother prototype → production path. #Algorand #AlgoKit #AlgoKitUtils #Python #TypeScript #Web3 #DevTools #AlgorandDevelopers
English
2
0
5
252
CryptoLwei
CryptoLwei@CryptoLwei·
We building different NFTs infrastructure on algorand on cryptolwei.com you’ll find the POC of LearnDefi in video how it works as others still a big surprise to safeguard the projects before it launches but we will have them on GitHub as well. We just made a big upgrade of site which will launch in the next 24 to 48 hours as well. As we experiment the memecoin world on Solana, stress testing liquidity and bounding. So stay tune a lot will be happening in the next 3 weeks with lots of goodies 😜
English
1
0
1
84
CryptoLwei
CryptoLwei@CryptoLwei·
$LWEI Update — for those watching 👁 Yes, Jupiter is showing 4 warnings. Here's what they actually mean: ⚠️ High Price Impact → No trades yet. Bonding curve hasn't started. That's intentional. ⚠️ Not Verified → In the manual verification queue. Verification is a core goal — it will be done right. ⚠️ Low Liquidity → Pool fills as the bonding curve grows. We're at the start. ⚠️ Low Organic Activity → No trades, no activity yet. Simple. Here's how $LWEI is designed to grow: 1️⃣ Bonding curve phase — price discovery on Jupiter Studio 2️⃣ Graduation to Meteora — automatic when threshold is hit 3️⃣ Liquidity permanently locked — no rug possible 4️⃣ Full Solana ecosystem access — Jupiter, Raydium and beyond We're not pumping it. We're building it. $LWEI is us. We are $LWEI. 🧱 CA: 7M9zHgCGZhZtoSUREAjgYMaioBBsfGPDvUP4F9Stjupx #LWEI #Solana #BuildInPublic #Web3 #CryptoLwei #JupiterDEX
English
0
0
3
49
CryptoLwei
CryptoLwei@CryptoLwei·
cryptolwei.com runs on: — 1 HTML file
— 1 CSS file
— 1 JS file
— 1 font import That's it. No frameworks. No npm. No build tools. Just clean fundamentals, written code. 🧱 As we grow and ship real dApps — the stack evolves.
But this is where every serious builder starts. #BuildInPublic #Web3 #Algorand #Solana #WebDev #CryptoLwei 🔥
CryptoLwei tweet media
English
0
0
2
39
CryptoLwei
CryptoLwei@CryptoLwei·
Just updated cryptolwei.com 🔧 — $LWEI live with CA + Jupiter trade button
— Dual-chain strategy: Solana for liquidity, Algorand for utility
— The Lab is open 👀 Something is cooking. Not ready yet. cryptolwei.com
English
0
0
2
46