File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,12 @@ const asConfig = asObject({
7878 evmScanApiKey : asOptional ( asArray ( asString ) , [ ] )
7979 } ) . withRest
8080 ) ,
81+ CHANGELLY_INIT : asCorePluginInit (
82+ asObject ( {
83+ apiKey : asOptional ( asString , '' ) ,
84+ secret : asOptional ( asString , '' )
85+ } ) . withRest
86+ ) ,
8187 CHANGE_NOW_INIT : asCorePluginInit (
8288 asObject ( {
8389 apiKey : asOptional ( asString , '' )
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ interface TermsUri {
1919}
2020
2121const pluginData : { [ pluginId : string ] : TermsUri } = {
22+ changelly : {
23+ termsUri : 'https://changelly.com/terms-of-use' ,
24+ privacyUri : 'https://changelly.com/privacy-policy' ,
25+ kycUri : 'https://changelly.com/aml-kyc'
26+ } ,
2227 switchain : {
2328 termsUri : 'https://www.switchain.com/tos' ,
2429 privacyUri : 'https://www.switchain.com/policy' ,
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export const currencyPlugins: EdgeCorePluginsInit = {
5656export const swapPlugins = {
5757 // Centralized Swaps
5858 changehero : ENV . CHANGEHERO_INIT ,
59+ changelly : ENV . CHANGELLY_INIT ,
5960 changenow : ENV . CHANGE_NOW_INIT ,
6061 exolix : ENV . EXOLIX_INIT ,
6162 godex : ENV . GODEX_INIT ,
You can’t perform that action at this time.
0 commit comments