Docs Category: Tutorial

Basic EthersJS

To Share and +4 nLEARNs Login with NEARHello EthersJS! This component is designed to display the account ID of the connected Ethereum wallet. In case the user is not signed in, the component will show a message instead. Source code const sender = Ethers.send(“eth_requestAccounts”, [])[0]; if (!sender) return “Please login first”; return <p>Account: {sender}</p>; Fork …

Basic EthersJS Read More »

Design Components

To Share and +4 nLEARNs Login with NEARDesign System Components When building components, the NEAR VM provides a complete set of Radix primitives to simplify UI development. Radix UI Using embedded Radix primitives on the NEAR VM is simple and straight-forward. You don’t need to import any files: return ( <Label.Root className=”LabelRoot”> Hello World! </Label.Root> …

Design Components Read More »

Scroll to Top