@nightlylabs/dex-sdk 0.0.42 → 0.0.43
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/index.cjs +1 -0
- package/dist/index.d.cts +10 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +1 -0
- package/package.json +54 -54
package/dist/index.cjs
CHANGED
|
@@ -460,6 +460,7 @@ var EndpointsV1 = /* @__PURE__ */ ((EndpointsV12) => {
|
|
|
460
460
|
EndpointsV12["GetUserWithdrawals"] = "/v1/get_user_withdrawals";
|
|
461
461
|
EndpointsV12["GetUserFundingHistory"] = "/v1/get_user_funding_history";
|
|
462
462
|
EndpointsV12["GetUserPortfolioValue"] = "/v1/get_user_portfolio_value";
|
|
463
|
+
EndpointsV12["SyncStatus"] = "/v1/sync_status";
|
|
463
464
|
return EndpointsV12;
|
|
464
465
|
})(EndpointsV1 || {});
|
|
465
466
|
var UserStatus = /* @__PURE__ */ ((UserStatus2) => {
|
package/dist/index.d.cts
CHANGED
|
@@ -8,6 +8,12 @@ type PaginationCursor = string;
|
|
|
8
8
|
interface AddApiKey {
|
|
9
9
|
userId: string;
|
|
10
10
|
apiKey: string;
|
|
11
|
+
expirationTimestamp: string;
|
|
12
|
+
}
|
|
13
|
+
interface ApiStatus {
|
|
14
|
+
timestamp: string;
|
|
15
|
+
currentProcessedBlock: string;
|
|
16
|
+
lastIndexedBlock: string;
|
|
11
17
|
}
|
|
12
18
|
interface BalanceChange {
|
|
13
19
|
userId: string;
|
|
@@ -40,7 +46,7 @@ interface BorrowLending {
|
|
|
40
46
|
interface CanceledPerpOrders {
|
|
41
47
|
market: string;
|
|
42
48
|
userId: string;
|
|
43
|
-
ordersIds:
|
|
49
|
+
ordersIds: string[];
|
|
44
50
|
}
|
|
45
51
|
interface ChartCandle {
|
|
46
52
|
marketName: string;
|
|
@@ -534,7 +540,8 @@ declare enum EndpointsV1 {
|
|
|
534
540
|
GetUserDeposits = "/v1/get_user_deposits",
|
|
535
541
|
GetUserWithdrawals = "/v1/get_user_withdrawals",
|
|
536
542
|
GetUserFundingHistory = "/v1/get_user_funding_history",
|
|
537
|
-
GetUserPortfolioValue = "/v1/get_user_portfolio_value"
|
|
543
|
+
GetUserPortfolioValue = "/v1/get_user_portfolio_value",
|
|
544
|
+
SyncStatus = "/v1/sync_status"
|
|
538
545
|
}
|
|
539
546
|
type Topic = {
|
|
540
547
|
type: "Market";
|
|
@@ -933,4 +940,4 @@ declare const generateApiKey: () => _aptos_labs_ts_sdk.Ed25519Account;
|
|
|
933
940
|
declare const getTopicFromCommand: (data: WsCommand) => string;
|
|
934
941
|
declare const getTopicFromMessage: (data: WsMessage) => string;
|
|
935
942
|
|
|
936
|
-
export { type AddApiKey, type AddApiKeyParams, type Address, AdminEndpoints, type BalanceChange, BaseEndpoints, type Borrow, type BorrowLending, type CancelAllPerpOrdersParams, type CancelPerpOrdersParams, type CanceledPerpOrders, type ChartCandle, ChartInterval, Client, type Content, type CreateUserParams, type Deposit, type DepositToVaultParams, type DepositTokenParams, EndpointsV1, type ErrorResponse, type ExchangeConfig, ExchangeProxies, type Fees, type FundingCheckpoint, type FundingRate, GLOBAL_DENOMINATOR, type GetBorrowLendingDataResponse, type GetChartCandlesInRangeRequest, type GetChartCandlesInRangeResponse, type GetPerpMarketsDataRequest, type GetPerpMarketsDataResponse, type GetPerpOrderBookDataRequest, type GetPerpOrderBookDataResponse, type GetPerpRecentTradesRequest, type GetPerpRecentTradesResponse, type GetPerpUserFillsRequest, type GetPerpUserFillsResponse, type GetPerpUserOrdersRequest, type GetPerpUserOrdersResponse, type GetPerpetualMarketsConfigResponse, type GetPriceIndexesResponse, type GetTokensConfigResponse, type GetUserDataRequest, type GetUserDataResponse, type GetUserDepositsRequest, type GetUserDepositsResponse, type GetUserFundingHistoryRequest, type GetUserFundingHistoryResponse, type GetUserPortfolioValueRequest, type GetUserPortfolioValueResponse, type GetUserWithdrawalsRequest, type GetUserWithdrawalsResponse, type GetUsersByAddressRequest, type GetUsersByAddressResponse, type HistoricalDeposit, type HistoricalFunding, type HistoricalWithdraw, type IGetChartCandlesInRange, type Lend, type LendTokenParams, type MarginStep, Network, type OracleUpdate, type OracleUpdates, type Order, type OrderFills, OrderSide, OrderStatus, OrderType, type OrderbookUpdate, type PaginationCursor, type PerpFill, type PerpMarketData, type PerpOrder, type PerpOrderBookData, type PerpPosition, type PerpTrade, type PerpetualMarketConfigEntry, PerpetualMarketStatus, type PlacePerpLimitOrder, type PlacePerpLimitOrderParams, type PlacePerpMarketOrder, type PlacePerpMarketOrderParams, type PriceIndex, type RedeemTokenParams, type Referral, type RemoveApiKey, type RemoveApiKeyParams, type RepayBorrow, type SetAlias, type SetAliasNameParams, type SetAutolend, type SetAutolendParams, Status, type StatusResponse, type SubmitSponsoredTransactionRequest, type SubmitSponsoredTransactionResponse, TestFaucet, type TimeResponse, type TokenConfigEntry, type Topic, type Trade, TradeRole, type TradesUpdate, type User, type UserPortfolioValue, UserStatus, type UtilizationCurve, type Vault, type VaultInvestment, type Withdraw, type WithdrawFromVaultParams, type WithdrawLend, type WsCommand, type WsFill, type WsMessage, type WsOracleUpdates, type WsPerpMarketUpdates, type WsUserUpdates, generateApiKey, getRandomId, getTopicFromCommand, getTopicFromMessage, nowInMiliseconds, parseEntryFunctionAbi, sleep, toSystemValue };
|
|
943
|
+
export { type AddApiKey, type AddApiKeyParams, type Address, AdminEndpoints, type ApiStatus, type BalanceChange, BaseEndpoints, type Borrow, type BorrowLending, type CancelAllPerpOrdersParams, type CancelPerpOrdersParams, type CanceledPerpOrders, type ChartCandle, ChartInterval, Client, type Content, type CreateUserParams, type Deposit, type DepositToVaultParams, type DepositTokenParams, EndpointsV1, type ErrorResponse, type ExchangeConfig, ExchangeProxies, type Fees, type FundingCheckpoint, type FundingRate, GLOBAL_DENOMINATOR, type GetBorrowLendingDataResponse, type GetChartCandlesInRangeRequest, type GetChartCandlesInRangeResponse, type GetPerpMarketsDataRequest, type GetPerpMarketsDataResponse, type GetPerpOrderBookDataRequest, type GetPerpOrderBookDataResponse, type GetPerpRecentTradesRequest, type GetPerpRecentTradesResponse, type GetPerpUserFillsRequest, type GetPerpUserFillsResponse, type GetPerpUserOrdersRequest, type GetPerpUserOrdersResponse, type GetPerpetualMarketsConfigResponse, type GetPriceIndexesResponse, type GetTokensConfigResponse, type GetUserDataRequest, type GetUserDataResponse, type GetUserDepositsRequest, type GetUserDepositsResponse, type GetUserFundingHistoryRequest, type GetUserFundingHistoryResponse, type GetUserPortfolioValueRequest, type GetUserPortfolioValueResponse, type GetUserWithdrawalsRequest, type GetUserWithdrawalsResponse, type GetUsersByAddressRequest, type GetUsersByAddressResponse, type HistoricalDeposit, type HistoricalFunding, type HistoricalWithdraw, type IGetChartCandlesInRange, type Lend, type LendTokenParams, type MarginStep, Network, type OracleUpdate, type OracleUpdates, type Order, type OrderFills, OrderSide, OrderStatus, OrderType, type OrderbookUpdate, type PaginationCursor, type PerpFill, type PerpMarketData, type PerpOrder, type PerpOrderBookData, type PerpPosition, type PerpTrade, type PerpetualMarketConfigEntry, PerpetualMarketStatus, type PlacePerpLimitOrder, type PlacePerpLimitOrderParams, type PlacePerpMarketOrder, type PlacePerpMarketOrderParams, type PriceIndex, type RedeemTokenParams, type Referral, type RemoveApiKey, type RemoveApiKeyParams, type RepayBorrow, type SetAlias, type SetAliasNameParams, type SetAutolend, type SetAutolendParams, Status, type StatusResponse, type SubmitSponsoredTransactionRequest, type SubmitSponsoredTransactionResponse, TestFaucet, type TimeResponse, type TokenConfigEntry, type Topic, type Trade, TradeRole, type TradesUpdate, type User, type UserPortfolioValue, UserStatus, type UtilizationCurve, type Vault, type VaultInvestment, type Withdraw, type WithdrawFromVaultParams, type WithdrawLend, type WsCommand, type WsFill, type WsMessage, type WsOracleUpdates, type WsPerpMarketUpdates, type WsUserUpdates, generateApiKey, getRandomId, getTopicFromCommand, getTopicFromMessage, nowInMiliseconds, parseEntryFunctionAbi, sleep, toSystemValue };
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,12 @@ type PaginationCursor = string;
|
|
|
8
8
|
interface AddApiKey {
|
|
9
9
|
userId: string;
|
|
10
10
|
apiKey: string;
|
|
11
|
+
expirationTimestamp: string;
|
|
12
|
+
}
|
|
13
|
+
interface ApiStatus {
|
|
14
|
+
timestamp: string;
|
|
15
|
+
currentProcessedBlock: string;
|
|
16
|
+
lastIndexedBlock: string;
|
|
11
17
|
}
|
|
12
18
|
interface BalanceChange {
|
|
13
19
|
userId: string;
|
|
@@ -40,7 +46,7 @@ interface BorrowLending {
|
|
|
40
46
|
interface CanceledPerpOrders {
|
|
41
47
|
market: string;
|
|
42
48
|
userId: string;
|
|
43
|
-
ordersIds:
|
|
49
|
+
ordersIds: string[];
|
|
44
50
|
}
|
|
45
51
|
interface ChartCandle {
|
|
46
52
|
marketName: string;
|
|
@@ -534,7 +540,8 @@ declare enum EndpointsV1 {
|
|
|
534
540
|
GetUserDeposits = "/v1/get_user_deposits",
|
|
535
541
|
GetUserWithdrawals = "/v1/get_user_withdrawals",
|
|
536
542
|
GetUserFundingHistory = "/v1/get_user_funding_history",
|
|
537
|
-
GetUserPortfolioValue = "/v1/get_user_portfolio_value"
|
|
543
|
+
GetUserPortfolioValue = "/v1/get_user_portfolio_value",
|
|
544
|
+
SyncStatus = "/v1/sync_status"
|
|
538
545
|
}
|
|
539
546
|
type Topic = {
|
|
540
547
|
type: "Market";
|
|
@@ -933,4 +940,4 @@ declare const generateApiKey: () => _aptos_labs_ts_sdk.Ed25519Account;
|
|
|
933
940
|
declare const getTopicFromCommand: (data: WsCommand) => string;
|
|
934
941
|
declare const getTopicFromMessage: (data: WsMessage) => string;
|
|
935
942
|
|
|
936
|
-
export { type AddApiKey, type AddApiKeyParams, type Address, AdminEndpoints, type BalanceChange, BaseEndpoints, type Borrow, type BorrowLending, type CancelAllPerpOrdersParams, type CancelPerpOrdersParams, type CanceledPerpOrders, type ChartCandle, ChartInterval, Client, type Content, type CreateUserParams, type Deposit, type DepositToVaultParams, type DepositTokenParams, EndpointsV1, type ErrorResponse, type ExchangeConfig, ExchangeProxies, type Fees, type FundingCheckpoint, type FundingRate, GLOBAL_DENOMINATOR, type GetBorrowLendingDataResponse, type GetChartCandlesInRangeRequest, type GetChartCandlesInRangeResponse, type GetPerpMarketsDataRequest, type GetPerpMarketsDataResponse, type GetPerpOrderBookDataRequest, type GetPerpOrderBookDataResponse, type GetPerpRecentTradesRequest, type GetPerpRecentTradesResponse, type GetPerpUserFillsRequest, type GetPerpUserFillsResponse, type GetPerpUserOrdersRequest, type GetPerpUserOrdersResponse, type GetPerpetualMarketsConfigResponse, type GetPriceIndexesResponse, type GetTokensConfigResponse, type GetUserDataRequest, type GetUserDataResponse, type GetUserDepositsRequest, type GetUserDepositsResponse, type GetUserFundingHistoryRequest, type GetUserFundingHistoryResponse, type GetUserPortfolioValueRequest, type GetUserPortfolioValueResponse, type GetUserWithdrawalsRequest, type GetUserWithdrawalsResponse, type GetUsersByAddressRequest, type GetUsersByAddressResponse, type HistoricalDeposit, type HistoricalFunding, type HistoricalWithdraw, type IGetChartCandlesInRange, type Lend, type LendTokenParams, type MarginStep, Network, type OracleUpdate, type OracleUpdates, type Order, type OrderFills, OrderSide, OrderStatus, OrderType, type OrderbookUpdate, type PaginationCursor, type PerpFill, type PerpMarketData, type PerpOrder, type PerpOrderBookData, type PerpPosition, type PerpTrade, type PerpetualMarketConfigEntry, PerpetualMarketStatus, type PlacePerpLimitOrder, type PlacePerpLimitOrderParams, type PlacePerpMarketOrder, type PlacePerpMarketOrderParams, type PriceIndex, type RedeemTokenParams, type Referral, type RemoveApiKey, type RemoveApiKeyParams, type RepayBorrow, type SetAlias, type SetAliasNameParams, type SetAutolend, type SetAutolendParams, Status, type StatusResponse, type SubmitSponsoredTransactionRequest, type SubmitSponsoredTransactionResponse, TestFaucet, type TimeResponse, type TokenConfigEntry, type Topic, type Trade, TradeRole, type TradesUpdate, type User, type UserPortfolioValue, UserStatus, type UtilizationCurve, type Vault, type VaultInvestment, type Withdraw, type WithdrawFromVaultParams, type WithdrawLend, type WsCommand, type WsFill, type WsMessage, type WsOracleUpdates, type WsPerpMarketUpdates, type WsUserUpdates, generateApiKey, getRandomId, getTopicFromCommand, getTopicFromMessage, nowInMiliseconds, parseEntryFunctionAbi, sleep, toSystemValue };
|
|
943
|
+
export { type AddApiKey, type AddApiKeyParams, type Address, AdminEndpoints, type ApiStatus, type BalanceChange, BaseEndpoints, type Borrow, type BorrowLending, type CancelAllPerpOrdersParams, type CancelPerpOrdersParams, type CanceledPerpOrders, type ChartCandle, ChartInterval, Client, type Content, type CreateUserParams, type Deposit, type DepositToVaultParams, type DepositTokenParams, EndpointsV1, type ErrorResponse, type ExchangeConfig, ExchangeProxies, type Fees, type FundingCheckpoint, type FundingRate, GLOBAL_DENOMINATOR, type GetBorrowLendingDataResponse, type GetChartCandlesInRangeRequest, type GetChartCandlesInRangeResponse, type GetPerpMarketsDataRequest, type GetPerpMarketsDataResponse, type GetPerpOrderBookDataRequest, type GetPerpOrderBookDataResponse, type GetPerpRecentTradesRequest, type GetPerpRecentTradesResponse, type GetPerpUserFillsRequest, type GetPerpUserFillsResponse, type GetPerpUserOrdersRequest, type GetPerpUserOrdersResponse, type GetPerpetualMarketsConfigResponse, type GetPriceIndexesResponse, type GetTokensConfigResponse, type GetUserDataRequest, type GetUserDataResponse, type GetUserDepositsRequest, type GetUserDepositsResponse, type GetUserFundingHistoryRequest, type GetUserFundingHistoryResponse, type GetUserPortfolioValueRequest, type GetUserPortfolioValueResponse, type GetUserWithdrawalsRequest, type GetUserWithdrawalsResponse, type GetUsersByAddressRequest, type GetUsersByAddressResponse, type HistoricalDeposit, type HistoricalFunding, type HistoricalWithdraw, type IGetChartCandlesInRange, type Lend, type LendTokenParams, type MarginStep, Network, type OracleUpdate, type OracleUpdates, type Order, type OrderFills, OrderSide, OrderStatus, OrderType, type OrderbookUpdate, type PaginationCursor, type PerpFill, type PerpMarketData, type PerpOrder, type PerpOrderBookData, type PerpPosition, type PerpTrade, type PerpetualMarketConfigEntry, PerpetualMarketStatus, type PlacePerpLimitOrder, type PlacePerpLimitOrderParams, type PlacePerpMarketOrder, type PlacePerpMarketOrderParams, type PriceIndex, type RedeemTokenParams, type Referral, type RemoveApiKey, type RemoveApiKeyParams, type RepayBorrow, type SetAlias, type SetAliasNameParams, type SetAutolend, type SetAutolendParams, Status, type StatusResponse, type SubmitSponsoredTransactionRequest, type SubmitSponsoredTransactionResponse, TestFaucet, type TimeResponse, type TokenConfigEntry, type Topic, type Trade, TradeRole, type TradesUpdate, type User, type UserPortfolioValue, UserStatus, type UtilizationCurve, type Vault, type VaultInvestment, type Withdraw, type WithdrawFromVaultParams, type WithdrawLend, type WsCommand, type WsFill, type WsMessage, type WsOracleUpdates, type WsPerpMarketUpdates, type WsUserUpdates, generateApiKey, getRandomId, getTopicFromCommand, getTopicFromMessage, nowInMiliseconds, parseEntryFunctionAbi, sleep, toSystemValue };
|
package/dist/index.js
CHANGED
|
@@ -409,6 +409,7 @@ var EndpointsV1 = /* @__PURE__ */ ((EndpointsV12) => {
|
|
|
409
409
|
EndpointsV12["GetUserWithdrawals"] = "/v1/get_user_withdrawals";
|
|
410
410
|
EndpointsV12["GetUserFundingHistory"] = "/v1/get_user_funding_history";
|
|
411
411
|
EndpointsV12["GetUserPortfolioValue"] = "/v1/get_user_portfolio_value";
|
|
412
|
+
EndpointsV12["SyncStatus"] = "/v1/sync_status";
|
|
412
413
|
return EndpointsV12;
|
|
413
414
|
})(EndpointsV1 || {});
|
|
414
415
|
var UserStatus = /* @__PURE__ */ ((UserStatus2) => {
|
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"name": "@nightlylabs/dex-sdk",
|
|
3
|
+
"version": "0.0.43",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"import": "./dist/index.js",
|
|
8
|
+
"require": "./dist/index.cjs"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.cjs",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
19
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
20
|
+
"clean": "rm -rf dist",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"generate-types": "tsx scripts/generate-types.ts",
|
|
24
|
+
"init-exchange": " tsx scripts/admin/initExchange.ts",
|
|
25
|
+
"add-dev": "tsx scripts/admin/addDev.ts",
|
|
26
|
+
"remove-dev": "tsx scripts/admin/removeDev.ts",
|
|
27
|
+
"add-token-to-oracle": "tsx scripts/admin/addTokenToOracle.ts",
|
|
28
|
+
"add-token": "tsx scripts/admin/addToken.ts",
|
|
29
|
+
"test-indexer": "tsx scripts/admin/testIndexer.ts",
|
|
30
|
+
"update-oracle-prices": "tsx scripts/admin/updateOraclePrices.ts",
|
|
31
|
+
"add-perp-market": "tsx scripts/admin/addPerpMarket.ts",
|
|
32
|
+
"redeploy": "tsx scripts/redeploy.ts",
|
|
33
|
+
"typeshare": "typeshare ../backend --lang=typescript --output-file=./generated_types/typeshareTypes.ts",
|
|
34
|
+
"test:client": "vitest run src/client.test.ts"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [],
|
|
37
|
+
"author": "",
|
|
38
|
+
"license": "ISC",
|
|
39
|
+
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631",
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@aptos-labs/ts-sdk": "1.35.0",
|
|
42
|
+
"@thalalabs/surf": "^1.8.1",
|
|
43
|
+
"decimal.js": "^10.5.0",
|
|
44
|
+
"isomorphic-ws": "^5.0.0",
|
|
45
|
+
"uuid": "^11.0.5"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@changesets/cli": "^2.27.12",
|
|
49
|
+
"@types/node": "^22.10.10",
|
|
50
|
+
"dotenv": "^16.4.7",
|
|
51
|
+
"tsup": "^8.3.6",
|
|
52
|
+
"tsx": "^4.19.2",
|
|
53
|
+
"typescript": "^5.7.3",
|
|
54
|
+
"vitest": "^3.0.4"
|
|
9
55
|
}
|
|
10
|
-
|
|
11
|
-
"main": "./dist/index.cjs",
|
|
12
|
-
"module": "./dist/index.js",
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"dist"
|
|
16
|
-
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
19
|
-
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
20
|
-
"clean": "rm -rf dist",
|
|
21
|
-
"test": "vitest run",
|
|
22
|
-
"test:watch": "vitest",
|
|
23
|
-
"generate-types": "tsx scripts/generate-types.ts",
|
|
24
|
-
"init-exchange": " tsx scripts/admin/initExchange.ts",
|
|
25
|
-
"add-dev": "tsx scripts/admin/addDev.ts",
|
|
26
|
-
"remove-dev": "tsx scripts/admin/removeDev.ts",
|
|
27
|
-
"add-token-to-oracle": "tsx scripts/admin/addTokenToOracle.ts",
|
|
28
|
-
"add-token": "tsx scripts/admin/addToken.ts",
|
|
29
|
-
"test-indexer": "tsx scripts/admin/testIndexer.ts",
|
|
30
|
-
"update-oracle-prices": "tsx scripts/admin/updateOraclePrices.ts",
|
|
31
|
-
"add-perp-market": "tsx scripts/admin/addPerpMarket.ts",
|
|
32
|
-
"redeploy": "tsx scripts/redeploy.ts",
|
|
33
|
-
"typeshare": "typeshare ../backend --lang=typescript --output-file=./generated_types/typeshareTypes.ts",
|
|
34
|
-
"test:client": "vitest run src/client.test.ts"
|
|
35
|
-
},
|
|
36
|
-
"keywords": [],
|
|
37
|
-
"author": "",
|
|
38
|
-
"license": "ISC",
|
|
39
|
-
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631",
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"@aptos-labs/ts-sdk": "1.35.0",
|
|
42
|
-
"@thalalabs/surf": "^1.8.1",
|
|
43
|
-
"decimal.js": "^10.5.0",
|
|
44
|
-
"isomorphic-ws": "^5.0.0",
|
|
45
|
-
"uuid": "^11.0.5"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@changesets/cli": "^2.27.12",
|
|
49
|
-
"@types/node": "^22.10.10",
|
|
50
|
-
"dotenv": "^16.4.7",
|
|
51
|
-
"tsup": "^8.3.6",
|
|
52
|
-
"tsx": "^4.19.2",
|
|
53
|
-
"typescript": "^5.7.3",
|
|
54
|
-
"vitest": "^3.0.4"
|
|
55
|
-
}
|
|
56
|
-
}
|
|
56
|
+
}
|