6
6
import { u8aToHex } from '@polkadot/util' ;
7
7
8
8
import { TypeRegistry } from '../create/index.js' ;
9
+ import { fallbackExtensions } from './signedExtensions/index.js' ;
9
10
import { GenericExtrinsicPayload as ExtrinsicPayload } from './index.js' ;
10
11
11
12
describe ( 'ExtrinsicPayload' , ( ) : void => {
@@ -21,6 +22,18 @@ describe('ExtrinsicPayload', (): void => {
21
22
tip : '0x00000000000000000000000000005678'
22
23
} ;
23
24
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
+
24
37
it ( 'creates and can re-create from itself (U8a)' , ( ) : void => {
25
38
const a = new ExtrinsicPayload ( registry , TEST , { version : 4 } ) ;
26
39
const b = new ExtrinsicPayload ( registry , a . toU8a ( ) , { version : 4 } ) ;
@@ -37,6 +50,27 @@ describe('ExtrinsicPayload', (): void => {
37
50
expect ( a . toJSON ( ) ) . toEqual ( b . toJSON ( ) ) ;
38
51
} ) ;
39
52
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
+
40
74
it ( 'handles toU8a(true) correctly' , ( ) : void => {
41
75
expect (
42
76
u8aToHex (
0 commit comments