@ledgerhq/coin-xrp 3.2.0-nightly.5 → 4.0.0-next.0
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +29 -37
- package/lib/api/index.d.ts +7 -1
- package/lib/api/index.d.ts.map +1 -1
- package/lib/api/index.integ.test.js +7 -2
- package/lib/api/index.integ.test.js.map +1 -1
- package/lib/api/index.js +2 -0
- package/lib/api/index.js.map +1 -1
- package/lib/api/index.test.js +19 -0
- package/lib/api/index.test.js.map +1 -1
- package/lib/bridge/synchronization.js.map +1 -1
- package/lib/logic/craftTransaction.d.ts +1 -1
- package/lib/logic/craftTransaction.d.ts.map +1 -1
- package/lib/logic/getBalance.d.ts +3 -1
- package/lib/logic/getBalance.d.ts.map +1 -1
- package/lib/logic/getBalance.js +1 -1
- package/lib/logic/getBalance.js.map +1 -1
- package/lib/logic/getBalance.test.js +1 -1
- package/lib/logic/getBalance.test.js.map +1 -1
- package/lib/logic/index.d.ts +1 -0
- package/lib/logic/index.d.ts.map +1 -1
- package/lib/logic/index.js.map +1 -1
- package/lib/logic/listOperations.d.ts +2 -2
- package/lib/logic/listOperations.d.ts.map +1 -1
- package/lib/logic/listOperations.js +1 -0
- package/lib/logic/listOperations.js.map +1 -1
- package/lib/logic/listOperations.test.js +3 -0
- package/lib/logic/listOperations.test.js.map +1 -1
- package/lib/types/assets.d.ts +3 -0
- package/lib/types/assets.d.ts.map +1 -0
- package/lib/types/assets.js +3 -0
- package/lib/types/assets.js.map +1 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/index.js +1 -0
- package/lib/types/index.js.map +1 -1
- package/lib-es/api/index.d.ts +7 -1
- package/lib-es/api/index.d.ts.map +1 -1
- package/lib-es/api/index.integ.test.js +7 -2
- package/lib-es/api/index.integ.test.js.map +1 -1
- package/lib-es/api/index.js +2 -0
- package/lib-es/api/index.js.map +1 -1
- package/lib-es/api/index.test.js +19 -0
- package/lib-es/api/index.test.js.map +1 -1
- package/lib-es/bridge/synchronization.js.map +1 -1
- package/lib-es/logic/craftTransaction.d.ts +1 -1
- package/lib-es/logic/craftTransaction.d.ts.map +1 -1
- package/lib-es/logic/getBalance.d.ts +3 -1
- package/lib-es/logic/getBalance.d.ts.map +1 -1
- package/lib-es/logic/getBalance.js +1 -1
- package/lib-es/logic/getBalance.js.map +1 -1
- package/lib-es/logic/getBalance.test.js +1 -1
- package/lib-es/logic/getBalance.test.js.map +1 -1
- package/lib-es/logic/index.d.ts +1 -0
- package/lib-es/logic/index.d.ts.map +1 -1
- package/lib-es/logic/index.js.map +1 -1
- package/lib-es/logic/listOperations.d.ts +2 -2
- package/lib-es/logic/listOperations.d.ts.map +1 -1
- package/lib-es/logic/listOperations.js +1 -0
- package/lib-es/logic/listOperations.js.map +1 -1
- package/lib-es/logic/listOperations.test.js +3 -0
- package/lib-es/logic/listOperations.test.js.map +1 -1
- package/lib-es/types/assets.d.ts +3 -0
- package/lib-es/types/assets.d.ts.map +1 -0
- package/lib-es/types/assets.js +2 -0
- package/lib-es/types/assets.js.map +1 -0
- package/lib-es/types/index.d.ts +1 -0
- package/lib-es/types/index.d.ts.map +1 -1
- package/lib-es/types/index.js +1 -0
- package/lib-es/types/index.js.map +1 -1
- package/package.json +9 -9
- package/src/api/index.integ.test.ts +7 -2
- package/src/api/index.test.ts +34 -5
- package/src/api/index.ts +14 -6
- package/src/bridge/synchronization.ts +5 -2
- package/src/logic/craftTransaction.ts +1 -1
- package/src/logic/getBalance.test.ts +1 -1
- package/src/logic/getBalance.ts +4 -2
- package/src/logic/index.ts +1 -0
- package/src/logic/listOperations.test.ts +5 -1
- package/src/logic/listOperations.ts +5 -4
- package/src/types/assets.ts +3 -0
- package/src/types/index.ts +1 -0
package/src/api/index.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Operation, TransactionIntent } from "@ledgerhq/coin-framework/api/types";
|
|
2
2
|
import * as LogicFunctions from "../logic";
|
|
3
3
|
import { GetTransactionsOptions } from "../network";
|
|
4
|
-
import { NetworkInfo } from "../types";
|
|
5
|
-
import { createApi } from "./index";
|
|
4
|
+
import { NetworkInfo, XrpAsset } from "../types";
|
|
5
|
+
import { createApi, TransactionIntentExtra } from "./index";
|
|
6
6
|
|
|
7
7
|
const mockGetServerInfos = jest.fn().mockResolvedValue({
|
|
8
8
|
info: {
|
|
@@ -183,6 +183,7 @@ describe("listOperations", () => {
|
|
|
183
183
|
// the order is reversed so that the result is always sorted by newest tx first element of the list
|
|
184
184
|
expect(results).toEqual([
|
|
185
185
|
{
|
|
186
|
+
asset: { type: "native" },
|
|
186
187
|
operationIndex: 0,
|
|
187
188
|
tx: {
|
|
188
189
|
hash: "HASH_VALUE",
|
|
@@ -210,6 +211,7 @@ describe("listOperations", () => {
|
|
|
210
211
|
},
|
|
211
212
|
},
|
|
212
213
|
{
|
|
214
|
+
asset: { type: "native" },
|
|
213
215
|
operationIndex: 0,
|
|
214
216
|
tx: {
|
|
215
217
|
hash: "HASH_VALUE",
|
|
@@ -232,6 +234,7 @@ describe("listOperations", () => {
|
|
|
232
234
|
},
|
|
233
235
|
},
|
|
234
236
|
{
|
|
237
|
+
asset: { type: "native" },
|
|
235
238
|
operationIndex: 0,
|
|
236
239
|
tx: {
|
|
237
240
|
hash: "HASH_VALUE",
|
|
@@ -252,7 +255,7 @@ describe("listOperations", () => {
|
|
|
252
255
|
sequence: 1,
|
|
253
256
|
},
|
|
254
257
|
},
|
|
255
|
-
] satisfies Operation<
|
|
258
|
+
] satisfies Operation<XrpAsset>[]);
|
|
256
259
|
},
|
|
257
260
|
);
|
|
258
261
|
});
|
|
@@ -281,7 +284,7 @@ describe("Testing craftTransaction function", () => {
|
|
|
281
284
|
|
|
282
285
|
it("should use custom user fees when user provides it for crafting a transaction", async () => {
|
|
283
286
|
const customFees = 99n;
|
|
284
|
-
await api.craftTransaction({} as TransactionIntent<
|
|
287
|
+
await api.craftTransaction({} as TransactionIntent<XrpAsset>, customFees);
|
|
285
288
|
|
|
286
289
|
expect(logicCraftTransactionSpy).toHaveBeenCalledWith(
|
|
287
290
|
expect.any(Object),
|
|
@@ -292,7 +295,7 @@ describe("Testing craftTransaction function", () => {
|
|
|
292
295
|
});
|
|
293
296
|
|
|
294
297
|
it("should use default fees when user does not provide them for crafting a transaction", async () => {
|
|
295
|
-
await api.craftTransaction({} as TransactionIntent<
|
|
298
|
+
await api.craftTransaction({} as TransactionIntent<XrpAsset>);
|
|
296
299
|
|
|
297
300
|
expect(logicCraftTransactionSpy).toHaveBeenCalledWith(
|
|
298
301
|
expect.any(Object),
|
|
@@ -301,4 +304,30 @@ describe("Testing craftTransaction function", () => {
|
|
|
301
304
|
}),
|
|
302
305
|
);
|
|
303
306
|
});
|
|
307
|
+
|
|
308
|
+
it("should pass memos when user provides it for crafting a transaction", async () => {
|
|
309
|
+
await api.craftTransaction({
|
|
310
|
+
memos: [{ data: "testdata", format: "testformat", type: "testtype" }],
|
|
311
|
+
} as TransactionIntent<XrpAsset, TransactionIntentExtra>);
|
|
312
|
+
|
|
313
|
+
expect(logicCraftTransactionSpy).toHaveBeenCalledWith(
|
|
314
|
+
expect.any(Object),
|
|
315
|
+
expect.objectContaining({
|
|
316
|
+
memos: [{ data: "testdata", format: "testformat", type: "testtype" }],
|
|
317
|
+
}),
|
|
318
|
+
);
|
|
319
|
+
});
|
|
320
|
+
|
|
321
|
+
it("should pass destination tag when user provides it for crafting a transaction", async () => {
|
|
322
|
+
await api.craftTransaction({
|
|
323
|
+
destinationTag: 1337,
|
|
324
|
+
} as TransactionIntent<XrpAsset, TransactionIntentExtra>);
|
|
325
|
+
|
|
326
|
+
expect(logicCraftTransactionSpy).toHaveBeenCalledWith(
|
|
327
|
+
expect.any(Object),
|
|
328
|
+
expect.objectContaining({
|
|
329
|
+
destinationTag: 1337,
|
|
330
|
+
}),
|
|
331
|
+
);
|
|
332
|
+
});
|
|
304
333
|
});
|
package/src/api/index.ts
CHANGED
|
@@ -15,10 +15,11 @@ import {
|
|
|
15
15
|
getNextValidSequence,
|
|
16
16
|
lastBlock,
|
|
17
17
|
listOperations,
|
|
18
|
+
MemoInput,
|
|
18
19
|
} from "../logic";
|
|
19
|
-
import { ListOperationsOptions } from "../types";
|
|
20
|
+
import { ListOperationsOptions, XrpAsset } from "../types";
|
|
20
21
|
|
|
21
|
-
export function createApi(config: XrpConfig): Api<
|
|
22
|
+
export function createApi(config: XrpConfig): Api<XrpAsset> {
|
|
22
23
|
coinConfig.setCoinConfig(() => ({ ...config, status: { type: "active" } }));
|
|
23
24
|
|
|
24
25
|
return {
|
|
@@ -32,8 +33,13 @@ export function createApi(config: XrpConfig): Api<void> {
|
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
35
|
|
|
36
|
+
export type TransactionIntentExtra = {
|
|
37
|
+
destinationTag?: number | null | undefined;
|
|
38
|
+
memos?: MemoInput[];
|
|
39
|
+
};
|
|
40
|
+
|
|
35
41
|
async function craft(
|
|
36
|
-
transactionIntent: TransactionIntent<
|
|
42
|
+
transactionIntent: TransactionIntent<XrpAsset, TransactionIntentExtra>,
|
|
37
43
|
customFees?: bigint,
|
|
38
44
|
): Promise<string> {
|
|
39
45
|
const nextSequenceNumber = await getNextValidSequence(transactionIntent.sender);
|
|
@@ -44,6 +50,8 @@ async function craft(
|
|
|
44
50
|
recipient: transactionIntent.recipient,
|
|
45
51
|
amount: transactionIntent.amount,
|
|
46
52
|
fee: estimatedFees,
|
|
53
|
+
destinationTag: transactionIntent.destinationTag,
|
|
54
|
+
memos: transactionIntent.memos ?? [],
|
|
47
55
|
},
|
|
48
56
|
);
|
|
49
57
|
return tx.serializedTransaction;
|
|
@@ -56,13 +64,13 @@ type PaginationState = {
|
|
|
56
64
|
readonly minHeight: number;
|
|
57
65
|
continueIterations: boolean;
|
|
58
66
|
apiNextCursor?: string;
|
|
59
|
-
accumulator: Operation<
|
|
67
|
+
accumulator: Operation<XrpAsset>[];
|
|
60
68
|
};
|
|
61
69
|
|
|
62
70
|
async function operationsFromHeight(
|
|
63
71
|
address: string,
|
|
64
72
|
minHeight: number,
|
|
65
|
-
): Promise<[Operation<
|
|
73
|
+
): Promise<[Operation<XrpAsset>[], string]> {
|
|
66
74
|
async function fetchNextPage(state: PaginationState): Promise<PaginationState> {
|
|
67
75
|
const options: ListOperationsOptions = {
|
|
68
76
|
limit: state.pageSize,
|
|
@@ -110,7 +118,7 @@ async function operationsFromHeight(
|
|
|
110
118
|
async function operations(
|
|
111
119
|
address: string,
|
|
112
120
|
{ minHeight }: Pagination,
|
|
113
|
-
): Promise<[Operation<
|
|
121
|
+
): Promise<[Operation<XrpAsset>[], string]> {
|
|
114
122
|
// TODO token must be implemented properly (waiting ack from the design document)
|
|
115
123
|
return await operationsFromHeight(address, minHeight);
|
|
116
124
|
}
|
|
@@ -7,7 +7,7 @@ import BigNumber from "bignumber.js";
|
|
|
7
7
|
import { listOperations, parseAPIValue } from "../logic";
|
|
8
8
|
import { getAccountInfo, getServerInfos } from "../network";
|
|
9
9
|
import { ServerInfoResponse } from "../network/types";
|
|
10
|
-
import { AccountInfo } from "../types";
|
|
10
|
+
import { AccountInfo, XrpAsset } from "../types";
|
|
11
11
|
|
|
12
12
|
export const getAccountShape: GetAccountShape = async info => {
|
|
13
13
|
const { address, initialAccount, currency, derivationMode } = info;
|
|
@@ -69,7 +69,10 @@ async function filterOperations(
|
|
|
69
69
|
return operations.map(op => adaptCoreOperationToLiveOperation(accountId, op) satisfies Operation);
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
function adaptCoreOperationToLiveOperation(
|
|
72
|
+
function adaptCoreOperationToLiveOperation(
|
|
73
|
+
accountId: string,
|
|
74
|
+
op: CoreOperation<XrpAsset>,
|
|
75
|
+
): Operation {
|
|
73
76
|
return {
|
|
74
77
|
id: encodeOperationId(accountId, op.tx.hash, op.type),
|
|
75
78
|
hash: op.tx.hash,
|
|
@@ -25,6 +25,6 @@ describe("getBalance", () => {
|
|
|
25
25
|
// Then
|
|
26
26
|
expect(mockGetAccountInfo).toHaveBeenCalledTimes(1);
|
|
27
27
|
expect(mockGetAccountInfo.mock.lastCall[0]).toEqual(address);
|
|
28
|
-
expect(result).toEqual(balance);
|
|
28
|
+
expect(result).toEqual([{ value: balance, asset: { type: "native" } }]);
|
|
29
29
|
});
|
|
30
30
|
});
|
package/src/logic/getBalance.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { Balance } from "@ledgerhq/coin-framework/api/types";
|
|
1
2
|
import { getAccountInfo } from "../network";
|
|
3
|
+
import { XrpAsset } from "../types";
|
|
2
4
|
|
|
3
|
-
export async function getBalance(address: string): Promise<
|
|
5
|
+
export async function getBalance(address: string): Promise<Balance<XrpAsset>[]> {
|
|
4
6
|
const accountInfo = await getAccountInfo(address);
|
|
5
|
-
return BigInt(accountInfo.balance);
|
|
7
|
+
return [{ value: BigInt(accountInfo.balance), asset: { type: "native" } }];
|
|
6
8
|
}
|
package/src/logic/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { broadcast } from "./broadcast";
|
|
2
2
|
export { combine } from "./combine";
|
|
3
3
|
export { craftTransaction } from "./craftTransaction";
|
|
4
|
+
export type { MemoInput } from "./craftTransaction";
|
|
4
5
|
export { estimateFees } from "./estimateFees";
|
|
5
6
|
export { getBalance } from "./getBalance";
|
|
6
7
|
export { lastBlock } from "./lastBlock";
|
|
@@ -3,6 +3,7 @@ import { listOperations } from "./listOperations";
|
|
|
3
3
|
import { RIPPLE_EPOCH } from "./utils";
|
|
4
4
|
import { Marker } from "../network/types";
|
|
5
5
|
import { Operation } from "@ledgerhq/coin-framework/api/types";
|
|
6
|
+
import { XrpAsset } from "../types";
|
|
6
7
|
|
|
7
8
|
const maxHeight = 2;
|
|
8
9
|
const minHeight = 1;
|
|
@@ -220,6 +221,7 @@ describe("listOperations", () => {
|
|
|
220
221
|
expectedType === "IN" ? BigInt(deliveredAmount) : BigInt(deliveredAmount + fee);
|
|
221
222
|
expect(results).toEqual([
|
|
222
223
|
{
|
|
224
|
+
asset: { type: "native" },
|
|
223
225
|
operationIndex: 0,
|
|
224
226
|
tx: {
|
|
225
227
|
fees: BigInt(10),
|
|
@@ -248,6 +250,7 @@ describe("listOperations", () => {
|
|
|
248
250
|
},
|
|
249
251
|
},
|
|
250
252
|
{
|
|
253
|
+
asset: { type: "native" },
|
|
251
254
|
operationIndex: 0,
|
|
252
255
|
tx: {
|
|
253
256
|
hash: "HASH_VALUE",
|
|
@@ -271,6 +274,7 @@ describe("listOperations", () => {
|
|
|
271
274
|
},
|
|
272
275
|
},
|
|
273
276
|
{
|
|
277
|
+
asset: { type: "native" },
|
|
274
278
|
tx: {
|
|
275
279
|
hash: "HASH_VALUE",
|
|
276
280
|
fees: BigInt(10),
|
|
@@ -292,7 +296,7 @@ describe("listOperations", () => {
|
|
|
292
296
|
recipients: [opDestination],
|
|
293
297
|
operationIndex: 0,
|
|
294
298
|
},
|
|
295
|
-
] satisfies Operation<
|
|
299
|
+
] satisfies Operation<XrpAsset>[]);
|
|
296
300
|
},
|
|
297
301
|
);
|
|
298
302
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Operation } from "@ledgerhq/coin-framework/api/types";
|
|
2
2
|
import { getServerInfos, getTransactions, GetTransactionsOptions } from "../network";
|
|
3
3
|
import type { XrplOperation } from "../network/types";
|
|
4
|
-
import { ListOperationsOptions, XrpMemo } from "../types";
|
|
4
|
+
import { ListOperationsOptions, XrpAsset, XrpMemo } from "../types";
|
|
5
5
|
import { RIPPLE_EPOCH } from "./utils";
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -20,7 +20,7 @@ import { RIPPLE_EPOCH } from "./utils";
|
|
|
20
20
|
export async function listOperations(
|
|
21
21
|
address: string,
|
|
22
22
|
{ limit, minHeight, token, order }: ListOperationsOptions,
|
|
23
|
-
): Promise<[Operation<
|
|
23
|
+
): Promise<[Operation<XrpAsset>[], string]> {
|
|
24
24
|
const serverInfo = await getServerInfos();
|
|
25
25
|
const ledgers = serverInfo.info.complete_ledgers.split("-");
|
|
26
26
|
const minLedgerVersion = Number(ledgers[0]);
|
|
@@ -99,7 +99,7 @@ export async function listOperations(
|
|
|
99
99
|
|
|
100
100
|
const convertToCoreOperation =
|
|
101
101
|
(address: string) =>
|
|
102
|
-
(operation: XrplOperation): Operation<
|
|
102
|
+
(operation: XrplOperation): Operation<XrpAsset> => {
|
|
103
103
|
const {
|
|
104
104
|
ledger_hash,
|
|
105
105
|
hash,
|
|
@@ -165,7 +165,8 @@ const convertToCoreOperation =
|
|
|
165
165
|
signingPubKey: SigningPubKey,
|
|
166
166
|
};
|
|
167
167
|
|
|
168
|
-
let op: Operation<
|
|
168
|
+
let op: Operation<XrpAsset> = {
|
|
169
|
+
asset: { type: "native" },
|
|
169
170
|
operationIndex: 0,
|
|
170
171
|
tx: {
|
|
171
172
|
hash: hash,
|
package/src/types/index.ts
CHANGED