blob: 850560345c6fc1851e4fff195f9835097bc998ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
import { FreighterApiError } from "./types";
export declare const requestAccess: () => Promise<{
publicKey: string;
error?: FreighterApiError;
}>;
export declare const requestPublicKey: () => Promise<{
publicKey: string;
error?: FreighterApiError;
}>;
export declare const submitToken: (args: {
contractId: string;
networkPassphrase?: string;
}) => Promise<{
contractId?: string;
error?: FreighterApiError;
}>;
export declare const submitTransaction: (transactionXdr: string, opts?: string | {
accountToSign?: string;
networkPassphrase?: string;
}, accountToSign?: string) => Promise<{
signedTransaction: string;
signerAddress: string;
error?: FreighterApiError;
}>;
export declare const submitMessage: (blob: string, version: string, opts?: {
address?: string;
networkPassphrase?: string;
}) => Promise<{
signedMessage: Buffer | null;
signerAddress: string;
error?: FreighterApiError;
}>;
export declare const submitAuthEntry: (entryXdr: string, opts?: {
address?: string;
networkPassphrase?: string;
}) => Promise<{
signedAuthEntry: Buffer | null;
signerAddress: string;
error?: FreighterApiError;
}>;
export declare const requestNetwork: () => Promise<{
network: string;
networkPassphrase: string;
error?: FreighterApiError;
}>;
export declare const requestNetworkDetails: () => Promise<{
network: string;
networkUrl: string;
networkPassphrase: string;
sorobanRpcUrl?: string;
error?: FreighterApiError;
}>;
export declare const requestConnectionStatus: () => Promise<{
isConnected: boolean;
}>;
export declare const requestAllowedStatus: () => Promise<{
isAllowed: boolean;
error?: FreighterApiError;
}>;
export declare const setAllowedStatus: () => Promise<{
isAllowed: boolean;
error?: FreighterApiError;
}>;
|