2d139bed85
* blink attachment * support staging * add staging dashboard link * Revert "add staging dashboard link" This reverts commit a43fa2204f03d74e733063aedd6862c6d71e4a46. * Revert "support staging" This reverts commit 93c15aa5083e60b1dafc77c30e999fb90fef8589. * handle pending payments, code cleanup and comments * stable sats -> stablesats * catch HTTP errors * print wallet currency in debug * disable autocomplete * schema without test() * Fix save since default is not applied for empty strings Formik validation must see 'currency' as undefined and apply the default but the validation before save sees an empty string. * Save transformed config * Remove unnecessary defaults * Prefix HTTP error with text --------- Co-authored-by: ekzyis <ek@stacker.news>
11 lines
434 B
JavaScript
11 lines
434 B
JavaScript
import * as nwc from 'wallets/nwc/client'
|
|
import * as lnbits from 'wallets/lnbits/client'
|
|
import * as lnc from 'wallets/lnc/client'
|
|
import * as lnAddr from 'wallets/lightning-address/client'
|
|
import * as cln from 'wallets/cln/client'
|
|
import * as lnd from 'wallets/lnd/client'
|
|
import * as webln from 'wallets/webln/client'
|
|
import * as blink from 'wallets/blink/client'
|
|
|
|
export default [nwc, lnbits, lnc, lnAddr, cln, lnd, webln, blink]
|