File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
govtool/frontend/src/components/organisms Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ changes.
1818
1919- hotfix for ada handle and payment address validation order [ Issue 3155] ( https://github.com/IntersectMBO/govtool/issues/3155 )
2020- fix proposal list performance by pre-filtering active proposals [ Issue 3190] ( https://github.com/IntersectMBO/govtool/issues/3190 )
21+ - Fix wrong prefix of script based dreps in CIP-129 standard [ Issue 3203] ( https://github.com/IntersectMBO/govtool/issues/3203 )
2122
2223### Changed
2324
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export const DRepCard = ({
6262
6363 const cip129Identifier = encodeCIP129Identifier ( {
6464 txID : `${ isScriptBased ? "23" : "22" } ${ drepId } ` ,
65- bech32Prefix : isScriptBased ? "drep_script" : "drep" ,
65+ bech32Prefix : "drep" ,
6666 } ) ;
6767
6868 const base64Image = getBase64ImageDetails ( image ?? "" ) ;
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ export const DRepDetailsCard = ({
117117 < CopyableText
118118 value = { encodeCIP129Identifier ( {
119119 txID : `${ isScriptBased ? "23" : "22" } ${ drepId } ` ,
120- bech32Prefix : isScriptBased ? "drep_script" : "drep" ,
120+ bech32Prefix : "drep" ,
121121 } ) }
122122 dataTestId = "copy-cip-129-drep-id-button"
123123 />
You can’t perform that action at this time.
0 commit comments