@n1xyz/nord-ts 0.0.1 → 0.0.4
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/.eslintrc.js +11 -0
- package/README.md +148 -65
- package/dist/bridge/NordUser.d.ts +78 -0
- package/dist/bridge/NordUser.js +196 -0
- package/dist/bridge/client.d.ts +150 -0
- package/dist/bridge/client.js +394 -0
- package/dist/bridge/const.d.ts +23 -0
- package/dist/bridge/const.js +47 -0
- package/dist/bridge/index.d.ts +5 -0
- package/dist/bridge/index.js +23 -0
- package/dist/bridge/types.d.ts +118 -0
- package/dist/bridge/types.js +16 -0
- package/dist/bridge/utils.d.ts +64 -0
- package/dist/bridge/utils.js +131 -0
- package/dist/client.d.ts +70 -0
- package/dist/client.js +129 -0
- package/dist/const.d.ts +2 -5
- package/dist/const.js +18 -22
- package/dist/constants/endpoints.d.ts +65 -0
- package/dist/constants/endpoints.js +68 -0
- package/dist/gen/common.d.ts +6 -1
- package/dist/gen/common.js +19 -9
- package/dist/gen/nord.d.ts +75 -17
- package/dist/gen/nord.js +987 -423
- package/dist/idl/bridge.d.ts +2 -0
- package/dist/idl/bridge.js +703 -0
- package/dist/index.d.ts +8 -5
- package/dist/index.js +18 -2
- package/dist/models/account.d.ts +58 -0
- package/dist/models/account.js +6 -0
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +28 -0
- package/dist/models/market.d.ts +137 -0
- package/dist/models/market.js +6 -0
- package/dist/models/order.d.ts +211 -0
- package/dist/models/order.js +6 -0
- package/dist/models/token.d.ts +50 -0
- package/dist/models/token.js +6 -0
- package/dist/nord/Nord.d.ts +222 -49
- package/dist/nord/Nord.js +290 -278
- package/dist/nord/NordError.d.ts +23 -0
- package/dist/nord/NordError.js +48 -0
- package/dist/nord/NordImpl.d.ts +6 -2
- package/dist/nord/NordImpl.js +21 -1
- package/dist/nord/NordUser.d.ts +208 -42
- package/dist/nord/NordUser.js +389 -157
- package/dist/nord/Subscriber.d.ts +37 -0
- package/dist/nord/Subscriber.js +29 -0
- package/dist/nord/api/actions.d.ts +101 -0
- package/dist/nord/api/actions.js +250 -0
- package/dist/nord/api/core.d.ts +49 -0
- package/dist/nord/api/core.js +121 -0
- package/dist/nord/api/index.d.ts +1 -0
- package/dist/nord/api/index.js +17 -0
- package/dist/nord/api/market.d.ts +36 -0
- package/dist/nord/api/market.js +98 -0
- package/dist/nord/api/metrics.d.ts +67 -0
- package/dist/nord/api/metrics.js +132 -0
- package/dist/nord/api/orderFunctions.d.ts +168 -0
- package/dist/nord/api/orderFunctions.js +133 -0
- package/dist/nord/api/queries.d.ts +81 -0
- package/dist/nord/api/queries.js +187 -0
- package/dist/nord/client/Nord.d.ts +335 -0
- package/dist/nord/client/Nord.js +532 -0
- package/dist/nord/client/NordUser.d.ts +320 -0
- package/dist/nord/client/NordUser.js +701 -0
- package/dist/nord/core.d.ts +48 -0
- package/dist/nord/core.js +97 -0
- package/dist/nord/index.d.ts +9 -2
- package/dist/nord/index.js +30 -6
- package/dist/nord/market.d.ts +36 -0
- package/dist/nord/market.js +90 -0
- package/dist/nord/metrics.d.ts +67 -0
- package/dist/nord/metrics.js +124 -0
- package/dist/nord/models/Subscriber.d.ts +37 -0
- package/dist/nord/models/Subscriber.js +29 -0
- package/dist/nord/queries.d.ts +81 -0
- package/dist/nord/queries.js +181 -0
- package/dist/nord/types.d.ts +88 -0
- package/dist/nord/types.js +2 -0
- package/dist/nord/utils/NordError.d.ts +35 -0
- package/dist/nord/utils/NordError.js +46 -0
- package/dist/nord/websocket.d.ts +49 -0
- package/dist/nord/websocket.js +107 -0
- package/dist/operations/account.d.ts +58 -0
- package/dist/operations/account.js +112 -0
- package/dist/operations/market.d.ts +65 -0
- package/dist/operations/market.js +131 -0
- package/dist/operations/orders.d.ts +57 -0
- package/dist/operations/orders.js +129 -0
- package/dist/solana/NordUser.d.ts +78 -0
- package/dist/solana/NordUser.js +196 -0
- package/dist/solana/client.d.ts +139 -0
- package/dist/solana/client.js +360 -0
- package/dist/solana/const.d.ts +23 -0
- package/dist/solana/const.js +47 -0
- package/dist/solana/index.d.ts +5 -0
- package/dist/solana/index.js +23 -0
- package/dist/solana/types.d.ts +118 -0
- package/dist/solana/types.js +16 -0
- package/dist/solana/utils.d.ts +64 -0
- package/dist/solana/utils.js +131 -0
- package/dist/types/api.d.ts +152 -0
- package/dist/types/api.js +6 -0
- package/dist/types/config.d.ts +34 -0
- package/dist/types/config.js +6 -0
- package/dist/types.d.ts +144 -87
- package/dist/types.js +13 -2
- package/dist/utils/errors.d.ts +96 -0
- package/dist/utils/errors.js +132 -0
- package/dist/utils/http.d.ts +35 -0
- package/dist/utils/http.js +105 -0
- package/dist/utils.d.ts +14 -5
- package/dist/utils.js +26 -7
- package/dist/websocket/NordWebSocketClient.d.ts +71 -0
- package/dist/websocket/NordWebSocketClient.js +343 -0
- package/dist/websocket/client.d.ts +93 -0
- package/dist/websocket/client.js +222 -0
- package/dist/websocket/events.d.ts +19 -0
- package/dist/websocket/events.js +2 -0
- package/dist/websocket/index.d.ts +2 -0
- package/dist/websocket/index.js +5 -0
- package/dist/websocket.d.ts +55 -0
- package/dist/websocket.js +211 -0
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/Nord.html +2 -15
- package/docs/classes/NordUser.html +4 -4
- package/docs/enums/FillMode.html +2 -2
- package/docs/enums/KeyType.html +2 -2
- package/docs/enums/PeakTpsPeriodUnit.html +2 -2
- package/docs/enums/Side.html +2 -2
- package/docs/functions/assert.html +1 -1
- package/docs/functions/bigIntToProtoU128.html +1 -1
- package/docs/functions/checkPubKeyLength.html +1 -1
- package/docs/functions/checkedFetch.html +1 -1
- package/docs/functions/decodeLengthDelimited.html +1 -1
- package/docs/functions/encodeLengthDelimited.html +1 -1
- package/docs/functions/fillModeToProtoFillMode.html +1 -1
- package/docs/functions/findMarket.html +1 -1
- package/docs/functions/findToken.html +1 -1
- package/docs/functions/makeWalletSignFn.html +1 -1
- package/docs/functions/optExpect.html +1 -1
- package/docs/functions/optMap.html +1 -1
- package/docs/functions/optUnwrap.html +1 -1
- package/docs/functions/panic.html +1 -1
- package/docs/functions/signAction.html +1 -1
- package/docs/functions/toScaledU128.html +1 -1
- package/docs/functions/toScaledU64.html +1 -1
- package/docs/interfaces/Account.html +2 -2
- package/docs/interfaces/ActionInfo.html +2 -2
- package/docs/interfaces/ActionQuery.html +2 -2
- package/docs/interfaces/ActionResponse.html +2 -2
- package/docs/interfaces/ActionsExtendedInfo.html +2 -2
- package/docs/interfaces/ActionsQuery.html +2 -2
- package/docs/interfaces/ActionsResponse.html +2 -2
- package/docs/interfaces/AggregateMetrics.html +2 -2
- package/docs/interfaces/BlockQuery.html +2 -2
- package/docs/interfaces/BlockResponse.html +2 -2
- package/docs/interfaces/BlockSummary.html +2 -2
- package/docs/interfaces/BlockSummaryResponse.html +2 -2
- package/docs/interfaces/DeltaEvent.html +2 -2
- package/docs/interfaces/ERC20TokenInfo.html +2 -2
- package/docs/interfaces/Info.html +2 -2
- package/docs/interfaces/Market.html +2 -2
- package/docs/interfaces/MarketStats.html +2 -2
- package/docs/interfaces/MarketsStatsResponse.html +2 -2
- package/docs/interfaces/NordConfig.html +2 -2
- package/docs/interfaces/Order.html +2 -2
- package/docs/interfaces/OrderInfo.html +2 -2
- package/docs/interfaces/PerpMarketStats.html +2 -2
- package/docs/interfaces/RollmanActionExtendedInfo.html +2 -2
- package/docs/interfaces/RollmanActionInfo.html +2 -2
- package/docs/interfaces/RollmanActionResponse.html +2 -2
- package/docs/interfaces/RollmanActionsResponse.html +2 -2
- package/docs/interfaces/RollmanBlockResponse.html +2 -2
- package/docs/interfaces/SubscriberConfig.html +2 -2
- package/docs/interfaces/Token.html +2 -2
- package/docs/interfaces/Trade.html +2 -2
- package/docs/interfaces/Trades.html +2 -2
- package/docs/modules.html +0 -7
- package/docs/types/BigIntValue.html +1 -1
- package/docs/variables/DEBUG_KEYS.html +1 -1
- package/docs/variables/DEFAULT_FUNDING_AMOUNTS.html +1 -1
- package/docs/variables/DEV_CONTRACT_ADDRESS.html +1 -1
- package/docs/variables/DEV_TOKEN_INFOS.html +1 -1
- package/docs/variables/DEV_URL.html +1 -1
- package/docs/variables/ERC20_ABI.html +1 -1
- package/docs/variables/EVM_DEV_URL.html +1 -1
- package/docs/variables/FAUCET_PRIVATE_ADDRESS.html +1 -1
- package/docs/variables/MAX_BUFFER_LEN.html +1 -1
- package/docs/variables/NORD_GETTERS_FACET_ABI.html +1 -1
- package/docs/variables/NORD_RAMP_FACET_ABI.html +1 -1
- package/docs/variables/SESSION_TTL.html +1 -1
- package/docs/variables/WEBSERVER_DEV_URL.html +1 -1
- package/docs/variables/ZERO_DECIMAL.html +1 -1
- package/package.json +10 -12
- package/src/bridge/client.ts +487 -0
- package/src/bridge/const.ts +53 -0
- package/src/bridge/index.ts +7 -0
- package/src/bridge/types.ts +127 -0
- package/src/bridge/utils.ts +140 -0
- package/src/const.ts +20 -25
- package/src/gen/common.ts +27 -10
- package/src/gen/nord.ts +1044 -483
- package/src/idl/bridge.ts +702 -0
- package/src/index.ts +24 -5
- package/src/nord/{actions.ts → api/actions.ts} +33 -37
- package/src/nord/api/core.ts +130 -0
- package/src/nord/api/market.ts +125 -0
- package/src/nord/api/metrics.ts +154 -0
- package/src/nord/api/queries.ts +236 -0
- package/src/nord/client/Nord.ts +652 -0
- package/src/nord/client/NordUser.ts +1105 -0
- package/src/nord/index.ts +16 -2
- package/src/nord/models/Subscriber.ts +57 -0
- package/src/nord/utils/NordError.ts +72 -0
- package/src/types.ts +170 -99
- package/src/utils.ts +40 -19
- package/src/websocket/NordWebSocketClient.ts +432 -0
- package/src/websocket/events.ts +31 -0
- package/src/websocket/index.ts +2 -0
- package/tests/utils.spec.ts +24 -24
- package/docs/classes/Subscriber.html +0 -6
- package/docs/functions/createWebSocketSubscription.html +0 -12
- package/docs/interfaces/OrderbookOrder.html +0 -6
- package/docs/interfaces/OrderbookResponse.html +0 -10
- package/docs/interfaces/TradeInfo.html +0 -20
- package/docs/interfaces/TradesQueryParams.html +0 -10
- package/docs/interfaces/TradesResponse.html +0 -12
- package/src/abis/ERC20_ABI.ts +0 -310
- package/src/abis/NORD_GETTERS_FACET_ABI.ts +0 -192
- package/src/abis/NORD_RAMP_FACET_ABI.ts +0 -141
- package/src/abis/index.ts +0 -3
- package/src/nord/Nord.ts +0 -504
- package/src/nord/NordImpl.ts +0 -8
- package/src/nord/NordUser.ts +0 -469
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Account, Info } from "../types";
|
|
2
|
+
import { NordWebSocketClient } from "../websocket/index";
|
|
3
|
+
/**
|
|
4
|
+
* Get the current timestamp from the Nord server
|
|
5
|
+
*
|
|
6
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
7
|
+
* @returns Current timestamp as a bigint
|
|
8
|
+
* @throws {NordError} If the request fails
|
|
9
|
+
*/
|
|
10
|
+
export declare function getTimestamp(webServerUrl: string): Promise<bigint>;
|
|
11
|
+
/**
|
|
12
|
+
* Get the next action nonce from the Nord server
|
|
13
|
+
*
|
|
14
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
15
|
+
* @returns Next action nonce
|
|
16
|
+
* @throws {NordError} If the request fails
|
|
17
|
+
*/
|
|
18
|
+
export declare function getActionNonce(webServerUrl: string): Promise<number>;
|
|
19
|
+
/**
|
|
20
|
+
* Get information about the Nord server
|
|
21
|
+
*
|
|
22
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
23
|
+
* @returns Information about markets and tokens
|
|
24
|
+
* @throws {NordError} If the request fails
|
|
25
|
+
*/
|
|
26
|
+
export declare function getInfo(webServerUrl: string): Promise<Info>;
|
|
27
|
+
/**
|
|
28
|
+
* Get account information
|
|
29
|
+
*
|
|
30
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
31
|
+
* @param accountId - Account ID to get information for
|
|
32
|
+
* @returns Account information
|
|
33
|
+
* @throws {NordError} If the request fails
|
|
34
|
+
*/
|
|
35
|
+
export declare function getAccount(webServerUrl: string, accountId: number): Promise<Account>;
|
|
36
|
+
/**
|
|
37
|
+
* Initialize a WebSocket client for Nord
|
|
38
|
+
*
|
|
39
|
+
* Connects to one of the specific Nord WebSocket endpoints:
|
|
40
|
+
* - /ws/trades - For trade updates (default)
|
|
41
|
+
* - /ws/deltas - For orderbook delta updates
|
|
42
|
+
* - /ws/user - For user-specific updates
|
|
43
|
+
*
|
|
44
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
45
|
+
* @param endpoint - Specific WebSocket endpoint to connect to (trades, deltas, or user)
|
|
46
|
+
* @returns WebSocket client
|
|
47
|
+
*/
|
|
48
|
+
export declare function initWebSocketClient(webServerUrl: string, endpoint?: 'trades' | 'deltas' | 'user'): NordWebSocketClient;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getTimestamp = getTimestamp;
|
|
4
|
+
exports.getActionNonce = getActionNonce;
|
|
5
|
+
exports.getInfo = getInfo;
|
|
6
|
+
exports.getAccount = getAccount;
|
|
7
|
+
exports.initWebSocketClient = initWebSocketClient;
|
|
8
|
+
const utils_1 = require("../utils");
|
|
9
|
+
const NordError_1 = require("./utils/NordError");
|
|
10
|
+
const index_1 = require("../websocket/index");
|
|
11
|
+
/**
|
|
12
|
+
* Get the current timestamp from the Nord server
|
|
13
|
+
*
|
|
14
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
15
|
+
* @returns Current timestamp as a bigint
|
|
16
|
+
* @throws {NordError} If the request fails
|
|
17
|
+
*/
|
|
18
|
+
async function getTimestamp(webServerUrl) {
|
|
19
|
+
try {
|
|
20
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/timestamp`);
|
|
21
|
+
const data = await response.json();
|
|
22
|
+
return BigInt(data.timestamp);
|
|
23
|
+
}
|
|
24
|
+
catch (error) {
|
|
25
|
+
throw new NordError_1.NordError("Failed to get timestamp", { cause: error });
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Get the next action nonce from the Nord server
|
|
30
|
+
*
|
|
31
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
32
|
+
* @returns Next action nonce
|
|
33
|
+
* @throws {NordError} If the request fails
|
|
34
|
+
*/
|
|
35
|
+
async function getActionNonce(webServerUrl) {
|
|
36
|
+
try {
|
|
37
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/action_nonce`);
|
|
38
|
+
const data = await response.json();
|
|
39
|
+
return data.nonce;
|
|
40
|
+
}
|
|
41
|
+
catch (error) {
|
|
42
|
+
throw new NordError_1.NordError("Failed to get action nonce", { cause: error });
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Get information about the Nord server
|
|
47
|
+
*
|
|
48
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
49
|
+
* @returns Information about markets and tokens
|
|
50
|
+
* @throws {NordError} If the request fails
|
|
51
|
+
*/
|
|
52
|
+
async function getInfo(webServerUrl) {
|
|
53
|
+
try {
|
|
54
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/info`);
|
|
55
|
+
return await response.json();
|
|
56
|
+
}
|
|
57
|
+
catch (error) {
|
|
58
|
+
throw new NordError_1.NordError("Failed to get info", { cause: error });
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Get account information
|
|
63
|
+
*
|
|
64
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
65
|
+
* @param accountId - Account ID to get information for
|
|
66
|
+
* @returns Account information
|
|
67
|
+
* @throws {NordError} If the request fails
|
|
68
|
+
*/
|
|
69
|
+
async function getAccount(webServerUrl, accountId) {
|
|
70
|
+
try {
|
|
71
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/account?account_id=${accountId}`);
|
|
72
|
+
return await response.json();
|
|
73
|
+
}
|
|
74
|
+
catch (error) {
|
|
75
|
+
throw new NordError_1.NordError(`Failed to get account ${accountId}`, { cause: error });
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Initialize a WebSocket client for Nord
|
|
80
|
+
*
|
|
81
|
+
* Connects to one of the specific Nord WebSocket endpoints:
|
|
82
|
+
* - /ws/trades - For trade updates (default)
|
|
83
|
+
* - /ws/deltas - For orderbook delta updates
|
|
84
|
+
* - /ws/user - For user-specific updates
|
|
85
|
+
*
|
|
86
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
87
|
+
* @param endpoint - Specific WebSocket endpoint to connect to (trades, deltas, or user)
|
|
88
|
+
* @returns WebSocket client
|
|
89
|
+
*/
|
|
90
|
+
function initWebSocketClient(webServerUrl, endpoint) {
|
|
91
|
+
// If no specific endpoint is provided, we'll connect to trades by default
|
|
92
|
+
const specificEndpoint = endpoint || 'trades';
|
|
93
|
+
const wsUrl = webServerUrl.replace(/^http/, "ws") + `/ws/${specificEndpoint}`;
|
|
94
|
+
const ws = new index_1.NordWebSocketClient(wsUrl);
|
|
95
|
+
ws.connect();
|
|
96
|
+
return ws;
|
|
97
|
+
}
|
package/dist/nord/index.d.ts
CHANGED
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { Nord } from './client/Nord';
|
|
2
|
+
export { NordUser } from './client/NordUser';
|
|
3
|
+
export { NordError } from './utils/NordError';
|
|
4
|
+
export * from './api/core';
|
|
5
|
+
export * from './api/metrics';
|
|
6
|
+
export * from './api/queries';
|
|
7
|
+
export * from './api/market';
|
|
8
|
+
export * from './api/actions';
|
|
9
|
+
export * from './models/Subscriber';
|
package/dist/nord/index.js
CHANGED
|
@@ -1,9 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var Nord_1 = require("./Nord");
|
|
17
|
+
exports.NordError = exports.NordUser = exports.Nord = void 0;
|
|
18
|
+
// Export main client classes
|
|
19
|
+
var Nord_1 = require("./client/Nord");
|
|
7
20
|
Object.defineProperty(exports, "Nord", { enumerable: true, get: function () { return Nord_1.Nord; } });
|
|
8
|
-
|
|
9
|
-
Object.defineProperty(exports, "
|
|
21
|
+
var NordUser_1 = require("./client/NordUser");
|
|
22
|
+
Object.defineProperty(exports, "NordUser", { enumerable: true, get: function () { return NordUser_1.NordUser; } });
|
|
23
|
+
// Export utility classes
|
|
24
|
+
var NordError_1 = require("./utils/NordError");
|
|
25
|
+
Object.defineProperty(exports, "NordError", { enumerable: true, get: function () { return NordError_1.NordError; } });
|
|
26
|
+
// Export API modules
|
|
27
|
+
__exportStar(require("./api/core"), exports);
|
|
28
|
+
__exportStar(require("./api/metrics"), exports);
|
|
29
|
+
__exportStar(require("./api/queries"), exports);
|
|
30
|
+
__exportStar(require("./api/market"), exports);
|
|
31
|
+
__exportStar(require("./api/actions"), exports);
|
|
32
|
+
// Export models
|
|
33
|
+
__exportStar(require("./models/Subscriber"), exports);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { MarketsStatsResponse, OrderbookQuery, OrderbookResponse, TradesQuery, TradesResponse, UserAccountIdsQuery, UserAccountIdsResponse } from "../types";
|
|
2
|
+
/**
|
|
3
|
+
* Get market statistics
|
|
4
|
+
*
|
|
5
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
6
|
+
* @returns Market statistics response
|
|
7
|
+
* @throws {NordError} If the request fails
|
|
8
|
+
*/
|
|
9
|
+
export declare function marketsStats(webServerUrl: string): Promise<MarketsStatsResponse>;
|
|
10
|
+
/**
|
|
11
|
+
* Get trades for a market
|
|
12
|
+
*
|
|
13
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
14
|
+
* @param query - Trades query parameters
|
|
15
|
+
* @returns Trades response
|
|
16
|
+
* @throws {NordError} If the request fails
|
|
17
|
+
*/
|
|
18
|
+
export declare function getTrades(webServerUrl: string, query: TradesQuery): Promise<TradesResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Get user account IDs
|
|
21
|
+
*
|
|
22
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
23
|
+
* @param query - User account IDs query parameters
|
|
24
|
+
* @returns User account IDs response
|
|
25
|
+
* @throws {NordError} If the request fails
|
|
26
|
+
*/
|
|
27
|
+
export declare function getUserAccountIds(webServerUrl: string, query: UserAccountIdsQuery): Promise<UserAccountIdsResponse>;
|
|
28
|
+
/**
|
|
29
|
+
* Get orderbook for a market
|
|
30
|
+
*
|
|
31
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
32
|
+
* @param query - Orderbook query parameters
|
|
33
|
+
* @returns Orderbook response
|
|
34
|
+
* @throws {NordError} If the request fails
|
|
35
|
+
*/
|
|
36
|
+
export declare function getOrderbook(webServerUrl: string, query: OrderbookQuery): Promise<OrderbookResponse>;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.marketsStats = marketsStats;
|
|
4
|
+
exports.getTrades = getTrades;
|
|
5
|
+
exports.getUserAccountIds = getUserAccountIds;
|
|
6
|
+
exports.getOrderbook = getOrderbook;
|
|
7
|
+
const utils_1 = require("../utils");
|
|
8
|
+
const NordError_1 = require("./NordError");
|
|
9
|
+
/**
|
|
10
|
+
* Get market statistics
|
|
11
|
+
*
|
|
12
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
13
|
+
* @returns Market statistics response
|
|
14
|
+
* @throws {NordError} If the request fails
|
|
15
|
+
*/
|
|
16
|
+
async function marketsStats(webServerUrl) {
|
|
17
|
+
try {
|
|
18
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/markets_stats`);
|
|
19
|
+
return await response.json();
|
|
20
|
+
}
|
|
21
|
+
catch (error) {
|
|
22
|
+
throw new NordError_1.NordError("Failed to fetch markets stats", { cause: error });
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Get trades for a market
|
|
27
|
+
*
|
|
28
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
29
|
+
* @param query - Trades query parameters
|
|
30
|
+
* @returns Trades response
|
|
31
|
+
* @throws {NordError} If the request fails
|
|
32
|
+
*/
|
|
33
|
+
async function getTrades(webServerUrl, query) {
|
|
34
|
+
try {
|
|
35
|
+
const params = new URLSearchParams();
|
|
36
|
+
params.append("accountId", query.accountId.toString());
|
|
37
|
+
if (query.since) {
|
|
38
|
+
params.append("since", query.since);
|
|
39
|
+
}
|
|
40
|
+
if (query.until) {
|
|
41
|
+
params.append("until", query.until);
|
|
42
|
+
}
|
|
43
|
+
if (query.pageId) {
|
|
44
|
+
params.append("pageId", query.pageId);
|
|
45
|
+
}
|
|
46
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/trades?${params.toString()}`);
|
|
47
|
+
return await response.json();
|
|
48
|
+
}
|
|
49
|
+
catch (error) {
|
|
50
|
+
throw new NordError_1.NordError("Failed to get trades", { cause: error });
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Get user account IDs
|
|
55
|
+
*
|
|
56
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
57
|
+
* @param query - User account IDs query parameters
|
|
58
|
+
* @returns User account IDs response
|
|
59
|
+
* @throws {NordError} If the request fails
|
|
60
|
+
*/
|
|
61
|
+
async function getUserAccountIds(webServerUrl, query) {
|
|
62
|
+
try {
|
|
63
|
+
const params = new URLSearchParams();
|
|
64
|
+
params.append("pubkey", query.pubkey);
|
|
65
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/user_account_ids?${params.toString()}`);
|
|
66
|
+
return await response.json();
|
|
67
|
+
}
|
|
68
|
+
catch (error) {
|
|
69
|
+
throw new NordError_1.NordError("Failed to get user account IDs", { cause: error });
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Get orderbook for a market
|
|
74
|
+
*
|
|
75
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
76
|
+
* @param query - Orderbook query parameters
|
|
77
|
+
* @returns Orderbook response
|
|
78
|
+
* @throws {NordError} If the request fails
|
|
79
|
+
*/
|
|
80
|
+
async function getOrderbook(webServerUrl, query) {
|
|
81
|
+
try {
|
|
82
|
+
const params = new URLSearchParams();
|
|
83
|
+
params.append("symbol", query.symbol);
|
|
84
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/orderbook?${params.toString()}`);
|
|
85
|
+
return await response.json();
|
|
86
|
+
}
|
|
87
|
+
catch (error) {
|
|
88
|
+
throw new NordError_1.NordError("Failed to get orderbook", { cause: error });
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { AggregateMetrics, PeakTpsPeriodUnit } from "../types";
|
|
2
|
+
/**
|
|
3
|
+
* Time periods for metrics queries
|
|
4
|
+
*/
|
|
5
|
+
export declare enum MetricPeriod {
|
|
6
|
+
ONE_MINUTE = "1m",
|
|
7
|
+
FIVE_MINUTES = "5m",
|
|
8
|
+
FIFTEEN_MINUTES = "15m",
|
|
9
|
+
ONE_HOUR = "1h",
|
|
10
|
+
FOUR_HOURS = "4h",
|
|
11
|
+
ONE_DAY = "24h",
|
|
12
|
+
ONE_WEEK = "7d"
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Fetch aggregate metrics from the Nord API
|
|
16
|
+
*
|
|
17
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
18
|
+
* @param txPeakTpsPeriod - Period for peak TPS calculation
|
|
19
|
+
* @param txPeakTpsPeriodUnit - Unit for peak TPS period
|
|
20
|
+
* @returns Aggregate metrics
|
|
21
|
+
* @throws {NordError} If the request fails
|
|
22
|
+
*/
|
|
23
|
+
export declare function aggregateMetrics(webServerUrl: string, txPeakTpsPeriod?: number, txPeakTpsPeriodUnit?: PeakTpsPeriodUnit): Promise<AggregateMetrics>;
|
|
24
|
+
/**
|
|
25
|
+
* Get current transactions per second
|
|
26
|
+
*
|
|
27
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
28
|
+
* @param period - Time period for the query
|
|
29
|
+
* @returns Current TPS value
|
|
30
|
+
* @throws {NordError} If the request fails
|
|
31
|
+
*/
|
|
32
|
+
export declare function getCurrentTps(webServerUrl: string, period?: string): Promise<number>;
|
|
33
|
+
/**
|
|
34
|
+
* Get peak transactions per second
|
|
35
|
+
*
|
|
36
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
37
|
+
* @param period - Time period for the query
|
|
38
|
+
* @returns Peak TPS value
|
|
39
|
+
* @throws {NordError} If the request fails
|
|
40
|
+
*/
|
|
41
|
+
export declare function getPeakTps(webServerUrl: string, period?: string): Promise<number>;
|
|
42
|
+
/**
|
|
43
|
+
* Get median transaction latency
|
|
44
|
+
*
|
|
45
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
46
|
+
* @param period - Time period for the query
|
|
47
|
+
* @returns Median latency in milliseconds
|
|
48
|
+
* @throws {NordError} If the request fails
|
|
49
|
+
*/
|
|
50
|
+
export declare function getMedianLatency(webServerUrl: string, period?: string): Promise<number>;
|
|
51
|
+
/**
|
|
52
|
+
* Get total transaction count
|
|
53
|
+
*
|
|
54
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
55
|
+
* @returns Total transaction count
|
|
56
|
+
* @throws {NordError} If the request fails
|
|
57
|
+
*/
|
|
58
|
+
export declare function getTotalTransactions(webServerUrl: string): Promise<number>;
|
|
59
|
+
/**
|
|
60
|
+
* Query Prometheus metrics
|
|
61
|
+
*
|
|
62
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
63
|
+
* @param params - Prometheus query parameters
|
|
64
|
+
* @returns Query result as a number
|
|
65
|
+
* @throws {NordError} If the request fails
|
|
66
|
+
*/
|
|
67
|
+
export declare function queryPrometheus(webServerUrl: string, params: string): Promise<number>;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MetricPeriod = void 0;
|
|
4
|
+
exports.aggregateMetrics = aggregateMetrics;
|
|
5
|
+
exports.getCurrentTps = getCurrentTps;
|
|
6
|
+
exports.getPeakTps = getPeakTps;
|
|
7
|
+
exports.getMedianLatency = getMedianLatency;
|
|
8
|
+
exports.getTotalTransactions = getTotalTransactions;
|
|
9
|
+
exports.queryPrometheus = queryPrometheus;
|
|
10
|
+
const types_1 = require("../types");
|
|
11
|
+
const utils_1 = require("../utils");
|
|
12
|
+
const NordError_1 = require("./NordError");
|
|
13
|
+
/**
|
|
14
|
+
* Time periods for metrics queries
|
|
15
|
+
*/
|
|
16
|
+
var MetricPeriod;
|
|
17
|
+
(function (MetricPeriod) {
|
|
18
|
+
MetricPeriod["ONE_MINUTE"] = "1m";
|
|
19
|
+
MetricPeriod["FIVE_MINUTES"] = "5m";
|
|
20
|
+
MetricPeriod["FIFTEEN_MINUTES"] = "15m";
|
|
21
|
+
MetricPeriod["ONE_HOUR"] = "1h";
|
|
22
|
+
MetricPeriod["FOUR_HOURS"] = "4h";
|
|
23
|
+
MetricPeriod["ONE_DAY"] = "24h";
|
|
24
|
+
MetricPeriod["ONE_WEEK"] = "7d";
|
|
25
|
+
})(MetricPeriod || (exports.MetricPeriod = MetricPeriod = {}));
|
|
26
|
+
/**
|
|
27
|
+
* Fetch aggregate metrics from the Nord API
|
|
28
|
+
*
|
|
29
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
30
|
+
* @param txPeakTpsPeriod - Period for peak TPS calculation
|
|
31
|
+
* @param txPeakTpsPeriodUnit - Unit for peak TPS period
|
|
32
|
+
* @returns Aggregate metrics
|
|
33
|
+
* @throws {NordError} If the request fails
|
|
34
|
+
*/
|
|
35
|
+
async function aggregateMetrics(webServerUrl, txPeakTpsPeriod = 1, txPeakTpsPeriodUnit = types_1.PeakTpsPeriodUnit.Day) {
|
|
36
|
+
try {
|
|
37
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/metrics?tx_peak_tps_period=${txPeakTpsPeriod}&tx_peak_tps_period_unit=${txPeakTpsPeriodUnit}`);
|
|
38
|
+
return await response.json();
|
|
39
|
+
}
|
|
40
|
+
catch (error) {
|
|
41
|
+
throw new NordError_1.NordError("Failed to fetch aggregate metrics", { cause: error });
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Get current transactions per second
|
|
46
|
+
*
|
|
47
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
48
|
+
* @param period - Time period for the query
|
|
49
|
+
* @returns Current TPS value
|
|
50
|
+
* @throws {NordError} If the request fails
|
|
51
|
+
*/
|
|
52
|
+
async function getCurrentTps(webServerUrl, period = "1m") {
|
|
53
|
+
try {
|
|
54
|
+
return await queryPrometheus(webServerUrl, `sum(rate(nord_tx_count[${period}]))`);
|
|
55
|
+
}
|
|
56
|
+
catch (error) {
|
|
57
|
+
throw new NordError_1.NordError(`Failed to get current TPS for period ${period}`, { cause: error });
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Get peak transactions per second
|
|
62
|
+
*
|
|
63
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
64
|
+
* @param period - Time period for the query
|
|
65
|
+
* @returns Peak TPS value
|
|
66
|
+
* @throws {NordError} If the request fails
|
|
67
|
+
*/
|
|
68
|
+
async function getPeakTps(webServerUrl, period = "24h") {
|
|
69
|
+
try {
|
|
70
|
+
return await queryPrometheus(webServerUrl, `max_over_time(sum(rate(nord_tx_count[1m]))[${period}:])`);
|
|
71
|
+
}
|
|
72
|
+
catch (error) {
|
|
73
|
+
throw new NordError_1.NordError(`Failed to get peak TPS for period ${period}`, { cause: error });
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Get median transaction latency
|
|
78
|
+
*
|
|
79
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
80
|
+
* @param period - Time period for the query
|
|
81
|
+
* @returns Median latency in milliseconds
|
|
82
|
+
* @throws {NordError} If the request fails
|
|
83
|
+
*/
|
|
84
|
+
async function getMedianLatency(webServerUrl, period = "1m") {
|
|
85
|
+
try {
|
|
86
|
+
return await queryPrometheus(webServerUrl, `quantile_over_time(0.5, nord_tx_latency_ms[${period}])`);
|
|
87
|
+
}
|
|
88
|
+
catch (error) {
|
|
89
|
+
throw new NordError_1.NordError(`Failed to get median latency for period ${period}`, { cause: error });
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Get total transaction count
|
|
94
|
+
*
|
|
95
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
96
|
+
* @returns Total transaction count
|
|
97
|
+
* @throws {NordError} If the request fails
|
|
98
|
+
*/
|
|
99
|
+
async function getTotalTransactions(webServerUrl) {
|
|
100
|
+
try {
|
|
101
|
+
return await queryPrometheus(webServerUrl, "sum(nord_tx_count)");
|
|
102
|
+
}
|
|
103
|
+
catch (error) {
|
|
104
|
+
throw new NordError_1.NordError("Failed to get total transactions", { cause: error });
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Query Prometheus metrics
|
|
109
|
+
*
|
|
110
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
111
|
+
* @param params - Prometheus query parameters
|
|
112
|
+
* @returns Query result as a number
|
|
113
|
+
* @throws {NordError} If the request fails
|
|
114
|
+
*/
|
|
115
|
+
async function queryPrometheus(webServerUrl, params) {
|
|
116
|
+
try {
|
|
117
|
+
const response = await (0, utils_1.checkedFetch)(`${webServerUrl}/prometheus?query=${encodeURIComponent(params)}`);
|
|
118
|
+
const data = await response.json();
|
|
119
|
+
return data.data.result[0]?.value[1] || 0;
|
|
120
|
+
}
|
|
121
|
+
catch (error) {
|
|
122
|
+
throw new NordError_1.NordError(`Failed to query Prometheus: ${params}`, { cause: error });
|
|
123
|
+
}
|
|
124
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EventEmitter } from 'events';
|
|
2
|
+
import { DeltaEvent, Trades, Account, SubscriberConfig, OrderbookResponse, Trade } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* Subscriber class for handling WebSocket subscriptions
|
|
5
|
+
*/
|
|
6
|
+
export declare class Subscriber {
|
|
7
|
+
streamURL: string;
|
|
8
|
+
buffer: (DeltaEvent | Trades | Account)[];
|
|
9
|
+
maxBufferLen: number;
|
|
10
|
+
/**
|
|
11
|
+
* Create a new Subscriber instance
|
|
12
|
+
* @param config Subscriber configuration
|
|
13
|
+
*/
|
|
14
|
+
constructor(config: SubscriberConfig);
|
|
15
|
+
/**
|
|
16
|
+
* Subscribe to WebSocket events
|
|
17
|
+
*/
|
|
18
|
+
subscribe(): void;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Interface for orderbook subscription
|
|
22
|
+
*/
|
|
23
|
+
export interface OrderbookSubscription extends EventEmitter {
|
|
24
|
+
on(event: 'message', listener: (data: OrderbookResponse) => void): this;
|
|
25
|
+
on(event: 'error', listener: (error: Error) => void): this;
|
|
26
|
+
close(): void;
|
|
27
|
+
removeAllListeners(event?: string): this;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Interface for trade subscription
|
|
31
|
+
*/
|
|
32
|
+
export interface TradeSubscription extends EventEmitter {
|
|
33
|
+
on(event: 'message', listener: (data: Trade[]) => void): this;
|
|
34
|
+
on(event: 'error', listener: (error: Error) => void): this;
|
|
35
|
+
close(): void;
|
|
36
|
+
removeAllListeners(event?: string): this;
|
|
37
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Subscriber = void 0;
|
|
7
|
+
const ws_1 = __importDefault(require("ws"));
|
|
8
|
+
const utils_1 = require("../../utils");
|
|
9
|
+
/**
|
|
10
|
+
* Subscriber class for handling WebSocket subscriptions
|
|
11
|
+
*/
|
|
12
|
+
class Subscriber {
|
|
13
|
+
/**
|
|
14
|
+
* Create a new Subscriber instance
|
|
15
|
+
* @param config Subscriber configuration
|
|
16
|
+
*/
|
|
17
|
+
constructor(config) {
|
|
18
|
+
this.streamURL = config.streamURL;
|
|
19
|
+
this.buffer = [];
|
|
20
|
+
this.maxBufferLen = config.maxBufferLen ?? utils_1.MAX_BUFFER_LEN;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Subscribe to WebSocket events
|
|
24
|
+
*/
|
|
25
|
+
subscribe() {
|
|
26
|
+
const ws = new ws_1.default(this.streamURL);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.Subscriber = Subscriber;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { ActionQuery, ActionResponse, ActionsResponse, BlockQuery, BlockResponse, BlockSummaryResponse, RollmanActionResponse, RollmanActionsResponse, RollmanBlockResponse } from "../types";
|
|
2
|
+
/**
|
|
3
|
+
* Query a specific block
|
|
4
|
+
*
|
|
5
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
6
|
+
* @param query - Block query parameters
|
|
7
|
+
* @returns Block response
|
|
8
|
+
* @throws {NordError} If the request fails
|
|
9
|
+
*/
|
|
10
|
+
export declare function queryBlock(webServerUrl: string, query: BlockQuery): Promise<BlockResponse>;
|
|
11
|
+
/**
|
|
12
|
+
* Query the last N blocks
|
|
13
|
+
*
|
|
14
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
15
|
+
* @returns Block response for the last N blocks
|
|
16
|
+
* @throws {NordError} If the request fails
|
|
17
|
+
*/
|
|
18
|
+
export declare function queryLastNBlocks(webServerUrl: string): Promise<BlockResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Query recent blocks
|
|
21
|
+
*
|
|
22
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
23
|
+
* @param last_n - Number of recent blocks to query
|
|
24
|
+
* @returns Block summary response
|
|
25
|
+
* @throws {NordError} If the request fails
|
|
26
|
+
*/
|
|
27
|
+
export declare function queryRecentBlocks(webServerUrl: string, last_n: number): Promise<BlockSummaryResponse>;
|
|
28
|
+
/**
|
|
29
|
+
* Query a specific action
|
|
30
|
+
*
|
|
31
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
32
|
+
* @param query - Action query parameters
|
|
33
|
+
* @returns Action response
|
|
34
|
+
* @throws {NordError} If the request fails
|
|
35
|
+
*/
|
|
36
|
+
export declare function queryAction(webServerUrl: string, query: ActionQuery): Promise<ActionResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* Query recent actions
|
|
39
|
+
*
|
|
40
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
41
|
+
* @param last_n - Number of recent actions to query
|
|
42
|
+
* @returns Actions response
|
|
43
|
+
* @throws {NordError} If the request fails
|
|
44
|
+
*/
|
|
45
|
+
export declare function queryRecentActions(webServerUrl: string, last_n: number): Promise<ActionsResponse>;
|
|
46
|
+
/**
|
|
47
|
+
* Query a block from Rollman
|
|
48
|
+
*
|
|
49
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
50
|
+
* @param query - Block query parameters
|
|
51
|
+
* @returns Rollman block response
|
|
52
|
+
* @throws {NordError} If the request fails
|
|
53
|
+
*/
|
|
54
|
+
export declare function blockQueryRollman(webServerUrl: string, query: BlockQuery): Promise<RollmanBlockResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* Query block summaries from Rollman
|
|
57
|
+
*
|
|
58
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
59
|
+
* @param last_n - Number of recent blocks to query
|
|
60
|
+
* @returns Block summary response
|
|
61
|
+
* @throws {NordError} If the request fails
|
|
62
|
+
*/
|
|
63
|
+
export declare function blockSummaryQueryRollman(webServerUrl: string, last_n: number): Promise<BlockSummaryResponse>;
|
|
64
|
+
/**
|
|
65
|
+
* Query an action from Rollman
|
|
66
|
+
*
|
|
67
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
68
|
+
* @param query - Action query parameters
|
|
69
|
+
* @returns Rollman action response
|
|
70
|
+
* @throws {NordError} If the request fails
|
|
71
|
+
*/
|
|
72
|
+
export declare function actionQueryRollman(webServerUrl: string, query: ActionQuery): Promise<RollmanActionResponse>;
|
|
73
|
+
/**
|
|
74
|
+
* Query actions from Rollman
|
|
75
|
+
*
|
|
76
|
+
* @param webServerUrl - Base URL for the Nord web server
|
|
77
|
+
* @param last_n - Number of recent actions to query
|
|
78
|
+
* @returns Rollman actions response
|
|
79
|
+
* @throws {NordError} If the request fails
|
|
80
|
+
*/
|
|
81
|
+
export declare function actionsQueryRollman(webServerUrl: string, last_n: number): Promise<RollmanActionsResponse>;
|