Simple alternative to the dapp-core with React.
The Dapp is built using Nextjs and a couple of helpful tools. More docs soon! It has straightforward and complete functionality.
- it works on Nextjs
- it uses erdjs 10.* without the dapp-core library.
- it uses backed side redirections to hide the API endpoint. The only exposed one is
/api
- it uses the .env file - there is an example in the repo
- it uses a couple of config files in the 'config' directory (it will be simplified in the future)
- it uses chakra-ui
- clone or download the repo
cd nextjs-dapp-template
npm install
- configure .env.local (you can copy the contents of the .env.example)
npm run dev
-> for developmentnpm run build
->npm start
for production
For simplicity, the template uses the main index page with demo components built using the core building blocks. Below you will find the list of most essential utilities, hooks, and components with examples that are actual code from the template. You can search them in the code to better understand how they work.
There are much more hooks and tools, but most of them are already used in the ones listed below.
The code samples are not ready to copy and paste. Please search them in the code.
The hook is responsible for synchronizing the network on each refresh. It should be used in the root component. Here is the _app.tsx
.
Why not the context wrapper? Because context wrappers with auth state data checks will break Next ASO.
This way, you can check the auth state in chosen places. You are not forced to do this constantly for the whole document tree.
import { useElrondNetworkSync } from '../hooks/auth/useElrondNetworkSync';
const NextJSDappTemplate = ({ Component, pageProps }: AppProps) => {
useElrondNetworkSync();
return (
<ChakraProvider theme={theme}>
<Component {...pageProps} />
</ChakraProvider>
);
};
The component provides the Connect
button with the modal, which will contain another three buttons for three different authentication possibilities (Maiar Mobile App, Maiar Defi Wallet - browser extension, Elrond Web Wallet). You should be able to use it in any place on the website.
import { LoginModalButton } from '../tools/LoginModalButton';
<LoginModalButton />
The component is used as a small wrapper where we need to be in the authenticated context, for example, for all transactions.
It can display the spinner and also the fallback React element.
Important Do not wrap it in big sections of the code. Its purpose is to be used multiple times on as small blocks as possible.
<Authenticated
spinnerCentered
fallback={
<>
<Text fontWeight="bold" fontSize="2xl" textAlign="center" mt={8}>
Connect your wallet!
</Text>
<Flex mt={4} justifyContent="center">
<LoginModalButton />
</Flex>
</>
}
>
<Box>Do something here in the auth context...</Box>
</Authenticated>
The hook provides all that is required for triggering transactions. useTransaction can also take a callback function as an argument.
const { pending, triggerTx, transaction, error } = useTransaction({ cb });
const handleSendTx = useCallback(() => {
const demoMessage = 'Transaction demo!';
triggerTx({
address: egldTransferAddress,
gasLimit: 50000 + 1500 * demoMessage.length,
data: new TransactionPayload(demoMessage),
value: 0.001,
});
}, [triggerTx]);
The hook provides all that is required for triggering smart contract transactions. useScTransaction can also take a callback function as an argument.
const { pending, triggerTx, transaction, error } = useScTransaction({ cb });
const handleSendTx = useCallback(() => {
triggerTx({
smartContractAddress: mintSmartContractAddress,
func: mintFunctionName,
gasLimit: 14000000,
args: [new U32Value(1)],
value: 0.001,
});
}, [triggerTx]);
The hook uses useSWR under the hood and can be triggered on a component mount or remotely on some action. It has two different states for the pending action. For initial load and on revalidate. It also takes one of two return data types: 'int' and 'string'. You can still use the string type for boolean and check if you will get 01
, which is true
. For now, it assumes that you know what data type will be returned by a smart contract.
const {
data: queryResult,
fetch, // you can always trigger the query manually if 'autoInit' is set to false
isLoading, // pending state for initial load
isValidating, // pending state for each revalidation of the data, for example using the mutate
error,
} = useScQuery({
type: SCQueryType.INT, // can be int or string
payload: {
scAddress: mintSmartContractAddress,
funcName: queryFunctionName,
args: [],
},
autoInit: false, // you can enable or disable the trigger of the query on the component mount
});
The hook will provide information about the authentication flow state. It will tell if the user is already logged in or is logging in.
const { isLoggingIn, error, isLoggedIn } = useLoggingIn();
The hook will provide information about the user's account data state. The data: address, nonce, balance.
const { address, nonce, balance } = useAccount();
The hook will provide the information about the user's auth data state. The data: loginMethod, expires, loginToken, signature. Login token and signature won't always be there. It depends if you'll use the token. Check Elven Tools Dapp backend integration article for more info.
const { loginMethod, expires, loginToken, signature } = useLoginInfo();
The API endpoint is proxied on the backend side. The only public API endpoint is /api
. This is useful when you don't want to show the API endpoint because, for example, you use the paid ones. Also, there is an option to block the /api
endpoint to be used only within the Dapp, even previewing it in the browser won't be possible.
You can use API_ALLOWED_DAPP_HOST
in the .env file to enable /api
restrictions. If you don't want to restrict it, you can remove that variable.
In the pages/api/_middleware.ts
, you'll find the logic for the API restrictions. And in the next.config.js
, you'll find the configuration for rewrites of the API.
In this demo, the Dapp uses a public API endpoint, so it isn't essential, but it is beneficial when you need to use paid 3rd party service.
There is an env.example
file that you can copy and rename into .env.local
to run the app locally. You would need to configure these variables for your production-ready dapp.
Here are all variables:
# =============================================
# Public variables (exposed on the frontend)
# =============================================
# Elrond chain (can be devnet, testnet, mainnet)
NEXT_PUBLIC_ELROND_CHAIN = devnet
# This is the masked/proxied public API endpoint
# only the current instance of the Dapp can use it if only API_ALLOWED_DAPP_HOST is set
NEXT_PUBLIC_ELROND_API = /api
# This is the main domain of your dapp
NEXT_PUBLIC_DAPP_HOST = http://localhost:3000
# =============================================
# Private variables (used on the backend)
# =============================================
# Your main Elrond API can be a custom one. There won't be a possibility
# to reveal this endpoint. NEXT_PUBLIC_ELROND_API will mask it
ELROND_CUSTOM_API = https://devnet-api.elrond.com
# Only this host will be allowed to consume the API (optional)
API_ALLOWED_DAPP_HOST = http://localhost:3000
All variables which start with NEXT_PUBLIC_
will be readable on the frontend side of the dapp. So please don't use them for any secret keys and data. If you need something to be available only on the backend side, don't use the NEXT_PUBLIC_
prefix.
You can set up the chain type here. Use NEXT_PUBLIC_ELROND_CHAIN
to set devnet, testnet or mainnet.
Each hosting provider will have a different way of doing that. We will take a look at how Netlify is doing that below.
For deployment, we recommend the Netlify. Why Netlify? Because it is the simplest way to deploy the Nextjs app for free. Of course, the most recommended is the Vercel which you could also try.
As for Netlify, the only what you need to do there is to go to the settings and configure from which repository the app should be deployed. Check out how: Netlify getting started.
Then fill up the env variables. See how here: Netlify env vars setup.
On each repository code push, the Netlify services will redeploy the app.
Here are other deployment solutions: NextJS Deployment.
- Ledger auth
- More docs and examples
- More tooling and components
- tests
If you would like to test other templates:
Also, check the implementation of the NFT Minter Dapp based on almost the same codebase: