PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/@dfinity/agent/lib/cjs/agent
Просмотр файла: proxy.d.ts
import { JsonObject } from '@dfinity/candid';
import { Agent, ApiQueryResponse, CallOptions, QueryFields, QueryResponse, ReadStateOptions, ReadStateResponse, SubmitResponse } from './api';
import { Principal } from '@dfinity/principal';
export declare enum ProxyMessageKind {
Error = "err",
GetPrincipal = "gp",
GetPrincipalResponse = "gpr",
Query = "q",
QueryResponse = "qr",
Call = "c",
CallResponse = "cr",
ReadState = "rs",
ReadStateResponse = "rsr",
Status = "s",
StatusResponse = "sr"
}
export interface ProxyMessageBase {
id: number;
type: ProxyMessageKind;
}
export interface ProxyMessageError extends ProxyMessageBase {
type: ProxyMessageKind.Error;
error: any;
}
export interface ProxyMessageGetPrincipal extends ProxyMessageBase {
type: ProxyMessageKind.GetPrincipal;
}
export interface ProxyMessageGetPrincipalResponse extends ProxyMessageBase {
type: ProxyMessageKind.GetPrincipalResponse;
response: string;
}
export interface ProxyMessageQuery extends ProxyMessageBase {
type: ProxyMessageKind.Query;
args: [string, QueryFields];
}
export interface ProxyMessageQueryResponse extends ProxyMessageBase {
type: ProxyMessageKind.QueryResponse;
response: QueryResponse;
}
export interface ProxyMessageCall extends ProxyMessageBase {
type: ProxyMessageKind.Call;
args: [string, CallOptions];
}
export interface ProxyMessageCallResponse extends ProxyMessageBase {
type: ProxyMessageKind.CallResponse;
response: SubmitResponse;
}
export interface ProxyMessageReadState extends ProxyMessageBase {
type: ProxyMessageKind.ReadState;
args: [string, ReadStateOptions];
}
export interface ProxyMessageReadStateResponse extends ProxyMessageBase {
type: ProxyMessageKind.ReadStateResponse;
response: ReadStateResponse;
}
export interface ProxyMessageStatus extends ProxyMessageBase {
type: ProxyMessageKind.Status;
}
export interface ProxyMessageStatusResponse extends ProxyMessageBase {
type: ProxyMessageKind.StatusResponse;
response: JsonObject;
}
export declare type ProxyMessage = ProxyMessageError | ProxyMessageGetPrincipal | ProxyMessageGetPrincipalResponse | ProxyMessageQuery | ProxyMessageQueryResponse | ProxyMessageCall | ProxyMessageReadState | ProxyMessageReadStateResponse | ProxyMessageCallResponse | ProxyMessageStatus | ProxyMessageStatusResponse;
export declare class ProxyStubAgent {
private _frontend;
private _agent;
constructor(_frontend: (msg: ProxyMessage) => void, _agent: Agent);
onmessage(msg: ProxyMessage): void;
}
export declare class ProxyAgent implements Agent {
private _backend;
private _nextId;
private _pendingCalls;
rootKey: null;
constructor(_backend: (msg: ProxyMessage) => void);
onmessage(msg: ProxyMessage): void;
getPrincipal(): Promise<Principal>;
readState(canisterId: Principal | string, fields: ReadStateOptions): Promise<ReadStateResponse>;
call(canisterId: Principal | string, fields: CallOptions): Promise<SubmitResponse>;
status(): Promise<JsonObject>;
query(canisterId: Principal | string, fields: QueryFields): Promise<ApiQueryResponse>;
private _sendAndWait;
fetchRootKey(): Promise<ArrayBuffer>;
}
Выполнить команду
Для локальной разработки. Не используйте в интернете!