Telos Native Quickstart

QuickStart

Step 1

Go through the simple developer sign-up portal to get your App ID and API Key. You can apply the Telos Template to your app at the same time by following the link below. This link will enable users of the resulting app to create wallets for the Telos Native Blockchain.

Apply Telos Template

Step 2

Once you log in or create your account, you will be asked to enter your app details. Don't worry, you can change these later.

Step 3

Once this is done, you'll be taken to the ORE ID Dashboard. Here you can see your App Id and API Key. You can also change your app details and add, eventually, manage the users of your app.

You should also add your domain addresses to the allowed domain list for you application.

Step 4

Download a sample app from our examples repo. You can select the app that matches your preferred framework. For this example we will use the React sample app. Each sample app has a README.md file with instructions on how to run the app.

Sample Application Options:

Step 5

Add your appId from step 1 to the ./src/App.tsx file. Near the top of the script edit, put your AppId in the REACT_APP_OREID_APP_ID

Step 6

In your terminal --> From the top directory of the sample app install the dependencies.

yarn install

Run the sample app.

yarn start

Open https://localhost:3000 to view the sample app in your browser.

Due to a bug in Create React App 5 - You may need to use 'GENERATE_SOURCEMAP=false react-scripts start' to start the app. Be aware of this if you see errors such as 'Failed to parse source map...'.

Last updated