Skip to content

Commit 6316fae

Browse files
authored
Add testing for assetId access from ExtrinsicPayload (#6033)
* Fix ExtrinsicPayload to return correct assetId as its type * add tests and cleanup * revert original deletion and fix test * remove console
1 parent 76ba1e5 commit 6316fae

File tree

2 files changed

+69
-0
lines changed

2 files changed

+69
-0
lines changed

packages/types/src/extrinsic/ExtrinsicPayload.spec.ts

+34
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import { u8aToHex } from '@polkadot/util';
77

88
import { TypeRegistry } from '../create/index.js';
9+
import { fallbackExtensions } from './signedExtensions/index.js';
910
import { GenericExtrinsicPayload as ExtrinsicPayload } from './index.js';
1011

1112
describe('ExtrinsicPayload', (): void => {
@@ -21,6 +22,18 @@ describe('ExtrinsicPayload', (): void => {
2122
tip: '0x00000000000000000000000000005678'
2223
};
2324

25+
const TEST_WITH_ASSET = {
26+
address: '5DTestUPts3kjeXSTMyerHihn1uwMfLj8vU8sqF7qYrFabHE',
27+
assetId: '0x010002043205011f' as `0x${string}`,
28+
blockHash: '0xde8f69eeb5e065e18c6950ff708d7e551f68dc9bf59a07c52367c0280f805ec7',
29+
era: '0x0703',
30+
genesisHash: '0xdcd1346701ca8396496e52aa2785b1748deb6db09551b72159dcb3e08991025b',
31+
method: '0x0600ffd7568e5f0a7eda67a82691ff379ac4bba4f9c9b859fe779b5d46363b61ad2db9e56c',
32+
nonce: '0x00001234',
33+
specVersion: 123,
34+
tip: '0x00000000000000000000000000005678'
35+
};
36+
2437
it('creates and can re-create from itself (U8a)', (): void => {
2538
const a = new ExtrinsicPayload(registry, TEST, { version: 4 });
2639
const b = new ExtrinsicPayload(registry, a.toU8a(), { version: 4 });
@@ -37,6 +50,27 @@ describe('ExtrinsicPayload', (): void => {
3750
expect(a.toJSON()).toEqual(b.toJSON());
3851
});
3952

53+
it('handles assetId correctly', () => {
54+
const reg = new TypeRegistry();
55+
56+
reg.setSignedExtensions(fallbackExtensions.concat(['ChargeAssetTxPayment']));
57+
const ext = new ExtrinsicPayload(reg, TEST_WITH_ASSET, { version: 4 });
58+
59+
expect(ext.assetId.toJSON()).toEqual({
60+
interior: {
61+
x2: [
62+
{
63+
palletInstance: 50
64+
},
65+
{
66+
generalIndex: 1984
67+
}
68+
]
69+
},
70+
parents: 0
71+
});
72+
});
73+
4074
it('handles toU8a(true) correctly', (): void => {
4175
expect(
4276
u8aToHex(

packages/types/src/extrinsic/v4/ExtrinsicPayload.spec.ts

+35
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import rpcMetadata from '@polkadot/types-support/metadata/static-substrate';
77

88
import { TypeRegistry } from '../../create/index.js';
99
import { decorateExtrinsics, Metadata } from '../../metadata/index.js';
10+
import { fallbackExtensions } from '../signedExtensions/index.js';
1011
import { GenericExtrinsicPayloadV4 as ExtrinsicPayload } from './index.js';
1112

1213
const registry = new TypeRegistry();
@@ -36,4 +37,38 @@ describe('ExtrinsicPayload', (): void => {
3637
]
3738
});
3839
});
40+
41+
it('correctly decodes assetId', () => {
42+
const TEST_WITH_ASSET = {
43+
address: '5DTestUPts3kjeXSTMyerHihn1uwMfLj8vU8sqF7qYrFabHE',
44+
assetId: '0x0002043205011f' as `0x${string}`,
45+
blockHash: '0xde8f69eeb5e065e18c6950ff708d7e551f68dc9bf59a07c52367c0280f805ec7',
46+
era: '0x0703',
47+
genesisHash: '0xdcd1346701ca8396496e52aa2785b1748deb6db09551b72159dcb3e08991025b',
48+
method: '0x0600ffd7568e5f0a7eda67a82691ff379ac4bba4f9c9b859fe779b5d46363b61ad2db9e56c',
49+
nonce: '0x00001234',
50+
specVersion: 123,
51+
tip: '0x00000000000000000000000000005678',
52+
transactionVersion: '0x00'
53+
};
54+
55+
const reg = new TypeRegistry();
56+
57+
reg.setSignedExtensions(fallbackExtensions.concat(['ChargeAssetTxPayment']));
58+
const ext = new ExtrinsicPayload(reg, TEST_WITH_ASSET);
59+
60+
expect(ext.assetId.toJSON()).toEqual({
61+
interior: {
62+
x2: [
63+
{
64+
palletInstance: 50
65+
},
66+
{
67+
generalIndex: 1984
68+
}
69+
]
70+
},
71+
parents: 0
72+
});
73+
});
3974
});

0 commit comments

Comments
 (0)