File tree Expand file tree Collapse file tree
canton-functions/src/config Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,30 +12,36 @@ export const config = new AdapterConfig({
1212 'The amount of time the background execute should sleep before performing the next request' ,
1313 type : 'number' ,
1414 default : 1_000 ,
15+ sensitive : false ,
1516 } ,
1617 URL : {
1718 description : 'The Canton JSON API URL' ,
1819 type : 'string' ,
1920 required : true ,
21+ sensitive : false ,
2022 } ,
2123 TEMPLATE_ID : {
2224 description : 'The template ID to query contracts for (format: packageId:Module:Template)' ,
2325 type : 'string' ,
2426 required : true ,
27+ sensitive : false ,
2528 } ,
2629 CHOICE : {
2730 description : 'The non-consuming choice to exercise on the contract' ,
2831 type : 'string' ,
2932 required : true ,
33+ sensitive : false ,
3034 } ,
3135 ARGUMENT : {
3236 description : 'The argument for the choice (JSON string)' ,
3337 type : 'string' ,
3438 required : false ,
39+ sensitive : false ,
3540 } ,
3641 CONTRACT_FILTER : {
3742 description : 'Filter to query contracts when contractId is not provided (JSON string)' ,
3843 type : 'string' ,
3944 required : false ,
45+ sensitive : false ,
4046 } ,
4147} )
Original file line number Diff line number Diff line change @@ -17,5 +17,6 @@ export const config = new AdapterConfig({
1717 description : 'An API endpoint for Matrixdock' ,
1818 type : 'string' ,
1919 default : 'https://mapi.matrixport.com' ,
20+ sensitive : false ,
2021 } ,
2122} )
Original file line number Diff line number Diff line change @@ -43,5 +43,6 @@ export const config = new AdapterConfig({
4343 type : 'string' ,
4444 description : 'The WS API endpoint to use for the forex-continuous (24/7) endpoint' ,
4545 default : 'wss://cryptofeed.ws.newchangefx.com/fiat_v1' ,
46+ sensitive : false ,
4647 } ,
4748} )
Original file line number Diff line number Diff line change @@ -33,13 +33,15 @@ export const config = new AdapterConfig(
3333 default : 1 ,
3434 type : 'number' ,
3535 validate : validator . integer ( { min : 1 , max : 5 } ) ,
36+ sensitive : false ,
3637 } ,
3738 WS_URL_SECONDARY_ATTEMPTS : {
3839 description :
3940 'Number of consecutive connection attempts to secondary WebSocket URL per failover cycle (alternates with primary)' ,
4041 default : 1 ,
4142 type : 'number' ,
4243 validate : validator . integer ( { min : 1 , max : 5 } ) ,
44+ sensitive : false ,
4345 } ,
4446 } ,
4547 {
You can’t perform that action at this time.
0 commit comments