メインコンテンツまでスキップ

Property ActiveAccount

SSS オブジェクトにより提供される ActiveAccount に関するデータの情報を提供するプロパティ群

ActiveAddress

ActiveAccount に設定されているアカウントのアドレスを提供するプロパティ

型 : string

// window.SSS
const address = window.SSS.activeAddress;
// sss-module
import { getActiveAddress } from "sss-module";
const address = getActiveAddress();
Show ActiveAccount Address

ActivePublicKey

ActiveAccount に設定されているアカウントの公開鍵を提供するプロパティ

型 : string

// window.SSS
const pubkey = window.SSS.activePublicKey;
// sss-module
import { getActivePublicKey } from "sss-module";
const pubkey = getActivePublicKey();
Show ActiveAccount PublicKey

ActiveNetworkType

ActiveAccount に設定されているアカウントのネットワークを提供するプロパティ

型 : number

// window.SSS
const networkType = window.SSS.activeNetworkType;
// sss-module
import { getActiveNetworkType } from "sss-module";
const networkType = getActiveNetworkType();
Show ActiveAccount Network

ActiveName

ActiveAccount に設定されているアカウントの設定名を提供するプロパティ

型 : string

// window.SSS
const name = window.SSS.activeName;
// sss-module
import { getActiveName } from "sss-module";
const name = getActiveName();
Show ActiveAccount Name