-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
vien.nguyen2-tiki
committed
Feb 2, 2023
1 parent
64399c7
commit a1b01d4
Showing
5 changed files
with
83 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import { CardInfoLabels } from 'utils/enum' | ||
|
||
export const MAIN_FIELD_SORT_ORDER = [ | ||
CardInfoLabels.evmHash, | ||
CardInfoLabels.cosmosHash, | ||
CardInfoLabels.result, | ||
CardInfoLabels.failLog, | ||
CardInfoLabels.revertReason, | ||
CardInfoLabels.memo, | ||
CardInfoLabels.confirmations, | ||
CardInfoLabels.block, | ||
CardInfoLabels.blockHeight, | ||
|
||
CardInfoLabels.time, | ||
|
||
CardInfoLabels.value, | ||
CardInfoLabels.fee, | ||
CardInfoLabels.gasPrice, | ||
CardInfoLabels.typeOfTransfer | ||
] | ||
|
||
export const EXT_FIELD_SORT_ORDER = [ | ||
CardInfoLabels.from, | ||
CardInfoLabels.to, | ||
CardInfoLabels.interactWith, | ||
CardInfoLabels.tokenTransfers, | ||
//msgvote | ||
CardInfoLabels.voter, | ||
CardInfoLabels.proposalId, | ||
CardInfoLabels.option, | ||
//delegate | ||
CardInfoLabels.delegatorAddress, | ||
CardInfoLabels.recipientAddress, | ||
CardInfoLabels.validatorAddress, | ||
//MsgBeginRedelegate | ||
|
||
CardInfoLabels.validatorSrcAddress, | ||
CardInfoLabels.validatorDstAddress, | ||
//MsgExec | ||
CardInfoLabels.grantee, | ||
//MsgCreateValidator | ||
CardInfoLabels.validatorDescription, | ||
CardInfoLabels.commissionRates, | ||
CardInfoLabels.minSelfDelegation, | ||
//MsgTextProposal | ||
CardInfoLabels.textProposalContent, | ||
CardInfoLabels.initialDepositValue, | ||
CardInfoLabels.proposer, | ||
// Msg Deposit | ||
CardInfoLabels.depositor | ||
] | ||
|
||
export const MORE_ITEM_FIELD_SORT_ORDER = [ | ||
CardInfoLabels.gasLimit, | ||
CardInfoLabels.maxFeePerGas, | ||
CardInfoLabels.maxPriorityFeePerGas, | ||
CardInfoLabels.gasUsedByTransaction, | ||
CardInfoLabels.nonce, | ||
CardInfoLabels.rawInput | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters