diff --git a/src/components/BuyerSteps/BuyerSearchComponent.vue b/src/components/BuyerSteps/BuyerSearchComponent.vue index 1f66c9c..10cba93 100644 --- a/src/components/BuyerSteps/BuyerSearchComponent.vue +++ b/src/components/BuyerSteps/BuyerSearchComponent.vue @@ -238,7 +238,7 @@ const handleSubmit = async (e: Event): Promise => { height="24" v-if=" selectedDeposits && - selectedDeposits.find((d) => d.network == Networks.rootstockTestnet) + selectedDeposits.find((d) => d.network == Networks.rootstock) " /> +interface Props { + title: string; + value: string; + change?: string; + changeType?: 'positive' | 'negative' | 'neutral'; + icon?: string; + loading?: boolean; +} + +const props = withDefaults(defineProps(), { + changeType: 'neutral', + loading: false +}); + + + + + diff --git a/src/components/Explorer/TransactionTable.vue b/src/components/Explorer/TransactionTable.vue new file mode 100644 index 0000000..e4c38e9 --- /dev/null +++ b/src/components/Explorer/TransactionTable.vue @@ -0,0 +1,279 @@ + + + + + diff --git a/src/components/TopBar/TopBar.vue b/src/components/TopBar/TopBar.vue index 3567f05..518b468 100644 --- a/src/components/TopBar/TopBar.vue +++ b/src/components/TopBar/TopBar.vue @@ -155,6 +155,19 @@ onClickOutside(infoMenuRef, () => { >
+ + + Explorar Transações + + +
+
+