@0xmonaco/core 0.0.0-develop-20260318131304 → 0.0.0-develop-20260323152825
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/applications/api.d.ts +1 -0
- package/dist/api/applications/api.js +1 -0
- package/dist/api/applications/index.d.ts +1 -0
- package/dist/api/applications/index.js +1 -0
- package/dist/api/auth/api.d.ts +1 -0
- package/dist/api/auth/api.js +1 -0
- package/dist/api/auth/index.d.ts +1 -0
- package/dist/api/auth/index.js +1 -0
- package/dist/api/base.d.ts +1 -0
- package/dist/api/base.js +1 -0
- package/dist/api/fees/api.d.ts +1 -0
- package/dist/api/fees/api.js +1 -0
- package/dist/api/fees/index.d.ts +1 -0
- package/dist/api/fees/index.js +1 -0
- package/dist/api/index.d.ts +1 -0
- package/dist/api/index.js +1 -0
- package/dist/api/market/api.d.ts +1 -0
- package/dist/api/market/api.js +1 -0
- package/dist/api/market/index.d.ts +1 -0
- package/dist/api/market/index.js +1 -0
- package/dist/api/orderbook/api.d.ts +1 -0
- package/dist/api/orderbook/api.js +1 -0
- package/dist/api/orderbook/index.d.ts +1 -0
- package/dist/api/orderbook/index.js +1 -0
- package/dist/api/profile/api.d.ts +41 -1
- package/dist/api/profile/api.d.ts.map +1 -1
- package/dist/api/profile/api.js +44 -0
- package/dist/api/profile/api.js.map +1 -1
- package/dist/api/profile/index.d.ts +1 -0
- package/dist/api/profile/index.js +1 -0
- package/dist/api/trades/api.d.ts +1 -0
- package/dist/api/trades/api.js +1 -0
- package/dist/api/trades/index.d.ts +1 -0
- package/dist/api/trades/index.js +1 -0
- package/dist/api/trading/api.d.ts +1 -0
- package/dist/api/trading/api.js +1 -0
- package/dist/api/trading/index.d.ts +1 -0
- package/dist/api/trading/index.js +1 -0
- package/dist/api/vault/api.d.ts +1 -0
- package/dist/api/vault/api.js +1 -0
- package/dist/api/vault/index.d.ts +1 -0
- package/dist/api/vault/index.js +1 -0
- package/dist/api/websocket/index.d.ts +1 -0
- package/dist/api/websocket/index.js +1 -0
- package/dist/api/websocket/types.d.ts +1 -0
- package/dist/api/websocket/types.js +1 -0
- package/dist/api/websocket/utils.d.ts +1 -0
- package/dist/api/websocket/utils.js +1 -0
- package/dist/api/websocket/websocket.d.ts +1 -0
- package/dist/api/websocket/websocket.js +1 -0
- package/dist/errors/errors.d.ts +1 -0
- package/dist/errors/errors.js +1 -0
- package/dist/errors/index.d.ts +1 -0
- package/dist/errors/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/networks/index.d.ts +1 -0
- package/dist/networks/index.js +1 -0
- package/dist/networks/networks.d.ts +1 -0
- package/dist/networks/networks.js +1 -0
- package/dist/sdk.d.ts +1 -0
- package/dist/sdk.js +1 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/magnitude.d.ts +1 -0
- package/dist/utils/magnitude.js +1 -0
- package/package.json +3 -3
package/dist/api/auth/api.d.ts
CHANGED
package/dist/api/auth/api.js
CHANGED
package/dist/api/auth/index.d.ts
CHANGED
package/dist/api/auth/index.js
CHANGED
package/dist/api/base.d.ts
CHANGED
package/dist/api/base.js
CHANGED
package/dist/api/fees/api.d.ts
CHANGED
package/dist/api/fees/api.js
CHANGED
package/dist/api/fees/index.d.ts
CHANGED
package/dist/api/fees/index.js
CHANGED
package/dist/api/index.d.ts
CHANGED
package/dist/api/index.js
CHANGED
package/dist/api/market/api.d.ts
CHANGED
|
@@ -11,3 +11,4 @@ export declare class MarketAPIImpl extends BaseAPI implements MarketAPI {
|
|
|
11
11
|
getCandlesticks(tradingPairId: string, interval: Interval, params?: GetCandlesticksParams): Promise<Candlestick[]>;
|
|
12
12
|
getMarketMetadata(tradingPairId: string): Promise<MarketMetadata>;
|
|
13
13
|
}
|
|
14
|
+
//# sourceMappingURL=api.d.ts.map
|
package/dist/api/market/api.js
CHANGED
package/dist/api/market/index.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* console.log(`User: ${profile.username} (${profile.address})`);
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
|
-
import type { AccountBalance, GetPaginatedUserMovementsResponse, GetUserBalancesParams, GetUserBalancesResponse, GetUserMovementsParams, ProfileAPI, UserProfile } from "@0xmonaco/types";
|
|
20
|
+
import type { AccountBalance, GetPaginatedUserMovementsResponse, GetUserBalancesParams, GetUserBalancesResponse, GetUserMovementsParams, PortfolioChartResponse, PortfolioMetric, PortfolioPeriod, PortfolioStats, ProfileAPI, UserProfile } from "@0xmonaco/types";
|
|
21
21
|
import { BaseAPI } from "../base";
|
|
22
22
|
export declare class ProfileAPIImpl extends BaseAPI implements ProfileAPI {
|
|
23
23
|
/**
|
|
@@ -124,4 +124,44 @@ export declare class ProfileAPIImpl extends BaseAPI implements ProfileAPI {
|
|
|
124
124
|
* ```
|
|
125
125
|
*/
|
|
126
126
|
getUserBalanceByAssetId(assetId: string): Promise<AccountBalance>;
|
|
127
|
+
/**
|
|
128
|
+
* Get the current user's portfolio statistics for a given time period.
|
|
129
|
+
*
|
|
130
|
+
* Fetches aggregate stats from the /api/v1/accounts/me/portfolio endpoint.
|
|
131
|
+
* Requires a valid access token to be set.
|
|
132
|
+
*
|
|
133
|
+
* @param period - Time period to scope the stats ("24h" | "7d" | "30d" | "all")
|
|
134
|
+
* @returns Promise resolving to the user's portfolio statistics
|
|
135
|
+
* @throws {APIError} When the request fails or user is not authenticated
|
|
136
|
+
*
|
|
137
|
+
* @example
|
|
138
|
+
* ```typescript
|
|
139
|
+
* const stats = await profileAPI.getPortfolioStats("30d");
|
|
140
|
+
* console.log(`PnL: ${stats.pnl}`);
|
|
141
|
+
* console.log(`Volume: ${stats.volume}`);
|
|
142
|
+
* console.log(`Total equity: ${stats.total_equity}`);
|
|
143
|
+
* ```
|
|
144
|
+
*/
|
|
145
|
+
getPortfolioStats(period: PortfolioPeriod): Promise<PortfolioStats>;
|
|
146
|
+
/**
|
|
147
|
+
* Get the current user's portfolio chart time series for a given period and metric.
|
|
148
|
+
*
|
|
149
|
+
* Fetches bucketed time series data from the /api/v1/accounts/me/portfolio/chart endpoint.
|
|
150
|
+
* Requires a valid access token to be set.
|
|
151
|
+
*
|
|
152
|
+
* @param period - Time period ("24h" | "7d" | "30d" | "all")
|
|
153
|
+
* @param metric - Metric to chart ("volume" | "pnl")
|
|
154
|
+
* @returns Promise resolving to the portfolio chart response
|
|
155
|
+
* @throws {APIError} When the request fails or user is not authenticated
|
|
156
|
+
*
|
|
157
|
+
* @example
|
|
158
|
+
* ```typescript
|
|
159
|
+
* const chart = await profileAPI.getPortfolioChart("7d", "pnl");
|
|
160
|
+
* chart.data.forEach(point => {
|
|
161
|
+
* console.log(`${point.timestamp}: ${point.value}`);
|
|
162
|
+
* });
|
|
163
|
+
* ```
|
|
164
|
+
*/
|
|
165
|
+
getPortfolioChart(period: PortfolioPeriod, metric: PortfolioMetric): Promise<PortfolioChartResponse>;
|
|
127
166
|
}
|
|
167
|
+
//# sourceMappingURL=api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/api/profile/api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,KAAK,EACV,cAAc,EACd,iCAAiC,EACjC,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,EACtB,UAAU,EACV,WAAW,EACZ,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAElC,qBAAa,cAAe,SAAQ,OAAQ,YAAW,UAAU;IAC/D;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACG,UAAU,IAAI,OAAO,CAAC,WAAW,CAAC;IAIxC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,yBAAyB,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,iCAAiC,CAAC;IA4B5G;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACG,eAAe,CAAC,MAAM,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAgBvF;;;;;;;;;;;;;;;;;;OAkBG;IACG,uBAAuB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/api/profile/api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,KAAK,EACV,cAAc,EACd,iCAAiC,EACjC,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,EACtB,sBAAsB,EACtB,eAAe,EACf,eAAe,EACf,cAAc,EACd,UAAU,EACV,WAAW,EACZ,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAElC,qBAAa,cAAe,SAAQ,OAAQ,YAAW,UAAU;IAC/D;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACG,UAAU,IAAI,OAAO,CAAC,WAAW,CAAC;IAIxC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,yBAAyB,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,iCAAiC,CAAC;IA4B5G;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACG,eAAe,CAAC,MAAM,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAgBvF;;;;;;;;;;;;;;;;;;OAkBG;IACG,uBAAuB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;IAUvE;;;;;;;;;;;;;;;;;OAiBG;IACG,iBAAiB,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,cAAc,CAAC;IAIzE;;;;;;;;;;;;;;;;;;OAkBG;IACG,iBAAiB,CAAC,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,sBAAsB,CAAC;CAG3G"}
|
package/dist/api/profile/api.js
CHANGED
|
@@ -169,4 +169,48 @@ export class ProfileAPIImpl extends BaseAPI {
|
|
|
169
169
|
const url = `/api/v1/accounts/balances/${assetId}`;
|
|
170
170
|
return await this.makeAuthenticatedRequest(url);
|
|
171
171
|
}
|
|
172
|
+
/**
|
|
173
|
+
* Get the current user's portfolio statistics for a given time period.
|
|
174
|
+
*
|
|
175
|
+
* Fetches aggregate stats from the /api/v1/accounts/me/portfolio endpoint.
|
|
176
|
+
* Requires a valid access token to be set.
|
|
177
|
+
*
|
|
178
|
+
* @param period - Time period to scope the stats ("24h" | "7d" | "30d" | "all")
|
|
179
|
+
* @returns Promise resolving to the user's portfolio statistics
|
|
180
|
+
* @throws {APIError} When the request fails or user is not authenticated
|
|
181
|
+
*
|
|
182
|
+
* @example
|
|
183
|
+
* ```typescript
|
|
184
|
+
* const stats = await profileAPI.getPortfolioStats("30d");
|
|
185
|
+
* console.log(`PnL: ${stats.pnl}`);
|
|
186
|
+
* console.log(`Volume: ${stats.volume}`);
|
|
187
|
+
* console.log(`Total equity: ${stats.total_equity}`);
|
|
188
|
+
* ```
|
|
189
|
+
*/
|
|
190
|
+
async getPortfolioStats(period) {
|
|
191
|
+
return await this.makeAuthenticatedRequest(`/api/v1/accounts/me/portfolio?period=${period}`);
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* Get the current user's portfolio chart time series for a given period and metric.
|
|
195
|
+
*
|
|
196
|
+
* Fetches bucketed time series data from the /api/v1/accounts/me/portfolio/chart endpoint.
|
|
197
|
+
* Requires a valid access token to be set.
|
|
198
|
+
*
|
|
199
|
+
* @param period - Time period ("24h" | "7d" | "30d" | "all")
|
|
200
|
+
* @param metric - Metric to chart ("volume" | "pnl")
|
|
201
|
+
* @returns Promise resolving to the portfolio chart response
|
|
202
|
+
* @throws {APIError} When the request fails or user is not authenticated
|
|
203
|
+
*
|
|
204
|
+
* @example
|
|
205
|
+
* ```typescript
|
|
206
|
+
* const chart = await profileAPI.getPortfolioChart("7d", "pnl");
|
|
207
|
+
* chart.data.forEach(point => {
|
|
208
|
+
* console.log(`${point.timestamp}: ${point.value}`);
|
|
209
|
+
* });
|
|
210
|
+
* ```
|
|
211
|
+
*/
|
|
212
|
+
async getPortfolioChart(period, metric) {
|
|
213
|
+
return await this.makeAuthenticatedRequest(`/api/v1/accounts/me/portfolio/chart?period=${period}&metric=${metric}`);
|
|
214
|
+
}
|
|
172
215
|
}
|
|
216
|
+
//# sourceMappingURL=api.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/api/profile/api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/api/profile/api.ts"],"names":[],"mappings":"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"}
|
package/dist/api/trades/api.d.ts
CHANGED
package/dist/api/trades/api.js
CHANGED
package/dist/api/trades/index.js
CHANGED
package/dist/api/trading/api.js
CHANGED
package/dist/api/vault/api.d.ts
CHANGED
package/dist/api/vault/api.js
CHANGED
package/dist/api/vault/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=types.js.map
|
package/dist/errors/errors.d.ts
CHANGED
package/dist/errors/errors.js
CHANGED
package/dist/errors/index.d.ts
CHANGED
package/dist/errors/index.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -3,3 +3,4 @@ export { APIError, ContractError, InvalidConfigError, InvalidStateError, MonacoC
|
|
|
3
3
|
export { resolveApiUrl, resolveWsUrl } from "./networks";
|
|
4
4
|
export { createMonacoSDK, MonacoSDKImpl as MonacoSDK } from "./sdk";
|
|
5
5
|
export { ALL_MAGNITUDES, calculateValidMagnitudes, MAX_BUCKETS_ALLOWED, MIN_BUCKETS_ALLOWED, } from "./utils";
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -3,3 +3,4 @@ export { APIError, ContractError, InvalidConfigError, InvalidStateError, MonacoC
|
|
|
3
3
|
export { resolveApiUrl, resolveWsUrl } from "./networks";
|
|
4
4
|
export { createMonacoSDK, MonacoSDKImpl as MonacoSDK } from "./sdk";
|
|
5
5
|
export { ALL_MAGNITUDES, calculateValidMagnitudes, MAX_BUCKETS_ALLOWED, MIN_BUCKETS_ALLOWED, } from "./utils";
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
package/dist/networks/index.d.ts
CHANGED
package/dist/networks/index.js
CHANGED
package/dist/sdk.d.ts
CHANGED
package/dist/sdk.js
CHANGED
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.js
CHANGED
package/dist/utils/magnitude.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0xmonaco/core",
|
|
3
|
-
"version": "0.0.0-develop-
|
|
3
|
+
"version": "0.0.0-develop-20260323152825",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"viem": "^2.45.2"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@0xmonaco/contracts": "0.0.0-develop-
|
|
27
|
-
"@0xmonaco/types": "0.0.0-develop-
|
|
26
|
+
"@0xmonaco/contracts": "0.0.0-develop-20260323152825",
|
|
27
|
+
"@0xmonaco/types": "0.0.0-develop-20260323152825",
|
|
28
28
|
"http-status-codes": "^2.3.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|