REF: bump ldk android to v0.0.101.3

This commit is contained in:
Overtorment 2021-10-10 13:49:42 +01:00
parent 821117afb2
commit 0c81dad54b
4 changed files with 11 additions and 11 deletions

View file

@ -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() {

4
package-lock.json generated
View file

@ -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",

View file

@ -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",

View file

@ -41,8 +41,8 @@ const LdkOpenChannel = (props: any) => {
const [isLoading, setIsLoading] = useState(false);
const psbtOpenChannelStartedTs = useRef<number>();
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<any>({ amount: null, amountSats: null });
const [verified, setVerified] = useState(false);