21 lines
367 B
JavaScript
Raw Normal View History

2023-03-01 19:44:13 +01:00
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
const widget = {
api: "{url}/api/v2/portfolio/performance?range={endpoint}",
proxyHandler: credentialedProxyHandler,
mappings: {
today: {
endpoint: "1d",
2023-03-01 19:44:13 +01:00
},
year: {
endpoint: "1y",
2023-03-01 19:44:13 +01:00
},
max: {
endpoint: "max",
2023-03-01 19:44:13 +01:00
},
},
};
export default widget;