- Create and fund a wallet
- Establish a trustline with the USDC issuer
- Prepare the wallet to receive USDC
Prerequisites
Before you begin, ensure you have the following:- Node.js 16 or later
- A terminal or code editor
Part 1: Set up your project
Perform the following steps to set up your project.1.1. Create a project directory
Run the following commands to create and initialize your project:Shell
1.2. Install dependencies
Run the following command to install the required libraries:Shell
Part 2: Configure your project
Perform the following steps to configure your project.2.1. Update the package.json file
Open your package.json file and make the following updates:
- Remove the
"type": "commonjs"line if it was automatically added. - Add or update the
startscript to usets-nodeto run yourmain.tsfile.
package.json should look similar to the following:
package.json
2.2. Add a tsconfig.json file
Create a tsconfig.json file with the following configuration:
tsconfig.json
Part 3: Write your app code
Create amain.ts file and paste the following code:
Typescript
Part 4: Run your application
Run the following from your project folder:Shell