@ref-finance/ref-sdk 1.4.6-beta.0-development → 1.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/near.d.ts CHANGED
@@ -1,16 +1,6 @@
1
- import { keyStores, InMemorySigner, providers, transactions as nearTransactions } from 'near-api-js';
2
- import { Transaction } from './types';
1
+ import { keyStores, providers, transactions as nearTransactions } from 'near-api-js';
3
2
  export declare const getKeyStore: () => keyStores.InMemoryKeyStore | keyStores.BrowserLocalStorageKeyStore;
4
3
  export declare const provider: providers.JsonRpcProvider;
5
- export declare const getMemorySigner: ({ AccountId, keyPath, }: {
6
- AccountId: string;
7
- keyPath: string;
8
- }) => Promise<InMemorySigner>;
9
- export declare const getSignedTransactionsByMemoryKey: ({ transactionsRef, AccountId, keyPath, }: {
10
- transactionsRef: Transaction[];
11
- AccountId: string;
12
- keyPath: string;
13
- }) => Promise<nearTransactions.SignedTransaction[]>;
14
4
  export declare const sendTransactionsByMemoryKey: ({ signedTransactions, }: {
15
5
  signedTransactions: nearTransactions.SignedTransaction[];
16
6
  }) => Promise<providers.FinalExecutionOutcome[]>;