@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.
Files changed (237) hide show
  1. package/.eslintrc.js +11 -0
  2. package/README.md +148 -65
  3. package/dist/bridge/NordUser.d.ts +78 -0
  4. package/dist/bridge/NordUser.js +196 -0
  5. package/dist/bridge/client.d.ts +150 -0
  6. package/dist/bridge/client.js +394 -0
  7. package/dist/bridge/const.d.ts +23 -0
  8. package/dist/bridge/const.js +47 -0
  9. package/dist/bridge/index.d.ts +5 -0
  10. package/dist/bridge/index.js +23 -0
  11. package/dist/bridge/types.d.ts +118 -0
  12. package/dist/bridge/types.js +16 -0
  13. package/dist/bridge/utils.d.ts +64 -0
  14. package/dist/bridge/utils.js +131 -0
  15. package/dist/client.d.ts +70 -0
  16. package/dist/client.js +129 -0
  17. package/dist/const.d.ts +2 -5
  18. package/dist/const.js +18 -22
  19. package/dist/constants/endpoints.d.ts +65 -0
  20. package/dist/constants/endpoints.js +68 -0
  21. package/dist/gen/common.d.ts +6 -1
  22. package/dist/gen/common.js +19 -9
  23. package/dist/gen/nord.d.ts +75 -17
  24. package/dist/gen/nord.js +987 -423
  25. package/dist/idl/bridge.d.ts +2 -0
  26. package/dist/idl/bridge.js +703 -0
  27. package/dist/index.d.ts +8 -5
  28. package/dist/index.js +18 -2
  29. package/dist/models/account.d.ts +58 -0
  30. package/dist/models/account.js +6 -0
  31. package/dist/models/index.d.ts +8 -0
  32. package/dist/models/index.js +28 -0
  33. package/dist/models/market.d.ts +137 -0
  34. package/dist/models/market.js +6 -0
  35. package/dist/models/order.d.ts +211 -0
  36. package/dist/models/order.js +6 -0
  37. package/dist/models/token.d.ts +50 -0
  38. package/dist/models/token.js +6 -0
  39. package/dist/nord/Nord.d.ts +222 -49
  40. package/dist/nord/Nord.js +290 -278
  41. package/dist/nord/NordError.d.ts +23 -0
  42. package/dist/nord/NordError.js +48 -0
  43. package/dist/nord/NordImpl.d.ts +6 -2
  44. package/dist/nord/NordImpl.js +21 -1
  45. package/dist/nord/NordUser.d.ts +208 -42
  46. package/dist/nord/NordUser.js +389 -157
  47. package/dist/nord/Subscriber.d.ts +37 -0
  48. package/dist/nord/Subscriber.js +29 -0
  49. package/dist/nord/api/actions.d.ts +101 -0
  50. package/dist/nord/api/actions.js +250 -0
  51. package/dist/nord/api/core.d.ts +49 -0
  52. package/dist/nord/api/core.js +121 -0
  53. package/dist/nord/api/index.d.ts +1 -0
  54. package/dist/nord/api/index.js +17 -0
  55. package/dist/nord/api/market.d.ts +36 -0
  56. package/dist/nord/api/market.js +98 -0
  57. package/dist/nord/api/metrics.d.ts +67 -0
  58. package/dist/nord/api/metrics.js +132 -0
  59. package/dist/nord/api/orderFunctions.d.ts +168 -0
  60. package/dist/nord/api/orderFunctions.js +133 -0
  61. package/dist/nord/api/queries.d.ts +81 -0
  62. package/dist/nord/api/queries.js +187 -0
  63. package/dist/nord/client/Nord.d.ts +335 -0
  64. package/dist/nord/client/Nord.js +532 -0
  65. package/dist/nord/client/NordUser.d.ts +320 -0
  66. package/dist/nord/client/NordUser.js +701 -0
  67. package/dist/nord/core.d.ts +48 -0
  68. package/dist/nord/core.js +97 -0
  69. package/dist/nord/index.d.ts +9 -2
  70. package/dist/nord/index.js +30 -6
  71. package/dist/nord/market.d.ts +36 -0
  72. package/dist/nord/market.js +90 -0
  73. package/dist/nord/metrics.d.ts +67 -0
  74. package/dist/nord/metrics.js +124 -0
  75. package/dist/nord/models/Subscriber.d.ts +37 -0
  76. package/dist/nord/models/Subscriber.js +29 -0
  77. package/dist/nord/queries.d.ts +81 -0
  78. package/dist/nord/queries.js +181 -0
  79. package/dist/nord/types.d.ts +88 -0
  80. package/dist/nord/types.js +2 -0
  81. package/dist/nord/utils/NordError.d.ts +35 -0
  82. package/dist/nord/utils/NordError.js +46 -0
  83. package/dist/nord/websocket.d.ts +49 -0
  84. package/dist/nord/websocket.js +107 -0
  85. package/dist/operations/account.d.ts +58 -0
  86. package/dist/operations/account.js +112 -0
  87. package/dist/operations/market.d.ts +65 -0
  88. package/dist/operations/market.js +131 -0
  89. package/dist/operations/orders.d.ts +57 -0
  90. package/dist/operations/orders.js +129 -0
  91. package/dist/solana/NordUser.d.ts +78 -0
  92. package/dist/solana/NordUser.js +196 -0
  93. package/dist/solana/client.d.ts +139 -0
  94. package/dist/solana/client.js +360 -0
  95. package/dist/solana/const.d.ts +23 -0
  96. package/dist/solana/const.js +47 -0
  97. package/dist/solana/index.d.ts +5 -0
  98. package/dist/solana/index.js +23 -0
  99. package/dist/solana/types.d.ts +118 -0
  100. package/dist/solana/types.js +16 -0
  101. package/dist/solana/utils.d.ts +64 -0
  102. package/dist/solana/utils.js +131 -0
  103. package/dist/types/api.d.ts +152 -0
  104. package/dist/types/api.js +6 -0
  105. package/dist/types/config.d.ts +34 -0
  106. package/dist/types/config.js +6 -0
  107. package/dist/types.d.ts +144 -87
  108. package/dist/types.js +13 -2
  109. package/dist/utils/errors.d.ts +96 -0
  110. package/dist/utils/errors.js +132 -0
  111. package/dist/utils/http.d.ts +35 -0
  112. package/dist/utils/http.js +105 -0
  113. package/dist/utils.d.ts +14 -5
  114. package/dist/utils.js +26 -7
  115. package/dist/websocket/NordWebSocketClient.d.ts +71 -0
  116. package/dist/websocket/NordWebSocketClient.js +343 -0
  117. package/dist/websocket/client.d.ts +93 -0
  118. package/dist/websocket/client.js +222 -0
  119. package/dist/websocket/events.d.ts +19 -0
  120. package/dist/websocket/events.js +2 -0
  121. package/dist/websocket/index.d.ts +2 -0
  122. package/dist/websocket/index.js +5 -0
  123. package/dist/websocket.d.ts +55 -0
  124. package/dist/websocket.js +211 -0
  125. package/docs/assets/navigation.js +1 -1
  126. package/docs/assets/search.js +1 -1
  127. package/docs/classes/Nord.html +2 -15
  128. package/docs/classes/NordUser.html +4 -4
  129. package/docs/enums/FillMode.html +2 -2
  130. package/docs/enums/KeyType.html +2 -2
  131. package/docs/enums/PeakTpsPeriodUnit.html +2 -2
  132. package/docs/enums/Side.html +2 -2
  133. package/docs/functions/assert.html +1 -1
  134. package/docs/functions/bigIntToProtoU128.html +1 -1
  135. package/docs/functions/checkPubKeyLength.html +1 -1
  136. package/docs/functions/checkedFetch.html +1 -1
  137. package/docs/functions/decodeLengthDelimited.html +1 -1
  138. package/docs/functions/encodeLengthDelimited.html +1 -1
  139. package/docs/functions/fillModeToProtoFillMode.html +1 -1
  140. package/docs/functions/findMarket.html +1 -1
  141. package/docs/functions/findToken.html +1 -1
  142. package/docs/functions/makeWalletSignFn.html +1 -1
  143. package/docs/functions/optExpect.html +1 -1
  144. package/docs/functions/optMap.html +1 -1
  145. package/docs/functions/optUnwrap.html +1 -1
  146. package/docs/functions/panic.html +1 -1
  147. package/docs/functions/signAction.html +1 -1
  148. package/docs/functions/toScaledU128.html +1 -1
  149. package/docs/functions/toScaledU64.html +1 -1
  150. package/docs/interfaces/Account.html +2 -2
  151. package/docs/interfaces/ActionInfo.html +2 -2
  152. package/docs/interfaces/ActionQuery.html +2 -2
  153. package/docs/interfaces/ActionResponse.html +2 -2
  154. package/docs/interfaces/ActionsExtendedInfo.html +2 -2
  155. package/docs/interfaces/ActionsQuery.html +2 -2
  156. package/docs/interfaces/ActionsResponse.html +2 -2
  157. package/docs/interfaces/AggregateMetrics.html +2 -2
  158. package/docs/interfaces/BlockQuery.html +2 -2
  159. package/docs/interfaces/BlockResponse.html +2 -2
  160. package/docs/interfaces/BlockSummary.html +2 -2
  161. package/docs/interfaces/BlockSummaryResponse.html +2 -2
  162. package/docs/interfaces/DeltaEvent.html +2 -2
  163. package/docs/interfaces/ERC20TokenInfo.html +2 -2
  164. package/docs/interfaces/Info.html +2 -2
  165. package/docs/interfaces/Market.html +2 -2
  166. package/docs/interfaces/MarketStats.html +2 -2
  167. package/docs/interfaces/MarketsStatsResponse.html +2 -2
  168. package/docs/interfaces/NordConfig.html +2 -2
  169. package/docs/interfaces/Order.html +2 -2
  170. package/docs/interfaces/OrderInfo.html +2 -2
  171. package/docs/interfaces/PerpMarketStats.html +2 -2
  172. package/docs/interfaces/RollmanActionExtendedInfo.html +2 -2
  173. package/docs/interfaces/RollmanActionInfo.html +2 -2
  174. package/docs/interfaces/RollmanActionResponse.html +2 -2
  175. package/docs/interfaces/RollmanActionsResponse.html +2 -2
  176. package/docs/interfaces/RollmanBlockResponse.html +2 -2
  177. package/docs/interfaces/SubscriberConfig.html +2 -2
  178. package/docs/interfaces/Token.html +2 -2
  179. package/docs/interfaces/Trade.html +2 -2
  180. package/docs/interfaces/Trades.html +2 -2
  181. package/docs/modules.html +0 -7
  182. package/docs/types/BigIntValue.html +1 -1
  183. package/docs/variables/DEBUG_KEYS.html +1 -1
  184. package/docs/variables/DEFAULT_FUNDING_AMOUNTS.html +1 -1
  185. package/docs/variables/DEV_CONTRACT_ADDRESS.html +1 -1
  186. package/docs/variables/DEV_TOKEN_INFOS.html +1 -1
  187. package/docs/variables/DEV_URL.html +1 -1
  188. package/docs/variables/ERC20_ABI.html +1 -1
  189. package/docs/variables/EVM_DEV_URL.html +1 -1
  190. package/docs/variables/FAUCET_PRIVATE_ADDRESS.html +1 -1
  191. package/docs/variables/MAX_BUFFER_LEN.html +1 -1
  192. package/docs/variables/NORD_GETTERS_FACET_ABI.html +1 -1
  193. package/docs/variables/NORD_RAMP_FACET_ABI.html +1 -1
  194. package/docs/variables/SESSION_TTL.html +1 -1
  195. package/docs/variables/WEBSERVER_DEV_URL.html +1 -1
  196. package/docs/variables/ZERO_DECIMAL.html +1 -1
  197. package/package.json +10 -12
  198. package/src/bridge/client.ts +487 -0
  199. package/src/bridge/const.ts +53 -0
  200. package/src/bridge/index.ts +7 -0
  201. package/src/bridge/types.ts +127 -0
  202. package/src/bridge/utils.ts +140 -0
  203. package/src/const.ts +20 -25
  204. package/src/gen/common.ts +27 -10
  205. package/src/gen/nord.ts +1044 -483
  206. package/src/idl/bridge.ts +702 -0
  207. package/src/index.ts +24 -5
  208. package/src/nord/{actions.ts → api/actions.ts} +33 -37
  209. package/src/nord/api/core.ts +130 -0
  210. package/src/nord/api/market.ts +125 -0
  211. package/src/nord/api/metrics.ts +154 -0
  212. package/src/nord/api/queries.ts +236 -0
  213. package/src/nord/client/Nord.ts +652 -0
  214. package/src/nord/client/NordUser.ts +1105 -0
  215. package/src/nord/index.ts +16 -2
  216. package/src/nord/models/Subscriber.ts +57 -0
  217. package/src/nord/utils/NordError.ts +72 -0
  218. package/src/types.ts +170 -99
  219. package/src/utils.ts +40 -19
  220. package/src/websocket/NordWebSocketClient.ts +432 -0
  221. package/src/websocket/events.ts +31 -0
  222. package/src/websocket/index.ts +2 -0
  223. package/tests/utils.spec.ts +24 -24
  224. package/docs/classes/Subscriber.html +0 -6
  225. package/docs/functions/createWebSocketSubscription.html +0 -12
  226. package/docs/interfaces/OrderbookOrder.html +0 -6
  227. package/docs/interfaces/OrderbookResponse.html +0 -10
  228. package/docs/interfaces/TradeInfo.html +0 -20
  229. package/docs/interfaces/TradesQueryParams.html +0 -10
  230. package/docs/interfaces/TradesResponse.html +0 -12
  231. package/src/abis/ERC20_ABI.ts +0 -310
  232. package/src/abis/NORD_GETTERS_FACET_ABI.ts +0 -192
  233. package/src/abis/NORD_RAMP_FACET_ABI.ts +0 -141
  234. package/src/abis/index.ts +0 -3
  235. package/src/nord/Nord.ts +0 -504
  236. package/src/nord/NordImpl.ts +0 -8
  237. package/src/nord/NordUser.ts +0 -469
