kopia lustrzana https://github.com/bugout-dev/moonstream
Merge branch 'main' into event-provider-ethereum-txpool
(added showOnboardingTooltips to EthereumTXPool card rendered in StreamEntry)pull/168/head
commit
91e720fa43
|
@ -442,9 +442,11 @@ const Welcome = () => {
|
|||
mt={20}
|
||||
entry={{
|
||||
event_type: "ethereum_blockchain",
|
||||
from_address: "this is address from",
|
||||
to_address: "this is to address",
|
||||
hash: "this is hash",
|
||||
event_data: {
|
||||
from: "this is address from",
|
||||
to: "this is to address",
|
||||
hash: "this is hash",
|
||||
},
|
||||
}}
|
||||
showOnboardingTooltips={true}
|
||||
/>
|
||||
|
|
|
@ -37,15 +37,24 @@ const StreamEntry_ = ({ entry, showOnboardingTooltips, className }) => {
|
|||
spacing={0}
|
||||
>
|
||||
{entry.event_type === "ethereum_blockchain" && (
|
||||
<EthereumBlockchainCard entry={entry} />
|
||||
<EthereumBlockchainCard
|
||||
entry={entry}
|
||||
showOnboardingTooltips={showOnboardingTooltips}
|
||||
/>
|
||||
)}
|
||||
|
||||
{entry.event_type === "ethereum_whalewatch" && (
|
||||
<EthereumWhalewatchCard entry={entry} />
|
||||
<EthereumWhalewatchCard
|
||||
entry={entry}
|
||||
showOnboardingTooltips={showOnboardingTooltips}
|
||||
/>
|
||||
)}
|
||||
|
||||
{entry.event_type === "ethereum_txpool" && (
|
||||
<EthereumTXPoolCard entry={entry} />
|
||||
<EthereumTXPoolCard
|
||||
entry={entry}
|
||||
showOnboardingTooltips={showOnboardingTooltips}
|
||||
/>
|
||||
)}
|
||||
|
||||
<Flex>
|
||||
|
|
Ładowanie…
Reference in New Issue