@roochnetwork/rooch-sdk
Version:
14 lines (13 loc) • 317 B
TypeScript
import { Ed25519Keypair } from '../keypairs/index.js';
export type CreateSessionArgs = {
appName: string;
appUrl: string;
scopes: string[] | Scope[];
keypair?: Ed25519Keypair;
maxInactiveInterval?: number;
};
export type Scope = {
address: string;
module: string;
function: string;
};