@@ -1,192 +0,0 @@
1
- export const NORD_GETTERS_FACET_ABI = [
2
- {
3
- type: "function",
4
- name: "getActionId",
5
- inputs: [],
6
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
7
- stateMutability: "view",
8
- },
9
- {
10
- type: "function",
11
- name: "getActionNonce",
12
- inputs: [],
13
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
14
- stateMutability: "view",
15
- },
16
- {
17
- type: "function",
18
- name: "getAssetInfo",
19
- inputs: [{ name: "assetId", type: "uint256", internalType: "uint256" }],
20
- outputs: [
21
- { name: "addr", type: "address", internalType: "address" },
22
- {
23
- name: "decimals",
24
- type: "uint8",
25
- internalType: "uint8",
26
- },
27
- { name: "added", type: "bool", internalType: "bool" },
28
- ],
29
- stateMutability: "view",
30
- },
31
- {
32
- type: "function",
33
- name: "getBlockId",
34
- inputs: [],
35
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
36
- stateMutability: "view",
37
- },
38
- {
39
- type: "function",
40
- name: "getCurrentStateHash",
41
- inputs: [],
42
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
43
- stateMutability: "view",
44
- },
45
- {
46
- type: "function",
47
- name: "getDAFactRegistry",
48
- inputs: [],
49
- outputs: [{ name: "", type: "address", internalType: "address" }],
50
- stateMutability: "view",
51
- },
52
- {
53
- type: "function",
54
- name: "getFraudProofParticipant",
55
- inputs: [{ name: "index", type: "uint256", internalType: "uint256" }],
56
- outputs: [{ name: "", type: "address", internalType: "address" }],
57
- stateMutability: "view",
58
- },
59
- {
60
- type: "function",
61
- name: "getFraudProofParticipantCount",
62
- inputs: [],
63
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
64
- stateMutability: "view",
65
- },
66
- {
67
- type: "function",
68
- name: "getFraudProofParticipants",
69
- inputs: [],
70
- outputs: [{ name: "", type: "address[]", internalType: "address[]" }],
71
- stateMutability: "view",
72
- },
73
- {
74
- type: "function",
75
- name: "getLastFinalizedStateUpdateInfo",
76
- inputs: [],
77
- outputs: [
78
- { name: "blockId", type: "uint64", internalType: "uint64" },
79
- {
80
- name: "actionId",
81
- type: "uint64",
82
- internalType: "uint64",
83
- },
84
- { name: "currentStateHash", type: "uint256", internalType: "uint256" },
85
- ],
86
- stateMutability: "view",
87
- },
88
- {
89
- type: "function",
90
- name: "getNextProposedBlockId",
91
- inputs: [],
92
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
93
- stateMutability: "view",
94
- },
95
- {
96
- type: "function",
97
- name: "getOperator",
98
- inputs: [{ name: "index", type: "uint256", internalType: "uint256" }],
99
- outputs: [{ name: "", type: "address", internalType: "address" }],
100
- stateMutability: "view",
101
- },
102
- {
103
- type: "function",
104
- name: "getOperatorCount",
105
- inputs: [],
106
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
107
- stateMutability: "view",
108
- },
109
- {
110
- type: "function",
111
- name: "getOperators",
112
- inputs: [],
113
- outputs: [{ name: "", type: "address[]", internalType: "address[]" }],
114
- stateMutability: "view",
115
- },
116
- {
117
- type: "function",
118
- name: "getPendingDeposit",
119
- inputs: [
120
- { name: "owner", type: "bytes", internalType: "bytes" },
121
- {
122
- name: "assetId",
123
- type: "uint256",
124
- internalType: "uint256",
125
- },
126
- ],
127
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
128
- stateMutability: "view",
129
- },
130
- {
131
- type: "function",
132
- name: "getPendingFacts",
133
- inputs: [{ name: "blockId", type: "uint256", internalType: "uint256" }],
134
- outputs: [
135
- {
136
- name: "",
137
- type: "tuple",
138
- internalType: "struct Types.StateUpdateFacts",
139
- components: [
140
- {
141
- name: "prevStateHash",
142
- type: "uint256",
143
- internalType: "uint256",
144
- },
145
- {
146
- name: "pendingStateHash",
147
- type: "uint256",
148
- internalType: "uint256",
149
- },
150
- {
151
- name: "daFact",
152
- type: "uint256",
153
- internalType: "uint256",
154
- },
155
- {
156
- name: "onchainUpdatesHash",
157
- type: "uint256",
158
- internalType: "uint256",
159
- },
160
- { name: "startingActionId", type: "uint64", internalType: "uint64" },
161
- {
162
- name: "endingActionId",
163
- type: "uint64",
164
- internalType: "uint64",
165
- },
166
- ],
167
- },
168
- ],
169
- stateMutability: "view",
170
- },
171
- {
172
- type: "function",
173
- name: "getPendingWithdrawal",
174
- inputs: [
175
- { name: "owner", type: "address", internalType: "address" },
176
- {
177
- name: "assetId",
178
- type: "uint256",
179
- internalType: "uint256",
180
- },
181
- ],
182
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
183
- stateMutability: "view",
184
- },
185
- {
186
- type: "function",
187
- name: "getStateFactRegistry",
188
- inputs: [],
189
- outputs: [{ name: "", type: "address", internalType: "address" }],
190
- stateMutability: "view",
191
- },
192
- ];
@@ -1,141 +0,0 @@
1
- export const NORD_RAMP_FACET_ABI = [
2
- {
3
- type: "function",
4
- name: "depositUnchecked",
5
- inputs: [
6
- { name: "recipient", type: "bytes", internalType: "bytes" },
7
- {
8
- name: "assetId",
9
- type: "uint256",
10
- internalType: "uint256",
11
- },
12
- { name: "amount", type: "uint256", internalType: "uint256" },
13
- ],
14
- outputs: [],
15
- stateMutability: "payable",
16
- },
17
- {
18
- type: "function",
19
- name: "withdraw",
20
- inputs: [
21
- { name: "receiver", type: "address", internalType: "address" },
22
- {
23
- name: "assetId",
24
- type: "uint256",
25
- internalType: "uint256",
26
- },
27
- ],
28
- outputs: [],
29
- stateMutability: "nonpayable",
30
- },
31
- {
32
- type: "event",
33
- name: "RampDeposit",
34
- inputs: [
35
- {
36
- name: "caller",
37
- type: "address",
38
- indexed: true,
39
- internalType: "address",
40
- },
41
- {
42
- name: "receiverPublicKey",
43
- type: "bytes",
44
- indexed: false,
45
- internalType: "bytes",
46
- },
47
- {
48
- name: "assetId",
49
- type: "uint256",
50
- indexed: true,
51
- internalType: "uint256",
52
- },
53
- {
54
- name: "quantizedAmount",
55
- type: "uint256",
56
- indexed: false,
57
- internalType: "uint256",
58
- },
59
- {
60
- name: "actionNonce",
61
- type: "uint256",
62
- indexed: false,
63
- internalType: "uint256",
64
- },
65
- ],
66
- anonymous: false,
67
- },
68
- {
69
- type: "event",
70
- name: "RampWithdrawal",
71
- inputs: [
72
- { name: "user", type: "address", indexed: true, internalType: "address" },
73
- {
74
- name: "assetId",
75
- type: "uint256",
76
- indexed: true,
77
- internalType: "uint256",
78
- },
79
- {
80
- name: "quantizedAmount",
81
- type: "uint256",
82
- indexed: false,
83
- internalType: "uint256",
84
- },
85
- ],
86
- anonymous: false,
87
- },
88
- {
89
- type: "error",
90
- name: "AddressEmptyCode",
91
- inputs: [{ name: "target", type: "address", internalType: "address" }],
92
- },
93
- {
94
- type: "error",
95
- name: "AddressInsufficientBalance",
96
- inputs: [{ name: "account", type: "address", internalType: "address" }],
97
- },
98
- {
99
- type: "error",
100
- name: "AssetNotAdded",
101
- inputs: [{ name: "assetId", type: "uint256", internalType: "uint256" }],
102
- },
103
- { type: "error", name: "FailedInnerCall", inputs: [] },
104
- {
105
- type: "error",
106
- name: "IncorrectAmountTransferred",
107
- inputs: [{ name: "amount", type: "uint256", internalType: "uint256" }],
108
- },
109
- {
110
- type: "error",
111
- name: "InvalidAmount",
112
- inputs: [
113
- { name: "amount", type: "uint256", internalType: "uint256" },
114
- {
115
- name: "quantum",
116
- type: "uint256",
117
- internalType: "uint256",
118
- },
119
- ],
120
- },
121
- {
122
- type: "error",
123
- name: "InvalidPublicKeyLength",
124
- inputs: [{ name: "publicKey", type: "bytes", internalType: "bytes" }],
125
- },
126
- {
127
- type: "error",
128
- name: "InvalidRecipient",
129
- inputs: [{ name: "recipient", type: "address", internalType: "address" }],
130
- },
131
- {
132
- type: "error",
133
- name: "QuantizedAmountTooLarge",
134
- inputs: [{ name: "amount", type: "uint256", internalType: "uint256" }],
135
- },
136
- {
137
- type: "error",
138
- name: "SafeERC20FailedOperation",
139
- inputs: [{ name: "token", type: "address", internalType: "address" }],
140
- },
141
- ];
package/src/abis/index.ts DELETED
@@ -1,3 +0,0 @@
1
- export { ERC20_ABI } from "./ERC20_ABI";
2
- export { NORD_RAMP_FACET_ABI } from "./NORD_RAMP_FACET_ABI";
3
- export { NORD_GETTERS_FACET_ABI } from "./NORD_GETTERS_FACET_ABI";