Skip to content

Commit

Permalink
fix: support issuerName separate from keyword in add-collateral-core
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Aug 22, 2023
1 parent e6b0ab8 commit 2b75c1b
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ export const defaultProposalBuilder = async (
const {
issuerBoardId = env.INTERCHAIN_ISSUER_BOARD_ID,
denom = env.INTERCHAIN_DENOM,
oracleBrand = 'ATOM',
decimalPlaces = 6,
keyword = 'ATOM',
proposedName = oracleBrand,
issuerName = keyword,
oracleBrand = issuerName,
decimalPlaces = 6,
proposedName = issuerName,
initialPrice = undefined,
} = interchainAssetOptions;

Expand All @@ -45,6 +46,7 @@ export const defaultProposalBuilder = async (
decimalPlaces,
initialPrice,
keyword,
issuerName,
proposedName,
oracleBrand,
},
Expand Down

0 comments on commit 2b75c1b

Please sign in to comment.