1
1
/* eslint-disable sonarjs/no-duplicate-string */
2
2
import * as Ledger from '@cardano-foundation/ledgerjs-hw-app-cardano' ;
3
3
import {
4
- AccountKeyDerivationPath ,
5
4
AddressType ,
6
5
CardanoKeyConst ,
7
6
GroupedAddress ,
7
+ KeyPurpose ,
8
8
KeyRole ,
9
9
TxInId ,
10
10
TxInKeyPathMap ,
@@ -22,23 +22,26 @@ import {
22
22
} from '../testData' ;
23
23
import { Cardano } from '@cardano-sdk/core' ;
24
24
import { Hash28ByteBase16 } from '@cardano-sdk/crypto' ;
25
- import { LedgerTxTransformerContext } from '../../src' ;
26
- import { getKnownAddress , mapCerts } from '../../src/transformers/certificates' ;
25
+ import { LedgerTxTransformerContext , getKnownAddress , mapCerts } from '../../src' ;
27
26
28
27
export const stakeKeyPath = {
29
28
index : 0 ,
29
+ purpose : KeyPurpose . STANDARD ,
30
30
role : KeyRole . Stake
31
31
} ;
32
- const createGroupedAddress = (
33
- address : Cardano . PaymentAddress ,
34
- rewardAccount : Cardano . RewardAccount ,
35
- type : AddressType ,
36
- index : number ,
37
- stakeKeyDerivationPath : AccountKeyDerivationPath
38
- ) : GroupedAddress =>
32
+
33
+ const createGroupedAddress = ( {
34
+ address,
35
+ rewardAccount,
36
+ stakeKeyDerivationPath,
37
+ index,
38
+ purpose,
39
+ type
40
+ } : Omit < GroupedAddress , 'networkId' | 'accountIndex' > ) : GroupedAddress =>
39
41
( {
40
42
address,
41
43
index,
44
+ purpose,
42
45
rewardAccount,
43
46
stakeKeyDerivationPath,
44
47
type
@@ -64,6 +67,7 @@ export const createTxInKeyPathMapMock = (knownAddresses: GroupedAddress[]): TxIn
64
67
const txInId : TxInId = `MockTxIn_${ index } ` as TxInId ; // Mock TxInId creation
65
68
result [ txInId ] = {
66
69
index : address . index ,
70
+ purpose : address . purpose ,
67
71
role : KeyRole . Internal
68
72
} ;
69
73
}
@@ -78,13 +82,42 @@ const mockContext: LedgerTxTransformerContext = {
78
82
handleResolutions : [ ] ,
79
83
80
84
knownAddresses : [
81
- createGroupedAddress ( address1 , ownRewardAccount , AddressType . External , 0 , stakeKeyPath ) ,
82
- createGroupedAddress ( address2 , ownRewardAccount , AddressType . External , 1 , stakeKeyPath )
85
+ createGroupedAddress ( {
86
+ address : address1 ,
87
+ index : 0 ,
88
+ purpose : KeyPurpose . STANDARD ,
89
+ rewardAccount : ownRewardAccount ,
90
+ stakeKeyDerivationPath : stakeKeyPath ,
91
+ type : AddressType . External
92
+ } ) ,
93
+ createGroupedAddress ( {
94
+ address : address2 ,
95
+ index : 1 ,
96
+ purpose : KeyPurpose . STANDARD ,
97
+ rewardAccount : ownRewardAccount ,
98
+ stakeKeyDerivationPath : stakeKeyPath ,
99
+ type : AddressType . External
100
+ } )
83
101
] ,
102
+ purpose : KeyPurpose . STANDARD ,
84
103
sender : undefined ,
85
104
txInKeyPathMap : createTxInKeyPathMapMock ( [
86
- createGroupedAddress ( address1 , ownRewardAccount , AddressType . External , 0 , stakeKeyPath ) ,
87
- createGroupedAddress ( address2 , ownRewardAccount , AddressType . External , 1 , stakeKeyPath )
105
+ createGroupedAddress ( {
106
+ address : address1 ,
107
+ index : 0 ,
108
+ purpose : KeyPurpose . STANDARD ,
109
+ rewardAccount : ownRewardAccount ,
110
+ stakeKeyDerivationPath : stakeKeyPath ,
111
+ type : AddressType . External
112
+ } ) ,
113
+ createGroupedAddress ( {
114
+ address : address2 ,
115
+ index : 1 ,
116
+ purpose : KeyPurpose . STANDARD ,
117
+ rewardAccount : ownRewardAccount ,
118
+ stakeKeyDerivationPath : stakeKeyPath ,
119
+ type : AddressType . External
120
+ } )
88
121
] )
89
122
} ;
90
123
@@ -140,7 +173,7 @@ describe('certificates', () => {
140
173
params : {
141
174
stakeCredential : {
142
175
keyPath : [
143
- util . harden ( CardanoKeyConst . PURPOSE ) ,
176
+ util . harden ( KeyPurpose . STANDARD ) ,
144
177
util . harden ( CardanoKeyConst . COIN_TYPE ) ,
145
178
util . harden ( 0 ) ,
146
179
KeyRole . Stake ,
0 commit comments