Skip to content

dapplets/dapplet-template

Repository files navigation

dapplet-template dapplet-template

Run Your Dapplet

To run a basic dapplet, follow these steps.

1. Choose the environment to start the project. There are three ways:

  1. Run the dapplet using Gitpod. It is the easiest way to launch the remotely located dapplet into the web-browser and try to work with it:

Open in Gitpod!

Gitpod can provide fully initialized, perfectly set-up developer environments for any kind of software project. More about Gitpod you can find on its official website.

  1. Create Dapplet App is the best way to start building your own dapplet. To create a local project, run:
npx create-dapplet-app

This method is currently the most advanced and allows you to flexibly configure your project. You can immediately select the type of project, add an adapter, overlay or server to the dapplet.

  1. You can use this repo as a template for your GitHub repository. Use the button on the project page:

Use Template button

2. Change the module name from "dapplet-template.dapplet-base.eth" to your own one in the package.json file.

3. Fill in the fields in the following manifests: package.json and dapplet.json.

In package.json set the name, version, description, author and license for your dapp. The name is the ID of your dapplet so it must be unique. In dapplet.json set the title. This second manifest is required to deploy the dapplet and add it to the dapplet registry. You can find more information about the dapplet manifest here.

4. Change the icons to your own ones in the src/icons folder.

The icon src/dapplet-icon.png is used for the injected button in source code src/index.ts and for display in the Dapplets store. The link to this icon is defined in the dapplet.json manifest.

5. Edit the necessary Dapplet settings in the config/schema.json file.

The default setting values are defined in the config/default.json file. The schema follows the rules defined in http://json-schema.org/. The Dapplet settings UI is generated by react-jsonschema-form.

There are three environments:

  • dev - used when a module is loaded from the development server;
  • test - used when a module is loaded from the Test Dapplet Registry;
  • prod - used when a module is loaded from the Production Dapplet Registry;

More about Dapplet Config.

6. You can use another Adapter in your Dapplet.

Dependencies are defined in the dependencies section of the dapplet.json file and are injected in the dapplet's index.ts file.

The Twitter adapter is used by default.

Here is our list of adapters available at the moment:

More about Twitter Adapter you can find here.

7. Fill in the contextIds section of the dapplet.json file.

ContextId is an identifier of a context to which your module is bound. This is usually the same as the name of an adapter you are using. It may be:

  • the name of an adapter you depend on (e.g. twitter-config.dapplet-base.eth);
  • the domain name of a website that your dapplet will run on (e.g. twitter.com);
  • the identifier of a dynamic context (e.g. twitter.com/1346093004537425927).

8. Specify the argument of @Inject decorator with the chosen adapter in the /src/index.ts module and add the activate() method with a simple dapplet code.

import {} from '@dapplets/dapplet-extension'
import EXAMPLE_IMG from './icons/dapplet-icon.png'

@Injectable
export default class TwitterFeature {
  @Inject('twitter-config.dapplet-base.eth')
  public adapter

  activate() {
    const { button } = this.adapter.exports
    this.adapter.attachConfig({
      POST: () =>
        button({
          DEFAULT: {
            label: 'Injected Button',
            img: EXAMPLE_IMG,
            exec: () => Core.alert('Hello, World!')
          }
        })
    })
  }
}

9. Install dependencies and run the code:

npm i
npm start

You will see a message like this:

rollup v2.38.3
bundles src/index.ts → lib\index.js...
Current registry address: http://localhost:3001/dapplet.json
created lib\index.js in 783ms
[2021-02-01 13:58:36] waiting for changes...

In this example we use a Rollup bundler to compile modules but you can use whatever you want. Webpack for example.

The address http://localhost:3001/dapplet.json is a link to your dapplet manifest file. Copy it to a clipboard.

10. Connect the development server to the Dapplets Extension.

Paste the URL to the Developer tab of the Dapplet Extension's popup and click Add.

Developer tab of Extension

If an error occurs, look here.

You will see your module in the list of development modules. Here you can start the deployment process.

Developer tab of Extension

11. Run your dapplet on the website.

Developer tab of Extension

This article is in the documentation

video