Query Ethereum balance callable function example
The following is a walkthrough of querying the Ethereum blockchain for an address' Ethereum balance example.
Last updated
The following is a walkthrough of querying the Ethereum blockchain for an address' Ethereum balance example.
Last updated
As a user, I'd like to query the Ethereum blockchain for the given address' Ethereum balance.
Login
as any user
Navigate
to the user web3 view
/web3
Observe
view includes the following:
Input
to query a given Ehtereum address
Button to query the given address
web3
template updates to include new design
MoralsService
to interact with the onGetBalance
callable function
onGetBalance
HTTPS callable function to update the view with the Ethereum balance
Run the following to install dependencies:
npm i moralis
npm i @moralisweb3/common-evm-utils
Update function package.json
to include dependencies:
file: apps\full-stack-typescript-api\src\package.json
In the apps\full-stack-typescript-api\src\functions
folder, create the following:
Update
apps\full-stack-typescript-api\src\functions\
moralis\index.ts
to be:
The new function receives a data
payload of type address
and queries the Etheruem blockchain for the address' Ethereum balance.
Update
apps\full-stack-typescript-api\src\main.ts
to include the new function.
The main.ts
file is our primary entry point for our functions and needs to be updated so that our new function is included when the project is built.
Run the following command to build the functions application:
nx build full-stack-typescript-api
Run the following command to deploy new and updated functions:
firebase deploy --only functions
Now that we've created a cloud function for interacting with the Ethereum blockchain, we need to update the frontend application to integrate with the new function.
Run the following command to generate a new Moralis service libary:
nx g lib --name=moralis --directory=services
Run the below command to create the Moralis service:
The following files will be generated:
Delete
the services-moralis.module.ts
file.
Update
the index.ts
file to remove the module export.
Run the below command to create the Account Service
Update
the index.ts
file to export the account service file.
Update
libs\services\moralis\src\lib\moralis.service.ts
to include:
Feature workflow should be followed as described here:
The onGetBalance
function currently exposes the Moralis API key and should not be deployed to production environments. To secure this function and keep secrets, secret, the should be followed to improve and secure the function from abuse.