From 0c81dad54bc9ea9af91fecccfb8d9244d07f7ac5 Mon Sep 17 00:00:00 2001 From: Overtorment Date: Sun, 10 Oct 2021 13:49:42 +0100 Subject: [PATCH] REF: bump ldk android to v0.0.101.3 --- class/wallets/lightning-ldk-wallet.ts | 12 ++++++------ package-lock.json | 4 ++-- package.json | 2 +- screen/lnd/ldkOpenChannel.tsx | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/class/wallets/lightning-ldk-wallet.ts b/class/wallets/lightning-ldk-wallet.ts index 82680a787..26ff2f6fe 100644 --- a/class/wallets/lightning-ldk-wallet.ts +++ b/class/wallets/lightning-ldk-wallet.ts @@ -21,14 +21,14 @@ export class LightningLdkWallet extends LightningCustodianWallet { private _lastTimeBlockchainCheckedTs: number = 0; private _unwrapFirstExternalAddressFromMnemonicsCache: string = ''; private static _predefinedNodes: any = { + Bitrefill: '030c3f19d742ca294a55c00376b3b355c3c90d61c6b6b39554dbc7ac19b141c14f@52.50.244.44:9735', + 'OpenNode.com': '028d98b9969fbed53784a36617eb489a59ab6dc9b9d77fcdca9ff55307cd98e3c4@18.222.70.85:9735', + Fold: '02816caed43171d3c9854e3b0ab2cf0c42be086ff1bd4005acc2a5f7db70d83774@35.238.153.25:9735', + 'Moon (paywithmoon.com)': '025f1456582e70c4c06b61d5c8ed3ce229e6d0db538be337a2dc6d163b0ebc05a5@52.86.210.65:9735', + 'coingate.com': '0242a4ae0c5bef18048fbecf995094b74bfb0f7391418d71ed394784373f41e4f3@3.124.63.44:9735', + 'Blockstream Store': '02df5ffe895c778e10f7742a6c5b8a0cefbe9465df58b92fadeb883752c8107c8f@35.232.170.67:9735', 'lnd2.bluewallet.io': '037cc5f9f1da20ac0d60e83989729a204a33cc2d8e80438969fadf35c1c5f1233b@165.227.103.83:9735', ACINQ: '03864ef025fde8fb587d989186ce6a4a186895ee44a926bfc370e2c366597a3f8f@34.239.230.56:9735', - Bitrefill: '030c3f19d742ca294a55c00376b3b355c3c90d61c6b6b39554dbc7ac19b141c14f@52.50.244.44:9735', - 'OpenNode.com': '03abf6f44c355dec0d5aa155bdbdd6e0c8fefe318eff402de65c6eb2e1be55dc3e@18.221.23.28:9735', - 'Moon (paywithmoon.com)': '025f1456582e70c4c06b61d5c8ed3ce229e6d0db538be337a2dc6d163b0ebc05a5@52.86.210.65:9735', - Fold: '02816caed43171d3c9854e3b0ab2cf0c42be086ff1bd4005acc2a5f7db70d83774@35.238.153.25:9735', - 'Blockstream Store': '02df5ffe895c778e10f7742a6c5b8a0cefbe9465df58b92fadeb883752c8107c8f@35.232.170.67:9735', - 'coingate.com': '0242a4ae0c5bef18048fbecf995094b74bfb0f7391418d71ed394784373f41e4f3@3.124.63.44:9735', }; static getPredefinedNodes() { diff --git a/package-lock.json b/package-lock.json index 515c8f383..29d0855d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20903,8 +20903,8 @@ } }, "rn-ldk": { - "version": "git+https://github.com/BlueWallet/rn-ldk.git#v0.3.1", - "from": "git+https://github.com/BlueWallet/rn-ldk.git#v0.3.1" + "version": "git+https://github.com/BlueWallet/rn-ldk.git#v0.3.2", + "from": "git+https://github.com/BlueWallet/rn-ldk.git#v0.3.2" }, "rn-nodeify": { "version": "10.3.0", diff --git a/package.json b/package.json index bc3084cb7..10fa9b5ce 100644 --- a/package.json +++ b/package.json @@ -190,7 +190,7 @@ "react-test-render": "1.1.2", "readable-stream": "3.6.0", "realm": "10.8.0", - "rn-ldk": "git+https://github.com/BlueWallet/rn-ldk.git#v0.3.1", + "rn-ldk": "git+https://github.com/BlueWallet/rn-ldk.git#v0.3.2", "rn-nodeify": "10.3.0", "scryptsy": "2.1.0", "secure-random": "1.1.2", diff --git a/screen/lnd/ldkOpenChannel.tsx b/screen/lnd/ldkOpenChannel.tsx index 39d74471d..e07626004 100644 --- a/screen/lnd/ldkOpenChannel.tsx +++ b/screen/lnd/ldkOpenChannel.tsx @@ -41,8 +41,8 @@ const LdkOpenChannel = (props: any) => { const [isLoading, setIsLoading] = useState(false); const psbtOpenChannelStartedTs = useRef(); const [remoteHostWithPubkey, setRemoteHostWithPubkey] = useState( - '037cc5f9f1da20ac0d60e83989729a204a33cc2d8e80438969fadf35c1c5f1233b@165.227.103.83:9735', - ); // lnd2.bluewallet.io + '030c3f19d742ca294a55c00376b3b355c3c90d61c6b6b39554dbc7ac19b141c14f@52.50.244.44:9735', + ); // Bitrefill const name = useRoute().name; const [fundingAmount, setFundingAmount] = useState({ amount: null, amountSats: null }); const [verified, setVerified] = useState(false);