aboutsummaryrefslogtreecommitdiff
path: root/src/external/stellar-freighter-api/@shared/api/external.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/external/stellar-freighter-api/@shared/api/external.d.ts')
-rw-r--r--src/external/stellar-freighter-api/@shared/api/external.d.ts73
1 files changed, 56 insertions, 17 deletions
diff --git a/src/external/stellar-freighter-api/@shared/api/external.d.ts b/src/external/stellar-freighter-api/@shared/api/external.d.ts
index 9755ca4..8505603 100644
--- a/src/external/stellar-freighter-api/@shared/api/external.d.ts
+++ b/src/external/stellar-freighter-api/@shared/api/external.d.ts
@@ -1,24 +1,63 @@
-import { UserInfo } from "./types";
-export declare const requestPublicKey: () => Promise<string>;
+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 | {
- network?: string | undefined;
- accountToSign?: string | undefined;
- networkPassphrase?: string | undefined;
-} | undefined, accountToSign?: string | undefined) => Promise<string>;
-export declare const submitBlob: (blob: string, opts?: {
- accountToSign?: string | undefined;
-} | undefined) => Promise<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?: {
- accountToSign?: string | undefined;
-} | undefined) => Promise<string>;
-export declare const requestNetwork: () => Promise<string>;
+ 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 | undefined;
+ 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;
}>;
-export declare const requestConnectionStatus: () => Promise<boolean>;
-export declare const requestAllowedStatus: () => Promise<boolean>;
-export declare const setAllowedStatus: () => Promise<boolean>;
-export declare const requestUserInfo: () => Promise<UserInfo>;