mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
682 lines
22 KiB
JavaScript
682 lines
22 KiB
JavaScript
/* global alert */
|
|
import AsyncStorage from '@react-native-community/async-storage';
|
|
import RNSecureKeyStore, { ACCESSIBLE } from 'react-native-secure-key-store';
|
|
import {
|
|
HDLegacyBreadwalletWallet,
|
|
HDSegwitP2SHWallet,
|
|
HDLegacyP2PKHWallet,
|
|
WatchOnlyWallet,
|
|
LegacyWallet,
|
|
SegwitP2SHWallet,
|
|
SegwitBech32Wallet,
|
|
HDSegwitBech32Wallet,
|
|
PlaceholderWallet,
|
|
LightningCustodianWallet,
|
|
HDLegacyElectrumSeedP2PKHWallet,
|
|
HDSegwitElectrumSeedP2WPKHWallet,
|
|
MultisigHDWallet,
|
|
} from './';
|
|
import { AbstractHDElectrumWallet } from './wallets/abstract-hd-electrum-wallet';
|
|
import { Platform } from 'react-native';
|
|
const encryption = require('../blue_modules/encryption');
|
|
const Realm = require('realm');
|
|
const createHash = require('create-hash');
|
|
let usedBucketNum = false;
|
|
|
|
export class AppStorage {
|
|
static FLAG_ENCRYPTED = 'data_encrypted';
|
|
static LANG = 'lang';
|
|
static EXCHANGE_RATES = 'currency';
|
|
static LNDHUB = 'lndhub';
|
|
static ELECTRUM_HOST = 'electrum_host';
|
|
static ELECTRUM_TCP_PORT = 'electrum_tcp_port';
|
|
static ELECTRUM_SSL_PORT = 'electrum_ssl_port';
|
|
static PREFERRED_CURRENCY = 'preferredCurrency';
|
|
static ADVANCED_MODE_ENABLED = 'advancedmodeenabled';
|
|
static DELETE_WALLET_AFTER_UNINSTALL = 'deleteWalletAfterUninstall';
|
|
static HODL_HODL_API_KEY = 'HODL_HODL_API_KEY';
|
|
static HODL_HODL_SIGNATURE_KEY = 'HODL_HODL_SIGNATURE_KEY';
|
|
static HODL_HODL_CONTRACTS = 'HODL_HODL_CONTRACTS';
|
|
|
|
constructor() {
|
|
/** {Array.<AbstractWallet>} */
|
|
this.wallets = [];
|
|
this.tx_metadata = {};
|
|
this.cachedPassword = false;
|
|
}
|
|
|
|
/**
|
|
* Wrapper for storage call. Secure store works only in RN environment. AsyncStorage is
|
|
* used for cli/tests
|
|
*
|
|
* @param key
|
|
* @param value
|
|
* @returns {Promise<any>|Promise<any> | Promise<void> | * | Promise | void}
|
|
*/
|
|
setItem = (key, value) => {
|
|
if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative') {
|
|
return RNSecureKeyStore.set(key, value, { accessible: ACCESSIBLE.WHEN_UNLOCKED });
|
|
} else {
|
|
return AsyncStorage.setItem(key, value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Wrapper for storage call. Secure store works only in RN environment. AsyncStorage is
|
|
* used for cli/tests
|
|
*
|
|
* @param key
|
|
* @returns {Promise<any>|*}
|
|
*/
|
|
getItem = (key) => {
|
|
if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative') {
|
|
return RNSecureKeyStore.get(key);
|
|
} else {
|
|
return AsyncStorage.getItem(key);
|
|
}
|
|
}
|
|
|
|
setResetOnAppUninstallTo = async value => {
|
|
if (Platform.OS === 'ios') {
|
|
await this.setItem(AppStorage.DELETE_WALLET_AFTER_UNINSTALL, value ? '1' : '');
|
|
try {
|
|
RNSecureKeyStore.setResetOnAppUninstallTo(value);
|
|
} catch (Error) {
|
|
console.warn(Error);
|
|
}
|
|
}
|
|
};
|
|
|
|
storageIsEncrypted = async () => {
|
|
let data;
|
|
try {
|
|
data = await this.getItem(AppStorage.FLAG_ENCRYPTED);
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
|
|
return !!data;
|
|
};
|
|
|
|
isPasswordInUse = async password => {
|
|
try {
|
|
let data = await this.getItem('data');
|
|
data = this.decryptData(data, password);
|
|
return !!data;
|
|
} catch (_e) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Iterates through all values of `data` trying to
|
|
* decrypt each one, and returns first one successfully decrypted
|
|
*
|
|
* @param data {string} Serialized array
|
|
* @param password
|
|
* @returns {boolean|string} Either STRING of storage data (which is stringified JSON) or FALSE, which means failure
|
|
*/
|
|
decryptData(data, password) {
|
|
data = JSON.parse(data);
|
|
let decrypted;
|
|
let num = 0;
|
|
for (const value of data) {
|
|
try {
|
|
decrypted = encryption.decrypt(value, password);
|
|
} catch (e) {
|
|
console.log(e.message);
|
|
}
|
|
|
|
if (decrypted) {
|
|
usedBucketNum = num;
|
|
return decrypted;
|
|
}
|
|
num++;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
decryptStorage = async password => {
|
|
if (password === this.cachedPassword) {
|
|
this.cachedPassword = undefined;
|
|
await this.setResetOnAppUninstallTo(true);
|
|
await this.saveToDisk();
|
|
this.wallets = [];
|
|
this.tx_metadata = [];
|
|
return this.loadFromDisk();
|
|
} else {
|
|
throw new Error('Wrong password. Please, try again.');
|
|
}
|
|
};
|
|
|
|
isDeleteWalletAfterUninstallEnabled = async () => {
|
|
let deleteWalletsAfterUninstall;
|
|
try {
|
|
deleteWalletsAfterUninstall = await this.getItem(AppStorage.DELETE_WALLET_AFTER_UNINSTALL);
|
|
} catch (_e) {
|
|
deleteWalletsAfterUninstall = true;
|
|
}
|
|
return !!deleteWalletsAfterUninstall;
|
|
};
|
|
|
|
encryptStorage = async password => {
|
|
// assuming the storage is not yet encrypted
|
|
await this.saveToDisk();
|
|
let data = await this.getItem('data');
|
|
// TODO: refactor ^^^ (should not save & load to fetch data)
|
|
|
|
const encrypted = encryption.encrypt(data, password);
|
|
data = [];
|
|
data.push(encrypted); // putting in array as we might have many buckets with storages
|
|
data = JSON.stringify(data);
|
|
this.cachedPassword = password;
|
|
await this.setItem('data', data);
|
|
await this.setItem(AppStorage.FLAG_ENCRYPTED, '1');
|
|
};
|
|
|
|
/**
|
|
* Cleans up all current application data (wallets, tx metadata etc)
|
|
* Encrypts the bucket and saves it storage
|
|
*
|
|
* @returns {Promise.<boolean>} Success or failure
|
|
*/
|
|
createFakeStorage = async fakePassword => {
|
|
usedBucketNum = false; // resetting currently used bucket so we wont overwrite it
|
|
this.wallets = [];
|
|
this.tx_metadata = {};
|
|
|
|
const data = {
|
|
wallets: [],
|
|
tx_metadata: {},
|
|
};
|
|
|
|
let buckets = await this.getItem('data');
|
|
buckets = JSON.parse(buckets);
|
|
buckets.push(encryption.encrypt(JSON.stringify(data), fakePassword));
|
|
this.cachedPassword = fakePassword;
|
|
const bucketsString = JSON.stringify(buckets);
|
|
await this.setItem('data', bucketsString);
|
|
return (await this.getItem('data')) === bucketsString;
|
|
};
|
|
|
|
hashIt = s => {
|
|
return createHash('sha256').update(s).digest().toString('hex');
|
|
};
|
|
|
|
/**
|
|
* Returns instace of the Realm database, which is encrypted either by cached user's password OR default password.
|
|
* Database file is deterministically derived from encryption key.
|
|
*
|
|
* @returns {Promise<Realm>}
|
|
*/
|
|
async getRealm() {
|
|
const password = this.hashIt(this.cachedPassword || 'fyegjitkyf[eqjnc.lf');
|
|
const buf = Buffer.from(this.hashIt(password) + this.hashIt(password), 'hex');
|
|
const encryptionKey = Int8Array.from(buf);
|
|
const path = this.hashIt(this.hashIt(password)) + '-wallets.realm';
|
|
|
|
const schema = [
|
|
{
|
|
name: 'Wallet',
|
|
primaryKey: 'walletid',
|
|
properties: {
|
|
walletid: { type: 'string', indexed: true },
|
|
_txs_by_external_index: 'string', // stringified json
|
|
_txs_by_internal_index: 'string', // stringified json
|
|
},
|
|
},
|
|
];
|
|
return Realm.open({
|
|
schema,
|
|
path,
|
|
encryptionKey,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Loads from storage all wallets and
|
|
* maps them to `this.wallets`
|
|
*
|
|
* @param password If present means storage must be decrypted before usage
|
|
* @returns {Promise.<boolean>}
|
|
*/
|
|
async loadFromDisk(password) {
|
|
try {
|
|
let data = await this.getItem('data');
|
|
if (password) {
|
|
data = this.decryptData(data, password);
|
|
if (data) {
|
|
// password is good, cache it
|
|
this.cachedPassword = password;
|
|
}
|
|
}
|
|
if (data !== null) {
|
|
const realm = await this.getRealm();
|
|
data = JSON.parse(data);
|
|
if (!data.wallets) return false;
|
|
const wallets = data.wallets;
|
|
for (const key of wallets) {
|
|
// deciding which type is wallet and instatiating correct object
|
|
const tempObj = JSON.parse(key);
|
|
let unserializedWallet;
|
|
switch (tempObj.type) {
|
|
case PlaceholderWallet.type:
|
|
continue;
|
|
case SegwitBech32Wallet.type:
|
|
unserializedWallet = SegwitBech32Wallet.fromJson(key);
|
|
break;
|
|
case SegwitP2SHWallet.type:
|
|
unserializedWallet = SegwitP2SHWallet.fromJson(key);
|
|
break;
|
|
case WatchOnlyWallet.type:
|
|
unserializedWallet = WatchOnlyWallet.fromJson(key);
|
|
unserializedWallet.init();
|
|
if (unserializedWallet.isHd() && !unserializedWallet.isXpubValid()) {
|
|
continue;
|
|
}
|
|
break;
|
|
case HDLegacyP2PKHWallet.type:
|
|
unserializedWallet = HDLegacyP2PKHWallet.fromJson(key);
|
|
break;
|
|
case HDSegwitP2SHWallet.type:
|
|
unserializedWallet = HDSegwitP2SHWallet.fromJson(key);
|
|
break;
|
|
case HDSegwitBech32Wallet.type:
|
|
unserializedWallet = HDSegwitBech32Wallet.fromJson(key);
|
|
break;
|
|
case HDLegacyBreadwalletWallet.type:
|
|
unserializedWallet = HDLegacyBreadwalletWallet.fromJson(key);
|
|
break;
|
|
case HDLegacyElectrumSeedP2PKHWallet.type:
|
|
unserializedWallet = HDLegacyElectrumSeedP2PKHWallet.fromJson(key);
|
|
break;
|
|
case HDSegwitElectrumSeedP2WPKHWallet.type:
|
|
unserializedWallet = HDSegwitElectrumSeedP2WPKHWallet.fromJson(key);
|
|
break;
|
|
case MultisigHDWallet.type:
|
|
unserializedWallet = MultisigHDWallet.fromJson(key);
|
|
break;
|
|
case LightningCustodianWallet.type: {
|
|
/** @type {LightningCustodianWallet} */
|
|
unserializedWallet = LightningCustodianWallet.fromJson(key);
|
|
let lndhub = false;
|
|
try {
|
|
lndhub = await AsyncStorage.getItem(AppStorage.LNDHUB);
|
|
} catch (Error) {
|
|
console.warn(Error);
|
|
}
|
|
|
|
if (unserializedWallet.baseURI) {
|
|
unserializedWallet.setBaseURI(unserializedWallet.baseURI); // not really necessary, just for the sake of readability
|
|
console.log('using saved uri for for ln wallet:', unserializedWallet.baseURI);
|
|
} else if (lndhub) {
|
|
console.log('using wallet-wide settings ', lndhub, 'for ln wallet');
|
|
unserializedWallet.setBaseURI(lndhub);
|
|
} else {
|
|
console.log('using default', LightningCustodianWallet.defaultBaseUri, 'for ln wallet');
|
|
unserializedWallet.setBaseURI(LightningCustodianWallet.defaultBaseUri);
|
|
}
|
|
unserializedWallet.init();
|
|
break;
|
|
}
|
|
case LegacyWallet.type:
|
|
default:
|
|
unserializedWallet = LegacyWallet.fromJson(key);
|
|
break;
|
|
}
|
|
|
|
this.inflateWalletFromRealm(realm, unserializedWallet);
|
|
|
|
// done
|
|
if (!this.wallets.some(wallet => wallet.getSecret() === unserializedWallet.secret)) {
|
|
this.wallets.push(unserializedWallet);
|
|
this.tx_metadata = data.tx_metadata;
|
|
}
|
|
}
|
|
realm.close();
|
|
return true;
|
|
} else {
|
|
return false; // failed loading data or loading/decryptin data
|
|
}
|
|
} catch (error) {
|
|
console.warn(error.message);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Lookup wallet in list by it's secret and
|
|
* remove it from `this.wallets`
|
|
*
|
|
* @param wallet {AbstractWallet}
|
|
*/
|
|
deleteWallet = wallet => {
|
|
const secret = wallet.getSecret();
|
|
const tempWallets = [];
|
|
|
|
for (const value of this.wallets) {
|
|
if (value.type === PlaceholderWallet.type) {
|
|
continue;
|
|
} else if (value.getSecret() === secret) {
|
|
// the one we should delete
|
|
// nop
|
|
} else {
|
|
// the one we must keep
|
|
tempWallets.push(value);
|
|
}
|
|
}
|
|
this.wallets = tempWallets;
|
|
};
|
|
|
|
inflateWalletFromRealm(realm, walletToInflate) {
|
|
const wallets = realm.objects('Wallet');
|
|
const filteredWallets = wallets.filtered(`walletid = "${walletToInflate.getID()}" LIMIT(1)`);
|
|
for (const realmWalletData of filteredWallets) {
|
|
try {
|
|
if (realmWalletData._txs_by_external_index) {
|
|
const txsByExternalIndex = JSON.parse(realmWalletData._txs_by_external_index);
|
|
const txsByInternalIndex = JSON.parse(realmWalletData._txs_by_internal_index);
|
|
|
|
if (walletToInflate._hdWalletInstance) {
|
|
walletToInflate._hdWalletInstance._txs_by_external_index = txsByExternalIndex;
|
|
walletToInflate._hdWalletInstance._txs_by_internal_index = txsByInternalIndex;
|
|
} else {
|
|
walletToInflate._txs_by_external_index = txsByExternalIndex;
|
|
walletToInflate._txs_by_internal_index = txsByInternalIndex;
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.warn(error.message);
|
|
}
|
|
}
|
|
}
|
|
|
|
offloadWalletToRealm(realm, wallet) {
|
|
const id = wallet.getID();
|
|
const walletToSave = wallet._hdWalletInstance ?? wallet;
|
|
|
|
if (walletToSave instanceof AbstractHDElectrumWallet) {
|
|
realm.write(() => {
|
|
const j1 = JSON.stringify(walletToSave._txs_by_external_index);
|
|
const j2 = JSON.stringify(walletToSave._txs_by_internal_index);
|
|
realm.create(
|
|
'Wallet',
|
|
{
|
|
walletid: id,
|
|
_txs_by_external_index: j1,
|
|
_txs_by_internal_index: j2,
|
|
},
|
|
Realm.UpdateMode.Modified,
|
|
);
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Serializes and saves to storage object data.
|
|
* If cached password is saved - finds the correct bucket
|
|
* to save to, encrypts and then saves.
|
|
*
|
|
* @returns {Promise} Result of storage save
|
|
*/
|
|
async saveToDisk() {
|
|
const walletsToSave = [];
|
|
const realm = await this.getRealm();
|
|
for (const key of this.wallets) {
|
|
if (typeof key === 'boolean' || key.type === PlaceholderWallet.type) continue;
|
|
key.prepareForSerialization();
|
|
delete key.current;
|
|
const keyCloned = Object.assign({}, key); // stripped-down version of a wallet to save to secure keystore
|
|
if (key._hdWalletInstance) keyCloned._hdWalletInstance = Object.assign({}, key._hdWalletInstance);
|
|
this.offloadWalletToRealm(realm, key);
|
|
// stripping down:
|
|
if (key._txs_by_external_index) {
|
|
keyCloned._txs_by_external_index = {};
|
|
keyCloned._txs_by_internal_index = {};
|
|
}
|
|
if (key._hdWalletInstance) {
|
|
keyCloned._hdWalletInstance._txs_by_external_index = {};
|
|
keyCloned._hdWalletInstance._txs_by_internal_index = {};
|
|
}
|
|
walletsToSave.push(JSON.stringify({ ...keyCloned, type: keyCloned.type }));
|
|
}
|
|
realm.close();
|
|
let data = {
|
|
wallets: walletsToSave,
|
|
tx_metadata: this.tx_metadata,
|
|
};
|
|
|
|
if (this.cachedPassword) {
|
|
// should find the correct bucket, encrypt and then save
|
|
let buckets = await this.getItem('data');
|
|
buckets = JSON.parse(buckets);
|
|
const newData = [];
|
|
let num = 0;
|
|
for (const bucket of buckets) {
|
|
let decrypted;
|
|
// if we had `usedBucketNum` during loadFromDisk(), no point to try to decode each bucket to find the one we
|
|
// need, we just to find bucket with the same index
|
|
if (usedBucketNum !== false) {
|
|
if (num === usedBucketNum) {
|
|
decrypted = true;
|
|
}
|
|
num++;
|
|
} else {
|
|
// we dont have `usedBucketNum` for whatever reason, so lets try to decrypt each bucket after bucket
|
|
// till we find the right one
|
|
decrypted = encryption.decrypt(bucket, this.cachedPassword);
|
|
}
|
|
|
|
if (!decrypted) {
|
|
// no luck decrypting, its not our bucket
|
|
newData.push(bucket);
|
|
} else {
|
|
// decrypted ok, this is our bucket
|
|
// we serialize our object's data, encrypt it, and add it to buckets
|
|
newData.push(encryption.encrypt(JSON.stringify(data), this.cachedPassword));
|
|
await this.setItem(AppStorage.FLAG_ENCRYPTED, '1');
|
|
}
|
|
}
|
|
data = newData;
|
|
} else {
|
|
await this.setItem(AppStorage.FLAG_ENCRYPTED, ''); // drop the flag
|
|
}
|
|
try {
|
|
return await this.setItem('data', JSON.stringify(data));
|
|
} catch (error) {
|
|
alert(error.message);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* For each wallet, fetches balance from remote endpoint.
|
|
* Use getter for a specific wallet to get actual balance.
|
|
* Returns void.
|
|
* If index is present then fetch only from this specific wallet
|
|
*
|
|
* @return {Promise.<void>}
|
|
*/
|
|
fetchWalletBalances = async index => {
|
|
console.log('fetchWalletBalances for wallet#', typeof index === 'undefined' ? '(all)' : index);
|
|
if (index || index === 0) {
|
|
let c = 0;
|
|
for (const wallet of this.wallets.filter(wallet => wallet.type !== PlaceholderWallet.type)) {
|
|
if (c++ === index) {
|
|
await wallet.fetchBalance();
|
|
}
|
|
}
|
|
} else {
|
|
for (const wallet of this.wallets.filter(wallet => wallet.type !== PlaceholderWallet.type)) {
|
|
await wallet.fetchBalance();
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Fetches from remote endpoint all transactions for each wallet.
|
|
* Returns void.
|
|
* To access transactions - get them from each respective wallet.
|
|
* If index is present then fetch only from this specific wallet.
|
|
*
|
|
* @param index {Integer} Index of the wallet in this.wallets array,
|
|
* blank to fetch from all wallets
|
|
* @return {Promise.<void>}
|
|
*/
|
|
fetchWalletTransactions = async index => {
|
|
console.log('fetchWalletTransactions for wallet#', typeof index === 'undefined' ? '(all)' : index);
|
|
if (index || index === 0) {
|
|
let c = 0;
|
|
for (const wallet of this.wallets.filter(wallet => wallet.type !== PlaceholderWallet.type)) {
|
|
if (c++ === index) {
|
|
await wallet.fetchTransactions();
|
|
if (wallet.fetchPendingTransactions) {
|
|
await wallet.fetchPendingTransactions();
|
|
}
|
|
if (wallet.fetchUserInvoices) {
|
|
await wallet.fetchUserInvoices();
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
for (const wallet of this.wallets) {
|
|
await wallet.fetchTransactions();
|
|
if (wallet.fetchPendingTransactions) {
|
|
await wallet.fetchPendingTransactions();
|
|
}
|
|
if (wallet.fetchUserInvoices) {
|
|
await wallet.fetchUserInvoices();
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @returns {Array.<AbstractWallet>}
|
|
*/
|
|
getWallets = () => {
|
|
return this.wallets;
|
|
};
|
|
|
|
/**
|
|
* Getter for all transactions in all wallets.
|
|
* But if index is provided - only for wallet with corresponding index
|
|
*
|
|
* @param index {Integer|null} Wallet index in this.wallets. Empty (or null) for all wallets.
|
|
* @param limit {Integer} How many txs return, starting from the earliest. Default: all of them.
|
|
* @param includeWalletsWithHideTransactionsEnabled {Boolean} Wallets' _hideTransactionsInWalletsList property determines wether the user wants this wallet's txs hidden from the main list view.
|
|
* @return {Array}
|
|
*/
|
|
getTransactions = (index, limit = Infinity, includeWalletsWithHideTransactionsEnabled = false) => {
|
|
if (index || index === 0) {
|
|
let txs = [];
|
|
let c = 0;
|
|
for (const wallet of this.wallets) {
|
|
if (c++ === index) {
|
|
txs = txs.concat(wallet.getTransactions());
|
|
}
|
|
}
|
|
return txs;
|
|
}
|
|
|
|
let txs = [];
|
|
for (const wallet of this.wallets.filter(w => includeWalletsWithHideTransactionsEnabled || !w.getHideTransactionsInWalletsList())) {
|
|
const walletTransactions = wallet.getTransactions();
|
|
for (const t of walletTransactions) {
|
|
t.walletPreferredBalanceUnit = wallet.getPreferredBalanceUnit();
|
|
}
|
|
txs = txs.concat(walletTransactions);
|
|
}
|
|
|
|
for (const t of txs) {
|
|
t.sort_ts = +new Date(t.received);
|
|
}
|
|
|
|
return txs
|
|
.sort(function (a, b) {
|
|
return b.sort_ts - a.sort_ts;
|
|
})
|
|
.slice(0, limit);
|
|
};
|
|
|
|
/**
|
|
* Getter for a sum of all balances of all wallets
|
|
*
|
|
* @return {number}
|
|
*/
|
|
getBalance = () => {
|
|
let finalBalance = 0;
|
|
for (const wal of this.wallets) {
|
|
finalBalance += wal.getBalance();
|
|
}
|
|
return finalBalance;
|
|
};
|
|
|
|
getHodlHodlApiKey = async () => {
|
|
try {
|
|
return await this.getItem(AppStorage.HODL_HODL_API_KEY);
|
|
} catch (_) {}
|
|
return false;
|
|
};
|
|
|
|
getHodlHodlSignatureKey = async () => {
|
|
try {
|
|
return await this.getItem(AppStorage.HODL_HODL_SIGNATURE_KEY);
|
|
} catch (_) {}
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Since we cant fetch list of contracts from hodlhodl api yet, we have to keep track of it ourselves
|
|
*
|
|
* @returns {Promise<string[]>} String ids of contracts in an array
|
|
*/
|
|
getHodlHodlContracts = async () => {
|
|
try {
|
|
const json = await this.getItem(AppStorage.HODL_HODL_CONTRACTS);
|
|
return JSON.parse(json);
|
|
} catch (_) {}
|
|
return [];
|
|
};
|
|
|
|
addHodlHodlContract = async id => {
|
|
let json;
|
|
try {
|
|
json = await this.getItem(AppStorage.HODL_HODL_CONTRACTS);
|
|
json = JSON.parse(json);
|
|
} catch (_) {
|
|
json = [];
|
|
}
|
|
|
|
json.push(id);
|
|
return this.setItem(AppStorage.HODL_HODL_CONTRACTS, JSON.stringify(json));
|
|
};
|
|
|
|
setHodlHodlApiKey = async (key, sigKey) => {
|
|
if (sigKey) await this.setItem(AppStorage.HODL_HODL_SIGNATURE_KEY, sigKey);
|
|
return this.setItem(AppStorage.HODL_HODL_API_KEY, key);
|
|
};
|
|
|
|
isAdancedModeEnabled = async () => {
|
|
try {
|
|
return !!(await this.getItem(AppStorage.ADVANCED_MODE_ENABLED));
|
|
} catch (_) {}
|
|
return false;
|
|
};
|
|
|
|
setIsAdancedModeEnabled = async value => {
|
|
await this.setItem(AppStorage.ADVANCED_MODE_ENABLED, value ? '1' : '');
|
|
};
|
|
|
|
/**
|
|
* Simple async sleeper function
|
|
*
|
|
* @param ms {number} Milliseconds to sleep
|
|
* @returns {Promise<Promise<*> | Promise<*>>}
|
|
*/
|
|
sleep = ms => {
|
|
return new Promise(resolve => setTimeout(resolve, ms));
|
|
};
|
|
}
|