Skip to content

Canister Environment

This guide explains how a JavaScript client application can load the configuration served by the asset canister using the @icp-sdk/core package.

Before looking at the usage, let’s understand what canister environment variables are and how they are used by the asset canister.

Since Proposal 138597 was accepted, the Internet Computer network allows developers to set the environment variables for their canisters. The main goal of this feature is to allow developers to configure their canisters at runtime, without having to rebuild and redeploy their canisters.

Since dfinity/sdk#4387, the asset canister is leveraging this feature to serve some environment variables to the frontend application it hosts. The goal is the same: allow the frontend application to be built once and deployed once, and then configured at runtime. This unlocks use cases such as:

  • Shipping your entire full-stack application as a single bundle and allowing anyone to install it on any subnet on the Internet Computer network
  • Configuring your frontend application with just one canister call that does not require re-deployments
  • Proposing frontends bundled within a single canister in a DAO framework

Here’s an overview of the environment variables flow

sequenceDiagram
  participant frontend as Browser (End User)
  participant developer as Developer
  participant asset_canister as Asset Canister
  participant backend_canister as Backend Canister

  Note over developer, asset_canister: Deployment of the asset canister
  developer->>asset_canister: Set the `PUBLIC_CANISTER_ID:backend` environment variable via management canister
  frontend->>asset_canister: Request HTML assets
  asset_canister->>frontend: Serve HTML assets with `ic_env` cookie (contains `ic_root_key` and `PUBLIC_CANISTER_ID:backend`)
  Note over frontend: Configure the actor with root key and PUBLIC_CANISTER_ID:backend variables
  frontend->>backend_canister: Call canister method

The flow is the following:

  1. The developer deploys the backend canister.
  2. The developer sets the PUBLIC_CANISTER_ID:backend environment variable and its value (the backend canister ID) in the asset canister using the management canister.
  3. The browser of the end user requests the HTML assets from the asset canister.
  4. The asset canister serves the HTML assets with the ic_env cookie. In this example, it serves the ic_root_key (by default, see below) and PUBLIC_CANISTER_ID:backend variables.
  5. The browser of the end user decodes the ic_env cookie and configures the actor with the root key and PUBLIC_CANISTER_ID:backend variables.
  6. The browser of the end user calls the canister method using the configured actor.

In order to serve the environment variables to the frontend application synchronously, the asset canister serves all the HTML assets with the ic_env cookie. The value of this cookie is an URI-encoded string of the environment variables. The value can be decoded using the decodeURIComponent function and mapped to a JavaScript object that can be used by the frontend application.

The ic_env cookie value contains the following properties:

  • ic_root_key: the root key of the Internet Computer network where the asset canister is deployed. It is always present in the cookie.
  • any canister environment variable prefixed with PUBLIC_. A common case for the asset canister is to serve the PUBLIC_CANISTER_ID:<canister-name> environment variable, which allows the frontend application to know the canister ID to instantiate the actor for.

In a frontend application, you can load the canister environment from the ic_env cookie using the @icp-sdk/core package. Specifically, you can use the getCanisterEnv function from the @icp-sdk/core/canister-env module to get the canister environment:

import { getCanisterEnv } from "@icp-sdk/core/agent/canister-env";
const canisterEnv = getCanisterEnv();
console.log(getCanisterEnv.IC_ROOT_KEY); // served by default by the asset canister

You can also use the safeGetCanisterEnv function to get the canister environment without throwing an error if the cookie is not present.

In order to preserve the type-safety at build time, you can pass a generic type parameter to the getCanisterEnv function to extend the CanisterEnv interface with your own environment variables:

type MyCanisterEnv = {
['PUBLIC_CANISTER_ID:backend']: string;
}
const canisterEnv = getCanisterEnv<MyCanisterEnv>();
console.log(canisterEnv.IC_ROOT_KEY); // served by default by the asset canister
console.log(canisterEnv['PUBLIC_CANISTER_ID:backend']); // type-safe access to the environment variable
console.log(canisterEnv['PUBLIC_MY_PROPERTY']); // will fail to compile

You must make sure that the property names that you specify in the generic type parameter are set as canister environment variables on the asset canister (which will make them available in the ic_env cookie).

For more options on how to type the canister environment, see the CanisterEnv interface documentation.

The canister environment is a convenient way to configure the actor for the backend canister.

Assuming you have configured the asset canister with the PUBLIC_CANISTER_ID:backend environment variable, you can instantiate the actor as follows:

import { getCanisterEnv } from "@icp-sdk/core/agent/canister-env";
import { createActor } from "./backend/api/hello_world"; // generated by the https://js.icp.build/bindgen tool
interface CanisterEnv {
readonly "PUBLIC_CANISTER_ID:backend": string;
}
const canisterEnv = getCanisterEnv<CanisterEnv>();
const canisterId = canisterEnv["PUBLIC_CANISTER_ID:backend"];
const helloWorldActor = createActor(canisterId, {
agentOptions: {
rootKey: !import.meta.env.DEV ? canisterEnv.IC_ROOT_KEY : undefined,
shouldFetchRootKey: import.meta.env.DEV,
},
});
// Now you can call the backend canister methods
console.log(helloWorldActor.greet("World"));

This avoids having to pass environment variables to the actor at build time or fetching them before instantiating it.