Skip to main content

Variable.AgentWalletStatus

const AgentWalletStatus: {
Active: "active";
Deploying: "deploying";
Failed: "failed";
};

Lifecycle status of an agent wallet.

  • deploying: The wallet is being provisioned on-chain (deployment job is in progress). The wallet address is not yet available.
  • active: The wallet has been successfully deployed and is ready to sign transactions.
  • failed: The deployment job encountered an unrecoverable error; the wallet cannot be used.

Type Declaration

Active

readonly Active: "active";

Deploying

readonly Deploying: "deploying";

Failed

readonly Failed: "failed";