Comment on page
Telos EVM Quickstart
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 EVM Blockchain.

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.

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.

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:
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
In your terminal --> From the top directory of the sample app install the dependencies.
yarn install
Run the sample app.
yarn start
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 modified 3mo ago