diff --git a/lib/sanbase/major_topics/legacy_seed.ex b/lib/sanbase/major_topics/legacy_seed.ex deleted file mode 100644 index 2c94bc0cbd..0000000000 --- a/lib/sanbase/major_topics/legacy_seed.ex +++ /dev/null @@ -1,255 +0,0 @@ -defmodule Sanbase.MajorTopics.LegacySeed do - @moduledoc """ - One-off importer for historical major-topics batches that lived in the - sanbase-app frontend repo as `data-.ts` modules. Each JSON file under - `priv/repo/major_topics_seed/` becomes one published weekly batch with - `source: "legacy-frontend"` and `version: `. - - Run from a remote console after the JSON files are deployed: - - Sanbase.MajorTopics.LegacySeed.run() - - Idempotent — existing `(source, version)` batches are skipped. The seed - directory, JSON files, and this module are intended to be removed in a - follow-up PR once the import is verified in production. - """ - - require Logger - - alias Sanbase.MajorTopics.MajorTopic - alias Sanbase.MajorTopics.TopicBatch - alias Sanbase.Repo - - @source "legacy-frontend" - @granularity TopicBatch.week_granularity() - - # Files using "MMM DD, HH:MM" labels don't encode the year. Determined by - # matching neighboring files' weeks. - @year_overrides %{1 => 2023, 2 => 2024} - - @month_map %{ - "Jan" => 1, - "Feb" => 2, - "Mar" => 3, - "Apr" => 4, - "May" => 5, - "Jun" => 6, - "Jul" => 7, - "Aug" => 8, - "Sep" => 9, - "Oct" => 10, - "Nov" => 11, - "Dec" => 12 - } - - def seed_dir do - Path.join([:code.priv_dir(:sanbase), "repo", "major_topics_seed"]) - end - - @spec run() :: map() - def run do - files = - seed_dir() - |> File.ls!() - |> Enum.filter(&String.match?(&1, ~r/^data-\d+\.json$/)) - |> Enum.sort_by(&file_number/1) - - Logger.info("[legacy_seed] importing #{length(files)} files from #{seed_dir()}") - - summary = %{inserted: 0, skipped: 0, failed: 0, errors: []} - - Enum.reduce(files, summary, fn file, acc -> - version = file_number(file) - - case import_file(Path.join(seed_dir(), file), version) do - :ok -> - %{acc | inserted: acc.inserted + 1} - - :skipped -> - %{acc | skipped: acc.skipped + 1} - - {:error, reason} -> - Logger.error("[legacy_seed] failed #{file}: #{inspect(reason)}") - %{acc | failed: acc.failed + 1, errors: [{file, reason} | acc.errors]} - end - end) - |> tap(fn s -> - Logger.info("[legacy_seed] done: #{inspect(Map.delete(s, :errors))}") - end) - end - - defp file_number(name) do - [_, n] = Regex.run(~r/data-(\d+)/, name) - String.to_integer(n) - end - - defp import_file(path, version) do - case Repo.get_by(TopicBatch, source: @source, version: version) do - %TopicBatch{} -> - :skipped - - nil -> - with {:ok, raw} <- File.read(path), - {:ok, payload} <- Jason.decode(raw), - {:ok, parsed} <- parse_payload(payload, version) do - insert_batch(parsed, version) - end - end - end - - defp insert_batch(parsed, version) do - now = DateTime.utc_now() |> DateTime.truncate(:second) - - Repo.transaction(fn -> - batch_attrs = %{ - source: @source, - interval_text: "#{parsed.interval_start}/#{parsed.interval_end}", - interval_start: parsed.interval_start, - interval_end: parsed.interval_end, - version: version, - type: "legacy", - granularity: @granularity, - state: TopicBatch.published_state(), - fetched_at: now - } - - batch = - %TopicBatch{} - |> TopicBatch.changeset(batch_attrs) - |> Ecto.Changeset.put_change(:published_at, now) - |> Repo.insert!() - - Enum.with_index(parsed.topics) - |> Enum.each(fn {topic, idx} -> - %MajorTopic{} - |> MajorTopic.changeset(%{ - batch_id: batch.id, - ch_id: "legacy-#{version}-#{idx}", - topic_id: idx, - label: topic.label, - original_label: topic.label, - top_words: topic.top_words, - description: topic.description, - is_crypto_relevant: true, - position: idx, - values: topic.values - }) - |> Repo.insert!() - end) - - :ok - end) - |> case do - {:ok, :ok} -> :ok - {:error, reason} -> {:error, reason} - end - end - - defp parse_payload(%{"labels" => labels, "datasets" => datasets}, version) - when is_list(labels) and is_list(datasets) do - with {:ok, dts} <- parse_labels(labels, version) do - [first | _] = dts - last = List.last(dts) - - topics = - Enum.map(datasets, fn d -> - top_words = Map.get(d, "topics", "") - label = d |> Map.get("label", "") |> default_label(top_words) - - %{ - label: label, - top_words: top_words, - description: Map.get(d, "description", ""), - values: build_values(dts, Map.get(d, "data", [])) - } - end) - - {:ok, - %{ - interval_start: DateTime.to_date(first), - interval_end: DateTime.to_date(last), - topics: topics - }} - end - end - - defp parse_payload(other, _v), do: {:error, {:bad_payload, other}} - - defp build_values(dts, data) do - Enum.zip(dts, data) - |> Enum.map(fn {dt, v} -> - %{"dt" => DateTime.to_iso8601(dt), "value" => to_number(v)} - end) - end - - defp to_number(n) when is_number(n), do: n - defp to_number(_), do: 0 - - defp default_label(label, top_words) when is_binary(label) do - case String.trim(label) do - "" -> top_words - trimmed -> trimmed - end - end - - defp default_label(_, top_words), do: top_words - - defp parse_labels(labels, version) do - labels - |> Enum.with_index() - |> Enum.reduce_while({:ok, []}, fn {label, idx}, {:ok, acc} -> - case parse_label(label, version, idx) do - {:ok, dt} -> {:cont, {:ok, [dt | acc]}} - {:error, _} = e -> {:halt, e} - end - end) - |> case do - {:ok, rev} -> {:ok, Enum.reverse(rev)} - err -> err - end - end - - defp parse_label(<>, _version, idx) - when d1 in ?0..?9 and d2 in ?0..?9 and m1 in ?0..?9 and m2 in ?0..?9 and - y1 in ?0..?9 and y2 in ?0..?9 do - day = String.to_integer(<>) - month = String.to_integer(<>) - year = 2000 + String.to_integer(<>) - - with {:ok, date} <- Date.new(year, month, day), - {:ok, dt} <- DateTime.new(date, ~T[00:00:00], "Etc/UTC") do - {:ok, DateTime.add(dt, idx, :second)} - end - end - - defp parse_label(label, version, _idx) when is_binary(label) do - case Regex.named_captures( - ~r/^(?[A-Z][a-z]{2}) (?\d{1,2}), (?\d{1,2}):(?\d{2})$/, - label - ) do - %{"mon" => mon, "day" => day, "h" => h, "m" => m} -> - case Map.fetch(@year_overrides, version) do - {:ok, year} -> - with {:ok, month} <- month_from_abbr(mon), - {:ok, date} <- Date.new(year, month, String.to_integer(day)), - {:ok, time} <- Time.new(String.to_integer(h), String.to_integer(m), 0), - {:ok, dt} <- DateTime.new(date, time, "Etc/UTC") do - {:ok, dt} - end - - :error -> - {:error, {:no_year_override, version, label}} - end - - nil -> - {:error, {:unrecognized_label, label}} - end - end - - defp month_from_abbr(abbr) do - case Map.fetch(@month_map, abbr) do - {:ok, m} -> {:ok, m} - :error -> {:error, {:unknown_month, abbr}} - end - end -end diff --git a/priv/repo/major_topics_seed/convert.js b/priv/repo/major_topics_seed/convert.js deleted file mode 100644 index 86ddc41738..0000000000 --- a/priv/repo/major_topics_seed/convert.js +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env node -// Convert every data-*.ts in this directory to data-*.json. -// The .ts files are `export const NARRATIVES = { labels, datasets }` modules. -// They use single quotes and trailing commas, so JSON.parse can't handle them -// directly — we strip the `export const X = ` prefix and eval the rest as a JS -// object literal. The output JSON normalizes everything to standard form. - -const fs = require("fs"); -const path = require("path"); - -const dir = __dirname; -const files = fs - .readdirSync(dir) - .filter((f) => /^data-\d+\.ts$/.test(f)) - .sort((a, b) => fileNumber(a) - fileNumber(b)); - -function fileNumber(name) { - return parseInt(name.match(/\d+/)[0], 10); -} - -let written = 0; -let failed = 0; - -for (const f of files) { - const srcPath = path.join(dir, f); - let src = fs.readFileSync(srcPath, "utf8"); - - src = src.replace(/^\s*export\s+const\s+\w+\s*=\s*/, ""); - src = src.replace(/;\s*$/, "").trim(); - - let obj; - try { - obj = (0, eval)("(" + src + ")"); - } catch (e) { - console.error("[fail]", f, "—", e.message); - failed++; - continue; - } - - if (!obj || !Array.isArray(obj.labels) || !Array.isArray(obj.datasets)) { - console.error("[fail]", f, "— missing labels/datasets"); - failed++; - continue; - } - - const out = { - labels: obj.labels, - datasets: obj.datasets.map((d) => ({ - label: d.label, - topics: d.topics, - description: d.description, - data: d.data, - })), - }; - - const jsonName = f.replace(/\.ts$/, ".json"); - fs.writeFileSync(path.join(dir, jsonName), JSON.stringify(out)); - written++; -} - -console.log(`Wrote ${written} JSON files, ${failed} failures.`); diff --git a/priv/repo/major_topics_seed/data-1.json b/priv/repo/major_topics_seed/data-1.json deleted file mode 100644 index 1ad0166e48..0000000000 --- a/priv/repo/major_topics_seed/data-1.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["Jul 28, 20:54","Jul 29, 01:10","Jul 29, 05:20","Jul 29, 09:31","Jul 29, 13:41","Jul 29, 17:52","Jul 30, 22:02","Jul 30, 02:12","Jul 30, 06:23","Jul 30, 10:33","Jul 30, 14:44","Jul 30, 18:54","Jul 31, 23:05","Jul 31, 03:15","Jul 31, 07:25","Jul 31, 11:36","Jul 31, 15:46","Jul 31, 19:57","Aug 01, 00:07","Aug 01, 04:17","Aug 01, 08:28","Aug 01, 12:38","Aug 01, 16:49"],"datasets":[{"label":"Curve and Vyper exploit","topics":"exploit,vyper,curv,pool,vulner","description":"BNB Smart Chain exploit: There is an ongoing discussion about an exploit on the BNB Smart Chain, which is attributed to a flaw in the Vyper programming language. This is compared to previous security breaches on Ethereum. ","data":[25,15,10,6,12,16,5,15,15,11,12,14,24,4,24,2,14,14,11,4,28,16,11]},{"label":"Cardano","topics":"xrp,ada,rippl,cardano,xlm","description":"Based on the messages from social media, it appears that there is a lot of discussion and interest in ADA (Cardano) within the crypto community. The messages mention various hashtags related to ADA, such as #ADA, #ADAUSD, and #ADAUSDT, indicating that there is active trading and speculation surrounding the cryptocurrency. One message highlights a crypto analyst''s expectation that Cardano will \"absolutely explode\" in the next bull market, suggesting a positive outlook for ADA''s future performance. Additionally, there are mentions of significant amounts of ADA being moved to Single Pool Operators (SPF0) from Multi-Pool Operators, which is seen as a positive development for the network''s decentralization and the value proposition of ADA. Overall, the messages indicate a positive sentiment towards ADA, with discussions focusing on its potential for growth and its role within the Cardano community.","data":[18,10,7,13,7,13,13,12,13,18,10,10,12,12,12,10,14,8,13,12,16,7,12]},{"label":"NFT","topics":"nfts,nft,litit,skelaz,web","description":"From analyzing social media accounts and communities related to the crypto industry, the key topics currently being discussed include Web3, Crypto, and NFTs. When people hear the word NFT, they think about various things such as litit, skelaz, web, aiart, neon, collect, art, and nftcommun. Additionally, there is a question about what true leadership looks like to individuals.","data":[9,5,12,9,10,5,6,11,8,8,10,7,10,4,5,6,4,5,12,7,8,7,9]},{"label":"Curve founder's loan","topics":"crv,curv,loan,egorov,founder","description":"According to the messages from various social media platforms, there are discussions about the cryptocurrency $CRV and its founder''s involvement in taking loans. It is mentioned that the founder of Curve, the protocol associated with $CRV, has taken loans with AAVE, which puts both AAVE and $CRV at risk. However, it is noted that AAVE has a security fund that is sufficient to remain solvent, so the main risk lies with $CRV. The founder has reportedly cashed out after selling $CRV to eager buyers and has repaid $9.2 million in Aave loans. Despite this repayment, there are still concerns and risks associated with the loan renegotiation and potential interest liability. ","data":[5,15,8,2,7,5,5,8,10,6,10,8,8,5,12,3,1,15,3,5,14,10,8]},{"label":"Litecoin halving","topics":"halv,litecoin,ltc,litecoinhalv,countdown","description":"The Litecoin halving is scheduled to occur in 3 days, and there is speculation about whether it will lead to a small bull run. The halving refers to the reduction in block rewards given to miners or pools when a Litecoin block is solved. This event is predetermined in the Litecoin protocol. In other crypto news, there have been halvings for Litecoin (LTC) and HNT, as well as updates on Steam Exchange, BabyDogeCoin token burn, and more. Overall, there is anticipation and excitement surrounding the upcoming Litecoin halving, and it is being discussed in various social media platforms such as Twitter.","data":[12,7,6,5,5,5,9,10,13,8,7,5,5,9,8,6,12,7,8,7,3,7,7]},{"label":"BASE and meme coins","topics":"bald,meme,pepemo,memecoin,base","description":"Based on the messages provided, there are several key topics being discussed in the crypto industry: 1. \"Base\" - There is a mention of \"Base chain\" and a reference to \"BuildOnBase.\" It seems that there are interesting developments happening with Base, possibly related to the launch of a decentralized exchange (DEX) by SushiSwap. 2. Meme Coins - The messages mention meme coins and question whether they are good or bad. There is also a video suggested to learn about what people have been doing wrong with meme coins, indicating that people may be losing money on them. 3. Buying the Dip - There is a mention of waiting for the dip before buying, suggesting a strategy of purchasing assets when their prices are lower. 4. Interesting Developments - The messages hint at interesting developments happening with Base and SushiSwap, possibly related to the launch of a DEX. Overall, the messages indicate a focus on investment opportunities, particularly in relation to Base, meme coins, and potential ticker symbols. There is also a suggestion to watch a video to learn more about investing in meme coins.","data":[9,7,7,2,5,9,4,12,7,8,4,12,8,10,5,2,6,7,6,3,8,9,9]},{"label":"SEC: Ripple and Terraform Labs","topics":"sec,coinbas,richard,heart,delist","description":"The ruling found that crypto \"falls far short\" of having the significance needed for Congress to review regulation. This ruling is considered to have a high impact on the crypto industry. The judge presiding over the SEC/Terraform Labs case rejected the approach taken in the Ripple ruling. There is speculation about whether Ripple actually won the SEC lawsuit and if there is clarity with XRP. A bankruptcy judge has signed off on an order allowing Terraform Labs to subpoena FTX entities. U.S. Judge Jed Rakoff rejects the SEC''s Ripple approach in the Terraform Labs case. Gary Gensler, the SEC chairman, remains ignorant of cryptocurrency but raises some valid points. There is a lawsuit against a biotech company regarding the unauthorized use of a sample taken from Henrietta Lacks. Gary Gensler, dodging a response to the Ripple judgment, chose a different narrative. There have been two major crypto bills that have had success in the US Congress. The SEC has sued a crypto founder for using funds on luxury purchases. There is a bankruptcy tussle between crypto firms FTX and Genesis that is nearing resolution.","data":[32,32,19,6,13,27,11,9,22,28,12,23,31,7,31,6,11,24,9,8,30,34,28]},{"label":"SHIB perspectives","topics":"shibarium,shib,shiba,inu,bone","description":"Based on the given messages and the set of words, it appears that the key topics being discussed are the burning of $SHIB tokens, and the potential growth of $SHIB in comparison to other cryptocurrencies like $BTC and $ETH. The burning of $SHIB tokens is highlighted, with a mention of a 2 billion $SHIB burn in July. This burning process seems to have positively impacted the profitability of $SHIB, as it has gained more than 8% in the last 7 days, outperforming $BTC and $ETH. The message also raises the question of whether $SHIB, as the second biggest memecoin, will be able to enter the top 10 club soon. This suggests that there is speculation and interest in the potential growth and success of $SHIB. Overall, the key topics discussed in the social media messages revolve around the burning of $SHIB tokens, and the potential growth of $SHIB in the cryptocurrency market.","data":[3,2,5,12,8,2,13,4,8,5,2,6,10,7,7,12,3,8,7,9,6,2,8]},{"label":"HEX and Richard Heart","topics":"pulsechain,hex,pls,plsx,hexican","description":"The social media messages analyzed include discussions about the crypto industry, specifically focusing on topics related to PulseChain, HEX, PLS, PLSX, HEXican, RichardHeart, PulseX, Puls, dip, and ehex. Additionally, there is a mention of an upcoming discussion about RichardHeart, HEX, and PulseChain on a big screen at RegalMovies.","data":[4,12,8,3,4,5,6,5,10,9,1,10,7,5,13,3,3,11,1,2,7,7,12]},{"label":"Trump, DeSantis and GOP","topics":"trump,desanti,gop,candid,ron","description":"Based on the given messages from social media platforms, here are the key topics discussed: 1. Republican candidate wants to end President Biden''s supposed ''war on Bitcoin'' if elected: Gov. Ron DeSantis (R-FL) expressed his intention to end President Biden''s perceived negative stance on Bitcoin and cryptocurrency if he becomes president. 2. #DonaldTrump indicted for his attempts to overturn the 2020 presidential election: There are allegations and claims suggesting that former President Donald Trump was involved in and instructed attempts to defraud the 2020 presidential election. 3. Republicans are very unserious: There is a statement implying that Republicans are not serious or lack seriousness in their actions or approach. 4. Republicans stay 🚩: The use of an emoji suggests that Republicans are being watched or monitored closely. 5. Republicans = Russians 🚩: There is an insinuation or claim that Republicans are equivalent to Russians, possibly implying a connection or similarity between the two. 6. Insider: Perry Johnson giving out gas cards to get on GOP debate stage: There is a report about Republican presidential candidate Perry Johnson distributing gas cards as a means to secure a place on the GOP debate stage. Overall, the discussions revolve around Republican candidates, their stance on Bitcoin, allegations against former President Donald Trump, and some negative perceptions or claims about Republicans in general.","data":[2,4,12,4,5,3,2,5,5,12,9,11,7,2,3,2,2,8,5,7,5,12,10]},{"label":"BALD being rugged","topics":"bald,rug,shitcoin,pull,hair","description":"The social media messages analyzed include discussions about a cryptocurrency called Bald ($BALD). There is mention of the coin being rugged, possibly created by @SBF_FTX, and speculation about it being a direct shot at someone''s bad hair. There is also a brief description of Bald as a stablecoin launched in 2022, designed to be tied to an external value like gold or the US dollar, and the recent disturbances it has faced.","data":[4,11,3,1,5,4,3,8,9,3,3,8,14,4,5,3,5,8,6,6,6,5,9]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-1.ts b/priv/repo/major_topics_seed/data-1.ts deleted file mode 100644 index 8ea5929ca4..0000000000 --- a/priv/repo/major_topics_seed/data-1.ts +++ /dev/null @@ -1,111 +0,0 @@ -export const NARRATIVES = { - labels: [ - 'Jul 28, 20:54', - 'Jul 29, 01:10', - 'Jul 29, 05:20', - 'Jul 29, 09:31', - 'Jul 29, 13:41', - 'Jul 29, 17:52', - 'Jul 30, 22:02', - 'Jul 30, 02:12', - 'Jul 30, 06:23', - 'Jul 30, 10:33', - 'Jul 30, 14:44', - 'Jul 30, 18:54', - 'Jul 31, 23:05', - 'Jul 31, 03:15', - 'Jul 31, 07:25', - 'Jul 31, 11:36', - 'Jul 31, 15:46', - 'Jul 31, 19:57', - 'Aug 01, 00:07', - 'Aug 01, 04:17', - 'Aug 01, 08:28', - 'Aug 01, 12:38', - 'Aug 01, 16:49', - ], - - datasets: [ - { - // 10 - label: 'Curve and Vyper exploit', - topics: 'exploit,vyper,curv,pool,vulner', - data: [25, 15, 10, 6, 12, 16, 5, 15, 15, 11, 12, 14, 24, 4, 24, 2, 14, 14, 11, 4, 28, 16, 11], - description: `BNB Smart Chain exploit: There is an ongoing discussion about an exploit on the BNB Smart Chain, which is attributed to a flaw in the Vyper programming language. This is compared to previous security breaches on Ethereum. `, - }, - { - // 12 - label: 'Cardano', - topics: 'xrp,ada,rippl,cardano,xlm', - data: [ - 18, 10, 7, 13, 7, 13, 13, 12, 13, 18, 10, 10, 12, 12, 12, 10, 14, 8, 13, 12, 16, 7, 12, - ], - description: `Based on the messages from social media, it appears that there is a lot of discussion and interest in ADA (Cardano) within the crypto community. The messages mention various hashtags related to ADA, such as #ADA, #ADAUSD, and #ADAUSDT, indicating that there is active trading and speculation surrounding the cryptocurrency. One message highlights a crypto analyst''s expectation that Cardano will "absolutely explode" in the next bull market, suggesting a positive outlook for ADA''s future performance. Additionally, there are mentions of significant amounts of ADA being moved to Single Pool Operators (SPF0) from Multi-Pool Operators, which is seen as a positive development for the network''s decentralization and the value proposition of ADA. Overall, the messages indicate a positive sentiment towards ADA, with discussions focusing on its potential for growth and its role within the Cardano community.`, - }, - { - // 22 - label: 'NFT', - topics: 'nfts,nft,litit,skelaz,web', - data: [9, 5, 12, 9, 10, 5, 6, 11, 8, 8, 10, 7, 10, 4, 5, 6, 4, 5, 12, 7, 8, 7, 9], - description: `From analyzing social media accounts and communities related to the crypto industry, the key topics currently being discussed include Web3, Crypto, and NFTs. When people hear the word NFT, they think about various things such as litit, skelaz, web, aiart, neon, collect, art, and nftcommun. Additionally, there is a question about what true leadership looks like to individuals.`, - }, - { - // 24 - label: "Curve founder's loan", - topics: 'crv,curv,loan,egorov,founder', - data: [5, 15, 8, 2, 7, 5, 5, 8, 10, 6, 10, 8, 8, 5, 12, 3, 1, 15, 3, 5, 14, 10, 8], - description: `According to the messages from various social media platforms, there are discussions about the cryptocurrency $CRV and its founder''s involvement in taking loans. It is mentioned that the founder of Curve, the protocol associated with $CRV, has taken loans with AAVE, which puts both AAVE and $CRV at risk. However, it is noted that AAVE has a security fund that is sufficient to remain solvent, so the main risk lies with $CRV. The founder has reportedly cashed out after selling $CRV to eager buyers and has repaid $9.2 million in Aave loans. Despite this repayment, there are still concerns and risks associated with the loan renegotiation and potential interest liability. `, - }, - { - // 25 - label: 'Litecoin halving', - topics: 'halv,litecoin,ltc,litecoinhalv,countdown', - data: [12, 7, 6, 5, 5, 5, 9, 10, 13, 8, 7, 5, 5, 9, 8, 6, 12, 7, 8, 7, 3, 7, 7], - description: `The Litecoin halving is scheduled to occur in 3 days, and there is speculation about whether it will lead to a small bull run. The halving refers to the reduction in block rewards given to miners or pools when a Litecoin block is solved. This event is predetermined in the Litecoin protocol. In other crypto news, there have been halvings for Litecoin (LTC) and HNT, as well as updates on Steam Exchange, BabyDogeCoin token burn, and more. Overall, there is anticipation and excitement surrounding the upcoming Litecoin halving, and it is being discussed in various social media platforms such as Twitter.`, - }, - { - // 27 - label: 'BASE and meme coins', - topics: 'bald,meme,pepemo,memecoin,base', - data: [9, 7, 7, 2, 5, 9, 4, 12, 7, 8, 4, 12, 8, 10, 5, 2, 6, 7, 6, 3, 8, 9, 9], - description: `Based on the messages provided, there are several key topics being discussed in the crypto industry: 1. "Base" - There is a mention of "Base chain" and a reference to "BuildOnBase." It seems that there are interesting developments happening with Base, possibly related to the launch of a decentralized exchange (DEX) by SushiSwap. 2. Meme Coins - The messages mention meme coins and question whether they are good or bad. There is also a video suggested to learn about what people have been doing wrong with meme coins, indicating that people may be losing money on them. 3. Buying the Dip - There is a mention of waiting for the dip before buying, suggesting a strategy of purchasing assets when their prices are lower. 4. Interesting Developments - The messages hint at interesting developments happening with Base and SushiSwap, possibly related to the launch of a DEX. Overall, the messages indicate a focus on investment opportunities, particularly in relation to Base, meme coins, and potential ticker symbols. There is also a suggestion to watch a video to learn more about investing in meme coins.`, - }, - { - // 2 - label: 'SEC: Ripple and Terraform Labs', - topics: 'sec,coinbas,richard,heart,delist', - data: [32, 32, 19, 6, 13, 27, 11, 9, 22, 28, 12, 23, 31, 7, 31, 6, 11, 24, 9, 8, 30, 34, 28], - description: `The ruling found that crypto "falls far short" of having the significance needed for Congress to review regulation. This ruling is considered to have a high impact on the crypto industry. The judge presiding over the SEC/Terraform Labs case rejected the approach taken in the Ripple ruling. There is speculation about whether Ripple actually won the SEC lawsuit and if there is clarity with XRP. A bankruptcy judge has signed off on an order allowing Terraform Labs to subpoena FTX entities. U.S. Judge Jed Rakoff rejects the SEC''s Ripple approach in the Terraform Labs case. Gary Gensler, the SEC chairman, remains ignorant of cryptocurrency but raises some valid points. There is a lawsuit against a biotech company regarding the unauthorized use of a sample taken from Henrietta Lacks. Gary Gensler, dodging a response to the Ripple judgment, chose a different narrative. There have been two major crypto bills that have had success in the US Congress. The SEC has sued a crypto founder for using funds on luxury purchases. There is a bankruptcy tussle between crypto firms FTX and Genesis that is nearing resolution.`, - }, - { - // 30 - label: 'SHIB perspectives', - topics: 'shibarium,shib,shiba,inu,bone', - data: [3, 2, 5, 12, 8, 2, 13, 4, 8, 5, 2, 6, 10, 7, 7, 12, 3, 8, 7, 9, 6, 2, 8], - description: `Based on the given messages and the set of words, it appears that the key topics being discussed are the burning of $SHIB tokens, and the potential growth of $SHIB in comparison to other cryptocurrencies like $BTC and $ETH. The burning of $SHIB tokens is highlighted, with a mention of a 2 billion $SHIB burn in July. This burning process seems to have positively impacted the profitability of $SHIB, as it has gained more than 8% in the last 7 days, outperforming $BTC and $ETH. The message also raises the question of whether $SHIB, as the second biggest memecoin, will be able to enter the top 10 club soon. This suggests that there is speculation and interest in the potential growth and success of $SHIB. Overall, the key topics discussed in the social media messages revolve around the burning of $SHIB tokens, and the potential growth of $SHIB in the cryptocurrency market.`, - }, - { - // 31 - label: 'HEX and Richard Heart', - topics: 'pulsechain,hex,pls,plsx,hexican', - data: [4, 12, 8, 3, 4, 5, 6, 5, 10, 9, 1, 10, 7, 5, 13, 3, 3, 11, 1, 2, 7, 7, 12], - description: `The social media messages analyzed include discussions about the crypto industry, specifically focusing on topics related to PulseChain, HEX, PLS, PLSX, HEXican, RichardHeart, PulseX, Puls, dip, and ehex. Additionally, there is a mention of an upcoming discussion about RichardHeart, HEX, and PulseChain on a big screen at RegalMovies.`, - }, - { - // 34 - label: 'Trump, DeSantis and GOP', - topics: 'trump,desanti,gop,candid,ron', - data: [2, 4, 12, 4, 5, 3, 2, 5, 5, 12, 9, 11, 7, 2, 3, 2, 2, 8, 5, 7, 5, 12, 10], - description: `Based on the given messages from social media platforms, here are the key topics discussed: 1. Republican candidate wants to end President Biden''s supposed ''war on Bitcoin'' if elected: Gov. Ron DeSantis (R-FL) expressed his intention to end President Biden''s perceived negative stance on Bitcoin and cryptocurrency if he becomes president. 2. #DonaldTrump indicted for his attempts to overturn the 2020 presidential election: There are allegations and claims suggesting that former President Donald Trump was involved in and instructed attempts to defraud the 2020 presidential election. 3. Republicans are very unserious: There is a statement implying that Republicans are not serious or lack seriousness in their actions or approach. 4. Republicans stay 🚩: The use of an emoji suggests that Republicans are being watched or monitored closely. 5. Republicans = Russians 🚩: There is an insinuation or claim that Republicans are equivalent to Russians, possibly implying a connection or similarity between the two. 6. Insider: Perry Johnson giving out gas cards to get on GOP debate stage: There is a report about Republican presidential candidate Perry Johnson distributing gas cards as a means to secure a place on the GOP debate stage. Overall, the discussions revolve around Republican candidates, their stance on Bitcoin, allegations against former President Donald Trump, and some negative perceptions or claims about Republicans in general.`, - }, - { - // 36 - label: 'BALD being rugged', - topics: 'bald,rug,shitcoin,pull,hair', - data: [4, 11, 3, 1, 5, 4, 3, 8, 9, 3, 3, 8, 14, 4, 5, 3, 5, 8, 6, 6, 6, 5, 9], - description: `The social media messages analyzed include discussions about a cryptocurrency called Bald ($BALD). There is mention of the coin being rugged, possibly created by @SBF_FTX, and speculation about it being a direct shot at someone''s bad hair. There is also a brief description of Bald as a stablecoin launched in 2022, designed to be tied to an external value like gold or the US dollar, and the recent disturbances it has faced.`, - }, - ].map((v, i) => { - return { ...v, i } - }), -} diff --git a/priv/repo/major_topics_seed/data-10.json b/priv/repo/major_topics_seed/data-10.json deleted file mode 100644 index 99b412cb60..0000000000 --- a/priv/repo/major_topics_seed/data-10.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["07.03.24","08.03.24","08.03.24","08.03.24","08.03.24","08.03.24","08.03.24","08.03.24","09.03.24","09.03.24","09.03.24","09.03.24","09.03.24","09.03.24","09.03.24","09.03.24","10.03.24","10.03.24","10.03.24","10.03.24","10.03.24","10.03.24","10.03.24","10.03.24","11.03.24","11.03.24","11.03.24","11.03.24","11.03.24","11.03.24","11.03.24","11.03.24","12.03.24","12.03.24","12.03.24","12.03.24","12.03.24","12.03.24","12.03.24","12.03.24","13.03.24","13.03.24","13.03.24","13.03.24","13.03.24","13.03.24","13.03.24","13.03.24","14.03.24","14.03.24","14.03.24","14.03.24","14.03.24","14.03.24","14.03.24"],"datasets":[{"label":"SOLANA","topics":"solana,sol,memes,solama,memecoin","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana (SOL) maturing and having discussions on Dapps alignment\n2. Solana creating millionaires in a short period\n3. Solana being compared to Ethereum for this cycle\n4. Solana's path to ETF approval and market sentiment\n5. Solana's popularity for meme coins and low gas fees\n6. Solana's IDOs on Arbitrum\n7. Memecoin craze and DeFi mania\n8. A cryptocurrency trader turning $1.8K into $11 million with Dogwifhat (WIF)\n9. Influencers promoting Solana and MagicEden exchange\n10. Giveaways and airdrop season in the crypto industry\n\nOverall, Solana seems to be a hot topic of discussion with its growing popularity and potential for significant gains in the market.","data":[8,1,10,10,1,1,3,7,11,6,15,14,4,10,7,7,11,12,7,12,6,9,11,8,8,5,9,5,9,10,13,34,5,5,10,7,12,13,8,10,13,14,5,6,40,6,14,8,7,7,12,4,7,12,5]},{"label":"Memcoins","topics":"meme,memecoin,coins,memecoins,coin","description":"The messages from Twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are talking about the potential for meme coins to make significant gains, with some even speculating about meme coins making 1000x returns. There is also mention of different meme coins and debates about which one is the best. Additionally, there is a focus on the role of meme coins in onboarding new users to the blockchain space. Overall, it seems like meme coins are a hot topic of conversation and speculation within the crypto community.","data":[3,4,4,5,1,1,4,2,8,6,7,6,5,8,7,8,4,5,14,5,6,8,10,8,7,5,8,12,1,14,14,85,16,2,3,3,5,10,3,6,6,3,6,7,12,5,8,8,13,6,6,10,4,8,5]},{"label":"FLOKI, BONK etc.","topics":"floki,trending,tvl,doge,bonk","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. $GROK/USDT futures experiencing a +48% pump\n2. Speculation on which #AI tokens to watch apart from $GROK\n3. Potential for a strong dog season with $DOGE pumping\n4. Anticipation for $FLOKI to follow suit with more aggression due to various factors\n5. $FLOKI's recent listing on top Saudi exchanges\n6. Trading $FLOKI on Coinhako, the biggest exchange in Singapore\n7. $FLOKI's potential to reach its previous ATH in the pre-bull run\n8. Expectations for Ethereum to pump alongside Bitcoin's upper accumulation\n9. $FLOKI trending on various platforms and exchanges\n10. $FLOKI being considered the world's hottest cryptocurrency\n11. $FLOKI being listed on Binance Spot\n12. Individuals becoming $FLOKI holders\n13. Analysis of the chart patterns for $GROK and $HONK\n14. Advice to not fade meme coins and their potential for signaling an upcoming Altseason\n15. $FLOKI advertising on Times Square Plaza in New York\n16. $PONKE experiencing significant growth and preparation for crypto world domination\n\nOverall, the sentiment surrounding these topics is positive, with a focus on potential gains and market trends within the crypto industry.","data":[1,3,1,1,0,1,1,1,8,3,2,2,3,2,3,2,1,2,1,4,2,0,1,3,7,1,3,1,2,9,2,3,1,0,1,4,2,1,3,0,0,1,2,0,0,2,3,2,1,10,0,2,2,6,0]},{"label":"BTC","topics":"property,bitcoin,money,monetary,smarter","description":"The messages from Twitter are discussing various topics related to Bitcoin, including its quality, the benefits of understanding Bitcoin, the impact of Bitcoin on economics and computer science, the comparison between Bitcoin and Nano, and the importance of Bitcoin Cash as P2P cash. The messages also mention the concept of \"Diamond Hands\" and encourage holding onto Bitcoin for long-term gains. Overall, the messages reflect a positive sentiment towards Bitcoin and its potential as a valuable asset.","data":[4,3,5,11,55,41,6,6,3,8,6,8,5,8,8,9,5,6,12,8,10,3,4,5,4,8,8,6,8,4,4,1,6,6,6,5,5,8,9,8,5,5,7,8,9,5,8,5,4,2,11,4,0,9,10]},{"label":"PEPE","topics":"pepe,frog,frens,trader,cap","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include the rise of meme coins such as $PEPE and $Blobo, potential market cap growth projections, comparisons between different meme coins, and the overall potential of the meme coin sector. There is also mention of community involvement and excitement surrounding these meme coins, as well as the potential for significant market cap growth in the future. Additionally, there is a focus on the creativity and artistry behind these meme coins, as well as the potential for community takeovers and new developments within the meme coin realm.","data":[4,6,2,7,0,1,4,2,4,5,1,5,2,2,2,4,3,3,5,12,5,6,4,3,10,3,4,9,6,3,6,9,8,2,5,3,65,2,4,4,5,4,1,4,2,1,6,2,2,7,8,3,2,3,3]},{"label":"Inflation","topics":"inflation,cpi,fed,rates,rate","description":"The key topics currently being discussed in the crypto industry on social media include:\n- US inflation rising unexpectedly to 3.2%\n- Speculation on whether Bitcoin is rallying due to a lack of other good investments in the US\n- Concerns about the impact of inflation on savings and salaries\n- The performance of gold and silver in relation to inflation\n- The Federal Reserve's credibility in fighting inflation\n- Producer price inflation coming out higher than estimated\n- The Japanese economy and its impact on global markets\n- Productivity levels and their effect on unemployment and inflation\n\nOverall, the discussions on social media indicate a focus on inflation, its impact on various assets, and the strategies being considered by central banks to address it.","data":[4,3,6,4,2,1,1,15,4,4,1,9,5,4,5,6,3,2,10,4,0,4,1,5,5,48,3,1,4,2,4,5,3,2,4,4,3,3,5,6,10,5,9,2,2,6,5,4,2,8,6,3,3,8,7]},{"label":"GameFi","topics":"gaming,game,games,gamefi,web3","description":"The key topics currently discussed in the crypto gaming industry on Twitter include:\n- Ubisoft joining another crypto gaming network\n- Runescape creator working on an MMO for the last 10 years\n- Gaming NFTs on Arbitrum\n- MaviaGame being the game of the month\n- PrimeGaming and Brawlers uniting for exclusive giveaways\n- Tokenlon supporting various gaming tokens\n- ScorpionCasino raising over $6M in pre-sale\n- Top upcoming gaming projects\n- YugaLabs solution to struggling with making video games\n- Bloomverse integrating brands into the core mechanics of the game\n- Top crypto games and giveaways\n\nOverall, the crypto gaming industry is experiencing significant growth and innovation, with various projects and partnerships shaping the future of gaming on the blockchain.","data":[4,4,4,7,0,0,3,4,6,4,8,5,5,2,5,3,3,8,3,5,50,1,8,1,1,7,7,6,7,0,6,1,4,3,3,4,9,9,5,6,2,3,4,6,3,3,2,5,4,7,6,4,1,3,2]},{"label":"DOGE","topics":"doge,dogecoin,elonmusk,analyst,moon","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin's potential to reach $1 and its recent surge in popularity\n- Speculation on Dogecoin's price movement, with predictions of a 50% increase in a day\n- The rise of Dogecoin millionaires, with a 76% surge in addresses holding over $1 million worth of DOGE\n- Prominent traders like KALEO believing that Dogecoin could reach significant milestones\n- The continuous high open interest in Dogecoin, indicating strong market activity\n- Memes and meme coins like $OMNOM and their impact on the crypto market\n- References to other cryptocurrencies like Bitcoin and Litecoin\n- Mention of specific trading strategies and successful trades involving Dogecoin\n\nOverall, the sentiment around Dogecoin appears to be positive, with many traders and investors optimistic about its future potential.","data":[2,3,1,1,0,0,0,3,10,1,3,1,1,3,68,49,2,2,1,3,2,4,4,7,7,3,1,4,5,8,1,2,3,7,2,5,2,4,5,3,3,4,2,6,2,2,6,6,2,2,4,2,1,0,1]},{"label":"Art","topics":"art,artists,artist,artwork,love","description":"The messages from Twitter are discussing various topics related to art, digital art, NFTs, and crypto. The key themes include the importance of art in the crypto industry, discussions about different forms of art (traditional/physical vs online/digital), community engagement through art, and the intersection of art and technology.\n\nSome specific words mentioned in the messages are:\n- art\n- digital art\n- NFT\n- community\n- crypto\n- creators\n- market\n- technology\n\nOverall, the messages reflect a vibrant and diverse community that is actively engaged in exploring the intersection of art and technology within the crypto industry.","data":[4,2,58,7,0,0,5,2,3,7,10,3,5,1,5,7,4,4,11,2,2,3,3,2,1,3,8,3,1,6,15,2,2,9,3,5,10,5,0,2,5,4,3,5,4,1,3,5,1,5,4,4,2,2,2]},{"label":"ATH","topics":"ath,aths,new,previous,hit","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin breaking new all-time highs (ATH) and surpassing $72,000.\n2. Speculation on which cryptocurrency will follow Bitcoin's ATH, with mentions of ATOM.\n3. Discussion about the potential for Bitcoin to reach $100,000 as the next target.\n4. Bitcoin hitting a new ATH in Euros, reaching €65,380.\n5. The anticipation of Bitcoin reaching its third ATH next week.\n6. Analysis of Bitcoin's road to a new ATH through on-chain data.\n7. Monero experiencing its 4th consecutive day of ATH in transactions, with detailed statistics provided.\n\nOverall, the sentiment on Twitter seems to be optimistic and bullish towards Bitcoin and other cryptocurrencies, with excitement around new ATHs and potential price targets.","data":[2,1,13,7,6,15,4,13,2,4,3,3,6,4,1,1,2,4,5,1,0,8,3,2,26,0,1,0,2,3,4,4,2,18,10,5,0,3,3,8,7,2,3,5,4,2,4,2,5,5,2,2,4,5,1]},{"label":"Mining","topics":"mining,miners,miner,energy,revenue","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin mining and energy consumption: Discussions about the energy consumption of Bitcoin mining, the increase in difficulty levels, and the sustainability of blockchain technology.\n2. Bitcoin price and mining profitability: Analysis of the correlation between Bitcoin price fluctuations and the profitability of mining operations.\n3. Publicly listed mining companies: Mention of companies like Core Scientific and CORZ leading in Bitcoin production among publicly listed miners.\n4. Exciting opportunities in mining: Promotions for events like the GoMining experience with token payments, discounted games, and substantial savings.\n5. Updates on mining projects: Information about heritage surveys at mining projects like Raiden's Andover North project.\n6. Bitcoin mining expos: Announcements for upcoming Bitcoin mining expos, like the one in Miami in 2024.\n7. Mining equipment issues: Troubleshooting discussions about PCIe risers and compatibility with 40 series GPUs.\n8. Crypto giveaways and promotions: Promotions for token giveaways and eligibility criteria for claiming rewards.\n9. Educational content: Links to YouTube channels providing news and shorts about Bitcoin mining.\n10. Community engagement: Calls to action for joining the winning team in Bitcoin mining and engaging with the community through comments and likes.","data":[4,2,4,1,45,4,7,1,2,3,6,4,5,6,4,0,5,6,4,1,1,3,4,5,8,2,6,6,7,5,2,2,19,5,3,2,0,2,7,4,6,2,2,4,1,3,2,3,3,1,1,0,3,3,3]},{"label":"Blackrock ETF","topics":"blackrock,blackrocks,microstrategy,allocation,holdings","description":"The key topic discussed in the messages from Twitter is BlackRock's involvement in the crypto industry, specifically their Bitcoin ETF and plans to purchase spot Bitcoin trading products. BlackRock's Bitcoin ETF now holds more BTC than MicroStrategy, with significant inflows and trading volume. There is speculation about BlackRock's potential impact on the market and the potential for Bitcoin to reach higher prices. The community is also discussing the implications of BlackRock's actions on the US bond market and the overall future of finance.","data":[5,3,3,2,2,4,32,6,0,3,3,6,3,4,0,6,20,1,2,1,2,2,0,2,15,12,5,2,2,0,0,2,2,2,1,7,2,2,0,5,5,5,3,0,4,6,6,2,2,3,3,0,6,2,7]},{"label":"ETF inflows","topics":"inflow,net,inflows,etfs,gbtc","description":"The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs, with record-breaking amounts of money being invested. The messages highlight the massive net inflows into Bitcoin ETFs, reaching $1 billion in a single day and consistently strong net inflows over the past week. This influx of capital is seen as a bullish sign for Bitcoin, with the daily inflows of capital stored by the Bitcoin network hitting $2 billion per day. The messages also mention the potential for Ethereum ETFs in the future and the impact of these inflows on the overall cryptocurrency ecosystem. Overall, the focus is on the increasing investor demand for Bitcoin and the positive implications for the cryptocurrency market.","data":[11,1,1,5,19,1,0,4,1,4,2,3,3,8,4,3,10,3,1,1,1,0,1,1,6,9,8,1,1,0,4,5,6,14,3,2,1,1,1,4,5,1,2,3,24,3,4,2,1,3,0,2,1,7,12]},{"label":"NFT","topics":"nft,nfts,collections,member,collection","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include NFTs, marketplaces for buying and selling NFTs, collecting rare NFTs, staking NFTs, transferring intellectual property to burn addresses, the concept of NFT \"IP\", creating NFT avatars, tracking NFT portfolios, the value of unique NFTs like Bored Ape Yacht Club apes, front-running NFT funds, quantification of culture in NFTs, the sale of NFTs for large sums of money, and speculation in the crypto market. There is also mention of specific NFT projects like Dgens NFT, ConnectedTwitter NFT badge, Synthkiddos DNA NFT, MEWuniverse, and Moonbirds. Additionally, there are references to individuals like Andrew Tate and Kevin Rose who are involved in the NFT space. Overall, the discussion on Twitter reflects a mix of excitement, skepticism, and speculation surrounding NFTs and the broader crypto industry.","data":[1,4,5,4,0,0,0,0,3,2,10,9,7,2,5,4,4,1,3,7,5,7,3,3,3,3,7,3,3,3,2,5,5,4,23,2,5,2,3,3,4,6,5,1,2,6,1,5,5,2,3,7,1,1,5]},{"label":"SHIBA INU","topics":"inu,shiba,shib,burn,burns","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n\n1. Shiba Inu (#SHIB) price movements and patterns, with mentions of potential bullish momentum and a surge in price.\n2. Burn rates of Shiba Inu tokens, with a significant increase in burn activity.\n3. The emergence of new meme tokens and potential competitors to Shiba Inu and Dogecoin.\n4. The growth potential and future outlook for Shiba Inu, with predictions of significant price increases.\n5. The impact of whales accumulating large amounts of SHIB tokens on potential price rallies.\n6. The anticipation of a SHIB ETF and its potential effects on the token's value.\n7. The comparison of Shiba Inu to other meme tokens and its potential as a \"Dogecoin Killer.\"\n8. The increase in the number of addresses created for Shiba Inu, indicating growing interest and adoption of the token.\n9. The overall optimism and excitement surrounding Shiba Inu and its potential for future growth in the crypto market.","data":[2,6,1,1,0,0,1,1,6,1,3,4,1,0,3,3,1,5,1,3,0,2,0,1,1,2,63,1,11,0,3,2,0,1,2,4,1,3,3,2,3,3,2,31,1,1,3,3,0,4,2,2,1,5,3]},{"label":"HEX & Pulsechain","topics":"hex,pulsechain,pls,heart,ratio","description":"The key topics currently being discussed in the crypto industry on social media include:\n- #PulseChain and major hedge funds/exchange/lending firms losing billions and facing legal issues\n- A $300M Ponzi Scheme targeting Latinos falsely claiming to buy crypto\n- Incentive Token and INC rising alongside PLSX\n- CRH listing on PancakeSwap and potential for multiple X's in price\n- Richard Heart's efforts to make $hex end stakes affordable on PulseChain\n- The potential for PulseChain to outperform Ethereum\n- Accusations against Richard Heart and $hex being a scam\n- The possibility of Richard Heart releasing a stable coin backed by crypto\n- HEXicans migrating from Ethereum to PulseChain for lower fees and higher liquidity\n- Speculation on the price increase of PLS and potential fees for ending a HEX stake\n- Criticism of the SEC and calls for accountability\n- Potential for PulseChain and PulseX to outperform Ethereum and provide significant profits\n- Comparison of gas fees between Ethereum and PulseChain\n- Discussion of $XEN chart and potential for growth with Jack's XN chain and AI technology.","data":[4,2,4,4,1,0,0,5,4,7,4,4,2,2,2,2,8,4,2,1,3,1,2,12,1,8,5,5,1,7,3,4,2,2,3,3,8,3,23,4,4,3,1,3,4,0,0,4,4,2,8,1,2,5,1]},{"label":"ETH Dencun","topics":"dencun,upgrade,ethereums,ethereum,scalability","description":"The recent Dencun upgrade on the Ethereum mainnet has been implemented successfully, promising reduced transaction fees on Layer 2 solutions and improved network scalability. The upgrade introduces innovative approaches like \"Blob carrying transactions\" to enhance scalability by reducing congestion. Excitement in the community and developer involvement highlight the potential for Dencun to revolutionize Ethereum. Some users are concerned about the impact on decentralization and security when transacting on Layer 2 solutions instead of Ethereum. The upgrade is expected to benefit projects by improving trading efficiency and reducing fees. There are rumors that the Dencun upgrade may also be coming to PulseChain in the future. Overall, the Dencun upgrade represents a crucial step forward in prioritizing scalability, efficiency, and security in the crypto industry.","data":[2,1,2,2,0,0,1,6,1,4,2,5,3,3,5,1,20,1,0,2,1,0,1,1,3,2,0,0,1,4,0,0,0,5,1,0,1,2,2,6,3,0,0,1,0,1,2,1,0,2,3,89,0,0,1]},{"label":"XRP","topics":"xrp,ripple,lawsuit,sec,rally","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. XRP price predictions and potential for increase before the Bitcoin halving\n2. XRP's performance compared to Bitcoin in 2024 and the possibility of a price rebound\n3. SEC's decision not to appeal on XRP's status ruling and its impact on XRP's price\n4. Speculation and intrigue surrounding a $26 million XRP transfer on Binance amid a price increase\n5. Ripple's legal showdown with the SEC and its potential impact on XRP's price\n6. Community activism and defense against Ripple price manipulation claims\n7. Technical analysis of XRP forming a symmetrical triangle and potential breakout\n8. Reserve Protocol aiming to provide universal access to stable and decentralized money through RTokens\n9. Martin Hiesboeck highlighting post-settlement surge in XRP development and potential ETP debut\n10. Whales shifting over 81 million XRP coins in the last 24 hours, causing speculation and price fluctuations.","data":[4,3,0,6,0,0,2,4,1,3,5,0,3,1,5,0,1,4,3,2,0,1,1,2,8,4,0,6,6,0,2,2,3,2,1,3,0,8,9,3,2,8,1,2,2,2,3,1,2,3,4,0,1,7,7]},{"label":"ETH 4k","topics":"4000,4k,ethereum,eth,prediction","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum hitting $4,000 and potentially reaching $5,000 before Bitcoin Halving\n- Speculation on Ethereum reaching $10,000 in the future\n- Resistance at the $4,000 level for Ethereum\n- Ethereum Classic price prediction and the excitement around BlockDAG's $600M vision\n- Ethereum's crowdfunding history in 2014\n- Bullish momentum and upgrades ahead for Ethereum after surpassing $4,000\n\nOverall, the sentiment seems to be positive and optimistic about Ethereum's future price potential and developments in the industry.","data":[0,3,0,0,0,0,0,10,0,5,1,1,1,2,1,1,51,0,4,0,0,3,2,0,11,0,0,1,4,2,1,2,0,2,0,3,0,1,4,4,1,0,1,3,0,2,2,5,5,0,0,0,0,2,1]},{"label":"ETH ETF & SEC","topics":"vol,usdt,24h,spike,score","description":"Based on the messages from Twitter, it seems that there has been a significant increase in aggregate trading volume for various cryptocurrencies such as $ADA, $BLZ, $BOND, $ERN, $BAR, $AMP, $GNS, $LSK, $ENJ, $GLM, $WOO, $IOST, and $BAKE. These spikes in volume are occurring on different exchanges like Gate, Kucoin, Binance, Bitget, and Gemini. The prices of these cryptocurrencies have also experienced fluctuations, with some showing positive gains in the last 24 hours. Additionally, there is a mention of a top trade of the day involving $HNT on Gemini, which resulted in a 6.97% profit. Overall, it appears that there is a lot of activity and interest in trading these cryptocurrencies within the crypto community.","data":[3,0,2,2,0,0,2,1,0,1,0,0,1,3,1,1,2,0,0,3,2,0,0,1,2,0,0,0,0,1,3,1,1,1,1,0,1,0,2,1,0,2,0,2,1,1,1,0,13,4,0,0,51,1,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-10.ts b/priv/repo/major_topics_seed/data-10.ts deleted file mode 100644 index 67a711e456..0000000000 --- a/priv/repo/major_topics_seed/data-10.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '07.03.24', - '08.03.24', - '08.03.24', - '08.03.24', - '08.03.24', - '08.03.24', - '08.03.24', - '08.03.24', - '09.03.24', - '09.03.24', - '09.03.24', - '09.03.24', - '09.03.24', - '09.03.24', - '09.03.24', - '09.03.24', - '10.03.24', - '10.03.24', - '10.03.24', - '10.03.24', - '10.03.24', - '10.03.24', - '10.03.24', - '10.03.24', - '11.03.24', - '11.03.24', - '11.03.24', - '11.03.24', - '11.03.24', - '11.03.24', - '11.03.24', - '11.03.24', - '12.03.24', - '12.03.24', - '12.03.24', - '12.03.24', - '12.03.24', - '12.03.24', - '12.03.24', - '12.03.24', - '13.03.24', - '13.03.24', - '13.03.24', - '13.03.24', - '13.03.24', - '13.03.24', - '13.03.24', - '13.03.24', - '14.03.24', - '14.03.24', - '14.03.24', - '14.03.24', - '14.03.24', - '14.03.24', - '14.03.24', - ], - datasets: [ - { - label: 'SOLANA', - topics: 'solana,sol,memes,solama,memecoin', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana (SOL) maturing and having discussions on Dapps alignment\n2. Solana creating millionaires in a short period\n3. Solana being compared to Ethereum for this cycle\n4. Solana's path to ETF approval and market sentiment\n5. Solana's popularity for meme coins and low gas fees\n6. Solana's IDOs on Arbitrum\n7. Memecoin craze and DeFi mania\n8. A cryptocurrency trader turning $1.8K into $11 million with Dogwifhat (WIF)\n9. Influencers promoting Solana and MagicEden exchange\n10. Giveaways and airdrop season in the crypto industry\n\nOverall, Solana seems to be a hot topic of discussion with its growing popularity and potential for significant gains in the market.", - data: [ - 8, 1, 10, 10, 1, 1, 3, 7, 11, 6, 15, 14, 4, 10, 7, 7, 11, 12, 7, 12, 6, 9, 11, 8, 8, 5, 9, - 5, 9, 10, 13, 34, 5, 5, 10, 7, 12, 13, 8, 10, 13, 14, 5, 6, 40, 6, 14, 8, 7, 7, 12, 4, 7, - 12, 5, - ], - }, - { - label: 'Memcoins', - topics: 'meme,memecoin,coins,memecoins,coin', - description: - 'The messages from Twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are talking about the potential for meme coins to make significant gains, with some even speculating about meme coins making 1000x returns. There is also mention of different meme coins and debates about which one is the best. Additionally, there is a focus on the role of meme coins in onboarding new users to the blockchain space. Overall, it seems like meme coins are a hot topic of conversation and speculation within the crypto community.', - data: [ - 3, 4, 4, 5, 1, 1, 4, 2, 8, 6, 7, 6, 5, 8, 7, 8, 4, 5, 14, 5, 6, 8, 10, 8, 7, 5, 8, 12, 1, - 14, 14, 85, 16, 2, 3, 3, 5, 10, 3, 6, 6, 3, 6, 7, 12, 5, 8, 8, 13, 6, 6, 10, 4, 8, 5, - ], - }, - { - label: 'FLOKI, BONK etc.', - topics: 'floki,trending,tvl,doge,bonk', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. $GROK/USDT futures experiencing a +48% pump\n2. Speculation on which #AI tokens to watch apart from $GROK\n3. Potential for a strong dog season with $DOGE pumping\n4. Anticipation for $FLOKI to follow suit with more aggression due to various factors\n5. $FLOKI's recent listing on top Saudi exchanges\n6. Trading $FLOKI on Coinhako, the biggest exchange in Singapore\n7. $FLOKI's potential to reach its previous ATH in the pre-bull run\n8. Expectations for Ethereum to pump alongside Bitcoin's upper accumulation\n9. $FLOKI trending on various platforms and exchanges\n10. $FLOKI being considered the world's hottest cryptocurrency\n11. $FLOKI being listed on Binance Spot\n12. Individuals becoming $FLOKI holders\n13. Analysis of the chart patterns for $GROK and $HONK\n14. Advice to not fade meme coins and their potential for signaling an upcoming Altseason\n15. $FLOKI advertising on Times Square Plaza in New York\n16. $PONKE experiencing significant growth and preparation for crypto world domination\n\nOverall, the sentiment surrounding these topics is positive, with a focus on potential gains and market trends within the crypto industry.", - data: [ - 1, 3, 1, 1, 0, 1, 1, 1, 8, 3, 2, 2, 3, 2, 3, 2, 1, 2, 1, 4, 2, 0, 1, 3, 7, 1, 3, 1, 2, 9, 2, - 3, 1, 0, 1, 4, 2, 1, 3, 0, 0, 1, 2, 0, 0, 2, 3, 2, 1, 10, 0, 2, 2, 6, 0, - ], - }, - { - label: 'BTC', - topics: 'property,bitcoin,money,monetary,smarter', - description: - 'The messages from Twitter are discussing various topics related to Bitcoin, including its quality, the benefits of understanding Bitcoin, the impact of Bitcoin on economics and computer science, the comparison between Bitcoin and Nano, and the importance of Bitcoin Cash as P2P cash. The messages also mention the concept of "Diamond Hands" and encourage holding onto Bitcoin for long-term gains. Overall, the messages reflect a positive sentiment towards Bitcoin and its potential as a valuable asset.', - data: [ - 4, 3, 5, 11, 55, 41, 6, 6, 3, 8, 6, 8, 5, 8, 8, 9, 5, 6, 12, 8, 10, 3, 4, 5, 4, 8, 8, 6, 8, - 4, 4, 1, 6, 6, 6, 5, 5, 8, 9, 8, 5, 5, 7, 8, 9, 5, 8, 5, 4, 2, 11, 4, 0, 9, 10, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frog,frens,trader,cap', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include the rise of meme coins such as $PEPE and $Blobo, potential market cap growth projections, comparisons between different meme coins, and the overall potential of the meme coin sector. There is also mention of community involvement and excitement surrounding these meme coins, as well as the potential for significant market cap growth in the future. Additionally, there is a focus on the creativity and artistry behind these meme coins, as well as the potential for community takeovers and new developments within the meme coin realm.', - data: [ - 4, 6, 2, 7, 0, 1, 4, 2, 4, 5, 1, 5, 2, 2, 2, 4, 3, 3, 5, 12, 5, 6, 4, 3, 10, 3, 4, 9, 6, 3, - 6, 9, 8, 2, 5, 3, 65, 2, 4, 4, 5, 4, 1, 4, 2, 1, 6, 2, 2, 7, 8, 3, 2, 3, 3, - ], - }, - { - label: 'Inflation', - topics: 'inflation,cpi,fed,rates,rate', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- US inflation rising unexpectedly to 3.2%\n- Speculation on whether Bitcoin is rallying due to a lack of other good investments in the US\n- Concerns about the impact of inflation on savings and salaries\n- The performance of gold and silver in relation to inflation\n- The Federal Reserve's credibility in fighting inflation\n- Producer price inflation coming out higher than estimated\n- The Japanese economy and its impact on global markets\n- Productivity levels and their effect on unemployment and inflation\n\nOverall, the discussions on social media indicate a focus on inflation, its impact on various assets, and the strategies being considered by central banks to address it.", - data: [ - 4, 3, 6, 4, 2, 1, 1, 15, 4, 4, 1, 9, 5, 4, 5, 6, 3, 2, 10, 4, 0, 4, 1, 5, 5, 48, 3, 1, 4, 2, - 4, 5, 3, 2, 4, 4, 3, 3, 5, 6, 10, 5, 9, 2, 2, 6, 5, 4, 2, 8, 6, 3, 3, 8, 7, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,gamefi,web3', - description: - 'The key topics currently discussed in the crypto gaming industry on Twitter include:\n- Ubisoft joining another crypto gaming network\n- Runescape creator working on an MMO for the last 10 years\n- Gaming NFTs on Arbitrum\n- MaviaGame being the game of the month\n- PrimeGaming and Brawlers uniting for exclusive giveaways\n- Tokenlon supporting various gaming tokens\n- ScorpionCasino raising over $6M in pre-sale\n- Top upcoming gaming projects\n- YugaLabs solution to struggling with making video games\n- Bloomverse integrating brands into the core mechanics of the game\n- Top crypto games and giveaways\n\nOverall, the crypto gaming industry is experiencing significant growth and innovation, with various projects and partnerships shaping the future of gaming on the blockchain.', - data: [ - 4, 4, 4, 7, 0, 0, 3, 4, 6, 4, 8, 5, 5, 2, 5, 3, 3, 8, 3, 5, 50, 1, 8, 1, 1, 7, 7, 6, 7, 0, - 6, 1, 4, 3, 3, 4, 9, 9, 5, 6, 2, 3, 4, 6, 3, 3, 2, 5, 4, 7, 6, 4, 1, 3, 2, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elonmusk,analyst,moon', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin's potential to reach $1 and its recent surge in popularity\n- Speculation on Dogecoin's price movement, with predictions of a 50% increase in a day\n- The rise of Dogecoin millionaires, with a 76% surge in addresses holding over $1 million worth of DOGE\n- Prominent traders like KALEO believing that Dogecoin could reach significant milestones\n- The continuous high open interest in Dogecoin, indicating strong market activity\n- Memes and meme coins like $OMNOM and their impact on the crypto market\n- References to other cryptocurrencies like Bitcoin and Litecoin\n- Mention of specific trading strategies and successful trades involving Dogecoin\n\nOverall, the sentiment around Dogecoin appears to be positive, with many traders and investors optimistic about its future potential.", - data: [ - 2, 3, 1, 1, 0, 0, 0, 3, 10, 1, 3, 1, 1, 3, 68, 49, 2, 2, 1, 3, 2, 4, 4, 7, 7, 3, 1, 4, 5, 8, - 1, 2, 3, 7, 2, 5, 2, 4, 5, 3, 3, 4, 2, 6, 2, 2, 6, 6, 2, 2, 4, 2, 1, 0, 1, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,artwork,love', - description: - 'The messages from Twitter are discussing various topics related to art, digital art, NFTs, and crypto. The key themes include the importance of art in the crypto industry, discussions about different forms of art (traditional/physical vs online/digital), community engagement through art, and the intersection of art and technology.\n\nSome specific words mentioned in the messages are:\n- art\n- digital art\n- NFT\n- community\n- crypto\n- creators\n- market\n- technology\n\nOverall, the messages reflect a vibrant and diverse community that is actively engaged in exploring the intersection of art and technology within the crypto industry.', - data: [ - 4, 2, 58, 7, 0, 0, 5, 2, 3, 7, 10, 3, 5, 1, 5, 7, 4, 4, 11, 2, 2, 3, 3, 2, 1, 3, 8, 3, 1, 6, - 15, 2, 2, 9, 3, 5, 10, 5, 0, 2, 5, 4, 3, 5, 4, 1, 3, 5, 1, 5, 4, 4, 2, 2, 2, - ], - }, - { - label: 'ATH', - topics: 'ath,aths,new,previous,hit', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin breaking new all-time highs (ATH) and surpassing $72,000.\n2. Speculation on which cryptocurrency will follow Bitcoin's ATH, with mentions of ATOM.\n3. Discussion about the potential for Bitcoin to reach $100,000 as the next target.\n4. Bitcoin hitting a new ATH in Euros, reaching €65,380.\n5. The anticipation of Bitcoin reaching its third ATH next week.\n6. Analysis of Bitcoin's road to a new ATH through on-chain data.\n7. Monero experiencing its 4th consecutive day of ATH in transactions, with detailed statistics provided.\n\nOverall, the sentiment on Twitter seems to be optimistic and bullish towards Bitcoin and other cryptocurrencies, with excitement around new ATHs and potential price targets.", - data: [ - 2, 1, 13, 7, 6, 15, 4, 13, 2, 4, 3, 3, 6, 4, 1, 1, 2, 4, 5, 1, 0, 8, 3, 2, 26, 0, 1, 0, 2, - 3, 4, 4, 2, 18, 10, 5, 0, 3, 3, 8, 7, 2, 3, 5, 4, 2, 4, 2, 5, 5, 2, 2, 4, 5, 1, - ], - }, - { - label: 'Mining', - topics: 'mining,miners,miner,energy,revenue', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin mining and energy consumption: Discussions about the energy consumption of Bitcoin mining, the increase in difficulty levels, and the sustainability of blockchain technology.\n2. Bitcoin price and mining profitability: Analysis of the correlation between Bitcoin price fluctuations and the profitability of mining operations.\n3. Publicly listed mining companies: Mention of companies like Core Scientific and CORZ leading in Bitcoin production among publicly listed miners.\n4. Exciting opportunities in mining: Promotions for events like the GoMining experience with token payments, discounted games, and substantial savings.\n5. Updates on mining projects: Information about heritage surveys at mining projects like Raiden's Andover North project.\n6. Bitcoin mining expos: Announcements for upcoming Bitcoin mining expos, like the one in Miami in 2024.\n7. Mining equipment issues: Troubleshooting discussions about PCIe risers and compatibility with 40 series GPUs.\n8. Crypto giveaways and promotions: Promotions for token giveaways and eligibility criteria for claiming rewards.\n9. Educational content: Links to YouTube channels providing news and shorts about Bitcoin mining.\n10. Community engagement: Calls to action for joining the winning team in Bitcoin mining and engaging with the community through comments and likes.", - data: [ - 4, 2, 4, 1, 45, 4, 7, 1, 2, 3, 6, 4, 5, 6, 4, 0, 5, 6, 4, 1, 1, 3, 4, 5, 8, 2, 6, 6, 7, 5, - 2, 2, 19, 5, 3, 2, 0, 2, 7, 4, 6, 2, 2, 4, 1, 3, 2, 3, 3, 1, 1, 0, 3, 3, 3, - ], - }, - { - label: 'Blackrock ETF', - topics: 'blackrock,blackrocks,microstrategy,allocation,holdings', - description: - "The key topic discussed in the messages from Twitter is BlackRock's involvement in the crypto industry, specifically their Bitcoin ETF and plans to purchase spot Bitcoin trading products. BlackRock's Bitcoin ETF now holds more BTC than MicroStrategy, with significant inflows and trading volume. There is speculation about BlackRock's potential impact on the market and the potential for Bitcoin to reach higher prices. The community is also discussing the implications of BlackRock's actions on the US bond market and the overall future of finance.", - data: [ - 5, 3, 3, 2, 2, 4, 32, 6, 0, 3, 3, 6, 3, 4, 0, 6, 20, 1, 2, 1, 2, 2, 0, 2, 15, 12, 5, 2, 2, - 0, 0, 2, 2, 2, 1, 7, 2, 2, 0, 5, 5, 5, 3, 0, 4, 6, 6, 2, 2, 3, 3, 0, 6, 2, 7, - ], - }, - { - label: 'ETF inflows', - topics: 'inflow,net,inflows,etfs,gbtc', - description: - 'The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs, with record-breaking amounts of money being invested. The messages highlight the massive net inflows into Bitcoin ETFs, reaching $1 billion in a single day and consistently strong net inflows over the past week. This influx of capital is seen as a bullish sign for Bitcoin, with the daily inflows of capital stored by the Bitcoin network hitting $2 billion per day. The messages also mention the potential for Ethereum ETFs in the future and the impact of these inflows on the overall cryptocurrency ecosystem. Overall, the focus is on the increasing investor demand for Bitcoin and the positive implications for the cryptocurrency market.', - data: [ - 11, 1, 1, 5, 19, 1, 0, 4, 1, 4, 2, 3, 3, 8, 4, 3, 10, 3, 1, 1, 1, 0, 1, 1, 6, 9, 8, 1, 1, 0, - 4, 5, 6, 14, 3, 2, 1, 1, 1, 4, 5, 1, 2, 3, 24, 3, 4, 2, 1, 3, 0, 2, 1, 7, 12, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collections,member,collection', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include NFTs, marketplaces for buying and selling NFTs, collecting rare NFTs, staking NFTs, transferring intellectual property to burn addresses, the concept of NFT "IP", creating NFT avatars, tracking NFT portfolios, the value of unique NFTs like Bored Ape Yacht Club apes, front-running NFT funds, quantification of culture in NFTs, the sale of NFTs for large sums of money, and speculation in the crypto market. There is also mention of specific NFT projects like Dgens NFT, ConnectedTwitter NFT badge, Synthkiddos DNA NFT, MEWuniverse, and Moonbirds. Additionally, there are references to individuals like Andrew Tate and Kevin Rose who are involved in the NFT space. Overall, the discussion on Twitter reflects a mix of excitement, skepticism, and speculation surrounding NFTs and the broader crypto industry.', - data: [ - 1, 4, 5, 4, 0, 0, 0, 0, 3, 2, 10, 9, 7, 2, 5, 4, 4, 1, 3, 7, 5, 7, 3, 3, 3, 3, 7, 3, 3, 3, - 2, 5, 5, 4, 23, 2, 5, 2, 3, 3, 4, 6, 5, 1, 2, 6, 1, 5, 5, 2, 3, 7, 1, 1, 5, - ], - }, - { - label: 'SHIBA INU', - topics: 'inu,shiba,shib,burn,burns', - description: - 'Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n\n1. Shiba Inu (#SHIB) price movements and patterns, with mentions of potential bullish momentum and a surge in price.\n2. Burn rates of Shiba Inu tokens, with a significant increase in burn activity.\n3. The emergence of new meme tokens and potential competitors to Shiba Inu and Dogecoin.\n4. The growth potential and future outlook for Shiba Inu, with predictions of significant price increases.\n5. The impact of whales accumulating large amounts of SHIB tokens on potential price rallies.\n6. The anticipation of a SHIB ETF and its potential effects on the token\'s value.\n7. The comparison of Shiba Inu to other meme tokens and its potential as a "Dogecoin Killer."\n8. The increase in the number of addresses created for Shiba Inu, indicating growing interest and adoption of the token.\n9. The overall optimism and excitement surrounding Shiba Inu and its potential for future growth in the crypto market.', - data: [ - 2, 6, 1, 1, 0, 0, 1, 1, 6, 1, 3, 4, 1, 0, 3, 3, 1, 5, 1, 3, 0, 2, 0, 1, 1, 2, 63, 1, 11, 0, - 3, 2, 0, 1, 2, 4, 1, 3, 3, 2, 3, 3, 2, 31, 1, 1, 3, 3, 0, 4, 2, 2, 1, 5, 3, - ], - }, - { - label: 'HEX & Pulsechain', - topics: 'hex,pulsechain,pls,heart,ratio', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- #PulseChain and major hedge funds/exchange/lending firms losing billions and facing legal issues\n- A $300M Ponzi Scheme targeting Latinos falsely claiming to buy crypto\n- Incentive Token and INC rising alongside PLSX\n- CRH listing on PancakeSwap and potential for multiple X's in price\n- Richard Heart's efforts to make $hex end stakes affordable on PulseChain\n- The potential for PulseChain to outperform Ethereum\n- Accusations against Richard Heart and $hex being a scam\n- The possibility of Richard Heart releasing a stable coin backed by crypto\n- HEXicans migrating from Ethereum to PulseChain for lower fees and higher liquidity\n- Speculation on the price increase of PLS and potential fees for ending a HEX stake\n- Criticism of the SEC and calls for accountability\n- Potential for PulseChain and PulseX to outperform Ethereum and provide significant profits\n- Comparison of gas fees between Ethereum and PulseChain\n- Discussion of $XEN chart and potential for growth with Jack's XN chain and AI technology.", - data: [ - 4, 2, 4, 4, 1, 0, 0, 5, 4, 7, 4, 4, 2, 2, 2, 2, 8, 4, 2, 1, 3, 1, 2, 12, 1, 8, 5, 5, 1, 7, - 3, 4, 2, 2, 3, 3, 8, 3, 23, 4, 4, 3, 1, 3, 4, 0, 0, 4, 4, 2, 8, 1, 2, 5, 1, - ], - }, - { - label: 'ETH Dencun', - topics: 'dencun,upgrade,ethereums,ethereum,scalability', - description: - 'The recent Dencun upgrade on the Ethereum mainnet has been implemented successfully, promising reduced transaction fees on Layer 2 solutions and improved network scalability. The upgrade introduces innovative approaches like "Blob carrying transactions" to enhance scalability by reducing congestion. Excitement in the community and developer involvement highlight the potential for Dencun to revolutionize Ethereum. Some users are concerned about the impact on decentralization and security when transacting on Layer 2 solutions instead of Ethereum. The upgrade is expected to benefit projects by improving trading efficiency and reducing fees. There are rumors that the Dencun upgrade may also be coming to PulseChain in the future. Overall, the Dencun upgrade represents a crucial step forward in prioritizing scalability, efficiency, and security in the crypto industry.', - data: [ - 2, 1, 2, 2, 0, 0, 1, 6, 1, 4, 2, 5, 3, 3, 5, 1, 20, 1, 0, 2, 1, 0, 1, 1, 3, 2, 0, 0, 1, 4, - 0, 0, 0, 5, 1, 0, 1, 2, 2, 6, 3, 0, 0, 1, 0, 1, 2, 1, 0, 2, 3, 89, 0, 0, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,lawsuit,sec,rally', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. XRP price predictions and potential for increase before the Bitcoin halving\n2. XRP's performance compared to Bitcoin in 2024 and the possibility of a price rebound\n3. SEC's decision not to appeal on XRP's status ruling and its impact on XRP's price\n4. Speculation and intrigue surrounding a $26 million XRP transfer on Binance amid a price increase\n5. Ripple's legal showdown with the SEC and its potential impact on XRP's price\n6. Community activism and defense against Ripple price manipulation claims\n7. Technical analysis of XRP forming a symmetrical triangle and potential breakout\n8. Reserve Protocol aiming to provide universal access to stable and decentralized money through RTokens\n9. Martin Hiesboeck highlighting post-settlement surge in XRP development and potential ETP debut\n10. Whales shifting over 81 million XRP coins in the last 24 hours, causing speculation and price fluctuations.", - data: [ - 4, 3, 0, 6, 0, 0, 2, 4, 1, 3, 5, 0, 3, 1, 5, 0, 1, 4, 3, 2, 0, 1, 1, 2, 8, 4, 0, 6, 6, 0, 2, - 2, 3, 2, 1, 3, 0, 8, 9, 3, 2, 8, 1, 2, 2, 2, 3, 1, 2, 3, 4, 0, 1, 7, 7, - ], - }, - { - label: 'ETH 4k', - topics: '4000,4k,ethereum,eth,prediction', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum hitting $4,000 and potentially reaching $5,000 before Bitcoin Halving\n- Speculation on Ethereum reaching $10,000 in the future\n- Resistance at the $4,000 level for Ethereum\n- Ethereum Classic price prediction and the excitement around BlockDAG's $600M vision\n- Ethereum's crowdfunding history in 2014\n- Bullish momentum and upgrades ahead for Ethereum after surpassing $4,000\n\nOverall, the sentiment seems to be positive and optimistic about Ethereum's future price potential and developments in the industry.", - data: [ - 0, 3, 0, 0, 0, 0, 0, 10, 0, 5, 1, 1, 1, 2, 1, 1, 51, 0, 4, 0, 0, 3, 2, 0, 11, 0, 0, 1, 4, 2, - 1, 2, 0, 2, 0, 3, 0, 1, 4, 4, 1, 0, 1, 3, 0, 2, 2, 5, 5, 0, 0, 0, 0, 2, 1, - ], - }, - - { - label: 'ETH ETF & SEC', - topics: 'vol,usdt,24h,spike,score', - description: - 'Based on the messages from Twitter, it seems that there has been a significant increase in aggregate trading volume for various cryptocurrencies such as $ADA, $BLZ, $BOND, $ERN, $BAR, $AMP, $GNS, $LSK, $ENJ, $GLM, $WOO, $IOST, and $BAKE. These spikes in volume are occurring on different exchanges like Gate, Kucoin, Binance, Bitget, and Gemini. The prices of these cryptocurrencies have also experienced fluctuations, with some showing positive gains in the last 24 hours. Additionally, there is a mention of a top trade of the day involving $HNT on Gemini, which resulted in a 6.97% profit. Overall, it appears that there is a lot of activity and interest in trading these cryptocurrencies within the crypto community.', - data: [ - 3, 0, 2, 2, 0, 0, 2, 1, 0, 1, 0, 0, 1, 3, 1, 1, 2, 0, 0, 3, 2, 0, 0, 1, 2, 0, 0, 0, 0, 1, 3, - 1, 1, 1, 1, 0, 1, 0, 2, 1, 0, 2, 0, 2, 1, 1, 1, 0, 13, 4, 0, 0, 51, 1, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-100.json b/priv/repo/major_topics_seed/data-100.json deleted file mode 100644 index 22a585ffcb..0000000000 --- a/priv/repo/major_topics_seed/data-100.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["27.11.25","28.11.25","28.11.25","28.11.25","28.11.25","28.11.25","28.11.25","28.11.25","29.11.25","29.11.25","29.11.25","29.11.25","29.11.25","29.11.25","29.11.25","29.11.25","30.11.25","30.11.25","30.11.25","30.11.25","30.11.25","30.11.25","30.11.25","30.11.25","01.12.25","01.12.25","01.12.25","01.12.25","01.12.25","01.12.25","01.12.25","01.12.25","02.12.25","02.12.25","02.12.25","02.12.25","02.12.25","02.12.25","02.12.25","02.12.25","03.12.25","03.12.25","03.12.25","03.12.25","03.12.25","03.12.25","03.12.25","03.12.25","04.12.25","04.12.25","04.12.25","04.12.25","04.12.25","04.12.25","04.12.25"],"datasets":[{"label":"Black friday","topics":"cyber,discounts,checkout,black,cashback","description":"The key topics discussed in the messages from twitter are Black Friday deals, Cyber Monday deals, discounts on various platforms and services, crypto cashback offers, interest rates, and the increase in online spending during the holiday season. The messages also mention specific products such as keyboards, smartphones, and cold wallets. Overall, the messages indicate a high level of interest and activity in the crypto industry during the holiday shopping season.","data":[21,15,12,8,45,13,25,31,22,12,14,68,26,12,15,12,14,14,9,18,12,22,32,4,11,9,13,12,16,11,15,6,12,27,9,13,15,14,12,12,45,7,25,20,16,8,7,21,10,14,17,15,10,8,12]},{"label":"AI","topics":"agi,ais,intelligence,artificial,agentic","description":"The key topics currently discussed in the messages from twitter are:\n1. The role of AI in various industries, including finance and trading\n2. The impact of AI on job losses and job security\n3. The development of AI-powered products and services, such as AI trading coaches and AI newsrooms\n4. The intersection of AI and cryptocurrency, including AI-powered coins and platforms\n5. The potential for AI to revolutionize industries like call centers and freelancing\n6. The importance of data governance and security in AI and ML models\n7. The potential for AI to redefine how art is created and consumed\n\nOverall, the messages highlight the growing influence and potential of AI in various sectors, as well as the need for responsible and strategic use of AI technologies.","data":[9,50,24,12,11,17,14,15,22,21,20,9,11,15,22,11,10,23,13,12,8,12,10,22,16,16,9,17,12,14,17,12,16,10,20,10,27,16,17,21,15,14,11,15,11,20,24,18,16,10,23,11,12,14,11]},{"label":"Christmas","topics":"santa,christmas,xmas,tree,lights","description":"The key topics discussed in the messages from twitter are:\n1. Christmas gifts and holiday spirit\n2. Bitcoin and cryptocurrency-related gifts\n3. Family DNA kits as gifts\n4. Financial wishes for Christmas\n5. Santa Claus and Christmas wishlist\n6. Solana cryptocurrency and NFTs for Christmas\n7. Christmas skins and NFTs\n8. Christmas coin dropping chaos and raffles\n9. Santa rally in the cryptocurrency market\n10. Controversial topics related to Santa Claus and Christmas celebrations.","data":[5,8,10,16,10,6,12,10,11,7,2,19,5,16,3,6,11,6,28,11,1,10,21,3,7,7,11,14,10,9,7,7,8,10,9,4,4,15,13,7,15,20,5,7,10,4,8,8,15,10,3,18,14,9,7]},{"label":"BTC price","topics":"rejected,93k,reclaim,84k,90k","description":"The key topic currently being discussed on twitter is the resistance zone for Bitcoin (BTC) at 93-94k. Traders are closely watching this level as BTC has been rejecting it pretty hard. There are downside zones mentioned, with possible fake outs and pullbacks to 88-89k first. Some traders are expecting a move straight into the $100,000 zone, while others are cautious about the current resistance levels. The sentiment is mixed, with some seeing a bullish reversal incoming while others are waiting for more confirmation. Overall, the discussion revolves around the key resistance levels for BTC and the potential outcomes based on the current market conditions.","data":[15,4,4,6,4,30,7,13,4,11,7,5,7,2,2,13,6,5,8,8,6,6,15,6,7,5,11,12,22,3,5,12,6,6,4,7,21,12,27,24,6,8,11,2,10,12,10,6,5,5,9,6,9,7,5]},{"label":"Art","topics":"artists,artwork,ink,artist,art","description":"","data":[3,3,59,5,9,3,3,8,10,10,6,5,8,13,10,8,8,12,6,3,5,7,7,17,4,3,7,5,10,8,4,3,9,7,14,13,4,5,5,3,1,1,3,3,6,6,6,6,7,4,3,7,5,13,4]},{"label":"Precious metals","topics":"silver,precious,metals,platinum,metal","description":"The key topics discussed in the messages from twitter are:\n- Silver and gold prices reaching new highs\n- Predictions of silver hitting $100 by end of 2026\n- UBS raising outlook on silver and forecasting a spike to $65/oz\n- Silver being seen as a critical metal with potential for significant growth\n- Gold's strong performance in 2025, on pace for best year since 1979\n- Market trends favoring precious metals over cryptocurrencies\n- Potential for silver to reach $250 in the long term\n- Positive performance of gold in recent months, on track for best annual performance in 46 years\n\nOverall, the messages indicate a bullish sentiment towards silver and gold, with expectations of continued growth and potential for significant price increases in the future.","data":[7,7,9,4,5,13,5,5,9,9,5,3,8,5,4,5,7,10,4,26,2,8,18,5,9,3,5,2,3,5,10,3,3,18,1,8,19,7,9,3,5,4,37,8,9,6,4,4,7,4,4,11,5,1,5]},{"label":"ETH Fusaka upgrade","topics":"fusaka,ethereums,upgrade,rollups,throughput","description":"The messages from twitter indicate that the Fusaka upgrade for Ethereum is highly anticipated and expected to bring significant improvements to the network. The upgrade is set to increase transaction throughput, leading to more people using Ethereum. The upgrade is also expected to enable Ethereum to reach a price of $5k immediately. The community is excited about the potential impact of Fusaka on Ethereum's scalability and overall performance. Additionally, the upgrade is seen as a pivotal moment for Ethereum, with expectations of cheaper execution and increased on-chain demand. Overall, the sentiment surrounding the Fusaka upgrade is bullish, with many expecting positive outcomes for Ethereum and its users.","data":[11,4,2,3,7,7,5,4,11,10,2,9,6,6,7,3,9,25,14,5,2,4,7,3,4,8,2,14,10,4,7,3,12,5,3,3,6,4,1,6,7,6,9,5,0,6,4,3,2,3,77,2,2,6,3]},{"label":"Pokemon cards","topics":"kabuto,pokemon,kabutoking,psa,tcg","description":"The messages from twitter are discussing the rise of $KABUTO in the crypto market, with some users expressing excitement about owning the coin and its potential for growth. There is also mention of a Kabuto World Order and the power of the intersection between crypto and Pokemon. Additionally, there is talk about the value of collecting Pokemon cards and the importance of asset selection in the market. Some users are also discussing the potential of Kabuto to increase in value and its significance in the crypto world. Overall, the sentiment seems positive towards $KABUTO and its potential for success.","data":[10,4,4,7,6,9,22,5,7,8,5,1,3,6,4,8,11,5,5,7,9,8,6,10,19,3,13,9,5,5,10,5,4,11,7,26,4,3,7,5,5,10,4,6,6,5,8,8,2,5,1,3,6,2,8]},{"label":"Memecoins","topics":"memecoins,memes,memecoin,meme,dickbutt","description":"The messages from twitter are discussing the current state of memecoins in the market. Some users are questioning the sustainability of memecoins, while others are speculating on potential new meme coins that could explode in value. There is also mention of the importance of holding memecoins with leading mindshare across social media platforms. Overall, there seems to be a mix of skepticism and excitement surrounding memecoins in the crypto industry.","data":[4,4,4,6,10,3,11,5,12,6,4,3,5,3,5,9,6,3,3,4,4,5,13,6,7,4,6,2,7,5,83,8,12,6,4,2,3,4,7,3,5,3,7,2,6,4,8,12,1,7,4,6,2,1,5]},{"label":"DeFi","topics":"infinitlabs,defi,oneclick,manual,protocols","description":"DeFi, or decentralized finance, is a rapidly evolving sector within the crypto industry that is focused on making financial services more accessible and efficient through blockchain technology. In recent discussions on social media platforms like Twitter, there is a lot of excitement around the potential of DeFi to revolutionize traditional finance systems.\n\nKey points mentioned in the messages include:\n- The value of DeFi lies in its ability to open up new opportunities for users, allowing them to access financial services without the need for traditional intermediaries.\n- Projects like Geeq, 1inch, Aqua, and RISE are working on innovative solutions to unlock the true potential of DeFi and improve liquidity in the market.\n- There is a focus on building more sophisticated systems within DeFi, such as automated trading strategies and cross-chain lending, to enhance user experience and efficiency.\n- Infinit Labs is highlighted as a project that is leading the way in creating one-click solutions for complex DeFi operations, making it easier for users to navigate the decentralized finance space.\n- The industry is moving towards more sustainable yield models and real yield systems, signaling a shift towards long-term viability and growth in the DeFi sector.\n\nOverall, the messages reflect a positive outlook on the future of DeFi and the potential for continued innovation and growth within the industry.","data":[5,11,4,5,6,7,7,2,8,1,3,13,5,8,11,10,9,4,3,6,7,4,3,9,11,5,6,4,10,8,2,5,4,8,9,3,6,14,16,4,4,3,6,0,7,5,5,3,8,6,8,7,5,3,3]},{"label":"China bans crypto","topics":"chinas,chinese,china,export,crackdown","description":"The key topics currently discussed in the messages from twitter are:\n1. China's renewed crackdown on crypto trading and stablecoin misuse, with the People's Bank of China (PBOC) and 13 agencies flagging illegal activity and speculation.\n2. China's central bank reaffirming its stance on crypto, stating that Bitcoin and crypto are not legal tender and their use is considered illegal.\n3. China's dominance in the supply chain of rare earth minerals, leading to the US not mining its own resources.\n4. China's environmental impact on the world's oceanic environment, with concerns about the lack of action to stop China's activities.\n5. Taiwan's involvement in the tech industry, with UMC poised to win silicon photonics orders and partnerships with European research centers.\n6. The impact of China's policies on stablecoins and virtual currency trading, leading to stock plunges in Hong Kong and regional crypto sentiment.\n7. Geopolitical tensions between China and Japan, with Beijing aiming to punish Japan for public comments on Taiwan.\n8. The discussion of a right-wing leader for Taiwan to navigate future challenges.\n9. The impact of China's policies on the market, with stricter supervision on stablecoins and virtual currency trading.\n10. The rise in gold and silver prices in China, with declining inventories and increased demand.","data":[5,7,1,9,3,6,3,25,4,5,3,4,6,5,5,4,8,5,1,7,7,4,2,7,6,7,7,5,4,3,9,5,2,4,1,8,8,9,8,3,10,11,5,6,11,6,7,4,2,4,3,2,4,3,5]},{"label":"Hyperliquid","topics":"hyperliquid,hype,hyper,unlocks,hyperevm","description":"The key topics currently being discussed in the crypto community on Twitter include the Hyperliquid bridge, the hype surrounding the Hyperliquid x402 coin, potential price movements of HYPE, SEC experiences with stonk perps, the unlocking of $HYPE tokens, the revenue and fees collected by Hyperliquid, the development of HIP-3 and HIP-5 markets, and the transfer of HYPE tokens to Hypercore. Overall, there is a bullish sentiment towards HYPE and Hyperliquid, with discussions about potential price increases and the impact of various catalysts on the project.","data":[10,3,5,8,4,6,10,2,2,5,2,1,0,3,5,5,6,0,4,6,5,3,35,2,5,6,4,10,8,3,5,2,7,10,5,2,8,6,7,1,4,2,4,6,7,3,11,5,4,7,11,3,3,1,8]},{"label":"Microstrategy","topics":"mstr,dividends,mnav,ponzi,preferred","description":"The messages from twitter indicate that there is a lot of discussion and speculation surrounding the company MSTR (MicroStrategy) and its recent actions. It seems that MSTR has been making moves to increase its Bitcoin holdings, potentially at the expense of diluting its shares and raising cash through stock sales. There is also mention of MSTR's shift in narrative from buying Bitcoin as a USD hedge to buying USD as a reserve asset.\n\nDespite some concerns about MSTR's business model and strategy, there are also positive sentiments expressed, with some seeing MSTR as a good buy at the current price and praising the company for its aggressive moves to increase its Bitcoin holdings. The mention of a potential short squeeze and the company owning more Bitcoin than its market cap suggests a potential buy-the-dip opportunity.\n\nOverall, it seems that there is a mix of optimism and skepticism surrounding MSTR and its recent actions, with some seeing potential for growth and others questioning the sustainability of its business model.","data":[5,5,6,11,4,6,7,5,7,4,2,3,4,9,8,6,4,2,5,6,6,3,6,5,2,5,8,1,6,8,3,7,6,7,8,4,7,3,5,5,5,8,5,4,7,6,3,9,10,5,3,2,7,2,6]},{"label":"Monad","topics":"monad,emonad,emo,hayes,arthur","description":"The key topic currently discussed on twitter is the cryptocurrency Monad. There are mixed opinions about Monad, with some users impressed by its potential and others warning about its risks. Some users are excited about buying Monad at ICO price, while others caution against holding it for too long. Arthur Hayes, a prominent trader, has issued a warning about Monad, suggesting a potential 99% price collapse due to its tokenomics. Overall, there is a lot of discussion and debate surrounding Monad on social media platforms within the crypto community.","data":[5,1,6,8,6,3,7,6,3,4,4,2,7,10,5,4,1,9,8,5,0,8,7,3,3,4,2,12,6,4,37,1,3,5,6,5,6,8,3,1,5,1,3,1,1,2,5,6,2,1,4,5,8,5,1]},{"label":"ZEC price","topics":"zec,zcash,440,dancing,750","description":"The key topics discussed in the messages from twitter about $ZEC include:\n- Speculation on the price movement of $ZEC, with some predicting a bounce back to highs and others warning of a potential dump.\n- Discussion about buying opportunities at certain price levels, such as $295 and below $300.\n- Debate about whether $ZEC has bottomed or if there is more downside potential.\n- Analysis of technical indicators, such as triangles and double tops, to predict future price movements.\n- Mention of a possible fake dump and anticipation of a big bounce coming.\n- Reference to a significant price drop from last week and speculation on whether $ZEC has topped out.\n- Mention of accurate chart predictions and potential next moves for $ZEC.\n- Discussion about taking profits and potential accumulation opportunities.\n- Debate about whether the market will be kind and provide a buying opportunity at certain levels.\n- Overall sentiment seems to be mixed, with some expecting a bounce and others anticipating further downside.","data":[5,0,2,3,1,9,12,8,3,5,4,2,6,4,4,1,3,3,5,4,5,6,4,2,2,1,7,5,7,1,4,1,4,4,10,8,4,7,6,0,3,2,11,5,4,4,4,5,5,6,1,1,5,4,38]},{"label":"XRP","topics":"xrp,ripple,inflows,thebittimes,cryptocurrecy","description":"The key topic currently discussed in the crypto community on Twitter is the significant inflows into XRP spot ETFs, which have attracted over $756 million since their launch. The XRP community is encouraged to invest in these ETFs for the potential to become millionaires. Additionally, there is discussion about XRP's price movements, with analysis pointing towards potential breakouts and rebounds, as well as institutional demand and short-term pressures affecting the price. Overall, there is a mix of bullish and bearish sentiment surrounding XRP, with traders closely monitoring key resistance levels and potential price targets.","data":[4,1,6,2,5,5,4,5,4,2,7,1,2,5,4,5,9,9,5,5,3,4,6,2,7,6,4,7,5,2,1,8,3,5,3,3,7,8,11,7,4,5,8,12,7,3,2,0,5,7,1,5,3,11,4]},{"label":"Fed end tightening","topics":"qe,quantitative,qt,tightening,ended","description":"The key topics currently being discussed in the crypto community on social media include the Federal Reserve officially ending Quantitative Tightening (QT), with QT ending today and a rate cut expected in 9 days. There is speculation about how this will impact the crypto market, with some suggesting that the end of QT could trigger an altcoin season. Additionally, there is discussion about the potential for QE (quantitative easing) to start soon, with some analysts predicting it could begin as early as Q1 2026. Overall, there is anticipation for improved liquidity and potential market shifts in the near future.","data":[4,3,4,2,2,2,4,2,7,1,3,6,0,40,29,2,9,3,2,2,4,4,2,2,2,5,0,3,0,8,2,1,3,25,5,0,1,3,3,4,2,4,1,1,7,2,3,10,3,5,2,2,0,1,7]},{"label":"BTC mining","topics":"profitability,mining,miners,hashrate,ore","description":"The messages from twitter indicate that Bitcoin mining profitability is on the rise, with the average cash cost to produce one Bitcoin among publicly listed miners increasing to approximately $74,600 in Q2 2025. When factoring in non-cash costs such as depreciation and stock-based compensation, the total average cost climbs to $137,800. Despite this increase in costs, there is a remarkable stability in the Bitcoin mining ecosystem, with profitability holding firm at around $0.0384/day per TH/s. The current price of Bitcoin at $93,377 is driving strong returns for miners, making it a prime moment to optimize hashpower strategy. However, there are challenges such as the hashprice plunging to $35/PH/s, below miners' $44 costs, leading to debt accumulation and potential struggles for some operators. Overall, the messages suggest that Bitcoin mining remains a key topic of discussion in the crypto community, with a focus on profitability, costs, and the evolving landscape of the industry.","data":[1,1,2,7,10,1,4,3,3,6,7,6,8,5,5,5,2,2,3,6,5,6,6,1,4,3,3,1,3,6,49,2,5,3,4,3,11,1,5,3,4,3,6,5,3,4,2,3,2,1,4,3,1,2,0]},{"label":"Tether backing in question","topics":"tether,fud,hayes,tetherto,reserves","description":"The key topic currently discussed in the messages from twitter is the ongoing Tether FUD (Fear, Uncertainty, Doubt). Many users are expressing skepticism and concern about Tether's actions, particularly regarding their holdings of gold and potential insolvency. Some users are also discussing Tether's involvement in the crypto industry and its impact on the market. Overall, there is a mix of opinions and speculation about Tether's future and its role in the industry.","data":[2,8,2,7,1,4,3,2,4,6,10,6,6,2,1,4,6,18,2,6,4,3,3,3,5,1,5,2,10,8,1,0,5,7,2,2,3,4,4,7,5,1,1,2,8,2,27,7,1,0,8,2,3,3,2]},{"label":"Bitcoin is the future","topics":"guns,sovereignty,invention,bitcoiners,existed","description":"The messages from twitter highlight the importance of Bitcoin in changing the financial and monetary system. Bitcoin is seen as a way to separate money from the state, providing freedom and quality of life for future generations. The messages also discuss Bitcoin's role as a perfect form of money, immune to inflation and secure from central bank manipulation. Additionally, there is a focus on how Bitcoin is challenging traditional financial institutions and exposing the limits of central banks. Overall, Bitcoin is portrayed as a revolutionary force that is reshaping the way we think about money and finance.","data":[2,6,5,3,9,2,2,3,4,6,7,1,3,3,8,2,7,9,1,2,1,5,1,5,7,3,5,6,4,1,5,5,5,2,7,2,5,5,1,5,6,4,2,1,5,3,3,6,2,3,9,5,3,3,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-100.ts b/priv/repo/major_topics_seed/data-100.ts deleted file mode 100644 index 6c30928b51..0000000000 --- a/priv/repo/major_topics_seed/data-100.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '27.11.25', - '28.11.25', - '28.11.25', - '28.11.25', - '28.11.25', - '28.11.25', - '28.11.25', - '28.11.25', - '29.11.25', - '29.11.25', - '29.11.25', - '29.11.25', - '29.11.25', - '29.11.25', - '29.11.25', - '29.11.25', - '30.11.25', - '30.11.25', - '30.11.25', - '30.11.25', - '30.11.25', - '30.11.25', - '30.11.25', - '30.11.25', - '01.12.25', - '01.12.25', - '01.12.25', - '01.12.25', - '01.12.25', - '01.12.25', - '01.12.25', - '01.12.25', - '02.12.25', - '02.12.25', - '02.12.25', - '02.12.25', - '02.12.25', - '02.12.25', - '02.12.25', - '02.12.25', - '03.12.25', - '03.12.25', - '03.12.25', - '03.12.25', - '03.12.25', - '03.12.25', - '03.12.25', - '03.12.25', - '04.12.25', - '04.12.25', - '04.12.25', - '04.12.25', - '04.12.25', - '04.12.25', - '04.12.25', - ], - datasets: [ - { - label: 'Black friday', - topics: 'cyber,discounts,checkout,black,cashback', - description: - 'The key topics discussed in the messages from twitter are Black Friday deals, Cyber Monday deals, discounts on various platforms and services, crypto cashback offers, interest rates, and the increase in online spending during the holiday season. The messages also mention specific products such as keyboards, smartphones, and cold wallets. Overall, the messages indicate a high level of interest and activity in the crypto industry during the holiday shopping season.', - data: [ - 21, 15, 12, 8, 45, 13, 25, 31, 22, 12, 14, 68, 26, 12, 15, 12, 14, 14, 9, 18, 12, 22, 32, 4, - 11, 9, 13, 12, 16, 11, 15, 6, 12, 27, 9, 13, 15, 14, 12, 12, 45, 7, 25, 20, 16, 8, 7, 21, - 10, 14, 17, 15, 10, 8, 12, - ], - }, - { - label: 'AI', - topics: 'agi,ais,intelligence,artificial,agentic', - description: - 'The key topics currently discussed in the messages from twitter are:\n1. The role of AI in various industries, including finance and trading\n2. The impact of AI on job losses and job security\n3. The development of AI-powered products and services, such as AI trading coaches and AI newsrooms\n4. The intersection of AI and cryptocurrency, including AI-powered coins and platforms\n5. The potential for AI to revolutionize industries like call centers and freelancing\n6. The importance of data governance and security in AI and ML models\n7. The potential for AI to redefine how art is created and consumed\n\nOverall, the messages highlight the growing influence and potential of AI in various sectors, as well as the need for responsible and strategic use of AI technologies.', - data: [ - 9, 50, 24, 12, 11, 17, 14, 15, 22, 21, 20, 9, 11, 15, 22, 11, 10, 23, 13, 12, 8, 12, 10, 22, - 16, 16, 9, 17, 12, 14, 17, 12, 16, 10, 20, 10, 27, 16, 17, 21, 15, 14, 11, 15, 11, 20, 24, - 18, 16, 10, 23, 11, 12, 14, 11, - ], - }, - { - label: 'Christmas', - topics: 'santa,christmas,xmas,tree,lights', - description: - 'The key topics discussed in the messages from twitter are:\n1. Christmas gifts and holiday spirit\n2. Bitcoin and cryptocurrency-related gifts\n3. Family DNA kits as gifts\n4. Financial wishes for Christmas\n5. Santa Claus and Christmas wishlist\n6. Solana cryptocurrency and NFTs for Christmas\n7. Christmas skins and NFTs\n8. Christmas coin dropping chaos and raffles\n9. Santa rally in the cryptocurrency market\n10. Controversial topics related to Santa Claus and Christmas celebrations.', - data: [ - 5, 8, 10, 16, 10, 6, 12, 10, 11, 7, 2, 19, 5, 16, 3, 6, 11, 6, 28, 11, 1, 10, 21, 3, 7, 7, - 11, 14, 10, 9, 7, 7, 8, 10, 9, 4, 4, 15, 13, 7, 15, 20, 5, 7, 10, 4, 8, 8, 15, 10, 3, 18, - 14, 9, 7, - ], - }, - { - label: 'BTC price', - topics: 'rejected,93k,reclaim,84k,90k', - description: - 'The key topic currently being discussed on twitter is the resistance zone for Bitcoin (BTC) at 93-94k. Traders are closely watching this level as BTC has been rejecting it pretty hard. There are downside zones mentioned, with possible fake outs and pullbacks to 88-89k first. Some traders are expecting a move straight into the $100,000 zone, while others are cautious about the current resistance levels. The sentiment is mixed, with some seeing a bullish reversal incoming while others are waiting for more confirmation. Overall, the discussion revolves around the key resistance levels for BTC and the potential outcomes based on the current market conditions.', - data: [ - 15, 4, 4, 6, 4, 30, 7, 13, 4, 11, 7, 5, 7, 2, 2, 13, 6, 5, 8, 8, 6, 6, 15, 6, 7, 5, 11, 12, - 22, 3, 5, 12, 6, 6, 4, 7, 21, 12, 27, 24, 6, 8, 11, 2, 10, 12, 10, 6, 5, 5, 9, 6, 9, 7, 5, - ], - }, - { - label: 'Art', - topics: 'artists,artwork,ink,artist,art', - description: '', - data: [ - 3, 3, 59, 5, 9, 3, 3, 8, 10, 10, 6, 5, 8, 13, 10, 8, 8, 12, 6, 3, 5, 7, 7, 17, 4, 3, 7, 5, - 10, 8, 4, 3, 9, 7, 14, 13, 4, 5, 5, 3, 1, 1, 3, 3, 6, 6, 6, 6, 7, 4, 3, 7, 5, 13, 4, - ], - }, - { - label: 'Precious metals', - topics: 'silver,precious,metals,platinum,metal', - description: - "The key topics discussed in the messages from twitter are:\n- Silver and gold prices reaching new highs\n- Predictions of silver hitting $100 by end of 2026\n- UBS raising outlook on silver and forecasting a spike to $65/oz\n- Silver being seen as a critical metal with potential for significant growth\n- Gold's strong performance in 2025, on pace for best year since 1979\n- Market trends favoring precious metals over cryptocurrencies\n- Potential for silver to reach $250 in the long term\n- Positive performance of gold in recent months, on track for best annual performance in 46 years\n\nOverall, the messages indicate a bullish sentiment towards silver and gold, with expectations of continued growth and potential for significant price increases in the future.", - data: [ - 7, 7, 9, 4, 5, 13, 5, 5, 9, 9, 5, 3, 8, 5, 4, 5, 7, 10, 4, 26, 2, 8, 18, 5, 9, 3, 5, 2, 3, - 5, 10, 3, 3, 18, 1, 8, 19, 7, 9, 3, 5, 4, 37, 8, 9, 6, 4, 4, 7, 4, 4, 11, 5, 1, 5, - ], - }, - { - label: 'ETH Fusaka upgrade', - topics: 'fusaka,ethereums,upgrade,rollups,throughput', - description: - "The messages from twitter indicate that the Fusaka upgrade for Ethereum is highly anticipated and expected to bring significant improvements to the network. The upgrade is set to increase transaction throughput, leading to more people using Ethereum. The upgrade is also expected to enable Ethereum to reach a price of $5k immediately. The community is excited about the potential impact of Fusaka on Ethereum's scalability and overall performance. Additionally, the upgrade is seen as a pivotal moment for Ethereum, with expectations of cheaper execution and increased on-chain demand. Overall, the sentiment surrounding the Fusaka upgrade is bullish, with many expecting positive outcomes for Ethereum and its users.", - data: [ - 11, 4, 2, 3, 7, 7, 5, 4, 11, 10, 2, 9, 6, 6, 7, 3, 9, 25, 14, 5, 2, 4, 7, 3, 4, 8, 2, 14, - 10, 4, 7, 3, 12, 5, 3, 3, 6, 4, 1, 6, 7, 6, 9, 5, 0, 6, 4, 3, 2, 3, 77, 2, 2, 6, 3, - ], - }, - { - label: 'Pokemon cards', - topics: 'kabuto,pokemon,kabutoking,psa,tcg', - description: - 'The messages from twitter are discussing the rise of $KABUTO in the crypto market, with some users expressing excitement about owning the coin and its potential for growth. There is also mention of a Kabuto World Order and the power of the intersection between crypto and Pokemon. Additionally, there is talk about the value of collecting Pokemon cards and the importance of asset selection in the market. Some users are also discussing the potential of Kabuto to increase in value and its significance in the crypto world. Overall, the sentiment seems positive towards $KABUTO and its potential for success.', - data: [ - 10, 4, 4, 7, 6, 9, 22, 5, 7, 8, 5, 1, 3, 6, 4, 8, 11, 5, 5, 7, 9, 8, 6, 10, 19, 3, 13, 9, 5, - 5, 10, 5, 4, 11, 7, 26, 4, 3, 7, 5, 5, 10, 4, 6, 6, 5, 8, 8, 2, 5, 1, 3, 6, 2, 8, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memes,memecoin,meme,dickbutt', - description: - 'The messages from twitter are discussing the current state of memecoins in the market. Some users are questioning the sustainability of memecoins, while others are speculating on potential new meme coins that could explode in value. There is also mention of the importance of holding memecoins with leading mindshare across social media platforms. Overall, there seems to be a mix of skepticism and excitement surrounding memecoins in the crypto industry.', - data: [ - 4, 4, 4, 6, 10, 3, 11, 5, 12, 6, 4, 3, 5, 3, 5, 9, 6, 3, 3, 4, 4, 5, 13, 6, 7, 4, 6, 2, 7, - 5, 83, 8, 12, 6, 4, 2, 3, 4, 7, 3, 5, 3, 7, 2, 6, 4, 8, 12, 1, 7, 4, 6, 2, 1, 5, - ], - }, - { - label: 'DeFi', - topics: 'infinitlabs,defi,oneclick,manual,protocols', - description: - 'DeFi, or decentralized finance, is a rapidly evolving sector within the crypto industry that is focused on making financial services more accessible and efficient through blockchain technology. In recent discussions on social media platforms like Twitter, there is a lot of excitement around the potential of DeFi to revolutionize traditional finance systems.\n\nKey points mentioned in the messages include:\n- The value of DeFi lies in its ability to open up new opportunities for users, allowing them to access financial services without the need for traditional intermediaries.\n- Projects like Geeq, 1inch, Aqua, and RISE are working on innovative solutions to unlock the true potential of DeFi and improve liquidity in the market.\n- There is a focus on building more sophisticated systems within DeFi, such as automated trading strategies and cross-chain lending, to enhance user experience and efficiency.\n- Infinit Labs is highlighted as a project that is leading the way in creating one-click solutions for complex DeFi operations, making it easier for users to navigate the decentralized finance space.\n- The industry is moving towards more sustainable yield models and real yield systems, signaling a shift towards long-term viability and growth in the DeFi sector.\n\nOverall, the messages reflect a positive outlook on the future of DeFi and the potential for continued innovation and growth within the industry.', - data: [ - 5, 11, 4, 5, 6, 7, 7, 2, 8, 1, 3, 13, 5, 8, 11, 10, 9, 4, 3, 6, 7, 4, 3, 9, 11, 5, 6, 4, 10, - 8, 2, 5, 4, 8, 9, 3, 6, 14, 16, 4, 4, 3, 6, 0, 7, 5, 5, 3, 8, 6, 8, 7, 5, 3, 3, - ], - }, - { - label: 'China bans crypto', - topics: 'chinas,chinese,china,export,crackdown', - description: - "The key topics currently discussed in the messages from twitter are:\n1. China's renewed crackdown on crypto trading and stablecoin misuse, with the People's Bank of China (PBOC) and 13 agencies flagging illegal activity and speculation.\n2. China's central bank reaffirming its stance on crypto, stating that Bitcoin and crypto are not legal tender and their use is considered illegal.\n3. China's dominance in the supply chain of rare earth minerals, leading to the US not mining its own resources.\n4. China's environmental impact on the world's oceanic environment, with concerns about the lack of action to stop China's activities.\n5. Taiwan's involvement in the tech industry, with UMC poised to win silicon photonics orders and partnerships with European research centers.\n6. The impact of China's policies on stablecoins and virtual currency trading, leading to stock plunges in Hong Kong and regional crypto sentiment.\n7. Geopolitical tensions between China and Japan, with Beijing aiming to punish Japan for public comments on Taiwan.\n8. The discussion of a right-wing leader for Taiwan to navigate future challenges.\n9. The impact of China's policies on the market, with stricter supervision on stablecoins and virtual currency trading.\n10. The rise in gold and silver prices in China, with declining inventories and increased demand.", - data: [ - 5, 7, 1, 9, 3, 6, 3, 25, 4, 5, 3, 4, 6, 5, 5, 4, 8, 5, 1, 7, 7, 4, 2, 7, 6, 7, 7, 5, 4, 3, - 9, 5, 2, 4, 1, 8, 8, 9, 8, 3, 10, 11, 5, 6, 11, 6, 7, 4, 2, 4, 3, 2, 4, 3, 5, - ], - }, - { - label: 'Hyperliquid', - topics: 'hyperliquid,hype,hyper,unlocks,hyperevm', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the Hyperliquid bridge, the hype surrounding the Hyperliquid x402 coin, potential price movements of HYPE, SEC experiences with stonk perps, the unlocking of $HYPE tokens, the revenue and fees collected by Hyperliquid, the development of HIP-3 and HIP-5 markets, and the transfer of HYPE tokens to Hypercore. Overall, there is a bullish sentiment towards HYPE and Hyperliquid, with discussions about potential price increases and the impact of various catalysts on the project.', - data: [ - 10, 3, 5, 8, 4, 6, 10, 2, 2, 5, 2, 1, 0, 3, 5, 5, 6, 0, 4, 6, 5, 3, 35, 2, 5, 6, 4, 10, 8, - 3, 5, 2, 7, 10, 5, 2, 8, 6, 7, 1, 4, 2, 4, 6, 7, 3, 11, 5, 4, 7, 11, 3, 3, 1, 8, - ], - }, - { - label: 'Microstrategy', - topics: 'mstr,dividends,mnav,ponzi,preferred', - description: - "The messages from twitter indicate that there is a lot of discussion and speculation surrounding the company MSTR (MicroStrategy) and its recent actions. It seems that MSTR has been making moves to increase its Bitcoin holdings, potentially at the expense of diluting its shares and raising cash through stock sales. There is also mention of MSTR's shift in narrative from buying Bitcoin as a USD hedge to buying USD as a reserve asset.\n\nDespite some concerns about MSTR's business model and strategy, there are also positive sentiments expressed, with some seeing MSTR as a good buy at the current price and praising the company for its aggressive moves to increase its Bitcoin holdings. The mention of a potential short squeeze and the company owning more Bitcoin than its market cap suggests a potential buy-the-dip opportunity.\n\nOverall, it seems that there is a mix of optimism and skepticism surrounding MSTR and its recent actions, with some seeing potential for growth and others questioning the sustainability of its business model.", - data: [ - 5, 5, 6, 11, 4, 6, 7, 5, 7, 4, 2, 3, 4, 9, 8, 6, 4, 2, 5, 6, 6, 3, 6, 5, 2, 5, 8, 1, 6, 8, - 3, 7, 6, 7, 8, 4, 7, 3, 5, 5, 5, 8, 5, 4, 7, 6, 3, 9, 10, 5, 3, 2, 7, 2, 6, - ], - }, - { - label: 'Monad', - topics: 'monad,emonad,emo,hayes,arthur', - description: - 'The key topic currently discussed on twitter is the cryptocurrency Monad. There are mixed opinions about Monad, with some users impressed by its potential and others warning about its risks. Some users are excited about buying Monad at ICO price, while others caution against holding it for too long. Arthur Hayes, a prominent trader, has issued a warning about Monad, suggesting a potential 99% price collapse due to its tokenomics. Overall, there is a lot of discussion and debate surrounding Monad on social media platforms within the crypto community.', - data: [ - 5, 1, 6, 8, 6, 3, 7, 6, 3, 4, 4, 2, 7, 10, 5, 4, 1, 9, 8, 5, 0, 8, 7, 3, 3, 4, 2, 12, 6, 4, - 37, 1, 3, 5, 6, 5, 6, 8, 3, 1, 5, 1, 3, 1, 1, 2, 5, 6, 2, 1, 4, 5, 8, 5, 1, - ], - }, - { - label: 'ZEC price', - topics: 'zec,zcash,440,dancing,750', - description: - 'The key topics discussed in the messages from twitter about $ZEC include:\n- Speculation on the price movement of $ZEC, with some predicting a bounce back to highs and others warning of a potential dump.\n- Discussion about buying opportunities at certain price levels, such as $295 and below $300.\n- Debate about whether $ZEC has bottomed or if there is more downside potential.\n- Analysis of technical indicators, such as triangles and double tops, to predict future price movements.\n- Mention of a possible fake dump and anticipation of a big bounce coming.\n- Reference to a significant price drop from last week and speculation on whether $ZEC has topped out.\n- Mention of accurate chart predictions and potential next moves for $ZEC.\n- Discussion about taking profits and potential accumulation opportunities.\n- Debate about whether the market will be kind and provide a buying opportunity at certain levels.\n- Overall sentiment seems to be mixed, with some expecting a bounce and others anticipating further downside.', - data: [ - 5, 0, 2, 3, 1, 9, 12, 8, 3, 5, 4, 2, 6, 4, 4, 1, 3, 3, 5, 4, 5, 6, 4, 2, 2, 1, 7, 5, 7, 1, - 4, 1, 4, 4, 10, 8, 4, 7, 6, 0, 3, 2, 11, 5, 4, 4, 4, 5, 5, 6, 1, 1, 5, 4, 38, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,inflows,thebittimes,cryptocurrecy', - description: - "The key topic currently discussed in the crypto community on Twitter is the significant inflows into XRP spot ETFs, which have attracted over $756 million since their launch. The XRP community is encouraged to invest in these ETFs for the potential to become millionaires. Additionally, there is discussion about XRP's price movements, with analysis pointing towards potential breakouts and rebounds, as well as institutional demand and short-term pressures affecting the price. Overall, there is a mix of bullish and bearish sentiment surrounding XRP, with traders closely monitoring key resistance levels and potential price targets.", - data: [ - 4, 1, 6, 2, 5, 5, 4, 5, 4, 2, 7, 1, 2, 5, 4, 5, 9, 9, 5, 5, 3, 4, 6, 2, 7, 6, 4, 7, 5, 2, 1, - 8, 3, 5, 3, 3, 7, 8, 11, 7, 4, 5, 8, 12, 7, 3, 2, 0, 5, 7, 1, 5, 3, 11, 4, - ], - }, - { - label: 'Fed end tightening', - topics: 'qe,quantitative,qt,tightening,ended', - description: - 'The key topics currently being discussed in the crypto community on social media include the Federal Reserve officially ending Quantitative Tightening (QT), with QT ending today and a rate cut expected in 9 days. There is speculation about how this will impact the crypto market, with some suggesting that the end of QT could trigger an altcoin season. Additionally, there is discussion about the potential for QE (quantitative easing) to start soon, with some analysts predicting it could begin as early as Q1 2026. Overall, there is anticipation for improved liquidity and potential market shifts in the near future.', - data: [ - 4, 3, 4, 2, 2, 2, 4, 2, 7, 1, 3, 6, 0, 40, 29, 2, 9, 3, 2, 2, 4, 4, 2, 2, 2, 5, 0, 3, 0, 8, - 2, 1, 3, 25, 5, 0, 1, 3, 3, 4, 2, 4, 1, 1, 7, 2, 3, 10, 3, 5, 2, 2, 0, 1, 7, - ], - }, - { - label: 'BTC mining', - topics: 'profitability,mining,miners,hashrate,ore', - description: - "The messages from twitter indicate that Bitcoin mining profitability is on the rise, with the average cash cost to produce one Bitcoin among publicly listed miners increasing to approximately $74,600 in Q2 2025. When factoring in non-cash costs such as depreciation and stock-based compensation, the total average cost climbs to $137,800. Despite this increase in costs, there is a remarkable stability in the Bitcoin mining ecosystem, with profitability holding firm at around $0.0384/day per TH/s. The current price of Bitcoin at $93,377 is driving strong returns for miners, making it a prime moment to optimize hashpower strategy. However, there are challenges such as the hashprice plunging to $35/PH/s, below miners' $44 costs, leading to debt accumulation and potential struggles for some operators. Overall, the messages suggest that Bitcoin mining remains a key topic of discussion in the crypto community, with a focus on profitability, costs, and the evolving landscape of the industry.", - data: [ - 1, 1, 2, 7, 10, 1, 4, 3, 3, 6, 7, 6, 8, 5, 5, 5, 2, 2, 3, 6, 5, 6, 6, 1, 4, 3, 3, 1, 3, 6, - 49, 2, 5, 3, 4, 3, 11, 1, 5, 3, 4, 3, 6, 5, 3, 4, 2, 3, 2, 1, 4, 3, 1, 2, 0, - ], - }, - { - label: 'Tether backing in question', - topics: 'tether,fud,hayes,tetherto,reserves', - description: - "The key topic currently discussed in the messages from twitter is the ongoing Tether FUD (Fear, Uncertainty, Doubt). Many users are expressing skepticism and concern about Tether's actions, particularly regarding their holdings of gold and potential insolvency. Some users are also discussing Tether's involvement in the crypto industry and its impact on the market. Overall, there is a mix of opinions and speculation about Tether's future and its role in the industry.", - data: [ - 2, 8, 2, 7, 1, 4, 3, 2, 4, 6, 10, 6, 6, 2, 1, 4, 6, 18, 2, 6, 4, 3, 3, 3, 5, 1, 5, 2, 10, 8, - 1, 0, 5, 7, 2, 2, 3, 4, 4, 7, 5, 1, 1, 2, 8, 2, 27, 7, 1, 0, 8, 2, 3, 3, 2, - ], - }, - { - label: 'Bitcoin is the future', - topics: 'guns,sovereignty,invention,bitcoiners,existed', - description: - "The messages from twitter highlight the importance of Bitcoin in changing the financial and monetary system. Bitcoin is seen as a way to separate money from the state, providing freedom and quality of life for future generations. The messages also discuss Bitcoin's role as a perfect form of money, immune to inflation and secure from central bank manipulation. Additionally, there is a focus on how Bitcoin is challenging traditional financial institutions and exposing the limits of central banks. Overall, Bitcoin is portrayed as a revolutionary force that is reshaping the way we think about money and finance.", - data: [ - 2, 6, 5, 3, 9, 2, 2, 3, 4, 6, 7, 1, 3, 3, 8, 2, 7, 9, 1, 2, 1, 5, 1, 5, 7, 3, 5, 6, 4, 1, 5, - 5, 5, 2, 7, 2, 5, 5, 1, 5, 6, 4, 2, 1, 5, 3, 3, 6, 2, 3, 9, 5, 3, 3, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-101.json b/priv/repo/major_topics_seed/data-101.json deleted file mode 100644 index d0f3daf5d7..0000000000 --- a/priv/repo/major_topics_seed/data-101.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["04.12.25","05.12.25","05.12.25","05.12.25","05.12.25","05.12.25","05.12.25","05.12.25","06.12.25","06.12.25","06.12.25","06.12.25","06.12.25","06.12.25","06.12.25","06.12.25","07.12.25","07.12.25","07.12.25","07.12.25","07.12.25","07.12.25","07.12.25","07.12.25","08.12.25","08.12.25","08.12.25","08.12.25","08.12.25","08.12.25","08.12.25","08.12.25","09.12.25","09.12.25","09.12.25","09.12.25","09.12.25","09.12.25","09.12.25","09.12.25","10.12.25","10.12.25","10.12.25","10.12.25","10.12.25","10.12.25","10.12.25","10.12.25","11.12.25","11.12.25","11.12.25","11.12.25","11.12.25","11.12.25","11.12.25"],"datasets":[{"label":"AI Future Trends","topics":"replace,humans,ais,bubble,engineers","description":"The messages from the social media accounts twitter, twitter_news, and twitter_nft discuss various aspects of AI, including its potential, limitations, and applications in different industries such as finance, e-commerce, and entertainment. There is a mix of excitement, skepticism, and curiosity surrounding AI, with some users expressing enthusiasm for the future possibilities it offers, while others raise concerns about its impact on society and job roles. Overall, the discussions highlight the growing importance of AI in shaping the future of technology and business.","data":[8,58,17,10,17,12,18,13,17,26,12,12,16,9,20,14,20,13,24,14,16,14,10,12,12,12,12,10,8,13,16,15,10,28,8,18,17,10,18,18,12,16,13,19,11,14,18,23,4,21,16,13,8,17,8]},{"label":"Bitcoin","topics":"fiat,bitcoiners,spam,sovereignty,corrupt","description":"The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are:\n1. Bitcoin providing freedom and independence from broken money systems.\n2. Bitcoin's adherence to its original vision as outlined in the white paper.\n3. The importance of understanding math and economics in relation to Bitcoin.\n4. The role of incentives in solving problems within the Bitcoin network.\n5. The potential impact of Bitcoin on global financial systems.\n6. The debate surrounding Bitcoin Cash and its branding as the \"real Bitcoin.\"\n7. The significance of Bitcoin as a global reserve asset.\n8. The distinction between cryptocurrency as finance and Bitcoin as money.\n9. The historical bugs in Bitcoin's code and the importance of developers in maintaining its integrity.\n10. The ongoing evolution of the narrative surrounding Bitcoin and its role in the financial revolution.","data":[4,11,8,16,7,20,6,11,7,14,10,4,10,6,17,7,11,9,8,7,3,11,6,11,12,4,9,6,10,5,13,18,3,7,12,6,9,8,4,18,7,5,4,11,10,7,10,11,2,10,13,8,10,12,2]},{"label":"DeFi","topics":"infinitlabs,defi,intent,folksfinance,heyelsaai","description":"The key topics discussed in the messages from the social media accounts include the success and growth of DeFi in the crypto industry, the importance of structured exposure in DeFi launches, the role of security tools and AI in experimentation, the growth of liquid staking on networks like Flow, the emergence of new DeFi projects like MoreMarkets and INFINIT, the development of yield apps across different platforms, and the use of AI in DeFi strategies.\n\nOverall, the messages highlight the positive impact of DeFi on the crypto industry and the potential for further growth and innovation in the space. The focus is on making DeFi more accessible, efficient, and secure for users, with a strong emphasis on the use of technology and data to drive advancements in the industry.","data":[6,7,3,9,9,5,3,6,6,10,9,12,12,8,5,20,9,8,9,4,10,8,5,10,11,7,7,6,4,14,6,9,4,6,12,5,9,14,7,11,2,3,15,4,5,10,8,9,11,7,11,7,5,9,9]},{"label":"Crypto Christmas","topics":"christmas,santa,holiday,gift,gifts","description":"The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are:\n\n1. Bitcoin Santa rally to $102k\n2. Christmas gifts and wishes, including crypto-related gifts like Plush Pepe and 4k eth\n3. Christmas-themed promotions and raffles in the crypto industry\n4. Christmas-themed events and promotions in the TRON Eco community\n5. Christmas-themed promotions and rewards in various crypto platforms like BTSE Wonderland and Gate Live Christmas Carnival\n6. Memecoins like $SANTA being discussed as potential investments for the holiday season\n7. Advent calendars and special promotions in the crypto industry for the holiday season\n8. The impact of Christmas on the crypto market and trading activities\n9. Theoriq running a campaign ahead of their TGE with rewards for creators\n10. Hotcoin Christmas specials for new users, including a deposit bonus and prize pool.","data":[10,7,8,4,12,2,6,6,10,2,12,11,6,3,3,6,9,6,15,6,9,6,14,0,8,0,9,8,9,5,5,3,3,7,5,2,6,8,4,5,10,13,9,7,6,2,7,8,8,8,6,13,5,9,7]},{"label":"Cross-chain DEX","topics":"reya,reyaxyz,dexs,dex,perp","description":"The key topic currently being discussed in the crypto industry is market making latency, specifically using Deribit perps as an example for Litecoin (LTC) traders. The focus is on the importance of not needing a centralized exchange (CEX) but rather utilizing a crosschain decentralized exchange (DEX) like Maya Protocol. Additionally, there is a comparison between Opter and Hyperliquid racing for the top perp DEX spot, with Opter gaining momentum through trade incentives. CeDeFi in The New Money App allows for exploring DEX assets on Solana, Base, and X Layer in one place without gas fees or bridging. The partnership between Reya and LayerZero is highlighted as a significant development in the space, offering fast execution, deep liquidity, and security across multiple chains. Other projects like HypersurfaceX and Pact_Swap are also mentioned for their innovative approaches to trading volatility and scalability across chains. Overall, the focus is on the advancements in decentralized trading infrastructure and the potential for high-performance trading experiences in the future.","data":[4,5,2,2,3,4,7,6,5,6,6,3,12,6,5,10,10,3,3,3,3,6,4,9,4,6,4,6,5,6,2,2,2,8,22,4,2,5,6,2,2,2,4,0,6,5,9,4,8,9,8,6,2,4,3]},{"label":"Whales Accumulating","topics":"whale,whales,unrealized,insider,ena","description":"The key topic currently discussed in the messages from the Twitter accounts is the significant moves made by whales in the crypto industry, particularly in relation to Bitcoin (BTC) and Ethereum (ETH). Whales are seen accumulating large amounts of BTC and ETH, with some making substantial profits from their positions. There is a mix of long and short positions being taken by different whales, with some showing bullish sentiment towards ETH and altcoins. The messages also highlight specific whale trades, such as a $67 million ETH long position and a $300 million long position on various altcoins. Overall, the sentiment seems to be leaning towards bullish moves by whales in the crypto market.","data":[5,2,2,2,1,2,4,4,4,4,2,0,1,2,1,2,1,5,3,3,4,0,2,5,1,3,2,4,3,5,2,8,2,5,6,1,1,1,2,2,3,8,5,3,5,2,0,4,1,5,1,3,0,97,1]},{"label":"Privacy","topics":"privacy,zcash,zk,proofs,shielded","description":"The messages from the social media accounts highlight the importance of privacy in the crypto industry, with a focus on programmable privacy, quantum security, and scalability. There is a discussion about the need for privacy in transactions, with mentions of Monero being a zero premine privacy coin and Bitcoin potentially needing to improve its privacy features. Projects like COTI and Hathor are mentioned for their efforts in delivering programmable privacy to blockchains.\n\nThere is also a mention of the importance of reclaiming control over personal data and the role of projects like zkPass in providing privacy without sacrificing transparency. The messages emphasize the need for privacy as infrastructure that works across ecosystems, rather than isolated privacy chains.\n\nOverall, the messages suggest a growing interest in privacy technology within the crypto industry, with a focus on maintaining privacy while ensuring transparency and security. Developers are paying attention to new privacy-ready architectures, such as those being developed by projects like Miden, which are setting a new standard for privacy on-chain.","data":[0,3,2,4,3,4,3,4,3,5,4,2,4,5,3,4,7,3,4,2,4,5,1,6,3,1,2,4,6,5,6,3,2,3,5,1,22,3,2,3,5,5,4,2,2,2,6,3,4,10,3,2,6,1,6]},{"label":"Silver Price","topics":"silver,metals,sachs,goldman,gold","description":"The key topics discussed in the messages from the social media accounts are:\n1. Silver breaking above $60 and reaching record highs.\n2. Speculation on the future price of silver, with predictions ranging from $70 to potentially $80.\n3. Analysis of the reasons behind the surge in silver prices, including industrial demand, inflation protection, and currency devaluation concerns.\n4. Debate on whether gold can keep up with silver's performance.\n5. Concerns about the global debt levels and their impact on the economy.\n6. Discussion on the factors affecting silver supply, such as declining ore grades and increasing demand from industries like solar production.\n7. Speculation on the potential impact of the recent spike in SOFR volume on the banking system.\n8. Contrasting opinions on short-term trading strategies for silver, with some suggesting buying while it's below $60 and others cautioning against shorting it.\nOverall, the sentiment towards silver appears to be bullish, with many analysts and investors optimistic about its future performance.","data":[0,2,3,2,3,3,6,0,11,2,6,3,3,3,4,5,1,2,9,10,1,6,1,1,3,1,3,1,3,1,2,4,6,5,4,4,12,4,7,13,3,2,11,3,4,4,2,4,4,2,2,3,3,0,5]},{"label":"Bitcoin ETF outflows","topics":"outflows,inflows,inflow,etfs,net","description":"The key topic currently discussed in the crypto industry on social media platforms is the flow of funds in Bitcoin and Ethereum ETFs. There have been significant inflows and outflows in both Bitcoin and Ethereum ETFs, with Bitcoin ETFs experiencing a net outflow of $195 million, while Ethereum ETFs saw a net inflow of $177.7 million. Institutions are showing a preference for Ethereum over Bitcoin, as evidenced by the higher net inflow in Ethereum ETFs compared to Bitcoin ETFs. Additionally, there is a focus on the impact of these fund flows on the prices of Bitcoin and Ethereum, with investors closely monitoring the situation.","data":[2,2,3,9,1,5,0,3,4,1,0,4,1,2,5,2,2,15,3,1,1,2,5,11,0,0,3,0,2,3,2,6,1,10,1,7,1,2,9,0,14,5,3,2,21,5,0,1,3,2,0,2,7,3,2]},{"label":"Fed","topics":"bps,25bps,cut,hawkish,dovish","description":"The Federal Reserve has announced a 25bps rate cut, which was expected by the market. The real focus now is on Jerome Powell's stance on the markets, as his remarks will have a big impact on December 10th. The market consensus is strong on the cut, but there is uncertainty on how aggressive future rate cuts will be. The Fed's decision was less hawkish than expected, and there were dissenting votes within the committee. Overall, the policy shift towards Quantitative Tightening (QT) and liquidity concerns are more important for the crypto industry than the rate cut itself. The next Fed cut may bring more volatility, and the resumption of Treasury securities purchases by the Fed is a significant development. The market is eagerly awaiting Powell's speech and monitoring the situation closely.","data":[11,3,3,3,1,3,1,11,1,5,2,34,10,2,1,13,5,2,1,0,2,1,1,3,0,2,2,0,0,7,3,3,0,4,1,3,7,3,7,2,3,6,3,3,1,3,1,2,3,1,1,3,1,3,2]},{"label":"Bitcoin Multichain","topics":"beyondtech,wrapping,interoperability,btcfi,layerzero","description":"The key topic currently being discussed in the crypto industry is the next wave of BTCFi being multichain and the importance of keeping it secure. There is a focus on interoperability and the ability for Bitcoin to move seamlessly across different chains, with @beyond__tech being highlighted as a key player in this space. The discussion also touches on the potential for Bitcoin to become the center of the DeFi ecosystem and the importance of real liquidity rails for Bitcoin. Overall, there is a lot of excitement around the potential for Bitcoin to become more active and usable in the broader crypto ecosystem.","data":[2,1,1,2,2,3,3,4,1,6,5,3,3,5,4,2,6,5,3,2,1,2,2,8,3,8,7,4,5,4,1,2,1,3,3,3,4,8,1,3,3,2,2,3,7,5,4,3,3,7,7,4,1,1,1]},{"label":"Bitcoin 4-Year Cycle","topics":"4year,wood,cycle,cycles,dead","description":"The key topic currently discussed in the messages from twitter, twitter_news, and twitter_nft is the debate surrounding the Bitcoin four-year cycle. Some analysts believe that the traditional four-year cycle is dead, while others argue that it is simply evolving or being disrupted. There are discussions about institutional buying offsetting retail panic-selling, the potential for a big breakout upwards, and the idea that the cycle may have inverted rather than broken. Additionally, there are mentions of the S2F curve, the impact of liquidity on Bitcoin's movement, and the belief that protocols with real product-market fit will survive. Overall, there is a lot of debate and analysis surrounding the future of the Bitcoin cycle and how it may be changing in the current market environment.","data":[2,5,7,3,3,10,5,2,3,4,1,10,8,1,2,5,1,4,0,0,5,7,1,3,1,2,1,0,3,2,2,0,2,5,2,1,1,3,2,3,7,11,2,1,0,1,2,8,3,3,1,3,2,0,19]},{"label":"AlignerZ Labs","topics":"alignerz,vesting,alignerzlabs,tradable,weight","description":"The key topic discussed in the messages from @Altsteinn, @zephyr_org, and @AlignerZ_Labs is the innovative approach taken by AlignerZ Labs in the crypto industry. AlignerZ Labs is described as a game changer in the launchpad space, focusing on long-term growth and real alignment for investors. The team behind AlignerZ Labs is praised for targeting stability on key EVM chains such as Polygon, Arbitrum, and Base, and for their strategic, limited rollout approach to ensure deep integration before scaling.\n\nThe messages highlight AlignerZ Labs' Tradable Vesting System (TVS), which turns locked tokens into tradable NFTs, promoting true long-term alignment for investors and projects. The TVS is described as a strong tokenomic tool that rewards commitment and choice of vesting length, rather than speed or gas wars. Additionally, AlignerZ Labs' IWO model rewards users based on how long they stay aligned, removing chaos from bots and speed rushes.\n\nOverall, the messages emphasize AlignerZ Labs' unique approach to token launches, focusing on rewarding belief and commitment over speed, and providing innovative solutions to address the challenges in the crypto industry.","data":[0,1,3,1,4,4,3,4,4,0,6,3,1,3,2,6,6,4,17,5,1,1,0,2,8,13,6,2,9,2,3,3,0,0,2,1,6,3,4,2,2,1,0,5,2,3,4,1,5,5,0,5,1,2,1]},{"label":"$ZEC","topics":"zec,zcash,wen,controlled,pepe","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. Zcash ($ZEC) price movements and predictions, with mentions of buying the dip and potential pumps.\n2. Speculation on the future price of Zcash, with predictions ranging from $480 to $540.\n3. Analysis of market trends, such as accumulation at $440 and potential bullish rebounds.\n4. Discussion of smart money whales accumulating Zcash and positive net flows.\n5. Trading strategies and indicators for Zcash, including support levels and RSI divergence.\n6. Comparison of Zcash to other cryptocurrencies, such as Bitcoin ($BTC) and Solana ($SOL).\n7. Skepticism about privacy narrative hype surrounding Zcash and potential bearish corrections.\n8. Mention of high-profile investors, such as the Winklevoss twins, buying Zcash at lower prices.\n9. Calls to action for buying Zcash before missing out on potential pumps and FOMO.\n10. Humorous commentary on market manipulation and fake dumps in the crypto industry.","data":[1,0,0,2,1,3,3,4,1,1,2,3,2,2,3,2,1,1,2,0,6,3,2,0,4,0,4,5,4,1,1,3,3,1,5,2,2,2,6,0,4,2,3,4,1,4,3,3,2,3,2,4,1,4,53]},{"label":"Limitless","topics":"limitless,trylimitless,outcomes,grant,prediction","description":"Limitless, a prediction market platform, has been making waves in the crypto industry with its algorithmic execution tested real data on slippage, duration, and limits. The platform has settled a $2M+ market without any issues, with 23,000 traders passing through the order book and 400,000 transactions cleared flawlessly. It offers a unique experience for traders, providing a live environment to test instinct, timing, and sentiment in real time.\n\nLimitless has been praised for its speed, skill, and real market depth, offering transparent order book trading and real-time settlements. The platform challenges traders to check their biases and think again if the market signal disagrees with their beliefs. Time-based limit orders are highlighted as a stress-free way to execute trades automatically.\n\nThe platform has introduced the Prophet Challenge, turning prediction markets into a skill game where traders compete for rewards and ecosystem perks. Additionally, Limitless has partnered with dFusion AI protocol to map markets on Predict, powered by $TAO subnet 70: vericore.\n\nOverall, Limitless offers a user-friendly experience with no KYC requirements and no risk of liquidation. Traders can make predictions, earn money, and position themselves for rewards. The platform has seen significant growth, with strong potential for the future.","data":[1,2,0,5,7,1,2,3,6,3,0,6,3,5,1,4,4,2,1,4,5,6,2,1,6,2,11,2,7,11,3,1,1,0,1,2,2,3,4,3,1,4,1,2,4,6,5,3,3,2,3,6,4,1,1]},{"label":"AI chip market","topics":"chips,nvidia,china,chinas,export","description":"The key topics currently being discussed in the messages from twitter, twitter_news, and twitter_nft are related to the development and export of AI chips, particularly by companies like Alibaba, Cambricon, and Nvidia. There is a focus on China's efforts to boost its domestic AI industry and reduce reliance on US technology, as well as the impact of US-China relations on the tech industry. Additionally, there are discussions about the potential implications of national security reviews on the export of AI chips to China, as well as the role of universities in collaborating with Chinese state and military-linked AI labs. Overall, the messages highlight the complex dynamics and competition in the global AI chip market.","data":[2,15,4,5,1,1,0,2,17,2,1,1,7,1,5,3,0,4,3,4,1,2,1,2,4,2,1,1,1,1,1,1,3,4,2,4,4,4,2,5,5,4,7,1,0,6,1,3,1,2,3,2,3,2,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-101.ts b/priv/repo/major_topics_seed/data-101.ts deleted file mode 100644 index 0a312a0b87..0000000000 --- a/priv/repo/major_topics_seed/data-101.ts +++ /dev/null @@ -1,223 +0,0 @@ -export const NARRATIVES = { - labels: [ - '04.12.25', - '05.12.25', - '05.12.25', - '05.12.25', - '05.12.25', - '05.12.25', - '05.12.25', - '05.12.25', - '06.12.25', - '06.12.25', - '06.12.25', - '06.12.25', - '06.12.25', - '06.12.25', - '06.12.25', - '06.12.25', - '07.12.25', - '07.12.25', - '07.12.25', - '07.12.25', - '07.12.25', - '07.12.25', - '07.12.25', - '07.12.25', - '08.12.25', - '08.12.25', - '08.12.25', - '08.12.25', - '08.12.25', - '08.12.25', - '08.12.25', - '08.12.25', - '09.12.25', - '09.12.25', - '09.12.25', - '09.12.25', - '09.12.25', - '09.12.25', - '09.12.25', - '09.12.25', - '10.12.25', - '10.12.25', - '10.12.25', - '10.12.25', - '10.12.25', - '10.12.25', - '10.12.25', - '10.12.25', - '11.12.25', - '11.12.25', - '11.12.25', - '11.12.25', - '11.12.25', - '11.12.25', - '11.12.25', - ], - datasets: [ - { - label: 'AI Future Trends', - topics: 'replace,humans,ais,bubble,engineers', - description: - 'The messages from the social media accounts twitter, twitter_news, and twitter_nft discuss various aspects of AI, including its potential, limitations, and applications in different industries such as finance, e-commerce, and entertainment. There is a mix of excitement, skepticism, and curiosity surrounding AI, with some users expressing enthusiasm for the future possibilities it offers, while others raise concerns about its impact on society and job roles. Overall, the discussions highlight the growing importance of AI in shaping the future of technology and business.', - data: [ - 8, 58, 17, 10, 17, 12, 18, 13, 17, 26, 12, 12, 16, 9, 20, 14, 20, 13, 24, 14, 16, 14, 10, - 12, 12, 12, 12, 10, 8, 13, 16, 15, 10, 28, 8, 18, 17, 10, 18, 18, 12, 16, 13, 19, 11, 14, - 18, 23, 4, 21, 16, 13, 8, 17, 8, - ], - }, - { - label: 'Bitcoin', - topics: 'fiat,bitcoiners,spam,sovereignty,corrupt', - description: - 'The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are:\n1. Bitcoin providing freedom and independence from broken money systems.\n2. Bitcoin\'s adherence to its original vision as outlined in the white paper.\n3. The importance of understanding math and economics in relation to Bitcoin.\n4. The role of incentives in solving problems within the Bitcoin network.\n5. The potential impact of Bitcoin on global financial systems.\n6. The debate surrounding Bitcoin Cash and its branding as the "real Bitcoin."\n7. The significance of Bitcoin as a global reserve asset.\n8. The distinction between cryptocurrency as finance and Bitcoin as money.\n9. The historical bugs in Bitcoin\'s code and the importance of developers in maintaining its integrity.\n10. The ongoing evolution of the narrative surrounding Bitcoin and its role in the financial revolution.', - data: [ - 4, 11, 8, 16, 7, 20, 6, 11, 7, 14, 10, 4, 10, 6, 17, 7, 11, 9, 8, 7, 3, 11, 6, 11, 12, 4, 9, - 6, 10, 5, 13, 18, 3, 7, 12, 6, 9, 8, 4, 18, 7, 5, 4, 11, 10, 7, 10, 11, 2, 10, 13, 8, 10, - 12, 2, - ], - }, - { - label: 'DeFi', - topics: 'infinitlabs,defi,intent,folksfinance,heyelsaai', - description: - 'The key topics discussed in the messages from the social media accounts include the success and growth of DeFi in the crypto industry, the importance of structured exposure in DeFi launches, the role of security tools and AI in experimentation, the growth of liquid staking on networks like Flow, the emergence of new DeFi projects like MoreMarkets and INFINIT, the development of yield apps across different platforms, and the use of AI in DeFi strategies.\n\nOverall, the messages highlight the positive impact of DeFi on the crypto industry and the potential for further growth and innovation in the space. The focus is on making DeFi more accessible, efficient, and secure for users, with a strong emphasis on the use of technology and data to drive advancements in the industry.', - data: [ - 6, 7, 3, 9, 9, 5, 3, 6, 6, 10, 9, 12, 12, 8, 5, 20, 9, 8, 9, 4, 10, 8, 5, 10, 11, 7, 7, 6, - 4, 14, 6, 9, 4, 6, 12, 5, 9, 14, 7, 11, 2, 3, 15, 4, 5, 10, 8, 9, 11, 7, 11, 7, 5, 9, 9, - ], - }, - { - label: 'Crypto Christmas', - topics: 'christmas,santa,holiday,gift,gifts', - description: - 'The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are:\n\n1. Bitcoin Santa rally to $102k\n2. Christmas gifts and wishes, including crypto-related gifts like Plush Pepe and 4k eth\n3. Christmas-themed promotions and raffles in the crypto industry\n4. Christmas-themed events and promotions in the TRON Eco community\n5. Christmas-themed promotions and rewards in various crypto platforms like BTSE Wonderland and Gate Live Christmas Carnival\n6. Memecoins like $SANTA being discussed as potential investments for the holiday season\n7. Advent calendars and special promotions in the crypto industry for the holiday season\n8. The impact of Christmas on the crypto market and trading activities\n9. Theoriq running a campaign ahead of their TGE with rewards for creators\n10. Hotcoin Christmas specials for new users, including a deposit bonus and prize pool.', - data: [ - 10, 7, 8, 4, 12, 2, 6, 6, 10, 2, 12, 11, 6, 3, 3, 6, 9, 6, 15, 6, 9, 6, 14, 0, 8, 0, 9, 8, - 9, 5, 5, 3, 3, 7, 5, 2, 6, 8, 4, 5, 10, 13, 9, 7, 6, 2, 7, 8, 8, 8, 6, 13, 5, 9, 7, - ], - }, - { - label: 'Cross-chain DEX', - topics: 'reya,reyaxyz,dexs,dex,perp', - description: - 'The key topic currently being discussed in the crypto industry is market making latency, specifically using Deribit perps as an example for Litecoin (LTC) traders. The focus is on the importance of not needing a centralized exchange (CEX) but rather utilizing a crosschain decentralized exchange (DEX) like Maya Protocol. Additionally, there is a comparison between Opter and Hyperliquid racing for the top perp DEX spot, with Opter gaining momentum through trade incentives. CeDeFi in The New Money App allows for exploring DEX assets on Solana, Base, and X Layer in one place without gas fees or bridging. The partnership between Reya and LayerZero is highlighted as a significant development in the space, offering fast execution, deep liquidity, and security across multiple chains. Other projects like HypersurfaceX and Pact_Swap are also mentioned for their innovative approaches to trading volatility and scalability across chains. Overall, the focus is on the advancements in decentralized trading infrastructure and the potential for high-performance trading experiences in the future.', - data: [ - 4, 5, 2, 2, 3, 4, 7, 6, 5, 6, 6, 3, 12, 6, 5, 10, 10, 3, 3, 3, 3, 6, 4, 9, 4, 6, 4, 6, 5, 6, - 2, 2, 2, 8, 22, 4, 2, 5, 6, 2, 2, 2, 4, 0, 6, 5, 9, 4, 8, 9, 8, 6, 2, 4, 3, - ], - }, - { - label: 'Whales Accumulating', - topics: 'whale,whales,unrealized,insider,ena', - description: - 'The key topic currently discussed in the messages from the Twitter accounts is the significant moves made by whales in the crypto industry, particularly in relation to Bitcoin (BTC) and Ethereum (ETH). Whales are seen accumulating large amounts of BTC and ETH, with some making substantial profits from their positions. There is a mix of long and short positions being taken by different whales, with some showing bullish sentiment towards ETH and altcoins. The messages also highlight specific whale trades, such as a $67 million ETH long position and a $300 million long position on various altcoins. Overall, the sentiment seems to be leaning towards bullish moves by whales in the crypto market.', - data: [ - 5, 2, 2, 2, 1, 2, 4, 4, 4, 4, 2, 0, 1, 2, 1, 2, 1, 5, 3, 3, 4, 0, 2, 5, 1, 3, 2, 4, 3, 5, 2, - 8, 2, 5, 6, 1, 1, 1, 2, 2, 3, 8, 5, 3, 5, 2, 0, 4, 1, 5, 1, 3, 0, 97, 1, - ], - }, - { - label: 'Privacy', - topics: 'privacy,zcash,zk,proofs,shielded', - description: - 'The messages from the social media accounts highlight the importance of privacy in the crypto industry, with a focus on programmable privacy, quantum security, and scalability. There is a discussion about the need for privacy in transactions, with mentions of Monero being a zero premine privacy coin and Bitcoin potentially needing to improve its privacy features. Projects like COTI and Hathor are mentioned for their efforts in delivering programmable privacy to blockchains.\n\nThere is also a mention of the importance of reclaiming control over personal data and the role of projects like zkPass in providing privacy without sacrificing transparency. The messages emphasize the need for privacy as infrastructure that works across ecosystems, rather than isolated privacy chains.\n\nOverall, the messages suggest a growing interest in privacy technology within the crypto industry, with a focus on maintaining privacy while ensuring transparency and security. Developers are paying attention to new privacy-ready architectures, such as those being developed by projects like Miden, which are setting a new standard for privacy on-chain.', - data: [ - 0, 3, 2, 4, 3, 4, 3, 4, 3, 5, 4, 2, 4, 5, 3, 4, 7, 3, 4, 2, 4, 5, 1, 6, 3, 1, 2, 4, 6, 5, 6, - 3, 2, 3, 5, 1, 22, 3, 2, 3, 5, 5, 4, 2, 2, 2, 6, 3, 4, 10, 3, 2, 6, 1, 6, - ], - }, - { - label: 'Silver Price', - topics: 'silver,metals,sachs,goldman,gold', - description: - "The key topics discussed in the messages from the social media accounts are:\n1. Silver breaking above $60 and reaching record highs.\n2. Speculation on the future price of silver, with predictions ranging from $70 to potentially $80.\n3. Analysis of the reasons behind the surge in silver prices, including industrial demand, inflation protection, and currency devaluation concerns.\n4. Debate on whether gold can keep up with silver's performance.\n5. Concerns about the global debt levels and their impact on the economy.\n6. Discussion on the factors affecting silver supply, such as declining ore grades and increasing demand from industries like solar production.\n7. Speculation on the potential impact of the recent spike in SOFR volume on the banking system.\n8. Contrasting opinions on short-term trading strategies for silver, with some suggesting buying while it's below $60 and others cautioning against shorting it.\nOverall, the sentiment towards silver appears to be bullish, with many analysts and investors optimistic about its future performance.", - data: [ - 0, 2, 3, 2, 3, 3, 6, 0, 11, 2, 6, 3, 3, 3, 4, 5, 1, 2, 9, 10, 1, 6, 1, 1, 3, 1, 3, 1, 3, 1, - 2, 4, 6, 5, 4, 4, 12, 4, 7, 13, 3, 2, 11, 3, 4, 4, 2, 4, 4, 2, 2, 3, 3, 0, 5, - ], - }, - { - label: 'Bitcoin ETF outflows', - topics: 'outflows,inflows,inflow,etfs,net', - description: - 'The key topic currently discussed in the crypto industry on social media platforms is the flow of funds in Bitcoin and Ethereum ETFs. There have been significant inflows and outflows in both Bitcoin and Ethereum ETFs, with Bitcoin ETFs experiencing a net outflow of $195 million, while Ethereum ETFs saw a net inflow of $177.7 million. Institutions are showing a preference for Ethereum over Bitcoin, as evidenced by the higher net inflow in Ethereum ETFs compared to Bitcoin ETFs. Additionally, there is a focus on the impact of these fund flows on the prices of Bitcoin and Ethereum, with investors closely monitoring the situation.', - data: [ - 2, 2, 3, 9, 1, 5, 0, 3, 4, 1, 0, 4, 1, 2, 5, 2, 2, 15, 3, 1, 1, 2, 5, 11, 0, 0, 3, 0, 2, 3, - 2, 6, 1, 10, 1, 7, 1, 2, 9, 0, 14, 5, 3, 2, 21, 5, 0, 1, 3, 2, 0, 2, 7, 3, 2, - ], - }, - { - label: 'Fed', - topics: 'bps,25bps,cut,hawkish,dovish', - description: - "The Federal Reserve has announced a 25bps rate cut, which was expected by the market. The real focus now is on Jerome Powell's stance on the markets, as his remarks will have a big impact on December 10th. The market consensus is strong on the cut, but there is uncertainty on how aggressive future rate cuts will be. The Fed's decision was less hawkish than expected, and there were dissenting votes within the committee. Overall, the policy shift towards Quantitative Tightening (QT) and liquidity concerns are more important for the crypto industry than the rate cut itself. The next Fed cut may bring more volatility, and the resumption of Treasury securities purchases by the Fed is a significant development. The market is eagerly awaiting Powell's speech and monitoring the situation closely.", - data: [ - 11, 3, 3, 3, 1, 3, 1, 11, 1, 5, 2, 34, 10, 2, 1, 13, 5, 2, 1, 0, 2, 1, 1, 3, 0, 2, 2, 0, 0, - 7, 3, 3, 0, 4, 1, 3, 7, 3, 7, 2, 3, 6, 3, 3, 1, 3, 1, 2, 3, 1, 1, 3, 1, 3, 2, - ], - }, - { - label: 'Bitcoin Multichain', - topics: 'beyondtech,wrapping,interoperability,btcfi,layerzero', - description: - 'The key topic currently being discussed in the crypto industry is the next wave of BTCFi being multichain and the importance of keeping it secure. There is a focus on interoperability and the ability for Bitcoin to move seamlessly across different chains, with @beyond__tech being highlighted as a key player in this space. The discussion also touches on the potential for Bitcoin to become the center of the DeFi ecosystem and the importance of real liquidity rails for Bitcoin. Overall, there is a lot of excitement around the potential for Bitcoin to become more active and usable in the broader crypto ecosystem.', - data: [ - 2, 1, 1, 2, 2, 3, 3, 4, 1, 6, 5, 3, 3, 5, 4, 2, 6, 5, 3, 2, 1, 2, 2, 8, 3, 8, 7, 4, 5, 4, 1, - 2, 1, 3, 3, 3, 4, 8, 1, 3, 3, 2, 2, 3, 7, 5, 4, 3, 3, 7, 7, 4, 1, 1, 1, - ], - }, - { - label: 'Bitcoin 4-Year Cycle', - topics: '4year,wood,cycle,cycles,dead', - description: - "The key topic currently discussed in the messages from twitter, twitter_news, and twitter_nft is the debate surrounding the Bitcoin four-year cycle. Some analysts believe that the traditional four-year cycle is dead, while others argue that it is simply evolving or being disrupted. There are discussions about institutional buying offsetting retail panic-selling, the potential for a big breakout upwards, and the idea that the cycle may have inverted rather than broken. Additionally, there are mentions of the S2F curve, the impact of liquidity on Bitcoin's movement, and the belief that protocols with real product-market fit will survive. Overall, there is a lot of debate and analysis surrounding the future of the Bitcoin cycle and how it may be changing in the current market environment.", - data: [ - 2, 5, 7, 3, 3, 10, 5, 2, 3, 4, 1, 10, 8, 1, 2, 5, 1, 4, 0, 0, 5, 7, 1, 3, 1, 2, 1, 0, 3, 2, - 2, 0, 2, 5, 2, 1, 1, 3, 2, 3, 7, 11, 2, 1, 0, 1, 2, 8, 3, 3, 1, 3, 2, 0, 19, - ], - }, - { - label: 'AlignerZ Labs', - topics: 'alignerz,vesting,alignerzlabs,tradable,weight', - description: - "The key topic discussed in the messages from @Altsteinn, @zephyr_org, and @AlignerZ_Labs is the innovative approach taken by AlignerZ Labs in the crypto industry. AlignerZ Labs is described as a game changer in the launchpad space, focusing on long-term growth and real alignment for investors. The team behind AlignerZ Labs is praised for targeting stability on key EVM chains such as Polygon, Arbitrum, and Base, and for their strategic, limited rollout approach to ensure deep integration before scaling.\n\nThe messages highlight AlignerZ Labs' Tradable Vesting System (TVS), which turns locked tokens into tradable NFTs, promoting true long-term alignment for investors and projects. The TVS is described as a strong tokenomic tool that rewards commitment and choice of vesting length, rather than speed or gas wars. Additionally, AlignerZ Labs' IWO model rewards users based on how long they stay aligned, removing chaos from bots and speed rushes.\n\nOverall, the messages emphasize AlignerZ Labs' unique approach to token launches, focusing on rewarding belief and commitment over speed, and providing innovative solutions to address the challenges in the crypto industry.", - data: [ - 0, 1, 3, 1, 4, 4, 3, 4, 4, 0, 6, 3, 1, 3, 2, 6, 6, 4, 17, 5, 1, 1, 0, 2, 8, 13, 6, 2, 9, 2, - 3, 3, 0, 0, 2, 1, 6, 3, 4, 2, 2, 1, 0, 5, 2, 3, 4, 1, 5, 5, 0, 5, 1, 2, 1, - ], - }, - { - label: '$ZEC', - topics: 'zec,zcash,wen,controlled,pepe', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n1. Zcash ($ZEC) price movements and predictions, with mentions of buying the dip and potential pumps.\n2. Speculation on the future price of Zcash, with predictions ranging from $480 to $540.\n3. Analysis of market trends, such as accumulation at $440 and potential bullish rebounds.\n4. Discussion of smart money whales accumulating Zcash and positive net flows.\n5. Trading strategies and indicators for Zcash, including support levels and RSI divergence.\n6. Comparison of Zcash to other cryptocurrencies, such as Bitcoin ($BTC) and Solana ($SOL).\n7. Skepticism about privacy narrative hype surrounding Zcash and potential bearish corrections.\n8. Mention of high-profile investors, such as the Winklevoss twins, buying Zcash at lower prices.\n9. Calls to action for buying Zcash before missing out on potential pumps and FOMO.\n10. Humorous commentary on market manipulation and fake dumps in the crypto industry.', - data: [ - 1, 0, 0, 2, 1, 3, 3, 4, 1, 1, 2, 3, 2, 2, 3, 2, 1, 1, 2, 0, 6, 3, 2, 0, 4, 0, 4, 5, 4, 1, 1, - 3, 3, 1, 5, 2, 2, 2, 6, 0, 4, 2, 3, 4, 1, 4, 3, 3, 2, 3, 2, 4, 1, 4, 53, - ], - }, - { - label: 'Limitless', - topics: 'limitless,trylimitless,outcomes,grant,prediction', - description: - 'Limitless, a prediction market platform, has been making waves in the crypto industry with its algorithmic execution tested real data on slippage, duration, and limits. The platform has settled a $2M+ market without any issues, with 23,000 traders passing through the order book and 400,000 transactions cleared flawlessly. It offers a unique experience for traders, providing a live environment to test instinct, timing, and sentiment in real time.\n\nLimitless has been praised for its speed, skill, and real market depth, offering transparent order book trading and real-time settlements. The platform challenges traders to check their biases and think again if the market signal disagrees with their beliefs. Time-based limit orders are highlighted as a stress-free way to execute trades automatically.\n\nThe platform has introduced the Prophet Challenge, turning prediction markets into a skill game where traders compete for rewards and ecosystem perks. Additionally, Limitless has partnered with dFusion AI protocol to map markets on Predict, powered by $TAO subnet 70: vericore.\n\nOverall, Limitless offers a user-friendly experience with no KYC requirements and no risk of liquidation. Traders can make predictions, earn money, and position themselves for rewards. The platform has seen significant growth, with strong potential for the future.', - data: [ - 1, 2, 0, 5, 7, 1, 2, 3, 6, 3, 0, 6, 3, 5, 1, 4, 4, 2, 1, 4, 5, 6, 2, 1, 6, 2, 11, 2, 7, 11, - 3, 1, 1, 0, 1, 2, 2, 3, 4, 3, 1, 4, 1, 2, 4, 6, 5, 3, 3, 2, 3, 6, 4, 1, 1, - ], - }, - { - label: 'AI chip market', - topics: 'chips,nvidia,china,chinas,export', - description: - "The key topics currently being discussed in the messages from twitter, twitter_news, and twitter_nft are related to the development and export of AI chips, particularly by companies like Alibaba, Cambricon, and Nvidia. There is a focus on China's efforts to boost its domestic AI industry and reduce reliance on US technology, as well as the impact of US-China relations on the tech industry. Additionally, there are discussions about the potential implications of national security reviews on the export of AI chips to China, as well as the role of universities in collaborating with Chinese state and military-linked AI labs. Overall, the messages highlight the complex dynamics and competition in the global AI chip market.", - data: [ - 2, 15, 4, 5, 1, 1, 0, 2, 17, 2, 1, 1, 7, 1, 5, 3, 0, 4, 3, 4, 1, 2, 1, 2, 4, 2, 1, 1, 1, 1, - 1, 1, 3, 4, 2, 4, 4, 4, 2, 5, 5, 4, 7, 1, 0, 6, 1, 3, 1, 2, 3, 2, 3, 2, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-102.json b/priv/repo/major_topics_seed/data-102.json deleted file mode 100644 index bbb38e1a8e..0000000000 --- a/priv/repo/major_topics_seed/data-102.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["11.12.25","12.12.25","12.12.25","12.12.25","12.12.25","12.12.25","12.12.25","12.12.25","13.12.25","13.12.25","13.12.25","13.12.25","13.12.25","13.12.25","13.12.25","13.12.25","14.12.25","14.12.25","14.12.25","14.12.25","14.12.25","14.12.25","14.12.25","14.12.25","15.12.25","15.12.25","15.12.25","15.12.25","15.12.25","15.12.25","15.12.25","15.12.25","16.12.25","16.12.25","16.12.25","16.12.25","16.12.25","16.12.25","16.12.25","16.12.25","17.12.25","17.12.25","17.12.25","17.12.25","17.12.25","17.12.25","17.12.25","17.12.25","18.12.25","18.12.25","18.12.25","18.12.25","18.12.25","18.12.25","18.12.25"],"datasets":[{"label":"Memecoins","topics":"memes,memecoin,memecoins,mememaxfi,meme","description":"The messages from twitter suggest a strong focus on memecoins and the potential for a supercycle in the memecoin market. There is discussion about the decline in interest in meme coins, but also a belief that they are not dead, just on pause. The importance of meme coins in the crypto market is highlighted, with examples such as $JEET and $SNEK being mentioned. The messages also touch on the power of memes in driving culture and value in the online world. Overall, the sentiment seems to be optimistic about the future of memecoins despite some skepticism in the market.","data":[7,5,8,7,16,11,12,6,17,8,8,14,9,15,9,14,9,20,3,5,7,16,10,6,17,11,19,9,15,7,124,9,11,13,13,3,5,9,6,12,4,8,5,11,8,14,9,14,10,10,13,16,10,6,7]},{"label":"NFL","topics":"injury,nfl,patrick,patriots,eagles","description":"Based on the messages from twitter, key topics currently being discussed include injuries to key players such as Teddye Buchanan, Alvin Kamara, Javonte Williams, and Christian Watson. There is also discussion about the performance of certain NFL teams, such as the Miami Dolphins' playoff drought and the struggles of the Cleveland Browns. Additionally, there is speculation about the coaching situation for the Browns and the potential return of Patrick Mahomes from injury. The performance of certain quarterbacks, such as Phillip Rivers and the development of quarterbacks under Kevin Stefanski, is also a point of discussion. Finally, there is debate about potential coaching changes and predictions for upcoming NFL games.","data":[19,12,8,8,22,6,5,9,10,9,4,5,17,11,1,22,8,5,12,13,8,7,10,9,14,3,10,14,12,10,4,7,8,15,5,25,9,11,4,8,26,8,9,12,9,10,11,17,12,7,8,10,15,9,4]},{"label":"Solana Breakpoint","topics":"breakpoint,solanaconf,booth,london,solflare","description":"The key topics discussed in the messages from twitter are related to the Breakpoint event organized by Solana. The event is described as a must-attend crypto conference, with mentions of Breakpoint London, Breakpoint NYC, and Breakpoint Abu Dhabi. Attendees share their experiences, such as meeting friends, attending presentations, and being inspired to host more events. The event is praised for its unique atmosphere, variety of activities, and community engagement. Additionally, there are mentions of specific activities and presentations at Breakpoint, such as SUPA AMM and the Firedancer on mainnet. Overall, the messages highlight the excitement and success of Breakpoint events and the positive impact they have on the Solana community.","data":[11,4,11,9,19,47,7,7,11,11,7,16,9,4,14,9,11,11,3,5,12,14,13,7,5,1,10,8,10,2,13,3,3,1,4,6,4,8,7,2,6,5,5,15,10,15,11,7,5,5,7,13,9,4,15]},{"label":"Gaming","topics":"fableborne,gaming,fortnite,gamers,gameplay","description":"The key topics discussed in the messages from twitter are related to various games in the crypto industry, including Kill Team, Fortnite, Cyberbrawl, Flying Axie, SCRABBLE, PlayZap Games, Boys Club, PlayStoneHold, Tokenized Lore, GameFi, Avatars on OthersideMeta, OtherGamesXYZ, and Metroid Fusion. The messages also touch upon the evolution of competitive gaming, the growth of PlayZap Games, the collaboration with Boys Club in web3 marketing, the closed beta of PlayStoneHold, the concept of Tokenized Lore, the potential of combining Neobanks and GameFi, and the increasing participation of MENA in Web3 gaming.","data":[2,6,7,6,13,6,7,4,8,12,5,8,7,5,12,4,8,9,57,15,8,5,7,11,5,4,11,6,8,3,5,4,13,3,2,18,5,11,14,8,8,5,3,3,9,7,5,10,6,5,4,10,9,2,6]},{"label":"Israel - Palestine","topics":"israel,israeli,iran,antisemitism,jews","description":"The key topics discussed in the messages from twitter are:\n1. Criticism of the Israeli government and its actions in Gaza.\n2. Anti-Semitism and the use of Zionism as a tool for political agendas.\n3. Conflict between Israel and Hamas in Gaza.\n4. Allegations of Israel targeting Hamas commanders in Gaza.\n5. Concerns about the treatment of displaced Palestinians in Gaza.\n6. Criticism of the Israeli Prime Minister, Benjamin Netanyahu.\n7. Accusations of Israel using fear tactics to encourage Jewish migration to Israel.\n8. Criticism of the United Nations Relief and Works Agency (UNRWA) for aid distribution issues in Gaza.\n9. Allegations of a conservative project using pro-Israel stance to mask white nationalist goals.\n10. Mention of Iran and Australia in relation to Israel's involvement in attacks.","data":[9,10,20,11,4,9,5,5,3,11,5,5,4,5,7,10,7,7,9,5,5,6,11,10,11,8,5,1,2,4,6,5,2,12,17,7,8,4,8,13,16,10,4,6,10,7,8,6,2,7,5,4,12,6,7]},{"label":"Brown university tragedy ","topics":"brown,university,shooter,campus,suspect","description":"The key topic currently being discussed on social media regarding the Brown University shooting is the identification of the suspect, Benjamin Erickson, and the ongoing investigation into the incident. There are reports of a person of interest being released from custody, as well as the identification of the second victim, Mukhammad Aziz Umurzokov. Authorities are still searching for the shooter, and there is a focus on obtaining video evidence to aid in the investigation. The Providence Police are utilizing their Real-Time Crime Center to search for the suspect, and the campus remains on lockdown as the investigation continues.","data":[6,2,10,13,3,7,4,2,5,4,0,7,6,4,4,4,4,0,1,3,8,10,10,6,12,11,6,4,1,9,2,7,1,5,9,18,14,3,2,44,16,20,39,6,4,23,3,2,1,1,8,6,0,2,4]},{"label":"SOL","topics":"solanas,capturing,coingecko,artemis,sora","description":"The key topics currently being discussed in the crypto community on Twitter include the impressive growth and advancements of Solana, with many users expressing excitement and optimism about the future of the chain. There is a debate comparing Solana to Ethereum, with many users praising Solana for being ahead of most chains and highlighting its speed, efficiency, and trustlessness. Some users are discussing the potential for Solana to bring about significant changes in the future of finance and DeFi, with mentions of new projects and developments within the Solana ecosystem. Overall, there is a strong sense of confidence and enthusiasm surrounding Solana as a leading blockchain platform.","data":[11,1,3,7,12,4,6,17,8,18,9,8,7,10,7,11,5,5,6,2,5,11,7,7,6,7,13,5,9,5,6,6,5,5,5,7,13,4,7,5,5,3,8,30,5,5,2,1,3,8,5,5,4,3,11]},{"label":"AI","topics":"unaware,artificial,slop,ais,detect","description":"The key topics discussed in the messages from twitter include the future of AI, the importance of quality data for AI, the potential of AI in various industries, the misconception about AI taking all jobs, the emergence of new AI architectures, and the debate surrounding AGI/ASI development. Additionally, there is a focus on the role of AI in self-improvement, the need for human input in AI technology, and the potential impact of AI on society. The messages also touch on the idea that AI cannot replace human uniqueness and creativity, and that blaming AI for human skill issues is not productive. Overall, the discussions highlight the complexity and potential of AI technology in various sectors, including the crypto industry.","data":[10,17,10,10,13,4,3,5,6,7,6,4,8,4,6,11,5,8,4,7,4,7,6,11,10,3,7,4,5,5,8,3,6,6,7,3,10,6,10,4,7,5,0,9,3,10,9,5,6,3,10,4,8,7,4]},{"label":"Winter in NYC","topics":"snow,winter,weather,cold,degrees","description":"The key topics discussed in the messages from twitter related to snow in NYC include:\n- Snowfall in NYC\n- Seasonal affective disorder\n- Winter wonderland\n- Rare snow day\n- Snowy Manhattan\n- Snow in Golden Gate Park\n- Snow in West Village\n- Snow sticking in December\n- Mail carrier saving a 96-year-old's life during a snowstorm\n\nOverall, the messages highlight the beauty and challenges of snowfall in NYC and other locations, as well as the resilience and kindness of individuals during snowy weather conditions.","data":[8,4,5,1,5,8,7,6,18,4,5,3,8,2,5,3,5,5,3,4,4,8,13,2,2,4,4,3,7,6,2,6,5,7,5,2,5,2,4,3,4,4,3,33,7,5,4,1,3,7,3,7,21,20,7]},{"label":"Limitless","topics":"limitless,trylimitless,700m,hourly,150k","description":"Limitless @trylimitless has been experiencing significant growth in prediction market volume, with over $50 million in volume in December alone. The platform offers prediction markets that are open on weekends, unlike traditional stock markets. Additionally, there have been $200k in buybacks of the $LMTS token so far. However, the token has seen a decrease in value from $0.22 to $0.15 in the past week.\n\nThe platform is expanding into new verticals, such as football prediction markets, which has been highly requested by the community. Limitless has processed over half a billion in volume and closed a $10 million seed round from top backers.\n\nOverall, Limitless is praised for its simplicity and ease of use compared to other prediction markets. The platform has seen rapid growth in terms of volume and active traders, with potential for further expansion. The native token, $LMTS, has a staking mechanism that allows users to earn from trading fees and participate in buyback programs. \n\nIn summary, Limitless @trylimitless is a prediction market platform that is gaining momentum and breaking records in terms of activity and volume. It offers a simple and fast trading experience with potential for meaningful rewards for traders.","data":[4,0,1,1,2,3,4,5,6,6,3,3,3,3,4,5,8,4,3,2,16,9,8,7,6,3,9,3,9,13,7,4,5,6,4,6,17,4,10,2,0,1,5,3,12,2,14,8,7,11,12,14,8,2,3]},{"label":"BTC price","topics":"rejection,88k,descending,85k,90k","description":"The key topic being discussed in the messages from twitter is the current price movement of Bitcoin ($BTC). The messages mention that Bitcoin is hovering around $90K and there is speculation about whether this is the start of the next bull run or if it is a trap. Traders are analyzing various resistance levels, support zones, and trendlines to determine the potential direction of Bitcoin's price. There is also discussion about key levels such as $94K and $84K, which are seen as important resistance and support zones respectively. Overall, the sentiment seems cautious with traders unsure about the next move and advising caution in trading decisions.","data":[8,1,7,6,2,12,10,7,6,8,7,5,2,7,4,4,7,1,1,5,2,6,16,5,5,1,7,5,11,4,2,6,4,3,1,6,10,3,7,18,2,1,7,6,6,15,7,4,5,7,8,1,6,1,4]},{"label":"Bondi beach terror act","topics":"bondi,beach,sydney,jewish,terror","description":"The key topics discussed in the messages from twitter are:\n1. The terrorist attack at Bondi Beach in Sydney, Australia\n2. The involvement of extremist sympathizers in Australia\n3. The death toll and injuries from the attack\n4. The targeting of the Jewish community in the attack\n5. The arrest and charging of the perpetrators involved in the attack\n6. The international connections of the attackers, including their origins from India\n7. The impact of the attack on the community, including the loss of lives and injuries\n8. The response of law enforcement and security measures taken in the aftermath of the attack.","data":[2,3,10,17,4,2,3,3,1,10,1,8,7,2,2,6,10,1,0,5,12,3,4,5,9,6,3,5,1,12,8,1,6,3,13,18,4,1,2,7,7,5,25,0,4,7,13,0,7,1,2,8,1,3,5]},{"label":"SOL price","topics":"120,sol,140,130,125","description":"The key topics currently being discussed in the crypto community on Twitter include the price movements and technical analysis of Solana ($SOL), with mentions of potential support and resistance levels, bullish and bearish scenarios, as well as predictions for future price movements. There is also discussion about new projects launching on the Solana blockchain, such as the $JOEY token, and the potential for generational wealth through investing in cryptocurrencies. Additionally, there are mentions of trading strategies, such as swing trading and shorting, as well as analysis of chart patterns like falling wedges and inside bar false breakdowns. Overall, the sentiment seems mixed with some users expressing bullish outlooks while others remain cautious or bearish on the future of Solana.","data":[6,1,2,4,4,9,8,5,9,7,5,4,2,4,1,7,4,3,5,3,2,11,8,10,8,5,3,5,7,5,2,9,4,3,4,2,10,3,6,6,2,2,8,25,7,7,5,5,9,4,2,8,7,4,6]},{"label":"Jobs data","topics":"unemployment,payrolls,46,employment,labor","description":"The messages from twitter indicate a concerning trend of rising unemployment rates and weakening labor market conditions. The delay in job numbers and materials shortages are contributing to the challenges faced by individuals and the economy. The US unemployment rate has reached 4.6%, with predictions of it potentially rising above 5% in the near future. The labor market collapse is evident with 14 straight months of unemployment rises, and the impact of this on the economy is significant. The Federal government has reduced payrolls, further exacerbating the situation. Additionally, wage growth has cooled, and lower wage workers are feeling the effects the most. The US added an average of 10k jobs per month over the last 4 months, the fewest since the 2020 recession. Overall, the labor market continues to weaken, and there are concerns about potential rate cuts by the Fed to address the situation. Youth unemployment is also a growing concern, with vacancies falling and wage growth moderating. Traders are already anticipating Fed rate cuts in 2026 due to the challenging labor market conditions.","data":[2,11,4,8,2,0,1,5,0,4,2,8,3,15,3,3,1,3,1,8,9,9,1,8,21,12,3,3,4,3,6,7,6,2,5,3,2,2,8,7,10,7,3,2,4,3,2,6,2,1,42,11,2,3,4]},{"label":"TSLA all time high ","topics":"tsla,tesla,teslas,stanley,shareholders","description":"The messages from twitter suggest that Tesla ($TSLA) recently hit a new record high closing price, with some users mentioning buying and selling the stock at various price points. There is also discussion about potential future price movements, with some users predicting a drop in the stock price while others anticipate a potential rally. Additionally, there is mention of a large volume of calls being made on Tesla, as well as technical analysis indicating potential stock behavior. Overall, the sentiment towards Tesla in the messages seems mixed, with some users expressing optimism and others caution.","data":[8,1,3,7,2,8,10,7,7,3,2,6,6,5,2,2,3,5,6,4,4,17,1,4,5,2,2,0,4,5,4,4,12,7,3,4,5,4,3,9,9,4,17,6,12,1,11,7,12,9,2,5,3,4,6]},{"label":"China's influence on AI ","topics":"chinas,china,chinese,threatstatus,chip","description":"The messages from twitter discuss various aspects of China's advancements in technology, particularly in AI and space. There are mentions of China's dominance in certain industries, such as PV cells and AI chips, as well as concerns about China pulling ahead of the US in technological dominance. The messages also touch on geopolitical tensions between China and the West, including discussions about potential conflicts and economic implications. Additionally, there are references to China's economic growth and challenges, such as a potential housing market crisis. Overall, the messages highlight the complex relationship between China and the West in the realm of technology and geopolitics.","data":[4,10,6,7,1,5,4,11,2,13,1,3,3,10,7,6,0,2,4,7,7,4,7,8,9,3,4,1,3,10,4,5,3,3,4,3,6,7,6,5,7,8,7,6,5,3,4,4,2,2,4,3,6,10,4]},{"label":"Art","topics":"artist,artists,painting,art,artwork","description":"The messages from twitter mainly focus on various aspects of art and artists within the crypto industry. Some key topics discussed include the emergence of generative art through code and human creativity, the intersection of art and technology (such as NFTs), the importance of original art as a tool for navigating consciousness, and the debate surrounding traditional artists versus those utilizing technology in their work. Additionally, there is mention of specific artists and their unique styles, as well as events like Art Basel and the SPAM ART PARTY. Overall, the crypto community on Twitter seems to be actively engaged in discussions about the evolving landscape of art and its relationship to technology and innovation.","data":[2,3,53,2,7,0,0,2,7,2,3,2,10,1,3,11,4,1,4,1,1,2,3,5,5,5,4,0,4,8,3,3,7,6,12,5,6,7,3,3,4,5,4,0,2,9,3,6,1,3,7,7,3,7,0]},{"label":"Silver price","topics":"silver,ounce,copper,metal,precious","description":"The key topics discussed in the messages from twitter regarding silver are:\n- Silver hitting record highs and potential future price targets\n- Silver being considered a critical metal in the US\n- Speculation on silver prices reaching $67, $75, $100, and potentially even $600 in the future\n- Silver's cup-and-handle formation and potential major breakout\n- Silver stocks lagging behind the metal's performance\n- Silver prices reacting to market slams and investor behavior\n- Silver being positioned for development in various projects\n- The potential for a buying frenzy in the silver market\n- Silver's leadership position in long-term bull markets\n- Comparison of silver's performance to Bitcoin\n- CNBC's coverage of silver's gains\n- The technical implications of silver's price movements\n- The potential for silver to reach unimaginable price levels in the future\n- The historical significance of silver's recent performance in the metals and mining cycle.","data":[4,2,8,2,5,11,1,3,8,4,3,1,6,3,3,5,4,2,4,18,0,16,5,5,7,1,4,5,1,1,2,1,5,14,1,7,15,6,7,6,5,1,13,3,10,5,6,1,4,1,2,4,2,1,1]},{"label":"Tokenization ","topics":"equity,tokenization,metadaoproject,tokenomics,rights","description":"The messages from twitter suggest that tokenization is the future and that Chain maximalism is no longer relevant. There is a focus on creating new tokenization infrastructure like MultiVM and exploring innovative tokenomics like the Ve3,3 model. The discussions also touch on the importance of proper token design and the convergence of equity and token holder rights. The SEC's openness to working with token-asset issuers is seen as a positive development, signaling the mainstream acceptance of tokenization. Overall, the sentiment is bullish on the future of tokenization in various industries, including real estate and finance.","data":[4,5,2,6,2,2,1,1,4,5,3,1,3,4,10,1,3,11,0,8,3,7,3,8,8,1,7,2,2,3,0,5,5,4,2,6,5,2,5,4,4,6,2,1,5,4,6,5,37,6,6,1,4,9,0]},{"label":"ZEC price","topics":"zec,zcash,450,wen,wicks","description":"The Dino Pump Era refers to the period of time when the cryptocurrency $ZEC (Zcash) experienced significant price fluctuations and pump movements. During this time, there were discussions and predictions about the price of $ZEC reaching certain levels, such as $540 - $580. Traders and analysts were closely monitoring the price movements and making predictions about potential pumps and dumps. There were also mentions of market manipulation and the behavior of whales in the market. Overall, the Dino Pump Era was characterized by high volatility and intense trading activity surrounding $ZEC.","data":[2,2,4,6,2,5,3,2,4,3,8,5,4,5,1,1,3,3,2,5,4,3,0,0,2,0,4,4,8,3,1,3,3,0,1,4,3,2,4,1,2,1,1,0,3,2,3,2,6,3,3,1,1,2,101]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-102.ts b/priv/repo/major_topics_seed/data-102.ts deleted file mode 100644 index c3c5b27ec7..0000000000 --- a/priv/repo/major_topics_seed/data-102.ts +++ /dev/null @@ -1,284 +0,0 @@ -export const NARRATIVES = { - labels: [ - '11.12.25', - '12.12.25', - '12.12.25', - '12.12.25', - '12.12.25', - '12.12.25', - '12.12.25', - '12.12.25', - '13.12.25', - '13.12.25', - '13.12.25', - '13.12.25', - '13.12.25', - '13.12.25', - '13.12.25', - '13.12.25', - '14.12.25', - '14.12.25', - '14.12.25', - '14.12.25', - '14.12.25', - '14.12.25', - '14.12.25', - '14.12.25', - '15.12.25', - '15.12.25', - '15.12.25', - '15.12.25', - '15.12.25', - '15.12.25', - '15.12.25', - '15.12.25', - '16.12.25', - '16.12.25', - '16.12.25', - '16.12.25', - '16.12.25', - '16.12.25', - '16.12.25', - '16.12.25', - '17.12.25', - '17.12.25', - '17.12.25', - '17.12.25', - '17.12.25', - '17.12.25', - '17.12.25', - '17.12.25', - '18.12.25', - '18.12.25', - '18.12.25', - '18.12.25', - '18.12.25', - '18.12.25', - '18.12.25', - ], - datasets: [ - { - label: 'Memecoins', - infofi: false, - topics: 'memes,memecoin,memecoins,mememaxfi,meme', - description: - 'The messages from twitter suggest a strong focus on memecoins and the potential for a supercycle in the memecoin market. There is discussion about the decline in interest in meme coins, but also a belief that they are not dead, just on pause. The importance of meme coins in the crypto market is highlighted, with examples such as $JEET and $SNEK being mentioned. The messages also touch on the power of memes in driving culture and value in the online world. Overall, the sentiment seems to be optimistic about the future of memecoins despite some skepticism in the market.', - data: [ - 7, 5, 8, 7, 16, 11, 12, 6, 17, 8, 8, 14, 9, 15, 9, 14, 9, 20, 3, 5, 7, 16, 10, 6, 17, 11, - 19, 9, 15, 7, 124, 9, 11, 13, 13, 3, 5, 9, 6, 12, 4, 8, 5, 11, 8, 14, 9, 14, 10, 10, 13, 16, - 10, 6, 7, - ], - }, - { - label: 'NFL', - infofi: false, - topics: 'injury,nfl,patrick,patriots,eagles', - description: - "Based on the messages from twitter, key topics currently being discussed include injuries to key players such as Teddye Buchanan, Alvin Kamara, Javonte Williams, and Christian Watson. There is also discussion about the performance of certain NFL teams, such as the Miami Dolphins' playoff drought and the struggles of the Cleveland Browns. Additionally, there is speculation about the coaching situation for the Browns and the potential return of Patrick Mahomes from injury. The performance of certain quarterbacks, such as Phillip Rivers and the development of quarterbacks under Kevin Stefanski, is also a point of discussion. Finally, there is debate about potential coaching changes and predictions for upcoming NFL games.", - data: [ - 19, 12, 8, 8, 22, 6, 5, 9, 10, 9, 4, 5, 17, 11, 1, 22, 8, 5, 12, 13, 8, 7, 10, 9, 14, 3, 10, - 14, 12, 10, 4, 7, 8, 15, 5, 25, 9, 11, 4, 8, 26, 8, 9, 12, 9, 10, 11, 17, 12, 7, 8, 10, 15, - 9, 4, - ], - }, - { - label: 'Solana Breakpoint', - infofi: false, - topics: 'breakpoint,solanaconf,booth,london,solflare', - description: - 'The key topics discussed in the messages from twitter are related to the Breakpoint event organized by Solana. The event is described as a must-attend crypto conference, with mentions of Breakpoint London, Breakpoint NYC, and Breakpoint Abu Dhabi. Attendees share their experiences, such as meeting friends, attending presentations, and being inspired to host more events. The event is praised for its unique atmosphere, variety of activities, and community engagement. Additionally, there are mentions of specific activities and presentations at Breakpoint, such as SUPA AMM and the Firedancer on mainnet. Overall, the messages highlight the excitement and success of Breakpoint events and the positive impact they have on the Solana community.', - data: [ - 11, 4, 11, 9, 19, 47, 7, 7, 11, 11, 7, 16, 9, 4, 14, 9, 11, 11, 3, 5, 12, 14, 13, 7, 5, 1, - 10, 8, 10, 2, 13, 3, 3, 1, 4, 6, 4, 8, 7, 2, 6, 5, 5, 15, 10, 15, 11, 7, 5, 5, 7, 13, 9, 4, - 15, - ], - }, - { - label: 'Gaming', - infofi: false, - topics: 'fableborne,gaming,fortnite,gamers,gameplay', - description: - 'The key topics discussed in the messages from twitter are related to various games in the crypto industry, including Kill Team, Fortnite, Cyberbrawl, Flying Axie, SCRABBLE, PlayZap Games, Boys Club, PlayStoneHold, Tokenized Lore, GameFi, Avatars on OthersideMeta, OtherGamesXYZ, and Metroid Fusion. The messages also touch upon the evolution of competitive gaming, the growth of PlayZap Games, the collaboration with Boys Club in web3 marketing, the closed beta of PlayStoneHold, the concept of Tokenized Lore, the potential of combining Neobanks and GameFi, and the increasing participation of MENA in Web3 gaming.', - data: [ - 2, 6, 7, 6, 13, 6, 7, 4, 8, 12, 5, 8, 7, 5, 12, 4, 8, 9, 57, 15, 8, 5, 7, 11, 5, 4, 11, 6, - 8, 3, 5, 4, 13, 3, 2, 18, 5, 11, 14, 8, 8, 5, 3, 3, 9, 7, 5, 10, 6, 5, 4, 10, 9, 2, 6, - ], - }, - { - label: 'Israel - Palestine', - infofi: false, - topics: 'israel,israeli,iran,antisemitism,jews', - description: - "The key topics discussed in the messages from twitter are:\n1. Criticism of the Israeli government and its actions in Gaza.\n2. Anti-Semitism and the use of Zionism as a tool for political agendas.\n3. Conflict between Israel and Hamas in Gaza.\n4. Allegations of Israel targeting Hamas commanders in Gaza.\n5. Concerns about the treatment of displaced Palestinians in Gaza.\n6. Criticism of the Israeli Prime Minister, Benjamin Netanyahu.\n7. Accusations of Israel using fear tactics to encourage Jewish migration to Israel.\n8. Criticism of the United Nations Relief and Works Agency (UNRWA) for aid distribution issues in Gaza.\n9. Allegations of a conservative project using pro-Israel stance to mask white nationalist goals.\n10. Mention of Iran and Australia in relation to Israel's involvement in attacks.", - data: [ - 9, 10, 20, 11, 4, 9, 5, 5, 3, 11, 5, 5, 4, 5, 7, 10, 7, 7, 9, 5, 5, 6, 11, 10, 11, 8, 5, 1, - 2, 4, 6, 5, 2, 12, 17, 7, 8, 4, 8, 13, 16, 10, 4, 6, 10, 7, 8, 6, 2, 7, 5, 4, 12, 6, 7, - ], - }, - { - label: 'Brown university tragedy ', - infofi: false, - topics: 'brown,university,shooter,campus,suspect', - description: - 'The key topic currently being discussed on social media regarding the Brown University shooting is the identification of the suspect, Benjamin Erickson, and the ongoing investigation into the incident. There are reports of a person of interest being released from custody, as well as the identification of the second victim, Mukhammad Aziz Umurzokov. Authorities are still searching for the shooter, and there is a focus on obtaining video evidence to aid in the investigation. The Providence Police are utilizing their Real-Time Crime Center to search for the suspect, and the campus remains on lockdown as the investigation continues.', - data: [ - 6, 2, 10, 13, 3, 7, 4, 2, 5, 4, 0, 7, 6, 4, 4, 4, 4, 0, 1, 3, 8, 10, 10, 6, 12, 11, 6, 4, 1, - 9, 2, 7, 1, 5, 9, 18, 14, 3, 2, 44, 16, 20, 39, 6, 4, 23, 3, 2, 1, 1, 8, 6, 0, 2, 4, - ], - }, - { - label: 'SOL', - infofi: false, - topics: 'solanas,capturing,coingecko,artemis,sora', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the impressive growth and advancements of Solana, with many users expressing excitement and optimism about the future of the chain. There is a debate comparing Solana to Ethereum, with many users praising Solana for being ahead of most chains and highlighting its speed, efficiency, and trustlessness. Some users are discussing the potential for Solana to bring about significant changes in the future of finance and DeFi, with mentions of new projects and developments within the Solana ecosystem. Overall, there is a strong sense of confidence and enthusiasm surrounding Solana as a leading blockchain platform.', - data: [ - 11, 1, 3, 7, 12, 4, 6, 17, 8, 18, 9, 8, 7, 10, 7, 11, 5, 5, 6, 2, 5, 11, 7, 7, 6, 7, 13, 5, - 9, 5, 6, 6, 5, 5, 5, 7, 13, 4, 7, 5, 5, 3, 8, 30, 5, 5, 2, 1, 3, 8, 5, 5, 4, 3, 11, - ], - }, - { - label: 'AI', - infofi: false, - topics: 'unaware,artificial,slop,ais,detect', - description: - 'The key topics discussed in the messages from twitter include the future of AI, the importance of quality data for AI, the potential of AI in various industries, the misconception about AI taking all jobs, the emergence of new AI architectures, and the debate surrounding AGI/ASI development. Additionally, there is a focus on the role of AI in self-improvement, the need for human input in AI technology, and the potential impact of AI on society. The messages also touch on the idea that AI cannot replace human uniqueness and creativity, and that blaming AI for human skill issues is not productive. Overall, the discussions highlight the complexity and potential of AI technology in various sectors, including the crypto industry.', - data: [ - 10, 17, 10, 10, 13, 4, 3, 5, 6, 7, 6, 4, 8, 4, 6, 11, 5, 8, 4, 7, 4, 7, 6, 11, 10, 3, 7, 4, - 5, 5, 8, 3, 6, 6, 7, 3, 10, 6, 10, 4, 7, 5, 0, 9, 3, 10, 9, 5, 6, 3, 10, 4, 8, 7, 4, - ], - }, - { - label: 'Winter in NYC', - infofi: false, - topics: 'snow,winter,weather,cold,degrees', - description: - "The key topics discussed in the messages from twitter related to snow in NYC include:\n- Snowfall in NYC\n- Seasonal affective disorder\n- Winter wonderland\n- Rare snow day\n- Snowy Manhattan\n- Snow in Golden Gate Park\n- Snow in West Village\n- Snow sticking in December\n- Mail carrier saving a 96-year-old's life during a snowstorm\n\nOverall, the messages highlight the beauty and challenges of snowfall in NYC and other locations, as well as the resilience and kindness of individuals during snowy weather conditions.", - data: [ - 8, 4, 5, 1, 5, 8, 7, 6, 18, 4, 5, 3, 8, 2, 5, 3, 5, 5, 3, 4, 4, 8, 13, 2, 2, 4, 4, 3, 7, 6, - 2, 6, 5, 7, 5, 2, 5, 2, 4, 3, 4, 4, 3, 33, 7, 5, 4, 1, 3, 7, 3, 7, 21, 20, 7, - ], - }, - { - label: 'Limitless', - infofi: true, - topics: 'limitless,trylimitless,700m,hourly,150k', - description: - 'Limitless @trylimitless has been experiencing significant growth in prediction market volume, with over $50 million in volume in December alone. The platform offers prediction markets that are open on weekends, unlike traditional stock markets. Additionally, there have been $200k in buybacks of the $LMTS token so far. However, the token has seen a decrease in value from $0.22 to $0.15 in the past week.\n\nThe platform is expanding into new verticals, such as football prediction markets, which has been highly requested by the community. Limitless has processed over half a billion in volume and closed a $10 million seed round from top backers.\n\nOverall, Limitless is praised for its simplicity and ease of use compared to other prediction markets. The platform has seen rapid growth in terms of volume and active traders, with potential for further expansion. The native token, $LMTS, has a staking mechanism that allows users to earn from trading fees and participate in buyback programs. \n\nIn summary, Limitless @trylimitless is a prediction market platform that is gaining momentum and breaking records in terms of activity and volume. It offers a simple and fast trading experience with potential for meaningful rewards for traders.', - data: [ - 4, 0, 1, 1, 2, 3, 4, 5, 6, 6, 3, 3, 3, 3, 4, 5, 8, 4, 3, 2, 16, 9, 8, 7, 6, 3, 9, 3, 9, 13, - 7, 4, 5, 6, 4, 6, 17, 4, 10, 2, 0, 1, 5, 3, 12, 2, 14, 8, 7, 11, 12, 14, 8, 2, 3, - ], - }, - { - label: 'BTC price', - infofi: false, - topics: 'rejection,88k,descending,85k,90k', - description: - "The key topic being discussed in the messages from twitter is the current price movement of Bitcoin ($BTC). The messages mention that Bitcoin is hovering around $90K and there is speculation about whether this is the start of the next bull run or if it is a trap. Traders are analyzing various resistance levels, support zones, and trendlines to determine the potential direction of Bitcoin's price. There is also discussion about key levels such as $94K and $84K, which are seen as important resistance and support zones respectively. Overall, the sentiment seems cautious with traders unsure about the next move and advising caution in trading decisions.", - data: [ - 8, 1, 7, 6, 2, 12, 10, 7, 6, 8, 7, 5, 2, 7, 4, 4, 7, 1, 1, 5, 2, 6, 16, 5, 5, 1, 7, 5, 11, - 4, 2, 6, 4, 3, 1, 6, 10, 3, 7, 18, 2, 1, 7, 6, 6, 15, 7, 4, 5, 7, 8, 1, 6, 1, 4, - ], - }, - { - label: 'Bondi beach terror act', - infofi: false, - topics: 'bondi,beach,sydney,jewish,terror', - description: - 'The key topics discussed in the messages from twitter are:\n1. The terrorist attack at Bondi Beach in Sydney, Australia\n2. The involvement of extremist sympathizers in Australia\n3. The death toll and injuries from the attack\n4. The targeting of the Jewish community in the attack\n5. The arrest and charging of the perpetrators involved in the attack\n6. The international connections of the attackers, including their origins from India\n7. The impact of the attack on the community, including the loss of lives and injuries\n8. The response of law enforcement and security measures taken in the aftermath of the attack.', - data: [ - 2, 3, 10, 17, 4, 2, 3, 3, 1, 10, 1, 8, 7, 2, 2, 6, 10, 1, 0, 5, 12, 3, 4, 5, 9, 6, 3, 5, 1, - 12, 8, 1, 6, 3, 13, 18, 4, 1, 2, 7, 7, 5, 25, 0, 4, 7, 13, 0, 7, 1, 2, 8, 1, 3, 5, - ], - }, - { - label: 'SOL price', - infofi: false, - topics: '120,sol,140,130,125', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the price movements and technical analysis of Solana ($SOL), with mentions of potential support and resistance levels, bullish and bearish scenarios, as well as predictions for future price movements. There is also discussion about new projects launching on the Solana blockchain, such as the $JOEY token, and the potential for generational wealth through investing in cryptocurrencies. Additionally, there are mentions of trading strategies, such as swing trading and shorting, as well as analysis of chart patterns like falling wedges and inside bar false breakdowns. Overall, the sentiment seems mixed with some users expressing bullish outlooks while others remain cautious or bearish on the future of Solana.', - data: [ - 6, 1, 2, 4, 4, 9, 8, 5, 9, 7, 5, 4, 2, 4, 1, 7, 4, 3, 5, 3, 2, 11, 8, 10, 8, 5, 3, 5, 7, 5, - 2, 9, 4, 3, 4, 2, 10, 3, 6, 6, 2, 2, 8, 25, 7, 7, 5, 5, 9, 4, 2, 8, 7, 4, 6, - ], - }, - { - label: 'Jobs data', - infofi: false, - topics: 'unemployment,payrolls,46,employment,labor', - description: - 'The messages from twitter indicate a concerning trend of rising unemployment rates and weakening labor market conditions. The delay in job numbers and materials shortages are contributing to the challenges faced by individuals and the economy. The US unemployment rate has reached 4.6%, with predictions of it potentially rising above 5% in the near future. The labor market collapse is evident with 14 straight months of unemployment rises, and the impact of this on the economy is significant. The Federal government has reduced payrolls, further exacerbating the situation. Additionally, wage growth has cooled, and lower wage workers are feeling the effects the most. The US added an average of 10k jobs per month over the last 4 months, the fewest since the 2020 recession. Overall, the labor market continues to weaken, and there are concerns about potential rate cuts by the Fed to address the situation. Youth unemployment is also a growing concern, with vacancies falling and wage growth moderating. Traders are already anticipating Fed rate cuts in 2026 due to the challenging labor market conditions.', - data: [ - 2, 11, 4, 8, 2, 0, 1, 5, 0, 4, 2, 8, 3, 15, 3, 3, 1, 3, 1, 8, 9, 9, 1, 8, 21, 12, 3, 3, 4, - 3, 6, 7, 6, 2, 5, 3, 2, 2, 8, 7, 10, 7, 3, 2, 4, 3, 2, 6, 2, 1, 42, 11, 2, 3, 4, - ], - }, - { - label: 'TSLA all time high ', - infofi: false, - topics: 'tsla,tesla,teslas,stanley,shareholders', - description: - 'The messages from twitter suggest that Tesla ($TSLA) recently hit a new record high closing price, with some users mentioning buying and selling the stock at various price points. There is also discussion about potential future price movements, with some users predicting a drop in the stock price while others anticipate a potential rally. Additionally, there is mention of a large volume of calls being made on Tesla, as well as technical analysis indicating potential stock behavior. Overall, the sentiment towards Tesla in the messages seems mixed, with some users expressing optimism and others caution.', - data: [ - 8, 1, 3, 7, 2, 8, 10, 7, 7, 3, 2, 6, 6, 5, 2, 2, 3, 5, 6, 4, 4, 17, 1, 4, 5, 2, 2, 0, 4, 5, - 4, 4, 12, 7, 3, 4, 5, 4, 3, 9, 9, 4, 17, 6, 12, 1, 11, 7, 12, 9, 2, 5, 3, 4, 6, - ], - }, - { - label: "China's influence on AI ", - infofi: false, - topics: 'chinas,china,chinese,threatstatus,chip', - description: - "The messages from twitter discuss various aspects of China's advancements in technology, particularly in AI and space. There are mentions of China's dominance in certain industries, such as PV cells and AI chips, as well as concerns about China pulling ahead of the US in technological dominance. The messages also touch on geopolitical tensions between China and the West, including discussions about potential conflicts and economic implications. Additionally, there are references to China's economic growth and challenges, such as a potential housing market crisis. Overall, the messages highlight the complex relationship between China and the West in the realm of technology and geopolitics.", - data: [ - 4, 10, 6, 7, 1, 5, 4, 11, 2, 13, 1, 3, 3, 10, 7, 6, 0, 2, 4, 7, 7, 4, 7, 8, 9, 3, 4, 1, 3, - 10, 4, 5, 3, 3, 4, 3, 6, 7, 6, 5, 7, 8, 7, 6, 5, 3, 4, 4, 2, 2, 4, 3, 6, 10, 4, - ], - }, - { - label: 'Art', - infofi: false, - topics: 'artist,artists,painting,art,artwork', - description: - 'The messages from twitter mainly focus on various aspects of art and artists within the crypto industry. Some key topics discussed include the emergence of generative art through code and human creativity, the intersection of art and technology (such as NFTs), the importance of original art as a tool for navigating consciousness, and the debate surrounding traditional artists versus those utilizing technology in their work. Additionally, there is mention of specific artists and their unique styles, as well as events like Art Basel and the SPAM ART PARTY. Overall, the crypto community on Twitter seems to be actively engaged in discussions about the evolving landscape of art and its relationship to technology and innovation.', - data: [ - 2, 3, 53, 2, 7, 0, 0, 2, 7, 2, 3, 2, 10, 1, 3, 11, 4, 1, 4, 1, 1, 2, 3, 5, 5, 5, 4, 0, 4, 8, - 3, 3, 7, 6, 12, 5, 6, 7, 3, 3, 4, 5, 4, 0, 2, 9, 3, 6, 1, 3, 7, 7, 3, 7, 0, - ], - }, - { - label: 'Silver price', - infofi: false, - topics: 'silver,ounce,copper,metal,precious', - description: - "The key topics discussed in the messages from twitter regarding silver are:\n- Silver hitting record highs and potential future price targets\n- Silver being considered a critical metal in the US\n- Speculation on silver prices reaching $67, $75, $100, and potentially even $600 in the future\n- Silver's cup-and-handle formation and potential major breakout\n- Silver stocks lagging behind the metal's performance\n- Silver prices reacting to market slams and investor behavior\n- Silver being positioned for development in various projects\n- The potential for a buying frenzy in the silver market\n- Silver's leadership position in long-term bull markets\n- Comparison of silver's performance to Bitcoin\n- CNBC's coverage of silver's gains\n- The technical implications of silver's price movements\n- The potential for silver to reach unimaginable price levels in the future\n- The historical significance of silver's recent performance in the metals and mining cycle.", - data: [ - 4, 2, 8, 2, 5, 11, 1, 3, 8, 4, 3, 1, 6, 3, 3, 5, 4, 2, 4, 18, 0, 16, 5, 5, 7, 1, 4, 5, 1, 1, - 2, 1, 5, 14, 1, 7, 15, 6, 7, 6, 5, 1, 13, 3, 10, 5, 6, 1, 4, 1, 2, 4, 2, 1, 1, - ], - }, - { - label: 'Tokenization ', - infofi: false, - topics: 'equity,tokenization,metadaoproject,tokenomics,rights', - description: - "The messages from twitter suggest that tokenization is the future and that Chain maximalism is no longer relevant. There is a focus on creating new tokenization infrastructure like MultiVM and exploring innovative tokenomics like the Ve3,3 model. The discussions also touch on the importance of proper token design and the convergence of equity and token holder rights. The SEC's openness to working with token-asset issuers is seen as a positive development, signaling the mainstream acceptance of tokenization. Overall, the sentiment is bullish on the future of tokenization in various industries, including real estate and finance.", - data: [ - 4, 5, 2, 6, 2, 2, 1, 1, 4, 5, 3, 1, 3, 4, 10, 1, 3, 11, 0, 8, 3, 7, 3, 8, 8, 1, 7, 2, 2, 3, - 0, 5, 5, 4, 2, 6, 5, 2, 5, 4, 4, 6, 2, 1, 5, 4, 6, 5, 37, 6, 6, 1, 4, 9, 0, - ], - }, - { - label: 'ZEC price', - infofi: false, - topics: 'zec,zcash,450,wen,wicks', - description: - 'The Dino Pump Era refers to the period of time when the cryptocurrency $ZEC (Zcash) experienced significant price fluctuations and pump movements. During this time, there were discussions and predictions about the price of $ZEC reaching certain levels, such as $540 - $580. Traders and analysts were closely monitoring the price movements and making predictions about potential pumps and dumps. There were also mentions of market manipulation and the behavior of whales in the market. Overall, the Dino Pump Era was characterized by high volatility and intense trading activity surrounding $ZEC.', - data: [ - 2, 2, 4, 6, 2, 5, 3, 2, 4, 3, 8, 5, 4, 5, 1, 1, 3, 3, 2, 5, 4, 3, 0, 0, 2, 0, 4, 4, 8, 3, 1, - 3, 3, 0, 1, 4, 3, 2, 4, 1, 2, 1, 1, 0, 3, 2, 3, 2, 6, 3, 3, 1, 1, 2, 101, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-103.json b/priv/repo/major_topics_seed/data-103.json deleted file mode 100644 index 41a924ba9d..0000000000 --- a/priv/repo/major_topics_seed/data-103.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["18.12.25","19.12.25","19.12.25","19.12.25","19.12.25","19.12.25","19.12.25","19.12.25","20.12.25","20.12.25","20.12.25","20.12.25","20.12.25","20.12.25","20.12.25","20.12.25","21.12.25","21.12.25","21.12.25","21.12.25","21.12.25","21.12.25","21.12.25","21.12.25","22.12.25","22.12.25","22.12.25","22.12.25","22.12.25","22.12.25","22.12.25","22.12.25","23.12.25","23.12.25","23.12.25","23.12.25","23.12.25","23.12.25","23.12.25","23.12.25","24.12.25","24.12.25","24.12.25","24.12.25","24.12.25","24.12.25","24.12.25","24.12.25","25.12.25","25.12.25","25.12.25","25.12.25","25.12.25","25.12.25","25.12.25"],"datasets":[{"label":"Merry Christmas ","topics":"joyful,wishing,warmth,joy,wishes","description":"The key topics discussed in the messages from twitter are:\n1. Merry Christmas and Happy Holidays wishes\n2. Crypto industry updates and achievements\n3. Bitcoin price predictions and giveaways\n4. Community celebrations and gratitude\n5. Launch announcements for new crypto products\n6. Festive activities and events in the crypto space\n7. Reflection on the past year and anticipation for the future\n8. Collaboration and support within the crypto community.","data":[7,53,19,17,41,23,16,73,70,24,16,33,8,17,34,71,42,38,26,22,69,19,160,15,31,11,14,14,21,10,99,10,11,14,35,13,9,7,9,9,12,24,11,13,10,8,61,17,9,7,18,17,7,73,36]},{"label":"Gold and silver ","topics":"4500,silver,70,alltime,gold","description":"The key topics currently discussed in the crypto industry on social media include the significant rise in gold prices, with gold hitting record highs and analysts suggesting that Bitcoin will follow suit. Silver prices are also reaching all-time highs, with the $SLV ETF up 3.5% and the best performing altcoin being silver. There is speculation about a potential face-melting Bitcoin bull market in 2026, as well as discussions about the historic run of precious metals and the impact on the overall economy. Additionally, there is a focus on the unique properties of silver and its potential for further price increases. Overall, there is a lot of excitement and anticipation surrounding the performance of gold, silver, and Bitcoin in the near future.","data":[9,13,6,8,6,13,7,9,4,11,9,8,11,9,8,1,12,12,7,49,8,46,5,5,6,6,3,6,9,9,9,16,10,23,9,9,38,15,19,15,11,7,49,4,8,14,8,6,14,6,5,5,8,8,10]},{"label":"AI","topics":"agi,artificial,ais,slop,personalized","description":"The key topics discussed in the messages from twitter are:\n1. The debate over whether AI is better than humans in marketing.\n2. The potential for humanity to fight back against AI in the future.\n3. The impact of AI on job security and the workforce.\n4. The use of AI in various industries to increase efficiency and profitability.\n5. The limitations of current AI models and the need for better evaluation methods.\n6. The rapid advancement of AI-generated content and its implications.\n7. The development of new AI technologies and their potential impact on society.\n8. The evolving landscape of AI models and the lack of loyalty among developers.\n9. The future of AI and the potential for significant advancements by 2030.\n10. The role of AI in various aspects of daily life and business operations.","data":[5,25,15,7,10,9,6,9,7,12,15,12,12,3,6,6,5,14,15,5,7,13,9,18,11,10,12,4,7,6,4,6,11,11,13,10,10,6,12,12,2,8,5,21,10,16,26,9,4,9,14,10,11,7,8]},{"label":"GameFi","topics":"gaming,gamefi,steam,games,fortnite","description":"The messages from twitter discuss various aspects of gaming, including the evolution of video games, the impact of AI in gaming, the intersection of Web3 and gaming, and the development of new games and gaming economies. Smart Contracts are highlighted as a key component in creating sustainable and engaging GameFi experiences. The messages also touch on the importance of rules in games and how they can impact skill development over time. Additionally, the concept of tokens and NFTs in gaming is explored, showcasing a shift in how value is created and distributed within gaming ecosystems. Overall, the messages reflect a deep interest in the future of gaming and the innovative technologies shaping the industry.","data":[6,6,7,7,11,7,5,8,7,8,7,3,4,9,8,6,10,47,3,8,6,5,4,5,5,11,5,11,3,5,11,2,8,12,9,28,6,6,5,8,4,3,8,8,7,9,12,5,5,7,6,14,9,9,10]},{"label":"NFL","topics":"nfl,football,championship,bowl,lions","description":"The key topics discussed in the messages from twitter include:\n- Karma coming for the Rams and the Seahawks' success in football\n- Cairo Santos being praised as the best kicker in the NFL\n- Criticism of stadium fans in the NFL\n- Calls for Ohio State to remove Les Wexner's name from everything\n- Excitement over recent football games and the Pro Bowl linemen\n- Discussion of playoff matchups and the College Football Playoff\n- Debate over the ideal outcome for teams to get a quarterback in the NFL\n- Criticism of play-calling in football games\n- Confusion and frustration over game outcomes, particularly involving the Bears\n\nOverall, the messages cover a range of topics related to football, including game analysis, player performance, and playoff scenarios.","data":[16,5,6,15,17,6,5,4,14,11,5,8,9,9,2,21,13,18,9,5,4,5,5,7,4,1,7,12,12,3,2,6,8,10,5,14,4,11,8,4,11,6,2,5,13,8,8,6,4,3,7,7,7,11,8]},{"label":"BTC is the future of finance","topics":"bitcoiners,bitcoiner,jack,tail,merchants","description":"The key topics currently discussed in the messages from twitter are:\n- Bitcoin's role in escaping fiat slavery and the importance of adopting it to end wars\n- The need to topple Core™ and its funding apparatus for Bitcoin to achieve its purpose\n- The potential of Bitcoin to become a universal currency\n- The importance of building a Bitcoin circular economy\n- The value of teaching the younger generation about freedom and Bitcoin\n- Ray Dalio's views on Bitcoin as money and its traceability\n- The transformative potential of Bitcoin and the need for more builders and designers in the space\n- The frugality of Bitcoiners and the potential for new technology and innovation to come from them\n- The advantages of Bitcoin as an asset for wealth preservation and portability\n- The comparison between Bitcoin and fiat in terms of risk and performance\n- The privacy concerns surrounding Bitcoin and the preference for gold by some individuals\n- Calls for the release of Bitcoin prisoners and the potential political implications in the midterms\n\nOverall, the messages reflect a diverse range of opinions and discussions surrounding Bitcoin and its impact on the financial and political landscape.","data":[7,5,11,7,17,9,10,9,8,4,5,2,8,4,10,7,13,3,2,5,3,9,3,15,16,10,9,6,5,5,2,10,4,4,8,10,11,5,8,10,9,7,5,12,6,15,11,6,5,14,7,5,3,3,5]},{"label":"Paul vs Joshua boxing ","topics":"joshua,jake,anthony,boxing,paul","description":"The key topics discussed in the messages from twitter are the boxing match between Jake Paul and Anthony Joshua. There are mixed opinions on the fight, with some praising Jake Paul for his efforts and others criticizing the match as being rigged or unimpressive. Some users are impressed by Jake Paul's performance and determination, while others question the legitimacy of the fight and the skills of Anthony Joshua. Overall, the discussion revolves around the outcome of the match, the performance of the fighters, and the future implications for Jake Paul in the boxing world.","data":[5,5,7,8,6,11,4,4,6,6,1,1,2,9,6,6,26,4,7,15,8,4,5,3,13,15,7,8,12,7,11,3,2,7,8,2,4,3,1,8,10,4,6,4,3,3,7,13,2,9,4,20,11,13,2]},{"label":"Quantum threat to crypto ","topics":"quantum,computing,computers,fud,cryptography","description":"The messages from twitter discuss the potential threat of quantum computing to Bitcoin and the need for quantum-resistant upgrades. Some believe that quantum computing is already in the hands of three letter agencies and big tech, while others are working on quantum response Bitcoin Improvement Proposals. There is a debate on whether quantum computing poses a real threat to Bitcoin in the future, with some arguing that it is exaggerated and dismissive responses are concerning. The messages also mention the potential targets of quantum computers, with Bitcoin being a lower priority. Overall, there is a mix of concern, skepticism, and preparation for the impact of quantum computing on the cryptocurrency industry.","data":[4,2,5,8,10,3,1,3,4,20,3,8,6,7,3,2,9,7,3,5,7,3,2,5,3,4,7,10,1,6,4,3,9,6,11,6,10,52,8,5,11,8,4,3,5,5,7,14,2,4,9,3,1,7,5]},{"label":"Trump","topics":"eric,trumps,donald,tariffs,properties","description":"The messages from twitter suggest that there is a lot of discussion surrounding President Trump and his impact on various industries, including crypto. Some key points mentioned include:\n- President Trump considering declaring a national emergency over housing costs\n- Trump's administration weakening worker protections and attacking union rights\n- Speculation about Trump bailing out crypto holders in 2026\n- The Trump family accepting Bitcoin at all properties\n- Trump being named Person of the Year by Decrypt\n- The Trump administration's influence on the stock market and economy\n- The Trump family's involvement in the crypto industry, including potential fraud cases\n- The trading of $TRUMP tokens on platforms like PrimeXBT\n\nOverall, it seems that President Trump and his family's actions and statements are closely monitored and analyzed within the crypto community, with some expressing support and others skepticism.","data":[5,12,10,7,7,5,3,1,4,7,1,7,7,9,6,6,3,4,5,7,5,4,9,3,6,11,5,4,5,8,3,6,2,8,6,4,10,7,2,5,20,15,4,2,9,13,6,6,7,12,4,5,2,5,9]},{"label":"China trade issues","topics":"chinas,china,chinese,tariffs,taiwan","description":"The messages from twitter highlight various aspects of China's economic and political activities, as well as its global impact. Some key points include:\n\n1. China's marketing strategies are being praised over Dubai's.\n2. There is a call to teach children Mandarin and move to China if not rich.\n3. Concerns about the quality of products made in China and the need to \"Make China Small Again.\"\n4. The postponement of new tariffs on Chinese semiconductor imports by the United States.\n5. China imposing tariffs on EU dairy products, leading to a broadening trade conflict.\n6. The decline in foreign direct investment in China.\n7. The importance of not taking China's words for granted.\n8. The impact of China's economic policies on global inflation and USD funding.\n9. The strategic ambiguity between China and Taiwan.\n10. The U.S. sanctioning a Chinese businessman for alleged cyber-scam operations.\n11. Territorial disputes between China and its neighbors.\n12. The U.S. imposing tariffs on chips from China.\n13. China's advancements in AI technology.\n14. The concept of 'nail houses' in China.\n15. A comparison between Japan's and China's contributions to the Philippines.\n16. The impact of tariffs on Chinese exports.\n17. The Pentagon's warning about China's military preparations regarding Taiwan.\n18. The rapid growth of Jinxi, China, over the years.\n19. The increase in silver prices in China.\n20. The potential implications for the market when COMEX opens.\n\nOverall, the messages reflect a mix of economic, political, and technological developments related to China, highlighting its growing influence on the global stage.","data":[4,10,5,7,6,7,7,5,4,12,5,6,9,6,9,5,5,2,6,2,2,5,6,14,6,5,4,2,4,7,8,0,2,7,5,7,9,4,8,7,5,12,14,5,9,9,6,4,5,5,3,5,5,4,2]},{"label":"Memecoins","topics":"mememaxfi,meme,memes,memecoin,memecoins","description":"The messages from twitter suggest that there is still a strong interest in memecoins within the crypto community. People are discussing the potential for memecoins to reach high market caps, with some even claiming to have found the next 1000x memecoin. The community behind memecoins is highlighted as being important, with some tokens like SPX and MOG having cult-like followings.\n\nThere is also discussion about the value of memes as a signal and the importance of community in driving the success of memecoins. Projects like @MemeMax_Fi are mentioned as examples of platforms that are turning meme culture into on-chain coordination layers.\n\nOverall, the messages indicate that there is still enthusiasm for memecoins despite market fluctuations, and that community engagement and activity are key factors in the success of these tokens.","data":[5,2,3,3,8,3,7,3,10,1,4,3,8,1,6,12,5,7,1,9,1,1,7,5,5,4,6,4,8,2,80,8,3,6,5,5,2,2,3,3,1,3,1,5,4,4,7,7,6,8,7,5,2,3,1]},{"label":"BTC price","topics":"bch,rejection,reclaim,90k,sweep","description":"The key topics currently discussed in the messages from twitter about $BTC include:\n- Bitcoin's struggle to break through the $88k resistance level\n- Bullish and bearish predictions for Bitcoin's price, ranging from $70k to $150k\n- The importance of defending the support levels, particularly the .382 Fibonacci retracement level\n- The possibility of Bitcoin retesting support zones, such as $85k and $90k\n- The ongoing tug-of-war between bulls and bears in the market\n- The potential for a breakout above resistance levels leading to a rally towards $90.5k or higher\n- The significance of key levels, such as $88k and $85k, for determining market direction\n- The anticipation of a potential rally to $180k if support levels are maintained\n- The analysis of Bitcoin's current price action on different timeframes, with a neutral to bearish outlook\n- The importance of monitoring key resistance and support levels, such as $90k and $84k\n- The potential for a larger price move in January, possibly above $94k\n- The historical context of Bitcoin's price movements and the potential for a breakout towards $100k\n- The introduction of a new trend bias strategy for optimal exit strategies in trading\n- The importance of Bitcoin holding above $80k to maintain a bullish structure and potential retest of $100k\n- The analysis of Bitcoin's current structure and potential targets, such as 114-115k\n- The ongoing analysis of momentum and key moving averages for potential price movements\n\nOverall, the messages reflect a mix of bullish and bearish sentiments, with a focus on key support and resistance levels, as well as potential price targets for Bitcoin.","data":[12,0,3,7,3,18,5,5,4,14,10,13,5,2,5,7,8,3,2,1,3,6,13,4,3,1,10,6,15,2,3,3,2,3,0,3,8,11,11,9,3,3,13,2,7,5,4,6,9,6,3,5,7,1,2]},{"label":"AAVE governance drama","topics":"aave,daos,dao,labs,governance","description":"The Aave drama in the crypto community revolves around governance tensions over protocol asset control and value extraction. Aave Labs has been accused of pushing brand ownership proposals without author notification, leading to conflicts within the community. The hostile takeover of Aave by Stani Kulechov has raised concerns about the dilution of AAVE token holders in the future. Despite the heated discussions, it is important to remember the value created by Aave and the need for transparency in governance decisions. The community is divided on whose side to support, but it is clear that both sides have their flaws. Overall, the Aave governance drama highlights the challenges faced by DAOs in managing conflicts and ensuring fair governance.","data":[21,2,6,3,7,9,2,7,4,6,5,9,11,6,6,6,12,7,2,12,8,7,7,3,3,9,5,0,9,0,5,3,2,3,0,2,3,6,6,7,3,2,5,3,3,6,10,4,8,5,1,7,7,3,3]},{"label":"Bank of Japan interest rate","topics":"boj,japans,yen,hike,japan","description":"The key topic currently being discussed in the crypto community on social media is the recent hike in Japan's interest rates by the Bank of Japan. The interest rates were raised by 25 basis points to 0.75%, the highest level in 30 years. This move has caused Japan's 30-year bond yield to briefly jump to 3.435%, the highest level in history. The market is reacting positively to this news, with Bitcoin already up around 3% following the rate hike. There is anticipation and speculation about further rate hikes in the future, with some analysts predicting rates to increase to 100 basis points in the next 6 months. This shift in monetary policy by the Bank of Japan is seen as a major macroeconomic event that could impact global risk assets, including cryptocurrencies. Investors are closely watching the reaction of US markets to this news.","data":[4,2,3,3,0,8,5,2,4,3,4,7,2,9,5,2,5,3,2,2,3,34,1,10,9,2,5,1,3,6,1,2,1,4,2,3,2,44,15,2,4,0,2,4,7,8,2,2,1,3,1,1,2,3,28]},{"label":"Ukraine peace deal","topics":"ukraine,russia,russian,frozen,eu","description":"The key topics discussed in the messages from twitter are:\n1. Peace in Ukraine\n2. Russian involvement in Ukraine\n3. Financial aid to Ukraine\n4. Political statements and actions related to Ukraine\n5. European Union's role in the conflict\n6. Military and defense support for Ukraine\n7. President Zelensky's actions and statements\n8. Criticism of NATO and Western involvement in the conflict\n9. Potential peace deals and agreements\n10. International reactions to the conflict.","data":[4,4,12,0,1,3,3,3,9,5,1,4,9,3,11,2,6,2,7,1,4,4,2,6,8,7,5,4,2,2,5,6,4,3,5,3,6,10,14,2,20,21,4,7,10,8,1,0,4,1,1,9,3,2,1]},{"label":"XRP","topics":"xrp,ripple,xrpl,inflows,hinting","description":"The Great Institutional Unlock for XRP Holders is a major development that is strengthening the case for XRP adoption. With Spot XRP ETFs recording significant daily inflows and assets under management surpassing $1.25 billion, the XRP ecosystem is experiencing significant growth. The XRP Army community has been instrumental in capturing opportunities and building bridges within the crypto industry. The recent stability and potential for growth in XRP's price indicate a positive outlook for the token. Regulatory clarity and legal settlements have also contributed to unlocking institutional access to XRP. Overall, the future looks promising for XRP holders as they navigate through market fluctuations and capitalize on strategic opportunities.","data":[3,10,9,3,2,9,4,5,7,5,4,2,4,5,4,3,6,4,2,3,1,6,3,8,6,7,5,4,2,4,4,5,3,7,4,3,10,3,8,12,5,8,11,15,7,6,3,3,8,1,2,1,6,2,2]},{"label":"Santa rally","topics":"santas,claus,santa,rally,sleigh","description":"The key topics discussed in the messages from twitter are:\n1. Santa Rally in the financial markets\n2. Santa's favorite things and activities\n3. Crypto assets not participating in the Santa Rally\n4. Speculation about a potential Santa Rally in the crypto market\n5. Santa-themed promotions and events in the crypto industry\n6. Community initiatives and partnerships related to holiday cheer and giving\n7. Comparison of current market trends to past Santa Rally patterns\n8. DeFi opportunities and yields during the holiday season\n\nOverall, the messages reflect a mix of humor, speculation, market analysis, and holiday spirit within the crypto industry.","data":[1,1,10,5,1,6,1,5,10,6,4,10,5,4,1,5,3,2,5,6,3,6,7,1,8,4,4,3,0,6,1,2,3,3,3,2,1,29,8,4,18,2,9,4,9,2,0,3,7,5,4,9,3,3,4]},{"label":"BTC price targets for 2026","topics":"predicts,fidelity,hayes,arthur,250k","description":"The key topics discussed in the messages from twitter are Bitcoin price predictions for 2026, potential price targets such as $150,000, $250,000, $500,000 to $1,000,000, and even $1 million, as well as the overall bullish sentiment towards Bitcoin in 2026. There are also mentions of Ethereum hitting $10,000, the future of capital markets running on top of Bitcoin, and various predictions and analyses from industry experts and figures like CZ, Charles Hoskinson, and Robert Kiyosaki. Additionally, there is a discussion about Bitcoin's potential long-term performance, reaching $1 billion per coin by around 2038, and a list of Bitcoin price forecasts for 2026 by major institutions.","data":[5,1,6,2,7,7,5,2,6,1,3,2,3,3,8,2,8,7,3,4,8,13,4,0,1,3,3,1,2,3,2,2,1,5,4,1,27,4,8,6,11,8,3,1,2,2,5,2,5,2,2,2,3,3,7]},{"label":"SNOWBALL","topics":"snowball,tek,bschizojew,mil,dev","description":"The key topic currently being discussed on social media accounts and communities in the crypto industry is $SNOWBALL. The messages mention that $SNOWBALL is very interesting and has a 1 billion dollar market cap. Developers are working 24/7 on the project, and the numbers are increasing. It is noted that wealth is transferring from the impatient to the patient with $SNOWBALL. The project has seen significant growth, with a 50x increase from a bottom call. There is also mention of $SNOWBALL being listed on various platforms and exchanges, as well as new technology being released that could potentially increase its market cap even further. Additionally, there is discussion about $SNOWBALL's competition with other projects like Fireball, and the active involvement of the dev team in protecting the coin during market fluctuations. Overall, $SNOWBALL seems to be a hot topic of conversation with a lot of excitement and potential for growth.","data":[5,2,7,5,7,3,4,3,1,0,3,4,4,2,3,0,0,4,4,0,5,5,3,5,5,2,2,1,9,2,2,1,5,2,4,2,2,2,2,3,3,4,2,40,2,5,7,4,1,2,4,5,1,1,0]},{"label":"Art","topics":"art,artists,painting,canvas,artist","description":"The messages from twitter mainly focus on various aspects of art, including commissions, listed artworks, the evolution of artistry, the importance of art in society, different art movements, NFTs, digital art, and the intersection of art and technology. There is also a discussion about the fragility of the art market on social media platforms and the need for new partnerships and platforms to support artists and collectors. The messages highlight the diversity of art forms and the need for creators to explore new mediums and communities. Additionally, there is a mention of specific artists and their contributions to the NFT movement, as well as a call for more art to be shared and appreciated on social media timelines.","data":[6,5,40,1,4,2,3,1,5,2,2,0,7,1,5,8,2,3,3,2,11,2,3,3,4,4,5,1,4,4,2,2,2,5,3,2,3,1,4,2,1,2,1,2,1,6,3,3,1,0,5,2,0,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-103.ts b/priv/repo/major_topics_seed/data-103.ts deleted file mode 100644 index c2e592dccb..0000000000 --- a/priv/repo/major_topics_seed/data-103.ts +++ /dev/null @@ -1,283 +0,0 @@ -export const NARRATIVES = { - labels: [ - '18.12.25', - '19.12.25', - '19.12.25', - '19.12.25', - '19.12.25', - '19.12.25', - '19.12.25', - '19.12.25', - '20.12.25', - '20.12.25', - '20.12.25', - '20.12.25', - '20.12.25', - '20.12.25', - '20.12.25', - '20.12.25', - '21.12.25', - '21.12.25', - '21.12.25', - '21.12.25', - '21.12.25', - '21.12.25', - '21.12.25', - '21.12.25', - '22.12.25', - '22.12.25', - '22.12.25', - '22.12.25', - '22.12.25', - '22.12.25', - '22.12.25', - '22.12.25', - '23.12.25', - '23.12.25', - '23.12.25', - '23.12.25', - '23.12.25', - '23.12.25', - '23.12.25', - '23.12.25', - '24.12.25', - '24.12.25', - '24.12.25', - '24.12.25', - '24.12.25', - '24.12.25', - '24.12.25', - '24.12.25', - '25.12.25', - '25.12.25', - '25.12.25', - '25.12.25', - '25.12.25', - '25.12.25', - '25.12.25', - ], - datasets: [ - { - label: 'Merry Christmas ', - topics: 'joyful,wishing,warmth,joy,wishes', - description: - 'The key topics discussed in the messages from twitter are:\n1. Merry Christmas and Happy Holidays wishes\n2. Crypto industry updates and achievements\n3. Bitcoin price predictions and giveaways\n4. Community celebrations and gratitude\n5. Launch announcements for new crypto products\n6. Festive activities and events in the crypto space\n7. Reflection on the past year and anticipation for the future\n8. Collaboration and support within the crypto community.', - data: [ - 7, 53, 19, 17, 41, 23, 16, 73, 70, 24, 16, 33, 8, 17, 34, 71, 42, 38, 26, 22, 69, 19, 160, - 15, 31, 11, 14, 14, 21, 10, 99, 10, 11, 14, 35, 13, 9, 7, 9, 9, 12, 24, 11, 13, 10, 8, 61, - 17, 9, 7, 18, 17, 7, 73, 36, - ], - infofi: false, - }, - { - label: 'Gold and silver ', - topics: '4500,silver,70,alltime,gold', - description: - 'The key topics currently discussed in the crypto industry on social media include the significant rise in gold prices, with gold hitting record highs and analysts suggesting that Bitcoin will follow suit. Silver prices are also reaching all-time highs, with the $SLV ETF up 3.5% and the best performing altcoin being silver. There is speculation about a potential face-melting Bitcoin bull market in 2026, as well as discussions about the historic run of precious metals and the impact on the overall economy. Additionally, there is a focus on the unique properties of silver and its potential for further price increases. Overall, there is a lot of excitement and anticipation surrounding the performance of gold, silver, and Bitcoin in the near future.', - data: [ - 9, 13, 6, 8, 6, 13, 7, 9, 4, 11, 9, 8, 11, 9, 8, 1, 12, 12, 7, 49, 8, 46, 5, 5, 6, 6, 3, 6, - 9, 9, 9, 16, 10, 23, 9, 9, 38, 15, 19, 15, 11, 7, 49, 4, 8, 14, 8, 6, 14, 6, 5, 5, 8, 8, 10, - ], - infofi: false, - }, - { - label: 'AI', - topics: 'agi,artificial,ais,slop,personalized', - description: - 'The key topics discussed in the messages from twitter are:\n1. The debate over whether AI is better than humans in marketing.\n2. The potential for humanity to fight back against AI in the future.\n3. The impact of AI on job security and the workforce.\n4. The use of AI in various industries to increase efficiency and profitability.\n5. The limitations of current AI models and the need for better evaluation methods.\n6. The rapid advancement of AI-generated content and its implications.\n7. The development of new AI technologies and their potential impact on society.\n8. The evolving landscape of AI models and the lack of loyalty among developers.\n9. The future of AI and the potential for significant advancements by 2030.\n10. The role of AI in various aspects of daily life and business operations.', - data: [ - 5, 25, 15, 7, 10, 9, 6, 9, 7, 12, 15, 12, 12, 3, 6, 6, 5, 14, 15, 5, 7, 13, 9, 18, 11, 10, - 12, 4, 7, 6, 4, 6, 11, 11, 13, 10, 10, 6, 12, 12, 2, 8, 5, 21, 10, 16, 26, 9, 4, 9, 14, 10, - 11, 7, 8, - ], - infofi: false, - }, - { - label: 'GameFi', - topics: 'gaming,gamefi,steam,games,fortnite', - description: - 'The messages from twitter discuss various aspects of gaming, including the evolution of video games, the impact of AI in gaming, the intersection of Web3 and gaming, and the development of new games and gaming economies. Smart Contracts are highlighted as a key component in creating sustainable and engaging GameFi experiences. The messages also touch on the importance of rules in games and how they can impact skill development over time. Additionally, the concept of tokens and NFTs in gaming is explored, showcasing a shift in how value is created and distributed within gaming ecosystems. Overall, the messages reflect a deep interest in the future of gaming and the innovative technologies shaping the industry.', - data: [ - 6, 6, 7, 7, 11, 7, 5, 8, 7, 8, 7, 3, 4, 9, 8, 6, 10, 47, 3, 8, 6, 5, 4, 5, 5, 11, 5, 11, 3, - 5, 11, 2, 8, 12, 9, 28, 6, 6, 5, 8, 4, 3, 8, 8, 7, 9, 12, 5, 5, 7, 6, 14, 9, 9, 10, - ], - infofi: false, - }, - { - label: 'NFL', - topics: 'nfl,football,championship,bowl,lions', - description: - "The key topics discussed in the messages from twitter include:\n- Karma coming for the Rams and the Seahawks' success in football\n- Cairo Santos being praised as the best kicker in the NFL\n- Criticism of stadium fans in the NFL\n- Calls for Ohio State to remove Les Wexner's name from everything\n- Excitement over recent football games and the Pro Bowl linemen\n- Discussion of playoff matchups and the College Football Playoff\n- Debate over the ideal outcome for teams to get a quarterback in the NFL\n- Criticism of play-calling in football games\n- Confusion and frustration over game outcomes, particularly involving the Bears\n\nOverall, the messages cover a range of topics related to football, including game analysis, player performance, and playoff scenarios.", - data: [ - 16, 5, 6, 15, 17, 6, 5, 4, 14, 11, 5, 8, 9, 9, 2, 21, 13, 18, 9, 5, 4, 5, 5, 7, 4, 1, 7, 12, - 12, 3, 2, 6, 8, 10, 5, 14, 4, 11, 8, 4, 11, 6, 2, 5, 13, 8, 8, 6, 4, 3, 7, 7, 7, 11, 8, - ], - infofi: false, - }, - { - label: 'BTC is the future of finance', - topics: 'bitcoiners,bitcoiner,jack,tail,merchants', - description: - "The key topics currently discussed in the messages from twitter are:\n- Bitcoin's role in escaping fiat slavery and the importance of adopting it to end wars\n- The need to topple Core™ and its funding apparatus for Bitcoin to achieve its purpose\n- The potential of Bitcoin to become a universal currency\n- The importance of building a Bitcoin circular economy\n- The value of teaching the younger generation about freedom and Bitcoin\n- Ray Dalio's views on Bitcoin as money and its traceability\n- The transformative potential of Bitcoin and the need for more builders and designers in the space\n- The frugality of Bitcoiners and the potential for new technology and innovation to come from them\n- The advantages of Bitcoin as an asset for wealth preservation and portability\n- The comparison between Bitcoin and fiat in terms of risk and performance\n- The privacy concerns surrounding Bitcoin and the preference for gold by some individuals\n- Calls for the release of Bitcoin prisoners and the potential political implications in the midterms\n\nOverall, the messages reflect a diverse range of opinions and discussions surrounding Bitcoin and its impact on the financial and political landscape.", - data: [ - 7, 5, 11, 7, 17, 9, 10, 9, 8, 4, 5, 2, 8, 4, 10, 7, 13, 3, 2, 5, 3, 9, 3, 15, 16, 10, 9, 6, - 5, 5, 2, 10, 4, 4, 8, 10, 11, 5, 8, 10, 9, 7, 5, 12, 6, 15, 11, 6, 5, 14, 7, 5, 3, 3, 5, - ], - infofi: false, - }, - { - label: 'Paul vs Joshua boxing ', - topics: 'joshua,jake,anthony,boxing,paul', - description: - "The key topics discussed in the messages from twitter are the boxing match between Jake Paul and Anthony Joshua. There are mixed opinions on the fight, with some praising Jake Paul for his efforts and others criticizing the match as being rigged or unimpressive. Some users are impressed by Jake Paul's performance and determination, while others question the legitimacy of the fight and the skills of Anthony Joshua. Overall, the discussion revolves around the outcome of the match, the performance of the fighters, and the future implications for Jake Paul in the boxing world.", - data: [ - 5, 5, 7, 8, 6, 11, 4, 4, 6, 6, 1, 1, 2, 9, 6, 6, 26, 4, 7, 15, 8, 4, 5, 3, 13, 15, 7, 8, 12, - 7, 11, 3, 2, 7, 8, 2, 4, 3, 1, 8, 10, 4, 6, 4, 3, 3, 7, 13, 2, 9, 4, 20, 11, 13, 2, - ], - infofi: false, - }, - { - label: 'Quantum threat to crypto ', - topics: 'quantum,computing,computers,fud,cryptography', - description: - 'The messages from twitter discuss the potential threat of quantum computing to Bitcoin and the need for quantum-resistant upgrades. Some believe that quantum computing is already in the hands of three letter agencies and big tech, while others are working on quantum response Bitcoin Improvement Proposals. There is a debate on whether quantum computing poses a real threat to Bitcoin in the future, with some arguing that it is exaggerated and dismissive responses are concerning. The messages also mention the potential targets of quantum computers, with Bitcoin being a lower priority. Overall, there is a mix of concern, skepticism, and preparation for the impact of quantum computing on the cryptocurrency industry.', - data: [ - 4, 2, 5, 8, 10, 3, 1, 3, 4, 20, 3, 8, 6, 7, 3, 2, 9, 7, 3, 5, 7, 3, 2, 5, 3, 4, 7, 10, 1, 6, - 4, 3, 9, 6, 11, 6, 10, 52, 8, 5, 11, 8, 4, 3, 5, 5, 7, 14, 2, 4, 9, 3, 1, 7, 5, - ], - infofi: false, - }, - { - label: 'Trump', - topics: 'eric,trumps,donald,tariffs,properties', - description: - "The messages from twitter suggest that there is a lot of discussion surrounding President Trump and his impact on various industries, including crypto. Some key points mentioned include:\n- President Trump considering declaring a national emergency over housing costs\n- Trump's administration weakening worker protections and attacking union rights\n- Speculation about Trump bailing out crypto holders in 2026\n- The Trump family accepting Bitcoin at all properties\n- Trump being named Person of the Year by Decrypt\n- The Trump administration's influence on the stock market and economy\n- The Trump family's involvement in the crypto industry, including potential fraud cases\n- The trading of $TRUMP tokens on platforms like PrimeXBT\n\nOverall, it seems that President Trump and his family's actions and statements are closely monitored and analyzed within the crypto community, with some expressing support and others skepticism.", - data: [ - 5, 12, 10, 7, 7, 5, 3, 1, 4, 7, 1, 7, 7, 9, 6, 6, 3, 4, 5, 7, 5, 4, 9, 3, 6, 11, 5, 4, 5, 8, - 3, 6, 2, 8, 6, 4, 10, 7, 2, 5, 20, 15, 4, 2, 9, 13, 6, 6, 7, 12, 4, 5, 2, 5, 9, - ], - infofi: false, - }, - { - label: 'China trade issues', - topics: 'chinas,china,chinese,tariffs,taiwan', - description: - "The messages from twitter highlight various aspects of China's economic and political activities, as well as its global impact. Some key points include:\n\n1. China's marketing strategies are being praised over Dubai's.\n2. There is a call to teach children Mandarin and move to China if not rich.\n3. Concerns about the quality of products made in China and the need to \"Make China Small Again.\"\n4. The postponement of new tariffs on Chinese semiconductor imports by the United States.\n5. China imposing tariffs on EU dairy products, leading to a broadening trade conflict.\n6. The decline in foreign direct investment in China.\n7. The importance of not taking China's words for granted.\n8. The impact of China's economic policies on global inflation and USD funding.\n9. The strategic ambiguity between China and Taiwan.\n10. The U.S. sanctioning a Chinese businessman for alleged cyber-scam operations.\n11. Territorial disputes between China and its neighbors.\n12. The U.S. imposing tariffs on chips from China.\n13. China's advancements in AI technology.\n14. The concept of 'nail houses' in China.\n15. A comparison between Japan's and China's contributions to the Philippines.\n16. The impact of tariffs on Chinese exports.\n17. The Pentagon's warning about China's military preparations regarding Taiwan.\n18. The rapid growth of Jinxi, China, over the years.\n19. The increase in silver prices in China.\n20. The potential implications for the market when COMEX opens.\n\nOverall, the messages reflect a mix of economic, political, and technological developments related to China, highlighting its growing influence on the global stage.", - data: [ - 4, 10, 5, 7, 6, 7, 7, 5, 4, 12, 5, 6, 9, 6, 9, 5, 5, 2, 6, 2, 2, 5, 6, 14, 6, 5, 4, 2, 4, 7, - 8, 0, 2, 7, 5, 7, 9, 4, 8, 7, 5, 12, 14, 5, 9, 9, 6, 4, 5, 5, 3, 5, 5, 4, 2, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'mememaxfi,meme,memes,memecoin,memecoins', - description: - 'The messages from twitter suggest that there is still a strong interest in memecoins within the crypto community. People are discussing the potential for memecoins to reach high market caps, with some even claiming to have found the next 1000x memecoin. The community behind memecoins is highlighted as being important, with some tokens like SPX and MOG having cult-like followings.\n\nThere is also discussion about the value of memes as a signal and the importance of community in driving the success of memecoins. Projects like @MemeMax_Fi are mentioned as examples of platforms that are turning meme culture into on-chain coordination layers.\n\nOverall, the messages indicate that there is still enthusiasm for memecoins despite market fluctuations, and that community engagement and activity are key factors in the success of these tokens.', - data: [ - 5, 2, 3, 3, 8, 3, 7, 3, 10, 1, 4, 3, 8, 1, 6, 12, 5, 7, 1, 9, 1, 1, 7, 5, 5, 4, 6, 4, 8, 2, - 80, 8, 3, 6, 5, 5, 2, 2, 3, 3, 1, 3, 1, 5, 4, 4, 7, 7, 6, 8, 7, 5, 2, 3, 1, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: 'bch,rejection,reclaim,90k,sweep', - description: - "The key topics currently discussed in the messages from twitter about $BTC include:\n- Bitcoin's struggle to break through the $88k resistance level\n- Bullish and bearish predictions for Bitcoin's price, ranging from $70k to $150k\n- The importance of defending the support levels, particularly the .382 Fibonacci retracement level\n- The possibility of Bitcoin retesting support zones, such as $85k and $90k\n- The ongoing tug-of-war between bulls and bears in the market\n- The potential for a breakout above resistance levels leading to a rally towards $90.5k or higher\n- The significance of key levels, such as $88k and $85k, for determining market direction\n- The anticipation of a potential rally to $180k if support levels are maintained\n- The analysis of Bitcoin's current price action on different timeframes, with a neutral to bearish outlook\n- The importance of monitoring key resistance and support levels, such as $90k and $84k\n- The potential for a larger price move in January, possibly above $94k\n- The historical context of Bitcoin's price movements and the potential for a breakout towards $100k\n- The introduction of a new trend bias strategy for optimal exit strategies in trading\n- The importance of Bitcoin holding above $80k to maintain a bullish structure and potential retest of $100k\n- The analysis of Bitcoin's current structure and potential targets, such as 114-115k\n- The ongoing analysis of momentum and key moving averages for potential price movements\n\nOverall, the messages reflect a mix of bullish and bearish sentiments, with a focus on key support and resistance levels, as well as potential price targets for Bitcoin.", - data: [ - 12, 0, 3, 7, 3, 18, 5, 5, 4, 14, 10, 13, 5, 2, 5, 7, 8, 3, 2, 1, 3, 6, 13, 4, 3, 1, 10, 6, - 15, 2, 3, 3, 2, 3, 0, 3, 8, 11, 11, 9, 3, 3, 13, 2, 7, 5, 4, 6, 9, 6, 3, 5, 7, 1, 2, - ], - infofi: false, - }, - { - label: 'AAVE governance drama', - topics: 'aave,daos,dao,labs,governance', - description: - 'The Aave drama in the crypto community revolves around governance tensions over protocol asset control and value extraction. Aave Labs has been accused of pushing brand ownership proposals without author notification, leading to conflicts within the community. The hostile takeover of Aave by Stani Kulechov has raised concerns about the dilution of AAVE token holders in the future. Despite the heated discussions, it is important to remember the value created by Aave and the need for transparency in governance decisions. The community is divided on whose side to support, but it is clear that both sides have their flaws. Overall, the Aave governance drama highlights the challenges faced by DAOs in managing conflicts and ensuring fair governance.', - data: [ - 21, 2, 6, 3, 7, 9, 2, 7, 4, 6, 5, 9, 11, 6, 6, 6, 12, 7, 2, 12, 8, 7, 7, 3, 3, 9, 5, 0, 9, - 0, 5, 3, 2, 3, 0, 2, 3, 6, 6, 7, 3, 2, 5, 3, 3, 6, 10, 4, 8, 5, 1, 7, 7, 3, 3, - ], - infofi: false, - }, - { - label: 'Bank of Japan interest rate', - topics: 'boj,japans,yen,hike,japan', - description: - "The key topic currently being discussed in the crypto community on social media is the recent hike in Japan's interest rates by the Bank of Japan. The interest rates were raised by 25 basis points to 0.75%, the highest level in 30 years. This move has caused Japan's 30-year bond yield to briefly jump to 3.435%, the highest level in history. The market is reacting positively to this news, with Bitcoin already up around 3% following the rate hike. There is anticipation and speculation about further rate hikes in the future, with some analysts predicting rates to increase to 100 basis points in the next 6 months. This shift in monetary policy by the Bank of Japan is seen as a major macroeconomic event that could impact global risk assets, including cryptocurrencies. Investors are closely watching the reaction of US markets to this news.", - data: [ - 4, 2, 3, 3, 0, 8, 5, 2, 4, 3, 4, 7, 2, 9, 5, 2, 5, 3, 2, 2, 3, 34, 1, 10, 9, 2, 5, 1, 3, 6, - 1, 2, 1, 4, 2, 3, 2, 44, 15, 2, 4, 0, 2, 4, 7, 8, 2, 2, 1, 3, 1, 1, 2, 3, 28, - ], - infofi: false, - }, - { - label: 'Ukraine peace deal', - topics: 'ukraine,russia,russian,frozen,eu', - description: - "The key topics discussed in the messages from twitter are:\n1. Peace in Ukraine\n2. Russian involvement in Ukraine\n3. Financial aid to Ukraine\n4. Political statements and actions related to Ukraine\n5. European Union's role in the conflict\n6. Military and defense support for Ukraine\n7. President Zelensky's actions and statements\n8. Criticism of NATO and Western involvement in the conflict\n9. Potential peace deals and agreements\n10. International reactions to the conflict.", - data: [ - 4, 4, 12, 0, 1, 3, 3, 3, 9, 5, 1, 4, 9, 3, 11, 2, 6, 2, 7, 1, 4, 4, 2, 6, 8, 7, 5, 4, 2, 2, - 5, 6, 4, 3, 5, 3, 6, 10, 14, 2, 20, 21, 4, 7, 10, 8, 1, 0, 4, 1, 1, 9, 3, 2, 1, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'xrp,ripple,xrpl,inflows,hinting', - description: - "The Great Institutional Unlock for XRP Holders is a major development that is strengthening the case for XRP adoption. With Spot XRP ETFs recording significant daily inflows and assets under management surpassing $1.25 billion, the XRP ecosystem is experiencing significant growth. The XRP Army community has been instrumental in capturing opportunities and building bridges within the crypto industry. The recent stability and potential for growth in XRP's price indicate a positive outlook for the token. Regulatory clarity and legal settlements have also contributed to unlocking institutional access to XRP. Overall, the future looks promising for XRP holders as they navigate through market fluctuations and capitalize on strategic opportunities.", - data: [ - 3, 10, 9, 3, 2, 9, 4, 5, 7, 5, 4, 2, 4, 5, 4, 3, 6, 4, 2, 3, 1, 6, 3, 8, 6, 7, 5, 4, 2, 4, - 4, 5, 3, 7, 4, 3, 10, 3, 8, 12, 5, 8, 11, 15, 7, 6, 3, 3, 8, 1, 2, 1, 6, 2, 2, - ], - infofi: false, - }, - { - label: 'Santa rally', - topics: 'santas,claus,santa,rally,sleigh', - description: - "The key topics discussed in the messages from twitter are:\n1. Santa Rally in the financial markets\n2. Santa's favorite things and activities\n3. Crypto assets not participating in the Santa Rally\n4. Speculation about a potential Santa Rally in the crypto market\n5. Santa-themed promotions and events in the crypto industry\n6. Community initiatives and partnerships related to holiday cheer and giving\n7. Comparison of current market trends to past Santa Rally patterns\n8. DeFi opportunities and yields during the holiday season\n\nOverall, the messages reflect a mix of humor, speculation, market analysis, and holiday spirit within the crypto industry.", - data: [ - 1, 1, 10, 5, 1, 6, 1, 5, 10, 6, 4, 10, 5, 4, 1, 5, 3, 2, 5, 6, 3, 6, 7, 1, 8, 4, 4, 3, 0, 6, - 1, 2, 3, 3, 3, 2, 1, 29, 8, 4, 18, 2, 9, 4, 9, 2, 0, 3, 7, 5, 4, 9, 3, 3, 4, - ], - infofi: false, - }, - { - label: 'BTC price targets for 2026', - topics: 'predicts,fidelity,hayes,arthur,250k', - description: - "The key topics discussed in the messages from twitter are Bitcoin price predictions for 2026, potential price targets such as $150,000, $250,000, $500,000 to $1,000,000, and even $1 million, as well as the overall bullish sentiment towards Bitcoin in 2026. There are also mentions of Ethereum hitting $10,000, the future of capital markets running on top of Bitcoin, and various predictions and analyses from industry experts and figures like CZ, Charles Hoskinson, and Robert Kiyosaki. Additionally, there is a discussion about Bitcoin's potential long-term performance, reaching $1 billion per coin by around 2038, and a list of Bitcoin price forecasts for 2026 by major institutions.", - data: [ - 5, 1, 6, 2, 7, 7, 5, 2, 6, 1, 3, 2, 3, 3, 8, 2, 8, 7, 3, 4, 8, 13, 4, 0, 1, 3, 3, 1, 2, 3, - 2, 2, 1, 5, 4, 1, 27, 4, 8, 6, 11, 8, 3, 1, 2, 2, 5, 2, 5, 2, 2, 2, 3, 3, 7, - ], - infofi: false, - }, - { - label: 'SNOWBALL', - topics: 'snowball,tek,bschizojew,mil,dev', - description: - "The key topic currently being discussed on social media accounts and communities in the crypto industry is $SNOWBALL. The messages mention that $SNOWBALL is very interesting and has a 1 billion dollar market cap. Developers are working 24/7 on the project, and the numbers are increasing. It is noted that wealth is transferring from the impatient to the patient with $SNOWBALL. The project has seen significant growth, with a 50x increase from a bottom call. There is also mention of $SNOWBALL being listed on various platforms and exchanges, as well as new technology being released that could potentially increase its market cap even further. Additionally, there is discussion about $SNOWBALL's competition with other projects like Fireball, and the active involvement of the dev team in protecting the coin during market fluctuations. Overall, $SNOWBALL seems to be a hot topic of conversation with a lot of excitement and potential for growth.", - data: [ - 5, 2, 7, 5, 7, 3, 4, 3, 1, 0, 3, 4, 4, 2, 3, 0, 0, 4, 4, 0, 5, 5, 3, 5, 5, 2, 2, 1, 9, 2, 2, - 1, 5, 2, 4, 2, 2, 2, 2, 3, 3, 4, 2, 40, 2, 5, 7, 4, 1, 2, 4, 5, 1, 1, 0, - ], - infofi: true, - }, - { - label: 'Art', - topics: 'art,artists,painting,canvas,artist', - description: - 'The messages from twitter mainly focus on various aspects of art, including commissions, listed artworks, the evolution of artistry, the importance of art in society, different art movements, NFTs, digital art, and the intersection of art and technology. There is also a discussion about the fragility of the art market on social media platforms and the need for new partnerships and platforms to support artists and collectors. The messages highlight the diversity of art forms and the need for creators to explore new mediums and communities. Additionally, there is a mention of specific artists and their contributions to the NFT movement, as well as a call for more art to be shared and appreciated on social media timelines.', - data: [ - 6, 5, 40, 1, 4, 2, 3, 1, 5, 2, 2, 0, 7, 1, 5, 8, 2, 3, 3, 2, 11, 2, 3, 3, 4, 4, 5, 1, 4, 4, - 2, 2, 2, 5, 3, 2, 3, 1, 4, 2, 1, 2, 1, 2, 1, 6, 3, 3, 1, 0, 5, 2, 0, 1, 1, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-104.json b/priv/repo/major_topics_seed/data-104.json deleted file mode 100644 index 01172aeec1..0000000000 --- a/priv/repo/major_topics_seed/data-104.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["25.12.25","26.12.25","26.12.25","26.12.25","26.12.25","26.12.25","26.12.25","26.12.25","27.12.25","27.12.25","27.12.25","27.12.25","27.12.25","27.12.25","27.12.25","27.12.25","28.12.25","28.12.25","28.12.25","28.12.25","28.12.25","28.12.25","28.12.25","28.12.25","29.12.25","29.12.25","29.12.25","29.12.25","29.12.25","29.12.25","29.12.25","29.12.25","30.12.25","30.12.25","30.12.25","30.12.25","30.12.25","30.12.25","30.12.25","30.12.25","31.12.25","31.12.25","31.12.25","31.12.25","31.12.25","31.12.25","31.12.25","31.12.25","01.01.26","01.01.26","01.01.26","01.01.26","01.01.26","01.01.26","01.01.26"],"datasets":[{"label":"Silver","topics":"palladium,copper,metals,precious,platinum","description":"The messages from twitter indicate a lot of discussion and speculation about the price and value of silver compared to other assets like gold and cryptocurrencies. There are mentions of record high prices for silver, debates about its utility and value compared to gold, and predictions about its future performance. Some users are bullish on silver and gold, while others are more focused on cryptocurrencies like Bitcoin and Ethereum. Overall, there seems to be a lot of volatility and excitement surrounding the silver market, with some users even suggesting a shift away from traditional markets like COMEX pricing. Additionally, there is mention of younger generations showing interest in receiving Bitcoin and cryptocurrency as gifts.","data":[38,32,38,31,35,45,29,33,25,42,24,15,22,30,31,23,31,38,93,27,43,73,11,33,31,24,25,36,38,65,21,28,21,65,29,36,68,63,37,51,27,44,121,30,22,42,24,42,24,28,47,21,13,18,24]},{"label":"Lighter","topics":"lighter,lit,hyperliquid,lighterxyz,hl","description":"The reason why LIT is down after the news is because Lighter had a significant airdrop, injecting liquidity into the Ethereum ecosystem. This caused a shift in focus from Hyperliquid to Lighter, with Lighter gaining traction on Ethereum. The Lighter TGE had one of the largest airdrops in crypto history, leading to increased interest and trading activity. Additionally, the way Hyperliquid launched with no raise and a huge airdrop set a high standard that may not be replicated soon. As a result, there is competition between Hyperliquid and Lighter, with Lighter gaining momentum and attracting traders. The trading dynamics and incentives for early contributors and market makers are also important factors to consider in the current market environment.","data":[20,39,28,19,15,15,14,12,20,14,15,6,20,16,13,12,14,6,6,12,25,19,30,7,8,23,91,18,16,8,7,11,6,20,17,23,11,10,18,8,12,23,10,20,8,17,26,24,21,17,10,7,8,8,3]},{"label":"New Year Crypto Trends","topics":"eve,nye,midnight,domains,repost","description":"The key topics currently being discussed in the crypto industry on social media accounts include:\n1. New Year, new opportunities and mindset\n2. Speculation on upcoming TGEs in Q1\n3. Celebrations and traditions for New Year's Eve\n4. Reflection on past year and setting goals for the new year\n5. Launch of new projects and initiatives for the new year\n6. Crypto gift cards and personalized gifts for the New Year\n7. Staking opportunities and APYs for the new year\n8. Trading journey and switching to new platforms\n9. Trending topics such as \"New Year, New Me\" and \"New Year Pump\"\n10. Speculation on new launches and branding in the crypto space\n\nOverall, the sentiment seems to be positive and optimistic for the new year, with a focus on growth, opportunities, and building something extraordinary in 2026.","data":[6,4,7,8,8,8,11,12,3,8,5,6,5,9,6,7,6,3,10,13,5,7,9,2,4,6,7,2,6,8,6,7,91,8,3,6,6,5,5,13,2,6,4,15,6,3,5,8,8,2,3,9,2,19,97]},{"label":"Solana","topics":"solanas,124,solana,120,128","description":"The messages from twitter discuss various aspects of Solana (SOL) and its potential future. Some key points mentioned include:\n\n- Solana's potential for growth and profitability, with mentions of price movements and profit opportunities.\n- The comparison between Solana and Ethereum in terms of chain revenue.\n- Predictions for Solana's performance in the future, such as rivaling major centralized exchanges.\n- The reliability and performance of the Solana network, with statistics on block times and volume.\n- Discussions about Solana's fundamentals, including revenue, total value locked (TVL), and active addresses.\n- Speculation on potential price movements and trading opportunities for Solana.\n- Mention of Solana's past performance and breakout in 2025, showcasing its potential for growth and adoption.\n- Updates on Solana-related projects and events, such as trading carnivals and new features like the Solflare wallet and card.\n\nOverall, the messages highlight the positive outlook for Solana and its potential for growth and success in the crypto industry.","data":[19,8,5,6,10,11,17,7,8,11,2,12,5,12,7,4,9,15,6,4,5,9,10,10,3,10,6,12,4,5,3,8,5,5,2,4,11,11,7,13,6,11,21,12,3,2,7,7,11,9,13,5,13,9,9]},{"label":"Bitcoin","topics":"bitcoiners,fiat,immutable,fixes,ponzi","description":"The messages from twitter discuss various aspects of Bitcoin, including its role in fixing financial problems, its potential to revolutionize the world, and its ability to provide financial freedom and security. Some key points mentioned include:\n\n- Bitcoin has no intrinsic value, but it is seen as a solution to the devaluation of traditional currencies like the US Dollar.\n- People may view Bitcoin as dangerous or risky, but supporters believe it offers a way out of the current financial system.\n- Bitcoin is described as an opt-out option for those who want to escape the limitations of traditional banking systems.\n- The messages also highlight the power and potential of Bitcoin to disrupt the financial industry and provide access to financial opportunities for everyone, regardless of their economic status.\n- Bitcoin is compared to a living system, with traits such as replication, adaptation, energy consumption, self-defense, and evolution under pressure.\n\nOverall, the messages convey a sense of optimism and belief in the transformative power of Bitcoin in reshaping the financial landscape and providing individuals with greater control over their wealth and financial future.","data":[3,7,7,12,23,1,4,7,4,5,10,6,8,6,11,9,14,7,3,12,4,2,5,15,12,8,5,8,9,6,13,5,2,8,18,7,11,8,8,8,9,6,5,3,6,4,7,4,4,7,3,3,6,11,0]},{"label":"ZEC","topics":"zec,zcash,slv,ascending,fueled","description":"The messages from twitter regarding ZEC (Zcash) show a mix of sentiment and trading strategies. Some users are discussing shorting ZEC, while others are anticipating a bullish breakout. There is also mention of setting stop losses and profit targets for trading ZEC. Additionally, there is skepticism about certain trade ideas and the credibility of some traders. Overall, the discussion around ZEC seems to be focused on trading opportunities and potential price movements in the near future.","data":[10,4,5,6,5,7,7,5,7,6,6,3,5,3,11,8,6,4,3,4,5,8,5,9,4,3,4,15,1,3,3,4,7,8,2,4,13,4,5,8,3,22,2,4,5,6,8,3,10,4,5,5,2,3,52]},{"label":"Minnesota Fraud","topics":"somalis,minnesota,somalians,fbi,mn","description":"The key topics discussed in the messages from twitter are:\n- Fraud in Minnesota involving Somali individuals\n- Accusations against Minnesota Gov. Tim Walz for not addressing the fraud\n- Allegations of billions of dollars being stolen from taxpayers in Minnesota\n- Calls for accountability and jail time for those involved in the fraud\n- Criticism of federal funding programs and accusations of incompetence in Minnesota\n- Speculation about the intelligence of Somalis and their involvement in the scams\n- Mention of a new state program called PIRATE aimed at education opportunities\n- Investigation into individuals receiving taxpayer money in Minnesota\n\nOverall, the messages highlight a significant issue of fraud and misuse of funds in Minnesota involving Somali individuals, with calls for action and accountability from the government and law enforcement.","data":[5,8,7,6,5,7,2,4,2,11,2,7,3,3,8,3,34,5,5,10,13,9,8,9,6,3,4,8,6,4,3,4,4,8,8,6,5,5,4,7,13,6,7,6,15,11,6,5,2,1,2,4,4,3,1]},{"label":"XRP","topics":"ripple,xrp,inflows,shock,ledger","description":"The key topics discussed in the messages from twitter are:\n1. XRP and its potential for success as a stablecoin\n2. Ripple's strategic efforts in Europe's payment infrastructure\n3. Institutional interest in XRP, including ETF inflows and exchange supply shrinking\n4. XRP's price stability and potential for a big move\n5. XRP's role in mainstream adoption, such as Ferrari accepting crypto\n6. Misunderstandings about Ripple's use of XRP for real-world assets\n7. XRP's current quiet period and potential for a big move\n8. Bitwise CIO's explanation of XRP's price not rising despite strong ETF inflows\n9. Market reactions to a $70M+ XRP whale transfer\n10. JP Morgan's partnership with Ripple's GTreasury for global bill settlements\n11. Technical analysis suggesting a bullish pattern for XRP's price movement\n12. Speculation on XRP's potential rally based on historical price patterns.","data":[1,7,14,5,2,6,6,8,14,7,5,5,7,11,15,2,5,2,1,1,0,14,6,12,6,6,5,3,7,5,6,8,3,4,9,5,10,4,13,7,9,8,5,6,16,5,6,1,3,2,5,3,2,5,2]},{"label":"Whitewhale","topics":"whitewhale,whale,trenches,white,runner","description":"The key topics currently being discussed in the crypto community on Twitter include the rise of $whitewhale and its derivatives, the potential for meme coins like $unipcs and $GOLDWHALE to gain traction, the importance of not chasing beta plays after a major runner like $Whitewhale, and the bullish outlook for coins like $BlackWhale and $BlueWhale. Traders are also discussing technical analysis indicators like RSI and MACD for various coins, as well as leverage trading options for $WhiteWhale on DeFiTuna. Overall, there is a mix of excitement, caution, and strategy being shared within the community.","data":[9,2,3,1,5,8,3,6,8,10,4,1,5,0,5,4,1,2,5,3,2,7,5,1,2,3,6,8,2,8,3,5,1,9,2,6,8,4,2,13,4,7,5,2,5,4,6,4,7,2,0,3,57,5,0]},{"label":"Privacy","topics":"privacy,moat,surveillance,0xmiden,beam","description":"The key topic discussed in the messages from twitter is the importance of privacy in the crypto industry. Various projects and tokens are highlighted for their focus on privacy, such as Zcash ($ZEC) and Outlaw ($OUTLAW). The narrative for 2026 seems to be centered around the network effects of privacy-focused projects and the significance of privacy in the overall crypto ecosystem. The messages also touch on the idea that privacy is not just a niche feature but a fundamental expectation for users, and that privacy should be a priority for individuals and communities alike. Additionally, the messages mention the importance of trust in privacy technologies and the need for clear user experience to build that trust. Overall, the discussions emphasize the growing importance of privacy in the crypto industry and the potential impact it may have in the coming years.","data":[2,5,4,5,8,6,3,4,10,5,8,7,4,3,4,3,9,0,4,7,1,4,3,12,11,4,2,3,5,7,4,9,1,3,4,3,36,4,6,4,5,6,2,2,3,7,3,2,8,4,4,2,1,4,5]},{"label":"DeFi","topics":"defi,heyelsaai,omnichain,elsa,vaults","description":"The key topics discussed in the messages from twitter include DeFi protocols, institutional grade price data, AI in DeFi, capital allocation in DeFi, risk management, stewardship in DeFi protocols, the limitations of vaults in DeFi, successful DeFi products like Katana farm, smart routing engines in DeFi, financial engineering in DeFi, brokerage networks for DeFi, InfoFi layer for actionable signals, and cross-chain capital and liquidity management in DeFi. Overall, the messages highlight the importance of data accuracy, risk management, and innovation in the DeFi space.","data":[1,4,4,8,7,3,2,6,3,2,2,7,5,3,4,11,8,5,2,2,5,5,1,9,5,2,7,5,6,3,2,10,1,5,2,2,9,5,8,1,3,3,6,6,4,2,11,4,11,3,10,5,2,2,3]},{"label":"Memecoins","topics":"memes,memecoin,meme,memecoins,rugs","description":"The key topics discussed in the messages from twitter are about memecoins, the potential for memecoins to pump in 2026, the popularity of certain meme coins like $crv, $ordi, and $pepe, the anticipation for meme coins to advertise on the sphere, the concept of \"musical chairs\" trading in the meme coin market, the potential for success stories of proper communities to help memecoins survive, the nostalgia for the early days of meme coins, the prediction that 2026 will be the year of OG memes, the launch of new meme coin projects like @moodwriters, the use of the $captain meme, the Department Of Government Efficiency Memecoin, and the belief that memes will always thrive even in the worst market conditions. Overall, the messages reflect a strong interest and belief in the potential of memecoins and their role in the crypto industry.","data":[1,2,1,1,8,3,2,1,10,4,3,3,7,2,0,5,5,2,0,6,0,5,5,0,3,3,3,5,7,74,4,6,1,1,2,4,5,2,2,4,4,1,3,1,3,3,7,3,2,5,3,6,1,4,1]},{"label":"Taxation","topics":"taxes,theft,irs,paying,owe","description":"The messages from twitter suggest a strong sentiment against paying taxes, with many users questioning the purpose of taxation and expressing frustration with how their tax dollars are being used. Some users advocate for stopping paying taxes altogether until there is more transparency and accountability in government spending. There is also a focus on the idea that taxes are being used to fund activities that are not in the best interest of the taxpayers, such as bombing children or supporting criminal migrants.\n\nOverall, the messages highlight a distrust in the government and a desire for more control over where their tax dollars are allocated. The topic of taxation and the perceived misuse of tax funds is a prevalent discussion within the crypto community on social media.","data":[2,2,0,1,1,3,1,2,0,3,1,3,3,1,3,2,1,3,1,6,2,3,2,4,3,2,4,4,5,0,3,7,3,5,14,3,5,2,5,4,5,4,1,3,12,30,9,2,3,2,7,5,2,6,0]},{"label":"WardenProtocol","topics":"wardenprotocol,warden,agent,studio,agents","description":"The messages from twitter about @wardenprotocol highlight the community's appreciation for the platform's focus on building a strong agent-driven economy. Users are impressed by the platform's intentional design, lower cost of experimentation for builders, and emphasis on security and transparency. The platform is praised for its simplicity, adaptability, and the ability for agents to handle on-chain actions effectively. Users also appreciate the platform's approach to rewards and the development of a full agent economy. Overall, @wardenprotocol is seen as a platform that respects its users and aims to augment execution rather than replace it.","data":[3,10,7,1,0,1,7,3,2,2,2,1,2,5,3,11,1,3,3,2,0,2,2,9,6,2,10,5,8,0,0,4,8,0,2,5,6,7,2,1,0,1,2,11,3,4,13,4,7,5,6,1,2,2,0]},{"label":"Prediction Markets","topics":"kalshi,prediction,betting,sports,bets","description":"The key topics discussed in the messages from twitter are prediction markets, privacy, metaverse, collectibles, Synthesis, Polymarket, Onsight, Kalshi, X, and STAKEHOUSE. Prediction markets are seen as a way to catch time travelers, with discussions about their accuracy in pricing and potential for trading various outcomes. There is also mention of prediction markets focused on stocks and their potential as a trading tool. Additionally, there is a mention of the importance of prediction markets for education and their role in informing the general public about world events. The messages also touch on the idea of integrating prediction markets into various platforms and the potential for decentralized prediction markets on Solana. Overall, the messages highlight the growing interest and potential in prediction markets within the crypto industry.","data":[0,2,0,0,5,1,4,3,1,2,2,4,2,1,0,3,3,4,2,7,1,3,8,10,2,0,2,5,2,22,2,2,3,2,5,23,7,3,1,1,1,3,2,6,3,2,5,2,8,6,4,3,1,1,1]},{"label":"Trust Wallet Hack","topics":"extension,7m,affected,chrome,browser","description":"The key topic discussed in the messages from twitter is the Trust Wallet Chrome extension hack, where over $7 million was stolen from hundreds of users. The hack involved malicious code inserted into version 2.68 of the extension, leading to unauthorized fund outflows. Binance CEO CZ has confirmed the $7 million impact and stated that Trust Wallet will fully cover the losses, reassuring users that their funds remain safe. The incident has prompted Trust Wallet to launch a compensation process for victims of the hack, with users urged to update to the latest version of the extension. The hack has raised concerns about security in the crypto industry, with users reminded of the risks involved in using browser extensions for crypto transactions.","data":[2,6,2,0,1,7,0,3,1,13,5,2,8,0,11,3,3,0,1,1,18,4,2,1,3,4,3,2,1,2,1,1,0,5,1,0,2,1,10,1,10,1,1,0,9,2,0,1,2,13,5,9,0,2,0]},{"label":"Web3 Failures","topics":"web3,web2,frontend,codexeroxyz,removes","description":"The messages from twitter discuss various aspects of Web3, including its potential, toxicity, allocation models, and challenges. There is a mention of the contrast between Web3 and Web2, with a focus on the advantages of Web3 in terms of ownership and community building. The messages also touch upon the need for creativity and use cases in Web3 projects, as well as the importance of fair access and ownership in the space. Additionally, there is a mention of a tool called @CodeXero_xyz that simplifies the process of building Web3 applications. Overall, the messages highlight the complexities and opportunities present in the Web3 space.","data":[1,3,2,2,9,3,2,2,3,3,1,1,8,1,5,4,2,12,2,1,3,5,1,2,7,2,2,3,6,3,1,4,2,5,0,2,6,3,5,3,0,4,0,6,3,3,2,0,4,3,1,13,2,2,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-104.ts b/priv/repo/major_topics_seed/data-104.ts deleted file mode 100644 index 6cdb6bbeaa..0000000000 --- a/priv/repo/major_topics_seed/data-104.ts +++ /dev/null @@ -1,251 +0,0 @@ -export const NARRATIVES = { - labels: [ - '25.12.25', - '26.12.25', - '26.12.25', - '26.12.25', - '26.12.25', - '26.12.25', - '26.12.25', - '26.12.25', - '27.12.25', - '27.12.25', - '27.12.25', - '27.12.25', - '27.12.25', - '27.12.25', - '27.12.25', - '27.12.25', - '28.12.25', - '28.12.25', - '28.12.25', - '28.12.25', - '28.12.25', - '28.12.25', - '28.12.25', - '28.12.25', - '29.12.25', - '29.12.25', - '29.12.25', - '29.12.25', - '29.12.25', - '29.12.25', - '29.12.25', - '29.12.25', - '30.12.25', - '30.12.25', - '30.12.25', - '30.12.25', - '30.12.25', - '30.12.25', - '30.12.25', - '30.12.25', - '31.12.25', - '31.12.25', - '31.12.25', - '31.12.25', - '31.12.25', - '31.12.25', - '31.12.25', - '31.12.25', - '01.01.26', - '01.01.26', - '01.01.26', - '01.01.26', - '01.01.26', - '01.01.26', - '01.01.26', - ], - datasets: [ - { - label: 'Silver', - topics: 'palladium,copper,metals,precious,platinum', - description: - 'The messages from twitter indicate a lot of discussion and speculation about the price and value of silver compared to other assets like gold and cryptocurrencies. There are mentions of record high prices for silver, debates about its utility and value compared to gold, and predictions about its future performance. Some users are bullish on silver and gold, while others are more focused on cryptocurrencies like Bitcoin and Ethereum. Overall, there seems to be a lot of volatility and excitement surrounding the silver market, with some users even suggesting a shift away from traditional markets like COMEX pricing. Additionally, there is mention of younger generations showing interest in receiving Bitcoin and cryptocurrency as gifts.', - data: [ - 38, 32, 38, 31, 35, 45, 29, 33, 25, 42, 24, 15, 22, 30, 31, 23, 31, 38, 93, 27, 43, 73, 11, - 33, 31, 24, 25, 36, 38, 65, 21, 28, 21, 65, 29, 36, 68, 63, 37, 51, 27, 44, 121, 30, 22, 42, - 24, 42, 24, 28, 47, 21, 13, 18, 24, - ], - infofi: false, - }, - { - label: 'Lighter', - topics: 'lighter,lit,hyperliquid,lighterxyz,hl', - description: - 'The reason why LIT is down after the news is because Lighter had a significant airdrop, injecting liquidity into the Ethereum ecosystem. This caused a shift in focus from Hyperliquid to Lighter, with Lighter gaining traction on Ethereum. The Lighter TGE had one of the largest airdrops in crypto history, leading to increased interest and trading activity. Additionally, the way Hyperliquid launched with no raise and a huge airdrop set a high standard that may not be replicated soon. As a result, there is competition between Hyperliquid and Lighter, with Lighter gaining momentum and attracting traders. The trading dynamics and incentives for early contributors and market makers are also important factors to consider in the current market environment.', - data: [ - 20, 39, 28, 19, 15, 15, 14, 12, 20, 14, 15, 6, 20, 16, 13, 12, 14, 6, 6, 12, 25, 19, 30, 7, - 8, 23, 91, 18, 16, 8, 7, 11, 6, 20, 17, 23, 11, 10, 18, 8, 12, 23, 10, 20, 8, 17, 26, 24, - 21, 17, 10, 7, 8, 8, 3, - ], - infofi: false, - }, - { - label: 'New Year Crypto Trends', - topics: 'eve,nye,midnight,domains,repost', - description: - 'The key topics currently being discussed in the crypto industry on social media accounts include:\n1. New Year, new opportunities and mindset\n2. Speculation on upcoming TGEs in Q1\n3. Celebrations and traditions for New Year\'s Eve\n4. Reflection on past year and setting goals for the new year\n5. Launch of new projects and initiatives for the new year\n6. Crypto gift cards and personalized gifts for the New Year\n7. Staking opportunities and APYs for the new year\n8. Trading journey and switching to new platforms\n9. Trending topics such as "New Year, New Me" and "New Year Pump"\n10. Speculation on new launches and branding in the crypto space\n\nOverall, the sentiment seems to be positive and optimistic for the new year, with a focus on growth, opportunities, and building something extraordinary in 2026.', - data: [ - 6, 4, 7, 8, 8, 8, 11, 12, 3, 8, 5, 6, 5, 9, 6, 7, 6, 3, 10, 13, 5, 7, 9, 2, 4, 6, 7, 2, 6, - 8, 6, 7, 91, 8, 3, 6, 6, 5, 5, 13, 2, 6, 4, 15, 6, 3, 5, 8, 8, 2, 3, 9, 2, 19, 97, - ], - infofi: false, - }, - { - label: 'Solana', - topics: 'solanas,124,solana,120,128', - description: - "The messages from twitter discuss various aspects of Solana (SOL) and its potential future. Some key points mentioned include:\n\n- Solana's potential for growth and profitability, with mentions of price movements and profit opportunities.\n- The comparison between Solana and Ethereum in terms of chain revenue.\n- Predictions for Solana's performance in the future, such as rivaling major centralized exchanges.\n- The reliability and performance of the Solana network, with statistics on block times and volume.\n- Discussions about Solana's fundamentals, including revenue, total value locked (TVL), and active addresses.\n- Speculation on potential price movements and trading opportunities for Solana.\n- Mention of Solana's past performance and breakout in 2025, showcasing its potential for growth and adoption.\n- Updates on Solana-related projects and events, such as trading carnivals and new features like the Solflare wallet and card.\n\nOverall, the messages highlight the positive outlook for Solana and its potential for growth and success in the crypto industry.", - data: [ - 19, 8, 5, 6, 10, 11, 17, 7, 8, 11, 2, 12, 5, 12, 7, 4, 9, 15, 6, 4, 5, 9, 10, 10, 3, 10, 6, - 12, 4, 5, 3, 8, 5, 5, 2, 4, 11, 11, 7, 13, 6, 11, 21, 12, 3, 2, 7, 7, 11, 9, 13, 5, 13, 9, - 9, - ], - infofi: false, - }, - { - label: 'Bitcoin', - topics: 'bitcoiners,fiat,immutable,fixes,ponzi', - description: - 'The messages from twitter discuss various aspects of Bitcoin, including its role in fixing financial problems, its potential to revolutionize the world, and its ability to provide financial freedom and security. Some key points mentioned include:\n\n- Bitcoin has no intrinsic value, but it is seen as a solution to the devaluation of traditional currencies like the US Dollar.\n- People may view Bitcoin as dangerous or risky, but supporters believe it offers a way out of the current financial system.\n- Bitcoin is described as an opt-out option for those who want to escape the limitations of traditional banking systems.\n- The messages also highlight the power and potential of Bitcoin to disrupt the financial industry and provide access to financial opportunities for everyone, regardless of their economic status.\n- Bitcoin is compared to a living system, with traits such as replication, adaptation, energy consumption, self-defense, and evolution under pressure.\n\nOverall, the messages convey a sense of optimism and belief in the transformative power of Bitcoin in reshaping the financial landscape and providing individuals with greater control over their wealth and financial future.', - data: [ - 3, 7, 7, 12, 23, 1, 4, 7, 4, 5, 10, 6, 8, 6, 11, 9, 14, 7, 3, 12, 4, 2, 5, 15, 12, 8, 5, 8, - 9, 6, 13, 5, 2, 8, 18, 7, 11, 8, 8, 8, 9, 6, 5, 3, 6, 4, 7, 4, 4, 7, 3, 3, 6, 11, 0, - ], - infofi: false, - }, - { - label: 'ZEC', - topics: 'zec,zcash,slv,ascending,fueled', - description: - 'The messages from twitter regarding ZEC (Zcash) show a mix of sentiment and trading strategies. Some users are discussing shorting ZEC, while others are anticipating a bullish breakout. There is also mention of setting stop losses and profit targets for trading ZEC. Additionally, there is skepticism about certain trade ideas and the credibility of some traders. Overall, the discussion around ZEC seems to be focused on trading opportunities and potential price movements in the near future.', - data: [ - 10, 4, 5, 6, 5, 7, 7, 5, 7, 6, 6, 3, 5, 3, 11, 8, 6, 4, 3, 4, 5, 8, 5, 9, 4, 3, 4, 15, 1, 3, - 3, 4, 7, 8, 2, 4, 13, 4, 5, 8, 3, 22, 2, 4, 5, 6, 8, 3, 10, 4, 5, 5, 2, 3, 52, - ], - infofi: false, - }, - { - label: 'Minnesota Fraud', - topics: 'somalis,minnesota,somalians,fbi,mn', - description: - 'The key topics discussed in the messages from twitter are:\n- Fraud in Minnesota involving Somali individuals\n- Accusations against Minnesota Gov. Tim Walz for not addressing the fraud\n- Allegations of billions of dollars being stolen from taxpayers in Minnesota\n- Calls for accountability and jail time for those involved in the fraud\n- Criticism of federal funding programs and accusations of incompetence in Minnesota\n- Speculation about the intelligence of Somalis and their involvement in the scams\n- Mention of a new state program called PIRATE aimed at education opportunities\n- Investigation into individuals receiving taxpayer money in Minnesota\n\nOverall, the messages highlight a significant issue of fraud and misuse of funds in Minnesota involving Somali individuals, with calls for action and accountability from the government and law enforcement.', - data: [ - 5, 8, 7, 6, 5, 7, 2, 4, 2, 11, 2, 7, 3, 3, 8, 3, 34, 5, 5, 10, 13, 9, 8, 9, 6, 3, 4, 8, 6, - 4, 3, 4, 4, 8, 8, 6, 5, 5, 4, 7, 13, 6, 7, 6, 15, 11, 6, 5, 2, 1, 2, 4, 4, 3, 1, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'ripple,xrp,inflows,shock,ledger', - description: - "The key topics discussed in the messages from twitter are:\n1. XRP and its potential for success as a stablecoin\n2. Ripple's strategic efforts in Europe's payment infrastructure\n3. Institutional interest in XRP, including ETF inflows and exchange supply shrinking\n4. XRP's price stability and potential for a big move\n5. XRP's role in mainstream adoption, such as Ferrari accepting crypto\n6. Misunderstandings about Ripple's use of XRP for real-world assets\n7. XRP's current quiet period and potential for a big move\n8. Bitwise CIO's explanation of XRP's price not rising despite strong ETF inflows\n9. Market reactions to a $70M+ XRP whale transfer\n10. JP Morgan's partnership with Ripple's GTreasury for global bill settlements\n11. Technical analysis suggesting a bullish pattern for XRP's price movement\n12. Speculation on XRP's potential rally based on historical price patterns.", - data: [ - 1, 7, 14, 5, 2, 6, 6, 8, 14, 7, 5, 5, 7, 11, 15, 2, 5, 2, 1, 1, 0, 14, 6, 12, 6, 6, 5, 3, 7, - 5, 6, 8, 3, 4, 9, 5, 10, 4, 13, 7, 9, 8, 5, 6, 16, 5, 6, 1, 3, 2, 5, 3, 2, 5, 2, - ], - infofi: false, - }, - { - label: 'Whitewhale', - topics: 'whitewhale,whale,trenches,white,runner', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the rise of $whitewhale and its derivatives, the potential for meme coins like $unipcs and $GOLDWHALE to gain traction, the importance of not chasing beta plays after a major runner like $Whitewhale, and the bullish outlook for coins like $BlackWhale and $BlueWhale. Traders are also discussing technical analysis indicators like RSI and MACD for various coins, as well as leverage trading options for $WhiteWhale on DeFiTuna. Overall, there is a mix of excitement, caution, and strategy being shared within the community.', - data: [ - 9, 2, 3, 1, 5, 8, 3, 6, 8, 10, 4, 1, 5, 0, 5, 4, 1, 2, 5, 3, 2, 7, 5, 1, 2, 3, 6, 8, 2, 8, - 3, 5, 1, 9, 2, 6, 8, 4, 2, 13, 4, 7, 5, 2, 5, 4, 6, 4, 7, 2, 0, 3, 57, 5, 0, - ], - infofi: false, - }, - { - label: 'Privacy', - topics: 'privacy,moat,surveillance,0xmiden,beam', - description: - 'The key topic discussed in the messages from twitter is the importance of privacy in the crypto industry. Various projects and tokens are highlighted for their focus on privacy, such as Zcash ($ZEC) and Outlaw ($OUTLAW). The narrative for 2026 seems to be centered around the network effects of privacy-focused projects and the significance of privacy in the overall crypto ecosystem. The messages also touch on the idea that privacy is not just a niche feature but a fundamental expectation for users, and that privacy should be a priority for individuals and communities alike. Additionally, the messages mention the importance of trust in privacy technologies and the need for clear user experience to build that trust. Overall, the discussions emphasize the growing importance of privacy in the crypto industry and the potential impact it may have in the coming years.', - data: [ - 2, 5, 4, 5, 8, 6, 3, 4, 10, 5, 8, 7, 4, 3, 4, 3, 9, 0, 4, 7, 1, 4, 3, 12, 11, 4, 2, 3, 5, 7, - 4, 9, 1, 3, 4, 3, 36, 4, 6, 4, 5, 6, 2, 2, 3, 7, 3, 2, 8, 4, 4, 2, 1, 4, 5, - ], - infofi: false, - }, - { - label: 'DeFi', - topics: 'defi,heyelsaai,omnichain,elsa,vaults', - description: - 'The key topics discussed in the messages from twitter include DeFi protocols, institutional grade price data, AI in DeFi, capital allocation in DeFi, risk management, stewardship in DeFi protocols, the limitations of vaults in DeFi, successful DeFi products like Katana farm, smart routing engines in DeFi, financial engineering in DeFi, brokerage networks for DeFi, InfoFi layer for actionable signals, and cross-chain capital and liquidity management in DeFi. Overall, the messages highlight the importance of data accuracy, risk management, and innovation in the DeFi space.', - data: [ - 1, 4, 4, 8, 7, 3, 2, 6, 3, 2, 2, 7, 5, 3, 4, 11, 8, 5, 2, 2, 5, 5, 1, 9, 5, 2, 7, 5, 6, 3, - 2, 10, 1, 5, 2, 2, 9, 5, 8, 1, 3, 3, 6, 6, 4, 2, 11, 4, 11, 3, 10, 5, 2, 2, 3, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'memes,memecoin,meme,memecoins,rugs', - description: - 'The key topics discussed in the messages from twitter are about memecoins, the potential for memecoins to pump in 2026, the popularity of certain meme coins like $crv, $ordi, and $pepe, the anticipation for meme coins to advertise on the sphere, the concept of "musical chairs" trading in the meme coin market, the potential for success stories of proper communities to help memecoins survive, the nostalgia for the early days of meme coins, the prediction that 2026 will be the year of OG memes, the launch of new meme coin projects like @moodwriters, the use of the $captain meme, the Department Of Government Efficiency Memecoin, and the belief that memes will always thrive even in the worst market conditions. Overall, the messages reflect a strong interest and belief in the potential of memecoins and their role in the crypto industry.', - data: [ - 1, 2, 1, 1, 8, 3, 2, 1, 10, 4, 3, 3, 7, 2, 0, 5, 5, 2, 0, 6, 0, 5, 5, 0, 3, 3, 3, 5, 7, 74, - 4, 6, 1, 1, 2, 4, 5, 2, 2, 4, 4, 1, 3, 1, 3, 3, 7, 3, 2, 5, 3, 6, 1, 4, 1, - ], - infofi: false, - }, - { - label: 'Taxation', - topics: 'taxes,theft,irs,paying,owe', - description: - 'The messages from twitter suggest a strong sentiment against paying taxes, with many users questioning the purpose of taxation and expressing frustration with how their tax dollars are being used. Some users advocate for stopping paying taxes altogether until there is more transparency and accountability in government spending. There is also a focus on the idea that taxes are being used to fund activities that are not in the best interest of the taxpayers, such as bombing children or supporting criminal migrants.\n\nOverall, the messages highlight a distrust in the government and a desire for more control over where their tax dollars are allocated. The topic of taxation and the perceived misuse of tax funds is a prevalent discussion within the crypto community on social media.', - data: [ - 2, 2, 0, 1, 1, 3, 1, 2, 0, 3, 1, 3, 3, 1, 3, 2, 1, 3, 1, 6, 2, 3, 2, 4, 3, 2, 4, 4, 5, 0, 3, - 7, 3, 5, 14, 3, 5, 2, 5, 4, 5, 4, 1, 3, 12, 30, 9, 2, 3, 2, 7, 5, 2, 6, 0, - ], - infofi: false, - }, - { - label: 'WardenProtocol', - topics: 'wardenprotocol,warden,agent,studio,agents', - description: - "The messages from twitter about @wardenprotocol highlight the community's appreciation for the platform's focus on building a strong agent-driven economy. Users are impressed by the platform's intentional design, lower cost of experimentation for builders, and emphasis on security and transparency. The platform is praised for its simplicity, adaptability, and the ability for agents to handle on-chain actions effectively. Users also appreciate the platform's approach to rewards and the development of a full agent economy. Overall, @wardenprotocol is seen as a platform that respects its users and aims to augment execution rather than replace it.", - data: [ - 3, 10, 7, 1, 0, 1, 7, 3, 2, 2, 2, 1, 2, 5, 3, 11, 1, 3, 3, 2, 0, 2, 2, 9, 6, 2, 10, 5, 8, 0, - 0, 4, 8, 0, 2, 5, 6, 7, 2, 1, 0, 1, 2, 11, 3, 4, 13, 4, 7, 5, 6, 1, 2, 2, 0, - ], - infofi: false, - }, - { - label: 'Prediction Markets', - topics: 'kalshi,prediction,betting,sports,bets', - description: - 'The key topics discussed in the messages from twitter are prediction markets, privacy, metaverse, collectibles, Synthesis, Polymarket, Onsight, Kalshi, X, and STAKEHOUSE. Prediction markets are seen as a way to catch time travelers, with discussions about their accuracy in pricing and potential for trading various outcomes. There is also mention of prediction markets focused on stocks and their potential as a trading tool. Additionally, there is a mention of the importance of prediction markets for education and their role in informing the general public about world events. The messages also touch on the idea of integrating prediction markets into various platforms and the potential for decentralized prediction markets on Solana. Overall, the messages highlight the growing interest and potential in prediction markets within the crypto industry.', - data: [ - 0, 2, 0, 0, 5, 1, 4, 3, 1, 2, 2, 4, 2, 1, 0, 3, 3, 4, 2, 7, 1, 3, 8, 10, 2, 0, 2, 5, 2, 22, - 2, 2, 3, 2, 5, 23, 7, 3, 1, 1, 1, 3, 2, 6, 3, 2, 5, 2, 8, 6, 4, 3, 1, 1, 1, - ], - infofi: false, - }, - { - label: 'Trust Wallet Hack', - topics: 'extension,7m,affected,chrome,browser', - description: - 'The key topic discussed in the messages from twitter is the Trust Wallet Chrome extension hack, where over $7 million was stolen from hundreds of users. The hack involved malicious code inserted into version 2.68 of the extension, leading to unauthorized fund outflows. Binance CEO CZ has confirmed the $7 million impact and stated that Trust Wallet will fully cover the losses, reassuring users that their funds remain safe. The incident has prompted Trust Wallet to launch a compensation process for victims of the hack, with users urged to update to the latest version of the extension. The hack has raised concerns about security in the crypto industry, with users reminded of the risks involved in using browser extensions for crypto transactions.', - data: [ - 2, 6, 2, 0, 1, 7, 0, 3, 1, 13, 5, 2, 8, 0, 11, 3, 3, 0, 1, 1, 18, 4, 2, 1, 3, 4, 3, 2, 1, 2, - 1, 1, 0, 5, 1, 0, 2, 1, 10, 1, 10, 1, 1, 0, 9, 2, 0, 1, 2, 13, 5, 9, 0, 2, 0, - ], - infofi: false, - }, - { - label: 'Web3 Failures', - topics: 'web3,web2,frontend,codexeroxyz,removes', - description: - 'The messages from twitter discuss various aspects of Web3, including its potential, toxicity, allocation models, and challenges. There is a mention of the contrast between Web3 and Web2, with a focus on the advantages of Web3 in terms of ownership and community building. The messages also touch upon the need for creativity and use cases in Web3 projects, as well as the importance of fair access and ownership in the space. Additionally, there is a mention of a tool called @CodeXero_xyz that simplifies the process of building Web3 applications. Overall, the messages highlight the complexities and opportunities present in the Web3 space.', - data: [ - 1, 3, 2, 2, 9, 3, 2, 2, 3, 3, 1, 1, 8, 1, 5, 4, 2, 12, 2, 1, 3, 5, 1, 2, 7, 2, 2, 3, 6, 3, - 1, 4, 2, 5, 0, 2, 6, 3, 5, 3, 0, 4, 0, 6, 3, 3, 2, 0, 4, 3, 1, 13, 2, 2, 1, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-105.json b/priv/repo/major_topics_seed/data-105.json deleted file mode 100644 index 72a0c912e9..0000000000 --- a/priv/repo/major_topics_seed/data-105.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["01.01.26","02.01.26","02.01.26","02.01.26","02.01.26","02.01.26","02.01.26","02.01.26","03.01.26","03.01.26","03.01.26","03.01.26","03.01.26","03.01.26","03.01.26","03.01.26","04.01.26","04.01.26","04.01.26","04.01.26","04.01.26","04.01.26","04.01.26","04.01.26","05.01.26","05.01.26","05.01.26","05.01.26","05.01.26","05.01.26","05.01.26","05.01.26","06.01.26","06.01.26","06.01.26","06.01.26","06.01.26","06.01.26","06.01.26","06.01.26","07.01.26","07.01.26","07.01.26","07.01.26","07.01.26","07.01.26","07.01.26","07.01.26","08.01.26","08.01.26","08.01.26","08.01.26","08.01.26","08.01.26","08.01.26"],"datasets":[{"label":"Venezuelan oil","topics":"barrels,crude,reserves,arabia,output","description":"The messages from twitter suggest that there is a lot of discussion surrounding Venezuelan oil and its impact on the global oil market. Some key points mentioned include:\n\n- The potential for an international oil airdrop from Venezuela before a pump fun airdrop, leading to speculation about the oil market.\n- The role of oil companies in restoring stability and potentially solving issues related to \"Narco-terrorism.\"\n- The impact of the U.S. naval blockade on Venezuela, costing millions daily.\n- The potential for Venezuela to increase oil exports to the U.S. amid policy shifts.\n- The challenges and constraints facing Venezuelan oil production, even in the event of political changes.\n- The potential rise in oil risk premium after the capture of Venezuelan President Nicolás Maduro.\n- The shift away from the dollar in Venezuela's oil trade, particularly with China.\n\nOverall, the messages indicate a complex and dynamic situation in the Venezuelan oil industry, with potential implications for global oil markets and geopolitical stability.","data":[2,4,8,10,4,9,7,15,6,19,4,4,6,6,9,3,3,9,4,9,3,6,10,4,6,7,5,6,4,9,3,4,4,68,3,7,20,10,9,8,4,16,9,3,8,10,3,6,9,3,6,5,4,7,5]},{"label":"China-US","topics":"chinas,taiwan,chinese,china,yuan","description":"The key topics discussed in the messages from twitter include China's response to Venezuela, China's potential invasion of Taiwan, US-China rivalry, China's investment in renewables, China's influence in global trade, China's condemnation of US actions in Venezuela, China's stock trading volume, and China's Supreme Court tackling blockchain and crypto governance. The messages also touch on China's strategic lessons from history, China's economic strategies, and comparisons between China and the US in various aspects. Overall, the messages highlight the complex dynamics and competition between China and other global powers in various spheres.","data":[5,12,7,5,9,5,14,17,5,7,6,11,11,8,16,1,5,8,1,4,4,2,7,19,5,5,5,6,8,10,7,8,5,9,6,8,12,6,10,10,10,11,6,5,13,14,14,9,4,7,7,10,7,7,1]},{"label":"Bitcoin's 17th Birthday","topics":"birthday,satoshi,17th,mined,genesis","description":"The messages from twitter are celebrating the 17th birthday of Bitcoin, which was launched by the mysterious Satoshi Nakamoto 17 years ago. The messages highlight the fact that Bitcoin has remained secure and unstoppable throughout its existence, with no successful hacks or interruptions in transactions. The significance of the Genesis Block mined by Nakamoto is emphasized, with many considering it to be one of the most important events in modern human history. The messages also mention the importance of self-custody and real ownership in the world of cryptocurrency. Overall, the messages reflect on the impact and longevity of Bitcoin as a groundbreaking innovation in the world of digital money.","data":[54,1,8,8,38,21,4,7,1,3,2,17,5,4,5,6,5,7,2,4,14,5,2,3,7,5,2,4,2,8,11,8,4,3,4,5,1,3,3,2,1,4,3,2,5,2,5,4,2,8,3,1,3,7,78]},{"label":"Greenland","topics":"greenland,denmark,acquire,acquiring,nato","description":"The key topics currently being discussed in the messages from twitter are:\n1. President Trump's interest in acquiring Greenland\n2. European leaders pushing back on the idea of the US taking control of Greenland\n3. Potential financial incentives for Greenland citizens to support secession from Denmark\n4. Stephen Miller reaffirming the White House's desire to take control of Greenland\n5. Concerns and opposition from various countries, including France, Germany, Italy, Poland, Spain, and the UK, regarding the US's interest in Greenland\n6. The idea of Greenland belonging to its people and decisions concerning its future should be made solely by Denmark and Greenland\n7. The potential cost of acquiring Greenland for the US\n8. The mention of Greenland in relation to the Epstein files and other unrelated topics.","data":[8,19,3,9,7,3,7,6,5,18,3,4,4,9,8,1,6,6,8,5,3,2,2,6,7,16,2,4,2,5,2,11,5,11,5,7,6,4,9,12,38,9,0,7,4,10,11,10,3,4,9,9,6,2,2]},{"label":"Metals Prices","topics":"silver,precious,metals,ounce,metal","description":"The key topics currently being discussed in the crypto industry on social media include the significant increase in silver prices, with a 40% rise in one month and predictions of further increases. There is speculation that the rise in gold and silver prices may be due to insider knowledge of upcoming events, such as potential geopolitical actions. Additionally, there is discussion about the potential for a historic week for metals, with silver and gold expected to sell well if economic data is positive. There are also mentions of a potential silver short squeeze and predictions of gold reaching $5,000/oz by Q1 2026. Overall, there is a lot of excitement and speculation surrounding the precious metals market in the near future.","data":[8,2,11,2,1,9,3,4,14,5,4,6,10,7,4,6,10,4,7,19,4,10,5,7,4,2,1,5,1,12,7,4,3,9,3,12,32,8,5,8,2,8,28,7,6,10,5,4,9,3,1,1,2,2,2]},{"label":"XRP","topics":"xrp,hottest,cnbc,ripple,240","description":"The key topic currently being discussed in the crypto community on Twitter is the bullish update on $XRP. There is excitement about a potential bullish reversal, with predictions of $10,000 per XRP being questioned. The recent surge in XRP's price, climbing past $2.30 and restoring a $140 billion market cap, has generated optimism among traders. Additionally, there is speculation about XRP reaching $4.5 or higher in the near future. The CEO of Ripple, Brad Garlinghouse, has expressed confidence in XRP's success, further fueling positive sentiment. Overall, the community is closely monitoring XRP's performance and potential for further growth.","data":[6,6,4,3,5,8,6,9,7,2,4,2,6,10,7,7,5,2,3,1,4,11,11,9,12,7,4,5,8,3,4,6,2,7,5,7,7,9,9,9,15,5,6,1,6,10,6,8,4,1,3,5,3,3,5]},{"label":"Tesla Stock Performance","topics":"tsla,tesla,teslas,vehicles,ev","description":"The key topics discussed in the messages from twitter include:\n- Tesla's potential failure and institutional investment\n- Tesla's stock performance and market cap compared to other automakers\n- Electric vehicle sales in different countries\n- Tesla's potential success in autonomous vehicles and other future businesses\n- Ford's EV sales performance\n- Comparison between Tesla and other automakers in terms of sales\n- Tesla's recent vehicle delivery numbers and decrease in sales compared to previous years\n\nOverall, the messages highlight various aspects of Tesla's business, stock performance, and the electric vehicle industry as a whole.","data":[14,5,10,6,6,1,8,7,2,6,4,14,6,11,4,8,1,5,4,4,2,5,4,6,4,2,2,5,8,3,8,5,7,6,2,4,3,6,4,6,11,9,3,6,14,4,6,1,2,5,8,4,4,5,6]},{"label":"Ethereum","topics":"3300,3000,ena,4000,3k","description":"The key topic currently discussed in the crypto community on Twitter is the potential breakout of Ethereum ($ETH). Traders and analysts are closely monitoring the price movement of ETH, with many pointing out bullish signs such as breaking above key resistance levels and holding support levels. There is optimism that ETH could outperform Bitcoin, especially if it manages to maintain its current momentum and break through key levels like $3,400 and $4,000. The community is also discussing the importance of certain price levels like $3,000 and $3,100, as well as the potential for a significant uptrend in the near future. Overall, there is a sense of excitement and anticipation surrounding Ethereum's price action and potential for a breakout.","data":[4,1,4,3,5,11,5,5,6,8,2,5,5,4,6,3,7,2,5,4,3,12,6,2,5,3,8,7,8,4,2,4,1,5,5,8,11,10,7,11,5,9,12,3,8,3,9,5,4,4,3,4,4,0,3]},{"label":"Dogecoin","topics":"dogecoin,doge,145,pennant,climbs","description":"Key topics discussed in the messages from twitter include:\n1. Dogecoin (DOGE) price movements and potential breakouts\n2. Dogecoin's backing by wattage\n3. Dogecoin's performance compared to other cryptocurrencies\n4. Annual trends and expectations for Dogecoin\n5. Potential new developments in the Dogecoin ecosystem, such as pDoge\n6. Trading strategies and analysis for Dogecoin\n7. Market sentiment and predictions for Dogecoin\n8. Updates on Dogecoin savings tracker and trading opportunities on MEXC\n9. Comparison of Dogecoin ETF performance with other funds\n10. General cryptocurrency market trends and analysis\n\nOverall, the messages indicate a positive sentiment towards Dogecoin, with discussions focusing on its potential for growth, new developments, and trading opportunities.","data":[13,3,4,6,2,5,6,2,4,2,12,7,12,4,5,5,5,6,5,3,3,5,8,6,5,2,4,4,2,6,6,4,3,9,7,5,5,5,5,6,1,5,10,7,5,3,2,3,2,3,1,6,11,3,2]},{"label":"Altcoins","topics":"alts,altcoin,altcoins,dominance,alt","description":"The messages from twitter indicate that #Altcoins are showing signs of a bullish reversal and are looking strong. The altcoin market capitalization has held crucial levels for support, and there are indications of a big leg upwards to the all-time high. Traders are looking at specific altcoins that are set to outperform other assets, and there is anticipation of a strong run for alts in the coming weeks/months. Overall, there is optimism and excitement in the crypto community about the potential for altcoins to rally and perform well.","data":[1,23,6,2,5,4,4,5,8,4,8,3,20,7,5,5,2,1,8,5,0,5,2,6,4,2,2,5,7,6,7,5,3,4,3,0,2,16,3,5,4,5,6,2,6,3,6,3,2,2,1,8,3,2,2]},{"label":"$SOL","topics":"145,140,dats,sol,128","description":"The sentiment around SOL on social media is positive, with many users discussing the bullish trend and potential for higher prices. Key resistance levels and support zones are being closely monitored, with some users predicting a retest of $145-$150. The divergence between adoption and price action is also being noted, with strong fundamentals but muted price movement. Overall, there is optimism about SOL's potential for further growth, but caution is advised due to potential overbought conditions and the need to manage risk.","data":[7,3,7,2,2,9,8,10,5,13,5,6,6,2,3,4,2,3,4,0,2,9,5,0,0,7,4,17,2,2,0,2,1,3,2,3,2,6,5,7,4,5,12,10,6,2,3,7,5,0,6,6,10,0,1]},{"label":"Zcash","topics":"resigned,zcash,dispute,electric,mert","description":"The key topic currently being discussed in the crypto industry is the resignation of the entire Zcash core development team. The developers have collectively resigned following a board of directors dispute and have founded a new company to continue developing privacy technology. This has caused the price of Zcash to plummet and has led to concerns about the future of the project. The resignation has been described as a \"constructive discharge\" due to governance disputes with the Bootstrap board. Overall, there is a sense of uncertainty and instability in the industry as major changes, layoffs, and restructurings are taking place.","data":[1,5,0,3,1,1,0,0,5,13,7,1,25,8,17,3,5,1,4,5,8,5,3,5,6,4,3,4,4,2,3,4,3,4,3,2,4,3,1,1,1,3,4,3,3,2,14,3,3,4,1,3,0,0,21]},{"label":"Vitalik's vision","topics":"vitalik,buterin,ethereums,resilience,decentralization","description":"The key topics discussed in the messages from twitter about Ethereum include:\n- Vitalik Buterin's vision for Ethereum, emphasizing resilience and freedom\n- Ethereum's potential beyond being just digital gold\n- Vitalik's focus on making Ethereum secure and usable for individuals and organizations\n- The importance of Ethereum's soul being resilience, according to Vitalik\n- The announcement of zkEVMs for Ethereum, solving the blockchain trilemma\n- The potential for global adoption of Ethereum\n- The introduction of PulseChain as a clone of Ethereum with additional features\n- The concept of WORM as a privacy solution for Ethereum transactions\n\nOverall, the messages highlight the ongoing development and evolution of Ethereum, with a focus on security, usability, and resilience.","data":[4,5,5,3,5,3,3,1,0,4,6,2,5,4,11,2,13,4,2,5,0,4,1,5,3,2,3,5,5,4,3,3,5,4,5,2,0,4,5,9,16,5,3,7,5,4,1,1,2,6,5,4,3,8,3]},{"label":"$PEPE","topics":"pepe,wynn,postpump,jumps,4hr","description":"The messages from twitter suggest that $PEPE has experienced significant price movements, with mentions of a 25% pump, a 50% increase year-to-date, a 20% rise in just 14 hours, and a 35% increase in the last 24 hours. There is also speculation about $PEPE potentially reaching a market cap of 15B in the near future. Additionally, there are discussions about $PEPE being a profitable investment and potentially becoming the next big player in the market. Overall, the sentiment surrounding $PEPE appears to be positive, with many users excited about its potential for growth.","data":[12,2,2,4,3,3,7,3,7,2,5,2,4,4,1,1,6,4,2,4,3,5,2,5,5,4,1,4,6,5,1,0,2,1,19,4,2,13,7,6,2,6,5,1,3,4,5,4,4,1,4,1,6,1,2]},{"label":"MSTR","topics":"mstr,mnav,atm,par,dividend","description":"The key topics discussed in the messages from twitter are:\n1. The STRC discount to par closing again, with the market being perceived as wrong.\n2. The performance and predictions related to MSTR (Bitcoin treasury company).\n3. The potential for MSTR to generate cashflow from various sources such as enterprise custody services, lightning network routing, and btc backed lending.\n4. The unrealized loss of $17.44 billion in Q4 for MSTR due to Bitcoin's performance.\n5. Mizuho Financial Group reiterating a buy rating on MSTR with a price target of $484 for 2026.\n6. The growth and ranking of MSTR as a publicly traded equity.\n7. The discussion around dividends in Bitcoin on the balance sheet and the potential for Strategy to buy more Bitcoin.\n8. The historical performance of MSTR during previous Bitcoin cycles.\n9. The potential impact of USD dominance on hyperbitcoinization.\n10. The positive trading day for STRC, with volume and price staying above $100.\n\nOverall, the messages reflect a mix of analysis, predictions, and discussions around the performance and potential of MSTR and STRC in relation to Bitcoin and the broader market.","data":[8,0,4,5,2,4,3,5,5,3,2,9,10,2,9,6,2,3,3,2,3,3,4,4,3,4,7,3,7,4,1,8,2,6,2,4,8,1,6,7,4,3,6,3,2,0,5,3,11,1,1,1,2,2,3]},{"label":"Lighter","topics":"lighter,lit,lighterxyz,justin,hl","description":"The key topics discussed in the messages from twitter about Lighter ($LIT) include:\n- Lighter generating around $90k in revenue in the last 24 hours\n- Performance of Lighter LLP since 10/10, with a high number of green days\n- Crypto Whale Jez buying more $LIT tokens\n- Potential reasons why Lighter will win the perp dex wars\n- Positive user experiences with the Lighter mobile app\n- Speculation about the future movement of $LIT price\n- Launch of new equity perps by Lighter\n- Discussion about the sustainability of DeFi tokens and revenue flywheel models\n- Airdrops and buybacks of $LIT tokens\n- Comparison of Lighter to other projects in the crypto space\n\nOverall, the sentiment towards Lighter seems positive, with discussions focusing on its revenue generation, user experience, and potential for growth in the future.","data":[0,2,3,3,3,2,9,2,1,1,2,1,3,3,5,9,2,1,6,3,4,4,7,2,3,10,20,6,1,0,4,6,5,1,4,3,2,3,4,2,1,3,6,2,3,4,4,6,9,3,1,10,4,1,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-105.ts b/priv/repo/major_topics_seed/data-105.ts deleted file mode 100644 index 923a37a5bf..0000000000 --- a/priv/repo/major_topics_seed/data-105.ts +++ /dev/null @@ -1,237 +0,0 @@ -export const NARRATIVES = { - labels: [ - '01.01.26', - '02.01.26', - '02.01.26', - '02.01.26', - '02.01.26', - '02.01.26', - '02.01.26', - '02.01.26', - '03.01.26', - '03.01.26', - '03.01.26', - '03.01.26', - '03.01.26', - '03.01.26', - '03.01.26', - '03.01.26', - '04.01.26', - '04.01.26', - '04.01.26', - '04.01.26', - '04.01.26', - '04.01.26', - '04.01.26', - '04.01.26', - '05.01.26', - '05.01.26', - '05.01.26', - '05.01.26', - '05.01.26', - '05.01.26', - '05.01.26', - '05.01.26', - '06.01.26', - '06.01.26', - '06.01.26', - '06.01.26', - '06.01.26', - '06.01.26', - '06.01.26', - '06.01.26', - '07.01.26', - '07.01.26', - '07.01.26', - '07.01.26', - '07.01.26', - '07.01.26', - '07.01.26', - '07.01.26', - '08.01.26', - '08.01.26', - '08.01.26', - '08.01.26', - '08.01.26', - '08.01.26', - '08.01.26', - ], - datasets: [ - { - label: 'Venezuelan oil', - topics: 'barrels,crude,reserves,arabia,output', - description: - 'The messages from twitter suggest that there is a lot of discussion surrounding Venezuelan oil and its impact on the global oil market. Some key points mentioned include:\n\n- The potential for an international oil airdrop from Venezuela before a pump fun airdrop, leading to speculation about the oil market.\n- The role of oil companies in restoring stability and potentially solving issues related to "Narco-terrorism."\n- The impact of the U.S. naval blockade on Venezuela, costing millions daily.\n- The potential for Venezuela to increase oil exports to the U.S. amid policy shifts.\n- The challenges and constraints facing Venezuelan oil production, even in the event of political changes.\n- The potential rise in oil risk premium after the capture of Venezuelan President Nicolás Maduro.\n- The shift away from the dollar in Venezuela\'s oil trade, particularly with China.\n\nOverall, the messages indicate a complex and dynamic situation in the Venezuelan oil industry, with potential implications for global oil markets and geopolitical stability.', - data: [ - 2, 4, 8, 10, 4, 9, 7, 15, 6, 19, 4, 4, 6, 6, 9, 3, 3, 9, 4, 9, 3, 6, 10, 4, 6, 7, 5, 6, 4, - 9, 3, 4, 4, 68, 3, 7, 20, 10, 9, 8, 4, 16, 9, 3, 8, 10, 3, 6, 9, 3, 6, 5, 4, 7, 5, - ], - infofi: false, - }, - { - label: 'China-US', - topics: 'chinas,taiwan,chinese,china,yuan', - description: - "The key topics discussed in the messages from twitter include China's response to Venezuela, China's potential invasion of Taiwan, US-China rivalry, China's investment in renewables, China's influence in global trade, China's condemnation of US actions in Venezuela, China's stock trading volume, and China's Supreme Court tackling blockchain and crypto governance. The messages also touch on China's strategic lessons from history, China's economic strategies, and comparisons between China and the US in various aspects. Overall, the messages highlight the complex dynamics and competition between China and other global powers in various spheres.", - data: [ - 5, 12, 7, 5, 9, 5, 14, 17, 5, 7, 6, 11, 11, 8, 16, 1, 5, 8, 1, 4, 4, 2, 7, 19, 5, 5, 5, 6, - 8, 10, 7, 8, 5, 9, 6, 8, 12, 6, 10, 10, 10, 11, 6, 5, 13, 14, 14, 9, 4, 7, 7, 10, 7, 7, 1, - ], - infofi: false, - }, - { - label: "Bitcoin's 17th Birthday", - topics: 'birthday,satoshi,17th,mined,genesis', - description: - 'The messages from twitter are celebrating the 17th birthday of Bitcoin, which was launched by the mysterious Satoshi Nakamoto 17 years ago. The messages highlight the fact that Bitcoin has remained secure and unstoppable throughout its existence, with no successful hacks or interruptions in transactions. The significance of the Genesis Block mined by Nakamoto is emphasized, with many considering it to be one of the most important events in modern human history. The messages also mention the importance of self-custody and real ownership in the world of cryptocurrency. Overall, the messages reflect on the impact and longevity of Bitcoin as a groundbreaking innovation in the world of digital money.', - data: [ - 54, 1, 8, 8, 38, 21, 4, 7, 1, 3, 2, 17, 5, 4, 5, 6, 5, 7, 2, 4, 14, 5, 2, 3, 7, 5, 2, 4, 2, - 8, 11, 8, 4, 3, 4, 5, 1, 3, 3, 2, 1, 4, 3, 2, 5, 2, 5, 4, 2, 8, 3, 1, 3, 7, 78, - ], - infofi: false, - }, - { - label: 'Greenland', - topics: 'greenland,denmark,acquire,acquiring,nato', - description: - "The key topics currently being discussed in the messages from twitter are:\n1. President Trump's interest in acquiring Greenland\n2. European leaders pushing back on the idea of the US taking control of Greenland\n3. Potential financial incentives for Greenland citizens to support secession from Denmark\n4. Stephen Miller reaffirming the White House's desire to take control of Greenland\n5. Concerns and opposition from various countries, including France, Germany, Italy, Poland, Spain, and the UK, regarding the US's interest in Greenland\n6. The idea of Greenland belonging to its people and decisions concerning its future should be made solely by Denmark and Greenland\n7. The potential cost of acquiring Greenland for the US\n8. The mention of Greenland in relation to the Epstein files and other unrelated topics.", - data: [ - 8, 19, 3, 9, 7, 3, 7, 6, 5, 18, 3, 4, 4, 9, 8, 1, 6, 6, 8, 5, 3, 2, 2, 6, 7, 16, 2, 4, 2, 5, - 2, 11, 5, 11, 5, 7, 6, 4, 9, 12, 38, 9, 0, 7, 4, 10, 11, 10, 3, 4, 9, 9, 6, 2, 2, - ], - infofi: false, - }, - { - label: 'Metals Prices', - topics: 'silver,precious,metals,ounce,metal', - description: - 'The key topics currently being discussed in the crypto industry on social media include the significant increase in silver prices, with a 40% rise in one month and predictions of further increases. There is speculation that the rise in gold and silver prices may be due to insider knowledge of upcoming events, such as potential geopolitical actions. Additionally, there is discussion about the potential for a historic week for metals, with silver and gold expected to sell well if economic data is positive. There are also mentions of a potential silver short squeeze and predictions of gold reaching $5,000/oz by Q1 2026. Overall, there is a lot of excitement and speculation surrounding the precious metals market in the near future.', - data: [ - 8, 2, 11, 2, 1, 9, 3, 4, 14, 5, 4, 6, 10, 7, 4, 6, 10, 4, 7, 19, 4, 10, 5, 7, 4, 2, 1, 5, 1, - 12, 7, 4, 3, 9, 3, 12, 32, 8, 5, 8, 2, 8, 28, 7, 6, 10, 5, 4, 9, 3, 1, 1, 2, 2, 2, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'xrp,hottest,cnbc,ripple,240', - description: - "The key topic currently being discussed in the crypto community on Twitter is the bullish update on $XRP. There is excitement about a potential bullish reversal, with predictions of $10,000 per XRP being questioned. The recent surge in XRP's price, climbing past $2.30 and restoring a $140 billion market cap, has generated optimism among traders. Additionally, there is speculation about XRP reaching $4.5 or higher in the near future. The CEO of Ripple, Brad Garlinghouse, has expressed confidence in XRP's success, further fueling positive sentiment. Overall, the community is closely monitoring XRP's performance and potential for further growth.", - data: [ - 6, 6, 4, 3, 5, 8, 6, 9, 7, 2, 4, 2, 6, 10, 7, 7, 5, 2, 3, 1, 4, 11, 11, 9, 12, 7, 4, 5, 8, - 3, 4, 6, 2, 7, 5, 7, 7, 9, 9, 9, 15, 5, 6, 1, 6, 10, 6, 8, 4, 1, 3, 5, 3, 3, 5, - ], - infofi: false, - }, - { - label: 'Tesla Stock Performance', - topics: 'tsla,tesla,teslas,vehicles,ev', - description: - "The key topics discussed in the messages from twitter include:\n- Tesla's potential failure and institutional investment\n- Tesla's stock performance and market cap compared to other automakers\n- Electric vehicle sales in different countries\n- Tesla's potential success in autonomous vehicles and other future businesses\n- Ford's EV sales performance\n- Comparison between Tesla and other automakers in terms of sales\n- Tesla's recent vehicle delivery numbers and decrease in sales compared to previous years\n\nOverall, the messages highlight various aspects of Tesla's business, stock performance, and the electric vehicle industry as a whole.", - data: [ - 14, 5, 10, 6, 6, 1, 8, 7, 2, 6, 4, 14, 6, 11, 4, 8, 1, 5, 4, 4, 2, 5, 4, 6, 4, 2, 2, 5, 8, - 3, 8, 5, 7, 6, 2, 4, 3, 6, 4, 6, 11, 9, 3, 6, 14, 4, 6, 1, 2, 5, 8, 4, 4, 5, 6, - ], - infofi: false, - }, - { - label: 'Ethereum', - topics: '3300,3000,ena,4000,3k', - description: - "The key topic currently discussed in the crypto community on Twitter is the potential breakout of Ethereum ($ETH). Traders and analysts are closely monitoring the price movement of ETH, with many pointing out bullish signs such as breaking above key resistance levels and holding support levels. There is optimism that ETH could outperform Bitcoin, especially if it manages to maintain its current momentum and break through key levels like $3,400 and $4,000. The community is also discussing the importance of certain price levels like $3,000 and $3,100, as well as the potential for a significant uptrend in the near future. Overall, there is a sense of excitement and anticipation surrounding Ethereum's price action and potential for a breakout.", - data: [ - 4, 1, 4, 3, 5, 11, 5, 5, 6, 8, 2, 5, 5, 4, 6, 3, 7, 2, 5, 4, 3, 12, 6, 2, 5, 3, 8, 7, 8, 4, - 2, 4, 1, 5, 5, 8, 11, 10, 7, 11, 5, 9, 12, 3, 8, 3, 9, 5, 4, 4, 3, 4, 4, 0, 3, - ], - infofi: false, - }, - { - label: 'Dogecoin', - topics: 'dogecoin,doge,145,pennant,climbs', - description: - "Key topics discussed in the messages from twitter include:\n1. Dogecoin (DOGE) price movements and potential breakouts\n2. Dogecoin's backing by wattage\n3. Dogecoin's performance compared to other cryptocurrencies\n4. Annual trends and expectations for Dogecoin\n5. Potential new developments in the Dogecoin ecosystem, such as pDoge\n6. Trading strategies and analysis for Dogecoin\n7. Market sentiment and predictions for Dogecoin\n8. Updates on Dogecoin savings tracker and trading opportunities on MEXC\n9. Comparison of Dogecoin ETF performance with other funds\n10. General cryptocurrency market trends and analysis\n\nOverall, the messages indicate a positive sentiment towards Dogecoin, with discussions focusing on its potential for growth, new developments, and trading opportunities.", - data: [ - 13, 3, 4, 6, 2, 5, 6, 2, 4, 2, 12, 7, 12, 4, 5, 5, 5, 6, 5, 3, 3, 5, 8, 6, 5, 2, 4, 4, 2, 6, - 6, 4, 3, 9, 7, 5, 5, 5, 5, 6, 1, 5, 10, 7, 5, 3, 2, 3, 2, 3, 1, 6, 11, 3, 2, - ], - infofi: false, - }, - { - label: 'Altcoins', - topics: 'alts,altcoin,altcoins,dominance,alt', - description: - 'The messages from twitter indicate that #Altcoins are showing signs of a bullish reversal and are looking strong. The altcoin market capitalization has held crucial levels for support, and there are indications of a big leg upwards to the all-time high. Traders are looking at specific altcoins that are set to outperform other assets, and there is anticipation of a strong run for alts in the coming weeks/months. Overall, there is optimism and excitement in the crypto community about the potential for altcoins to rally and perform well.', - data: [ - 1, 23, 6, 2, 5, 4, 4, 5, 8, 4, 8, 3, 20, 7, 5, 5, 2, 1, 8, 5, 0, 5, 2, 6, 4, 2, 2, 5, 7, 6, - 7, 5, 3, 4, 3, 0, 2, 16, 3, 5, 4, 5, 6, 2, 6, 3, 6, 3, 2, 2, 1, 8, 3, 2, 2, - ], - infofi: false, - }, - { - label: '$SOL', - topics: '145,140,dats,sol,128', - description: - "The sentiment around SOL on social media is positive, with many users discussing the bullish trend and potential for higher prices. Key resistance levels and support zones are being closely monitored, with some users predicting a retest of $145-$150. The divergence between adoption and price action is also being noted, with strong fundamentals but muted price movement. Overall, there is optimism about SOL's potential for further growth, but caution is advised due to potential overbought conditions and the need to manage risk.", - data: [ - 7, 3, 7, 2, 2, 9, 8, 10, 5, 13, 5, 6, 6, 2, 3, 4, 2, 3, 4, 0, 2, 9, 5, 0, 0, 7, 4, 17, 2, 2, - 0, 2, 1, 3, 2, 3, 2, 6, 5, 7, 4, 5, 12, 10, 6, 2, 3, 7, 5, 0, 6, 6, 10, 0, 1, - ], - infofi: false, - }, - { - label: 'Zcash', - topics: 'resigned,zcash,dispute,electric,mert', - description: - 'The key topic currently being discussed in the crypto industry is the resignation of the entire Zcash core development team. The developers have collectively resigned following a board of directors dispute and have founded a new company to continue developing privacy technology. This has caused the price of Zcash to plummet and has led to concerns about the future of the project. The resignation has been described as a "constructive discharge" due to governance disputes with the Bootstrap board. Overall, there is a sense of uncertainty and instability in the industry as major changes, layoffs, and restructurings are taking place.', - data: [ - 1, 5, 0, 3, 1, 1, 0, 0, 5, 13, 7, 1, 25, 8, 17, 3, 5, 1, 4, 5, 8, 5, 3, 5, 6, 4, 3, 4, 4, 2, - 3, 4, 3, 4, 3, 2, 4, 3, 1, 1, 1, 3, 4, 3, 3, 2, 14, 3, 3, 4, 1, 3, 0, 0, 21, - ], - infofi: false, - }, - { - label: "Vitalik's vision", - topics: 'vitalik,buterin,ethereums,resilience,decentralization', - description: - "The key topics discussed in the messages from twitter about Ethereum include:\n- Vitalik Buterin's vision for Ethereum, emphasizing resilience and freedom\n- Ethereum's potential beyond being just digital gold\n- Vitalik's focus on making Ethereum secure and usable for individuals and organizations\n- The importance of Ethereum's soul being resilience, according to Vitalik\n- The announcement of zkEVMs for Ethereum, solving the blockchain trilemma\n- The potential for global adoption of Ethereum\n- The introduction of PulseChain as a clone of Ethereum with additional features\n- The concept of WORM as a privacy solution for Ethereum transactions\n\nOverall, the messages highlight the ongoing development and evolution of Ethereum, with a focus on security, usability, and resilience.", - data: [ - 4, 5, 5, 3, 5, 3, 3, 1, 0, 4, 6, 2, 5, 4, 11, 2, 13, 4, 2, 5, 0, 4, 1, 5, 3, 2, 3, 5, 5, 4, - 3, 3, 5, 4, 5, 2, 0, 4, 5, 9, 16, 5, 3, 7, 5, 4, 1, 1, 2, 6, 5, 4, 3, 8, 3, - ], - infofi: false, - }, - { - label: '$PEPE', - topics: 'pepe,wynn,postpump,jumps,4hr', - description: - 'The messages from twitter suggest that $PEPE has experienced significant price movements, with mentions of a 25% pump, a 50% increase year-to-date, a 20% rise in just 14 hours, and a 35% increase in the last 24 hours. There is also speculation about $PEPE potentially reaching a market cap of 15B in the near future. Additionally, there are discussions about $PEPE being a profitable investment and potentially becoming the next big player in the market. Overall, the sentiment surrounding $PEPE appears to be positive, with many users excited about its potential for growth.', - data: [ - 12, 2, 2, 4, 3, 3, 7, 3, 7, 2, 5, 2, 4, 4, 1, 1, 6, 4, 2, 4, 3, 5, 2, 5, 5, 4, 1, 4, 6, 5, - 1, 0, 2, 1, 19, 4, 2, 13, 7, 6, 2, 6, 5, 1, 3, 4, 5, 4, 4, 1, 4, 1, 6, 1, 2, - ], - infofi: false, - }, - { - label: 'MSTR', - topics: 'mstr,mnav,atm,par,dividend', - description: - "The key topics discussed in the messages from twitter are:\n1. The STRC discount to par closing again, with the market being perceived as wrong.\n2. The performance and predictions related to MSTR (Bitcoin treasury company).\n3. The potential for MSTR to generate cashflow from various sources such as enterprise custody services, lightning network routing, and btc backed lending.\n4. The unrealized loss of $17.44 billion in Q4 for MSTR due to Bitcoin's performance.\n5. Mizuho Financial Group reiterating a buy rating on MSTR with a price target of $484 for 2026.\n6. The growth and ranking of MSTR as a publicly traded equity.\n7. The discussion around dividends in Bitcoin on the balance sheet and the potential for Strategy to buy more Bitcoin.\n8. The historical performance of MSTR during previous Bitcoin cycles.\n9. The potential impact of USD dominance on hyperbitcoinization.\n10. The positive trading day for STRC, with volume and price staying above $100.\n\nOverall, the messages reflect a mix of analysis, predictions, and discussions around the performance and potential of MSTR and STRC in relation to Bitcoin and the broader market.", - data: [ - 8, 0, 4, 5, 2, 4, 3, 5, 5, 3, 2, 9, 10, 2, 9, 6, 2, 3, 3, 2, 3, 3, 4, 4, 3, 4, 7, 3, 7, 4, - 1, 8, 2, 6, 2, 4, 8, 1, 6, 7, 4, 3, 6, 3, 2, 0, 5, 3, 11, 1, 1, 1, 2, 2, 3, - ], - infofi: false, - }, - { - label: 'Lighter', - topics: 'lighter,lit,lighterxyz,justin,hl', - description: - 'The key topics discussed in the messages from twitter about Lighter ($LIT) include:\n- Lighter generating around $90k in revenue in the last 24 hours\n- Performance of Lighter LLP since 10/10, with a high number of green days\n- Crypto Whale Jez buying more $LIT tokens\n- Potential reasons why Lighter will win the perp dex wars\n- Positive user experiences with the Lighter mobile app\n- Speculation about the future movement of $LIT price\n- Launch of new equity perps by Lighter\n- Discussion about the sustainability of DeFi tokens and revenue flywheel models\n- Airdrops and buybacks of $LIT tokens\n- Comparison of Lighter to other projects in the crypto space\n\nOverall, the sentiment towards Lighter seems positive, with discussions focusing on its revenue generation, user experience, and potential for growth in the future.', - data: [ - 0, 2, 3, 3, 3, 2, 9, 2, 1, 1, 2, 1, 3, 3, 5, 9, 2, 1, 6, 3, 4, 4, 7, 2, 3, 10, 20, 6, 1, 0, - 4, 6, 5, 1, 4, 3, 2, 3, 4, 2, 1, 3, 6, 2, 3, 4, 4, 6, 9, 3, 1, 10, 4, 1, 3, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-106.json b/priv/repo/major_topics_seed/data-106.json deleted file mode 100644 index 67db236789..0000000000 --- a/priv/repo/major_topics_seed/data-106.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["08.01.26","09.01.26","09.01.26","09.01.26","09.01.26","09.01.26","09.01.26","09.01.26","10.01.26","10.01.26","10.01.26","10.01.26","10.01.26","10.01.26","10.01.26","10.01.26","11.01.26","11.01.26","11.01.26","11.01.26","11.01.26","11.01.26","11.01.26","11.01.26","12.01.26","12.01.26","12.01.26","12.01.26","12.01.26","12.01.26","12.01.26","12.01.26","13.01.26","13.01.26","13.01.26","13.01.26","13.01.26","13.01.26","13.01.26","13.01.26","14.01.26","14.01.26","14.01.26","14.01.26","14.01.26","14.01.26","14.01.26","14.01.26","15.01.26","15.01.26","15.01.26","15.01.26","15.01.26","15.01.26","15.01.26"],"datasets":[{"label":"BTC price","topics":"94k,liquidated,95k,liquidations,shorts","description":"The key topic currently discussed in the crypto community on Twitter is the potential breakout attempt of Bitcoin this Sunday. Traders are analyzing various indicators such as resistance levels, MACD crossovers, and historical price patterns to determine if Bitcoin will break above key levels such as $100,000 or if it will face a rejection. There is optimism among traders, with some pointing out bullish signs such as higher lows, spot buying driving the price action, and a potential inverse head and shoulders pattern forming. Overall, the sentiment is positive, with many expecting Bitcoin to continue its upward trajectory and potentially reach new all-time highs.","data":[53,16,28,27,23,109,58,45,62,53,32,47,40,32,33,30,37,16,23,23,22,89,38,21,32,15,78,69,37,23,35,30,24,34,27,32,51,63,58,54,18,40,89,41,41,49,51,37,43,33,46,22,60,10,31]},{"label":"CLARITY act","topics":"markup,senate,armstrong,bipartisan,senators","description":"The messages from twitter highlight the ongoing discussions and debates surrounding regulatory clarity in the crypto industry. There are mixed opinions on the proposed Clarity Act, with some seeing it as a positive step towards clearer rules and long-awaited regulatory clarity, while others criticize it for potentially restricting innovation and giving too much power to regulatory bodies like the SEC.\n\nCoinbase CEO Brian Armstrong has expressed concerns about the current draft of the bill, stating that it may do more harm than good. However, other major players in the industry, such as Kraken, Ripple, Paradigm, and Circle, are still backing the bill and pushing for its passage.\n\nOverall, the industry is eagerly awaiting regulatory clarity to provide confidence and stability for institutions and investors. The Clarity Act is seen as a crucial step towards achieving this goal, despite the ongoing debates and disagreements within the community.","data":[7,13,15,7,14,3,16,22,30,16,45,11,26,14,14,7,14,7,5,7,8,8,5,32,7,21,4,8,11,31,9,10,8,9,4,18,9,31,32,15,40,38,10,5,14,17,8,6,1,7,16,23,13,14,2]},{"label":"Precious metals","topics":"precious,silver,metals,copper,metal","description":"The key topics currently discussed in the crypto industry on social media include the surge in silver prices, with predictions of it potentially reaching infinity and hitting new all-time highs. There is also discussion about gold hitting record highs and the potential for a final melt-up move in silver to reach $200. Additionally, there is speculation about the impact of global uncertainty on precious metals and the potential for a great reset. Traders are also discussing the performance of silver mining stocks and the overall strong performance of precious metals in recent history. Some are cautioning about click bait targets and the importance of knowing when to exit trades. Overall, there is a mix of excitement and caution surrounding the current trends in the precious metals market.","data":[14,8,9,8,10,22,16,8,6,20,11,7,6,4,6,8,9,4,12,30,5,58,7,4,6,6,7,4,15,16,11,11,8,26,4,9,43,20,13,8,3,9,56,21,14,25,7,17,18,3,5,6,7,4,11]},{"label":"Memecoins","topics":"mememaxfi,mememax,memes,memecoins,meme","description":"The messages from twitter mainly focus on the discussion of meme coins in the crypto industry. There is a lot of excitement and interest in trading meme coins, with mentions of specific meme coins like FARTCOIN and PUMP. The concept of meme coins being profitable is also discussed, with questions about their potential profitability in the current market. Additionally, there is a comparison between memes and NFTs in terms of their impact on the crypto industry. The messages also touch on the idea of holding meme coins until 2027 and the potential for meme coins to be replaced by more fundamental aspects of the market. Overall, the sentiment towards meme coins in the messages is positive, with a focus on their potential for high returns and the excitement surrounding meme coin trading.","data":[5,10,4,8,16,9,7,8,19,2,6,9,7,9,5,21,9,14,9,17,4,12,6,6,13,5,11,13,9,169,9,13,11,10,10,16,9,12,6,5,5,14,12,9,8,4,10,15,11,12,12,10,6,9,10]},{"label":"XMR","topics":"monero,xmr,privacyfocused,520,xom","description":"The key topics discussed in the messages from twitter regarding Monero ($XMR) include:\n1. Monero surpassing its all-time low of $0.216 a few years ago and reaching a record high of $642.\n2. Monero's price increase of 3x since September.\n3. Monero being referred to as a privacy coin and a digital financial protest.\n4. Speculation on Monero's price potential, with predictions ranging from $700 to $900.\n5. Monero being described as the ultimate unicorn asset with utility, privacy, and potential for significant upside.\n6. The excitement and momentum surrounding Monero's price discovery and potential for further growth.\n7. The success and resilience of Monero as a project, remaining private and un-trackable despite challenges faced by other privacy coins.\n8. Calls for using newfound wealth from Monero investments for good purposes.\n9. Personal anecdotes and experiences of individuals benefiting financially from investing in Monero.\n10. Recommendations to actively research and analyze crypto market trends for profitable trading opportunities.","data":[9,8,5,11,13,25,10,12,22,13,14,5,12,9,11,17,13,5,10,8,6,32,3,7,9,7,9,14,9,10,26,17,10,7,10,3,30,21,9,10,7,5,11,14,10,21,7,16,9,7,8,11,8,5,20]},{"label":"AI","topics":"bottleneck,replace,productivity,humans,perceptronntwk","description":"The messages from twitter discuss various aspects of AI in the crypto industry. Some key topics mentioned include the evolution of AI from traditional to synthetic intelligence, the role of AI in system design and development, the potential impact of AI on job displacement, and the importance of human input in refining AI-generated content. Additionally, there is a mention of AI-driven insight in HR compliance and the potential for AI to be connected to the human brain. The messages also touch on the idea of AI being a decentralizing force and the need for businesses to be prepared for AI transformation. Overall, the discussions highlight the complex and evolving relationship between AI and the crypto industry.","data":[9,44,12,11,20,9,6,6,5,15,11,10,13,7,16,4,6,8,8,10,10,5,17,18,14,11,13,9,8,5,9,16,4,12,16,13,13,7,13,21,9,14,6,3,4,16,16,13,10,4,14,4,5,14,10]},{"label":"Trump","topics":"mortgage,fannie,affordability,housing,bonds","description":"The messages from twitter discuss various aspects related to Donald Trump and his impact on the economy, housing market, and cryptocurrency industry. Trump is portrayed as making bold statements and taking actions that could potentially have significant effects on various sectors. Some of the key points mentioned include Trump's desire to lower interest rates, his plans to ban large institutional investors from buying single-family homes, his family's involvement in the crypto industry, and his stance on Bitcoin. Additionally, there are discussions about Trump's impact on the financial industrial complex, his potential influence on monetary policy, and his approach to geopolitics. Overall, the messages reflect a mix of opinions on Trump's policies and their potential implications.","data":[5,7,14,17,13,5,7,8,4,10,16,8,16,13,11,12,13,1,12,10,9,10,8,6,13,8,11,9,9,14,10,7,6,10,4,15,17,3,6,9,35,13,9,6,8,16,12,15,2,28,6,16,9,10,11]},{"label":"Claude Cowork","topics":"cowork,claude,installed,code,opus","description":"Summary:\nThe messages from twitter discuss the popularity and versatility of Claude Code in the crypto industry. People are impressed with its uses and capabilities, with some even joking about replacing programmers with Claude Code. There are mentions of using Claude Code for trading bots and the success of Claude Code in generating revenue. Overall, Claude Code seems to be a highly valued tool in the crypto community.","data":[4,6,6,10,10,6,14,5,78,1,20,5,7,5,6,8,4,12,3,10,10,10,8,15,3,13,4,7,10,6,5,10,9,9,5,7,11,5,2,11,3,4,9,9,6,13,13,8,4,8,22,7,7,3,9]},{"label":"Food","topics":"protein,eggs,beef,meat,sugar","description":"The messages from twitter mainly focus on food and cooking, with discussions about various dishes, ingredients, and cooking techniques. There are mentions of omelettes, potato chips, tomato pesto, bread, chicken with glaze, and even a comparison between Ronald McDonald and the Colonel. Additionally, there are references to different cuisines such as Korean, Mexican, and Chinese. The messages also touch on health and nutrition, with mentions of yogurt, granola, and government food recommendations. Overall, the conversations revolve around food, cooking, and culinary experiences.","data":[3,4,7,19,8,12,11,11,8,41,3,7,16,27,5,11,8,6,5,8,14,8,11,7,5,5,11,3,10,10,7,8,6,10,10,8,4,8,8,11,6,4,5,11,11,7,7,1,3,8,10,6,9,6,3]},{"label":"Twitter banned InfoFi","topics":"infofi,fi,cookie,api,spam","description":"The messages from twitter suggest that InfoFi is officially dead, with many users celebrating its demise. The end of InfoFi is seen as a positive development, with some users glad to see it go due to issues with bots and low-quality content. The decision to ban InfoFi platforms from rewarding users for posting has caused a significant impact on the industry, leading to speculation about the future of similar platforms. Some users are already looking towards new opportunities and ways to monetize their content without relying on InfoFi. Overall, the general sentiment is that the end of InfoFi is a step in the right direction towards promoting quality content and real creators on social media platforms.","data":[4,9,14,14,6,1,3,9,3,9,4,13,8,16,5,10,7,10,4,10,13,4,7,39,21,5,10,8,4,8,5,3,15,5,6,7,8,8,7,19,6,1,7,15,3,3,7,11,6,4,7,2,6,4,3]},{"label":"Twitter algo outrage","topics":"ct,nikita,rage,bait,fk","description":"The messages from twitter suggest that there is a lot of discussion and controversy surrounding CT (Crypto Twitter) and its current state. Some key points mentioned include:\n\n- There is a call for the revival of CT, with some users expressing disappointment in its current state.\n- There are mixed opinions on Nikita, with some praising him for fixing CT and others criticizing him for the changes made.\n- There is frustration with the algorithm manipulation on CT, leading to decreased engagement and viewership.\n- Some users feel that CT is no longer as fun or engaging as it used to be, with concerns about the content and layout.\n- There are accusations of racism and rage bait on CT, with users expressing disappointment in the current state of the platform.\n- There is a call for recognition based on merit rather than popularity on CT.\n- Some users are critical of the boosting of certain posts on CT, particularly those related to Zcash.\n- Overall, there seems to be a sense of disillusionment and frustration among users regarding the current state of CT.","data":[3,18,4,7,7,7,8,2,6,4,23,18,2,7,4,12,8,5,6,8,11,6,10,6,17,4,8,4,13,8,4,8,32,7,8,7,4,7,6,8,13,7,3,4,8,6,7,9,4,10,10,5,5,4,3]},{"label":"Gaming","topics":"gaming,games,chess,studios,gameplay","description":"The Checkmate Masterclass chess match is not mentioned in the messages provided from twitter.","data":[5,4,0,5,11,5,12,15,7,4,12,5,9,5,9,6,5,47,6,7,6,7,3,4,3,4,4,4,11,5,6,6,9,7,5,24,8,3,7,4,4,1,5,3,6,7,5,3,4,5,9,4,14,3,6]},{"label":"Jerome Powell investigation","topics":"jerome,subpoenas,powells,powell,prosecutors","description":"Chair Powell's response to the criminal investigation opened by Federal prosecutors seems to be focused on defending the independence of the Federal Reserve. He stated that the threat of criminal charges is a consequence of the Fed setting rates based on what will serve the public best, rather than following political preferences. This response indicates that Powell is standing firm in his position and is not willing to bow to political pressure, particularly from President Trump. The investigation has drawn backlash from former Federal Reserve and Treasury officials, as well as current members of Congress, highlighting the importance of maintaining the Fed's independence in setting monetary policy based on economic conditions rather than political influence.","data":[7,10,2,7,1,3,2,13,2,6,14,4,5,2,3,10,3,6,4,3,6,2,5,17,12,4,4,2,5,6,2,3,8,7,8,8,20,7,3,14,24,12,7,2,7,11,6,16,1,7,4,10,7,3,3]},{"label":"Extreme winter","topics":"winter,snow,sun,cold,mountains","description":"The messages from twitter cover a wide range of topics related to weather, nature, and extreme conditions. There are mentions of snow, ice, rain, extreme heat, and cold temperatures. The messages also touch on cultural celebrations related to the winter solstice and the changing of seasons.\n\nOne key theme that emerges is the contrast between different weather conditions and how they impact daily life, from snow causing chaos in Scotland to extreme heat in Rio de Janeiro. The messages also highlight the beauty of nature, such as the aurora glass igloo in Lapland and the suns appearing on the horizon due to a sundog.\n\nOverall, the messages reflect a fascination with the natural world and how different cultures and communities experience and adapt to various weather phenomena.","data":[8,3,3,4,5,13,5,7,17,5,7,8,7,2,4,5,3,8,3,2,3,5,15,6,3,6,5,4,9,2,6,11,7,9,9,5,6,13,6,4,2,8,10,16,6,18,3,4,6,1,1,3,8,17,6]},{"label":"WhiteWhale memecoin","topics":"whitewhale,whale,200m,010,150m","description":"The key topics discussed in the messages from twitter about $whitewhale include:\n- The significant increase in market cap to 140m and 200m, leading to discussions about its potential and success in 2026.\n- Concerns about supply control and the risk of a total crash due to one wallet holding a large percentage of the supply.\n- Speculation about the future performance of $whitewhale on different exchanges and potential gains.\n- Comparisons to other tokens and discussions about the success and potential of $whitewhale in the crypto market.\n- Calls for caution and warnings about potential risks and the need for a deep dive into the token's background and narrative.\n- Excitement and anticipation about potential gains and opportunities for investors in $whitewhale.\n- Discussions about the impact of whales and large holders on the token's price and market dynamics.\n- Speculation about the future performance and growth potential of $whitewhale in the crypto industry.","data":[16,3,7,4,9,5,5,5,5,4,4,1,4,4,3,4,6,3,4,2,9,12,4,2,5,9,7,9,6,9,5,7,8,5,6,5,6,6,6,7,5,9,10,7,3,6,4,4,11,10,6,5,6,30,5]},{"label":"Bitcoin is the future","topics":"bitcoiners,fiat,scarce,fixes,monetary","description":"The messages from twitter highlight the importance and value of Bitcoin as \"freedom money\" and a powerful asset. Bitcoin is portrayed as a solution to the issues of fiat currency and government control. The messages emphasize the benefits of owning and investing in Bitcoin, as well as the potential for financial growth and empowerment. The community surrounding Bitcoin is described as dedicated and patient, with a strong belief in the value and potential of the cryptocurrency. Overall, the messages convey a sense of optimism and confidence in Bitcoin as a revolutionary financial tool.","data":[1,3,4,9,8,27,5,4,2,9,12,6,4,4,6,11,16,6,2,5,6,4,6,7,9,3,2,2,3,5,10,7,7,3,11,7,6,6,4,5,3,9,4,8,5,3,3,6,2,14,6,8,7,5,0]},{"label":"ICE violent incidents","topics":"officer,gun,car,weapon,vehicle","description":"The messages from twitter are discussing a controversial incident involving law enforcement officers and a civilian in a car. The messages touch on topics such as police brutality, self-defense against law enforcement, and the use of deadly force. There is also mention of conflicting orders given by officers during the incident, as well as the legal implications of using a car as a deadly weapon. The messages highlight the need for a fair investigation into the incident and raise questions about the actions of both the officers and the civilian involved. Overall, the messages reflect a heated debate surrounding law enforcement practices and the rights of individuals in interactions with the police.","data":[5,5,4,9,3,6,8,14,7,11,2,7,10,10,5,7,3,5,2,3,7,9,6,7,6,5,7,3,6,6,1,5,16,7,6,12,8,5,4,6,6,5,7,3,9,4,2,7,2,5,4,9,5,8,3]},{"label":"Privacy in crypto","topics":"confidential,privacy,encryption,anonymity,0xmiden","description":"The key topic discussed in the messages from twitter is privacy in the crypto industry. The messages highlight the importance of privacy in the digital world, the risks of lack of privacy, and the need for privacy tools and protocols in blockchain transactions. The messages also touch upon the difference between privacy and secrecy, the challenges of maintaining privacy in public blockchains, and the significance of privacy as a feature rather than a niche. Overall, the messages emphasize the power and necessity of privacy in the crypto industry.","data":[7,9,6,3,4,7,6,3,7,6,11,5,7,5,7,2,3,5,2,3,3,5,5,4,13,4,4,5,8,7,3,4,3,3,8,5,57,1,4,2,5,7,11,1,3,5,3,8,8,2,7,1,8,5,4]},{"label":"DeFi","topics":"defi,katana,lending,heyelsaai,alturax","description":"The key topics currently discussed in the messages from twitter are:\n\n1. DeFi infrastructure and its importance for the growth of the industry\n2. The role of aggregators in DeFi and their impact on yield\n3. The evolution and progress of DeFi since 2021\n4. The challenges and complexities of managing multiple DeFi platforms and transactions\n5. The emergence of new DeFi projects and platforms, such as AeroNavigator, Lombard Finance, JumperExchange, and Aborean\n6. The need for automation and simplification in DeFi processes\n7. The interconnected nature of the DeFi ecosystem and the importance of a strong foundation for its success\n\nOverall, the messages highlight the ongoing innovation and development within the DeFi industry, as well as the challenges and opportunities that come with it.","data":[1,1,6,4,6,4,6,5,4,5,3,11,8,2,7,11,5,5,2,9,8,6,7,7,11,7,8,10,11,7,3,10,7,7,10,9,10,4,6,6,1,8,7,3,2,3,6,6,3,4,12,3,3,6,7]},{"label":"AFC championship","topics":"playoff,nfl,patriots,chargers,eagles","description":"The key topics discussed in the messages from twitter are:\n1. AFC Championship game predictions and matchups\n2. New England Patriots' success in the Super Bowl\n3. Potential outcomes of the Packers vs. Bears game\n4. Betting on NFL games and teams\n5. Impact of the 49ers' performance on the AFC teams\n6. Wild Card finale matchups and predictions\n7. Tailgating and drink options for game watching.","data":[17,2,4,12,4,7,3,5,4,3,2,7,2,10,3,12,5,8,5,11,13,0,5,5,5,0,2,5,4,6,6,6,5,6,6,8,2,4,2,4,7,5,3,2,3,8,9,6,3,3,1,8,3,12,6]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-106.ts b/priv/repo/major_topics_seed/data-106.ts deleted file mode 100644 index f55e10126c..0000000000 --- a/priv/repo/major_topics_seed/data-106.ts +++ /dev/null @@ -1,268 +0,0 @@ -export const NARRATIVES = { - labels: [ - '08.01.26', - '09.01.26', - '09.01.26', - '09.01.26', - '09.01.26', - '09.01.26', - '09.01.26', - '09.01.26', - '10.01.26', - '10.01.26', - '10.01.26', - '10.01.26', - '10.01.26', - '10.01.26', - '10.01.26', - '10.01.26', - '11.01.26', - '11.01.26', - '11.01.26', - '11.01.26', - '11.01.26', - '11.01.26', - '11.01.26', - '11.01.26', - '12.01.26', - '12.01.26', - '12.01.26', - '12.01.26', - '12.01.26', - '12.01.26', - '12.01.26', - '12.01.26', - '13.01.26', - '13.01.26', - '13.01.26', - '13.01.26', - '13.01.26', - '13.01.26', - '13.01.26', - '13.01.26', - '14.01.26', - '14.01.26', - '14.01.26', - '14.01.26', - '14.01.26', - '14.01.26', - '14.01.26', - '14.01.26', - '15.01.26', - '15.01.26', - '15.01.26', - '15.01.26', - '15.01.26', - '15.01.26', - '15.01.26', - ], - datasets: [ - { - label: 'BTC price', - topics: '94k,liquidated,95k,liquidations,shorts', - description: - 'The key topic currently discussed in the crypto community on Twitter is the potential breakout attempt of Bitcoin this Sunday. Traders are analyzing various indicators such as resistance levels, MACD crossovers, and historical price patterns to determine if Bitcoin will break above key levels such as $100,000 or if it will face a rejection. There is optimism among traders, with some pointing out bullish signs such as higher lows, spot buying driving the price action, and a potential inverse head and shoulders pattern forming. Overall, the sentiment is positive, with many expecting Bitcoin to continue its upward trajectory and potentially reach new all-time highs.', - data: [ - 53, 16, 28, 27, 23, 109, 58, 45, 62, 53, 32, 47, 40, 32, 33, 30, 37, 16, 23, 23, 22, 89, 38, - 21, 32, 15, 78, 69, 37, 23, 35, 30, 24, 34, 27, 32, 51, 63, 58, 54, 18, 40, 89, 41, 41, 49, - 51, 37, 43, 33, 46, 22, 60, 10, 31, - ], - }, - { - label: 'CLARITY act', - topics: 'markup,senate,armstrong,bipartisan,senators', - description: - 'The messages from twitter highlight the ongoing discussions and debates surrounding regulatory clarity in the crypto industry. There are mixed opinions on the proposed Clarity Act, with some seeing it as a positive step towards clearer rules and long-awaited regulatory clarity, while others criticize it for potentially restricting innovation and giving too much power to regulatory bodies like the SEC.\n\nCoinbase CEO Brian Armstrong has expressed concerns about the current draft of the bill, stating that it may do more harm than good. However, other major players in the industry, such as Kraken, Ripple, Paradigm, and Circle, are still backing the bill and pushing for its passage.\n\nOverall, the industry is eagerly awaiting regulatory clarity to provide confidence and stability for institutions and investors. The Clarity Act is seen as a crucial step towards achieving this goal, despite the ongoing debates and disagreements within the community.', - data: [ - 7, 13, 15, 7, 14, 3, 16, 22, 30, 16, 45, 11, 26, 14, 14, 7, 14, 7, 5, 7, 8, 8, 5, 32, 7, 21, - 4, 8, 11, 31, 9, 10, 8, 9, 4, 18, 9, 31, 32, 15, 40, 38, 10, 5, 14, 17, 8, 6, 1, 7, 16, 23, - 13, 14, 2, - ], - }, - { - label: 'Precious metals', - topics: 'precious,silver,metals,copper,metal', - description: - 'The key topics currently discussed in the crypto industry on social media include the surge in silver prices, with predictions of it potentially reaching infinity and hitting new all-time highs. There is also discussion about gold hitting record highs and the potential for a final melt-up move in silver to reach $200. Additionally, there is speculation about the impact of global uncertainty on precious metals and the potential for a great reset. Traders are also discussing the performance of silver mining stocks and the overall strong performance of precious metals in recent history. Some are cautioning about click bait targets and the importance of knowing when to exit trades. Overall, there is a mix of excitement and caution surrounding the current trends in the precious metals market.', - data: [ - 14, 8, 9, 8, 10, 22, 16, 8, 6, 20, 11, 7, 6, 4, 6, 8, 9, 4, 12, 30, 5, 58, 7, 4, 6, 6, 7, 4, - 15, 16, 11, 11, 8, 26, 4, 9, 43, 20, 13, 8, 3, 9, 56, 21, 14, 25, 7, 17, 18, 3, 5, 6, 7, 4, - 11, - ], - }, - { - label: 'Memecoins', - topics: 'mememaxfi,mememax,memes,memecoins,meme', - description: - 'The messages from twitter mainly focus on the discussion of meme coins in the crypto industry. There is a lot of excitement and interest in trading meme coins, with mentions of specific meme coins like FARTCOIN and PUMP. The concept of meme coins being profitable is also discussed, with questions about their potential profitability in the current market. Additionally, there is a comparison between memes and NFTs in terms of their impact on the crypto industry. The messages also touch on the idea of holding meme coins until 2027 and the potential for meme coins to be replaced by more fundamental aspects of the market. Overall, the sentiment towards meme coins in the messages is positive, with a focus on their potential for high returns and the excitement surrounding meme coin trading.', - data: [ - 5, 10, 4, 8, 16, 9, 7, 8, 19, 2, 6, 9, 7, 9, 5, 21, 9, 14, 9, 17, 4, 12, 6, 6, 13, 5, 11, - 13, 9, 169, 9, 13, 11, 10, 10, 16, 9, 12, 6, 5, 5, 14, 12, 9, 8, 4, 10, 15, 11, 12, 12, 10, - 6, 9, 10, - ], - }, - { - label: 'XMR', - topics: 'monero,xmr,privacyfocused,520,xom', - description: - "The key topics discussed in the messages from twitter regarding Monero ($XMR) include:\n1. Monero surpassing its all-time low of $0.216 a few years ago and reaching a record high of $642.\n2. Monero's price increase of 3x since September.\n3. Monero being referred to as a privacy coin and a digital financial protest.\n4. Speculation on Monero's price potential, with predictions ranging from $700 to $900.\n5. Monero being described as the ultimate unicorn asset with utility, privacy, and potential for significant upside.\n6. The excitement and momentum surrounding Monero's price discovery and potential for further growth.\n7. The success and resilience of Monero as a project, remaining private and un-trackable despite challenges faced by other privacy coins.\n8. Calls for using newfound wealth from Monero investments for good purposes.\n9. Personal anecdotes and experiences of individuals benefiting financially from investing in Monero.\n10. Recommendations to actively research and analyze crypto market trends for profitable trading opportunities.", - data: [ - 9, 8, 5, 11, 13, 25, 10, 12, 22, 13, 14, 5, 12, 9, 11, 17, 13, 5, 10, 8, 6, 32, 3, 7, 9, 7, - 9, 14, 9, 10, 26, 17, 10, 7, 10, 3, 30, 21, 9, 10, 7, 5, 11, 14, 10, 21, 7, 16, 9, 7, 8, 11, - 8, 5, 20, - ], - }, - { - label: 'AI', - topics: 'bottleneck,replace,productivity,humans,perceptronntwk', - description: - 'The messages from twitter discuss various aspects of AI in the crypto industry. Some key topics mentioned include the evolution of AI from traditional to synthetic intelligence, the role of AI in system design and development, the potential impact of AI on job displacement, and the importance of human input in refining AI-generated content. Additionally, there is a mention of AI-driven insight in HR compliance and the potential for AI to be connected to the human brain. The messages also touch on the idea of AI being a decentralizing force and the need for businesses to be prepared for AI transformation. Overall, the discussions highlight the complex and evolving relationship between AI and the crypto industry.', - data: [ - 9, 44, 12, 11, 20, 9, 6, 6, 5, 15, 11, 10, 13, 7, 16, 4, 6, 8, 8, 10, 10, 5, 17, 18, 14, 11, - 13, 9, 8, 5, 9, 16, 4, 12, 16, 13, 13, 7, 13, 21, 9, 14, 6, 3, 4, 16, 16, 13, 10, 4, 14, 4, - 5, 14, 10, - ], - }, - { - label: 'Trump', - topics: 'mortgage,fannie,affordability,housing,bonds', - description: - "The messages from twitter discuss various aspects related to Donald Trump and his impact on the economy, housing market, and cryptocurrency industry. Trump is portrayed as making bold statements and taking actions that could potentially have significant effects on various sectors. Some of the key points mentioned include Trump's desire to lower interest rates, his plans to ban large institutional investors from buying single-family homes, his family's involvement in the crypto industry, and his stance on Bitcoin. Additionally, there are discussions about Trump's impact on the financial industrial complex, his potential influence on monetary policy, and his approach to geopolitics. Overall, the messages reflect a mix of opinions on Trump's policies and their potential implications.", - data: [ - 5, 7, 14, 17, 13, 5, 7, 8, 4, 10, 16, 8, 16, 13, 11, 12, 13, 1, 12, 10, 9, 10, 8, 6, 13, 8, - 11, 9, 9, 14, 10, 7, 6, 10, 4, 15, 17, 3, 6, 9, 35, 13, 9, 6, 8, 16, 12, 15, 2, 28, 6, 16, - 9, 10, 11, - ], - }, - { - label: 'Claude Cowork', - topics: 'cowork,claude,installed,code,opus', - description: - 'Summary:\nThe messages from twitter discuss the popularity and versatility of Claude Code in the crypto industry. People are impressed with its uses and capabilities, with some even joking about replacing programmers with Claude Code. There are mentions of using Claude Code for trading bots and the success of Claude Code in generating revenue. Overall, Claude Code seems to be a highly valued tool in the crypto community.', - data: [ - 4, 6, 6, 10, 10, 6, 14, 5, 78, 1, 20, 5, 7, 5, 6, 8, 4, 12, 3, 10, 10, 10, 8, 15, 3, 13, 4, - 7, 10, 6, 5, 10, 9, 9, 5, 7, 11, 5, 2, 11, 3, 4, 9, 9, 6, 13, 13, 8, 4, 8, 22, 7, 7, 3, 9, - ], - }, - { - label: 'Food', - topics: 'protein,eggs,beef,meat,sugar', - description: - 'The messages from twitter mainly focus on food and cooking, with discussions about various dishes, ingredients, and cooking techniques. There are mentions of omelettes, potato chips, tomato pesto, bread, chicken with glaze, and even a comparison between Ronald McDonald and the Colonel. Additionally, there are references to different cuisines such as Korean, Mexican, and Chinese. The messages also touch on health and nutrition, with mentions of yogurt, granola, and government food recommendations. Overall, the conversations revolve around food, cooking, and culinary experiences.', - data: [ - 3, 4, 7, 19, 8, 12, 11, 11, 8, 41, 3, 7, 16, 27, 5, 11, 8, 6, 5, 8, 14, 8, 11, 7, 5, 5, 11, - 3, 10, 10, 7, 8, 6, 10, 10, 8, 4, 8, 8, 11, 6, 4, 5, 11, 11, 7, 7, 1, 3, 8, 10, 6, 9, 6, 3, - ], - }, - { - label: 'Twitter banned InfoFi', - topics: 'infofi,fi,cookie,api,spam', - description: - 'The messages from twitter suggest that InfoFi is officially dead, with many users celebrating its demise. The end of InfoFi is seen as a positive development, with some users glad to see it go due to issues with bots and low-quality content. The decision to ban InfoFi platforms from rewarding users for posting has caused a significant impact on the industry, leading to speculation about the future of similar platforms. Some users are already looking towards new opportunities and ways to monetize their content without relying on InfoFi. Overall, the general sentiment is that the end of InfoFi is a step in the right direction towards promoting quality content and real creators on social media platforms.', - data: [ - 4, 9, 14, 14, 6, 1, 3, 9, 3, 9, 4, 13, 8, 16, 5, 10, 7, 10, 4, 10, 13, 4, 7, 39, 21, 5, 10, - 8, 4, 8, 5, 3, 15, 5, 6, 7, 8, 8, 7, 19, 6, 1, 7, 15, 3, 3, 7, 11, 6, 4, 7, 2, 6, 4, 3, - ], - }, - { - label: 'Twitter algo outrage', - topics: 'ct,nikita,rage,bait,fk', - description: - 'The messages from twitter suggest that there is a lot of discussion and controversy surrounding CT (Crypto Twitter) and its current state. Some key points mentioned include:\n\n- There is a call for the revival of CT, with some users expressing disappointment in its current state.\n- There are mixed opinions on Nikita, with some praising him for fixing CT and others criticizing him for the changes made.\n- There is frustration with the algorithm manipulation on CT, leading to decreased engagement and viewership.\n- Some users feel that CT is no longer as fun or engaging as it used to be, with concerns about the content and layout.\n- There are accusations of racism and rage bait on CT, with users expressing disappointment in the current state of the platform.\n- There is a call for recognition based on merit rather than popularity on CT.\n- Some users are critical of the boosting of certain posts on CT, particularly those related to Zcash.\n- Overall, there seems to be a sense of disillusionment and frustration among users regarding the current state of CT.', - data: [ - 3, 18, 4, 7, 7, 7, 8, 2, 6, 4, 23, 18, 2, 7, 4, 12, 8, 5, 6, 8, 11, 6, 10, 6, 17, 4, 8, 4, - 13, 8, 4, 8, 32, 7, 8, 7, 4, 7, 6, 8, 13, 7, 3, 4, 8, 6, 7, 9, 4, 10, 10, 5, 5, 4, 3, - ], - }, - { - label: 'Gaming', - topics: 'gaming,games,chess,studios,gameplay', - description: - 'The Checkmate Masterclass chess match is not mentioned in the messages provided from twitter.', - data: [ - 5, 4, 0, 5, 11, 5, 12, 15, 7, 4, 12, 5, 9, 5, 9, 6, 5, 47, 6, 7, 6, 7, 3, 4, 3, 4, 4, 4, 11, - 5, 6, 6, 9, 7, 5, 24, 8, 3, 7, 4, 4, 1, 5, 3, 6, 7, 5, 3, 4, 5, 9, 4, 14, 3, 6, - ], - }, - { - label: 'Jerome Powell investigation', - topics: 'jerome,subpoenas,powells,powell,prosecutors', - description: - "Chair Powell's response to the criminal investigation opened by Federal prosecutors seems to be focused on defending the independence of the Federal Reserve. He stated that the threat of criminal charges is a consequence of the Fed setting rates based on what will serve the public best, rather than following political preferences. This response indicates that Powell is standing firm in his position and is not willing to bow to political pressure, particularly from President Trump. The investigation has drawn backlash from former Federal Reserve and Treasury officials, as well as current members of Congress, highlighting the importance of maintaining the Fed's independence in setting monetary policy based on economic conditions rather than political influence.", - data: [ - 7, 10, 2, 7, 1, 3, 2, 13, 2, 6, 14, 4, 5, 2, 3, 10, 3, 6, 4, 3, 6, 2, 5, 17, 12, 4, 4, 2, 5, - 6, 2, 3, 8, 7, 8, 8, 20, 7, 3, 14, 24, 12, 7, 2, 7, 11, 6, 16, 1, 7, 4, 10, 7, 3, 3, - ], - }, - { - label: 'Extreme winter', - topics: 'winter,snow,sun,cold,mountains', - description: - 'The messages from twitter cover a wide range of topics related to weather, nature, and extreme conditions. There are mentions of snow, ice, rain, extreme heat, and cold temperatures. The messages also touch on cultural celebrations related to the winter solstice and the changing of seasons.\n\nOne key theme that emerges is the contrast between different weather conditions and how they impact daily life, from snow causing chaos in Scotland to extreme heat in Rio de Janeiro. The messages also highlight the beauty of nature, such as the aurora glass igloo in Lapland and the suns appearing on the horizon due to a sundog.\n\nOverall, the messages reflect a fascination with the natural world and how different cultures and communities experience and adapt to various weather phenomena.', - data: [ - 8, 3, 3, 4, 5, 13, 5, 7, 17, 5, 7, 8, 7, 2, 4, 5, 3, 8, 3, 2, 3, 5, 15, 6, 3, 6, 5, 4, 9, 2, - 6, 11, 7, 9, 9, 5, 6, 13, 6, 4, 2, 8, 10, 16, 6, 18, 3, 4, 6, 1, 1, 3, 8, 17, 6, - ], - }, - { - label: 'WhiteWhale memecoin', - topics: 'whitewhale,whale,200m,010,150m', - description: - "The key topics discussed in the messages from twitter about $whitewhale include:\n- The significant increase in market cap to 140m and 200m, leading to discussions about its potential and success in 2026.\n- Concerns about supply control and the risk of a total crash due to one wallet holding a large percentage of the supply.\n- Speculation about the future performance of $whitewhale on different exchanges and potential gains.\n- Comparisons to other tokens and discussions about the success and potential of $whitewhale in the crypto market.\n- Calls for caution and warnings about potential risks and the need for a deep dive into the token's background and narrative.\n- Excitement and anticipation about potential gains and opportunities for investors in $whitewhale.\n- Discussions about the impact of whales and large holders on the token's price and market dynamics.\n- Speculation about the future performance and growth potential of $whitewhale in the crypto industry.", - data: [ - 16, 3, 7, 4, 9, 5, 5, 5, 5, 4, 4, 1, 4, 4, 3, 4, 6, 3, 4, 2, 9, 12, 4, 2, 5, 9, 7, 9, 6, 9, - 5, 7, 8, 5, 6, 5, 6, 6, 6, 7, 5, 9, 10, 7, 3, 6, 4, 4, 11, 10, 6, 5, 6, 30, 5, - ], - }, - { - label: 'Bitcoin is the future', - topics: 'bitcoiners,fiat,scarce,fixes,monetary', - description: - 'The messages from twitter highlight the importance and value of Bitcoin as "freedom money" and a powerful asset. Bitcoin is portrayed as a solution to the issues of fiat currency and government control. The messages emphasize the benefits of owning and investing in Bitcoin, as well as the potential for financial growth and empowerment. The community surrounding Bitcoin is described as dedicated and patient, with a strong belief in the value and potential of the cryptocurrency. Overall, the messages convey a sense of optimism and confidence in Bitcoin as a revolutionary financial tool.', - data: [ - 1, 3, 4, 9, 8, 27, 5, 4, 2, 9, 12, 6, 4, 4, 6, 11, 16, 6, 2, 5, 6, 4, 6, 7, 9, 3, 2, 2, 3, - 5, 10, 7, 7, 3, 11, 7, 6, 6, 4, 5, 3, 9, 4, 8, 5, 3, 3, 6, 2, 14, 6, 8, 7, 5, 0, - ], - }, - { - label: 'ICE violent incidents', - topics: 'officer,gun,car,weapon,vehicle', - description: - 'The messages from twitter are discussing a controversial incident involving law enforcement officers and a civilian in a car. The messages touch on topics such as police brutality, self-defense against law enforcement, and the use of deadly force. There is also mention of conflicting orders given by officers during the incident, as well as the legal implications of using a car as a deadly weapon. The messages highlight the need for a fair investigation into the incident and raise questions about the actions of both the officers and the civilian involved. Overall, the messages reflect a heated debate surrounding law enforcement practices and the rights of individuals in interactions with the police.', - data: [ - 5, 5, 4, 9, 3, 6, 8, 14, 7, 11, 2, 7, 10, 10, 5, 7, 3, 5, 2, 3, 7, 9, 6, 7, 6, 5, 7, 3, 6, - 6, 1, 5, 16, 7, 6, 12, 8, 5, 4, 6, 6, 5, 7, 3, 9, 4, 2, 7, 2, 5, 4, 9, 5, 8, 3, - ], - }, - { - label: 'Privacy in crypto', - topics: 'confidential,privacy,encryption,anonymity,0xmiden', - description: - 'The key topic discussed in the messages from twitter is privacy in the crypto industry. The messages highlight the importance of privacy in the digital world, the risks of lack of privacy, and the need for privacy tools and protocols in blockchain transactions. The messages also touch upon the difference between privacy and secrecy, the challenges of maintaining privacy in public blockchains, and the significance of privacy as a feature rather than a niche. Overall, the messages emphasize the power and necessity of privacy in the crypto industry.', - data: [ - 7, 9, 6, 3, 4, 7, 6, 3, 7, 6, 11, 5, 7, 5, 7, 2, 3, 5, 2, 3, 3, 5, 5, 4, 13, 4, 4, 5, 8, 7, - 3, 4, 3, 3, 8, 5, 57, 1, 4, 2, 5, 7, 11, 1, 3, 5, 3, 8, 8, 2, 7, 1, 8, 5, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,katana,lending,heyelsaai,alturax', - description: - 'The key topics currently discussed in the messages from twitter are:\n\n1. DeFi infrastructure and its importance for the growth of the industry\n2. The role of aggregators in DeFi and their impact on yield\n3. The evolution and progress of DeFi since 2021\n4. The challenges and complexities of managing multiple DeFi platforms and transactions\n5. The emergence of new DeFi projects and platforms, such as AeroNavigator, Lombard Finance, JumperExchange, and Aborean\n6. The need for automation and simplification in DeFi processes\n7. The interconnected nature of the DeFi ecosystem and the importance of a strong foundation for its success\n\nOverall, the messages highlight the ongoing innovation and development within the DeFi industry, as well as the challenges and opportunities that come with it.', - data: [ - 1, 1, 6, 4, 6, 4, 6, 5, 4, 5, 3, 11, 8, 2, 7, 11, 5, 5, 2, 9, 8, 6, 7, 7, 11, 7, 8, 10, 11, - 7, 3, 10, 7, 7, 10, 9, 10, 4, 6, 6, 1, 8, 7, 3, 2, 3, 6, 6, 3, 4, 12, 3, 3, 6, 7, - ], - }, - { - label: 'AFC championship', - topics: 'playoff,nfl,patriots,chargers,eagles', - description: - "The key topics discussed in the messages from twitter are:\n1. AFC Championship game predictions and matchups\n2. New England Patriots' success in the Super Bowl\n3. Potential outcomes of the Packers vs. Bears game\n4. Betting on NFL games and teams\n5. Impact of the 49ers' performance on the AFC teams\n6. Wild Card finale matchups and predictions\n7. Tailgating and drink options for game watching.", - data: [ - 17, 2, 4, 12, 4, 7, 3, 5, 4, 3, 2, 7, 2, 10, 3, 12, 5, 8, 5, 11, 13, 0, 5, 5, 5, 0, 2, 5, 4, - 6, 6, 6, 5, 6, 6, 8, 2, 4, 2, 4, 7, 5, 3, 2, 3, 8, 9, 6, 3, 3, 1, 8, 3, 12, 6, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-107.json b/priv/repo/major_topics_seed/data-107.json deleted file mode 100644 index 009016cac0..0000000000 --- a/priv/repo/major_topics_seed/data-107.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["15.01.26","16.01.26","16.01.26","16.01.26","16.01.26","16.01.26","16.01.26","16.01.26","17.01.26","17.01.26","17.01.26","17.01.26","17.01.26","17.01.26","17.01.26","17.01.26","18.01.26","18.01.26","18.01.26","18.01.26","18.01.26","18.01.26","18.01.26","18.01.26","19.01.26","19.01.26","19.01.26","19.01.26","19.01.26","19.01.26","19.01.26","19.01.26","20.01.26","20.01.26","20.01.26","20.01.26","20.01.26","20.01.26","20.01.26","20.01.26","21.01.26","21.01.26","21.01.26","21.01.26","21.01.26","21.01.26","21.01.26","21.01.26","22.01.26","22.01.26","22.01.26","22.01.26","22.01.26","22.01.26","22.01.26"],"datasets":[{"label":"AI ","topics":"agi,predicts,productivity,aipowered,agentic","description":"The key topic discussed in the messages from twitter is the impact of AI on the crypto industry. The messages highlight how AI tools are reducing the latency between ideas and products, potentially threatening crypto traders with increased instability. There is a focus on how AI is transforming various industries, including service businesses, and the convergence of software and service multiples. The messages also touch upon the intersection of AI and crypto, with examples of companies providing infrastructure for this shift. Additionally, there is a discussion on the implications of AI on knowledge acquisition and security, as well as the potential winners and losers in the AI revolution. Overall, the messages emphasize the transformative power of AI in the crypto industry and beyond.","data":[20,77,21,22,18,18,28,12,12,33,26,12,21,21,25,19,11,25,17,21,11,14,17,35,27,30,16,17,15,20,10,24,20,10,29,17,35,28,23,34,11,27,17,17,10,24,19,29,21,30,13,19,19,13,16]},{"label":"Iran protests","topics":"iranian,protests,iran,islamic,protesters","description":"The messages from twitter are focused on the ongoing protests and unrest in Iran. The youth are protesting against the Iranian regime, with reports of internet blackouts, violent crackdowns, and clashes with security forces. There are mentions of strikes on Tehran, attacks on state TV, and predictions of potential US intervention. The messages also highlight the tragic deaths and torture of protesters, including a 3-year-old child. Overall, the situation in Iran is described as a nightmare, with calls for freedom, democracy, and international support.","data":[8,11,12,15,5,14,21,7,23,18,10,5,23,3,12,14,10,5,4,4,5,12,6,12,16,10,7,4,5,15,6,14,23,12,23,11,14,34,27,27,24,18,26,11,11,4,18,11,13,7,8,29,14,8,16]},{"label":"Bitcoin adoption","topics":"bitcoiner,bitcoiners,fiat,bankers,scarcity","description":"The messages from twitter highlight the importance and potential of Bitcoin in the current financial landscape. There is a strong emphasis on the power and efficiency of Bitcoin as a form of money, with mentions of its borderless nature, security, decentralization, and resistance to inflation. The messages also touch on the idea that Bitcoin provides a credible exit from debasing fiat currencies and offers individuals the ability to opt out of traditional financial systems.\n\nThere is a call to action for individuals to trust in Bitcoin as a hedge against government and financial industry mistrust. The messages suggest that understanding Bitcoin is key to its successful adoption and that those who truly grasp its potential view it as more than just a small part of their portfolio.\n\nOverall, the messages convey a sense of optimism and belief in the transformative power of Bitcoin, with references to its potential to revolutionize the financial industry and provide individuals with a secure and efficient form of money.","data":[7,8,6,12,17,29,8,15,5,8,11,4,14,14,14,7,16,11,7,3,8,8,9,16,16,5,11,5,7,12,11,24,12,7,11,5,15,16,12,16,9,8,8,8,6,6,10,13,4,20,17,8,9,11,6]},{"label":"Memecoins","topics":"memes,memecoins,meme,memecoin,pepe","description":"The messages from twitter mainly focus on discussions about memecoins, meme trading, and the importance of community support in the crypto industry. There is also mention of specific memecoins such as $memes and $spsc, as well as the criteria for choosing a memecoin to invest in. The messages highlight the role of memes in shaping market sentiment and the appeal of memecoins due to their pure volatility and community-driven nature. Additionally, there is a mention of the White House posting memes daily and the potential impact on the market. Overall, the messages emphasize the significance of meme culture and community support in the crypto industry.","data":[9,6,5,5,16,9,10,7,14,3,5,9,8,11,5,8,7,5,4,4,10,2,17,8,8,9,14,3,11,5,142,17,17,11,10,7,4,3,7,9,2,13,9,6,3,10,7,6,7,12,5,10,9,4,4]},{"label":"BTC price","topics":"94k,retest,rejection,95k,ltf","description":"The recent rejection off the Bull Market Support Band does not bode well for Bitcoin, as it is currently facing resistance at key levels around $94.5k-$95.5k. The price is consolidating and holding above $94k support, but there is uncertainty whether it will continue higher or experience a deeper downside. Traders are looking for bullish confirmation signals such as a break and close above $91k to indicate a potential uptrend. Despite the recent pullback, the overall structure remains bullish, with Bitcoin still trading above key weekly support levels. The market sentiment is risk-on, with easing inflation expectations and strong momentum supporting the cryptocurrency. Traders are advised to watch for potential breakout or breakdown scenarios, as well as key levels such as $88k to $90k for further price action.","data":[6,4,7,10,10,29,15,7,7,11,6,17,4,10,7,19,11,3,4,7,2,11,22,5,14,4,11,11,21,5,3,10,8,2,4,10,16,19,18,15,5,5,11,6,7,19,11,8,9,7,24,7,14,3,9]},{"label":"China's economic expansion ","topics":"chinas,chinese,china,selfish,threatstatus","description":"Breaking down the messages from twitter, it is evident that there is a lot of discussion surrounding China and its impact on various aspects such as trade, energy strategy, debt levels, and technology. There are mentions of China's influence on metal prices, its relationship with other countries like the UK, and its involvement in espionage activities. Additionally, there are discussions about China's role in the global economy, potential adoption of cryptocurrencies like $ETH and $BTC, and its manufacturing practices. Overall, the messages highlight the complex and multifaceted nature of China's presence in the global landscape and the implications it has on various industries and economies.","data":[6,11,9,11,6,4,9,13,17,10,5,5,8,16,7,4,13,5,8,5,19,1,8,13,10,7,11,7,7,10,11,10,8,7,6,12,9,8,18,19,10,12,8,8,9,11,4,12,7,6,9,7,8,7,10]},{"label":"Middle east situation ","topics":"syria,fighters,forces,democratic,attacks","description":"The messages from twitter are focused on the ongoing conflict in Kurdish areas, particularly in Rojava, where Kurdish forces are facing attacks from various militias and jihadist groups. The messages highlight the resistance and solidarity of the Kurdish people, as well as the involvement of international actors such as the U.S. military and the Syrian government.\n\nKey topics discussed in the messages include:\n- Attacks on Kurdish areas by pro-government militias and Turkish-backed militias\n- Violations of ceasefire agreements by Syrian regime forces\n- Support and solidarity for the Kurdish people in Rojava\n- Resistance against ISIS and jihadist groups\n- Calls for unity and defense of the Rojava Revolution\n- Updates on the conflict in eastern Aleppo and the involvement of Syrian government troops\n\nOverall, the messages reflect the ongoing struggle and resilience of the Kurdish people in the face of external threats and attacks on their communities.","data":[8,14,18,15,8,13,6,8,13,15,6,10,11,3,9,6,29,2,5,1,13,4,3,8,13,13,3,2,3,13,20,6,2,15,23,6,6,8,9,14,2,5,4,9,14,9,11,9,8,2,1,6,6,7,4]},{"label":"Gaming","topics":"games,gamers,gaming,gameplay,game","description":"The key topics currently discussed in the crypto industry on social media include classic arcade gameplay mechanics, 16-bit video games, recommendations for games like Frogger and Snake, excitement for upcoming gaming releases, open world single player modes, real-time strategy games, unique gaming experiences, comparisons between different games, game development with AI, the evolution of games through updates and live ops, upcoming game releases like Forza Horizon 6, and the impact of classic video games on game culture.","data":[7,4,5,4,10,8,10,4,12,10,6,5,5,3,5,6,7,33,23,5,8,15,2,7,7,7,9,9,7,6,8,8,6,6,4,35,8,9,7,5,4,5,5,10,7,6,5,9,4,12,1,4,9,6,10]},{"label":"InfoFi ban by Twitter","topics":"infofi,yapping,yappers,kaito,api","description":"The messages from twitter suggest that InfoFi, a platform similar to OnlyFans but with photos of things or people you don't want to see, has been replaced by something worse. There are discussions about the death of InfoFi and the need for better tools to capture attention and reputation in the crypto industry. Some users reminisce about the early days of InfoFi and how it changed the game, while others criticize its misaligned incentives. Overall, there seems to be a mix of nostalgia, skepticism, and hope for the future of content creation in the crypto space.","data":[2,4,6,10,6,3,4,5,2,6,7,48,9,3,15,9,10,5,5,9,7,6,7,46,5,17,6,2,12,3,2,6,7,7,4,7,13,8,10,6,3,6,7,7,2,9,4,16,5,2,6,2,4,7,4]},{"label":"Bags app","topics":"bags,bagsapp,bag,finnbags,finn","description":"The messages from twitter suggest that there is a lot of discussion and activity surrounding the Bags app in the crypto industry. People are talking about the Bags app ecosystem heating up and debating whether or not to invest in Bags coins. There are mentions of low caps bags coins bleeding and the need to return to quality winners. Additionally, there are comments about the Bags meta and the potential for significant gains by investing in Bags coins. Some users are expressing concerns about the potential risks and fees associated with the Bags app, while others are excited about the opportunities it presents. Overall, it seems that the Bags app is a hot topic of conversation in the crypto community.","data":[3,11,11,66,10,7,7,7,17,5,5,5,9,6,2,10,6,10,6,3,8,10,8,5,5,17,6,9,8,10,12,2,4,9,2,2,3,12,3,6,3,6,3,12,4,7,6,10,4,6,4,2,5,4,9]},{"label":"Vibecoding ","topics":"claude,codex,instances,code,chrome","description":"The key topics discussed in the messages from twitter are:\n1. Amp (replacing Claude Code)\n2. Remote sessions with Amp\n3. Attention on Amp and Cowork\n4. Understanding Amp better than git work trees\n5. Visualization of Amp\n6. Archives and analysis of Amp sessions\n7. Getting started with Amp\n8. Subscription cleanse prompts\n9. Claude Code fetch tool for website summarization\n10. Building a commercial API for website summarization\n11. Leveraging Amp for productivity and financial dashboards\n12. Using Amp and Codex together\n\nOverall, the messages highlight the versatility and usefulness of Amp in various tasks and industries, as well as the potential for building new tools and APIs related to Amp.","data":[5,4,9,7,11,2,13,5,63,6,11,8,3,2,6,12,12,8,2,10,12,6,3,10,9,7,6,6,7,1,9,7,4,9,5,1,4,1,3,5,6,3,6,13,2,8,9,5,10,6,20,3,10,5,4]},{"label":"Superbowl","topics":"patriots,bowl,nfl,denver,championship","description":"The key topics discussed in the messages from twitter include:\n1. The controversial ruling of an interception in a game, leading to the end of the Bills' season.\n2. The dominance of either the New England Patriots or the Kansas City Chiefs in the AFC Championship game for the past 15 years.\n3. The unpredictability of calls such as holding and pass interference in football games.\n4. The excitement and anticipation surrounding the upcoming Super Bowl, with mentions of potential MVP candidates like Tom Brady.\n5. The disappointment and sympathy expressed for teams like the Bills and the 49ers after tough losses.\n6. The impressive viewership numbers for ESPN's telecast of the Texans-Patriots game.\n7. Speculation and analysis of player performances and coaching decisions in recent games.\n8. Excitement for the upcoming AFC Championship game and Super Bowl matchups.\n9. Criticism of the Buffalo Bills' performance and the challenges they face as a team.\n10. Optimism for teams like the Rams, Bears, and Seahawks in their future games.","data":[12,3,4,2,4,2,11,4,4,2,4,5,3,9,7,21,9,15,6,7,13,12,11,3,5,6,9,6,12,3,6,6,4,5,6,18,2,7,7,6,8,8,9,5,7,10,9,6,9,4,4,7,6,14,8]},{"label":"Israel - Palestine","topics":"israel,jews,gaza,jewish,genocide","description":"The messages from twitter contain a mix of anti-Semitic and anti-Israel sentiments, discussing topics such as the control of Israel and Palestine by the GCC, accusations of manipulation by Jewish individuals, and criticism of Israeli actions in Gaza. There are also mentions of the ongoing conflict in Gaza, with reports of ceasefire violations and casualties. Additionally, there are references to the rise of antisemitism globally and efforts to confront it. Overall, the messages reflect a range of opinions and emotions related to the Israel-Palestine conflict and broader issues of antisemitism.","data":[5,13,15,6,4,3,3,7,7,8,3,3,18,4,6,4,15,4,5,5,8,9,8,8,9,5,10,8,4,9,5,3,8,11,2,9,5,6,11,12,7,6,4,6,8,11,4,5,5,8,8,4,12,3,15]},{"label":"Whales","topics":"whitewhale,whale,whales,unusual,accumulating","description":"The messages from twitter indicate that there is significant activity among crypto whales, particularly in relation to $Whitewhale and other cryptocurrencies such as $BTC, $XRP, $ETH, and $HYPE. There are mentions of whales buying and accumulating large amounts of these cryptocurrencies, as well as making significant withdrawals and trades. The market dynamics are being reshaped by these whales, with some experiencing losses while others continue to accumulate despite declining prices. Overall, the presence and actions of whales are closely monitored and analyzed within the crypto community.","data":[6,2,4,5,2,9,15,10,6,5,1,2,5,8,4,6,11,2,2,4,5,4,11,4,1,4,1,5,9,7,5,2,5,7,7,1,2,10,2,5,5,7,3,5,2,12,2,7,6,6,1,3,4,115,4]},{"label":"Greenland ","topics":"invasion,denmark,troops,islands,bases","description":"The key topics currently being discussed in the messages from twitter regarding Greenland include the potential acquisition of Greenland by the USA, military exercises to defend Greenland, the involvement of Denmark and other countries in Greenland's security, the value of Greenland in terms of mineral rights, and the strategic importance of Greenland in the Arctic corridor. There is also mention of the European Union and the UK sending troops to Greenland, as well as discussions about Greenland's potential future under US control. Additionally, there are references to the financial implications of acquiring Greenland and the comparison between Greenland and Venezuela in terms of acquisition motives. Overall, the discussions highlight the geopolitical, economic, and strategic significance of Greenland in current global affairs.","data":[8,8,8,7,4,7,11,1,5,10,6,15,14,2,6,6,14,5,0,8,6,2,6,7,7,12,7,6,4,5,9,5,5,7,5,6,8,8,9,7,8,12,8,7,4,8,7,10,5,12,3,8,6,3,6]},{"label":"Canada","topics":"carney,canada,canadian,ccp,mark","description":"The messages from twitter suggest that there is a lot of discussion and speculation about Canada's relationship with China, particularly in terms of trade and alliances. Mark Carney, a prominent figure in Canadian politics, is mentioned multiple times in relation to these discussions. There are mentions of potential joint ventures with China, concerns about Canada's ability to defend itself, and the idea of Carney potentially reuniting the British Commonwealth Realms. Additionally, there are references to Canada's healthcare system, its relationship with the US, and the evolving global trade landscape. Overall, the messages indicate a mix of opinions and concerns about Canada's position in the international arena.","data":[5,11,3,2,5,6,6,12,7,8,2,9,9,4,5,11,6,9,7,6,14,8,10,7,3,3,10,9,6,7,6,7,11,3,3,6,9,2,11,7,9,6,6,19,5,4,7,13,6,3,6,3,6,3,7]},{"label":"XRP","topics":"xrp,xrpl,180,ripple,skyrocket","description":"The messages from twitter about XRP Australia suggest a mix of optimism and skepticism regarding the future of XRP. Some users believe that holding XRP could lead to significant gains in the future, with mentions of potential generational runs and new all-time highs. There is also discussion about the high trading volume of XRP and its potential for reaching $3 or even $10 in the future. However, there are also warnings about the possibility of a downside move in the short term, with mentions of accumulating pressure on top buyers and a potential trend shift. Overall, the sentiment seems to be cautiously optimistic about the future of XRP in Australia.","data":[1,4,3,3,14,3,3,3,1,8,11,3,5,4,6,7,9,4,0,6,5,4,26,8,3,6,5,8,5,8,3,5,6,1,3,3,16,5,5,8,5,8,12,3,6,3,4,7,8,4,8,7,2,7,3]},{"label":"Trove rugpull","topics":"trove,ico,115m,refund,undisclosed","description":"The messages from twitter are discussing the Trove ICO, which is being heavily criticized as a scam. The founder's reputation is being called into question, with accusations of rug-pulling and unethical practices. The community is warning others to stay away from Trove and highlighting the shady tactics used by the team. There are mentions of undisclosed payments to influencers, a sudden pivot to Solana, and a significant drop in the value of the TROVE token after the launch. Overall, the sentiment towards Trove in the crypto community is overwhelmingly negative, with many calling it one of the biggest scams they have seen. Investors are being advised to be cautious and avoid getting involved with Trove.","data":[4,2,6,4,12,3,4,3,6,0,4,3,3,5,4,6,1,10,5,7,5,7,6,11,7,11,4,4,10,2,5,2,5,7,5,7,5,5,8,1,9,7,9,3,1,1,9,3,8,30,4,3,8,0,2]},{"label":"Seeker by Solana Mobile","topics":"skr,solanamobile,seeker,mobile,phones","description":"The key topics discussed in the messages from twitter are:\n- The launch of the $SKR token by Solana Mobile\n- Airdrops and rewards for users of the Seeker smartphone\n- Potential partnerships and collaborations with other companies\n- Trading opportunities and listings on various platforms\n- The potential value and growth of the $SKR token\n- User experiences and feedback on using Solana Mobile and its dApps\n\nOverall, the messages highlight the excitement and potential opportunities surrounding the $SKR token and Solana Mobile, as well as the community's engagement with the project.","data":[6,13,6,8,6,6,3,4,9,10,3,3,2,3,2,5,1,3,4,8,3,5,5,4,1,16,4,19,2,3,3,8,0,7,1,9,4,4,2,1,1,5,4,9,8,4,4,2,16,4,5,1,3,2,5]},{"label":"BTC vs gold","topics":"golds,undervalued,outperformed,rotation,lagging","description":"The key topics currently discussed in the crypto industry on social media include the comparison between Bitcoin and gold, with some users believing that Bitcoin is undervalued compared to gold. There is also discussion about the performance of gold and Bitcoin in the market, with some users noting that gold has outperformed Bitcoin in recent years. Additionally, there is talk about the potential for women to become a strategic investor group in the crypto market, as well as the comparison between gold and Bitcoin as stores of value. Some users are also discussing the potential for silver to become the next big investment opportunity, comparing its performance to that of Bitcoin. Overall, there is a mix of opinions on the value and potential of Bitcoin compared to traditional assets like gold and silver.","data":[1,1,7,8,7,8,5,8,1,1,6,2,5,6,3,4,6,1,1,18,4,5,9,3,6,3,3,3,5,4,3,2,6,8,2,2,6,4,3,1,5,3,10,3,4,5,5,8,4,6,8,12,1,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-107.ts b/priv/repo/major_topics_seed/data-107.ts deleted file mode 100644 index 1cb3d4a366..0000000000 --- a/priv/repo/major_topics_seed/data-107.ts +++ /dev/null @@ -1,286 +0,0 @@ -export const NARRATIVES = { - labels: [ - '15.01.26', - '16.01.26', - '16.01.26', - '16.01.26', - '16.01.26', - '16.01.26', - '16.01.26', - '16.01.26', - '17.01.26', - '17.01.26', - '17.01.26', - '17.01.26', - '17.01.26', - '17.01.26', - '17.01.26', - '17.01.26', - '18.01.26', - '18.01.26', - '18.01.26', - '18.01.26', - '18.01.26', - '18.01.26', - '18.01.26', - '18.01.26', - '19.01.26', - '19.01.26', - '19.01.26', - '19.01.26', - '19.01.26', - '19.01.26', - '19.01.26', - '19.01.26', - '20.01.26', - '20.01.26', - '20.01.26', - '20.01.26', - '20.01.26', - '20.01.26', - '20.01.26', - '20.01.26', - '21.01.26', - '21.01.26', - '21.01.26', - '21.01.26', - '21.01.26', - '21.01.26', - '21.01.26', - '21.01.26', - '22.01.26', - '22.01.26', - '22.01.26', - '22.01.26', - '22.01.26', - '22.01.26', - '22.01.26', - ], - datasets: [ - { - label: 'AI ', - topics: 'agi,predicts,productivity,aipowered,agentic', - description: - 'The key topic discussed in the messages from twitter is the impact of AI on the crypto industry. The messages highlight how AI tools are reducing the latency between ideas and products, potentially threatening crypto traders with increased instability. There is a focus on how AI is transforming various industries, including service businesses, and the convergence of software and service multiples. The messages also touch upon the intersection of AI and crypto, with examples of companies providing infrastructure for this shift. Additionally, there is a discussion on the implications of AI on knowledge acquisition and security, as well as the potential winners and losers in the AI revolution. Overall, the messages emphasize the transformative power of AI in the crypto industry and beyond.', - data: [ - 20, 77, 21, 22, 18, 18, 28, 12, 12, 33, 26, 12, 21, 21, 25, 19, 11, 25, 17, 21, 11, 14, 17, - 35, 27, 30, 16, 17, 15, 20, 10, 24, 20, 10, 29, 17, 35, 28, 23, 34, 11, 27, 17, 17, 10, 24, - 19, 29, 21, 30, 13, 19, 19, 13, 16, - ], - infofi: false, - }, - { - label: 'Iran protests', - topics: 'iranian,protests,iran,islamic,protesters', - description: - 'The messages from twitter are focused on the ongoing protests and unrest in Iran. The youth are protesting against the Iranian regime, with reports of internet blackouts, violent crackdowns, and clashes with security forces. There are mentions of strikes on Tehran, attacks on state TV, and predictions of potential US intervention. The messages also highlight the tragic deaths and torture of protesters, including a 3-year-old child. Overall, the situation in Iran is described as a nightmare, with calls for freedom, democracy, and international support.', - data: [ - 8, 11, 12, 15, 5, 14, 21, 7, 23, 18, 10, 5, 23, 3, 12, 14, 10, 5, 4, 4, 5, 12, 6, 12, 16, - 10, 7, 4, 5, 15, 6, 14, 23, 12, 23, 11, 14, 34, 27, 27, 24, 18, 26, 11, 11, 4, 18, 11, 13, - 7, 8, 29, 14, 8, 16, - ], - infofi: false, - }, - { - label: 'Bitcoin adoption', - topics: 'bitcoiner,bitcoiners,fiat,bankers,scarcity', - description: - 'The messages from twitter highlight the importance and potential of Bitcoin in the current financial landscape. There is a strong emphasis on the power and efficiency of Bitcoin as a form of money, with mentions of its borderless nature, security, decentralization, and resistance to inflation. The messages also touch on the idea that Bitcoin provides a credible exit from debasing fiat currencies and offers individuals the ability to opt out of traditional financial systems.\n\nThere is a call to action for individuals to trust in Bitcoin as a hedge against government and financial industry mistrust. The messages suggest that understanding Bitcoin is key to its successful adoption and that those who truly grasp its potential view it as more than just a small part of their portfolio.\n\nOverall, the messages convey a sense of optimism and belief in the transformative power of Bitcoin, with references to its potential to revolutionize the financial industry and provide individuals with a secure and efficient form of money.', - data: [ - 7, 8, 6, 12, 17, 29, 8, 15, 5, 8, 11, 4, 14, 14, 14, 7, 16, 11, 7, 3, 8, 8, 9, 16, 16, 5, - 11, 5, 7, 12, 11, 24, 12, 7, 11, 5, 15, 16, 12, 16, 9, 8, 8, 8, 6, 6, 10, 13, 4, 20, 17, 8, - 9, 11, 6, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'memes,memecoins,meme,memecoin,pepe', - description: - 'The messages from twitter mainly focus on discussions about memecoins, meme trading, and the importance of community support in the crypto industry. There is also mention of specific memecoins such as $memes and $spsc, as well as the criteria for choosing a memecoin to invest in. The messages highlight the role of memes in shaping market sentiment and the appeal of memecoins due to their pure volatility and community-driven nature. Additionally, there is a mention of the White House posting memes daily and the potential impact on the market. Overall, the messages emphasize the significance of meme culture and community support in the crypto industry.', - data: [ - 9, 6, 5, 5, 16, 9, 10, 7, 14, 3, 5, 9, 8, 11, 5, 8, 7, 5, 4, 4, 10, 2, 17, 8, 8, 9, 14, 3, - 11, 5, 142, 17, 17, 11, 10, 7, 4, 3, 7, 9, 2, 13, 9, 6, 3, 10, 7, 6, 7, 12, 5, 10, 9, 4, 4, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '94k,retest,rejection,95k,ltf', - description: - 'The recent rejection off the Bull Market Support Band does not bode well for Bitcoin, as it is currently facing resistance at key levels around $94.5k-$95.5k. The price is consolidating and holding above $94k support, but there is uncertainty whether it will continue higher or experience a deeper downside. Traders are looking for bullish confirmation signals such as a break and close above $91k to indicate a potential uptrend. Despite the recent pullback, the overall structure remains bullish, with Bitcoin still trading above key weekly support levels. The market sentiment is risk-on, with easing inflation expectations and strong momentum supporting the cryptocurrency. Traders are advised to watch for potential breakout or breakdown scenarios, as well as key levels such as $88k to $90k for further price action.', - data: [ - 6, 4, 7, 10, 10, 29, 15, 7, 7, 11, 6, 17, 4, 10, 7, 19, 11, 3, 4, 7, 2, 11, 22, 5, 14, 4, - 11, 11, 21, 5, 3, 10, 8, 2, 4, 10, 16, 19, 18, 15, 5, 5, 11, 6, 7, 19, 11, 8, 9, 7, 24, 7, - 14, 3, 9, - ], - infofi: false, - }, - { - label: "China's economic expansion ", - topics: 'chinas,chinese,china,selfish,threatstatus', - description: - "Breaking down the messages from twitter, it is evident that there is a lot of discussion surrounding China and its impact on various aspects such as trade, energy strategy, debt levels, and technology. There are mentions of China's influence on metal prices, its relationship with other countries like the UK, and its involvement in espionage activities. Additionally, there are discussions about China's role in the global economy, potential adoption of cryptocurrencies like $ETH and $BTC, and its manufacturing practices. Overall, the messages highlight the complex and multifaceted nature of China's presence in the global landscape and the implications it has on various industries and economies.", - data: [ - 6, 11, 9, 11, 6, 4, 9, 13, 17, 10, 5, 5, 8, 16, 7, 4, 13, 5, 8, 5, 19, 1, 8, 13, 10, 7, 11, - 7, 7, 10, 11, 10, 8, 7, 6, 12, 9, 8, 18, 19, 10, 12, 8, 8, 9, 11, 4, 12, 7, 6, 9, 7, 8, 7, - 10, - ], - infofi: false, - }, - { - label: 'Middle east situation ', - topics: 'syria,fighters,forces,democratic,attacks', - description: - 'The messages from twitter are focused on the ongoing conflict in Kurdish areas, particularly in Rojava, where Kurdish forces are facing attacks from various militias and jihadist groups. The messages highlight the resistance and solidarity of the Kurdish people, as well as the involvement of international actors such as the U.S. military and the Syrian government.\n\nKey topics discussed in the messages include:\n- Attacks on Kurdish areas by pro-government militias and Turkish-backed militias\n- Violations of ceasefire agreements by Syrian regime forces\n- Support and solidarity for the Kurdish people in Rojava\n- Resistance against ISIS and jihadist groups\n- Calls for unity and defense of the Rojava Revolution\n- Updates on the conflict in eastern Aleppo and the involvement of Syrian government troops\n\nOverall, the messages reflect the ongoing struggle and resilience of the Kurdish people in the face of external threats and attacks on their communities.', - data: [ - 8, 14, 18, 15, 8, 13, 6, 8, 13, 15, 6, 10, 11, 3, 9, 6, 29, 2, 5, 1, 13, 4, 3, 8, 13, 13, 3, - 2, 3, 13, 20, 6, 2, 15, 23, 6, 6, 8, 9, 14, 2, 5, 4, 9, 14, 9, 11, 9, 8, 2, 1, 6, 6, 7, 4, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'games,gamers,gaming,gameplay,game', - description: - 'The key topics currently discussed in the crypto industry on social media include classic arcade gameplay mechanics, 16-bit video games, recommendations for games like Frogger and Snake, excitement for upcoming gaming releases, open world single player modes, real-time strategy games, unique gaming experiences, comparisons between different games, game development with AI, the evolution of games through updates and live ops, upcoming game releases like Forza Horizon 6, and the impact of classic video games on game culture.', - data: [ - 7, 4, 5, 4, 10, 8, 10, 4, 12, 10, 6, 5, 5, 3, 5, 6, 7, 33, 23, 5, 8, 15, 2, 7, 7, 7, 9, 9, - 7, 6, 8, 8, 6, 6, 4, 35, 8, 9, 7, 5, 4, 5, 5, 10, 7, 6, 5, 9, 4, 12, 1, 4, 9, 6, 10, - ], - infofi: false, - }, - { - label: 'InfoFi ban by Twitter', - topics: 'infofi,yapping,yappers,kaito,api', - description: - "The messages from twitter suggest that InfoFi, a platform similar to OnlyFans but with photos of things or people you don't want to see, has been replaced by something worse. There are discussions about the death of InfoFi and the need for better tools to capture attention and reputation in the crypto industry. Some users reminisce about the early days of InfoFi and how it changed the game, while others criticize its misaligned incentives. Overall, there seems to be a mix of nostalgia, skepticism, and hope for the future of content creation in the crypto space.", - data: [ - 2, 4, 6, 10, 6, 3, 4, 5, 2, 6, 7, 48, 9, 3, 15, 9, 10, 5, 5, 9, 7, 6, 7, 46, 5, 17, 6, 2, - 12, 3, 2, 6, 7, 7, 4, 7, 13, 8, 10, 6, 3, 6, 7, 7, 2, 9, 4, 16, 5, 2, 6, 2, 4, 7, 4, - ], - infofi: false, - }, - { - label: 'Bags app', - topics: 'bags,bagsapp,bag,finnbags,finn', - description: - 'The messages from twitter suggest that there is a lot of discussion and activity surrounding the Bags app in the crypto industry. People are talking about the Bags app ecosystem heating up and debating whether or not to invest in Bags coins. There are mentions of low caps bags coins bleeding and the need to return to quality winners. Additionally, there are comments about the Bags meta and the potential for significant gains by investing in Bags coins. Some users are expressing concerns about the potential risks and fees associated with the Bags app, while others are excited about the opportunities it presents. Overall, it seems that the Bags app is a hot topic of conversation in the crypto community.', - data: [ - 3, 11, 11, 66, 10, 7, 7, 7, 17, 5, 5, 5, 9, 6, 2, 10, 6, 10, 6, 3, 8, 10, 8, 5, 5, 17, 6, 9, - 8, 10, 12, 2, 4, 9, 2, 2, 3, 12, 3, 6, 3, 6, 3, 12, 4, 7, 6, 10, 4, 6, 4, 2, 5, 4, 9, - ], - infofi: false, - }, - { - label: 'Vibecoding ', - topics: 'claude,codex,instances,code,chrome', - description: - 'The key topics discussed in the messages from twitter are:\n1. Amp (replacing Claude Code)\n2. Remote sessions with Amp\n3. Attention on Amp and Cowork\n4. Understanding Amp better than git work trees\n5. Visualization of Amp\n6. Archives and analysis of Amp sessions\n7. Getting started with Amp\n8. Subscription cleanse prompts\n9. Claude Code fetch tool for website summarization\n10. Building a commercial API for website summarization\n11. Leveraging Amp for productivity and financial dashboards\n12. Using Amp and Codex together\n\nOverall, the messages highlight the versatility and usefulness of Amp in various tasks and industries, as well as the potential for building new tools and APIs related to Amp.', - data: [ - 5, 4, 9, 7, 11, 2, 13, 5, 63, 6, 11, 8, 3, 2, 6, 12, 12, 8, 2, 10, 12, 6, 3, 10, 9, 7, 6, 6, - 7, 1, 9, 7, 4, 9, 5, 1, 4, 1, 3, 5, 6, 3, 6, 13, 2, 8, 9, 5, 10, 6, 20, 3, 10, 5, 4, - ], - infofi: false, - }, - { - label: 'Superbowl', - topics: 'patriots,bowl,nfl,denver,championship', - description: - "The key topics discussed in the messages from twitter include:\n1. The controversial ruling of an interception in a game, leading to the end of the Bills' season.\n2. The dominance of either the New England Patriots or the Kansas City Chiefs in the AFC Championship game for the past 15 years.\n3. The unpredictability of calls such as holding and pass interference in football games.\n4. The excitement and anticipation surrounding the upcoming Super Bowl, with mentions of potential MVP candidates like Tom Brady.\n5. The disappointment and sympathy expressed for teams like the Bills and the 49ers after tough losses.\n6. The impressive viewership numbers for ESPN's telecast of the Texans-Patriots game.\n7. Speculation and analysis of player performances and coaching decisions in recent games.\n8. Excitement for the upcoming AFC Championship game and Super Bowl matchups.\n9. Criticism of the Buffalo Bills' performance and the challenges they face as a team.\n10. Optimism for teams like the Rams, Bears, and Seahawks in their future games.", - data: [ - 12, 3, 4, 2, 4, 2, 11, 4, 4, 2, 4, 5, 3, 9, 7, 21, 9, 15, 6, 7, 13, 12, 11, 3, 5, 6, 9, 6, - 12, 3, 6, 6, 4, 5, 6, 18, 2, 7, 7, 6, 8, 8, 9, 5, 7, 10, 9, 6, 9, 4, 4, 7, 6, 14, 8, - ], - infofi: false, - }, - { - label: 'Israel - Palestine', - topics: 'israel,jews,gaza,jewish,genocide', - description: - 'The messages from twitter contain a mix of anti-Semitic and anti-Israel sentiments, discussing topics such as the control of Israel and Palestine by the GCC, accusations of manipulation by Jewish individuals, and criticism of Israeli actions in Gaza. There are also mentions of the ongoing conflict in Gaza, with reports of ceasefire violations and casualties. Additionally, there are references to the rise of antisemitism globally and efforts to confront it. Overall, the messages reflect a range of opinions and emotions related to the Israel-Palestine conflict and broader issues of antisemitism.', - data: [ - 5, 13, 15, 6, 4, 3, 3, 7, 7, 8, 3, 3, 18, 4, 6, 4, 15, 4, 5, 5, 8, 9, 8, 8, 9, 5, 10, 8, 4, - 9, 5, 3, 8, 11, 2, 9, 5, 6, 11, 12, 7, 6, 4, 6, 8, 11, 4, 5, 5, 8, 8, 4, 12, 3, 15, - ], - infofi: false, - }, - { - label: 'Whales', - topics: 'whitewhale,whale,whales,unusual,accumulating', - description: - 'The messages from twitter indicate that there is significant activity among crypto whales, particularly in relation to $Whitewhale and other cryptocurrencies such as $BTC, $XRP, $ETH, and $HYPE. There are mentions of whales buying and accumulating large amounts of these cryptocurrencies, as well as making significant withdrawals and trades. The market dynamics are being reshaped by these whales, with some experiencing losses while others continue to accumulate despite declining prices. Overall, the presence and actions of whales are closely monitored and analyzed within the crypto community.', - data: [ - 6, 2, 4, 5, 2, 9, 15, 10, 6, 5, 1, 2, 5, 8, 4, 6, 11, 2, 2, 4, 5, 4, 11, 4, 1, 4, 1, 5, 9, - 7, 5, 2, 5, 7, 7, 1, 2, 10, 2, 5, 5, 7, 3, 5, 2, 12, 2, 7, 6, 6, 1, 3, 4, 115, 4, - ], - infofi: false, - }, - { - label: 'Greenland ', - topics: 'invasion,denmark,troops,islands,bases', - description: - "The key topics currently being discussed in the messages from twitter regarding Greenland include the potential acquisition of Greenland by the USA, military exercises to defend Greenland, the involvement of Denmark and other countries in Greenland's security, the value of Greenland in terms of mineral rights, and the strategic importance of Greenland in the Arctic corridor. There is also mention of the European Union and the UK sending troops to Greenland, as well as discussions about Greenland's potential future under US control. Additionally, there are references to the financial implications of acquiring Greenland and the comparison between Greenland and Venezuela in terms of acquisition motives. Overall, the discussions highlight the geopolitical, economic, and strategic significance of Greenland in current global affairs.", - data: [ - 8, 8, 8, 7, 4, 7, 11, 1, 5, 10, 6, 15, 14, 2, 6, 6, 14, 5, 0, 8, 6, 2, 6, 7, 7, 12, 7, 6, 4, - 5, 9, 5, 5, 7, 5, 6, 8, 8, 9, 7, 8, 12, 8, 7, 4, 8, 7, 10, 5, 12, 3, 8, 6, 3, 6, - ], - infofi: false, - }, - { - label: 'Canada', - topics: 'carney,canada,canadian,ccp,mark', - description: - "The messages from twitter suggest that there is a lot of discussion and speculation about Canada's relationship with China, particularly in terms of trade and alliances. Mark Carney, a prominent figure in Canadian politics, is mentioned multiple times in relation to these discussions. There are mentions of potential joint ventures with China, concerns about Canada's ability to defend itself, and the idea of Carney potentially reuniting the British Commonwealth Realms. Additionally, there are references to Canada's healthcare system, its relationship with the US, and the evolving global trade landscape. Overall, the messages indicate a mix of opinions and concerns about Canada's position in the international arena.", - data: [ - 5, 11, 3, 2, 5, 6, 6, 12, 7, 8, 2, 9, 9, 4, 5, 11, 6, 9, 7, 6, 14, 8, 10, 7, 3, 3, 10, 9, 6, - 7, 6, 7, 11, 3, 3, 6, 9, 2, 11, 7, 9, 6, 6, 19, 5, 4, 7, 13, 6, 3, 6, 3, 6, 3, 7, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'xrp,xrpl,180,ripple,skyrocket', - description: - 'The messages from twitter about XRP Australia suggest a mix of optimism and skepticism regarding the future of XRP. Some users believe that holding XRP could lead to significant gains in the future, with mentions of potential generational runs and new all-time highs. There is also discussion about the high trading volume of XRP and its potential for reaching $3 or even $10 in the future. However, there are also warnings about the possibility of a downside move in the short term, with mentions of accumulating pressure on top buyers and a potential trend shift. Overall, the sentiment seems to be cautiously optimistic about the future of XRP in Australia.', - data: [ - 1, 4, 3, 3, 14, 3, 3, 3, 1, 8, 11, 3, 5, 4, 6, 7, 9, 4, 0, 6, 5, 4, 26, 8, 3, 6, 5, 8, 5, 8, - 3, 5, 6, 1, 3, 3, 16, 5, 5, 8, 5, 8, 12, 3, 6, 3, 4, 7, 8, 4, 8, 7, 2, 7, 3, - ], - infofi: false, - }, - { - label: 'Trove rugpull', - topics: 'trove,ico,115m,refund,undisclosed', - description: - "The messages from twitter are discussing the Trove ICO, which is being heavily criticized as a scam. The founder's reputation is being called into question, with accusations of rug-pulling and unethical practices. The community is warning others to stay away from Trove and highlighting the shady tactics used by the team. There are mentions of undisclosed payments to influencers, a sudden pivot to Solana, and a significant drop in the value of the TROVE token after the launch. Overall, the sentiment towards Trove in the crypto community is overwhelmingly negative, with many calling it one of the biggest scams they have seen. Investors are being advised to be cautious and avoid getting involved with Trove.", - data: [ - 4, 2, 6, 4, 12, 3, 4, 3, 6, 0, 4, 3, 3, 5, 4, 6, 1, 10, 5, 7, 5, 7, 6, 11, 7, 11, 4, 4, 10, - 2, 5, 2, 5, 7, 5, 7, 5, 5, 8, 1, 9, 7, 9, 3, 1, 1, 9, 3, 8, 30, 4, 3, 8, 0, 2, - ], - infofi: false, - }, - { - label: 'Seeker by Solana Mobile', - topics: 'skr,solanamobile,seeker,mobile,phones', - description: - "The key topics discussed in the messages from twitter are:\n- The launch of the $SKR token by Solana Mobile\n- Airdrops and rewards for users of the Seeker smartphone\n- Potential partnerships and collaborations with other companies\n- Trading opportunities and listings on various platforms\n- The potential value and growth of the $SKR token\n- User experiences and feedback on using Solana Mobile and its dApps\n\nOverall, the messages highlight the excitement and potential opportunities surrounding the $SKR token and Solana Mobile, as well as the community's engagement with the project.", - data: [ - 6, 13, 6, 8, 6, 6, 3, 4, 9, 10, 3, 3, 2, 3, 2, 5, 1, 3, 4, 8, 3, 5, 5, 4, 1, 16, 4, 19, 2, - 3, 3, 8, 0, 7, 1, 9, 4, 4, 2, 1, 1, 5, 4, 9, 8, 4, 4, 2, 16, 4, 5, 1, 3, 2, 5, - ], - infofi: false, - }, - { - label: 'BTC vs gold', - topics: 'golds,undervalued,outperformed,rotation,lagging', - description: - 'The key topics currently discussed in the crypto industry on social media include the comparison between Bitcoin and gold, with some users believing that Bitcoin is undervalued compared to gold. There is also discussion about the performance of gold and Bitcoin in the market, with some users noting that gold has outperformed Bitcoin in recent years. Additionally, there is talk about the potential for women to become a strategic investor group in the crypto market, as well as the comparison between gold and Bitcoin as stores of value. Some users are also discussing the potential for silver to become the next big investment opportunity, comparing its performance to that of Bitcoin. Overall, there is a mix of opinions on the value and potential of Bitcoin compared to traditional assets like gold and silver.', - data: [ - 1, 1, 7, 8, 7, 8, 5, 8, 1, 1, 6, 2, 5, 6, 3, 4, 6, 1, 1, 18, 4, 5, 9, 3, 6, 3, 3, 3, 5, 4, - 3, 2, 6, 8, 2, 2, 6, 4, 3, 1, 5, 3, 10, 3, 4, 5, 5, 8, 4, 6, 8, 12, 1, 1, 1, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-108.json b/priv/repo/major_topics_seed/data-108.json deleted file mode 100644 index 13b320123f..0000000000 --- a/priv/repo/major_topics_seed/data-108.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["22.01.26","23.01.26","23.01.26","23.01.26","23.01.26","23.01.26","23.01.26","23.01.26","24.01.26","24.01.26","24.01.26","24.01.26","24.01.26","24.01.26","24.01.26","24.01.26","25.01.26","25.01.26","25.01.26","25.01.26","25.01.26","25.01.26","25.01.26","25.01.26","26.01.26","26.01.26","26.01.26","26.01.26","26.01.26","26.01.26","26.01.26","26.01.26","27.01.26","27.01.26","27.01.26","27.01.26","27.01.26","27.01.26","27.01.26","27.01.26","28.01.26","28.01.26","28.01.26","28.01.26","28.01.26","28.01.26","28.01.26","28.01.26","29.01.26","29.01.26","29.01.26","29.01.26","29.01.26","29.01.26","29.01.26"],"datasets":[{"label":"AI","topics":"ais,agentic,bottleneck,artificial,models","description":"The key topics discussed in the messages from twitter include the integration of AI with cryptocurrency, the impact of AI on job markets, the advancement of AI technology, the use of AI agents in economic activities, the adoption of AI in the workplace, the potential for AI to exploit cyber vulnerabilities, the role of open source in AI development, and the challenges and opportunities presented by AI in various industries.","data":[28,114,44,42,41,22,48,30,27,69,28,31,27,30,51,29,25,43,35,21,31,25,28,62,40,41,25,26,26,35,25,35,42,22,46,35,54,43,29,30,31,35,29,30,23,32,34,49,32,36,43,19,29,39,33]},{"label":"Clawdbot","topics":"moltbot,clawd,clawdbot,lobster,bankr","description":"The messages from twitter discuss the rise and fall of Clawdbot, a popular AI project that faced security issues and was exploited by scammers. Users are warned about potential security risks and advised on how to protect their data when using Clawdbot. Despite its flaws, some users praise Clawdbot for its capabilities and potential for consumer products. The messages also mention the development of new AI projects like AGNT and the potential for a new AI called \"Lobster General Intelligence\" (LGI) to emerge in the future. Overall, the discussion highlights the excitement and risks associated with AI technology in the crypto industry.","data":[19,17,13,28,7,18,20,14,160,15,16,15,13,16,15,14,18,27,18,27,25,22,17,40,16,10,19,15,9,9,19,12,14,25,18,10,21,11,17,15,25,20,27,20,14,10,20,26,23,17,31,24,9,19,16]},{"label":"Trading discipline","topics":"emotions,revenge,trader,emotional,psychology","description":"The key topics discussed in the messages from twitter include the importance of trading execution over effort, the misconception that trading is about being right all the time, the need for emotional discipline in trading, the significance of learning from losses, the benefits of prop trading firms, and the impact of mindset on trading success. Additionally, the messages emphasize the importance of knowing when to close the laptop and avoid burnout, as well as the value of letting probability work in trading rather than feeding the ego by always needing to be right. The messages also touch on the concept of harvesting Time Decay in trading and the benefits of exploiting short-term urgency compared to long-term patience.","data":[5,6,11,12,32,10,5,10,2,17,17,11,11,13,10,10,8,9,4,15,11,13,7,9,12,5,11,7,23,39,10,19,8,6,21,19,7,9,16,14,11,8,8,20,12,26,21,19,71,65,10,10,14,4,8]},{"label":"BTC price","topics":"84k,90k,ltf,80k,85k","description":"The key topic currently being discussed on twitter is that Bitcoin (BTC) has hit a new low, trading below $86k. There are concerns about whether BTC can hold this level and speculation about potential further downside to $76k or lower. The market sentiment seems to be bearish, with resistance at $90.3k and support at $80.6k and 84.5k. There is also discussion about the importance of BTC staying above the $90,000 level to avoid a potential sweep down to $85,000-$86,000. Overall, the market is currently \"Seller dominant\" until BTC can break and close a daily candle above the $90,000 zone.","data":[15,7,6,10,10,29,15,13,13,16,5,10,11,24,6,19,15,3,11,9,5,16,16,9,8,3,23,15,23,8,2,13,8,5,7,11,28,14,25,11,7,6,17,9,14,19,14,10,7,15,29,5,10,8,8]},{"label":"Bitcoin is the future of finance","topics":"bitcoiners,bitcoiner,bip,grifters,pleb","description":"The messages from twitter discuss various aspects of Bitcoin, including its potential as a form of passive income, criticisms from skeptics, the importance of self-custody, and the role of Bitcoin in disrupting traditional financial systems. There is also mention of the development of Bitcoin credit markets, the use of Bitcoin for financial infrastructure, and its impact on global financial systems. Overall, the messages convey a sense of optimism and hope for the future of Bitcoin and its potential to bring about positive change for humanity.","data":[9,7,11,9,37,6,12,20,5,13,13,11,17,11,18,12,13,9,6,6,15,10,9,16,17,5,14,15,8,14,10,19,16,5,27,8,16,9,11,11,9,11,6,14,10,11,11,13,7,14,20,13,12,15,7]},{"label":"Elon Musk, Tesla, SpaceX","topics":"spacex,tesla,tsla,fsd,xai","description":"The messages from twitter are discussing Elon Musk's statement that $TSLA is garbage and that Tesla is not just a car company. There is also mention of SpaceX merging with Twitter, as well as speculation about Tesla's future in achieving level 5 autonomy. Additionally, there is excitement about Optimus robot factories and the potential for trillionaires to be created through AI. The discussion also touches on Elon Musk's massive increase in net worth and the value of Tesla and SpaceX in the global economy. Overall, the sentiment seems to be mixed with some skepticism and some excitement about the future of Tesla and Elon Musk's ventures.","data":[13,10,19,10,9,10,11,9,4,29,11,8,14,27,11,9,9,16,3,5,10,15,3,10,22,11,6,7,9,5,20,5,3,19,0,10,18,9,24,23,36,12,9,10,8,12,12,9,8,10,19,5,3,4,9]},{"label":"BTC vs Gold - which is the real SoV","topics":"rotates,oz,ounces,golds,outperformed","description":"The messages from twitter suggest that there is a debate about whether Bitcoin or Gold is a better store of value. Some believe that Bitcoin is superior to Gold due to its finite supply and potential for growth, while others argue that Gold has a longer history as a store of value. There is also discussion about the potential for Bitcoin to catch up to Gold in terms of value in the future. Additionally, there is mention of the volatility of both Bitcoin and Gold, with some suggesting that Bitcoin has outperformed Gold historically over longer holding periods. Overall, the messages highlight the ongoing comparison and competition between Bitcoin and Gold as assets for investment and store of value.","data":[8,11,12,7,30,9,12,6,5,7,7,3,10,5,4,5,6,9,14,59,6,9,11,3,8,8,8,5,7,11,6,11,5,21,15,8,12,13,16,11,21,5,27,8,6,11,4,7,11,9,6,34,3,9,11]},{"label":"PENGUIN","topics":"8jx8aahj86wbqgutjguj6gttl5ps3cqxkrtvpajapump,pengu,100m,nietzschean,pve","description":"The main topic discussed in the messages from twitter is the rapid rise of the cryptocurrency $PENGUIN, which has seen its market cap increase from $16.5k to over $170 million in a short period of time. Many users are discussing the potential for $PENGUIN to reach a $1 billion market cap in the future, while others are cautioning about the risks of FOMO (fear of missing out) and the importance of playing smartly in the market. Overall, there is a mix of excitement and caution surrounding the $PENGUIN cryptocurrency and its potential for further growth.","data":[21,4,7,6,12,11,11,16,7,10,12,1,5,8,3,5,8,8,15,10,6,13,21,10,4,7,13,3,14,12,18,8,5,8,73,10,8,17,12,5,10,10,8,7,8,6,9,19,6,10,5,5,8,9,12]},{"label":"Memecoins","topics":"memecoins,memes,memecoin,meme,wojak","description":"The messages from twitter discuss the resurgence of memecoins and the potential for them to serve as valuable assets. There is a focus on the power of memes in driving direction and value in the crypto industry. The messages also touch on the importance of utility and technology in the space, as well as the need to weed out scam founders in order for real products to thrive. Additionally, there is mention of the influence of memetics and the potential for memecoins to create joy and unity within the community. The messages also highlight the idea of creating influencer memecoins and the potential for them to infiltrate the crypto space. Overall, the messages convey a sense of excitement and opportunity surrounding memecoins in the crypto industry.","data":[4,9,7,8,15,6,12,12,13,5,6,6,8,4,7,9,6,11,9,7,9,6,10,8,6,13,13,4,6,5,126,17,8,5,2,6,6,9,6,8,3,10,4,6,3,9,10,12,9,12,10,4,2,5,5]},{"label":"SOL price","topics":"solanas,145,solana,tomato,sol","description":"The key topics currently being discussed in the crypto community on Solana include:\n1. The high on-chain yield on Solana, making it a popular choice for investors.\n2. The emergence of zk-powered perps on Solana, indicating advancements in technology on the platform.\n3. The need for open coordination in open world foundation models, suggesting a collaborative approach to development.\n4. The comparison between Solana and Ethereum, with a focus on prop AMMs and potential challenges in the EVM architecture.\n5. The potential for Solana to replace the US dollar as a preferred currency.\n6. The positive outlook on Solana's future, with discussions on potential price increases and market cap growth.\n7. The reliability and uptime of Solana compared to other networks like Ethereum.\n8. The growth of DeFi on Solana, with projects like SolCtrl offering rewards for holding SOL.\n9. Updates on Solana's performance in the market, including price movements and TVL.\n10. Opportunities for capital efficiency and staking rewards on Solana, such as with BGSOL.\nOverall, the sentiment towards Solana appears to be positive, with discussions focusing on its potential for growth and innovation in the crypto industry.","data":[12,1,6,7,11,8,14,14,7,6,9,6,7,6,11,6,13,4,5,3,4,8,10,11,4,8,17,6,15,6,7,2,7,4,7,12,13,8,14,5,5,8,7,37,14,11,8,7,18,11,17,6,6,7,13]},{"label":"Canada - US relations tighten","topics":"canada,canadian,tariff,impose,threatens","description":"The key topics discussed in the messages from twitter are:\n1. Missile exchange with Canada expected to begin imminently\n2. President Trump threatening 100% tariffs on Canadian goods if Ottawa signs a deal with China\n3. Concerns about Mark Carney's actions and impact on Canada\n4. International student arrivals hitting a low point\n5. Capital rushing into Canada according to Mark Carney, but reality disagrees\n6. Brain drain from Canada to the U.S. due to regulatory chaos\n7. Asylum claims and abuse in the system\n8. French Canadian separatists potentially aligning with Trump and MAGA\n9. Views on President Trump's actions being beneficial for Canada and other countries with current account surplus.","data":[4,11,8,4,4,5,14,3,4,8,6,5,8,5,6,6,6,3,7,5,9,6,7,15,9,5,9,9,11,4,7,4,5,5,5,8,2,12,11,12,25,42,3,7,6,15,17,30,12,7,4,3,18,10,6]},{"label":"Gaming","topics":"gaming,gamefi,games,gameplay,mario","description":"The key topic currently discussed in the crypto gaming community on Twitter is the development of a new video game on the Solana blockchain. The game is described as a next-gen strategy simulation game in the Factory Battle Hybrid genre, being built by @EtherForge_io. The community is excited about the progress of the game, with one user noting that it is coming together quickly despite starting with only a binary file. The discussion also touches on the anti-fragility of crypto gaming teams, emphasizing the importance of user and revenue growth for success. Additionally, there is mention of the challenges faced by Web3 gaming, particularly in terms of storytelling and the use of crypto jargon. Overall, the community is focused on creating immersive and engaging gaming experiences within the crypto space.","data":[6,2,7,12,10,8,15,11,5,8,12,5,8,7,5,12,7,70,6,4,8,5,5,11,8,7,9,5,14,6,5,6,20,4,7,20,1,9,7,4,3,3,5,10,9,7,2,8,5,4,7,8,10,4,11]},{"label":"Extreme weather in the USA","topics":"snow,winter,storm,roads,weather","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. Historic snowfalls and extreme cold in the United States, leading to power outages and flight cancellations.\n2. Winter weather causing dangerous conditions, with reports of deaths and warnings to stay off the roads.\n3. Smartphone weather apps versus human expertise in forecasting during severe winter storms.\n4. Preparation for winter storms, including stocking up on supplies and staying safe.\n5. Winter trading rally promotions and opportunities in the crypto market.\n6. Personal experiences and activities during the winter weather, such as making ice cream in the snow and playing video games indoors.\n7. Speculation and humor about the weather, including jokes about being the \"snow storm\" and driving in bad weather conditions.\n8. Financial advice related to surviving market volatility during the winter season.","data":[3,2,8,7,6,4,6,8,5,4,6,11,4,6,5,9,11,10,7,9,6,8,8,9,11,2,5,6,9,13,7,4,6,3,5,4,9,1,5,9,5,5,8,57,21,4,5,5,5,4,10,1,21,21,2]},{"label":"Moonbirds and BIRB","topics":"birb,moonbirds,spencer,tokenomics,fdv","description":"The messages from twitter are discussing the $BIRB token and its recent developments. It seems that there is excitement and speculation surrounding the token, with mentions of its trading value, airdrop eligibility, and potential listing on Coinbase. There are also discussions about the token's distribution, utility, and potential token sinks. Additionally, there are references to Moonbirds and SBT holders, as well as the upcoming TGE (Token Generation Event) for $BIRB. Overall, it appears that there is a lot of activity and interest in the $BIRB token within the crypto community.","data":[12,7,9,9,40,3,2,4,22,8,2,9,3,3,6,2,4,10,6,6,10,4,6,3,6,25,9,22,1,6,2,11,5,9,4,3,8,5,2,1,5,3,1,8,5,5,6,8,13,7,3,1,2,9,5]},{"label":"Hyperliquid","topics":"hype,hyperliquid,hip3,downtrend,reclaims","description":"The key topic discussed in the messages from twitter is the cryptocurrency $HYPE. It is mentioned that $HYPE has been trading below $30 but is now making moves and accelerating, with eyes on reaching $50. There is speculation about $HYPE reaching $100 and it being a good long-term buy. The recent pump in $HYPE is attributed to it being natively on @solana and powered by Wormhole. There is also discussion about $HYPE's price targets, trading strategies, and support levels. Overall, there is a lot of excitement and optimism surrounding $HYPE in the crypto community.","data":[12,3,9,4,4,17,6,8,7,6,4,9,1,7,4,6,7,5,6,8,6,4,32,5,4,4,7,13,8,7,1,8,2,4,9,6,9,9,9,5,4,2,9,4,10,12,5,6,5,2,5,6,1,1,5]},{"label":"Nietzschean penguin memes","topics":"penguins,pengu,pudgy,embrace,wings","description":"The messages from twitter are discussing the concept of being a penguin, with references to embracing the penguin, understanding the penguin, and being the penguin you were meant to be. There are also mentions of penguin market makers, penguin cults, and penguins loving CUBEs. Additionally, there are references to penguins in relation to other animals like polar bears, hippos, and leopards. The messages also touch on the idea of standing out from the crowd and choosing your own path, symbolized by being a penguin. Overall, the theme of embracing individuality and uniqueness, represented by the penguin, is prevalent in the messages.","data":[4,2,7,4,6,3,5,7,0,2,5,6,2,9,5,5,5,2,5,4,6,6,4,8,4,8,11,9,5,5,4,3,3,3,92,5,0,5,1,6,5,6,3,3,6,5,10,9,2,5,4,5,6,7,5]},{"label":"Cooking","topics":"chicken,bread,beef,butter,breakfast","description":"The messages from twitter mainly revolve around cooking and food. There are mentions of British cuisine, cooking pancakes, impressive kitchen design, fries, salad, cheese toastie, steak and potato, dried fruit, meat stuck in throat, ribeye steak, McDonald's, salmon, lemon, garlic, olive oil, crinkle cut fries, and bone-in ribeye. Additionally, there are references to specific ingredients and cooking techniques such as dry brining, basting with butter, and using specific seasonings. The overall tone is casual and enthusiastic about cooking and food.","data":[4,4,5,16,6,8,4,8,2,21,9,5,11,20,6,2,7,12,3,9,7,3,12,4,3,8,5,5,3,6,4,4,1,2,2,7,6,4,7,6,4,4,4,5,8,1,6,6,4,6,4,2,3,8,4]},{"label":"Superbowl","topics":"bowl,patriots,rams,nfl,championship","description":"The key topics discussed in the messages from twitter are:\n1. Excitement and anticipation for the Super Bowl, with mentions of the Patriots and Seahawks.\n2. Reactions to the NFC Championship game and predictions for the Super Bowl outcome.\n3. References to specific players and their performances, such as Tom Brady and Sam Darnold.\n4. Mention of a prediction market for the Super Bowl outcome on Axiom Protocol.\n5. Congratulations to the New England Patriots for their win and advancement to the Super Bowl.\n6. Humorous and emotional reactions to the games and outcomes.\n7. References to specific plays and moments in the games, such as interceptions and fumbles.\n8. Appreciation for the support and community within the crypto industry, with mentions of $MASK fam and NikCenturioHodl.","data":[13,2,2,8,13,9,2,4,3,6,4,3,5,11,3,14,3,6,12,7,7,8,4,9,4,0,9,3,5,4,3,1,3,11,7,5,8,3,9,3,10,12,4,3,4,4,2,6,6,6,7,7,7,6,8]},{"label":"Art","topics":"painting,artist,artists,art,masterpiece","description":"The messages from twitter mainly focus on the topic of art in the crypto industry. The discussions revolve around the value of art, the importance of preserving art through platforms like Ethereum, and the tokenization of cultural assets. There is also mention of specific artworks, artists, and platforms like OAK and LiveArt. Overall, the messages highlight the intersection of art and technology within the crypto space.","data":[2,0,49,5,4,5,4,9,1,11,9,4,6,7,9,4,5,5,5,1,6,2,5,7,0,3,6,2,6,7,4,4,5,8,15,8,4,8,5,5,4,5,3,1,2,8,10,3,3,3,4,3,6,9,4]},{"label":"Mac Mini surge in popularity","topics":"minis,mac,mini,vps,apple","description":"The messages from twitter suggest that there is a lot of discussion about Mac minis and their usage in relation to Clawdbot. Some users are considering buying Mac minis for running bots, while others are questioning the necessity of owning multiple Mac minis. There is also mention of the potential future price increase of Mac Minis and other Apple products. Overall, it seems that Mac minis are a popular choice for running Clawdbots and other tasks in the crypto community.","data":[3,6,2,6,5,17,21,1,13,7,3,2,3,4,4,5,2,8,5,13,3,1,10,4,3,1,2,5,24,0,20,5,5,7,7,2,2,6,5,4,9,5,2,6,2,5,2,3,6,3,6,4,9,6,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-108.ts b/priv/repo/major_topics_seed/data-108.ts deleted file mode 100644 index 273258c322..0000000000 --- a/priv/repo/major_topics_seed/data-108.ts +++ /dev/null @@ -1,289 +0,0 @@ -export const NARRATIVES = { - labels: [ - '22.01.26', - '23.01.26', - '23.01.26', - '23.01.26', - '23.01.26', - '23.01.26', - '23.01.26', - '23.01.26', - '24.01.26', - '24.01.26', - '24.01.26', - '24.01.26', - '24.01.26', - '24.01.26', - '24.01.26', - '24.01.26', - '25.01.26', - '25.01.26', - '25.01.26', - '25.01.26', - '25.01.26', - '25.01.26', - '25.01.26', - '25.01.26', - '26.01.26', - '26.01.26', - '26.01.26', - '26.01.26', - '26.01.26', - '26.01.26', - '26.01.26', - '26.01.26', - '27.01.26', - '27.01.26', - '27.01.26', - '27.01.26', - '27.01.26', - '27.01.26', - '27.01.26', - '27.01.26', - '28.01.26', - '28.01.26', - '28.01.26', - '28.01.26', - '28.01.26', - '28.01.26', - '28.01.26', - '28.01.26', - '29.01.26', - '29.01.26', - '29.01.26', - '29.01.26', - '29.01.26', - '29.01.26', - '29.01.26', - ], - datasets: [ - { - label: 'AI', - topics: 'ais,agentic,bottleneck,artificial,models', - description: - 'The key topics discussed in the messages from twitter include the integration of AI with cryptocurrency, the impact of AI on job markets, the advancement of AI technology, the use of AI agents in economic activities, the adoption of AI in the workplace, the potential for AI to exploit cyber vulnerabilities, the role of open source in AI development, and the challenges and opportunities presented by AI in various industries.', - data: [ - 28, 114, 44, 42, 41, 22, 48, 30, 27, 69, 28, 31, 27, 30, 51, 29, 25, 43, 35, 21, 31, 25, 28, - 62, 40, 41, 25, 26, 26, 35, 25, 35, 42, 22, 46, 35, 54, 43, 29, 30, 31, 35, 29, 30, 23, 32, - 34, 49, 32, 36, 43, 19, 29, 39, 33, - ], - infofi: false, - }, - { - label: 'Clawdbot', - topics: 'moltbot,clawd,clawdbot,lobster,bankr', - description: - 'The messages from twitter discuss the rise and fall of Clawdbot, a popular AI project that faced security issues and was exploited by scammers. Users are warned about potential security risks and advised on how to protect their data when using Clawdbot. Despite its flaws, some users praise Clawdbot for its capabilities and potential for consumer products. The messages also mention the development of new AI projects like AGNT and the potential for a new AI called "Lobster General Intelligence" (LGI) to emerge in the future. Overall, the discussion highlights the excitement and risks associated with AI technology in the crypto industry.', - data: [ - 19, 17, 13, 28, 7, 18, 20, 14, 160, 15, 16, 15, 13, 16, 15, 14, 18, 27, 18, 27, 25, 22, 17, - 40, 16, 10, 19, 15, 9, 9, 19, 12, 14, 25, 18, 10, 21, 11, 17, 15, 25, 20, 27, 20, 14, 10, - 20, 26, 23, 17, 31, 24, 9, 19, 16, - ], - infofi: false, - }, - { - label: 'Trading discipline', - topics: 'emotions,revenge,trader,emotional,psychology', - description: - 'The key topics discussed in the messages from twitter include the importance of trading execution over effort, the misconception that trading is about being right all the time, the need for emotional discipline in trading, the significance of learning from losses, the benefits of prop trading firms, and the impact of mindset on trading success. Additionally, the messages emphasize the importance of knowing when to close the laptop and avoid burnout, as well as the value of letting probability work in trading rather than feeding the ego by always needing to be right. The messages also touch on the concept of harvesting Time Decay in trading and the benefits of exploiting short-term urgency compared to long-term patience.', - data: [ - 5, 6, 11, 12, 32, 10, 5, 10, 2, 17, 17, 11, 11, 13, 10, 10, 8, 9, 4, 15, 11, 13, 7, 9, 12, - 5, 11, 7, 23, 39, 10, 19, 8, 6, 21, 19, 7, 9, 16, 14, 11, 8, 8, 20, 12, 26, 21, 19, 71, 65, - 10, 10, 14, 4, 8, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '84k,90k,ltf,80k,85k', - description: - 'The key topic currently being discussed on twitter is that Bitcoin (BTC) has hit a new low, trading below $86k. There are concerns about whether BTC can hold this level and speculation about potential further downside to $76k or lower. The market sentiment seems to be bearish, with resistance at $90.3k and support at $80.6k and 84.5k. There is also discussion about the importance of BTC staying above the $90,000 level to avoid a potential sweep down to $85,000-$86,000. Overall, the market is currently "Seller dominant" until BTC can break and close a daily candle above the $90,000 zone.', - data: [ - 15, 7, 6, 10, 10, 29, 15, 13, 13, 16, 5, 10, 11, 24, 6, 19, 15, 3, 11, 9, 5, 16, 16, 9, 8, - 3, 23, 15, 23, 8, 2, 13, 8, 5, 7, 11, 28, 14, 25, 11, 7, 6, 17, 9, 14, 19, 14, 10, 7, 15, - 29, 5, 10, 8, 8, - ], - infofi: false, - }, - { - label: 'Bitcoin is the future of finance', - topics: 'bitcoiners,bitcoiner,bip,grifters,pleb', - description: - 'The messages from twitter discuss various aspects of Bitcoin, including its potential as a form of passive income, criticisms from skeptics, the importance of self-custody, and the role of Bitcoin in disrupting traditional financial systems. There is also mention of the development of Bitcoin credit markets, the use of Bitcoin for financial infrastructure, and its impact on global financial systems. Overall, the messages convey a sense of optimism and hope for the future of Bitcoin and its potential to bring about positive change for humanity.', - data: [ - 9, 7, 11, 9, 37, 6, 12, 20, 5, 13, 13, 11, 17, 11, 18, 12, 13, 9, 6, 6, 15, 10, 9, 16, 17, - 5, 14, 15, 8, 14, 10, 19, 16, 5, 27, 8, 16, 9, 11, 11, 9, 11, 6, 14, 10, 11, 11, 13, 7, 14, - 20, 13, 12, 15, 7, - ], - infofi: false, - }, - { - label: 'Elon Musk, Tesla, SpaceX', - topics: 'spacex,tesla,tsla,fsd,xai', - description: - "The messages from twitter are discussing Elon Musk's statement that $TSLA is garbage and that Tesla is not just a car company. There is also mention of SpaceX merging with Twitter, as well as speculation about Tesla's future in achieving level 5 autonomy. Additionally, there is excitement about Optimus robot factories and the potential for trillionaires to be created through AI. The discussion also touches on Elon Musk's massive increase in net worth and the value of Tesla and SpaceX in the global economy. Overall, the sentiment seems to be mixed with some skepticism and some excitement about the future of Tesla and Elon Musk's ventures.", - data: [ - 13, 10, 19, 10, 9, 10, 11, 9, 4, 29, 11, 8, 14, 27, 11, 9, 9, 16, 3, 5, 10, 15, 3, 10, 22, - 11, 6, 7, 9, 5, 20, 5, 3, 19, 0, 10, 18, 9, 24, 23, 36, 12, 9, 10, 8, 12, 12, 9, 8, 10, 19, - 5, 3, 4, 9, - ], - infofi: false, - }, - { - label: 'BTC vs Gold - which is the real SoV', - topics: 'rotates,oz,ounces,golds,outperformed', - description: - 'The messages from twitter suggest that there is a debate about whether Bitcoin or Gold is a better store of value. Some believe that Bitcoin is superior to Gold due to its finite supply and potential for growth, while others argue that Gold has a longer history as a store of value. There is also discussion about the potential for Bitcoin to catch up to Gold in terms of value in the future. Additionally, there is mention of the volatility of both Bitcoin and Gold, with some suggesting that Bitcoin has outperformed Gold historically over longer holding periods. Overall, the messages highlight the ongoing comparison and competition between Bitcoin and Gold as assets for investment and store of value.', - data: [ - 8, 11, 12, 7, 30, 9, 12, 6, 5, 7, 7, 3, 10, 5, 4, 5, 6, 9, 14, 59, 6, 9, 11, 3, 8, 8, 8, 5, - 7, 11, 6, 11, 5, 21, 15, 8, 12, 13, 16, 11, 21, 5, 27, 8, 6, 11, 4, 7, 11, 9, 6, 34, 3, 9, - 11, - ], - infofi: false, - }, - { - label: 'PENGUIN', - topics: '8jx8aahj86wbqgutjguj6gttl5ps3cqxkrtvpajapump,pengu,100m,nietzschean,pve', - description: - 'The main topic discussed in the messages from twitter is the rapid rise of the cryptocurrency $PENGUIN, which has seen its market cap increase from $16.5k to over $170 million in a short period of time. Many users are discussing the potential for $PENGUIN to reach a $1 billion market cap in the future, while others are cautioning about the risks of FOMO (fear of missing out) and the importance of playing smartly in the market. Overall, there is a mix of excitement and caution surrounding the $PENGUIN cryptocurrency and its potential for further growth.', - data: [ - 21, 4, 7, 6, 12, 11, 11, 16, 7, 10, 12, 1, 5, 8, 3, 5, 8, 8, 15, 10, 6, 13, 21, 10, 4, 7, - 13, 3, 14, 12, 18, 8, 5, 8, 73, 10, 8, 17, 12, 5, 10, 10, 8, 7, 8, 6, 9, 19, 6, 10, 5, 5, 8, - 9, 12, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'memecoins,memes,memecoin,meme,wojak', - description: - 'The messages from twitter discuss the resurgence of memecoins and the potential for them to serve as valuable assets. There is a focus on the power of memes in driving direction and value in the crypto industry. The messages also touch on the importance of utility and technology in the space, as well as the need to weed out scam founders in order for real products to thrive. Additionally, there is mention of the influence of memetics and the potential for memecoins to create joy and unity within the community. The messages also highlight the idea of creating influencer memecoins and the potential for them to infiltrate the crypto space. Overall, the messages convey a sense of excitement and opportunity surrounding memecoins in the crypto industry.', - data: [ - 4, 9, 7, 8, 15, 6, 12, 12, 13, 5, 6, 6, 8, 4, 7, 9, 6, 11, 9, 7, 9, 6, 10, 8, 6, 13, 13, 4, - 6, 5, 126, 17, 8, 5, 2, 6, 6, 9, 6, 8, 3, 10, 4, 6, 3, 9, 10, 12, 9, 12, 10, 4, 2, 5, 5, - ], - infofi: false, - }, - { - label: 'SOL price', - topics: 'solanas,145,solana,tomato,sol', - description: - "The key topics currently being discussed in the crypto community on Solana include:\n1. The high on-chain yield on Solana, making it a popular choice for investors.\n2. The emergence of zk-powered perps on Solana, indicating advancements in technology on the platform.\n3. The need for open coordination in open world foundation models, suggesting a collaborative approach to development.\n4. The comparison between Solana and Ethereum, with a focus on prop AMMs and potential challenges in the EVM architecture.\n5. The potential for Solana to replace the US dollar as a preferred currency.\n6. The positive outlook on Solana's future, with discussions on potential price increases and market cap growth.\n7. The reliability and uptime of Solana compared to other networks like Ethereum.\n8. The growth of DeFi on Solana, with projects like SolCtrl offering rewards for holding SOL.\n9. Updates on Solana's performance in the market, including price movements and TVL.\n10. Opportunities for capital efficiency and staking rewards on Solana, such as with BGSOL.\nOverall, the sentiment towards Solana appears to be positive, with discussions focusing on its potential for growth and innovation in the crypto industry.", - data: [ - 12, 1, 6, 7, 11, 8, 14, 14, 7, 6, 9, 6, 7, 6, 11, 6, 13, 4, 5, 3, 4, 8, 10, 11, 4, 8, 17, 6, - 15, 6, 7, 2, 7, 4, 7, 12, 13, 8, 14, 5, 5, 8, 7, 37, 14, 11, 8, 7, 18, 11, 17, 6, 6, 7, 13, - ], - infofi: false, - }, - { - label: 'Canada - US relations tighten', - topics: 'canada,canadian,tariff,impose,threatens', - description: - "The key topics discussed in the messages from twitter are:\n1. Missile exchange with Canada expected to begin imminently\n2. President Trump threatening 100% tariffs on Canadian goods if Ottawa signs a deal with China\n3. Concerns about Mark Carney's actions and impact on Canada\n4. International student arrivals hitting a low point\n5. Capital rushing into Canada according to Mark Carney, but reality disagrees\n6. Brain drain from Canada to the U.S. due to regulatory chaos\n7. Asylum claims and abuse in the system\n8. French Canadian separatists potentially aligning with Trump and MAGA\n9. Views on President Trump's actions being beneficial for Canada and other countries with current account surplus.", - data: [ - 4, 11, 8, 4, 4, 5, 14, 3, 4, 8, 6, 5, 8, 5, 6, 6, 6, 3, 7, 5, 9, 6, 7, 15, 9, 5, 9, 9, 11, - 4, 7, 4, 5, 5, 5, 8, 2, 12, 11, 12, 25, 42, 3, 7, 6, 15, 17, 30, 12, 7, 4, 3, 18, 10, 6, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'gaming,gamefi,games,gameplay,mario', - description: - 'The key topic currently discussed in the crypto gaming community on Twitter is the development of a new video game on the Solana blockchain. The game is described as a next-gen strategy simulation game in the Factory Battle Hybrid genre, being built by @EtherForge_io. The community is excited about the progress of the game, with one user noting that it is coming together quickly despite starting with only a binary file. The discussion also touches on the anti-fragility of crypto gaming teams, emphasizing the importance of user and revenue growth for success. Additionally, there is mention of the challenges faced by Web3 gaming, particularly in terms of storytelling and the use of crypto jargon. Overall, the community is focused on creating immersive and engaging gaming experiences within the crypto space.', - data: [ - 6, 2, 7, 12, 10, 8, 15, 11, 5, 8, 12, 5, 8, 7, 5, 12, 7, 70, 6, 4, 8, 5, 5, 11, 8, 7, 9, 5, - 14, 6, 5, 6, 20, 4, 7, 20, 1, 9, 7, 4, 3, 3, 5, 10, 9, 7, 2, 8, 5, 4, 7, 8, 10, 4, 11, - ], - infofi: false, - }, - { - label: 'Extreme weather in the USA', - topics: 'snow,winter,storm,roads,weather', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n1. Historic snowfalls and extreme cold in the United States, leading to power outages and flight cancellations.\n2. Winter weather causing dangerous conditions, with reports of deaths and warnings to stay off the roads.\n3. Smartphone weather apps versus human expertise in forecasting during severe winter storms.\n4. Preparation for winter storms, including stocking up on supplies and staying safe.\n5. Winter trading rally promotions and opportunities in the crypto market.\n6. Personal experiences and activities during the winter weather, such as making ice cream in the snow and playing video games indoors.\n7. Speculation and humor about the weather, including jokes about being the "snow storm" and driving in bad weather conditions.\n8. Financial advice related to surviving market volatility during the winter season.', - data: [ - 3, 2, 8, 7, 6, 4, 6, 8, 5, 4, 6, 11, 4, 6, 5, 9, 11, 10, 7, 9, 6, 8, 8, 9, 11, 2, 5, 6, 9, - 13, 7, 4, 6, 3, 5, 4, 9, 1, 5, 9, 5, 5, 8, 57, 21, 4, 5, 5, 5, 4, 10, 1, 21, 21, 2, - ], - infofi: false, - }, - { - label: 'Moonbirds and BIRB', - topics: 'birb,moonbirds,spencer,tokenomics,fdv', - description: - "The messages from twitter are discussing the $BIRB token and its recent developments. It seems that there is excitement and speculation surrounding the token, with mentions of its trading value, airdrop eligibility, and potential listing on Coinbase. There are also discussions about the token's distribution, utility, and potential token sinks. Additionally, there are references to Moonbirds and SBT holders, as well as the upcoming TGE (Token Generation Event) for $BIRB. Overall, it appears that there is a lot of activity and interest in the $BIRB token within the crypto community.", - data: [ - 12, 7, 9, 9, 40, 3, 2, 4, 22, 8, 2, 9, 3, 3, 6, 2, 4, 10, 6, 6, 10, 4, 6, 3, 6, 25, 9, 22, - 1, 6, 2, 11, 5, 9, 4, 3, 8, 5, 2, 1, 5, 3, 1, 8, 5, 5, 6, 8, 13, 7, 3, 1, 2, 9, 5, - ], - infofi: false, - }, - { - label: 'Hyperliquid', - topics: 'hype,hyperliquid,hip3,downtrend,reclaims', - description: - "The key topic discussed in the messages from twitter is the cryptocurrency $HYPE. It is mentioned that $HYPE has been trading below $30 but is now making moves and accelerating, with eyes on reaching $50. There is speculation about $HYPE reaching $100 and it being a good long-term buy. The recent pump in $HYPE is attributed to it being natively on @solana and powered by Wormhole. There is also discussion about $HYPE's price targets, trading strategies, and support levels. Overall, there is a lot of excitement and optimism surrounding $HYPE in the crypto community.", - data: [ - 12, 3, 9, 4, 4, 17, 6, 8, 7, 6, 4, 9, 1, 7, 4, 6, 7, 5, 6, 8, 6, 4, 32, 5, 4, 4, 7, 13, 8, - 7, 1, 8, 2, 4, 9, 6, 9, 9, 9, 5, 4, 2, 9, 4, 10, 12, 5, 6, 5, 2, 5, 6, 1, 1, 5, - ], - infofi: false, - }, - { - label: 'Nietzschean penguin memes', - topics: 'penguins,pengu,pudgy,embrace,wings', - description: - 'The messages from twitter are discussing the concept of being a penguin, with references to embracing the penguin, understanding the penguin, and being the penguin you were meant to be. There are also mentions of penguin market makers, penguin cults, and penguins loving CUBEs. Additionally, there are references to penguins in relation to other animals like polar bears, hippos, and leopards. The messages also touch on the idea of standing out from the crowd and choosing your own path, symbolized by being a penguin. Overall, the theme of embracing individuality and uniqueness, represented by the penguin, is prevalent in the messages.', - data: [ - 4, 2, 7, 4, 6, 3, 5, 7, 0, 2, 5, 6, 2, 9, 5, 5, 5, 2, 5, 4, 6, 6, 4, 8, 4, 8, 11, 9, 5, 5, - 4, 3, 3, 3, 92, 5, 0, 5, 1, 6, 5, 6, 3, 3, 6, 5, 10, 9, 2, 5, 4, 5, 6, 7, 5, - ], - infofi: false, - }, - { - label: 'Cooking', - topics: 'chicken,bread,beef,butter,breakfast', - description: - "The messages from twitter mainly revolve around cooking and food. There are mentions of British cuisine, cooking pancakes, impressive kitchen design, fries, salad, cheese toastie, steak and potato, dried fruit, meat stuck in throat, ribeye steak, McDonald's, salmon, lemon, garlic, olive oil, crinkle cut fries, and bone-in ribeye. Additionally, there are references to specific ingredients and cooking techniques such as dry brining, basting with butter, and using specific seasonings. The overall tone is casual and enthusiastic about cooking and food.", - data: [ - 4, 4, 5, 16, 6, 8, 4, 8, 2, 21, 9, 5, 11, 20, 6, 2, 7, 12, 3, 9, 7, 3, 12, 4, 3, 8, 5, 5, 3, - 6, 4, 4, 1, 2, 2, 7, 6, 4, 7, 6, 4, 4, 4, 5, 8, 1, 6, 6, 4, 6, 4, 2, 3, 8, 4, - ], - infofi: false, - }, - { - label: 'Superbowl', - topics: 'bowl,patriots,rams,nfl,championship', - description: - 'The key topics discussed in the messages from twitter are:\n1. Excitement and anticipation for the Super Bowl, with mentions of the Patriots and Seahawks.\n2. Reactions to the NFC Championship game and predictions for the Super Bowl outcome.\n3. References to specific players and their performances, such as Tom Brady and Sam Darnold.\n4. Mention of a prediction market for the Super Bowl outcome on Axiom Protocol.\n5. Congratulations to the New England Patriots for their win and advancement to the Super Bowl.\n6. Humorous and emotional reactions to the games and outcomes.\n7. References to specific plays and moments in the games, such as interceptions and fumbles.\n8. Appreciation for the support and community within the crypto industry, with mentions of $MASK fam and NikCenturioHodl.', - data: [ - 13, 2, 2, 8, 13, 9, 2, 4, 3, 6, 4, 3, 5, 11, 3, 14, 3, 6, 12, 7, 7, 8, 4, 9, 4, 0, 9, 3, 5, - 4, 3, 1, 3, 11, 7, 5, 8, 3, 9, 3, 10, 12, 4, 3, 4, 4, 2, 6, 6, 6, 7, 7, 7, 6, 8, - ], - infofi: false, - }, - { - label: 'Art', - topics: 'painting,artist,artists,art,masterpiece', - description: - 'The messages from twitter mainly focus on the topic of art in the crypto industry. The discussions revolve around the value of art, the importance of preserving art through platforms like Ethereum, and the tokenization of cultural assets. There is also mention of specific artworks, artists, and platforms like OAK and LiveArt. Overall, the messages highlight the intersection of art and technology within the crypto space.', - data: [ - 2, 0, 49, 5, 4, 5, 4, 9, 1, 11, 9, 4, 6, 7, 9, 4, 5, 5, 5, 1, 6, 2, 5, 7, 0, 3, 6, 2, 6, 7, - 4, 4, 5, 8, 15, 8, 4, 8, 5, 5, 4, 5, 3, 1, 2, 8, 10, 3, 3, 3, 4, 3, 6, 9, 4, - ], - infofi: false, - }, - { - label: 'Mac Mini surge in popularity', - topics: 'minis,mac,mini,vps,apple', - description: - 'The messages from twitter suggest that there is a lot of discussion about Mac minis and their usage in relation to Clawdbot. Some users are considering buying Mac minis for running bots, while others are questioning the necessity of owning multiple Mac minis. There is also mention of the potential future price increase of Mac Minis and other Apple products. Overall, it seems that Mac minis are a popular choice for running Clawdbots and other tasks in the crypto community.', - data: [ - 3, 6, 2, 6, 5, 17, 21, 1, 13, 7, 3, 2, 3, 4, 4, 5, 2, 8, 5, 13, 3, 1, 10, 4, 3, 1, 2, 5, 24, - 0, 20, 5, 5, 7, 7, 2, 2, 6, 5, 4, 9, 5, 2, 6, 2, 5, 2, 3, 6, 3, 6, 4, 9, 6, 2, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-109.json b/priv/repo/major_topics_seed/data-109.json deleted file mode 100644 index a7c7109a7c..0000000000 --- a/priv/repo/major_topics_seed/data-109.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["29.01.26","30.01.26","30.01.26","30.01.26","30.01.26","30.01.26","30.01.26","30.01.26","31.01.26","31.01.26","31.01.26","31.01.26","31.01.26","31.01.26","31.01.26","31.01.26","01.02.26","01.02.26","01.02.26","01.02.26","01.02.26","01.02.26","01.02.26","01.02.26","02.02.26","02.02.26","02.02.26","02.02.26","02.02.26","02.02.26","02.02.26","02.02.26","03.02.26","03.02.26","03.02.26","03.02.26","03.02.26","03.02.26","03.02.26","03.02.26","04.02.26","04.02.26","04.02.26","04.02.26","04.02.26","04.02.26","04.02.26","04.02.26","05.02.26","05.02.26","05.02.26","05.02.26","05.02.26","05.02.26","05.02.26"],"datasets":[{"label":"Epstein files","topics":"emails,pages,file,doj,epsteins","description":"The messages from twitter are discussing the release of over 3 million pages of Epstein files by the Justice Department, the withholding of 3 million Epstein files from the public, the ties between Epstein and the legal profession, the lack of prosecution of individuals on the Epstein list, concerns about the U.S. government's response to the Epstein files, and the potential for darker secrets within the files. There are also mentions of resurfaced interview clips with Epstein, speculation about the contents of the files, and criticism of law enforcement's inaction regarding the information in the files. Additionally, there are references to the involvement of prominent figures in the Epstein scandal and the potential for further revelations to come to light.","data":[8,17,11,11,9,9,4,17,12,19,20,7,20,21,59,11,91,16,1,16,9,16,8,14,11,15,10,16,17,13,17,6,24,16,17,25,8,12,24,41,12,24,15,7,4,21,11,26,12,8,9,14,10,14,15]},{"label":"Kevin Warsh is the new Fed chair","topics":"kevin,powell,warsh,nominated,jerome","description":"The messages from twitter suggest that Kevin Warsh is being considered as the next Federal Reserve Chairman. Warsh has a background in nuclear and has been praised by billionaire Ray Dalio as a \"great choice\" for the position. There is speculation about Warsh's stance on Bitcoin, with some suggesting he is more open to it than previous chairs. However, there are also concerns about his potential impact on interest rates and the balance sheet. Overall, there is a mix of optimism and skepticism surrounding Warsh's potential appointment as Fed Chair.","data":[10,7,49,11,16,9,5,40,13,14,13,6,7,2,11,26,11,12,13,19,14,15,5,11,8,13,5,8,17,22,2,10,45,87,10,34,18,13,19,6,24,43,19,9,4,14,17,19,7,6,10,9,14,7,8]},{"label":"Epstein involvement in crypto","topics":"satoshi,blockstream,adam,jeffrey,2014","description":"The messages from twitter suggest that there are discussions linking Epstein to Bitcoin and Ripple (XRP). There are mentions of Epstein's involvement in the crypto industry, including investments in Coinbase and Blockstream. Some messages imply that Bitcoin may have been compromised due to Epstein's influence. Overall, the sentiment seems to be negative towards Epstein's involvement in the crypto industry, with some questioning the integrity of certain individuals and projects.","data":[7,11,12,5,11,11,6,8,15,16,18,10,18,16,29,9,43,24,7,10,4,5,8,16,20,23,9,15,6,4,14,5,17,6,4,15,6,9,12,18,21,8,9,3,6,9,16,20,10,29,14,7,7,10,6]},{"label":"Hyperliquid","topics":"hype,hip3,buybacks,lit,hyperliquidx","description":"The key topics discussed in the messages from twitter are:\n\n1. $HYPE is predicted to reach $100, with the current price holding around $33.\n2. $CYPH at $0.25 is considered a good entry point.\n3. $HYPE is seen as a strong player in the crypto market.\n4. There is anticipation for $HYPE to become a top 10 coin by the end of 2026.\n5. Buying dips in $HYPE is recommended.\n6. There is excitement about an upcoming unlock of $HYPE worth $340 million.\n7. Suggestions for $HYPE to focus on acquiring a product team and CMO to challenge Robinhood in the retail market.\n8. Stakeholders are preparing for the 7th HIP-3 deployment.\n9. Airdrops of $HYPE long positions are being offered.\n10. Analysis and trading strategies for $HYPE are being discussed.\n\nOverall, the sentiment towards $HYPE is positive, with expectations of growth and potential for success in the market.","data":[11,14,4,8,13,6,18,12,9,8,12,8,4,10,7,5,14,5,7,8,7,11,19,56,4,12,7,8,26,10,7,2,3,7,8,6,12,13,14,13,10,4,12,9,8,24,6,11,8,11,15,11,7,8,4]},{"label":"AI","topics":"rent,ais,artificial,humans,productivity","description":"The messages from twitter discuss the rapid advancements in AI technology and its potential impact on society. There is a sense of concern about AI potentially replacing human jobs and the implications of AI becoming more advanced. The messages also touch on the idea of AI empowering certain individuals or groups, such as young people and those with higher incomes. Additionally, there is a discussion about the intersection of AI and crypto, and the ethical considerations surrounding AI's actions. Overall, the messages highlight the complex relationship between AI, technology, and society.","data":[6,51,7,4,15,3,6,8,6,20,6,5,14,6,13,7,5,9,8,12,8,5,5,10,14,6,11,7,7,7,4,6,16,7,9,19,9,7,10,5,10,11,5,8,6,7,10,8,3,8,8,4,7,13,10]},{"label":"BTC price","topics":"73000,74000,70000,slides,65000","description":"The key topics currently discussed in the crypto community on Twitter include:\n- Bitcoin breaking below $67K and experiencing a significant drop in price\n- Speculation on the reasons behind Bitcoin's price decrease, including liquidations and market trends\n- Comparisons of Bitcoin's current price to previous highs and lows\n- Analysis of Bitcoin's price movements and potential future scenarios\n- Mention of Trump's influence on Bitcoin's price\n- Discussion of support levels and potential relief bounces\n- Galaxy Digital's warning of a potential further drop in Bitcoin's price\n\nOverall, the sentiment in the crypto community seems to be focused on the recent price drop of Bitcoin and its implications for the market.","data":[9,2,5,6,2,26,11,2,7,5,6,16,15,66,1,52,20,4,6,2,2,6,13,2,1,2,3,3,10,3,2,4,4,15,5,1,27,4,9,4,4,12,3,19,2,9,3,5,16,12,1,3,9,6,4]},{"label":"China","topics":"chinas,chinese,yuan,china,taiwan","description":"The messages from twitter highlight the ongoing battle between the US and China, with discussions about various topics such as Chinese gold purchases, China's electricity generation growth, the rise of the Chinese yuan, and China's focus on gold over Bitcoin. There are also mentions of Chinese government tactics, such as flooding search results with porn during political unrest, and concerns about CCP spies embedded within tech companies. Overall, the messages reflect a mix of geopolitical tensions, economic analysis, and technological espionage related to China.","data":[5,10,5,8,7,1,8,10,20,17,8,4,11,12,9,14,12,6,11,13,5,5,7,7,11,9,10,5,5,4,11,5,14,6,6,12,9,13,6,4,10,21,8,10,12,10,4,3,3,8,7,7,7,11,8]},{"label":"Saylor","topics":"saylors,saylor,michael,underwater,855","description":"The key topics discussed about Michael Saylor in the crypto community include his significant losses on Bitcoin, his early involvement in Bitcoin, his potential liquidation, his ongoing support for Bitcoin despite market turmoil, and his large accumulation of BTC. Some users express concern about his financial situation, while others admire his long-standing conviction in Bitcoin. Overall, there is a mix of admiration and skepticism towards Saylor in the crypto community.","data":[4,3,10,19,15,24,16,8,7,10,3,6,8,14,4,7,8,3,4,19,3,10,14,3,5,5,6,14,6,3,12,3,2,9,4,8,16,7,6,6,12,31,4,8,9,7,2,9,3,6,9,4,4,8,8]},{"label":"SpaceX x xAI","topics":"merger,xai,merge,spacex,musks","description":"The key topic currently discussed in the messages from twitter is the potential merger between SpaceX and xAI, with Elon Musk planning to combine the two companies. The merger is valued at $1.25 trillion and could potentially lead to a $2 trillion deal involving Tesla as well. There is speculation about SpaceX's IPO and its potential valuation, with some estimating it to be over $1.75 trillion. The merger is seen as a move to support Musk's ambitions in AI and space exploration. Overall, the discussions revolve around the financial implications and potential synergies of the merger between SpaceX, xAI, and Tesla.","data":[35,12,8,5,4,4,5,8,12,21,4,2,3,4,10,5,7,1,6,8,1,3,6,6,16,5,7,2,3,4,43,11,7,7,8,7,7,5,9,14,4,4,4,0,9,8,6,15,0,9,8,6,2,8,7]},{"label":"Vitalik Buterin on L2s","topics":"l2s,l2,l1,l1s,scaling","description":"Based on the messages from twitter, it seems that the discussion around Layer 2 solutions (L2s) in the crypto industry is focused on the need for specialization and differentiation among L2 projects. There is a sentiment that L2s should not simply replicate Ethereum but instead offer unique value propositions and cater to specific use cases. The idea of L2s being websites tailored to specific needs is emphasized, highlighting the importance of customization and flexibility.\n\nThere is also a mention of the importance of Ethereum's base layer values and network effects in terms of liquidity. The debate around the scalability and viability of L2s continues, with some expressing skepticism while others remain optimistic about the future of L2 technology. Overall, the key takeaway is that L2s should focus on specialization and providing unique value propositions rather than simply trying to scale Ethereum.","data":[11,4,5,4,4,2,10,13,5,5,6,7,6,11,10,6,7,12,6,5,10,6,8,7,5,12,9,3,9,5,3,9,19,2,10,9,5,7,10,6,22,22,6,6,4,5,6,11,8,5,5,14,7,5,5]},{"label":"ICE action and protests","topics":"minneapolis,alien,ice,protesters,officers","description":"The messages from twitter are discussing various incidents and developments related to ICE (Immigration and Customs Enforcement) and anti-ICE protests. There are mentions of violent confrontations between protesters and federal agents, arrests of individuals involved in anti-ICE activities, criticism of ICE's deportation numbers, and clashes between law enforcement and protesters. The messages also touch on the actions of ICE officers in different locations, such as arrests during targeted enforcement operations and community outreach efforts. Additionally, there are references to political figures announcing plans to reduce ICE manpower in certain areas. Overall, the messages highlight the ongoing tensions and controversies surrounding ICE and anti-ICE activism.","data":[5,32,43,5,2,7,1,10,6,8,16,3,20,6,4,6,3,3,3,2,4,3,2,7,8,4,11,2,1,10,10,2,3,14,4,5,10,24,3,8,7,9,6,2,6,6,10,5,5,0,1,9,5,10,1]},{"label":"Gaming","topics":"roblox,games,gaming,gamefi,gamers","description":"The messages from twitter highlight discussions about the gaming industry, including the difference between speculation and building real gaming ecosystems. There is mention of new game releases, partnerships to enhance gaming experiences, and the evolution of gaming over time. Additionally, there are references to the use of AI in game creation, the impact of different game engines, and the potential for high-quality games in the future. The messages also touch on the financial aspects of gaming, such as making money through game development and selling games for significant amounts. Overall, the messages reflect a mix of excitement, analysis, and anticipation for the future of gaming.","data":[4,5,6,2,4,1,7,6,3,3,13,6,4,2,7,5,10,3,51,5,4,6,6,6,11,6,4,9,8,4,3,4,12,7,6,34,5,5,3,4,3,1,8,3,4,6,5,5,6,6,7,12,11,2,5]},{"label":"SOL price","topics":"sol,2030,td,standard,96","description":"The messages from twitter indicate that the $SOL cryptocurrency is experiencing significant price fluctuations and volatility. There are mentions of buy orders being set, price drops to lows not seen in years, and potential support levels around $20-$23. Traders are closely watching key levels such as $107, $120, and $75 for potential bounce opportunities or further downside risk. Institutional investors and market analysts are also discussing the potential for $SOL to continue dropping, with some suggesting that it could reach as low as $0 in the near future. Overall, sentiment towards $SOL appears to be mixed, with some traders remaining bullish while others are more cautious about the cryptocurrency's future performance.","data":[5,3,7,3,9,14,10,8,5,10,3,4,6,12,1,8,8,8,7,12,5,4,8,4,3,4,3,6,11,6,8,1,4,5,1,3,6,4,13,1,4,8,10,34,7,11,4,8,4,5,9,10,6,5,8]},{"label":"Vibe coding","topics":"vibe,coding,coded,vibes,0g","description":"The key topics discussed in the messages from twitter are:\n- Vibe coding and its popularity among developers\n- The use of AI in coding and app development\n- The future of coding and app development\n- Tools and platforms favored by vibe coders\n- The excitement and satisfaction of vibe coding\n- The potential impact of AI on various industries\n- The importance of building connections and community within the coding ecosystem\n- Controversial predictions and discussions about AI and technology\n- Personal experiences and achievements in vibe coding journey","data":[8,5,3,3,5,5,7,3,29,6,4,6,6,1,5,4,3,4,2,9,5,8,1,10,5,8,3,5,3,4,2,5,3,5,4,7,3,4,4,5,7,4,2,2,3,3,3,6,10,3,8,91,10,3,6]},{"label":"Trump","topics":"realdonaldtrump,eric,helped,anybody,presidents","description":"The messages from twitter suggest that there is a lot of discussion and speculation surrounding Donald Trump and his involvement in the crypto industry. Some users seem to be critical of Trump's influence on the market, suggesting that his actions and statements have negatively impacted the prices of various assets such as Bitcoin and metals. However, there are also mentions of Trump being supportive of crypto and launching his own coin, \"United States of America\" ($USA). Overall, the sentiment towards Trump in the crypto community appears to be mixed, with some viewing him as a positive force and others as a negative influence.","data":[4,6,5,4,16,6,2,14,4,7,16,2,9,3,10,9,8,5,4,9,5,11,5,5,2,9,15,5,5,3,6,5,7,9,4,4,9,6,6,6,13,16,4,4,0,6,5,5,7,14,3,2,6,5,4]},{"label":"Bitcoin as money","topics":"pleb,bitcointwitter,bitcoiners,jack,monetary","description":"The messages from twitter mainly focus on the importance and potential of Bitcoin in the global financial system. There is a discussion about Bitcoin becoming more scarce, its role in financial literacy, and its ability to disrupt traditional financial institutions. The messages also touch upon the energy consumption of Bitcoin mining, the rejection of Bitcoin by institutions, and the idea that only hodlers remain in the Bitcoin community.\n\nThere is a strong belief in the transformative power of Bitcoin, with mentions of it being a sovereign asset, a tool to reduce incentives for wars, and a way to empower the middle and lower classes financially. The messages also highlight the importance of understanding Bitcoin's underlying technology and its potential to change society for the better.\n\nOverall, the messages convey a sense of optimism and belief in the long-term potential of Bitcoin as a decentralized and trustworthy form of money.","data":[4,5,6,8,8,17,1,7,6,3,1,8,11,4,10,7,5,3,6,3,5,5,6,8,11,7,7,5,5,3,7,7,8,1,5,14,6,9,11,4,11,9,7,1,5,11,4,7,5,4,14,3,6,6,8]},{"label":"XRP price","topics":"xrp,pink,promotion,triangle,thebittimes","description":"The messages from twitter about $XRP indicate that there is a lot of discussion about the current price movements and potential future trends of the cryptocurrency. Despite the volatility and dips in price, there is a sense of optimism among some traders who see this as a buying opportunity. The messages also highlight the importance of staying disciplined and not letting emotions drive investment decisions.\n\nThere is a mention of fear being loud, but utility being quiet, suggesting that focusing on the practical uses and potential of $XRP rather than getting caught up in market fluctuations is key. The messages also touch on the idea that wealth quietly changes hands during market cycles, emphasizing the importance of strategic investing.\n\nOverall, the sentiment around $XRP seems to be mixed, with some traders seeing potential for recovery and growth, while others are cautious about the current market conditions. The messages also mention technical analysis indicators and price predictions, indicating that there is a lot of analysis and speculation happening within the crypto community.","data":[8,6,3,2,14,5,8,10,4,8,5,9,14,6,7,5,9,6,5,3,1,5,23,8,6,5,4,4,8,10,3,5,7,4,2,4,12,3,10,7,4,4,6,6,5,8,4,1,7,6,8,6,1,3,11]},{"label":"Extreme winter","topics":"climate,snow,winter,warming,cold","description":"The messages from twitter are discussing various topics related to weather, climate change, and the impact of winter on different regions. There is a mix of personal experiences, concerns about global warming, and even references to pop culture like Star Wars. The conversation also touches on the use of technology like drones to deal with snowfall and the challenges faced by communities during extreme weather events.\n\nOverall, the messages highlight the diverse perspectives and experiences people have with winter and climate-related issues, showcasing a range of emotions from boredom to concern to fascination. The discussion also includes references to crypto industry trends, such as the comparison between the current \"crypto winter\" and past events like the Mt. Gox hack.","data":[4,3,3,4,6,5,2,5,17,3,5,10,12,3,5,4,3,7,6,7,10,4,3,15,2,3,5,4,6,4,7,2,6,3,7,4,0,2,12,3,5,9,3,22,8,7,3,6,6,5,3,2,14,20,8]},{"label":"Liquidations","topics":"liquidated,liquidations,longs,coinglass,liquidation","description":"The key topic currently being discussed in the crypto community on social media is the significant amount of liquidations happening in the market. Over $5 billion in crypto positions have been liquidated in the past four days, marking the largest wave of liquidations since October 10th. Traders are experiencing losses of over $1.8 billion in the past 24 hours alone, with long positions accounting for the majority of these liquidations. The market saw a peak of $2.5 billion in liquidations in just 12 hours, with one of the largest single liquidation orders totaling $222 million in ETHUSD on Hyperliquid. Traders are advised to preserve capital and avoid further risk of liquidations during this volatile period.","data":[11,2,1,2,15,3,1,2,1,3,14,7,3,6,0,2,4,4,3,2,10,1,16,2,1,5,9,59,21,16,10,1,0,5,23,0,4,1,2,3,1,0,5,5,5,2,0,2,2,7,1,3,3,4,8]},{"label":"Silver","topics":"wiping,121,1980,intraday,ounce","description":"The key topic currently being discussed on twitter is the significant drop in the price of silver. Messages are mentioning drops of 15%, 18%, 30%, 35%, and even up to 40% in a single day. The market is being described as unhealthy, with some questioning if silver is a scam or if it is being manipulated. There are concerns about the impact on the overall market, with mentions of the SPY500 pullback being imminent. Some are speculating on where the price of silver may go next, with predictions ranging from $42 to over $100. Despite the drastic drops in price, there are mentions of physical silver still being in demand. Overall, the sentiment is one of shock and concern over the volatility and rapid decline in the price of silver.","data":[4,1,0,2,2,2,3,5,7,3,17,16,4,10,4,7,5,5,1,4,4,3,11,2,4,2,2,6,2,5,2,2,7,4,10,7,20,4,6,2,4,4,6,31,1,5,2,5,18,3,3,1,1,3,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-109.ts b/priv/repo/major_topics_seed/data-109.ts deleted file mode 100644 index 2506dc83a6..0000000000 --- a/priv/repo/major_topics_seed/data-109.ts +++ /dev/null @@ -1,286 +0,0 @@ -export const NARRATIVES = { - labels: [ - '29.01.26', - '30.01.26', - '30.01.26', - '30.01.26', - '30.01.26', - '30.01.26', - '30.01.26', - '30.01.26', - '31.01.26', - '31.01.26', - '31.01.26', - '31.01.26', - '31.01.26', - '31.01.26', - '31.01.26', - '31.01.26', - '01.02.26', - '01.02.26', - '01.02.26', - '01.02.26', - '01.02.26', - '01.02.26', - '01.02.26', - '01.02.26', - '02.02.26', - '02.02.26', - '02.02.26', - '02.02.26', - '02.02.26', - '02.02.26', - '02.02.26', - '02.02.26', - '03.02.26', - '03.02.26', - '03.02.26', - '03.02.26', - '03.02.26', - '03.02.26', - '03.02.26', - '03.02.26', - '04.02.26', - '04.02.26', - '04.02.26', - '04.02.26', - '04.02.26', - '04.02.26', - '04.02.26', - '04.02.26', - '05.02.26', - '05.02.26', - '05.02.26', - '05.02.26', - '05.02.26', - '05.02.26', - '05.02.26', - ], - datasets: [ - { - label: 'Epstein files', - topics: 'emails,pages,file,doj,epsteins', - description: - "The messages from twitter are discussing the release of over 3 million pages of Epstein files by the Justice Department, the withholding of 3 million Epstein files from the public, the ties between Epstein and the legal profession, the lack of prosecution of individuals on the Epstein list, concerns about the U.S. government's response to the Epstein files, and the potential for darker secrets within the files. There are also mentions of resurfaced interview clips with Epstein, speculation about the contents of the files, and criticism of law enforcement's inaction regarding the information in the files. Additionally, there are references to the involvement of prominent figures in the Epstein scandal and the potential for further revelations to come to light.", - data: [ - 8, 17, 11, 11, 9, 9, 4, 17, 12, 19, 20, 7, 20, 21, 59, 11, 91, 16, 1, 16, 9, 16, 8, 14, 11, - 15, 10, 16, 17, 13, 17, 6, 24, 16, 17, 25, 8, 12, 24, 41, 12, 24, 15, 7, 4, 21, 11, 26, 12, - 8, 9, 14, 10, 14, 15, - ], - infofi: false, - }, - { - label: 'Kevin Warsh is the new Fed chair', - topics: 'kevin,powell,warsh,nominated,jerome', - description: - 'The messages from twitter suggest that Kevin Warsh is being considered as the next Federal Reserve Chairman. Warsh has a background in nuclear and has been praised by billionaire Ray Dalio as a "great choice" for the position. There is speculation about Warsh\'s stance on Bitcoin, with some suggesting he is more open to it than previous chairs. However, there are also concerns about his potential impact on interest rates and the balance sheet. Overall, there is a mix of optimism and skepticism surrounding Warsh\'s potential appointment as Fed Chair.', - data: [ - 10, 7, 49, 11, 16, 9, 5, 40, 13, 14, 13, 6, 7, 2, 11, 26, 11, 12, 13, 19, 14, 15, 5, 11, 8, - 13, 5, 8, 17, 22, 2, 10, 45, 87, 10, 34, 18, 13, 19, 6, 24, 43, 19, 9, 4, 14, 17, 19, 7, 6, - 10, 9, 14, 7, 8, - ], - infofi: false, - }, - { - label: 'Epstein involvement in crypto', - topics: 'satoshi,blockstream,adam,jeffrey,2014', - description: - "The messages from twitter suggest that there are discussions linking Epstein to Bitcoin and Ripple (XRP). There are mentions of Epstein's involvement in the crypto industry, including investments in Coinbase and Blockstream. Some messages imply that Bitcoin may have been compromised due to Epstein's influence. Overall, the sentiment seems to be negative towards Epstein's involvement in the crypto industry, with some questioning the integrity of certain individuals and projects.", - data: [ - 7, 11, 12, 5, 11, 11, 6, 8, 15, 16, 18, 10, 18, 16, 29, 9, 43, 24, 7, 10, 4, 5, 8, 16, 20, - 23, 9, 15, 6, 4, 14, 5, 17, 6, 4, 15, 6, 9, 12, 18, 21, 8, 9, 3, 6, 9, 16, 20, 10, 29, 14, - 7, 7, 10, 6, - ], - infofi: false, - }, - { - label: 'Hyperliquid', - topics: 'hype,hip3,buybacks,lit,hyperliquidx', - description: - 'The key topics discussed in the messages from twitter are:\n\n1. $HYPE is predicted to reach $100, with the current price holding around $33.\n2. $CYPH at $0.25 is considered a good entry point.\n3. $HYPE is seen as a strong player in the crypto market.\n4. There is anticipation for $HYPE to become a top 10 coin by the end of 2026.\n5. Buying dips in $HYPE is recommended.\n6. There is excitement about an upcoming unlock of $HYPE worth $340 million.\n7. Suggestions for $HYPE to focus on acquiring a product team and CMO to challenge Robinhood in the retail market.\n8. Stakeholders are preparing for the 7th HIP-3 deployment.\n9. Airdrops of $HYPE long positions are being offered.\n10. Analysis and trading strategies for $HYPE are being discussed.\n\nOverall, the sentiment towards $HYPE is positive, with expectations of growth and potential for success in the market.', - data: [ - 11, 14, 4, 8, 13, 6, 18, 12, 9, 8, 12, 8, 4, 10, 7, 5, 14, 5, 7, 8, 7, 11, 19, 56, 4, 12, 7, - 8, 26, 10, 7, 2, 3, 7, 8, 6, 12, 13, 14, 13, 10, 4, 12, 9, 8, 24, 6, 11, 8, 11, 15, 11, 7, - 8, 4, - ], - infofi: false, - }, - { - label: 'AI', - topics: 'rent,ais,artificial,humans,productivity', - description: - "The messages from twitter discuss the rapid advancements in AI technology and its potential impact on society. There is a sense of concern about AI potentially replacing human jobs and the implications of AI becoming more advanced. The messages also touch on the idea of AI empowering certain individuals or groups, such as young people and those with higher incomes. Additionally, there is a discussion about the intersection of AI and crypto, and the ethical considerations surrounding AI's actions. Overall, the messages highlight the complex relationship between AI, technology, and society.", - data: [ - 6, 51, 7, 4, 15, 3, 6, 8, 6, 20, 6, 5, 14, 6, 13, 7, 5, 9, 8, 12, 8, 5, 5, 10, 14, 6, 11, 7, - 7, 7, 4, 6, 16, 7, 9, 19, 9, 7, 10, 5, 10, 11, 5, 8, 6, 7, 10, 8, 3, 8, 8, 4, 7, 13, 10, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '73000,74000,70000,slides,65000', - description: - "The key topics currently discussed in the crypto community on Twitter include:\n- Bitcoin breaking below $67K and experiencing a significant drop in price\n- Speculation on the reasons behind Bitcoin's price decrease, including liquidations and market trends\n- Comparisons of Bitcoin's current price to previous highs and lows\n- Analysis of Bitcoin's price movements and potential future scenarios\n- Mention of Trump's influence on Bitcoin's price\n- Discussion of support levels and potential relief bounces\n- Galaxy Digital's warning of a potential further drop in Bitcoin's price\n\nOverall, the sentiment in the crypto community seems to be focused on the recent price drop of Bitcoin and its implications for the market.", - data: [ - 9, 2, 5, 6, 2, 26, 11, 2, 7, 5, 6, 16, 15, 66, 1, 52, 20, 4, 6, 2, 2, 6, 13, 2, 1, 2, 3, 3, - 10, 3, 2, 4, 4, 15, 5, 1, 27, 4, 9, 4, 4, 12, 3, 19, 2, 9, 3, 5, 16, 12, 1, 3, 9, 6, 4, - ], - infofi: false, - }, - { - label: 'China', - topics: 'chinas,chinese,yuan,china,taiwan', - description: - "The messages from twitter highlight the ongoing battle between the US and China, with discussions about various topics such as Chinese gold purchases, China's electricity generation growth, the rise of the Chinese yuan, and China's focus on gold over Bitcoin. There are also mentions of Chinese government tactics, such as flooding search results with porn during political unrest, and concerns about CCP spies embedded within tech companies. Overall, the messages reflect a mix of geopolitical tensions, economic analysis, and technological espionage related to China.", - data: [ - 5, 10, 5, 8, 7, 1, 8, 10, 20, 17, 8, 4, 11, 12, 9, 14, 12, 6, 11, 13, 5, 5, 7, 7, 11, 9, 10, - 5, 5, 4, 11, 5, 14, 6, 6, 12, 9, 13, 6, 4, 10, 21, 8, 10, 12, 10, 4, 3, 3, 8, 7, 7, 7, 11, - 8, - ], - infofi: false, - }, - { - label: 'Saylor', - topics: 'saylors,saylor,michael,underwater,855', - description: - 'The key topics discussed about Michael Saylor in the crypto community include his significant losses on Bitcoin, his early involvement in Bitcoin, his potential liquidation, his ongoing support for Bitcoin despite market turmoil, and his large accumulation of BTC. Some users express concern about his financial situation, while others admire his long-standing conviction in Bitcoin. Overall, there is a mix of admiration and skepticism towards Saylor in the crypto community.', - data: [ - 4, 3, 10, 19, 15, 24, 16, 8, 7, 10, 3, 6, 8, 14, 4, 7, 8, 3, 4, 19, 3, 10, 14, 3, 5, 5, 6, - 14, 6, 3, 12, 3, 2, 9, 4, 8, 16, 7, 6, 6, 12, 31, 4, 8, 9, 7, 2, 9, 3, 6, 9, 4, 4, 8, 8, - ], - infofi: false, - }, - { - label: 'SpaceX x xAI', - topics: 'merger,xai,merge,spacex,musks', - description: - "The key topic currently discussed in the messages from twitter is the potential merger between SpaceX and xAI, with Elon Musk planning to combine the two companies. The merger is valued at $1.25 trillion and could potentially lead to a $2 trillion deal involving Tesla as well. There is speculation about SpaceX's IPO and its potential valuation, with some estimating it to be over $1.75 trillion. The merger is seen as a move to support Musk's ambitions in AI and space exploration. Overall, the discussions revolve around the financial implications and potential synergies of the merger between SpaceX, xAI, and Tesla.", - data: [ - 35, 12, 8, 5, 4, 4, 5, 8, 12, 21, 4, 2, 3, 4, 10, 5, 7, 1, 6, 8, 1, 3, 6, 6, 16, 5, 7, 2, 3, - 4, 43, 11, 7, 7, 8, 7, 7, 5, 9, 14, 4, 4, 4, 0, 9, 8, 6, 15, 0, 9, 8, 6, 2, 8, 7, - ], - infofi: false, - }, - { - label: 'Vitalik Buterin on L2s', - topics: 'l2s,l2,l1,l1s,scaling', - description: - "Based on the messages from twitter, it seems that the discussion around Layer 2 solutions (L2s) in the crypto industry is focused on the need for specialization and differentiation among L2 projects. There is a sentiment that L2s should not simply replicate Ethereum but instead offer unique value propositions and cater to specific use cases. The idea of L2s being websites tailored to specific needs is emphasized, highlighting the importance of customization and flexibility.\n\nThere is also a mention of the importance of Ethereum's base layer values and network effects in terms of liquidity. The debate around the scalability and viability of L2s continues, with some expressing skepticism while others remain optimistic about the future of L2 technology. Overall, the key takeaway is that L2s should focus on specialization and providing unique value propositions rather than simply trying to scale Ethereum.", - data: [ - 11, 4, 5, 4, 4, 2, 10, 13, 5, 5, 6, 7, 6, 11, 10, 6, 7, 12, 6, 5, 10, 6, 8, 7, 5, 12, 9, 3, - 9, 5, 3, 9, 19, 2, 10, 9, 5, 7, 10, 6, 22, 22, 6, 6, 4, 5, 6, 11, 8, 5, 5, 14, 7, 5, 5, - ], - infofi: false, - }, - { - label: 'ICE action and protests', - topics: 'minneapolis,alien,ice,protesters,officers', - description: - "The messages from twitter are discussing various incidents and developments related to ICE (Immigration and Customs Enforcement) and anti-ICE protests. There are mentions of violent confrontations between protesters and federal agents, arrests of individuals involved in anti-ICE activities, criticism of ICE's deportation numbers, and clashes between law enforcement and protesters. The messages also touch on the actions of ICE officers in different locations, such as arrests during targeted enforcement operations and community outreach efforts. Additionally, there are references to political figures announcing plans to reduce ICE manpower in certain areas. Overall, the messages highlight the ongoing tensions and controversies surrounding ICE and anti-ICE activism.", - data: [ - 5, 32, 43, 5, 2, 7, 1, 10, 6, 8, 16, 3, 20, 6, 4, 6, 3, 3, 3, 2, 4, 3, 2, 7, 8, 4, 11, 2, 1, - 10, 10, 2, 3, 14, 4, 5, 10, 24, 3, 8, 7, 9, 6, 2, 6, 6, 10, 5, 5, 0, 1, 9, 5, 10, 1, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'roblox,games,gaming,gamefi,gamers', - description: - 'The messages from twitter highlight discussions about the gaming industry, including the difference between speculation and building real gaming ecosystems. There is mention of new game releases, partnerships to enhance gaming experiences, and the evolution of gaming over time. Additionally, there are references to the use of AI in game creation, the impact of different game engines, and the potential for high-quality games in the future. The messages also touch on the financial aspects of gaming, such as making money through game development and selling games for significant amounts. Overall, the messages reflect a mix of excitement, analysis, and anticipation for the future of gaming.', - data: [ - 4, 5, 6, 2, 4, 1, 7, 6, 3, 3, 13, 6, 4, 2, 7, 5, 10, 3, 51, 5, 4, 6, 6, 6, 11, 6, 4, 9, 8, - 4, 3, 4, 12, 7, 6, 34, 5, 5, 3, 4, 3, 1, 8, 3, 4, 6, 5, 5, 6, 6, 7, 12, 11, 2, 5, - ], - infofi: false, - }, - { - label: 'SOL price', - topics: 'sol,2030,td,standard,96', - description: - "The messages from twitter indicate that the $SOL cryptocurrency is experiencing significant price fluctuations and volatility. There are mentions of buy orders being set, price drops to lows not seen in years, and potential support levels around $20-$23. Traders are closely watching key levels such as $107, $120, and $75 for potential bounce opportunities or further downside risk. Institutional investors and market analysts are also discussing the potential for $SOL to continue dropping, with some suggesting that it could reach as low as $0 in the near future. Overall, sentiment towards $SOL appears to be mixed, with some traders remaining bullish while others are more cautious about the cryptocurrency's future performance.", - data: [ - 5, 3, 7, 3, 9, 14, 10, 8, 5, 10, 3, 4, 6, 12, 1, 8, 8, 8, 7, 12, 5, 4, 8, 4, 3, 4, 3, 6, 11, - 6, 8, 1, 4, 5, 1, 3, 6, 4, 13, 1, 4, 8, 10, 34, 7, 11, 4, 8, 4, 5, 9, 10, 6, 5, 8, - ], - infofi: false, - }, - { - label: 'Vibe coding', - topics: 'vibe,coding,coded,vibes,0g', - description: - 'The key topics discussed in the messages from twitter are:\n- Vibe coding and its popularity among developers\n- The use of AI in coding and app development\n- The future of coding and app development\n- Tools and platforms favored by vibe coders\n- The excitement and satisfaction of vibe coding\n- The potential impact of AI on various industries\n- The importance of building connections and community within the coding ecosystem\n- Controversial predictions and discussions about AI and technology\n- Personal experiences and achievements in vibe coding journey', - data: [ - 8, 5, 3, 3, 5, 5, 7, 3, 29, 6, 4, 6, 6, 1, 5, 4, 3, 4, 2, 9, 5, 8, 1, 10, 5, 8, 3, 5, 3, 4, - 2, 5, 3, 5, 4, 7, 3, 4, 4, 5, 7, 4, 2, 2, 3, 3, 3, 6, 10, 3, 8, 91, 10, 3, 6, - ], - infofi: false, - }, - { - label: 'Trump', - topics: 'realdonaldtrump,eric,helped,anybody,presidents', - description: - 'The messages from twitter suggest that there is a lot of discussion and speculation surrounding Donald Trump and his involvement in the crypto industry. Some users seem to be critical of Trump\'s influence on the market, suggesting that his actions and statements have negatively impacted the prices of various assets such as Bitcoin and metals. However, there are also mentions of Trump being supportive of crypto and launching his own coin, "United States of America" ($USA). Overall, the sentiment towards Trump in the crypto community appears to be mixed, with some viewing him as a positive force and others as a negative influence.', - data: [ - 4, 6, 5, 4, 16, 6, 2, 14, 4, 7, 16, 2, 9, 3, 10, 9, 8, 5, 4, 9, 5, 11, 5, 5, 2, 9, 15, 5, 5, - 3, 6, 5, 7, 9, 4, 4, 9, 6, 6, 6, 13, 16, 4, 4, 0, 6, 5, 5, 7, 14, 3, 2, 6, 5, 4, - ], - infofi: false, - }, - { - label: 'Bitcoin as money', - topics: 'pleb,bitcointwitter,bitcoiners,jack,monetary', - description: - "The messages from twitter mainly focus on the importance and potential of Bitcoin in the global financial system. There is a discussion about Bitcoin becoming more scarce, its role in financial literacy, and its ability to disrupt traditional financial institutions. The messages also touch upon the energy consumption of Bitcoin mining, the rejection of Bitcoin by institutions, and the idea that only hodlers remain in the Bitcoin community.\n\nThere is a strong belief in the transformative power of Bitcoin, with mentions of it being a sovereign asset, a tool to reduce incentives for wars, and a way to empower the middle and lower classes financially. The messages also highlight the importance of understanding Bitcoin's underlying technology and its potential to change society for the better.\n\nOverall, the messages convey a sense of optimism and belief in the long-term potential of Bitcoin as a decentralized and trustworthy form of money.", - data: [ - 4, 5, 6, 8, 8, 17, 1, 7, 6, 3, 1, 8, 11, 4, 10, 7, 5, 3, 6, 3, 5, 5, 6, 8, 11, 7, 7, 5, 5, - 3, 7, 7, 8, 1, 5, 14, 6, 9, 11, 4, 11, 9, 7, 1, 5, 11, 4, 7, 5, 4, 14, 3, 6, 6, 8, - ], - infofi: false, - }, - { - label: 'XRP price', - topics: 'xrp,pink,promotion,triangle,thebittimes', - description: - 'The messages from twitter about $XRP indicate that there is a lot of discussion about the current price movements and potential future trends of the cryptocurrency. Despite the volatility and dips in price, there is a sense of optimism among some traders who see this as a buying opportunity. The messages also highlight the importance of staying disciplined and not letting emotions drive investment decisions.\n\nThere is a mention of fear being loud, but utility being quiet, suggesting that focusing on the practical uses and potential of $XRP rather than getting caught up in market fluctuations is key. The messages also touch on the idea that wealth quietly changes hands during market cycles, emphasizing the importance of strategic investing.\n\nOverall, the sentiment around $XRP seems to be mixed, with some traders seeing potential for recovery and growth, while others are cautious about the current market conditions. The messages also mention technical analysis indicators and price predictions, indicating that there is a lot of analysis and speculation happening within the crypto community.', - data: [ - 8, 6, 3, 2, 14, 5, 8, 10, 4, 8, 5, 9, 14, 6, 7, 5, 9, 6, 5, 3, 1, 5, 23, 8, 6, 5, 4, 4, 8, - 10, 3, 5, 7, 4, 2, 4, 12, 3, 10, 7, 4, 4, 6, 6, 5, 8, 4, 1, 7, 6, 8, 6, 1, 3, 11, - ], - infofi: false, - }, - { - label: 'Extreme winter', - topics: 'climate,snow,winter,warming,cold', - description: - 'The messages from twitter are discussing various topics related to weather, climate change, and the impact of winter on different regions. There is a mix of personal experiences, concerns about global warming, and even references to pop culture like Star Wars. The conversation also touches on the use of technology like drones to deal with snowfall and the challenges faced by communities during extreme weather events.\n\nOverall, the messages highlight the diverse perspectives and experiences people have with winter and climate-related issues, showcasing a range of emotions from boredom to concern to fascination. The discussion also includes references to crypto industry trends, such as the comparison between the current "crypto winter" and past events like the Mt. Gox hack.', - data: [ - 4, 3, 3, 4, 6, 5, 2, 5, 17, 3, 5, 10, 12, 3, 5, 4, 3, 7, 6, 7, 10, 4, 3, 15, 2, 3, 5, 4, 6, - 4, 7, 2, 6, 3, 7, 4, 0, 2, 12, 3, 5, 9, 3, 22, 8, 7, 3, 6, 6, 5, 3, 2, 14, 20, 8, - ], - infofi: false, - }, - { - label: 'Liquidations', - topics: 'liquidated,liquidations,longs,coinglass,liquidation', - description: - 'The key topic currently being discussed in the crypto community on social media is the significant amount of liquidations happening in the market. Over $5 billion in crypto positions have been liquidated in the past four days, marking the largest wave of liquidations since October 10th. Traders are experiencing losses of over $1.8 billion in the past 24 hours alone, with long positions accounting for the majority of these liquidations. The market saw a peak of $2.5 billion in liquidations in just 12 hours, with one of the largest single liquidation orders totaling $222 million in ETHUSD on Hyperliquid. Traders are advised to preserve capital and avoid further risk of liquidations during this volatile period.', - data: [ - 11, 2, 1, 2, 15, 3, 1, 2, 1, 3, 14, 7, 3, 6, 0, 2, 4, 4, 3, 2, 10, 1, 16, 2, 1, 5, 9, 59, - 21, 16, 10, 1, 0, 5, 23, 0, 4, 1, 2, 3, 1, 0, 5, 5, 5, 2, 0, 2, 2, 7, 1, 3, 3, 4, 8, - ], - infofi: false, - }, - { - label: 'Silver', - topics: 'wiping,121,1980,intraday,ounce', - description: - 'The key topic currently being discussed on twitter is the significant drop in the price of silver. Messages are mentioning drops of 15%, 18%, 30%, 35%, and even up to 40% in a single day. The market is being described as unhealthy, with some questioning if silver is a scam or if it is being manipulated. There are concerns about the impact on the overall market, with mentions of the SPY500 pullback being imminent. Some are speculating on where the price of silver may go next, with predictions ranging from $42 to over $100. Despite the drastic drops in price, there are mentions of physical silver still being in demand. Overall, the sentiment is one of shock and concern over the volatility and rapid decline in the price of silver.', - data: [ - 4, 1, 0, 2, 2, 2, 3, 5, 7, 3, 17, 16, 4, 10, 4, 7, 5, 5, 1, 4, 4, 3, 11, 2, 4, 2, 2, 6, 2, - 5, 2, 2, 7, 4, 10, 7, 20, 4, 6, 2, 4, 4, 6, 31, 1, 5, 2, 5, 18, 3, 3, 1, 1, 3, 4, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-11.json b/priv/repo/major_topics_seed/data-11.json deleted file mode 100644 index 5746c11e18..0000000000 --- a/priv/repo/major_topics_seed/data-11.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["14.03.24","15.03.24","15.03.24","15.03.24","15.03.24","15.03.24","15.03.24","15.03.24","16.03.24","16.03.24","16.03.24","16.03.24","16.03.24","16.03.24","16.03.24","16.03.24","17.03.24","17.03.24","17.03.24","17.03.24","17.03.24","17.03.24","17.03.24","17.03.24","18.03.24","18.03.24","18.03.24","18.03.24","18.03.24","18.03.24","18.03.24","18.03.24","19.03.24","19.03.24","19.03.24","19.03.24","19.03.24","19.03.24","19.03.24","19.03.24","20.03.24","20.03.24","20.03.24","20.03.24","20.03.24","20.03.24","20.03.24","20.03.24","21.03.24","21.03.24","21.03.24","21.03.24","21.03.24","21.03.24","21.03.24"],"datasets":[{"label":"BTC & Fiat","topics":"fiat,bitcoin,money,currency,understand","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- The potential dangers of Farfetch accepting Bitcoin as a form of payment\n- The difficulty adjustment of Bitcoin and various explanations for it\n- Concerns about the security of SHA-256 and the potential for hacking Bitcoin rewards\n- The implications of wealthy and powerful governments versus small and helpful governments on a fiat currency standard versus a Bitcoin standard\n- The impact of Bitcoin scaling on other cryptocurrencies like Litecoin, Bitcoin Cash, Zcash, and Monero\n- The narrative of Bitcoin infiltrating Wall Street and traditional finance institutions\n- The challenges and strategies for holding Bitcoin, including cold storage, ETFs, and borrowing against Bitcoin\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and strategic thinking around the future of Bitcoin and its role in the financial landscape.","data":[27,17,21,50,111,67,15,25,24,30,16,29,21,25,18,23,16,30,40,27,21,21,34,31,17,34,19,34,30,30,26,28,23,37,10,18,48,26,23,20,28,21,32,20,30,21,33,25,37,21,34,17,23,28,39]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The key topics currently being discussed on social media about the crypto industry include meme coins, AI memecoins, new meme coin launches, meme coin wealth, top meme coins to buy, Reddit discussions on equities vs meme coins, altcoin traders' love for meme coins, liquidity issues affecting meme coins, racism in the crypto community, fake social media personas in trading, and the potential for a new Layer 2 meme coin. Overall, there is a mix of excitement, skepticism, and caution surrounding meme coins and their impact on the crypto market.","data":[4,5,8,11,1,0,8,6,16,9,9,7,11,6,11,8,6,9,14,8,8,17,8,9,15,14,5,8,12,15,18,94,42,12,9,4,11,12,3,13,4,10,7,10,6,8,13,7,10,11,12,3,5,8,12]},{"label":"Dips","topics":"dip,dips,buy,buying,bull","description":"The key topics currently discussed in the crypto industry on social media include buying the dip, taking profits, market trends, trading strategies, market manipulation, and indicators of market direction. Traders are discussing the importance of buying the dip during a parabolic trend, the significance of specific price goals in portfolios, the emotions of bears in a bull market, and the stages of crypto enlightenment. Additionally, there is mention of price action trading tips, including the importance of patience and volume spikes. Overall, the sentiment seems to be focused on strategic trading decisions and staying informed about market movements.","data":[8,5,3,7,1,1,4,65,24,6,1,8,6,2,44,11,4,5,6,8,6,16,20,7,12,4,9,8,11,18,13,4,7,4,6,10,10,4,13,8,14,11,11,18,14,7,15,8,14,11,7,4,11,10,7]},{"label":"GameFi","topics":"gaming,game,games,gamefi,web3","description":"The messages from twitter are discussing various topics related to the crypto industry and gaming. Some key words mentioned include game, NFTs, blockchain adoption, gaming partnerships, guilds, Atari, video games, Solana, AI, and GameFi. The messages also mention specific projects and companies such as The Sandbox Game, Sidus Heroes, SquareEnix, HyperPlayGaming, Parallel Colony, and Thetan World. Overall, the discussions revolve around the intersection of gaming, blockchain technology, and financial opportunities within the crypto industry.","data":[7,3,10,8,0,6,2,5,11,23,14,8,2,3,5,9,3,9,6,4,65,8,5,2,9,1,10,8,7,6,9,4,6,4,6,5,6,25,3,9,2,12,9,2,6,12,10,5,9,4,3,4,9,11,7]},{"label":"Art","topics":"art,artists,artist,piece,artwork","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Creating art and the importance of art in daily life\n- The value of art and the process of collecting art\n- Digital art platforms and events like Art Basel Hong Kong\n- Appreciation for different forms of art such as fine art, calligraphy, and digital art\n- The distinction between art collectors and art traders\n- The influence of music on art inspiration\n- The cost and production process of traditional Japanese calligraphy ink\n- The excitement around new art releases and collaborations in the art community\n\nOverall, the messages reflect a diverse range of interests and discussions related to art within the crypto industry.","data":[5,8,69,7,0,1,4,5,6,8,13,9,8,6,10,9,3,3,9,7,5,6,12,7,4,13,4,2,7,10,18,4,4,6,8,7,11,3,4,3,8,4,4,7,7,8,5,7,8,4,5,5,13,6,7]},{"label":"ETH","topics":"eth,ethereum,4000,price,short","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum (ETH) price movements and potential future price predictions\n- Speculation on whether ETH will reach new all-time highs\n- Analysis of ETH technical indicators such as Elliott Wave and 4H200EMA\n- Comparison of ETH returns to previous years and potential future price targets\n- Concerns about decreasing volume and selling pressure on ETH\n- Whales taking profit on Ethereum and its impact on the overall cryptocurrency market\n- The influence of Bitcoin on the crypto market as a whole\n\nOverall, the sentiment seems to be mixed with some users optimistic about ETH's potential for growth while others are cautious about the current market conditions and potential price declines.","data":[6,2,5,5,0,1,5,0,4,6,7,2,9,4,3,4,74,2,2,4,3,6,2,1,5,3,6,3,11,9,3,2,1,11,3,3,2,4,12,4,5,6,2,8,3,7,0,7,3,5,6,3,3,3,2]},{"label":"NFT","topics":"nfts,nft,collection,dead,hybrid","description":"The key topics currently discussed in the crypto industry on social media include the rise of NFTs, the impact of airdrops on NFT project value, the state of ETH NFTs, the importance of community engagement for NFT projects, the potential for NFTs with historical significance and real utility to drive the market, and the concept of modular NFTs. Users are discussing the buying and selling of NFTs, the creation of NFTs without gas fees, the use of NFTs in art and media, and the potential for NFTs to hold value through royalties. Additionally, there is a focus on the quality and uniqueness of NFTs, as well as the potential for NFTs to be used in various industries such as retail and art.","data":[2,1,1,1,0,0,1,4,1,3,8,2,1,8,4,8,5,3,10,6,5,2,4,3,4,3,4,5,0,8,4,4,6,8,15,4,4,1,6,4,5,1,6,5,3,3,1,3,5,4,6,3,1,4,5]},{"label":"AI","topics":"ai,san,jobs,fintech,agent","description":"The key topics currently being discussed in the crypto industry on social media include the impact of AI on jobs, the development of AI chips, the potential for AI to surpass human intelligence, the use of AI in threat detection for web3, the success of AI companies outside of San Francisco, and the integration of AI agents in various applications. There is also mention of a crypto AI token airdrop and the potential for UAE to play a key role in OpenAI's success with developing its own AI chips. Overall, the conversation revolves around the rapid advancement and integration of AI technology in the crypto industry.","data":[15,14,3,3,0,1,2,2,2,2,2,3,3,1,7,4,0,5,4,4,3,3,1,6,1,10,5,4,3,7,5,4,3,3,2,2,1,5,5,3,2,3,7,3,4,5,5,5,4,2,5,2,3,1,4]},{"label":"Slerf","topics":"slerf,slerfsol,dev,10m,presale","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the launch of a new Solana-based memecoin called SLERF, which has gained attention from whales and investors. There are discussions about the challenges faced by SLERF after the developer accidentally burnt a major portion of the token supply, resulting in a $10 million loss for presale participants. Despite this setback, SLERF has become the 8th meme coin by capitalization and is being traded on platforms like LBank with up to 50x leverage. There are also debates about meme culture in the crypto industry and how SLERF fits into this landscape. Additionally, there are mentions of other projects like Zeus NetworkHQ on Solana that investors are bullish on. Overall, the crypto community is closely following the developments and potential opportunities in the meme coin space, particularly with projects like SLERF gaining traction.","data":[5,2,1,5,0,1,2,4,5,2,5,3,3,2,3,0,0,2,4,4,1,2,3,1,6,3,9,3,8,3,5,8,9,3,9,2,3,1,6,3,5,4,4,1,19,4,3,3,1,5,6,3,3,1,0]},{"label":"Blackrock & Tokenization","topics":"blackrock,tokenized,fund,tokenization,asset","description":"The key topic being discussed on Twitter is BlackRock's involvement in the crypto industry, specifically their launch of tokenized funds on the Ethereum network. BlackRock has partnered with companies like Securitize and Coinbase to provide infrastructure for these tokenized investment funds. This move by BlackRock signifies a shift towards tokenization in traditional finance, with other major players like Goldman Sachs and BNY Mellon also exploring blockchain technology for asset tokenization. The community is excited about the potential of these developments and the opportunities they may bring for investors.","data":[4,5,1,5,1,37,7,2,0,2,1,4,3,6,0,2,7,1,3,4,3,1,1,3,1,7,3,12,3,0,1,0,1,0,2,2,1,5,2,2,1,1,2,3,0,6,4,6,1,17,2,5,3,1,4]},{"label":"DOGE","topics":"doge,dogecoin,prediction,projection,whale","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin ($DOGE) price movement and projections\n- Dogecoin Founder Billy Markus issuing a statement on the recent crypto crash\n- Search volume increasing for \"doge stock price\"\n- Speculation on whether Dogecoin price can hit $1 in March\n- Dogecoin climbing on futures hopes and Bitcoin nearing $68K\n- Predictions of Dogecoin reaching $0.25 before summer and end-of-year rally\n- Discussion about a potential new project called #DollarMoon with high growth potential\n\nOverall, the sentiment towards Dogecoin seems positive with expectations of price increases and potential for significant gains in the future.","data":[4,1,1,2,0,0,2,0,2,3,2,2,0,3,89,1,1,4,4,1,1,3,0,2,4,1,0,1,0,5,0,1,2,0,2,1,2,0,1,4,2,3,2,6,1,0,0,3,2,0,1,2,1,1,2]},{"label":"SHIBA","topics":"shiba,inu,shib,predicts,dogecoin","description":"The key topics currently discussed in the crypto industry on social media accounts include:\n- Shiba Inu coin experiencing spikes and sharp declines in the market\n- Updates on the Shiba Inu team and community, including the release of 'The Shib' magazine\n- Speculation on Shiba Inu potentially overtaking Dogecoin\n- Price analysis and predictions for Shiba Inu coin\n- Updates on Shibarium explorer and its usability improvements\n- Updates on other cryptocurrencies such as Aptos (APT) and Indigo Protocol (INDY)\n- Significant internal move at Y Combinator (YC) with Michael Seibel moving back to group partner role\n- Anticipation for big news related to Shiba Inu coin and potential price movements\n\nOverall, the discussions on social media platforms suggest a mix of excitement, speculation, and analysis surrounding various cryptocurrencies, with a focus on Shiba Inu coin and its market performance.","data":[1,5,1,6,0,0,7,1,1,1,9,2,9,4,10,0,0,5,1,6,0,0,1,2,1,2,32,2,0,0,0,2,2,1,2,1,0,1,3,1,1,0,1,23,3,1,1,3,0,2,1,1,1,2,1]},{"label":"DEX","topics":"dex,decentralized,dydx,ecosystem,gaming","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Conflux aiming for a Q2 launch of a HKD-pegged stablecoin with AnchorX.\n2. Reddit's decentralized platform for the people, by the people.\n3. KuCoin supporting the rebranding of Proton to XPR Network.\n4. Rexx Coin's diverse ecosystem and comprehensive solutions.\n5. LCX Thrive campaign offering rewards for completing KYC.\n6. RaysX bringing evolution to DeFi with Gamefi and Ai.\n7. Decubate Token (DCB) listing on LBank.\n8. XPR Network being a solid company with potential for growth.\n9. OpenEX Network's Mainnet TGE in progress.\n10. How to buy/trade Rexx Coin on XT.com Exchange.\n11. Comparison of Unizen and 1inch swap returns.\n12. Partnership between Retreeb and Carbonable for sustainable Web3 initiatives.","data":[2,2,1,2,0,0,1,1,2,5,4,4,2,5,5,3,1,3,3,2,4,1,2,0,0,0,8,5,1,4,2,1,0,1,8,6,0,3,3,3,3,16,2,0,1,6,2,1,3,2,5,5,4,1,4]},{"label":"DeFi","topics":"defi,protocols,finance,69,injective","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Keyring raising $6M to unlock DeFi for institutions\n- Introduction of CeDeFiAi, a platform combining DeFi and CeFi\n- Institutional adoption of crypto assets and decentralized finance\n- Ethereum DeFi waking up to Bitcoin\n- Introduction of SatoshiSync project\n- Decentralized science using blockchain benefits\n- Investfi revolutionizing investment management with a De-Fi platform\n- Dyor building a DeFi and Web3 investing app\n- Kattana as a trading terminal for DeFi\n- DeFi reshaping finance and challenging the eurodollar system\n- 1ON8 Trading Competition offering $12,000 rewards\n\nThese topics highlight the ongoing innovation and development within the crypto industry, particularly in the realm of decentralized finance and institutional adoption.","data":[1,3,2,2,1,2,2,1,1,2,2,2,4,12,1,3,2,3,4,4,4,0,1,2,5,6,9,5,3,3,2,1,2,1,6,2,0,0,7,8,5,6,1,0,1,3,3,0,1,1,1,5,2,3,2]},{"label":"PePe","topics":"pepe,frog,frens,trader,og","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- $PEPE and its potential for growth and profit\n- The launch of $UCIT and rumors surrounding it\n- The OG Pepe Project and its mysterious origins\n- The celebration of World Frog Day and the connection to @pepecoineth\n- The Alt Coin $PEPE and its trading setup and potential\n- The impact of the #DencunUpgrade on #ETH gas fees and the push for #Ethereum #MemeTokens\n- The introduction to xcp and rare Pepe, and the fear of new communities\n- Giveaway winners for Pepe Coin and the excitement surrounding the prize pool\n\nOverall, the discussions on Twitter show a mix of excitement, speculation, and community engagement within the crypto industry, particularly focusing on specific coins like $PEPE and $UCIT, as well as broader topics like Ethereum and rare Pepe collectibles.","data":[4,0,0,1,0,1,1,1,0,3,5,2,1,2,3,1,3,4,4,4,3,3,0,4,5,1,0,3,1,4,1,2,0,1,2,2,34,0,1,3,7,4,2,4,4,0,1,2,2,0,1,3,4,1,2]},{"label":"Solana prices","topics":"sol,200,solana,blue,resistance","description":"The key topics currently being discussed in the crypto community on Twitter regarding Solana ($SOL) include:\n- Speculation on a new NFT bull market on Solana due to Coinbase's continuous buying of $SOL and significant earnings by lenders on Solend.\n- Price predictions for $SOL, with a target of $258 and discussions on its recent price surge.\n- Excitement over Solana's potential and progress, such as the firedancer testnet and reaching new all-time highs.\n- Analysis of $SOL's price movements amidst market dips, regulatory challenges, and competition.\n- Interest in Google Trends data showing a peak in searches for #Solana.\n- Traders discussing potential buying opportunities at different price levels, such as $140 and $150, with the goal of reaching $200+.\nOverall, the sentiment appears to be bullish on Solana, with optimism about its future growth and potential to surpass Ethereum.","data":[1,4,1,2,0,0,4,0,1,0,4,2,0,1,1,3,1,2,0,0,1,2,1,3,5,2,0,0,5,0,1,4,4,2,3,1,3,3,9,1,0,5,3,3,35,1,3,4,6,3,3,2,1,0,1]},{"label":"HEX and Pulsechain","topics":"hex,pulsechain,richard,pls,heart","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. PulseChain and its associated coins such as $PLS, $HEX, $PLSX, and $GENE.\n2. Comparison between Bitcoin prices and PulseChain Coins.\n3. Emotional cycles and community sentiment within the PulseChain Community.\n4. Transaction fees and gas load issues on Ethereum, particularly related to $HEX and $eHEX.\n5. Price action and indicators for $HEX, including the SuperTrend indicator.\n6. Influence of influencers and YouTubers on the perception of $HEX.\n7. Potential denial phase and faith in PulseChain coins.\n8. Comparison between BNB and HEX charts.\n9. Impact of the PulseChain Sacrifice Wallet on the ecosystem.\n10. Speculation on future price movements and trends for $HEX and other PulseChain coins.\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, community sentiment, and speculation surrounding various cryptocurrencies within the crypto industry, particularly focusing on PulseChain and its associated coins.","data":[2,1,1,1,1,0,7,0,1,2,0,5,2,1,4,3,2,3,0,2,0,1,2,8,2,2,2,1,2,2,3,3,0,1,1,1,4,8,0,14,2,1,3,3,1,0,1,3,3,3,2,2,4,1,4]},{"label":"BOME","topics":"bome,darkfarms1,1b,book,listed","description":"The key topics currently being discussed in the crypto community on Twitter include the rapid rise of the $BOME token, which went from $0 to $1.6 billion in just 2 days. There is speculation about the team behind $BOME and its potential impact on the market. Some users are questioning whether $BOME is the \"next big thing\" or a potential rug pull. The token has been listed on major exchanges like BTSE and Binance, with trading pairs available for spot trading. Additionally, there is excitement surrounding the artist @DarkFarms1, who is associated with the $BOME token project on the Solana blockchain. Overall, there is a mix of enthusiasm and caution surrounding $BOME and its rapid growth in the crypto market.","data":[3,0,0,0,0,0,37,0,0,1,2,0,2,0,2,2,0,2,1,1,4,3,0,2,3,2,1,2,7,1,1,1,1,4,4,4,0,0,0,2,0,2,4,1,0,1,3,4,1,2,0,3,2,2,3]},{"label":"SOL vs ETH","topics":"solana,solanas,ux,ethereum,ethereums","description":"The messages from Twitter suggest a growing debate and interest in the competition between Solana and Ethereum within the crypto industry. Some users believe that Solana will outperform Ethereum, citing its focus on usability and user experience over research papers. Others argue that Ethereum's Layer 2 solutions will ultimately capture Solana's market share. Despite this debate, Solana has recently hit new highs in terms of price and volume, indicating strong performance in the market. Additionally, there is discussion about the potential for Solana to revolutionize the internet and change the way content is owned and distributed online. Overall, the messages reflect a dynamic and competitive landscape in the crypto industry, with both Solana and Ethereum being seen as worthy opponents with unique strengths and capabilities.","data":[2,1,1,0,0,2,1,3,1,2,1,2,4,1,1,6,6,5,1,3,4,2,2,3,0,2,0,2,0,1,1,2,0,3,2,5,2,3,3,4,2,3,0,1,1,3,4,3,4,0,3,6,2,0,2]},{"label":"Nvidia","topics":"nvidia,nvda,gpu,chip,ai","description":"The key topics discussed in the messages from Twitter are:\n1. Bitcoin as sound money and Nvidia as a pick & shovel for AI\n2. Nvidia unveiling the \"world's most powerful\" AI chip\n3. Buying AI coins for quick profits\n4. Nvidia's CUDA technology and its advantage in hardware and software engineering\n5. Stock performance of companies like AMD, HON, HPQ, IBM, MSI, BIDU, and DELL\n6. Comparison between meme coin NVEDUA and real stock NVDIA\n7. Excitement over new computer with customizable features and external graphics card\n8. Golem Network's vision for revolutionizing computing power in the AI industry\n9. Nvidia's Project Gr00t for robotic AI and Apple Vision Pro integration\n10. Performance comparison between AMD and M2 MacBook Air\n11. Partnership between Golem Network and GamerHashCom to provide GPU resources to the AI industry.","data":[2,5,2,2,2,1,1,0,1,1,1,4,0,1,1,0,1,3,0,0,8,5,3,4,1,2,3,0,0,3,0,3,1,5,5,3,2,1,2,0,2,4,2,0,5,0,2,2,1,1,1,7,0,2,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-11.ts b/priv/repo/major_topics_seed/data-11.ts deleted file mode 100644 index 83b5ab6ecf..0000000000 --- a/priv/repo/major_topics_seed/data-11.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '14.03.24', - '15.03.24', - '15.03.24', - '15.03.24', - '15.03.24', - '15.03.24', - '15.03.24', - '15.03.24', - '16.03.24', - '16.03.24', - '16.03.24', - '16.03.24', - '16.03.24', - '16.03.24', - '16.03.24', - '16.03.24', - '17.03.24', - '17.03.24', - '17.03.24', - '17.03.24', - '17.03.24', - '17.03.24', - '17.03.24', - '17.03.24', - '18.03.24', - '18.03.24', - '18.03.24', - '18.03.24', - '18.03.24', - '18.03.24', - '18.03.24', - '18.03.24', - '19.03.24', - '19.03.24', - '19.03.24', - '19.03.24', - '19.03.24', - '19.03.24', - '19.03.24', - '19.03.24', - '20.03.24', - '20.03.24', - '20.03.24', - '20.03.24', - '20.03.24', - '20.03.24', - '20.03.24', - '20.03.24', - '21.03.24', - '21.03.24', - '21.03.24', - '21.03.24', - '21.03.24', - '21.03.24', - '21.03.24', - ], - datasets: [ - { - label: 'BTC & Fiat', - topics: 'fiat,bitcoin,money,currency,understand', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- The potential dangers of Farfetch accepting Bitcoin as a form of payment\n- The difficulty adjustment of Bitcoin and various explanations for it\n- Concerns about the security of SHA-256 and the potential for hacking Bitcoin rewards\n- The implications of wealthy and powerful governments versus small and helpful governments on a fiat currency standard versus a Bitcoin standard\n- The impact of Bitcoin scaling on other cryptocurrencies like Litecoin, Bitcoin Cash, Zcash, and Monero\n- The narrative of Bitcoin infiltrating Wall Street and traditional finance institutions\n- The challenges and strategies for holding Bitcoin, including cold storage, ETFs, and borrowing against Bitcoin\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and strategic thinking around the future of Bitcoin and its role in the financial landscape.', - data: [ - 27, 17, 21, 50, 111, 67, 15, 25, 24, 30, 16, 29, 21, 25, 18, 23, 16, 30, 40, 27, 21, 21, 34, - 31, 17, 34, 19, 34, 30, 30, 26, 28, 23, 37, 10, 18, 48, 26, 23, 20, 28, 21, 32, 20, 30, 21, - 33, 25, 37, 21, 34, 17, 23, 28, 39, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - "The key topics currently being discussed on social media about the crypto industry include meme coins, AI memecoins, new meme coin launches, meme coin wealth, top meme coins to buy, Reddit discussions on equities vs meme coins, altcoin traders' love for meme coins, liquidity issues affecting meme coins, racism in the crypto community, fake social media personas in trading, and the potential for a new Layer 2 meme coin. Overall, there is a mix of excitement, skepticism, and caution surrounding meme coins and their impact on the crypto market.", - data: [ - 4, 5, 8, 11, 1, 0, 8, 6, 16, 9, 9, 7, 11, 6, 11, 8, 6, 9, 14, 8, 8, 17, 8, 9, 15, 14, 5, 8, - 12, 15, 18, 94, 42, 12, 9, 4, 11, 12, 3, 13, 4, 10, 7, 10, 6, 8, 13, 7, 10, 11, 12, 3, 5, 8, - 12, - ], - }, - { - label: 'Dips', - topics: 'dip,dips,buy,buying,bull', - description: - 'The key topics currently discussed in the crypto industry on social media include buying the dip, taking profits, market trends, trading strategies, market manipulation, and indicators of market direction. Traders are discussing the importance of buying the dip during a parabolic trend, the significance of specific price goals in portfolios, the emotions of bears in a bull market, and the stages of crypto enlightenment. Additionally, there is mention of price action trading tips, including the importance of patience and volume spikes. Overall, the sentiment seems to be focused on strategic trading decisions and staying informed about market movements.', - data: [ - 8, 5, 3, 7, 1, 1, 4, 65, 24, 6, 1, 8, 6, 2, 44, 11, 4, 5, 6, 8, 6, 16, 20, 7, 12, 4, 9, 8, - 11, 18, 13, 4, 7, 4, 6, 10, 10, 4, 13, 8, 14, 11, 11, 18, 14, 7, 15, 8, 14, 11, 7, 4, 11, - 10, 7, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,gamefi,web3', - description: - 'The messages from twitter are discussing various topics related to the crypto industry and gaming. Some key words mentioned include game, NFTs, blockchain adoption, gaming partnerships, guilds, Atari, video games, Solana, AI, and GameFi. The messages also mention specific projects and companies such as The Sandbox Game, Sidus Heroes, SquareEnix, HyperPlayGaming, Parallel Colony, and Thetan World. Overall, the discussions revolve around the intersection of gaming, blockchain technology, and financial opportunities within the crypto industry.', - data: [ - 7, 3, 10, 8, 0, 6, 2, 5, 11, 23, 14, 8, 2, 3, 5, 9, 3, 9, 6, 4, 65, 8, 5, 2, 9, 1, 10, 8, 7, - 6, 9, 4, 6, 4, 6, 5, 6, 25, 3, 9, 2, 12, 9, 2, 6, 12, 10, 5, 9, 4, 3, 4, 9, 11, 7, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,artwork', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Creating art and the importance of art in daily life\n- The value of art and the process of collecting art\n- Digital art platforms and events like Art Basel Hong Kong\n- Appreciation for different forms of art such as fine art, calligraphy, and digital art\n- The distinction between art collectors and art traders\n- The influence of music on art inspiration\n- The cost and production process of traditional Japanese calligraphy ink\n- The excitement around new art releases and collaborations in the art community\n\nOverall, the messages reflect a diverse range of interests and discussions related to art within the crypto industry.', - data: [ - 5, 8, 69, 7, 0, 1, 4, 5, 6, 8, 13, 9, 8, 6, 10, 9, 3, 3, 9, 7, 5, 6, 12, 7, 4, 13, 4, 2, 7, - 10, 18, 4, 4, 6, 8, 7, 11, 3, 4, 3, 8, 4, 4, 7, 7, 8, 5, 7, 8, 4, 5, 5, 13, 6, 7, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,4000,price,short', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum (ETH) price movements and potential future price predictions\n- Speculation on whether ETH will reach new all-time highs\n- Analysis of ETH technical indicators such as Elliott Wave and 4H200EMA\n- Comparison of ETH returns to previous years and potential future price targets\n- Concerns about decreasing volume and selling pressure on ETH\n- Whales taking profit on Ethereum and its impact on the overall cryptocurrency market\n- The influence of Bitcoin on the crypto market as a whole\n\nOverall, the sentiment seems to be mixed with some users optimistic about ETH's potential for growth while others are cautious about the current market conditions and potential price declines.", - data: [ - 6, 2, 5, 5, 0, 1, 5, 0, 4, 6, 7, 2, 9, 4, 3, 4, 74, 2, 2, 4, 3, 6, 2, 1, 5, 3, 6, 3, 11, 9, - 3, 2, 1, 11, 3, 3, 2, 4, 12, 4, 5, 6, 2, 8, 3, 7, 0, 7, 3, 5, 6, 3, 3, 3, 2, - ], - }, - { - label: 'NFT', - topics: 'nfts,nft,collection,dead,hybrid', - description: - 'The key topics currently discussed in the crypto industry on social media include the rise of NFTs, the impact of airdrops on NFT project value, the state of ETH NFTs, the importance of community engagement for NFT projects, the potential for NFTs with historical significance and real utility to drive the market, and the concept of modular NFTs. Users are discussing the buying and selling of NFTs, the creation of NFTs without gas fees, the use of NFTs in art and media, and the potential for NFTs to hold value through royalties. Additionally, there is a focus on the quality and uniqueness of NFTs, as well as the potential for NFTs to be used in various industries such as retail and art.', - data: [ - 2, 1, 1, 1, 0, 0, 1, 4, 1, 3, 8, 2, 1, 8, 4, 8, 5, 3, 10, 6, 5, 2, 4, 3, 4, 3, 4, 5, 0, 8, - 4, 4, 6, 8, 15, 4, 4, 1, 6, 4, 5, 1, 6, 5, 3, 3, 1, 3, 5, 4, 6, 3, 1, 4, 5, - ], - }, - { - label: 'AI', - topics: 'ai,san,jobs,fintech,agent', - description: - "The key topics currently being discussed in the crypto industry on social media include the impact of AI on jobs, the development of AI chips, the potential for AI to surpass human intelligence, the use of AI in threat detection for web3, the success of AI companies outside of San Francisco, and the integration of AI agents in various applications. There is also mention of a crypto AI token airdrop and the potential for UAE to play a key role in OpenAI's success with developing its own AI chips. Overall, the conversation revolves around the rapid advancement and integration of AI technology in the crypto industry.", - data: [ - 15, 14, 3, 3, 0, 1, 2, 2, 2, 2, 2, 3, 3, 1, 7, 4, 0, 5, 4, 4, 3, 3, 1, 6, 1, 10, 5, 4, 3, 7, - 5, 4, 3, 3, 2, 2, 1, 5, 5, 3, 2, 3, 7, 3, 4, 5, 5, 5, 4, 2, 5, 2, 3, 1, 4, - ], - }, - { - label: 'Slerf', - topics: 'slerf,slerfsol,dev,10m,presale', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the launch of a new Solana-based memecoin called SLERF, which has gained attention from whales and investors. There are discussions about the challenges faced by SLERF after the developer accidentally burnt a major portion of the token supply, resulting in a $10 million loss for presale participants. Despite this setback, SLERF has become the 8th meme coin by capitalization and is being traded on platforms like LBank with up to 50x leverage. There are also debates about meme culture in the crypto industry and how SLERF fits into this landscape. Additionally, there are mentions of other projects like Zeus NetworkHQ on Solana that investors are bullish on. Overall, the crypto community is closely following the developments and potential opportunities in the meme coin space, particularly with projects like SLERF gaining traction.', - data: [ - 5, 2, 1, 5, 0, 1, 2, 4, 5, 2, 5, 3, 3, 2, 3, 0, 0, 2, 4, 4, 1, 2, 3, 1, 6, 3, 9, 3, 8, 3, 5, - 8, 9, 3, 9, 2, 3, 1, 6, 3, 5, 4, 4, 1, 19, 4, 3, 3, 1, 5, 6, 3, 3, 1, 0, - ], - }, - { - label: 'Blackrock & Tokenization', - topics: 'blackrock,tokenized,fund,tokenization,asset', - description: - "The key topic being discussed on Twitter is BlackRock's involvement in the crypto industry, specifically their launch of tokenized funds on the Ethereum network. BlackRock has partnered with companies like Securitize and Coinbase to provide infrastructure for these tokenized investment funds. This move by BlackRock signifies a shift towards tokenization in traditional finance, with other major players like Goldman Sachs and BNY Mellon also exploring blockchain technology for asset tokenization. The community is excited about the potential of these developments and the opportunities they may bring for investors.", - data: [ - 4, 5, 1, 5, 1, 37, 7, 2, 0, 2, 1, 4, 3, 6, 0, 2, 7, 1, 3, 4, 3, 1, 1, 3, 1, 7, 3, 12, 3, 0, - 1, 0, 1, 0, 2, 2, 1, 5, 2, 2, 1, 1, 2, 3, 0, 6, 4, 6, 1, 17, 2, 5, 3, 1, 4, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,prediction,projection,whale', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin ($DOGE) price movement and projections\n- Dogecoin Founder Billy Markus issuing a statement on the recent crypto crash\n- Search volume increasing for "doge stock price"\n- Speculation on whether Dogecoin price can hit $1 in March\n- Dogecoin climbing on futures hopes and Bitcoin nearing $68K\n- Predictions of Dogecoin reaching $0.25 before summer and end-of-year rally\n- Discussion about a potential new project called #DollarMoon with high growth potential\n\nOverall, the sentiment towards Dogecoin seems positive with expectations of price increases and potential for significant gains in the future.', - data: [ - 4, 1, 1, 2, 0, 0, 2, 0, 2, 3, 2, 2, 0, 3, 89, 1, 1, 4, 4, 1, 1, 3, 0, 2, 4, 1, 0, 1, 0, 5, - 0, 1, 2, 0, 2, 1, 2, 0, 1, 4, 2, 3, 2, 6, 1, 0, 0, 3, 2, 0, 1, 2, 1, 1, 2, - ], - }, - { - label: 'SHIBA', - topics: 'shiba,inu,shib,predicts,dogecoin', - description: - "The key topics currently discussed in the crypto industry on social media accounts include:\n- Shiba Inu coin experiencing spikes and sharp declines in the market\n- Updates on the Shiba Inu team and community, including the release of 'The Shib' magazine\n- Speculation on Shiba Inu potentially overtaking Dogecoin\n- Price analysis and predictions for Shiba Inu coin\n- Updates on Shibarium explorer and its usability improvements\n- Updates on other cryptocurrencies such as Aptos (APT) and Indigo Protocol (INDY)\n- Significant internal move at Y Combinator (YC) with Michael Seibel moving back to group partner role\n- Anticipation for big news related to Shiba Inu coin and potential price movements\n\nOverall, the discussions on social media platforms suggest a mix of excitement, speculation, and analysis surrounding various cryptocurrencies, with a focus on Shiba Inu coin and its market performance.", - data: [ - 1, 5, 1, 6, 0, 0, 7, 1, 1, 1, 9, 2, 9, 4, 10, 0, 0, 5, 1, 6, 0, 0, 1, 2, 1, 2, 32, 2, 0, 0, - 0, 2, 2, 1, 2, 1, 0, 1, 3, 1, 1, 0, 1, 23, 3, 1, 1, 3, 0, 2, 1, 1, 1, 2, 1, - ], - }, - { - label: 'DEX', - topics: 'dex,decentralized,dydx,ecosystem,gaming', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n1. Conflux aiming for a Q2 launch of a HKD-pegged stablecoin with AnchorX.\n2. Reddit's decentralized platform for the people, by the people.\n3. KuCoin supporting the rebranding of Proton to XPR Network.\n4. Rexx Coin's diverse ecosystem and comprehensive solutions.\n5. LCX Thrive campaign offering rewards for completing KYC.\n6. RaysX bringing evolution to DeFi with Gamefi and Ai.\n7. Decubate Token (DCB) listing on LBank.\n8. XPR Network being a solid company with potential for growth.\n9. OpenEX Network's Mainnet TGE in progress.\n10. How to buy/trade Rexx Coin on XT.com Exchange.\n11. Comparison of Unizen and 1inch swap returns.\n12. Partnership between Retreeb and Carbonable for sustainable Web3 initiatives.", - data: [ - 2, 2, 1, 2, 0, 0, 1, 1, 2, 5, 4, 4, 2, 5, 5, 3, 1, 3, 3, 2, 4, 1, 2, 0, 0, 0, 8, 5, 1, 4, 2, - 1, 0, 1, 8, 6, 0, 3, 3, 3, 3, 16, 2, 0, 1, 6, 2, 1, 3, 2, 5, 5, 4, 1, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,finance,69,injective', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Keyring raising $6M to unlock DeFi for institutions\n- Introduction of CeDeFiAi, a platform combining DeFi and CeFi\n- Institutional adoption of crypto assets and decentralized finance\n- Ethereum DeFi waking up to Bitcoin\n- Introduction of SatoshiSync project\n- Decentralized science using blockchain benefits\n- Investfi revolutionizing investment management with a De-Fi platform\n- Dyor building a DeFi and Web3 investing app\n- Kattana as a trading terminal for DeFi\n- DeFi reshaping finance and challenging the eurodollar system\n- 1ON8 Trading Competition offering $12,000 rewards\n\nThese topics highlight the ongoing innovation and development within the crypto industry, particularly in the realm of decentralized finance and institutional adoption.', - data: [ - 1, 3, 2, 2, 1, 2, 2, 1, 1, 2, 2, 2, 4, 12, 1, 3, 2, 3, 4, 4, 4, 0, 1, 2, 5, 6, 9, 5, 3, 3, - 2, 1, 2, 1, 6, 2, 0, 0, 7, 8, 5, 6, 1, 0, 1, 3, 3, 0, 1, 1, 1, 5, 2, 3, 2, - ], - }, - { - label: 'PePe', - topics: 'pepe,frog,frens,trader,og', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- $PEPE and its potential for growth and profit\n- The launch of $UCIT and rumors surrounding it\n- The OG Pepe Project and its mysterious origins\n- The celebration of World Frog Day and the connection to @pepecoineth\n- The Alt Coin $PEPE and its trading setup and potential\n- The impact of the #DencunUpgrade on #ETH gas fees and the push for #Ethereum #MemeTokens\n- The introduction to xcp and rare Pepe, and the fear of new communities\n- Giveaway winners for Pepe Coin and the excitement surrounding the prize pool\n\nOverall, the discussions on Twitter show a mix of excitement, speculation, and community engagement within the crypto industry, particularly focusing on specific coins like $PEPE and $UCIT, as well as broader topics like Ethereum and rare Pepe collectibles.', - data: [ - 4, 0, 0, 1, 0, 1, 1, 1, 0, 3, 5, 2, 1, 2, 3, 1, 3, 4, 4, 4, 3, 3, 0, 4, 5, 1, 0, 3, 1, 4, 1, - 2, 0, 1, 2, 2, 34, 0, 1, 3, 7, 4, 2, 4, 4, 0, 1, 2, 2, 0, 1, 3, 4, 1, 2, - ], - }, - { - label: 'Solana prices', - topics: 'sol,200,solana,blue,resistance', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding Solana ($SOL) include:\n- Speculation on a new NFT bull market on Solana due to Coinbase's continuous buying of $SOL and significant earnings by lenders on Solend.\n- Price predictions for $SOL, with a target of $258 and discussions on its recent price surge.\n- Excitement over Solana's potential and progress, such as the firedancer testnet and reaching new all-time highs.\n- Analysis of $SOL's price movements amidst market dips, regulatory challenges, and competition.\n- Interest in Google Trends data showing a peak in searches for #Solana.\n- Traders discussing potential buying opportunities at different price levels, such as $140 and $150, with the goal of reaching $200+.\nOverall, the sentiment appears to be bullish on Solana, with optimism about its future growth and potential to surpass Ethereum.", - data: [ - 1, 4, 1, 2, 0, 0, 4, 0, 1, 0, 4, 2, 0, 1, 1, 3, 1, 2, 0, 0, 1, 2, 1, 3, 5, 2, 0, 0, 5, 0, 1, - 4, 4, 2, 3, 1, 3, 3, 9, 1, 0, 5, 3, 3, 35, 1, 3, 4, 6, 3, 3, 2, 1, 0, 1, - ], - }, - { - label: 'HEX and Pulsechain', - topics: 'hex,pulsechain,richard,pls,heart', - description: - 'Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. PulseChain and its associated coins such as $PLS, $HEX, $PLSX, and $GENE.\n2. Comparison between Bitcoin prices and PulseChain Coins.\n3. Emotional cycles and community sentiment within the PulseChain Community.\n4. Transaction fees and gas load issues on Ethereum, particularly related to $HEX and $eHEX.\n5. Price action and indicators for $HEX, including the SuperTrend indicator.\n6. Influence of influencers and YouTubers on the perception of $HEX.\n7. Potential denial phase and faith in PulseChain coins.\n8. Comparison between BNB and HEX charts.\n9. Impact of the PulseChain Sacrifice Wallet on the ecosystem.\n10. Speculation on future price movements and trends for $HEX and other PulseChain coins.\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, community sentiment, and speculation surrounding various cryptocurrencies within the crypto industry, particularly focusing on PulseChain and its associated coins.', - data: [ - 2, 1, 1, 1, 1, 0, 7, 0, 1, 2, 0, 5, 2, 1, 4, 3, 2, 3, 0, 2, 0, 1, 2, 8, 2, 2, 2, 1, 2, 2, 3, - 3, 0, 1, 1, 1, 4, 8, 0, 14, 2, 1, 3, 3, 1, 0, 1, 3, 3, 3, 2, 2, 4, 1, 4, - ], - }, - { - label: 'BOME', - topics: 'bome,darkfarms1,1b,book,listed', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the rapid rise of the $BOME token, which went from $0 to $1.6 billion in just 2 days. There is speculation about the team behind $BOME and its potential impact on the market. Some users are questioning whether $BOME is the "next big thing" or a potential rug pull. The token has been listed on major exchanges like BTSE and Binance, with trading pairs available for spot trading. Additionally, there is excitement surrounding the artist @DarkFarms1, who is associated with the $BOME token project on the Solana blockchain. Overall, there is a mix of enthusiasm and caution surrounding $BOME and its rapid growth in the crypto market.', - data: [ - 3, 0, 0, 0, 0, 0, 37, 0, 0, 1, 2, 0, 2, 0, 2, 2, 0, 2, 1, 1, 4, 3, 0, 2, 3, 2, 1, 2, 7, 1, - 1, 1, 1, 4, 4, 4, 0, 0, 0, 2, 0, 2, 4, 1, 0, 1, 3, 4, 1, 2, 0, 3, 2, 2, 3, - ], - }, - { - label: 'SOL vs ETH', - topics: 'solana,solanas,ux,ethereum,ethereums', - description: - "The messages from Twitter suggest a growing debate and interest in the competition between Solana and Ethereum within the crypto industry. Some users believe that Solana will outperform Ethereum, citing its focus on usability and user experience over research papers. Others argue that Ethereum's Layer 2 solutions will ultimately capture Solana's market share. Despite this debate, Solana has recently hit new highs in terms of price and volume, indicating strong performance in the market. Additionally, there is discussion about the potential for Solana to revolutionize the internet and change the way content is owned and distributed online. Overall, the messages reflect a dynamic and competitive landscape in the crypto industry, with both Solana and Ethereum being seen as worthy opponents with unique strengths and capabilities.", - data: [ - 2, 1, 1, 0, 0, 2, 1, 3, 1, 2, 1, 2, 4, 1, 1, 6, 6, 5, 1, 3, 4, 2, 2, 3, 0, 2, 0, 2, 0, 1, 1, - 2, 0, 3, 2, 5, 2, 3, 3, 4, 2, 3, 0, 1, 1, 3, 4, 3, 4, 0, 3, 6, 2, 0, 2, - ], - }, - { - label: 'Nvidia', - topics: 'nvidia,nvda,gpu,chip,ai', - description: - "The key topics discussed in the messages from Twitter are:\n1. Bitcoin as sound money and Nvidia as a pick & shovel for AI\n2. Nvidia unveiling the \"world's most powerful\" AI chip\n3. Buying AI coins for quick profits\n4. Nvidia's CUDA technology and its advantage in hardware and software engineering\n5. Stock performance of companies like AMD, HON, HPQ, IBM, MSI, BIDU, and DELL\n6. Comparison between meme coin NVEDUA and real stock NVDIA\n7. Excitement over new computer with customizable features and external graphics card\n8. Golem Network's vision for revolutionizing computing power in the AI industry\n9. Nvidia's Project Gr00t for robotic AI and Apple Vision Pro integration\n10. Performance comparison between AMD and M2 MacBook Air\n11. Partnership between Golem Network and GamerHashCom to provide GPU resources to the AI industry.", - data: [ - 2, 5, 2, 2, 2, 1, 1, 0, 1, 1, 1, 4, 0, 1, 1, 0, 1, 3, 0, 0, 8, 5, 3, 4, 1, 2, 3, 0, 0, 3, 0, - 3, 1, 5, 5, 3, 2, 1, 2, 0, 2, 4, 2, 0, 5, 0, 2, 2, 1, 1, 1, 7, 0, 2, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-110.json b/priv/repo/major_topics_seed/data-110.json deleted file mode 100644 index a5ea1261f8..0000000000 --- a/priv/repo/major_topics_seed/data-110.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["05.02.26","06.02.26","06.02.26","06.02.26","06.02.26","06.02.26","06.02.26","06.02.26","07.02.26","07.02.26","07.02.26","07.02.26","07.02.26","07.02.26","07.02.26","07.02.26","08.02.26","08.02.26","08.02.26","08.02.26","08.02.26","08.02.26","08.02.26","08.02.26","09.02.26","09.02.26","09.02.26","09.02.26","09.02.26","09.02.26","09.02.26","09.02.26","10.02.26","10.02.26","10.02.26","10.02.26","10.02.26","10.02.26","10.02.26","10.02.26","11.02.26","11.02.26","11.02.26","11.02.26","11.02.26","11.02.26","11.02.26","11.02.26","12.02.26","12.02.26","12.02.26","12.02.26","12.02.26","12.02.26","12.02.26"],"datasets":[{"label":"Superbowl","topics":"patriots,seahawks,nfl,halftime,bunny","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Super Bowl predictions and outcomes, with a focus on the Seattle Seahawks\n- Bad Bunny's sudden disappearance from social media after fleeing the Super Bowl stadium\n- Use of cryptocurrency, specifically Litecoin, for transactions during the Super Bowl\n- Criticism of the NFL and controversial calls during the Super Bowl\n- General opinions on sports and the Super Bowl, including unpopular opinions and observations about American football\n\nOverall, the conversation seems to be a mix of excitement, controversy, and personal opinions surrounding the Super Bowl and its impact on American culture.","data":[27,8,28,56,38,23,14,40,24,23,22,23,21,21,29,39,30,17,37,34,33,82,24,15,15,46,23,37,32,17,21,11,24,25,45,52,33,22,29,17,32,34,18,25,25,53,23,41,22,12,27,34,60,65,32]},{"label":"AI","topics":"agi,ais,replace,collar,humans","description":"The messages from twitter discuss various aspects of artificial intelligence (AI) and its impact on society and the economy. Some key points mentioned include:\n\n- AI being compared to the Industrial Revolution on steroids, with the potential to make society infinitely richer.\n- The increasing use of AI tools and technologies, with a focus on the speed at which advancements are being made.\n- The idea that those who fear AI taking their jobs may not be producing anything consequential in an economic sense.\n- The potential for AI to automate coding and other tasks, leading to job displacement.\n- The importance of incorporating AI into business strategies and operations.\n- The debate over the short-term versus long-term impacts of AI, with predictions of AI reaching PhD levels of intelligence.\n- The role of AI in disrupting various industries, such as tech spreads and leveraged loans.\n- The shift towards AI becoming the backbone of business operations, with investors now asking how much of a business runs on AI rather than if it uses AI at all.\n\nOverall, the messages highlight the growing importance and impact of AI in various sectors, with discussions ranging from job automation to business strategies and industry disruption.","data":[25,119,31,18,31,9,24,25,13,36,29,20,21,13,31,26,32,25,39,29,14,25,18,30,55,18,23,15,19,29,16,25,39,20,22,29,24,26,25,25,25,23,8,16,14,27,35,48,17,15,18,15,17,34,29]},{"label":"Epstein files","topics":"redacted,epsteins,files,doj,jeffrey","description":"The messages from twitter are discussing various conspiracy theories and controversies surrounding Jeffrey Epstein, including his connections to influential figures and allegations of criminal activities. The messages also touch on topics such as human cloning, political scandals, and misinformation. Overall, the discussions seem to be focused on uncovering the truth behind Epstein's actions and the potential involvement of other individuals in his activities.","data":[21,20,20,16,15,9,10,16,18,32,20,11,23,22,33,23,48,15,16,9,16,20,11,13,24,26,24,21,9,14,21,11,10,15,21,17,12,17,22,34,22,38,22,13,13,29,20,19,13,8,24,24,16,24,12]},{"label":"SOL","topics":"solanas,sol,solana,artemis,67","description":"The messages from twitter suggest that there is a lot of discussion and activity surrounding Solana (SOL) in the crypto community. Some key points mentioned include:\n\n1. There is a belief that Solana is currently undervalued and a good buy opportunity.\n2. There are discussions about staking on Solana being in a bull market.\n3. Some users express skepticism about Solana's technology and its ability to succeed.\n4. Despite some doubts, there is still optimism about SOL's potential for growth, with mentions of buying below $80 and potential for a 10x increase.\n5. There is a comparison made between Solana and other tokens, highlighting its market size and potential.\n6. Various new alerts and tokens related to Solana are being introduced, with high trading volumes and potential for significant gains.\n7. Solana's ecosystem is expanding, with various platforms and projects integrating with Solana.\n8. There are discussions about Solana's price action and strategies for trading with stables to mitigate downside risk.\n9. Overall, there is a mix of excitement, skepticism, and analysis surrounding Solana and its potential in the crypto market.","data":[29,25,13,15,27,33,26,24,12,18,10,9,15,25,12,15,12,14,17,16,10,3,24,11,16,7,25,20,24,24,26,7,17,21,13,8,19,20,19,8,14,17,10,89,16,16,15,16,17,17,21,13,15,11,14]},{"label":"Coinbase Superbowl ad","topics":"ads,ad,commercial,superbowl,advertising","description":"The key topics discussed in the messages from twitter are:\n1. The Super Bowl ad by Coinbase, which received mixed reactions and criticism for crashing their app.\n2. Comparison between Coinbase and FTX in terms of advertising strategies.\n3. Criticism towards Coinbase for promoting altcoins, NFTs, and memecoins instead of focusing solely on Bitcoin.\n4. The shift from crypto ads to AI ads during the Super Bowl.\n5. Speculation on the effectiveness of advertising on AI LLMs/chatbots.\n6. The potential manipulation of thinking through advertising on social media and AI platforms.\n7. The impact of physical space marketing activations in NYC.\n8. The decline in crypto ads during the Super Bowl compared to previous years.\n9. The importance of brand value and long-term profits over short-term gains in advertising strategies.\n10. Personal anecdotes and experiences related to launching and handling the response to advertising campaigns.","data":[60,39,7,11,16,9,7,10,30,39,14,9,7,9,4,7,8,4,6,6,7,7,6,11,8,15,7,11,13,13,12,7,7,12,14,11,2,5,10,10,8,7,5,15,20,18,21,19,2,3,14,6,10,11,21]},{"label":"Clawdbot","topics":"openclaw,clawdbot,claw,malware,lobster","description":"The messages from twitter suggest that OpenClaw is a highly discussed topic within the crypto community. Users have shared their experiences with OpenClaw, mentioning both positive and negative aspects. Some users have found OpenClaw to be impressive in its capabilities, while others have expressed concerns about security flaws and the need to surrender control when using it.\n\nThere are mentions of OpenClaw being compared to other tools like n8n, with some users finding it to be groundbreaking while others feel it is not as revolutionary as claimed. Additionally, there are discussions about the cost and efficiency of using OpenClaw, with some users finding it to be expensive and others finding ways to optimize its usage.\n\nOverall, it seems that OpenClaw is a topic of interest and debate within the crypto community, with users sharing their experiences, opinions, and concerns about its capabilities and potential impact on the industry.","data":[9,40,12,4,16,11,13,5,23,15,15,6,10,8,7,11,11,9,10,4,12,12,4,9,9,8,9,16,9,3,6,6,14,54,6,4,8,11,10,4,15,8,14,13,7,9,10,12,9,15,12,8,15,6,10]},{"label":"China","topics":"chinas,china,chinese,xi,beijing","description":"The key topics currently discussed in the messages from twitter are:\n1. China's involvement in the crypto industry, including bans on stablecoins and regulations on tokenization.\n2. China's economic activities, such as injecting liquidity, buying gold and silver, and reducing holdings of U.S. Treasuries.\n3. China's geopolitical actions, including fighter jet maneuvers near Taiwan and rare earth exports to Japan.\n4. China's advancements in technology, such as humanoid robots and AI.\n5. China's impact on global markets, including the shift in the Earth's axis due to the Three Gorges Dam and the effects on the USD and gold prices.\n6. China's stance on cryptocurrencies and digital currencies, particularly the e-Yuan.\n7. China's regulations and policies on virtual currencies and offshore RWA token issuance.\n8. Xi Jinping's efforts to limit China's exposure to U.S. debt and influence the global financial system.\n9. The impact of China's actions on the USD/JPY exchange rate and gold prices.\nOverall, the messages highlight China's significant role in the crypto industry, global economy, and geopolitical landscape.","data":[5,8,19,35,4,2,12,15,19,22,7,4,12,5,13,15,4,7,7,3,5,9,12,25,14,8,11,7,6,10,12,10,7,13,14,9,10,9,6,19,8,19,5,10,9,10,6,8,3,5,5,9,11,10,6]},{"label":"Precious metals","topics":"silver,slv,substack,precious,shanghai","description":"The key topics currently discussed in the crypto industry on social media include the price movements of gold and silver, with mentions of resistance levels, rallies, drops, and predictions for future prices. There is also discussion about the impact of US dollar and yields on gold prices, as well as the tightening of silver delivery rules. Additionally, there is mention of the historical significance of gold bars and the potential for gold to hit $5,900/oz by the end of the year. Traders are also discussing the behavior of silver in the market and the potential for buying opportunities in certain stocks. Overall, the sentiment seems to be focused on the current market behavior and potential future trends in the gold and silver markets.","data":[10,1,10,10,5,7,5,10,7,6,10,2,7,13,6,10,11,4,7,37,3,5,10,1,7,3,8,9,12,5,9,7,8,6,12,11,27,2,11,10,16,8,10,41,9,9,8,7,19,15,4,12,5,7,3]},{"label":"Minnesota immigration clash","topics":"minneapolis,minnesota,ice,immigration,illegal","description":"The key topic discussed in the messages from twitter is the ongoing tensions and clashes surrounding ICE (Immigration and Customs Enforcement) in Minneapolis and other areas. The messages highlight incidents such as the removal of anti-ICE street barricades by police officers, protests against ICE wreaking havoc on the local economy, clashes between rioters and individuals associated with ICE, and confrontations between politicians and ICE officials. The messages also mention incidents of illegal immigrants being removed or arrested by ICE agents, as well as instances of violence and threats against ICE officials. Overall, the messages reflect a highly charged and contentious atmosphere surrounding ICE and immigration enforcement in various communities.","data":[12,25,27,13,3,8,1,10,14,5,14,6,19,12,3,8,18,5,2,3,6,15,1,26,13,11,18,4,2,6,8,8,9,10,9,13,5,16,4,16,20,5,11,1,7,11,7,3,4,2,5,4,5,15,6]},{"label":"Memecoins","topics":"memes,memecoin,memecoins,meme,troll","description":"The messages from twitter suggest that there is a strong belief in the longevity and potential of memecoins within the crypto industry. Despite the volatility and short lifespan of some memecoins, there is a sentiment that established memes will recover and continue to hold value. There is also discussion about the transition from meme coins to utility coins, such as DeFi and AI projects, indicating a shift in focus towards more practical applications within the industry. Overall, there is a recognition of the speculative nature of memecoins, but also an acknowledgment of the potential for significant returns within this space.","data":[12,5,5,7,16,3,5,4,7,12,5,9,7,6,6,5,12,8,6,10,9,1,4,4,6,5,4,10,8,8,104,7,19,6,6,9,4,10,6,6,8,2,4,5,6,3,5,4,8,15,5,5,2,8,9]},{"label":"AI coding assistants","topics":"opus,46,codex,53,claude","description":"The key topics currently discussed in the crypto industry on social media accounts include the comparison between Opus 4.6 and Codex 5.3, with users expressing their preference for Opus 4.6. There is also a lot of discussion about Claude Code and its capabilities, with some users praising its usefulness while others criticize its limitations. Some users have burnt through their weekly limit on Opus 4.6 quickly, indicating its high usage. Additionally, there is a marketplace for security analysis skills for Claude Code, showing its growing popularity in the industry. Overall, there is a mix of opinions on Claude Code, with some users finding it helpful but not always honest in its functionality.","data":[7,7,4,7,8,2,8,5,57,6,7,8,7,5,6,10,10,5,7,10,7,10,5,12,4,5,5,10,5,3,1,6,13,29,4,8,5,2,8,6,8,6,7,10,6,9,15,9,6,10,12,6,3,9,7]},{"label":"Gaming","topics":"gaming,gamers,gameplay,games,gamechanger","description":"The messages from twitter mainly discuss various aspects of gaming, including nostalgia for old games like Mario Kart 64, renting games from Blockbuster, and debates about classic games like Goldeneye and Mario Kart. There is also mention of building and playing different types of games, as well as the excitement surrounding upcoming game releases like Xenoblade 3. Additionally, there is a focus on the development of new games and platforms, with mentions of building interactive puzzles and launching new games on platforms like Solana. Overall, the messages reflect a diverse range of gaming-related topics and interests within the crypto community.","data":[3,6,3,5,8,2,9,2,4,6,9,7,6,11,6,12,4,4,69,7,12,9,8,9,7,10,10,5,12,4,5,2,11,7,11,21,6,12,7,9,6,0,4,2,7,6,9,3,10,3,6,11,11,4,4]},{"label":"Bear market for crypto","topics":"bears,bear,bearmarket,shallow,doomscrolling","description":"The messages from twitter reflect a mix of emotions and perspectives on the current bear market in the crypto industry. Some users are expressing frustration and fear, while others are highlighting the potential opportunities for growth and development during this time. There is a sense of camaraderie among some users, as they navigate the challenges of the bear market together. Additionally, there is a reminder to focus on the core values of decentralization, censorship resistance, and democratization of opportunity in the crypto space, even during tough market conditions. Overall, the messages suggest a range of reactions to the bear market, from optimism to caution, but also a sense of resilience and determination to continue pushing forward in the industry.","data":[1,3,3,103,13,5,14,6,4,4,7,5,6,1,9,3,9,3,5,4,3,3,4,0,3,8,4,1,7,59,6,5,6,3,3,5,3,0,6,2,2,1,4,1,4,11,9,6,4,3,5,1,2,3,8]},{"label":"Art","topics":"artists,artist,art,paint,artwork","description":"The key topics discussed in the messages from twitter are:\n1. Appreciation for unique and individual art\n2. Support for emerging artists\n3. Ownership and control of digital art\n4. Criticism of the art industry's expectations\n5. Opportunities for artists to showcase their work\n6. Importance of dedication and hard work in art creation\n7. Avoiding the need for external validation in art creation.","data":[4,6,63,2,9,6,3,4,10,6,12,4,4,5,9,9,6,5,5,6,10,5,2,11,6,7,6,6,14,3,1,3,14,8,11,16,5,5,2,2,5,0,2,1,7,10,6,10,8,3,1,3,1,12,5]},{"label":"MegaETH drama","topics":"megaeth,mega,mainnet,tge,bridged","description":"The messages from twitter suggest that there is a lot of discussion and anticipation surrounding the abilities of MegaETH, particularly in relation to its mainnet launch. Some users are questioning the lack of activity and incentives on the platform, while others are excited about the potential of MegaETH and its partnerships with projects like PrismFi and Lombard Finance. There are also concerns raised about potential rug pulls and changes in TGE plans by the MegaETH team. Overall, it seems that there is a mix of skepticism and optimism within the crypto community regarding MegaETH.","data":[3,2,4,2,5,12,5,2,4,5,2,9,13,13,3,10,9,3,7,9,3,8,6,13,8,8,20,27,2,24,28,0,8,8,5,5,2,8,2,4,4,2,1,8,4,6,10,6,5,7,5,4,7,2,2]},{"label":"US labor data","topics":"unemployment,43,employment,44,labor","description":"The messages from twitter are discussing the recent US jobs report, which showed an increase of 130,000 jobs in January. The unemployment rate dropped to 4.3%, beating expectations. However, there are concerns about the quality of the job gains, as a significant portion came from health care and social assistance sectors. There are also worries about the overall strength of the US labor market, with some suggesting that the Federal Reserve may need to lower interest rates to prevent a recession. Additionally, there are predictions of rate cuts in 2026 due to low job openings and rising unemployment rates. Overall, the job report is seen as stronger than expected, but there are underlying concerns about the sustainability of the growth.","data":[2,14,2,8,2,4,5,9,2,2,2,11,4,26,8,7,0,3,3,1,4,9,11,5,56,8,1,1,6,5,4,5,5,18,5,2,10,0,11,10,10,5,1,8,1,4,5,1,1,0,23,7,6,1,3]},{"label":"ETH price","topics":"1900,1800,2k,2000,15k","description":"The key topics currently discussed on twitter regarding Ethereum ($ETH) are:\n\n1. Price Analysis: There is a lot of discussion about the current price of $ETH, with some users predicting a bounce due to hitting support levels, while others are concerned about further downside potential if certain key levels are breached.\n\n2. Market Sentiment: There are mixed sentiments about the future of $ETH, with some users losing hope in its performance while others are still optimistic about a potential bullish move.\n\n3. Technical Analysis: Traders are analyzing various technical indicators such as trendlines, support levels, and resistance levels to predict the next move for $ETH.\n\n4. Fundamentals: There is mention of Ethereum ETFs buying the dip, as well as discussions about the overall market strength and valuation of $ETH.\n\n5. Potential Price Targets: Users are speculating on potential price targets for $ETH, with some mentioning levels such as $1,900, $1,830, $1,600, and $1,300 as possible support or resistance zones.\n\nOverall, the sentiment seems to be cautious with a mix of optimism and concern about the future price movements of Ethereum.","data":[5,1,5,6,9,7,8,6,5,2,4,7,8,2,17,8,8,2,3,2,4,3,13,8,3,4,11,8,23,7,5,2,5,3,2,5,15,3,10,11,2,6,8,10,10,10,6,7,4,6,7,2,3,3,3]},{"label":"Vibe coding","topics":"vibe,coding,vibing,coded,vibes","description":"The vibe coding community on social media is buzzing with excitement and creativity. People are comparing vibe coding to using cheat codes in GTA or playing Roblox, highlighting the innovative and game-changing nature of vibe coding. There is a sense of camaraderie and collaboration among vibe coders, with individuals sharing updates on their projects and seeking advice from others in the community. The vibe coding renaissance is seen as a transformative force that will have a significant impact on the future of technology and society. Overall, the vibe coding community is vibrant, dynamic, and full of potential for groundbreaking developments in the crypto industry.","data":[2,4,9,3,3,4,1,2,36,1,6,5,2,2,2,5,5,6,3,2,9,7,3,6,2,3,3,3,0,5,5,3,5,3,5,2,4,0,2,3,4,1,3,3,5,8,4,6,0,9,5,106,2,7,3]},{"label":"Whales","topics":"whale,whitewhale,whales,deposited,accumulated","description":"The key topics currently being discussed in the crypto industry on social media include whale activity, accumulation of assets, leveraged trading, OTC trading, and the impact of whales on the market. Whales are seen accumulating assets like Bitcoin and Ethereum, making large deposits and purchases. There is also discussion about leveraged trading, with some whales being liquidated due to their positions. OTC trading is highlighted as a way for whales to buy Bitcoin without affecting the market. Overall, whale activity is closely monitored and analyzed as it can have a significant impact on the market.","data":[17,4,2,2,6,12,9,6,4,4,5,5,6,8,0,0,6,2,2,3,2,6,14,5,3,3,5,5,4,7,5,2,6,4,2,1,3,5,3,6,0,4,4,9,1,5,0,1,7,6,2,6,2,86,1]},{"label":"BTC price","topics":"btcd,rejection,72k,4h,48k","description":"The key topics currently discussed in the crypto community on Twitter include the price movements of various cryptocurrencies such as $BTC, $MEX, $EGLD, and their impact on the USD. There is a lot of discussion about the recent price fluctuations of Bitcoin, with some predicting a consolidation period between $60,000 and $73,000 before a potential drop below $55,000. There is also talk about potential buying opportunities at lower price levels, such as $48,000 to $54,000. Additionally, there is speculation about the impact of US CPI data on the next big move for Bitcoin, with some suggesting a bounce towards $72,000+ if the data is softer. Overall, the sentiment seems to be cautious with a focus on key support and resistance levels for Bitcoin.","data":[5,1,2,6,2,16,11,7,11,7,4,3,2,5,1,7,9,3,0,5,2,4,16,4,2,2,4,6,17,6,1,7,3,2,2,2,7,11,9,14,5,2,6,3,7,5,4,3,5,5,2,6,5,2,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-110.ts b/priv/repo/major_topics_seed/data-110.ts deleted file mode 100644 index 3a4a69ef9a..0000000000 --- a/priv/repo/major_topics_seed/data-110.ts +++ /dev/null @@ -1,270 +0,0 @@ -export const NARRATIVES = { - labels: [ - '05.02.26', - '06.02.26', - '06.02.26', - '06.02.26', - '06.02.26', - '06.02.26', - '06.02.26', - '06.02.26', - '07.02.26', - '07.02.26', - '07.02.26', - '07.02.26', - '07.02.26', - '07.02.26', - '07.02.26', - '07.02.26', - '08.02.26', - '08.02.26', - '08.02.26', - '08.02.26', - '08.02.26', - '08.02.26', - '08.02.26', - '08.02.26', - '09.02.26', - '09.02.26', - '09.02.26', - '09.02.26', - '09.02.26', - '09.02.26', - '09.02.26', - '09.02.26', - '10.02.26', - '10.02.26', - '10.02.26', - '10.02.26', - '10.02.26', - '10.02.26', - '10.02.26', - '10.02.26', - '11.02.26', - '11.02.26', - '11.02.26', - '11.02.26', - '11.02.26', - '11.02.26', - '11.02.26', - '11.02.26', - '12.02.26', - '12.02.26', - '12.02.26', - '12.02.26', - '12.02.26', - '12.02.26', - '12.02.26', - ], - datasets: [ - { - label: 'Superbowl', - topics: 'patriots,seahawks,nfl,halftime,bunny', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Super Bowl predictions and outcomes, with a focus on the Seattle Seahawks\n- Bad Bunny's sudden disappearance from social media after fleeing the Super Bowl stadium\n- Use of cryptocurrency, specifically Litecoin, for transactions during the Super Bowl\n- Criticism of the NFL and controversial calls during the Super Bowl\n- General opinions on sports and the Super Bowl, including unpopular opinions and observations about American football\n\nOverall, the conversation seems to be a mix of excitement, controversy, and personal opinions surrounding the Super Bowl and its impact on American culture.", - data: [ - 27, 8, 28, 56, 38, 23, 14, 40, 24, 23, 22, 23, 21, 21, 29, 39, 30, 17, 37, 34, 33, 82, 24, - 15, 15, 46, 23, 37, 32, 17, 21, 11, 24, 25, 45, 52, 33, 22, 29, 17, 32, 34, 18, 25, 25, 53, - 23, 41, 22, 12, 27, 34, 60, 65, 32, - ], - }, - { - label: 'AI', - topics: 'agi,ais,replace,collar,humans', - description: - 'The messages from twitter discuss various aspects of artificial intelligence (AI) and its impact on society and the economy. Some key points mentioned include:\n\n- AI being compared to the Industrial Revolution on steroids, with the potential to make society infinitely richer.\n- The increasing use of AI tools and technologies, with a focus on the speed at which advancements are being made.\n- The idea that those who fear AI taking their jobs may not be producing anything consequential in an economic sense.\n- The potential for AI to automate coding and other tasks, leading to job displacement.\n- The importance of incorporating AI into business strategies and operations.\n- The debate over the short-term versus long-term impacts of AI, with predictions of AI reaching PhD levels of intelligence.\n- The role of AI in disrupting various industries, such as tech spreads and leveraged loans.\n- The shift towards AI becoming the backbone of business operations, with investors now asking how much of a business runs on AI rather than if it uses AI at all.\n\nOverall, the messages highlight the growing importance and impact of AI in various sectors, with discussions ranging from job automation to business strategies and industry disruption.', - data: [ - 25, 119, 31, 18, 31, 9, 24, 25, 13, 36, 29, 20, 21, 13, 31, 26, 32, 25, 39, 29, 14, 25, 18, - 30, 55, 18, 23, 15, 19, 29, 16, 25, 39, 20, 22, 29, 24, 26, 25, 25, 25, 23, 8, 16, 14, 27, - 35, 48, 17, 15, 18, 15, 17, 34, 29, - ], - }, - { - label: 'Epstein files', - topics: 'redacted,epsteins,files,doj,jeffrey', - description: - "The messages from twitter are discussing various conspiracy theories and controversies surrounding Jeffrey Epstein, including his connections to influential figures and allegations of criminal activities. The messages also touch on topics such as human cloning, political scandals, and misinformation. Overall, the discussions seem to be focused on uncovering the truth behind Epstein's actions and the potential involvement of other individuals in his activities.", - data: [ - 21, 20, 20, 16, 15, 9, 10, 16, 18, 32, 20, 11, 23, 22, 33, 23, 48, 15, 16, 9, 16, 20, 11, - 13, 24, 26, 24, 21, 9, 14, 21, 11, 10, 15, 21, 17, 12, 17, 22, 34, 22, 38, 22, 13, 13, 29, - 20, 19, 13, 8, 24, 24, 16, 24, 12, - ], - }, - { - label: 'SOL', - topics: 'solanas,sol,solana,artemis,67', - description: - "The messages from twitter suggest that there is a lot of discussion and activity surrounding Solana (SOL) in the crypto community. Some key points mentioned include:\n\n1. There is a belief that Solana is currently undervalued and a good buy opportunity.\n2. There are discussions about staking on Solana being in a bull market.\n3. Some users express skepticism about Solana's technology and its ability to succeed.\n4. Despite some doubts, there is still optimism about SOL's potential for growth, with mentions of buying below $80 and potential for a 10x increase.\n5. There is a comparison made between Solana and other tokens, highlighting its market size and potential.\n6. Various new alerts and tokens related to Solana are being introduced, with high trading volumes and potential for significant gains.\n7. Solana's ecosystem is expanding, with various platforms and projects integrating with Solana.\n8. There are discussions about Solana's price action and strategies for trading with stables to mitigate downside risk.\n9. Overall, there is a mix of excitement, skepticism, and analysis surrounding Solana and its potential in the crypto market.", - data: [ - 29, 25, 13, 15, 27, 33, 26, 24, 12, 18, 10, 9, 15, 25, 12, 15, 12, 14, 17, 16, 10, 3, 24, - 11, 16, 7, 25, 20, 24, 24, 26, 7, 17, 21, 13, 8, 19, 20, 19, 8, 14, 17, 10, 89, 16, 16, 15, - 16, 17, 17, 21, 13, 15, 11, 14, - ], - }, - { - label: 'Coinbase Superbowl ad', - topics: 'ads,ad,commercial,superbowl,advertising', - description: - 'The key topics discussed in the messages from twitter are:\n1. The Super Bowl ad by Coinbase, which received mixed reactions and criticism for crashing their app.\n2. Comparison between Coinbase and FTX in terms of advertising strategies.\n3. Criticism towards Coinbase for promoting altcoins, NFTs, and memecoins instead of focusing solely on Bitcoin.\n4. The shift from crypto ads to AI ads during the Super Bowl.\n5. Speculation on the effectiveness of advertising on AI LLMs/chatbots.\n6. The potential manipulation of thinking through advertising on social media and AI platforms.\n7. The impact of physical space marketing activations in NYC.\n8. The decline in crypto ads during the Super Bowl compared to previous years.\n9. The importance of brand value and long-term profits over short-term gains in advertising strategies.\n10. Personal anecdotes and experiences related to launching and handling the response to advertising campaigns.', - data: [ - 60, 39, 7, 11, 16, 9, 7, 10, 30, 39, 14, 9, 7, 9, 4, 7, 8, 4, 6, 6, 7, 7, 6, 11, 8, 15, 7, - 11, 13, 13, 12, 7, 7, 12, 14, 11, 2, 5, 10, 10, 8, 7, 5, 15, 20, 18, 21, 19, 2, 3, 14, 6, - 10, 11, 21, - ], - }, - { - label: 'Clawdbot', - topics: 'openclaw,clawdbot,claw,malware,lobster', - description: - 'The messages from twitter suggest that OpenClaw is a highly discussed topic within the crypto community. Users have shared their experiences with OpenClaw, mentioning both positive and negative aspects. Some users have found OpenClaw to be impressive in its capabilities, while others have expressed concerns about security flaws and the need to surrender control when using it.\n\nThere are mentions of OpenClaw being compared to other tools like n8n, with some users finding it to be groundbreaking while others feel it is not as revolutionary as claimed. Additionally, there are discussions about the cost and efficiency of using OpenClaw, with some users finding it to be expensive and others finding ways to optimize its usage.\n\nOverall, it seems that OpenClaw is a topic of interest and debate within the crypto community, with users sharing their experiences, opinions, and concerns about its capabilities and potential impact on the industry.', - data: [ - 9, 40, 12, 4, 16, 11, 13, 5, 23, 15, 15, 6, 10, 8, 7, 11, 11, 9, 10, 4, 12, 12, 4, 9, 9, 8, - 9, 16, 9, 3, 6, 6, 14, 54, 6, 4, 8, 11, 10, 4, 15, 8, 14, 13, 7, 9, 10, 12, 9, 15, 12, 8, - 15, 6, 10, - ], - }, - { - label: 'China', - topics: 'chinas,china,chinese,xi,beijing', - description: - "The key topics currently discussed in the messages from twitter are:\n1. China's involvement in the crypto industry, including bans on stablecoins and regulations on tokenization.\n2. China's economic activities, such as injecting liquidity, buying gold and silver, and reducing holdings of U.S. Treasuries.\n3. China's geopolitical actions, including fighter jet maneuvers near Taiwan and rare earth exports to Japan.\n4. China's advancements in technology, such as humanoid robots and AI.\n5. China's impact on global markets, including the shift in the Earth's axis due to the Three Gorges Dam and the effects on the USD and gold prices.\n6. China's stance on cryptocurrencies and digital currencies, particularly the e-Yuan.\n7. China's regulations and policies on virtual currencies and offshore RWA token issuance.\n8. Xi Jinping's efforts to limit China's exposure to U.S. debt and influence the global financial system.\n9. The impact of China's actions on the USD/JPY exchange rate and gold prices.\nOverall, the messages highlight China's significant role in the crypto industry, global economy, and geopolitical landscape.", - data: [ - 5, 8, 19, 35, 4, 2, 12, 15, 19, 22, 7, 4, 12, 5, 13, 15, 4, 7, 7, 3, 5, 9, 12, 25, 14, 8, - 11, 7, 6, 10, 12, 10, 7, 13, 14, 9, 10, 9, 6, 19, 8, 19, 5, 10, 9, 10, 6, 8, 3, 5, 5, 9, 11, - 10, 6, - ], - }, - { - label: 'Precious metals', - topics: 'silver,slv,substack,precious,shanghai', - description: - 'The key topics currently discussed in the crypto industry on social media include the price movements of gold and silver, with mentions of resistance levels, rallies, drops, and predictions for future prices. There is also discussion about the impact of US dollar and yields on gold prices, as well as the tightening of silver delivery rules. Additionally, there is mention of the historical significance of gold bars and the potential for gold to hit $5,900/oz by the end of the year. Traders are also discussing the behavior of silver in the market and the potential for buying opportunities in certain stocks. Overall, the sentiment seems to be focused on the current market behavior and potential future trends in the gold and silver markets.', - data: [ - 10, 1, 10, 10, 5, 7, 5, 10, 7, 6, 10, 2, 7, 13, 6, 10, 11, 4, 7, 37, 3, 5, 10, 1, 7, 3, 8, - 9, 12, 5, 9, 7, 8, 6, 12, 11, 27, 2, 11, 10, 16, 8, 10, 41, 9, 9, 8, 7, 19, 15, 4, 12, 5, 7, - 3, - ], - }, - { - label: 'Minnesota immigration clash', - topics: 'minneapolis,minnesota,ice,immigration,illegal', - description: - 'The key topic discussed in the messages from twitter is the ongoing tensions and clashes surrounding ICE (Immigration and Customs Enforcement) in Minneapolis and other areas. The messages highlight incidents such as the removal of anti-ICE street barricades by police officers, protests against ICE wreaking havoc on the local economy, clashes between rioters and individuals associated with ICE, and confrontations between politicians and ICE officials. The messages also mention incidents of illegal immigrants being removed or arrested by ICE agents, as well as instances of violence and threats against ICE officials. Overall, the messages reflect a highly charged and contentious atmosphere surrounding ICE and immigration enforcement in various communities.', - data: [ - 12, 25, 27, 13, 3, 8, 1, 10, 14, 5, 14, 6, 19, 12, 3, 8, 18, 5, 2, 3, 6, 15, 1, 26, 13, 11, - 18, 4, 2, 6, 8, 8, 9, 10, 9, 13, 5, 16, 4, 16, 20, 5, 11, 1, 7, 11, 7, 3, 4, 2, 5, 4, 5, 15, - 6, - ], - }, - { - label: 'Memecoins', - topics: 'memes,memecoin,memecoins,meme,troll', - description: - 'The messages from twitter suggest that there is a strong belief in the longevity and potential of memecoins within the crypto industry. Despite the volatility and short lifespan of some memecoins, there is a sentiment that established memes will recover and continue to hold value. There is also discussion about the transition from meme coins to utility coins, such as DeFi and AI projects, indicating a shift in focus towards more practical applications within the industry. Overall, there is a recognition of the speculative nature of memecoins, but also an acknowledgment of the potential for significant returns within this space.', - data: [ - 12, 5, 5, 7, 16, 3, 5, 4, 7, 12, 5, 9, 7, 6, 6, 5, 12, 8, 6, 10, 9, 1, 4, 4, 6, 5, 4, 10, 8, - 8, 104, 7, 19, 6, 6, 9, 4, 10, 6, 6, 8, 2, 4, 5, 6, 3, 5, 4, 8, 15, 5, 5, 2, 8, 9, - ], - }, - { - label: 'AI coding assistants', - topics: 'opus,46,codex,53,claude', - description: - 'The key topics currently discussed in the crypto industry on social media accounts include the comparison between Opus 4.6 and Codex 5.3, with users expressing their preference for Opus 4.6. There is also a lot of discussion about Claude Code and its capabilities, with some users praising its usefulness while others criticize its limitations. Some users have burnt through their weekly limit on Opus 4.6 quickly, indicating its high usage. Additionally, there is a marketplace for security analysis skills for Claude Code, showing its growing popularity in the industry. Overall, there is a mix of opinions on Claude Code, with some users finding it helpful but not always honest in its functionality.', - data: [ - 7, 7, 4, 7, 8, 2, 8, 5, 57, 6, 7, 8, 7, 5, 6, 10, 10, 5, 7, 10, 7, 10, 5, 12, 4, 5, 5, 10, - 5, 3, 1, 6, 13, 29, 4, 8, 5, 2, 8, 6, 8, 6, 7, 10, 6, 9, 15, 9, 6, 10, 12, 6, 3, 9, 7, - ], - }, - { - label: 'Gaming', - topics: 'gaming,gamers,gameplay,games,gamechanger', - description: - 'The messages from twitter mainly discuss various aspects of gaming, including nostalgia for old games like Mario Kart 64, renting games from Blockbuster, and debates about classic games like Goldeneye and Mario Kart. There is also mention of building and playing different types of games, as well as the excitement surrounding upcoming game releases like Xenoblade 3. Additionally, there is a focus on the development of new games and platforms, with mentions of building interactive puzzles and launching new games on platforms like Solana. Overall, the messages reflect a diverse range of gaming-related topics and interests within the crypto community.', - data: [ - 3, 6, 3, 5, 8, 2, 9, 2, 4, 6, 9, 7, 6, 11, 6, 12, 4, 4, 69, 7, 12, 9, 8, 9, 7, 10, 10, 5, - 12, 4, 5, 2, 11, 7, 11, 21, 6, 12, 7, 9, 6, 0, 4, 2, 7, 6, 9, 3, 10, 3, 6, 11, 11, 4, 4, - ], - }, - { - label: 'Bear market for crypto', - topics: 'bears,bear,bearmarket,shallow,doomscrolling', - description: - 'The messages from twitter reflect a mix of emotions and perspectives on the current bear market in the crypto industry. Some users are expressing frustration and fear, while others are highlighting the potential opportunities for growth and development during this time. There is a sense of camaraderie among some users, as they navigate the challenges of the bear market together. Additionally, there is a reminder to focus on the core values of decentralization, censorship resistance, and democratization of opportunity in the crypto space, even during tough market conditions. Overall, the messages suggest a range of reactions to the bear market, from optimism to caution, but also a sense of resilience and determination to continue pushing forward in the industry.', - data: [ - 1, 3, 3, 103, 13, 5, 14, 6, 4, 4, 7, 5, 6, 1, 9, 3, 9, 3, 5, 4, 3, 3, 4, 0, 3, 8, 4, 1, 7, - 59, 6, 5, 6, 3, 3, 5, 3, 0, 6, 2, 2, 1, 4, 1, 4, 11, 9, 6, 4, 3, 5, 1, 2, 3, 8, - ], - }, - { - label: 'Art', - topics: 'artists,artist,art,paint,artwork', - description: - "The key topics discussed in the messages from twitter are:\n1. Appreciation for unique and individual art\n2. Support for emerging artists\n3. Ownership and control of digital art\n4. Criticism of the art industry's expectations\n5. Opportunities for artists to showcase their work\n6. Importance of dedication and hard work in art creation\n7. Avoiding the need for external validation in art creation.", - data: [ - 4, 6, 63, 2, 9, 6, 3, 4, 10, 6, 12, 4, 4, 5, 9, 9, 6, 5, 5, 6, 10, 5, 2, 11, 6, 7, 6, 6, 14, - 3, 1, 3, 14, 8, 11, 16, 5, 5, 2, 2, 5, 0, 2, 1, 7, 10, 6, 10, 8, 3, 1, 3, 1, 12, 5, - ], - }, - { - label: 'MegaETH drama', - topics: 'megaeth,mega,mainnet,tge,bridged', - description: - 'The messages from twitter suggest that there is a lot of discussion and anticipation surrounding the abilities of MegaETH, particularly in relation to its mainnet launch. Some users are questioning the lack of activity and incentives on the platform, while others are excited about the potential of MegaETH and its partnerships with projects like PrismFi and Lombard Finance. There are also concerns raised about potential rug pulls and changes in TGE plans by the MegaETH team. Overall, it seems that there is a mix of skepticism and optimism within the crypto community regarding MegaETH.', - data: [ - 3, 2, 4, 2, 5, 12, 5, 2, 4, 5, 2, 9, 13, 13, 3, 10, 9, 3, 7, 9, 3, 8, 6, 13, 8, 8, 20, 27, - 2, 24, 28, 0, 8, 8, 5, 5, 2, 8, 2, 4, 4, 2, 1, 8, 4, 6, 10, 6, 5, 7, 5, 4, 7, 2, 2, - ], - }, - { - label: 'US labor data', - topics: 'unemployment,43,employment,44,labor', - description: - 'The messages from twitter are discussing the recent US jobs report, which showed an increase of 130,000 jobs in January. The unemployment rate dropped to 4.3%, beating expectations. However, there are concerns about the quality of the job gains, as a significant portion came from health care and social assistance sectors. There are also worries about the overall strength of the US labor market, with some suggesting that the Federal Reserve may need to lower interest rates to prevent a recession. Additionally, there are predictions of rate cuts in 2026 due to low job openings and rising unemployment rates. Overall, the job report is seen as stronger than expected, but there are underlying concerns about the sustainability of the growth.', - data: [ - 2, 14, 2, 8, 2, 4, 5, 9, 2, 2, 2, 11, 4, 26, 8, 7, 0, 3, 3, 1, 4, 9, 11, 5, 56, 8, 1, 1, 6, - 5, 4, 5, 5, 18, 5, 2, 10, 0, 11, 10, 10, 5, 1, 8, 1, 4, 5, 1, 1, 0, 23, 7, 6, 1, 3, - ], - }, - { - label: 'ETH price', - topics: '1900,1800,2k,2000,15k', - description: - 'The key topics currently discussed on twitter regarding Ethereum ($ETH) are:\n\n1. Price Analysis: There is a lot of discussion about the current price of $ETH, with some users predicting a bounce due to hitting support levels, while others are concerned about further downside potential if certain key levels are breached.\n\n2. Market Sentiment: There are mixed sentiments about the future of $ETH, with some users losing hope in its performance while others are still optimistic about a potential bullish move.\n\n3. Technical Analysis: Traders are analyzing various technical indicators such as trendlines, support levels, and resistance levels to predict the next move for $ETH.\n\n4. Fundamentals: There is mention of Ethereum ETFs buying the dip, as well as discussions about the overall market strength and valuation of $ETH.\n\n5. Potential Price Targets: Users are speculating on potential price targets for $ETH, with some mentioning levels such as $1,900, $1,830, $1,600, and $1,300 as possible support or resistance zones.\n\nOverall, the sentiment seems to be cautious with a mix of optimism and concern about the future price movements of Ethereum.', - data: [ - 5, 1, 5, 6, 9, 7, 8, 6, 5, 2, 4, 7, 8, 2, 17, 8, 8, 2, 3, 2, 4, 3, 13, 8, 3, 4, 11, 8, 23, - 7, 5, 2, 5, 3, 2, 5, 15, 3, 10, 11, 2, 6, 8, 10, 10, 10, 6, 7, 4, 6, 7, 2, 3, 3, 3, - ], - }, - { - label: 'Vibe coding', - topics: 'vibe,coding,vibing,coded,vibes', - description: - 'The vibe coding community on social media is buzzing with excitement and creativity. People are comparing vibe coding to using cheat codes in GTA or playing Roblox, highlighting the innovative and game-changing nature of vibe coding. There is a sense of camaraderie and collaboration among vibe coders, with individuals sharing updates on their projects and seeking advice from others in the community. The vibe coding renaissance is seen as a transformative force that will have a significant impact on the future of technology and society. Overall, the vibe coding community is vibrant, dynamic, and full of potential for groundbreaking developments in the crypto industry.', - data: [ - 2, 4, 9, 3, 3, 4, 1, 2, 36, 1, 6, 5, 2, 2, 2, 5, 5, 6, 3, 2, 9, 7, 3, 6, 2, 3, 3, 3, 0, 5, - 5, 3, 5, 3, 5, 2, 4, 0, 2, 3, 4, 1, 3, 3, 5, 8, 4, 6, 0, 9, 5, 106, 2, 7, 3, - ], - }, - { - label: 'Whales', - topics: 'whale,whitewhale,whales,deposited,accumulated', - description: - 'The key topics currently being discussed in the crypto industry on social media include whale activity, accumulation of assets, leveraged trading, OTC trading, and the impact of whales on the market. Whales are seen accumulating assets like Bitcoin and Ethereum, making large deposits and purchases. There is also discussion about leveraged trading, with some whales being liquidated due to their positions. OTC trading is highlighted as a way for whales to buy Bitcoin without affecting the market. Overall, whale activity is closely monitored and analyzed as it can have a significant impact on the market.', - data: [ - 17, 4, 2, 2, 6, 12, 9, 6, 4, 4, 5, 5, 6, 8, 0, 0, 6, 2, 2, 3, 2, 6, 14, 5, 3, 3, 5, 5, 4, 7, - 5, 2, 6, 4, 2, 1, 3, 5, 3, 6, 0, 4, 4, 9, 1, 5, 0, 1, 7, 6, 2, 6, 2, 86, 1, - ], - }, - { - label: 'BTC price', - topics: 'btcd,rejection,72k,4h,48k', - description: - 'The key topics currently discussed in the crypto community on Twitter include the price movements of various cryptocurrencies such as $BTC, $MEX, $EGLD, and their impact on the USD. There is a lot of discussion about the recent price fluctuations of Bitcoin, with some predicting a consolidation period between $60,000 and $73,000 before a potential drop below $55,000. There is also talk about potential buying opportunities at lower price levels, such as $48,000 to $54,000. Additionally, there is speculation about the impact of US CPI data on the next big move for Bitcoin, with some suggesting a bounce towards $72,000+ if the data is softer. Overall, the sentiment seems to be cautious with a focus on key support and resistance levels for Bitcoin.', - data: [ - 5, 1, 2, 6, 2, 16, 11, 7, 11, 7, 4, 3, 2, 5, 1, 7, 9, 3, 0, 5, 2, 4, 16, 4, 2, 2, 4, 6, 17, - 6, 1, 7, 3, 2, 2, 2, 7, 11, 9, 14, 5, 2, 6, 3, 7, 5, 4, 3, 5, 5, 2, 6, 5, 2, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-111.json b/priv/repo/major_topics_seed/data-111.json deleted file mode 100644 index fd9c4a5271..0000000000 --- a/priv/repo/major_topics_seed/data-111.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["12.02.26","13.02.26","13.02.26","13.02.26","13.02.26","13.02.26","13.02.26","13.02.26","14.02.26","14.02.26","14.02.26","14.02.26","14.02.26","14.02.26","14.02.26","14.02.26","15.02.26","15.02.26","15.02.26","15.02.26","15.02.26","15.02.26","15.02.26","15.02.26","16.02.26","16.02.26","16.02.26","16.02.26","16.02.26","16.02.26","16.02.26","16.02.26","17.02.26","17.02.26","17.02.26","17.02.26","17.02.26","17.02.26","17.02.26","17.02.26","18.02.26","18.02.26","18.02.26","18.02.26","18.02.26","18.02.26","18.02.26","18.02.26","19.02.26","19.02.26","19.02.26","19.02.26","19.02.26","19.02.26","19.02.26"],"datasets":[{"label":"AI","topics":"agi,ais,erc8004,autonomous,agentic","description":"Contributors argue AI will be a major catalyst for the next crypto cycle — from AI-driven trading (including on Lightning) and AI-native tokens to firms adopting protocol-level provenance (OpenLedger). Advice ranges from accumulating proven AI coins to building AI skills and agents; technical threads cover orchestration, model cost tradeoffs, and agent decision-routing. Warnings appear about systemic risks (job displacement, an AI arms race, misinformation/engagement farming) and how AI will reshape management and market catalysts.","data":[37,250,53,53,59,29,55,34,39,56,51,32,53,44,55,35,32,55,37,54,38,38,37,49,71,44,38,36,40,36,36,38,59,25,48,35,60,31,54,53,37,46,35,50,30,37,69,63,33,51,47,32,38,52,29]},{"label":"Lunar new year","topics":"lunar,horse,prosperity,wishing,envelope","description":"Crypto communities and projects used Lunar New Year (Year of the Fire Horse) for celebratory greetings, memetic marketing, and bullish messaging. Many posts tied cultural themes of rapid change and momentum to crypto narratives—promoting chains, tokens, rewards/events (BNB, Ethereum, $LINK, AKITA, HTX), product updates (Birdeye), fundraising (Dragonfly Fund IV), and advice to “stack sats” or hold. Tone mixes optimism, hype, and playful superstition amid broader market commentary.","data":[7,9,14,6,22,33,8,39,19,43,20,14,6,9,12,25,25,27,20,18,5,54,48,10,25,4,11,13,26,13,8,12,36,13,8,7,7,24,16,17,10,5,10,21,21,25,22,4,13,8,11,15,15,37,106]},{"label":"BTC price","topics":"ema,65k,68k,70k,67k","description":"Tweets focus on Bitcoin's recent drop below $63k and technicals pointing to continued downside momentum—4h trend lower, 50 EMA resistance, and price trading ~2 standard deviations below the 365-day VWAP with weekly RSI oversold. Analysts debate a local bottom (low-60ks) versus deeper drawdowns (possible ~-60% cycle bottom or even sub-$8k scenarios referenced), while others expect reclaiming key levels (70–74k) could trigger sharp rallies. Common advice: be patient, DCA/accumulate, watch liquidity grabs, weekly closes, and key VWAP/EMA resistances for confirmation.","data":[14,1,14,13,10,43,39,20,16,12,4,25,10,31,7,22,21,7,5,13,8,23,26,5,11,2,18,17,35,11,4,12,15,8,8,15,30,18,16,14,14,10,20,16,18,29,17,17,16,22,16,9,14,4,9]},{"label":"OpenClaw","topics":"steinberger,claw,openclaw,openai,kimi","description":"OpenClaw — a viral open‑source autonomous AI agent — is driving a fast-growing ecosystem of forks, integrations and apps. Users report it automates tasks, personal agents, finance/market analysis, content distribution, and connects to apps (Telegram/WhatsApp/browser), while projects like ClawIndex track hundreds of add‑ons. The creator joining OpenAI and an upstream merge have accelerated adoption, but discussions highlight hype cycles, many copies, monetization/legal pressures, and crypto intersections (Solana $ovsm analogs, smart‑contract payments, proofoflobster authentication). Overall, OpenClaw sparked a broader agent revolution with notable implications for finance and web3.","data":[7,14,4,8,12,8,11,6,14,12,17,11,4,7,7,11,8,17,7,17,7,16,9,10,19,4,14,12,17,6,7,9,5,58,4,7,12,5,10,9,11,5,12,7,10,14,11,9,12,7,18,9,12,7,8]},{"label":"Memecoins","topics":"memecoins,memecoin,memes,meme,wojak","description":"Social chatter centers on a memecoin renaissance: traders hunting low‑market‑cap tokens with active, cult‑like communities and chasing 100x gains. Several tokens and launches are highlighted ($ASTY, $mim, $motion, $M, $WOJAK, APEMARS, $ChiefPussy), with promotions via Discord, Solana integrations, and viral meme creation (even OpenAI mentions). Memecoins are outperforming majors in spots—sharp spikes, heavy shilling, and community-driven minting dominate the narrative, alongside concerns about politicized memes and security/stealing risks.","data":[5,3,8,6,9,5,4,11,16,8,3,4,11,7,3,16,13,4,6,9,3,7,7,4,9,9,8,6,13,79,36,7,8,7,3,7,7,7,6,3,5,9,6,2,11,6,7,14,7,7,4,11,3,8,9]},{"label":"US war with Iran","topics":"irans,nuclear,iran,iranian,strike","description":"Social media is focused on rapidly escalating US–Iran tensions: reports that the Trump administration is weighing limited military strikes to pressure Iran into a nuclear deal, US forces and personnel movements in the region, and stalled diplomacy after recent talks. Iran pushes back publicly while reports note regional military buildups and market impacts (VIX spikes, prediction markets), and a fringe claim Iran may sell weapons for Bitcoin/crypto. Overall risk of confrontation and market volatility is the central concern.","data":[2,10,7,10,3,8,2,5,7,9,3,10,11,0,4,5,8,4,8,8,1,4,8,4,7,9,3,3,2,11,9,6,17,14,1,8,16,3,12,10,25,31,3,5,9,15,12,16,4,3,5,4,30,2,2]},{"label":"PulseChain drama","topics":"brb,makeup,bat,monerotopia,pivoting","description":"Casual crypto community posts mixing event promotion and market commentary: PulseChain tablets and presence at ETH Denver with CryptoCoffee369 and DEXintheCityPod co-hosts (suggesting a repeatable format), alongside on-chain/market technical shorthand — e.g., $USDT.D structure possibly supporting a wave 4 — plus scattered memes, Pi/Hashtro references, and activist/viral links.","data":[11,4,11,6,3,9,6,9,12,6,12,6,5,10,8,6,11,2,3,7,9,11,11,8,10,7,9,6,5,5,2,4,12,8,5,7,10,10,2,8,7,4,5,15,4,12,10,3,5,10,5,3,1,2,9]},{"label":"CPI","topics":"cpi,inflation,03,yoy,expectations","description":"Twitter is reacting to a January US CPI print of 2.4% (headline) and 2.5% core, below expectations and at multi-year lows. Crypto and market commentators call it a soft surprise that eases Fed rate pressure, fuels rate-cut expectations, and is being framed as bullish for crypto. Alternative measures (Truflation) and critics argue official CPI understates money-supply driven inflation; posts also note large multi-year price gains in housing, food, and energy. Overall the release is driving debate on Fed credibility and near-term market volatility.","data":[7,4,6,2,3,5,2,19,9,8,12,28,6,7,4,19,8,1,4,4,4,8,4,58,7,5,3,2,10,6,2,5,7,2,3,2,12,3,10,7,5,6,5,6,3,4,0,9,3,2,2,6,9,3,6]},{"label":"Gaming","topics":"games,gaming,immutable,gameplay,metaverse","description":"Discussion focuses on Web3 play-to-earn gaming: trending blockchain titles, hubs, and engagement mechanics. Users call out addictive dungeon-crawlers (LootSurvivor), community-driven games (Sunflower Land), platform hubs (Nebula3, Immutable Play), and Ethereum/Starknet projects. Key themes: tournaments and revenue-sharing, embedded/AI mini-games and decentralized messaging, UX updates (Game Plaza), and why contextual, low-commitment play drives scale.","data":[6,4,6,3,9,3,4,7,4,6,6,3,3,3,7,13,8,58,15,6,6,7,2,6,4,7,8,9,6,1,9,2,11,2,3,24,2,4,1,3,5,3,7,9,7,5,5,4,0,6,5,4,8,1,3]},{"label":"ETH Denver","topics":"denver,ethereumdenver,ethdenver,booth,meetup","description":"Social posts center on ETHDenver — attendees and teams announcing presence, meetups, sponsor booths, panels and builder nights, promotional meetups (brunches, parties), POAP digital collectibles, art/AR exhibits, and networking among developers, infrastructure projects, and community members.","data":[6,5,7,4,1,6,1,2,9,12,1,7,8,3,8,4,7,4,5,12,9,8,14,3,8,4,2,16,7,1,5,5,5,7,4,3,3,2,0,2,4,3,5,5,8,5,16,5,10,4,4,11,21,3,7]},{"label":"Whales","topics":"whale,deposited,whales,40x,opened","description":"Social posts highlight intense whale activity: huge on-chain transfers and exchange deposits of BTC and ETH (examples: 261k ETH ~$543–546M, 5k BTC ~$348M, ~57k BTC moved), large leveraged longs and multi‑million dollar positions, and signs of both accumulation and unloading. Analysts warn exchange inflows often precede selling pressure, while other metrics (Bitfinex long exposure at a 3‑year high; spot buys vs retail futures leverage) point to squeeze risk and mixed bullish conviction. Market intelligence providers are actively tracking and monetizing these signals.","data":[9,7,6,3,1,5,8,2,2,2,3,2,12,6,1,5,0,2,1,2,5,2,3,3,3,1,2,6,4,7,1,13,2,7,2,3,1,2,5,7,2,8,5,4,5,9,2,2,6,5,1,6,4,90,6]},{"label":"Vibecoding","topics":"vibe,vibecoding,coders,coding,vibecode","description":"Social chatter centers on “vibe coding” — AI-driven, multi-agent app development that’s enabling rapid creation of business and consumer apps (Replit, Databricks, Bevy, CODEX CLI). Users praise fast prototyping and automation (even AI HFT desks and NFT collector hubs) but raise serious concerns about security and quality: recurring access-control bugs, LLMs failing to enforce invariants, data leaks, and OPSEC gaps. Emerging audit loops (GPT review + Claude fixes) and static analysis are highlighted as mitigations. The trend is bleeding into crypto (wallet verification, tokenization, community onboarding) and fuels both bullish adoption narratives and skeptical warnings about fragile, buggy deployments.","data":[5,4,0,3,3,2,6,5,25,4,2,0,6,2,5,3,3,5,8,7,5,4,8,3,4,3,3,0,1,7,6,2,3,4,4,3,4,5,4,4,3,2,1,5,5,4,6,4,4,5,2,74,10,5,4]},{"label":"Hyperliquid","topics":"hyperliquid,hl,hyperliquidx,hype,jake","description":"Twitter threads focus on Hyperliquid ($HYPE) token dynamics — heavy protocol repurchases (assistance fund and buybacks: ~$60.6M over 30 days, recent ~$1.2M additions), supply removal, and price-sensitive buyback mechanics. Discussion covers HIP proposals (HIP-3/HIP-4) and a network upgrade tied to prediction markets, options, and higher revenue potential, plus leverage/borrowing capacity for traders. Community speculation about undervaluation, potential airdrops, liquidity rails, and upcoming product growth is paired with institutional moves: hires, advisory additions, and the new Hyperliquid Policy Center to pursue regulatory clarity. Overall sentiment sees material on-chain buybacks, governance changes, and regulatory positioning as catalysts for HYPE price appreciation and broader adoption.","data":[4,5,4,8,9,5,7,4,1,12,3,3,3,7,3,5,4,2,2,7,4,2,28,8,4,14,11,4,4,7,4,5,4,6,2,5,6,7,4,6,5,4,7,2,6,6,1,4,8,3,6,6,2,1,6]},{"label":"Precious metals","topics":"silver,metals,precious,5000,disclaimer","description":"Social posts show heightened focus on precious metals: gold is oscillating around the $5,000 area with bullish calls (some forecasts as high as $6,200) and analysts raising 2026 targets, while silver has been highly volatile—spiking into the high $70s/low $80s then sliding back to mid-$70s. Market drivers cited include the US dollar, Fed minutes, and a noted correlation between gold and Japanese 10‑year yields (framed as a proxy for trust in the financial system). Traders offer competing views—momentum plays and short-term trading alerts, buy-the-dip strategies for longer consolidation, and technical setups (Fibonacci-based short targets around $100–104 by May 2026). Institutional forecasts (J.P. Morgan, UBS) and trading services/substack promotions are amplifying attention and positioning.","data":[4,1,7,5,2,3,1,6,10,5,5,3,5,6,2,8,3,9,4,20,3,6,2,1,3,2,5,4,5,2,10,7,1,7,4,13,14,4,9,7,2,4,20,3,4,10,6,2,4,5,3,2,4,3,3]},{"label":"China","topics":"chinas,china,treasuries,brics,73","description":"Social feeds highlight China’s strategic shift away from U.S. Treasuries toward gold accumulation and a very large current-account surplus, signaling de‑risking from dollar assets and potential global decoupling. Posts note China’s domestic pivot (stimulus to boost consumption), persistent deflationary/weak nominal income, IMF growth forecasts, and tech/infrastructure advances (e.g., 10G broadband). Market and geopolitical implications include pressure on UST demand, reserve diversification, and renewed narratives around Bitcoin as economic sovereignty.","data":[7,3,1,3,7,1,3,8,15,8,3,5,9,11,5,4,8,1,3,6,6,3,12,10,3,10,3,6,2,4,6,6,5,5,5,5,3,3,4,5,6,6,3,4,7,6,2,3,3,5,4,2,5,4,2]},{"label":"Valentine's day","topics":"valentines,valentinesday,celebrating,loved,happy","description":"A flood of Valentine’s Day posts across crypto accounts blending personal greetings with project promotion and community engagement. Messages range from affectionate/mutual-support notes and Galentine shoutouts to marketing for DeFi staking rewards, WAX trading cards, NFT/metaverse hangouts, and platform mentions (BTSE, NoOnes, MadLads, Backpack). Also includes event highlights (TreeHacks) and a call for government transparency—overall a mix of celebration, user acquisition, and community-building.","data":[1,5,4,4,12,2,4,14,2,2,3,21,2,3,9,8,1,9,3,3,2,31,7,2,2,3,1,2,15,4,3,3,2,2,2,1,2,2,4,2,2,2,3,8,5,3,2,2,4,3,18,3,1,5,7]},{"label":"RWA","topics":"rwa,rwas,tokenized,15b,tokenization","description":"Social chatter centers on rapid growth and mainstreaming of tokenized real‑world assets (RWAs): Ethereum RWAs surpassed ~$150B, treasuries scaled to multi‑billions, and institutional capital is flowing into projects (Securitize, Ondo, Centrifuge and newer Solana/BNB initiatives). Conversations highlight product innovation (looping, structured RWA products, convergence trading), major events/partnerships, and promising niche use cases (private credit, real estate, luxury assets). Primary debates focus on whether TradFi moving on‑chain helps crypto developers and the practical bottlenecks — fragmentation, custody, legal frameworks, investor protection — that will shape RWA adoption in 2026.","data":[1,3,4,6,7,3,8,3,2,6,6,2,1,8,3,3,3,3,1,2,6,3,9,4,11,0,6,0,5,17,1,1,5,5,2,1,8,6,9,1,2,5,4,3,4,8,4,5,26,2,9,7,3,2,3]},{"label":"Art and NFTs","topics":"artists,painting,artist,art,pixel","description":"Conversation centers on generative and digital art (coded/generative pieces, pixel art) alongside traditional handmade work and prints. Posters share collecting and exhibition activity, notable commissions/collaborations, and enthusiasm for specific artists and series. Discussion also covers artist professionalization—unionizing, pricing standards, patronage—and creators working across multiple mediums while asserting creative freedom.","data":[1,4,26,18,4,2,4,8,6,1,4,5,4,10,3,1,9,4,4,4,2,2,2,2,2,5,7,7,6,1,0,4,2,11,7,11,2,4,4,3,3,5,3,2,1,2,3,3,1,2,4,7,3,6,3]},{"label":"Football","topics":"league,champions,premier,clubs,jr","description":"Social posts mix Arsenal match commentary (poor attacking form, match score updates, FA Cup progress, Saka signing) with heavy betting chatter — fans sharing bets, doubling down, and match predictions. Crypto-linked promotions are prominent: USDC prize giveaways for score predictions, betting promos for Champions League, and crypto community shoutouts (BONK/bonk_inu at BVB). Overall it's football fan sentiment + crypto-enabled wagering incentives.","data":[0,4,6,9,7,4,0,2,10,8,1,2,4,5,1,5,3,4,2,9,4,5,3,4,1,5,8,1,1,4,4,2,7,7,2,14,4,4,4,3,3,8,9,0,6,0,7,0,11,5,1,5,3,11,3]},{"label":"PUNCH memecoin","topics":"punch,moodeng,zoo,smashed,pnut","description":"Social chatter centers on $PUNCH, a Solana token undergoing a rapid viral breakout — large intraday gains, rising volume, and a stair-step pattern of higher lows. Community posts claim huge returns (from small buys to 10x–120x), market cap spikes (~$3M→$26M and claims of $16M in a day), ATH breakouts, and growing narrative momentum (videos, giveaways, influencer calls). Overall tone is bullish retail hype and short-term momentum-driven trading activity.","data":[11,2,3,0,4,3,5,6,5,3,0,2,3,2,3,0,2,3,6,8,1,3,8,3,2,3,9,3,8,7,4,3,5,1,2,6,2,26,3,4,6,2,2,6,3,4,4,7,1,2,4,3,2,2,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-111.ts b/priv/repo/major_topics_seed/data-111.ts deleted file mode 100644 index 00c05ad67b..0000000000 --- a/priv/repo/major_topics_seed/data-111.ts +++ /dev/null @@ -1,265 +0,0 @@ -export const NARRATIVES = { - labels: [ - '12.02.26', - '13.02.26', - '13.02.26', - '13.02.26', - '13.02.26', - '13.02.26', - '13.02.26', - '13.02.26', - '14.02.26', - '14.02.26', - '14.02.26', - '14.02.26', - '14.02.26', - '14.02.26', - '14.02.26', - '14.02.26', - '15.02.26', - '15.02.26', - '15.02.26', - '15.02.26', - '15.02.26', - '15.02.26', - '15.02.26', - '15.02.26', - '16.02.26', - '16.02.26', - '16.02.26', - '16.02.26', - '16.02.26', - '16.02.26', - '16.02.26', - '16.02.26', - '17.02.26', - '17.02.26', - '17.02.26', - '17.02.26', - '17.02.26', - '17.02.26', - '17.02.26', - '17.02.26', - '18.02.26', - '18.02.26', - '18.02.26', - '18.02.26', - '18.02.26', - '18.02.26', - '18.02.26', - '18.02.26', - '19.02.26', - '19.02.26', - '19.02.26', - '19.02.26', - '19.02.26', - '19.02.26', - '19.02.26', - ], - datasets: [ - { - label: 'AI', - topics: 'agi,ais,erc8004,autonomous,agentic', - description: - 'Contributors argue AI will be a major catalyst for the next crypto cycle — from AI-driven trading (including on Lightning) and AI-native tokens to firms adopting protocol-level provenance (OpenLedger). Advice ranges from accumulating proven AI coins to building AI skills and agents; technical threads cover orchestration, model cost tradeoffs, and agent decision-routing. Warnings appear about systemic risks (job displacement, an AI arms race, misinformation/engagement farming) and how AI will reshape management and market catalysts.', - data: [ - 37, 250, 53, 53, 59, 29, 55, 34, 39, 56, 51, 32, 53, 44, 55, 35, 32, 55, 37, 54, 38, 38, 37, - 49, 71, 44, 38, 36, 40, 36, 36, 38, 59, 25, 48, 35, 60, 31, 54, 53, 37, 46, 35, 50, 30, 37, - 69, 63, 33, 51, 47, 32, 38, 52, 29, - ], - }, - { - label: 'Lunar new year', - topics: 'lunar,horse,prosperity,wishing,envelope', - description: - 'Crypto communities and projects used Lunar New Year (Year of the Fire Horse) for celebratory greetings, memetic marketing, and bullish messaging. Many posts tied cultural themes of rapid change and momentum to crypto narratives—promoting chains, tokens, rewards/events (BNB, Ethereum, $LINK, AKITA, HTX), product updates (Birdeye), fundraising (Dragonfly Fund IV), and advice to “stack sats” or hold. Tone mixes optimism, hype, and playful superstition amid broader market commentary.', - data: [ - 7, 9, 14, 6, 22, 33, 8, 39, 19, 43, 20, 14, 6, 9, 12, 25, 25, 27, 20, 18, 5, 54, 48, 10, 25, - 4, 11, 13, 26, 13, 8, 12, 36, 13, 8, 7, 7, 24, 16, 17, 10, 5, 10, 21, 21, 25, 22, 4, 13, 8, - 11, 15, 15, 37, 106, - ], - }, - { - label: 'BTC price', - topics: 'ema,65k,68k,70k,67k', - description: - "Tweets focus on Bitcoin's recent drop below $63k and technicals pointing to continued downside momentum—4h trend lower, 50 EMA resistance, and price trading ~2 standard deviations below the 365-day VWAP with weekly RSI oversold. Analysts debate a local bottom (low-60ks) versus deeper drawdowns (possible ~-60% cycle bottom or even sub-$8k scenarios referenced), while others expect reclaiming key levels (70–74k) could trigger sharp rallies. Common advice: be patient, DCA/accumulate, watch liquidity grabs, weekly closes, and key VWAP/EMA resistances for confirmation.", - data: [ - 14, 1, 14, 13, 10, 43, 39, 20, 16, 12, 4, 25, 10, 31, 7, 22, 21, 7, 5, 13, 8, 23, 26, 5, 11, - 2, 18, 17, 35, 11, 4, 12, 15, 8, 8, 15, 30, 18, 16, 14, 14, 10, 20, 16, 18, 29, 17, 17, 16, - 22, 16, 9, 14, 4, 9, - ], - }, - { - label: 'OpenClaw', - topics: 'steinberger,claw,openclaw,openai,kimi', - description: - 'OpenClaw — a viral open‑source autonomous AI agent — is driving a fast-growing ecosystem of forks, integrations and apps. Users report it automates tasks, personal agents, finance/market analysis, content distribution, and connects to apps (Telegram/WhatsApp/browser), while projects like ClawIndex track hundreds of add‑ons. The creator joining OpenAI and an upstream merge have accelerated adoption, but discussions highlight hype cycles, many copies, monetization/legal pressures, and crypto intersections (Solana $ovsm analogs, smart‑contract payments, proofoflobster authentication). Overall, OpenClaw sparked a broader agent revolution with notable implications for finance and web3.', - data: [ - 7, 14, 4, 8, 12, 8, 11, 6, 14, 12, 17, 11, 4, 7, 7, 11, 8, 17, 7, 17, 7, 16, 9, 10, 19, 4, - 14, 12, 17, 6, 7, 9, 5, 58, 4, 7, 12, 5, 10, 9, 11, 5, 12, 7, 10, 14, 11, 9, 12, 7, 18, 9, - 12, 7, 8, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memecoin,memes,meme,wojak', - description: - 'Social chatter centers on a memecoin renaissance: traders hunting low‑market‑cap tokens with active, cult‑like communities and chasing 100x gains. Several tokens and launches are highlighted ($ASTY, $mim, $motion, $M, $WOJAK, APEMARS, $ChiefPussy), with promotions via Discord, Solana integrations, and viral meme creation (even OpenAI mentions). Memecoins are outperforming majors in spots—sharp spikes, heavy shilling, and community-driven minting dominate the narrative, alongside concerns about politicized memes and security/stealing risks.', - data: [ - 5, 3, 8, 6, 9, 5, 4, 11, 16, 8, 3, 4, 11, 7, 3, 16, 13, 4, 6, 9, 3, 7, 7, 4, 9, 9, 8, 6, 13, - 79, 36, 7, 8, 7, 3, 7, 7, 7, 6, 3, 5, 9, 6, 2, 11, 6, 7, 14, 7, 7, 4, 11, 3, 8, 9, - ], - }, - { - label: 'US war with Iran', - topics: 'irans,nuclear,iran,iranian,strike', - description: - 'Social media is focused on rapidly escalating US–Iran tensions: reports that the Trump administration is weighing limited military strikes to pressure Iran into a nuclear deal, US forces and personnel movements in the region, and stalled diplomacy after recent talks. Iran pushes back publicly while reports note regional military buildups and market impacts (VIX spikes, prediction markets), and a fringe claim Iran may sell weapons for Bitcoin/crypto. Overall risk of confrontation and market volatility is the central concern.', - data: [ - 2, 10, 7, 10, 3, 8, 2, 5, 7, 9, 3, 10, 11, 0, 4, 5, 8, 4, 8, 8, 1, 4, 8, 4, 7, 9, 3, 3, 2, - 11, 9, 6, 17, 14, 1, 8, 16, 3, 12, 10, 25, 31, 3, 5, 9, 15, 12, 16, 4, 3, 5, 4, 30, 2, 2, - ], - }, - { - label: 'PulseChain drama', - topics: 'brb,makeup,bat,monerotopia,pivoting', - description: - 'Casual crypto community posts mixing event promotion and market commentary: PulseChain tablets and presence at ETH Denver with CryptoCoffee369 and DEXintheCityPod co-hosts (suggesting a repeatable format), alongside on-chain/market technical shorthand — e.g., $USDT.D structure possibly supporting a wave 4 — plus scattered memes, Pi/Hashtro references, and activist/viral links.', - data: [ - 11, 4, 11, 6, 3, 9, 6, 9, 12, 6, 12, 6, 5, 10, 8, 6, 11, 2, 3, 7, 9, 11, 11, 8, 10, 7, 9, 6, - 5, 5, 2, 4, 12, 8, 5, 7, 10, 10, 2, 8, 7, 4, 5, 15, 4, 12, 10, 3, 5, 10, 5, 3, 1, 2, 9, - ], - }, - { - label: 'CPI', - topics: 'cpi,inflation,03,yoy,expectations', - description: - 'Twitter is reacting to a January US CPI print of 2.4% (headline) and 2.5% core, below expectations and at multi-year lows. Crypto and market commentators call it a soft surprise that eases Fed rate pressure, fuels rate-cut expectations, and is being framed as bullish for crypto. Alternative measures (Truflation) and critics argue official CPI understates money-supply driven inflation; posts also note large multi-year price gains in housing, food, and energy. Overall the release is driving debate on Fed credibility and near-term market volatility.', - data: [ - 7, 4, 6, 2, 3, 5, 2, 19, 9, 8, 12, 28, 6, 7, 4, 19, 8, 1, 4, 4, 4, 8, 4, 58, 7, 5, 3, 2, 10, - 6, 2, 5, 7, 2, 3, 2, 12, 3, 10, 7, 5, 6, 5, 6, 3, 4, 0, 9, 3, 2, 2, 6, 9, 3, 6, - ], - }, - { - label: 'Gaming', - topics: 'games,gaming,immutable,gameplay,metaverse', - description: - 'Discussion focuses on Web3 play-to-earn gaming: trending blockchain titles, hubs, and engagement mechanics. Users call out addictive dungeon-crawlers (LootSurvivor), community-driven games (Sunflower Land), platform hubs (Nebula3, Immutable Play), and Ethereum/Starknet projects. Key themes: tournaments and revenue-sharing, embedded/AI mini-games and decentralized messaging, UX updates (Game Plaza), and why contextual, low-commitment play drives scale.', - data: [ - 6, 4, 6, 3, 9, 3, 4, 7, 4, 6, 6, 3, 3, 3, 7, 13, 8, 58, 15, 6, 6, 7, 2, 6, 4, 7, 8, 9, 6, 1, - 9, 2, 11, 2, 3, 24, 2, 4, 1, 3, 5, 3, 7, 9, 7, 5, 5, 4, 0, 6, 5, 4, 8, 1, 3, - ], - }, - { - label: 'ETH Denver', - topics: 'denver,ethereumdenver,ethdenver,booth,meetup', - description: - 'Social posts center on ETHDenver — attendees and teams announcing presence, meetups, sponsor booths, panels and builder nights, promotional meetups (brunches, parties), POAP digital collectibles, art/AR exhibits, and networking among developers, infrastructure projects, and community members.', - data: [ - 6, 5, 7, 4, 1, 6, 1, 2, 9, 12, 1, 7, 8, 3, 8, 4, 7, 4, 5, 12, 9, 8, 14, 3, 8, 4, 2, 16, 7, - 1, 5, 5, 5, 7, 4, 3, 3, 2, 0, 2, 4, 3, 5, 5, 8, 5, 16, 5, 10, 4, 4, 11, 21, 3, 7, - ], - }, - { - label: 'Whales', - topics: 'whale,deposited,whales,40x,opened', - description: - 'Social posts highlight intense whale activity: huge on-chain transfers and exchange deposits of BTC and ETH (examples: 261k ETH ~$543–546M, 5k BTC ~$348M, ~57k BTC moved), large leveraged longs and multi‑million dollar positions, and signs of both accumulation and unloading. Analysts warn exchange inflows often precede selling pressure, while other metrics (Bitfinex long exposure at a 3‑year high; spot buys vs retail futures leverage) point to squeeze risk and mixed bullish conviction. Market intelligence providers are actively tracking and monetizing these signals.', - data: [ - 9, 7, 6, 3, 1, 5, 8, 2, 2, 2, 3, 2, 12, 6, 1, 5, 0, 2, 1, 2, 5, 2, 3, 3, 3, 1, 2, 6, 4, 7, - 1, 13, 2, 7, 2, 3, 1, 2, 5, 7, 2, 8, 5, 4, 5, 9, 2, 2, 6, 5, 1, 6, 4, 90, 6, - ], - }, - { - label: 'Vibecoding', - topics: 'vibe,vibecoding,coders,coding,vibecode', - description: - 'Social chatter centers on “vibe coding” — AI-driven, multi-agent app development that’s enabling rapid creation of business and consumer apps (Replit, Databricks, Bevy, CODEX CLI). Users praise fast prototyping and automation (even AI HFT desks and NFT collector hubs) but raise serious concerns about security and quality: recurring access-control bugs, LLMs failing to enforce invariants, data leaks, and OPSEC gaps. Emerging audit loops (GPT review + Claude fixes) and static analysis are highlighted as mitigations. The trend is bleeding into crypto (wallet verification, tokenization, community onboarding) and fuels both bullish adoption narratives and skeptical warnings about fragile, buggy deployments.', - data: [ - 5, 4, 0, 3, 3, 2, 6, 5, 25, 4, 2, 0, 6, 2, 5, 3, 3, 5, 8, 7, 5, 4, 8, 3, 4, 3, 3, 0, 1, 7, - 6, 2, 3, 4, 4, 3, 4, 5, 4, 4, 3, 2, 1, 5, 5, 4, 6, 4, 4, 5, 2, 74, 10, 5, 4, - ], - }, - { - label: 'Hyperliquid', - topics: 'hyperliquid,hl,hyperliquidx,hype,jake', - description: - 'Twitter threads focus on Hyperliquid ($HYPE) token dynamics — heavy protocol repurchases (assistance fund and buybacks: ~$60.6M over 30 days, recent ~$1.2M additions), supply removal, and price-sensitive buyback mechanics. Discussion covers HIP proposals (HIP-3/HIP-4) and a network upgrade tied to prediction markets, options, and higher revenue potential, plus leverage/borrowing capacity for traders. Community speculation about undervaluation, potential airdrops, liquidity rails, and upcoming product growth is paired with institutional moves: hires, advisory additions, and the new Hyperliquid Policy Center to pursue regulatory clarity. Overall sentiment sees material on-chain buybacks, governance changes, and regulatory positioning as catalysts for HYPE price appreciation and broader adoption.', - data: [ - 4, 5, 4, 8, 9, 5, 7, 4, 1, 12, 3, 3, 3, 7, 3, 5, 4, 2, 2, 7, 4, 2, 28, 8, 4, 14, 11, 4, 4, - 7, 4, 5, 4, 6, 2, 5, 6, 7, 4, 6, 5, 4, 7, 2, 6, 6, 1, 4, 8, 3, 6, 6, 2, 1, 6, - ], - }, - { - label: 'Precious metals', - topics: 'silver,metals,precious,5000,disclaimer', - description: - 'Social posts show heightened focus on precious metals: gold is oscillating around the $5,000 area with bullish calls (some forecasts as high as $6,200) and analysts raising 2026 targets, while silver has been highly volatile—spiking into the high $70s/low $80s then sliding back to mid-$70s. Market drivers cited include the US dollar, Fed minutes, and a noted correlation between gold and Japanese 10‑year yields (framed as a proxy for trust in the financial system). Traders offer competing views—momentum plays and short-term trading alerts, buy-the-dip strategies for longer consolidation, and technical setups (Fibonacci-based short targets around $100–104 by May 2026). Institutional forecasts (J.P. Morgan, UBS) and trading services/substack promotions are amplifying attention and positioning.', - data: [ - 4, 1, 7, 5, 2, 3, 1, 6, 10, 5, 5, 3, 5, 6, 2, 8, 3, 9, 4, 20, 3, 6, 2, 1, 3, 2, 5, 4, 5, 2, - 10, 7, 1, 7, 4, 13, 14, 4, 9, 7, 2, 4, 20, 3, 4, 10, 6, 2, 4, 5, 3, 2, 4, 3, 3, - ], - }, - { - label: 'China', - topics: 'chinas,china,treasuries,brics,73', - description: - 'Social feeds highlight China’s strategic shift away from U.S. Treasuries toward gold accumulation and a very large current-account surplus, signaling de‑risking from dollar assets and potential global decoupling. Posts note China’s domestic pivot (stimulus to boost consumption), persistent deflationary/weak nominal income, IMF growth forecasts, and tech/infrastructure advances (e.g., 10G broadband). Market and geopolitical implications include pressure on UST demand, reserve diversification, and renewed narratives around Bitcoin as economic sovereignty.', - data: [ - 7, 3, 1, 3, 7, 1, 3, 8, 15, 8, 3, 5, 9, 11, 5, 4, 8, 1, 3, 6, 6, 3, 12, 10, 3, 10, 3, 6, 2, - 4, 6, 6, 5, 5, 5, 5, 3, 3, 4, 5, 6, 6, 3, 4, 7, 6, 2, 3, 3, 5, 4, 2, 5, 4, 2, - ], - }, - { - label: "Valentine's day", - topics: 'valentines,valentinesday,celebrating,loved,happy', - description: - 'A flood of Valentine’s Day posts across crypto accounts blending personal greetings with project promotion and community engagement. Messages range from affectionate/mutual-support notes and Galentine shoutouts to marketing for DeFi staking rewards, WAX trading cards, NFT/metaverse hangouts, and platform mentions (BTSE, NoOnes, MadLads, Backpack). Also includes event highlights (TreeHacks) and a call for government transparency—overall a mix of celebration, user acquisition, and community-building.', - data: [ - 1, 5, 4, 4, 12, 2, 4, 14, 2, 2, 3, 21, 2, 3, 9, 8, 1, 9, 3, 3, 2, 31, 7, 2, 2, 3, 1, 2, 15, - 4, 3, 3, 2, 2, 2, 1, 2, 2, 4, 2, 2, 2, 3, 8, 5, 3, 2, 2, 4, 3, 18, 3, 1, 5, 7, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,tokenized,15b,tokenization', - description: - 'Social chatter centers on rapid growth and mainstreaming of tokenized real‑world assets (RWAs): Ethereum RWAs surpassed ~$150B, treasuries scaled to multi‑billions, and institutional capital is flowing into projects (Securitize, Ondo, Centrifuge and newer Solana/BNB initiatives). Conversations highlight product innovation (looping, structured RWA products, convergence trading), major events/partnerships, and promising niche use cases (private credit, real estate, luxury assets). Primary debates focus on whether TradFi moving on‑chain helps crypto developers and the practical bottlenecks — fragmentation, custody, legal frameworks, investor protection — that will shape RWA adoption in 2026.', - data: [ - 1, 3, 4, 6, 7, 3, 8, 3, 2, 6, 6, 2, 1, 8, 3, 3, 3, 3, 1, 2, 6, 3, 9, 4, 11, 0, 6, 0, 5, 17, - 1, 1, 5, 5, 2, 1, 8, 6, 9, 1, 2, 5, 4, 3, 4, 8, 4, 5, 26, 2, 9, 7, 3, 2, 3, - ], - }, - { - label: 'Art and NFTs', - topics: 'artists,painting,artist,art,pixel', - description: - 'Conversation centers on generative and digital art (coded/generative pieces, pixel art) alongside traditional handmade work and prints. Posters share collecting and exhibition activity, notable commissions/collaborations, and enthusiasm for specific artists and series. Discussion also covers artist professionalization—unionizing, pricing standards, patronage—and creators working across multiple mediums while asserting creative freedom.', - data: [ - 1, 4, 26, 18, 4, 2, 4, 8, 6, 1, 4, 5, 4, 10, 3, 1, 9, 4, 4, 4, 2, 2, 2, 2, 2, 5, 7, 7, 6, 1, - 0, 4, 2, 11, 7, 11, 2, 4, 4, 3, 3, 5, 3, 2, 1, 2, 3, 3, 1, 2, 4, 7, 3, 6, 3, - ], - }, - { - label: 'Football', - topics: 'league,champions,premier,clubs,jr', - description: - "Social posts mix Arsenal match commentary (poor attacking form, match score updates, FA Cup progress, Saka signing) with heavy betting chatter — fans sharing bets, doubling down, and match predictions. Crypto-linked promotions are prominent: USDC prize giveaways for score predictions, betting promos for Champions League, and crypto community shoutouts (BONK/bonk_inu at BVB). Overall it's football fan sentiment + crypto-enabled wagering incentives.", - data: [ - 0, 4, 6, 9, 7, 4, 0, 2, 10, 8, 1, 2, 4, 5, 1, 5, 3, 4, 2, 9, 4, 5, 3, 4, 1, 5, 8, 1, 1, 4, - 4, 2, 7, 7, 2, 14, 4, 4, 4, 3, 3, 8, 9, 0, 6, 0, 7, 0, 11, 5, 1, 5, 3, 11, 3, - ], - }, - { - label: 'PUNCH memecoin', - topics: 'punch,moodeng,zoo,smashed,pnut', - description: - 'Social chatter centers on $PUNCH, a Solana token undergoing a rapid viral breakout — large intraday gains, rising volume, and a stair-step pattern of higher lows. Community posts claim huge returns (from small buys to 10x–120x), market cap spikes (~$3M→$26M and claims of $16M in a day), ATH breakouts, and growing narrative momentum (videos, giveaways, influencer calls). Overall tone is bullish retail hype and short-term momentum-driven trading activity.', - data: [ - 11, 2, 3, 0, 4, 3, 5, 6, 5, 3, 0, 2, 3, 2, 3, 0, 2, 3, 6, 8, 1, 3, 8, 3, 2, 3, 9, 3, 8, 7, - 4, 3, 5, 1, 2, 6, 2, 26, 3, 4, 6, 2, 2, 6, 3, 4, 4, 7, 1, 2, 4, 3, 2, 2, 4, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-112.json b/priv/repo/major_topics_seed/data-112.json deleted file mode 100644 index ef6769361a..0000000000 --- a/priv/repo/major_topics_seed/data-112.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["19.02.26","20.02.26","20.02.26","20.02.26","20.02.26","20.02.26","20.02.26","20.02.26","21.02.26","21.02.26","21.02.26","21.02.26","21.02.26","21.02.26","21.02.26","21.02.26","22.02.26","22.02.26","22.02.26","22.02.26","22.02.26","22.02.26","22.02.26","22.02.26","23.02.26","23.02.26","23.02.26","23.02.26","23.02.26","23.02.26","23.02.26","23.02.26","24.02.26","24.02.26","24.02.26","24.02.26","24.02.26","24.02.26","24.02.26","24.02.26","25.02.26","25.02.26","25.02.26","25.02.26","25.02.26","25.02.26","25.02.26","25.02.26","26.02.26","26.02.26","26.02.26","26.02.26","26.02.26","26.02.26","26.02.26"],"datasets":[{"label":"AI in crypto","topics":"ais,collar,agi,productivity,labor","description":"Discussion centers on AI's massive productivity gains (developers/founders 10x–100x) and the resulting labor disruption, UBI debates, and sector selloffs tied to labor exposure. Threads highlight AI safety and fragility risks, coordination bottlenecks for professional AI use, advances in decentralized (cheaper) training, and teleoperation data for robotics. Strong crossover between crypto and AI—projects/tokens ($HBAR, $XYO), Crypto AI art and NFTs, and claims that AI+crypto are complementary—plus finance industry implications (Goldman Sachs analysis) and privacy concerns.","data":[22,121,24,32,34,12,25,27,23,41,26,26,38,40,45,17,21,34,35,37,33,37,25,62,55,29,30,22,23,34,20,20,25,26,42,33,31,27,45,37,22,28,24,25,27,23,39,49,20,28,37,18,23,34,37]},{"label":"Jane Street lawsuit","topics":"terraform,ust,sued,jane,manipulating","description":"Social posts accuse Jane Street of orchestrating recurring crypto price manipulation — a daily 10AM pump/dump, pushing UST under peg and aggravating the Terra/Luna collapse — and even using alleged insider tips from a TFL intern. Users propose class-action suits, gamma-squeeze talk, and blame for BTC’s price behavior, while Jane Street denies wrongdoing, calling the claims baseless and pointing to Terra’s internal design failures. The story is driving trending debate, legal scrutiny, and renewed questions about market centralization and institutional influence in crypto.","data":[27,21,15,21,19,16,13,19,19,9,17,12,15,15,18,22,20,19,20,18,13,19,23,11,48,32,12,14,17,37,8,11,12,9,7,1,10,13,25,15,20,12,8,23,6,81,17,26,12,16,13,12,14,18,12]},{"label":"Iran war threat","topics":"geneva,nuclear,tehran,negotiations,usiran","description":"Social posts are focused on mounting US–Iran tensions: reports of imminent military options against Iran, threats from Trump, and UK reluctance to provide bases, countered by signs of positive, Oman-mediated Geneva talks. Narratives repeat that Iran is “weeks away” from a bomb and warn of long-term Middle East destabilization. Markets and crypto are reacting — BTC and stocks reportedly falling, Vitalik and insiders selling, fear & greed plunging — driving panic and speculation across feeds.","data":[11,21,14,22,7,13,9,14,19,18,4,10,22,6,11,14,10,4,6,8,9,5,11,16,18,13,17,1,7,14,12,9,15,31,6,12,20,4,20,23,44,33,11,13,10,21,23,11,7,4,5,9,39,7,7]},{"label":"SOL price","topics":"solana,sol,78,76,fib","description":"Twitter discussion focuses on Solana’s extreme price volatility (from ~$200 to ~$20, ~-80%) with traders debating accumulation, bottoms, and short-term technicals (22EMA retest, bull divergences) and risk management. At the same time on-chain data and reports highlight Solana topping L1/L2 weekly network revenue (~$6.29M), which bolsters bullish narratives despite concerns about near-zero fees enabling abuse, perp exchange problems, and validator/geodecentralization efforts. Community vs. employee tensions and mixed sentiment (DCA/buying vs. warnings of deeper drawdowns) dominate conversation.","data":[10,9,11,11,17,12,11,11,12,6,14,13,6,12,9,14,11,10,9,12,7,5,13,3,7,12,10,7,18,4,7,3,9,13,11,10,15,7,10,9,5,8,12,54,10,14,11,10,9,17,12,7,7,6,7]},{"label":"Precious metals","topics":"silver,precious,metal,xaut,metals","description":"Social chatter focuses on violent gold and silver swings — gold reclaiming ~$5,200 after big declines, silver back over $88–$90, and BofA projecting gold could hit $6,000/oz. Causes cited include leveraged long liquidations, yen carry unwind, macro headlines (soft US data, tariffs, court rulings) and a suspicious CME halt allegedly dumping ~31,000 silver contracts. Market participants highlight bullish miner outlooks, technical swing-trade levels, and growing crypto overlap via tokenized gold/silver (XAUT, PAXG, Solana/Raydium launches) as tokenized commodities expand (~$6.3B assets).","data":[11,6,11,9,7,10,10,8,8,12,5,8,7,10,7,16,9,7,4,33,4,19,3,4,4,8,9,7,11,5,13,9,7,8,2,19,21,18,11,10,15,7,30,5,2,13,8,6,20,10,5,7,7,3,5]},{"label":"Winter storms in the USA","topics":"blizzard,snow,inches,winter,ski","description":"A powerful nor’easter/blizzard is striking the U.S. Northeast (NYC, NJ, MA), prompting travel bans, widespread mobilization of DOT crews, prolific snow totals (forecasts 10–24+ in.; 27.5 in. historical record cited) and major outages (~553k homes). Messages highlight frontline worker resilience (DoorDash/Uber drivers), city responses (first NYC snow day since 2019), local impacts and comparisons to past storms, plus side notes on Taiwan’s record low winter rainfall. Crypto/trading community chatter appears alongside the weather—’crypto winter’ commentary and a Winter Trading Rally (USDT prize; volume short of threshold) —connecting storm downtime to trading and liquidity opportunities.","data":[4,7,3,8,5,24,4,8,20,6,9,17,11,6,5,6,14,4,13,13,4,11,12,11,13,7,6,4,5,3,3,12,11,3,5,6,7,2,5,6,5,3,7,38,7,9,3,5,16,7,5,3,10,27,4]},{"label":"Bitcoin debate","topics":"bitcoiners,fixes,monetary,fiat,spiritual","description":"Social posts largely celebrate Bitcoin’s dominance as censorship- and debasement-resistant digital money, praising its scarcity, energy-security narrative, and ecosystem momentum (events, institutional support, and tooling). Conversations include technical and political debates—PoW vs PoS criticism, $CORE’s emerging role, quantum concerns, and consensus/transaction validity—and highlight real-world use cases like banking the unbanked. Community tone mixes evangelism, pragmatic trading views, and critique of rival models and centralized powers.","data":[7,3,10,6,17,27,9,7,10,10,9,10,8,7,9,5,16,11,7,4,2,11,10,15,13,7,8,6,4,7,8,7,6,4,8,2,4,6,11,13,6,7,10,6,5,8,9,7,4,6,16,4,7,9,5]},{"label":"BTC price","topics":"80k,bounce,retest,ema,70k","description":"Twitter crypto chatter focuses on Bitcoin’s near-term direction: traders debate a bullish breakout above ~68.6–70–72k versus a downside breakout from a symmetrical triangle/bear flag targeting 66k, 60k or lower (53k scenario). Key technical levels cited: support near 65–67.7k, resistance 70–76k, 200W EMA and weekly structure; liquidity sweeps and CVD show notable distribution on exchanges. Participants discuss setups for longs/shorts, potential altcoin follow-through if BTC rallies, and on-chain/AI rotation while waiting for U.S. session catalysts.","data":[7,1,7,3,5,31,22,8,10,8,3,1,3,9,11,6,5,3,5,2,2,11,6,8,0,4,14,2,16,3,3,5,7,3,2,2,10,12,7,6,6,2,5,4,5,10,8,7,8,5,9,0,15,1,4]},{"label":"Vibecoding","topics":"vibe,vibecoding,vibecoded,coding,coded","description":"Social chatter centers on “vibe coding” — using AI models (ChatGPT5, Claude, Codex) to rapidly build apps and scripts for crypto tasks: trading (vibe short BTC), prediction-market terminals (Kalshi/Polymarket), accounting (FIFO vs LIFO bitcoin scripts), and consumer prototypes. Users share demos, open-source tools (e.g., Claudia) and integrations, touting fast prototyping and automation while raising reliability and governance questions.","data":[4,1,3,3,7,3,3,5,18,6,8,6,4,4,5,3,6,5,4,2,6,9,5,3,2,1,3,3,6,4,2,2,7,3,9,6,5,6,5,4,5,2,2,1,16,5,3,8,7,1,8,81,4,4,6]},{"label":"Vitalik sells ETH","topics":"vitalik,buterin,vitalikbuterin,planned,exceeding","description":"Multiple on-chain reports and social posts show Vitalik Buterin actively selling Ethereum — roughly 17,196 ETH (~$35M) sold, exceeding an announced plan to offload 16,384 ETH to fund projects and support Ethereum Foundation austerity. Arkham and other trackers report large recent withdrawals and tranche sales (e.g., 3,788.57 ETH, 4,458 ETH) with about 504 ETH reportedly remaining of the planned amount. The community reaction is mixed: some worry the founder selling signals loss of confidence and call for leadership changes, while others note the sales were pre-announced and small relative to ETH’s market cap but impactful for perception.","data":[5,1,6,2,5,7,3,4,1,17,3,2,4,19,6,4,5,11,3,3,4,5,4,0,7,4,2,0,3,5,2,5,3,3,9,7,3,3,1,4,9,22,1,48,6,2,3,5,1,4,2,34,4,2,2]},{"label":"XRP price","topics":"xrp,xrpl,brad,ripple,ledger","description":"Social chatter centers on XRP’s price volatility and long-term potential — heated debate over whether XRP can outperform Bitcoin or ‘retire’ holders. Posts cite regulatory clarity as a catalyst, recent institutional inflows (~$150M reported), rising futures open interest (~1.66B XRP), and tech/regulatory signals (Swift test, Ripple CTO comments on decentralization). Community promotion of XRPL apps, fee-free DEX/wallet combos, local meetups, and bullish price targets (from $1 to >$15) amplify speculative sentiment.","data":[9,2,8,2,10,3,5,3,6,9,8,5,9,4,5,8,7,5,6,4,1,7,21,6,5,4,5,2,4,4,2,3,2,5,2,6,10,3,6,5,5,6,4,3,3,13,3,4,7,11,5,7,2,5,4]},{"label":"China","topics":"chinas,china,chinese,beijing,taiwan","description":"Tweets focus on China’s rapid tech and infrastructure advances (AI open‑source models, humanoid robots, Shenzhen’s electric transit, national energy plan), debates over AI model weight secrecy and safety, and market implications (Midea buy, China property bottom, automation-driven job losses). They also cover geopolitics and trade tensions (export bans to Japanese firms, CIA warnings on Taiwan), cultural phenomena like “Chinamaxxing,” and broader US–China economic/political narratives.","data":[4,6,4,5,9,1,12,0,10,7,4,3,9,11,6,4,6,5,2,1,7,4,8,6,4,2,3,4,4,6,4,1,8,9,9,6,6,3,5,19,3,6,8,6,4,6,5,4,1,4,2,4,8,4,8]},{"label":"Gaming","topics":"gaming,games,steam,gameplay,played","description":"Social chatter is centered on a resurgence of gaming tied to crypto: browser and mobile titles, community-made demos, and studio-backed Web3 launches (Dungeon Wallet, OUTLAW, $NAKA, etc.) pushing play-to-earn, on-chain activity, and token rewards. Conversations mix enthusiasm for skill-based, nostalgia-driven experiences and monetization opportunities with skepticism about AAA pricing, NFTs, and rug risks. Observers note one game can drive entire L1 on-chain activity and that data brokers and new studios are pivoting into games.","data":[2,4,2,3,7,2,6,2,2,4,2,5,3,8,9,6,2,50,2,1,7,9,8,9,4,9,3,6,2,1,2,6,2,6,5,26,6,3,5,2,0,3,4,3,3,2,4,6,1,2,7,8,2,2,6]},{"label":"Whales","topics":"whale,whales,15x,whitewhale,cryptoquant","description":"Social chatter centers on intense whale activity: large BTC/ETH rotations, massive deposits to exchanges, and concentrated holdings driving short-term momentum. Multiple whale alerts report big leveraged positions (15x–25x) and borrowings that create significant liquidation risk, while on-chain data suggests whales have been accumulating heavily recently. Users debate whether whales have directional alpha, possible insider timing around macro data, and the market impact as retail pulls back and whales control large share of supply.","data":[15,4,3,3,5,4,11,3,4,4,6,1,2,4,5,3,4,1,2,0,3,10,9,4,3,2,2,7,3,5,0,3,2,5,8,1,6,4,4,6,1,6,4,2,5,1,1,4,3,7,3,3,4,55,3]},{"label":"NVDA earnings","topics":"nvda,earnings,implied,eps,153","description":"Twitter discussion centers on NVIDIA ($NVDA) ahead of its after‑hours earnings — traders expect a major beat but debate whether to hold through the print or take profits. Posts mention smoothing positions into the close, options/contract decisions, sell‑the‑news moves, a possible leak/insider signal, and live conference‑call watching as the market reacts.","data":[4,3,1,2,11,4,6,6,1,4,1,7,5,28,6,6,7,2,8,1,7,3,4,3,4,3,4,2,4,4,1,0,4,5,6,2,6,5,4,12,4,3,1,6,0,8,4,8,9,6,2,4,4,4,5]},{"label":"PUNCH memecoin","topics":"monkey,zoo,punch,toy,baby","description":"Social posts are centered on Punch, a viral baby macaque clutching a stuffed toy who recently received a comforting hug and broad public sympathy. Ichikawa City Zoo updates and fundraising/pledge reports (including an HTX $100k pledge and community donation chatter) are driving engagement, while cultural groups like Bored Ape fans offer adoption support. Parallel crypto chatter ties the story to a SOL-era memecoin ($PUNCH) — a very new token (~3 days old, ~33.3M market cap) with traders reporting gains and speculation, mixing charity sentiment with memecoin trading and market volatility talk.","data":[5,5,1,4,2,4,0,0,4,1,2,2,4,3,1,2,5,4,6,5,0,2,6,4,6,3,6,9,3,2,3,24,2,4,3,8,1,16,4,2,4,7,2,6,5,8,2,3,7,4,6,9,5,7,5]},{"label":"CLARITY act","topics":"clarity,deadline,passing,passes,act","description":"Discussion centers on the US “Clarity Act,” a crypto market-structure bill expected to define which digital assets are securities vs commodities, settle stablecoin yield rules, and unlock institutional capital if passed. The White House set a March 1 deadline to resolve the stablecoin reward dispute and move the bill forward, while Polymarket odds have swung widely—driving speculation that passage could trigger large inflows into BTC/XRP. Conversations emphasize a tug-of-war between banking lobby influence (limiting stablecoin yields) and crypto advocates seeking regulatory clarity, with market participants viewing legislative timing as a major price catalyst.","data":[4,5,3,3,1,1,2,9,7,2,15,4,3,2,1,2,4,0,1,1,5,3,6,6,2,1,2,1,3,7,1,3,2,10,13,4,6,6,2,2,10,10,21,1,4,1,5,3,3,2,1,2,4,1,3]},{"label":"Stablecoins","topics":"stablecoins,stable,stablecoin,doubled,genius","description":"Discussion frames stablecoins as an inevitable and central part of crypto’s future — evolving from speculative assets into core payments and settlement infrastructure. Key themes: algorithmic and asset-backed innovations (including tokenized-asset backing), distribution and capital-efficiency challenges, cross-border/FX-driven adoption, and new product opportunities (machine currencies, fiat rails). Risks and policy issues surface too: oversight, gated ratings, and use by criminal networks versus regulators’ push for maturity. Market dynamics show active investment, consolidation, and shifting project viability as the sector professionalizes.","data":[0,1,5,2,3,1,5,3,2,3,3,1,3,9,9,3,3,1,3,3,2,0,2,3,6,2,1,5,3,2,1,3,4,3,8,0,1,5,4,5,1,5,1,2,49,4,3,8,6,2,5,2,3,4,1]},{"label":"RWA","topics":"rwas,rwa,15b,tokenization,mantle","description":"On-chain real-world assets (RWAs) are rapidly expanding — tokenized RWAs rose from about $5.6B in early 2025 to nearly $25B today, with roughly 700–850K wallets and thousands of distinct RWA issuances (2.9K–3.95K by different groupings). Major asset managers (BlackRock, Apollo) are integrating deeply, fueling projections of ~$400B on‑chain RWAs by end‑2026. Key infrastructure (Aave, RedStone, metasoilverse, gmtrade) and oracles are critical for yield-bearing vs non‑yield asset accuracy, compliance, staking, IoT verification, and new on‑chain RWA perp markets. The narrative is shifting from “institutional adoption” as users to institutions acting as issuers and builders — the infrastructure moment is here and traders are increasingly shifting capital from crypto-native tokens into on‑chain TradFi assets.","data":[4,3,7,9,3,4,3,3,2,5,8,1,6,2,3,2,3,2,0,0,7,3,3,6,4,11,3,5,4,10,1,4,4,2,5,1,5,9,4,4,1,5,3,1,1,5,3,1,4,2,2,6,7,5,1]},{"label":"Axiom insider trading","topics":"axiom,axiomexchange,zachxbts,internal,frontrun","description":"Social posts allege Axiom Exchange employees used internal tools and user wallet data to front-run token listings and profit on prediction markets. ZachXBT’s investigation names specific staff, leaked CTs and a Google Sheet of target wallets, and reports HR action (badge removal) and potential ties to apps like Unibot. Claims point to insider trading, abuse of confidential dashboards, user privacy breaches and significant reputational and legal risk for Axiom.","data":[1,6,1,20,3,1,4,5,1,2,2,1,4,3,7,11,5,3,0,3,3,1,7,8,11,3,0,0,2,1,2,5,0,1,4,2,4,4,4,4,3,2,0,3,1,2,11,6,4,6,5,2,4,1,6]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-112.ts b/priv/repo/major_topics_seed/data-112.ts deleted file mode 100644 index 71745d54a7..0000000000 --- a/priv/repo/major_topics_seed/data-112.ts +++ /dev/null @@ -1,285 +0,0 @@ -export const NARRATIVES = { - labels: [ - '19.02.26', - '20.02.26', - '20.02.26', - '20.02.26', - '20.02.26', - '20.02.26', - '20.02.26', - '20.02.26', - '21.02.26', - '21.02.26', - '21.02.26', - '21.02.26', - '21.02.26', - '21.02.26', - '21.02.26', - '21.02.26', - '22.02.26', - '22.02.26', - '22.02.26', - '22.02.26', - '22.02.26', - '22.02.26', - '22.02.26', - '22.02.26', - '23.02.26', - '23.02.26', - '23.02.26', - '23.02.26', - '23.02.26', - '23.02.26', - '23.02.26', - '23.02.26', - '24.02.26', - '24.02.26', - '24.02.26', - '24.02.26', - '24.02.26', - '24.02.26', - '24.02.26', - '24.02.26', - '25.02.26', - '25.02.26', - '25.02.26', - '25.02.26', - '25.02.26', - '25.02.26', - '25.02.26', - '25.02.26', - '26.02.26', - '26.02.26', - '26.02.26', - '26.02.26', - '26.02.26', - '26.02.26', - '26.02.26', - ], - datasets: [ - { - label: 'AI in crypto', - topics: 'ais,collar,agi,productivity,labor', - description: - "Discussion centers on AI's massive productivity gains (developers/founders 10x–100x) and the resulting labor disruption, UBI debates, and sector selloffs tied to labor exposure. Threads highlight AI safety and fragility risks, coordination bottlenecks for professional AI use, advances in decentralized (cheaper) training, and teleoperation data for robotics. Strong crossover between crypto and AI—projects/tokens ($HBAR, $XYO), Crypto AI art and NFTs, and claims that AI+crypto are complementary—plus finance industry implications (Goldman Sachs analysis) and privacy concerns.", - data: [ - 22, 121, 24, 32, 34, 12, 25, 27, 23, 41, 26, 26, 38, 40, 45, 17, 21, 34, 35, 37, 33, 37, 25, - 62, 55, 29, 30, 22, 23, 34, 20, 20, 25, 26, 42, 33, 31, 27, 45, 37, 22, 28, 24, 25, 27, 23, - 39, 49, 20, 28, 37, 18, 23, 34, 37, - ], - infofi: false, - }, - { - label: 'Jane Street lawsuit', - topics: 'terraform,ust,sued,jane,manipulating', - description: - 'Social posts accuse Jane Street of orchestrating recurring crypto price manipulation — a daily 10AM pump/dump, pushing UST under peg and aggravating the Terra/Luna collapse — and even using alleged insider tips from a TFL intern. Users propose class-action suits, gamma-squeeze talk, and blame for BTC’s price behavior, while Jane Street denies wrongdoing, calling the claims baseless and pointing to Terra’s internal design failures. The story is driving trending debate, legal scrutiny, and renewed questions about market centralization and institutional influence in crypto.', - data: [ - 27, 21, 15, 21, 19, 16, 13, 19, 19, 9, 17, 12, 15, 15, 18, 22, 20, 19, 20, 18, 13, 19, 23, - 11, 48, 32, 12, 14, 17, 37, 8, 11, 12, 9, 7, 1, 10, 13, 25, 15, 20, 12, 8, 23, 6, 81, 17, - 26, 12, 16, 13, 12, 14, 18, 12, - ], - infofi: false, - }, - { - label: 'Iran war threat', - topics: 'geneva,nuclear,tehran,negotiations,usiran', - description: - 'Social posts are focused on mounting US–Iran tensions: reports of imminent military options against Iran, threats from Trump, and UK reluctance to provide bases, countered by signs of positive, Oman-mediated Geneva talks. Narratives repeat that Iran is “weeks away” from a bomb and warn of long-term Middle East destabilization. Markets and crypto are reacting — BTC and stocks reportedly falling, Vitalik and insiders selling, fear & greed plunging — driving panic and speculation across feeds.', - data: [ - 11, 21, 14, 22, 7, 13, 9, 14, 19, 18, 4, 10, 22, 6, 11, 14, 10, 4, 6, 8, 9, 5, 11, 16, 18, - 13, 17, 1, 7, 14, 12, 9, 15, 31, 6, 12, 20, 4, 20, 23, 44, 33, 11, 13, 10, 21, 23, 11, 7, 4, - 5, 9, 39, 7, 7, - ], - infofi: false, - }, - { - label: 'SOL price', - topics: 'solana,sol,78,76,fib', - description: - 'Twitter discussion focuses on Solana’s extreme price volatility (from ~$200 to ~$20, ~-80%) with traders debating accumulation, bottoms, and short-term technicals (22EMA retest, bull divergences) and risk management. At the same time on-chain data and reports highlight Solana topping L1/L2 weekly network revenue (~$6.29M), which bolsters bullish narratives despite concerns about near-zero fees enabling abuse, perp exchange problems, and validator/geodecentralization efforts. Community vs. employee tensions and mixed sentiment (DCA/buying vs. warnings of deeper drawdowns) dominate conversation.', - data: [ - 10, 9, 11, 11, 17, 12, 11, 11, 12, 6, 14, 13, 6, 12, 9, 14, 11, 10, 9, 12, 7, 5, 13, 3, 7, - 12, 10, 7, 18, 4, 7, 3, 9, 13, 11, 10, 15, 7, 10, 9, 5, 8, 12, 54, 10, 14, 11, 10, 9, 17, - 12, 7, 7, 6, 7, - ], - infofi: false, - }, - { - label: 'Precious metals', - topics: 'silver,precious,metal,xaut,metals', - description: - 'Social chatter focuses on violent gold and silver swings — gold reclaiming ~$5,200 after big declines, silver back over $88–$90, and BofA projecting gold could hit $6,000/oz. Causes cited include leveraged long liquidations, yen carry unwind, macro headlines (soft US data, tariffs, court rulings) and a suspicious CME halt allegedly dumping ~31,000 silver contracts. Market participants highlight bullish miner outlooks, technical swing-trade levels, and growing crypto overlap via tokenized gold/silver (XAUT, PAXG, Solana/Raydium launches) as tokenized commodities expand (~$6.3B assets).', - data: [ - 11, 6, 11, 9, 7, 10, 10, 8, 8, 12, 5, 8, 7, 10, 7, 16, 9, 7, 4, 33, 4, 19, 3, 4, 4, 8, 9, 7, - 11, 5, 13, 9, 7, 8, 2, 19, 21, 18, 11, 10, 15, 7, 30, 5, 2, 13, 8, 6, 20, 10, 5, 7, 7, 3, 5, - ], - infofi: false, - }, - { - label: 'Winter storms in the USA', - topics: 'blizzard,snow,inches,winter,ski', - description: - 'A powerful nor’easter/blizzard is striking the U.S. Northeast (NYC, NJ, MA), prompting travel bans, widespread mobilization of DOT crews, prolific snow totals (forecasts 10–24+ in.; 27.5 in. historical record cited) and major outages (~553k homes). Messages highlight frontline worker resilience (DoorDash/Uber drivers), city responses (first NYC snow day since 2019), local impacts and comparisons to past storms, plus side notes on Taiwan’s record low winter rainfall. Crypto/trading community chatter appears alongside the weather—’crypto winter’ commentary and a Winter Trading Rally (USDT prize; volume short of threshold) —connecting storm downtime to trading and liquidity opportunities.', - data: [ - 4, 7, 3, 8, 5, 24, 4, 8, 20, 6, 9, 17, 11, 6, 5, 6, 14, 4, 13, 13, 4, 11, 12, 11, 13, 7, 6, - 4, 5, 3, 3, 12, 11, 3, 5, 6, 7, 2, 5, 6, 5, 3, 7, 38, 7, 9, 3, 5, 16, 7, 5, 3, 10, 27, 4, - ], - infofi: false, - }, - { - label: 'Bitcoin debate', - topics: 'bitcoiners,fixes,monetary,fiat,spiritual', - description: - 'Social posts largely celebrate Bitcoin’s dominance as censorship- and debasement-resistant digital money, praising its scarcity, energy-security narrative, and ecosystem momentum (events, institutional support, and tooling). Conversations include technical and political debates—PoW vs PoS criticism, $CORE’s emerging role, quantum concerns, and consensus/transaction validity—and highlight real-world use cases like banking the unbanked. Community tone mixes evangelism, pragmatic trading views, and critique of rival models and centralized powers.', - data: [ - 7, 3, 10, 6, 17, 27, 9, 7, 10, 10, 9, 10, 8, 7, 9, 5, 16, 11, 7, 4, 2, 11, 10, 15, 13, 7, 8, - 6, 4, 7, 8, 7, 6, 4, 8, 2, 4, 6, 11, 13, 6, 7, 10, 6, 5, 8, 9, 7, 4, 6, 16, 4, 7, 9, 5, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '80k,bounce,retest,ema,70k', - description: - 'Twitter crypto chatter focuses on Bitcoin’s near-term direction: traders debate a bullish breakout above ~68.6–70–72k versus a downside breakout from a symmetrical triangle/bear flag targeting 66k, 60k or lower (53k scenario). Key technical levels cited: support near 65–67.7k, resistance 70–76k, 200W EMA and weekly structure; liquidity sweeps and CVD show notable distribution on exchanges. Participants discuss setups for longs/shorts, potential altcoin follow-through if BTC rallies, and on-chain/AI rotation while waiting for U.S. session catalysts.', - data: [ - 7, 1, 7, 3, 5, 31, 22, 8, 10, 8, 3, 1, 3, 9, 11, 6, 5, 3, 5, 2, 2, 11, 6, 8, 0, 4, 14, 2, - 16, 3, 3, 5, 7, 3, 2, 2, 10, 12, 7, 6, 6, 2, 5, 4, 5, 10, 8, 7, 8, 5, 9, 0, 15, 1, 4, - ], - infofi: false, - }, - { - label: 'Vibecoding', - topics: 'vibe,vibecoding,vibecoded,coding,coded', - description: - 'Social chatter centers on “vibe coding” — using AI models (ChatGPT5, Claude, Codex) to rapidly build apps and scripts for crypto tasks: trading (vibe short BTC), prediction-market terminals (Kalshi/Polymarket), accounting (FIFO vs LIFO bitcoin scripts), and consumer prototypes. Users share demos, open-source tools (e.g., Claudia) and integrations, touting fast prototyping and automation while raising reliability and governance questions.', - data: [ - 4, 1, 3, 3, 7, 3, 3, 5, 18, 6, 8, 6, 4, 4, 5, 3, 6, 5, 4, 2, 6, 9, 5, 3, 2, 1, 3, 3, 6, 4, - 2, 2, 7, 3, 9, 6, 5, 6, 5, 4, 5, 2, 2, 1, 16, 5, 3, 8, 7, 1, 8, 81, 4, 4, 6, - ], - infofi: false, - }, - { - label: 'Vitalik sells ETH', - topics: 'vitalik,buterin,vitalikbuterin,planned,exceeding', - description: - 'Multiple on-chain reports and social posts show Vitalik Buterin actively selling Ethereum — roughly 17,196 ETH (~$35M) sold, exceeding an announced plan to offload 16,384 ETH to fund projects and support Ethereum Foundation austerity. Arkham and other trackers report large recent withdrawals and tranche sales (e.g., 3,788.57 ETH, 4,458 ETH) with about 504 ETH reportedly remaining of the planned amount. The community reaction is mixed: some worry the founder selling signals loss of confidence and call for leadership changes, while others note the sales were pre-announced and small relative to ETH’s market cap but impactful for perception.', - data: [ - 5, 1, 6, 2, 5, 7, 3, 4, 1, 17, 3, 2, 4, 19, 6, 4, 5, 11, 3, 3, 4, 5, 4, 0, 7, 4, 2, 0, 3, 5, - 2, 5, 3, 3, 9, 7, 3, 3, 1, 4, 9, 22, 1, 48, 6, 2, 3, 5, 1, 4, 2, 34, 4, 2, 2, - ], - infofi: false, - }, - { - label: 'XRP price', - topics: 'xrp,xrpl,brad,ripple,ledger', - description: - 'Social chatter centers on XRP’s price volatility and long-term potential — heated debate over whether XRP can outperform Bitcoin or ‘retire’ holders. Posts cite regulatory clarity as a catalyst, recent institutional inflows (~$150M reported), rising futures open interest (~1.66B XRP), and tech/regulatory signals (Swift test, Ripple CTO comments on decentralization). Community promotion of XRPL apps, fee-free DEX/wallet combos, local meetups, and bullish price targets (from $1 to >$15) amplify speculative sentiment.', - data: [ - 9, 2, 8, 2, 10, 3, 5, 3, 6, 9, 8, 5, 9, 4, 5, 8, 7, 5, 6, 4, 1, 7, 21, 6, 5, 4, 5, 2, 4, 4, - 2, 3, 2, 5, 2, 6, 10, 3, 6, 5, 5, 6, 4, 3, 3, 13, 3, 4, 7, 11, 5, 7, 2, 5, 4, - ], - infofi: false, - }, - { - label: 'China', - topics: 'chinas,china,chinese,beijing,taiwan', - description: - 'Tweets focus on China’s rapid tech and infrastructure advances (AI open‑source models, humanoid robots, Shenzhen’s electric transit, national energy plan), debates over AI model weight secrecy and safety, and market implications (Midea buy, China property bottom, automation-driven job losses). They also cover geopolitics and trade tensions (export bans to Japanese firms, CIA warnings on Taiwan), cultural phenomena like “Chinamaxxing,” and broader US–China economic/political narratives.', - data: [ - 4, 6, 4, 5, 9, 1, 12, 0, 10, 7, 4, 3, 9, 11, 6, 4, 6, 5, 2, 1, 7, 4, 8, 6, 4, 2, 3, 4, 4, 6, - 4, 1, 8, 9, 9, 6, 6, 3, 5, 19, 3, 6, 8, 6, 4, 6, 5, 4, 1, 4, 2, 4, 8, 4, 8, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'gaming,games,steam,gameplay,played', - description: - 'Social chatter is centered on a resurgence of gaming tied to crypto: browser and mobile titles, community-made demos, and studio-backed Web3 launches (Dungeon Wallet, OUTLAW, $NAKA, etc.) pushing play-to-earn, on-chain activity, and token rewards. Conversations mix enthusiasm for skill-based, nostalgia-driven experiences and monetization opportunities with skepticism about AAA pricing, NFTs, and rug risks. Observers note one game can drive entire L1 on-chain activity and that data brokers and new studios are pivoting into games.', - data: [ - 2, 4, 2, 3, 7, 2, 6, 2, 2, 4, 2, 5, 3, 8, 9, 6, 2, 50, 2, 1, 7, 9, 8, 9, 4, 9, 3, 6, 2, 1, - 2, 6, 2, 6, 5, 26, 6, 3, 5, 2, 0, 3, 4, 3, 3, 2, 4, 6, 1, 2, 7, 8, 2, 2, 6, - ], - infofi: false, - }, - { - label: 'Whales', - topics: 'whale,whales,15x,whitewhale,cryptoquant', - description: - 'Social chatter centers on intense whale activity: large BTC/ETH rotations, massive deposits to exchanges, and concentrated holdings driving short-term momentum. Multiple whale alerts report big leveraged positions (15x–25x) and borrowings that create significant liquidation risk, while on-chain data suggests whales have been accumulating heavily recently. Users debate whether whales have directional alpha, possible insider timing around macro data, and the market impact as retail pulls back and whales control large share of supply.', - data: [ - 15, 4, 3, 3, 5, 4, 11, 3, 4, 4, 6, 1, 2, 4, 5, 3, 4, 1, 2, 0, 3, 10, 9, 4, 3, 2, 2, 7, 3, 5, - 0, 3, 2, 5, 8, 1, 6, 4, 4, 6, 1, 6, 4, 2, 5, 1, 1, 4, 3, 7, 3, 3, 4, 55, 3, - ], - infofi: false, - }, - { - label: 'NVDA earnings', - topics: 'nvda,earnings,implied,eps,153', - description: - 'Twitter discussion centers on NVIDIA ($NVDA) ahead of its after‑hours earnings — traders expect a major beat but debate whether to hold through the print or take profits. Posts mention smoothing positions into the close, options/contract decisions, sell‑the‑news moves, a possible leak/insider signal, and live conference‑call watching as the market reacts.', - data: [ - 4, 3, 1, 2, 11, 4, 6, 6, 1, 4, 1, 7, 5, 28, 6, 6, 7, 2, 8, 1, 7, 3, 4, 3, 4, 3, 4, 2, 4, 4, - 1, 0, 4, 5, 6, 2, 6, 5, 4, 12, 4, 3, 1, 6, 0, 8, 4, 8, 9, 6, 2, 4, 4, 4, 5, - ], - infofi: false, - }, - { - label: 'PUNCH memecoin', - topics: 'monkey,zoo,punch,toy,baby', - description: - 'Social posts are centered on Punch, a viral baby macaque clutching a stuffed toy who recently received a comforting hug and broad public sympathy. Ichikawa City Zoo updates and fundraising/pledge reports (including an HTX $100k pledge and community donation chatter) are driving engagement, while cultural groups like Bored Ape fans offer adoption support. Parallel crypto chatter ties the story to a SOL-era memecoin ($PUNCH) — a very new token (~3 days old, ~33.3M market cap) with traders reporting gains and speculation, mixing charity sentiment with memecoin trading and market volatility talk.', - data: [ - 5, 5, 1, 4, 2, 4, 0, 0, 4, 1, 2, 2, 4, 3, 1, 2, 5, 4, 6, 5, 0, 2, 6, 4, 6, 3, 6, 9, 3, 2, 3, - 24, 2, 4, 3, 8, 1, 16, 4, 2, 4, 7, 2, 6, 5, 8, 2, 3, 7, 4, 6, 9, 5, 7, 5, - ], - infofi: false, - }, - { - label: 'CLARITY act', - topics: 'clarity,deadline,passing,passes,act', - description: - 'Discussion centers on the US “Clarity Act,” a crypto market-structure bill expected to define which digital assets are securities vs commodities, settle stablecoin yield rules, and unlock institutional capital if passed. The White House set a March 1 deadline to resolve the stablecoin reward dispute and move the bill forward, while Polymarket odds have swung widely—driving speculation that passage could trigger large inflows into BTC/XRP. Conversations emphasize a tug-of-war between banking lobby influence (limiting stablecoin yields) and crypto advocates seeking regulatory clarity, with market participants viewing legislative timing as a major price catalyst.', - data: [ - 4, 5, 3, 3, 1, 1, 2, 9, 7, 2, 15, 4, 3, 2, 1, 2, 4, 0, 1, 1, 5, 3, 6, 6, 2, 1, 2, 1, 3, 7, - 1, 3, 2, 10, 13, 4, 6, 6, 2, 2, 10, 10, 21, 1, 4, 1, 5, 3, 3, 2, 1, 2, 4, 1, 3, - ], - infofi: false, - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stable,stablecoin,doubled,genius', - description: - 'Discussion frames stablecoins as an inevitable and central part of crypto’s future — evolving from speculative assets into core payments and settlement infrastructure. Key themes: algorithmic and asset-backed innovations (including tokenized-asset backing), distribution and capital-efficiency challenges, cross-border/FX-driven adoption, and new product opportunities (machine currencies, fiat rails). Risks and policy issues surface too: oversight, gated ratings, and use by criminal networks versus regulators’ push for maturity. Market dynamics show active investment, consolidation, and shifting project viability as the sector professionalizes.', - data: [ - 0, 1, 5, 2, 3, 1, 5, 3, 2, 3, 3, 1, 3, 9, 9, 3, 3, 1, 3, 3, 2, 0, 2, 3, 6, 2, 1, 5, 3, 2, 1, - 3, 4, 3, 8, 0, 1, 5, 4, 5, 1, 5, 1, 2, 49, 4, 3, 8, 6, 2, 5, 2, 3, 4, 1, - ], - infofi: false, - }, - { - label: 'RWA', - topics: 'rwas,rwa,15b,tokenization,mantle', - description: - 'On-chain real-world assets (RWAs) are rapidly expanding — tokenized RWAs rose from about $5.6B in early 2025 to nearly $25B today, with roughly 700–850K wallets and thousands of distinct RWA issuances (2.9K–3.95K by different groupings). Major asset managers (BlackRock, Apollo) are integrating deeply, fueling projections of ~$400B on‑chain RWAs by end‑2026. Key infrastructure (Aave, RedStone, metasoilverse, gmtrade) and oracles are critical for yield-bearing vs non‑yield asset accuracy, compliance, staking, IoT verification, and new on‑chain RWA perp markets. The narrative is shifting from “institutional adoption” as users to institutions acting as issuers and builders — the infrastructure moment is here and traders are increasingly shifting capital from crypto-native tokens into on‑chain TradFi assets.', - data: [ - 4, 3, 7, 9, 3, 4, 3, 3, 2, 5, 8, 1, 6, 2, 3, 2, 3, 2, 0, 0, 7, 3, 3, 6, 4, 11, 3, 5, 4, 10, - 1, 4, 4, 2, 5, 1, 5, 9, 4, 4, 1, 5, 3, 1, 1, 5, 3, 1, 4, 2, 2, 6, 7, 5, 1, - ], - infofi: false, - }, - { - label: 'Axiom insider trading', - topics: 'axiom,axiomexchange,zachxbts,internal,frontrun', - description: - 'Social posts allege Axiom Exchange employees used internal tools and user wallet data to front-run token listings and profit on prediction markets. ZachXBT’s investigation names specific staff, leaked CTs and a Google Sheet of target wallets, and reports HR action (badge removal) and potential ties to apps like Unibot. Claims point to insider trading, abuse of confidential dashboards, user privacy breaches and significant reputational and legal risk for Axiom.', - data: [ - 1, 6, 1, 20, 3, 1, 4, 5, 1, 2, 2, 1, 4, 3, 7, 11, 5, 3, 0, 3, 3, 1, 7, 8, 11, 3, 0, 0, 2, 1, - 2, 5, 0, 1, 4, 2, 4, 4, 4, 4, 3, 2, 0, 3, 1, 2, 11, 6, 4, 6, 5, 2, 4, 1, 6, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-113.json b/priv/repo/major_topics_seed/data-113.json deleted file mode 100644 index 66c0289bc3..0000000000 --- a/priv/repo/major_topics_seed/data-113.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["26.02.26","27.02.26","27.02.26","27.02.26","27.02.26","27.02.26","27.02.26","27.02.26","28.02.26","28.02.26","28.02.26","28.02.26","28.02.26","28.02.26","28.02.26","28.02.26","01.03.26","01.03.26","01.03.26","01.03.26","01.03.26","01.03.26","01.03.26","01.03.26","02.03.26","02.03.26","02.03.26","02.03.26","02.03.26","02.03.26","02.03.26","02.03.26","03.03.26","03.03.26","03.03.26","03.03.26","03.03.26","03.03.26","03.03.26","03.03.26","04.03.26","04.03.26","04.03.26","04.03.26","04.03.26","04.03.26","04.03.26","04.03.26","05.03.26","05.03.26","05.03.26","05.03.26","05.03.26","05.03.26","05.03.26"],"datasets":[{"label":"BTC price","topics":"74k,70k,72k,71k,65k","description":"Twitter discussion centers on Bitcoin being in an 'accumulation' phase: monthly RSI and log‑regression bands indicate accumulation while price hovers near key supports around $60k–$64k. Immediate resistance is cited at $70k–74k (72–80k noted as light selling); traders are watching for volume-confirmed breakout or a breakdown that could lead to a sharp decline. Market participants mention laddered orders, small trades, and technicals (20‑day SMA, Bollinger bands, RSI), alongside long‑term bullish targets ($100k–$1M).","data":[16,10,16,14,12,80,50,22,18,19,21,19,9,12,16,15,14,4,16,8,7,35,23,10,14,6,26,32,24,9,9,15,10,6,12,20,22,33,43,19,5,4,30,19,14,23,24,14,12,24,26,12,13,19,12]},{"label":"War in Iran","topics":"accuses,dominant,afp,riyadh,refineries","description":"Breaking reports describe major US-Israel strikes on Iran with Iranian state media claiming Supreme Leader Khamenei killed. Iran/IRGC have launched missile and drone reprisals, closed the Strait of Hormuz and threatened shipping; Iraq suspended output at large oil fields (Rumaila, West Qurna 2). Global fallout includes embassy evacuations, allied military deployments, hostage reports, and intelligence moves (CIA arming Kurdish forces). The situation poses acute geopolitical risk and potential energy/market disruptions.","data":[13,25,17,29,2,12,12,10,23,27,6,13,9,16,7,13,23,1,1,1,1,12,9,7,17,17,3,3,6,9,32,4,27,13,6,5,8,9,16,29,63,101,22,8,19,29,14,3,2,10,7,4,28,5,0]},{"label":"Precious metals","topics":"silver,xauusd,copper,precious,metals","description":"Social posts show a fast-moving rally in gold, silver and base metals (copper, zinc) driven by Middle East/US‑Iran geopolitical risk and rapid capital rotation into miners, especially in Shanghai where miners hit daily limit-ups and price discovery is shifting. Traders note extreme volatility (sharp intraday swings), talk of silver being declared a strategic metal, and bullish calls on copper plays and discovery news for silver miners. Crypto angles include tokenized gold premiums (PAXG trading above spot), staking products pitched as higher-yield alternatives to bullion, and broader dedollarization themes influencing safe‑haven flows. Views vary — some expect sustained all‑time highs, others warn macro/war risks could still spark deep drawdowns.","data":[18,9,20,11,6,15,19,18,25,20,14,18,10,10,14,17,16,14,4,66,6,22,8,11,9,6,4,11,14,20,9,9,3,15,6,17,28,18,16,16,7,11,48,9,10,17,10,4,21,5,12,5,11,13,9]},{"label":"Oil price","topics":"brent,crude,barrel,opec,spike","description":"Crude prices are surging after reported attacks on key Middle East facilities (Ras Tanura refinery, Ahwaz pipeline) and tanker disruptions, forcing a geopolitical supply-risk premium. Traders are positioning long USO/USOIL as Brent spikes toward $73–80 with forecasts of $90+ and potential $100–$150 scenarios, while gold and silver also rally. Market commentary warns of equity downside if oil keeps climbing. Crypto-linked themes appear too: tokenized oil projects ($OIL, OILCOIN), trading on exchanges, and noted BTC–oil correlation discussions.","data":[11,6,10,13,8,12,15,5,13,10,37,4,12,7,10,10,2,14,5,5,9,12,5,15,8,4,6,11,6,16,7,8,7,104,5,4,49,13,5,7,8,11,9,12,15,12,6,9,11,8,8,4,14,4,6]},{"label":"Trump's policy","topics":"combat,lay,remarks,weapon,casualties","description":"Multiple posts report major escalation between the U.S. and Iran after President Trump ordered strikes, claimed Iran’s military and leadership were “decimated,” and said he may be personally involved in choosing Iran’s next leader. Messages note mixed signals—Trump both defending strikes and expressing interest in a deal—while coverage warns of political fallout, critics decry a rush to war, and observers fear a broader regional or global conflict. The thread highlights domestic political risk, media reactions, and concerns that the attack could be a major strategic mistake.","data":[9,25,21,16,9,13,5,5,6,11,6,11,7,5,8,4,4,3,7,4,6,5,6,3,11,7,2,1,4,10,11,6,24,13,6,8,7,4,17,16,58,73,11,7,10,4,11,6,14,8,10,12,27,1,8]},{"label":"OpenClaw","topics":"openclaw,claw,jarvis,opensource,instance","description":"Community debate over OpenClaw centers on deployment, reliability, and use cases. Teams are building one‑click/cloud templates (Rumble Cloud, AWS Lightsail) while others run it on VPS; many recommend the CLI for serious setups. Common pain points: brittle config/RAG workflows, heartbeat-driven hidden model costs, and poor handling of complex multi‑step delegation. Workarounds include TEEs (Dstack, Phala) for security, added gateways (bankr), and creative automations (e.g., class‑action signups), but analysts caution most creators can rely on newer Claude/Notion agents instead.","data":[5,12,3,5,9,6,8,4,10,5,10,5,5,5,2,10,9,10,5,5,8,9,8,10,8,7,11,6,5,3,5,7,10,32,8,3,10,6,8,3,4,3,9,9,9,5,6,10,7,15,11,8,6,6,2]},{"label":"China","topics":"chinas,chinese,ccp,china,xi","description":"Discussion focuses on China’s accelerating industrial and tech advances — AI model releases, a new quantum operating system, record robot production, and massive electricity output — alongside shifting EV dynamics in Europe. Users link those trends to geopolitical risk (Taiwan tensions, Russia energy ties, US policy), domestic market moves and alleged liquidations, and potential effects on asset flows — with speculation that 2026 could be pivotal for Bitcoin as Chinese investors seek indirect exposure. Overall the thread ties China’s domestic takeover and tech leverage to global market and crypto implications.","data":[5,1,10,3,10,2,7,24,8,10,6,7,2,7,5,5,2,6,7,2,5,3,10,12,7,8,6,7,3,1,6,7,9,10,4,10,11,1,6,11,5,10,8,8,4,7,9,6,6,8,9,4,7,7,5]},{"label":"Pokemon cards","topics":"pokemon,pokmon,30th,pombon,anniversary","description":"Conversation revolves around Pokémon’s 30th anniversary, heavy pack-ripping and nostalgia-driven collector activity—users sharing pulls (shiny Charmander, Umbreon master holo), debate over chase rates, spend levels, and major merch drops. Threads also discuss authenticity concerns (fakes), experiments with NFC + NFTs for cards, crypto-adjacent tokens/marketcap references, and community giveaways/Discord events fueling engagement.","data":[10,3,10,2,7,2,3,21,6,3,7,5,5,7,3,9,7,6,14,9,5,11,8,5,9,2,5,7,10,7,3,3,4,8,12,22,4,2,6,8,7,3,8,5,6,5,1,5,3,6,7,7,3,2,18]},{"label":"Gaming","topics":"games,gaming,immutable,gameplay,graphics","description":"Discussion centers on Web3/GameFi moving from token-centric experiments toward real gameplay: community members praise high-quality art, generative-AI-driven mechanics, and competitive, non-passive experiences that reward skill. Participants flag past projects that prioritized tokens and speculation over fun, while highlighting successes like Immutable Play rewards and top Immutable-powered P2E titles. New web-native games (browser racers, Otherside-quality visions) and platform plays ($PZP, $PLAY) are noted, alongside core crypto benefits—player ownership, open economies, and onchain transparency. The debate is community vs. speculation and how placement and retention matter for mainstream adoption.","data":[1,8,4,3,5,5,4,7,2,8,1,3,4,5,8,5,3,50,5,4,3,2,4,5,7,5,3,8,3,2,6,9,4,6,8,17,4,4,6,4,2,3,3,8,1,5,5,6,4,7,6,15,7,3,5]},{"label":"Dubai under fire","topics":"safest,mall,emirates,tourism,dubai","description":"Social posts insist Dubai remains safe and lively—crowded streets, nightlife, and influencers (including CZ) calling the city ‘SAFU’—while others warn of government caution messages, long-term war risk, and potential real estate fallout. The debate mixes crypto sentiment (’crypto is mooning’), wealth-preservation motives for calming markets, and a Miami vs Dubai relocation comparison.","data":[6,7,1,5,7,1,10,7,10,7,6,6,3,17,2,6,5,3,9,4,5,5,4,5,7,5,2,12,4,3,1,10,9,4,8,5,8,5,5,10,10,2,4,9,4,7,3,6,1,7,7,3,1,5,7]},{"label":"Ayatollah Khamenei","topics":"ali,mohammad,khameneis,ayatollah,supreme","description":"Widespread, conflicting social-media and news reports claim Iran’s Supreme Leader Ayatollah Ali Khamenei and several senior Iranian figures (and family members) were killed or wounded in alleged US‑Israel strikes. Israeli and some Western sources assert he was eliminated; Iranian outlets and officials have alternately denied, confirmed, or provided unclear statements, producing major uncertainty. The incident—plus reports of Hezbollah casualties—heightens geopolitical risk and could prompt retaliation and market volatility pending independent verification.","data":[2,8,7,7,2,2,0,3,11,34,2,12,4,5,1,1,0,0,0,2,0,4,3,3,20,12,0,1,0,24,0,3,25,2,1,1,7,4,5,20,12,6,4,10,20,9,1,0,2,1,0,1,1,4,1]},{"label":"Vibe coding","topics":"vibe,vibecoding,coding,coded,vibes","description":"Discussion revolves around “vibe coding”: using AI agents (Claude, ChatGPT, Anthropic) to rapidly build apps with little/no dev background. Posts celebrate hackathon wins and quick monetization potential, while warning of a memecoin‑like glut (especially on Solana), security/maintenance challenges, and overstated claims that AI will replace software firms. Crypto threads mention AI-driven trading wallets (EmblemVault), BNB, meetups, and the cultural/meme aspects of the movement.","data":[5,3,6,3,6,3,8,4,16,0,5,3,1,1,3,7,7,6,2,4,4,0,5,1,2,0,2,2,5,2,5,3,2,4,4,2,2,1,5,1,2,0,6,6,1,2,4,8,4,4,1,99,5,2,2]},{"label":"Anthropic vs Pentagon","topics":"pentagon,anthropic,safeguards,anthropics,surveillance","description":"Anthropic has resumed negotiations with the Pentagon after a Trump-ordered freeze, reigniting a public standoff over whether its Claude models can be used for autonomous weapons and mass domestic surveillance. Anthropic sought carve-outs prohibiting those uses, prompting government concern about national security, supply-chain designation, and accusations the company is trying to veto military operational decisions. Investors, rivals (notably OpenAI), and commentators are split between moral objections, commercial incentives, and national-security prerogatives as the parties weigh a ~$200M deal and broader precedent for AI defense contracts.","data":[2,4,13,7,2,1,2,4,5,11,2,9,9,5,2,2,5,4,1,10,4,4,8,6,7,4,1,3,2,4,6,4,1,5,2,1,3,5,18,12,7,5,5,2,6,1,6,9,4,11,4,9,4,8,6]},{"label":"Twitter bans paid promotion","topics":"promotion,prohibited,partnership,partnerships,label","description":"Discussion about X’s new “Paid Partnership” labels and how they affect crypto promotion and creator monetization. Users debate whether crypto and gambling are banned or simply require disclosure after X head of product Nikita Bier clarified crypto isn’t restricted, raising questions about reach penalties, enforcement, affiliate/raffle campaigns, and widespread under‑disclosure. Reaction mixes concern over algorithmic penalization, calls for transparency, and acceptance that creator monetization is normal in Web3.","data":[7,2,6,15,5,1,6,5,2,6,6,0,5,3,1,1,4,6,3,2,7,3,1,3,5,5,5,4,4,5,2,2,8,28,17,7,8,6,4,11,5,4,5,3,5,2,7,4,3,3,8,4,1,1,7]},{"label":"Art","topics":"painting,artist,artists,art,artwork","description":"A broad conversation celebrating visual art across digital and physical media — glitch, generative, prompt/AI art, underpainting, paper chemistry pieces, vehicle transformations, edible sculptures, and street/Banksy-style works. Threads praise collecting digital art and reference collectors and SR, while also raising concerns about fakes and devaluation of original artists. Museum authentication (Rembrandt) and striking public murals are also discussed, emphasizing art’s cultural impact and evolving presentation online.","data":[4,1,45,0,3,3,3,5,2,3,5,4,10,5,3,5,8,1,1,4,2,2,3,5,2,1,6,5,4,0,2,8,2,16,10,2,5,2,3,2,2,4,4,1,5,7,4,4,2,4,6,5,3,4,2]},{"label":"ETH price","topics":"2100,1800,2k,horizontal,1990","description":"Twitter posts focus on Ethereum price action and technical analysis: support/resistance levels ($1.8k, $2k, $2.1–2.4k, and targets up to $5.1k–$8.6k), chart patterns (bear flag, double top, ABC correction), and trading setups. Commentary mixes bullish and bearish views, trade calls, and near-term momentum signals (MACD/RSI), plus on-chain notes like falling active addresses and large whale withdrawals. Some posts reference tokenization (e.g., $GME on Ethereum) and community narratives, but the dominant theme is ETH market outlook and trading opportunities.","data":[6,0,3,0,3,9,4,5,3,4,4,5,2,4,5,5,6,0,5,3,2,6,6,5,5,2,12,7,6,1,0,6,1,4,3,3,10,9,4,5,2,2,15,3,5,9,6,4,5,10,7,1,2,4,0]},{"label":"XRP","topics":"xrp,212,xrpl,134,130","description":"XRP-focused social chatter centers on price action under $2 with strong holder conviction amid panic. Retail and OG holders urge accumulation/HODL while technical analysts note support around $1.30–$1.40, resistance near $1.65–$2.00, elevated short-term volatility, and possible multi-year triangle setups targeting higher levels. Several posts cite institutional buying (spot inflows ~ $1.1B, treasury/ETF accumulation) and the SEC v. Ripple settlement as a major bullish catalyst for 2026, with price targets ranging from $3–$10. Macro headlines (e.g., US–Iran tensions) and mixed trading behaviors (profit-taking vs long-term holding) add to near-term uncertainty.","data":[5,4,5,2,9,2,10,5,2,4,5,2,3,5,3,8,5,2,2,2,2,23,7,1,4,4,1,3,3,2,3,4,2,2,7,4,3,2,4,3,3,2,4,7,3,8,4,7,4,3,4,2,1,2,3]},{"label":"Nvidia production update","topics":"nvidia,gpu,jensen,huang,gpus","description":"Discussion centers on Nvidia’s strategic shift in chip supply—reportedly cutting H200 production for China and reallocating capacity to newer Vera Rubin/Blackwell GPUs—against the backdrop of a blowout quarter and a near-term stock pullback. U.S. export controls (possible caps on accelerator shipments) and strong cloud demand (MSFT, AMZN, OpenAI) are reshaping where GPUs flow, while tokenized NVDA shares on chains and tradfi interest in digital assets surface. Competitors and supply-side players (AMD, Intel, TSMC, ASML) plus India’s GPU scaling and open-source/local LLMs/software optimizations are noted as drivers that could push GPU demand higher. Net impact: regulatory, supply, and software trends create significant market and investment implications.","data":[6,4,6,2,1,3,3,4,1,6,2,1,3,4,5,2,2,5,3,1,3,4,2,11,3,5,5,2,3,0,2,4,3,3,3,9,8,8,3,8,5,11,8,2,4,4,4,2,3,3,6,1,2,3,3]},{"label":"Ethereum roadmap","topics":"vitalik,ethereums,roadmap,abstraction,technologies","description":"Discussion focuses on Vitalik Buterin’s sweeping Ethereum roadmap and technical proposals: execution-layer overhaul (binary state tree, potential EVM replacement), EIP‑8141 advancing account abstraction and smart wallets, MEV mitigation (ePBS, FOCIL, encrypted mempools), stronger privacy, and a plan for quantum resistance. The community views this as a multi-year rebuild to decentralize block building, improve UX, and create “sanctuary technologies,” while some critics flag L2 fragmentation and centralization trade-offs.","data":[3,2,3,0,1,4,10,2,1,6,4,1,6,5,10,3,2,12,1,3,4,3,1,4,2,3,2,2,5,2,1,0,4,9,3,2,5,1,4,5,9,19,2,3,2,5,4,2,0,0,8,6,3,3,2]},{"label":"XEET NFT","topics":"xeets,packs,xeetdotai,legendary,pack","description":"Community buzz around Xeet card packs: a multi-tiered NFT/card pack drop (Common, Rare, Legendary; hidden Epic/Mythic tiers reported) using Xeet points to mint. Users are opening packs, trading/gifting creator cards, and debating whether to spend or save Xeets. A casino-like spinning mechanic gives pack allowances (criticized as gambling), and demand/limited mints (some buying legendaries for ~0.1 ETH) is driving secondary-market interest. Additional utility mentions (Squad Hub) and high community engagement around pack pulls and giveaways.","data":[6,1,0,2,1,4,1,14,1,1,5,1,1,2,1,5,7,4,5,8,0,5,2,1,1,1,13,1,5,7,4,7,2,24,0,1,1,6,2,4,2,6,2,2,4,1,1,4,5,0,5,2,1,4,12]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-113.ts b/priv/repo/major_topics_seed/data-113.ts deleted file mode 100644 index e13bafa868..0000000000 --- a/priv/repo/major_topics_seed/data-113.ts +++ /dev/null @@ -1,286 +0,0 @@ -export const NARRATIVES = { - labels: [ - '26.02.26', - '27.02.26', - '27.02.26', - '27.02.26', - '27.02.26', - '27.02.26', - '27.02.26', - '27.02.26', - '28.02.26', - '28.02.26', - '28.02.26', - '28.02.26', - '28.02.26', - '28.02.26', - '28.02.26', - '28.02.26', - '01.03.26', - '01.03.26', - '01.03.26', - '01.03.26', - '01.03.26', - '01.03.26', - '01.03.26', - '01.03.26', - '02.03.26', - '02.03.26', - '02.03.26', - '02.03.26', - '02.03.26', - '02.03.26', - '02.03.26', - '02.03.26', - '03.03.26', - '03.03.26', - '03.03.26', - '03.03.26', - '03.03.26', - '03.03.26', - '03.03.26', - '03.03.26', - '04.03.26', - '04.03.26', - '04.03.26', - '04.03.26', - '04.03.26', - '04.03.26', - '04.03.26', - '04.03.26', - '05.03.26', - '05.03.26', - '05.03.26', - '05.03.26', - '05.03.26', - '05.03.26', - '05.03.26', - ], - datasets: [ - { - label: 'BTC price', - topics: '74k,70k,72k,71k,65k', - description: - "Twitter discussion centers on Bitcoin being in an 'accumulation' phase: monthly RSI and log‑regression bands indicate accumulation while price hovers near key supports around $60k–$64k. Immediate resistance is cited at $70k–74k (72–80k noted as light selling); traders are watching for volume-confirmed breakout or a breakdown that could lead to a sharp decline. Market participants mention laddered orders, small trades, and technicals (20‑day SMA, Bollinger bands, RSI), alongside long‑term bullish targets ($100k–$1M).", - data: [ - 16, 10, 16, 14, 12, 80, 50, 22, 18, 19, 21, 19, 9, 12, 16, 15, 14, 4, 16, 8, 7, 35, 23, 10, - 14, 6, 26, 32, 24, 9, 9, 15, 10, 6, 12, 20, 22, 33, 43, 19, 5, 4, 30, 19, 14, 23, 24, 14, - 12, 24, 26, 12, 13, 19, 12, - ], - infofi: false, - }, - { - label: 'War in Iran', - topics: 'accuses,dominant,afp,riyadh,refineries', - description: - 'Breaking reports describe major US-Israel strikes on Iran with Iranian state media claiming Supreme Leader Khamenei killed. Iran/IRGC have launched missile and drone reprisals, closed the Strait of Hormuz and threatened shipping; Iraq suspended output at large oil fields (Rumaila, West Qurna 2). Global fallout includes embassy evacuations, allied military deployments, hostage reports, and intelligence moves (CIA arming Kurdish forces). The situation poses acute geopolitical risk and potential energy/market disruptions.', - data: [ - 13, 25, 17, 29, 2, 12, 12, 10, 23, 27, 6, 13, 9, 16, 7, 13, 23, 1, 1, 1, 1, 12, 9, 7, 17, - 17, 3, 3, 6, 9, 32, 4, 27, 13, 6, 5, 8, 9, 16, 29, 63, 101, 22, 8, 19, 29, 14, 3, 2, 10, 7, - 4, 28, 5, 0, - ], - infofi: false, - }, - { - label: 'Precious metals', - topics: 'silver,xauusd,copper,precious,metals', - description: - 'Social posts show a fast-moving rally in gold, silver and base metals (copper, zinc) driven by Middle East/US‑Iran geopolitical risk and rapid capital rotation into miners, especially in Shanghai where miners hit daily limit-ups and price discovery is shifting. Traders note extreme volatility (sharp intraday swings), talk of silver being declared a strategic metal, and bullish calls on copper plays and discovery news for silver miners. Crypto angles include tokenized gold premiums (PAXG trading above spot), staking products pitched as higher-yield alternatives to bullion, and broader dedollarization themes influencing safe‑haven flows. Views vary — some expect sustained all‑time highs, others warn macro/war risks could still spark deep drawdowns.', - data: [ - 18, 9, 20, 11, 6, 15, 19, 18, 25, 20, 14, 18, 10, 10, 14, 17, 16, 14, 4, 66, 6, 22, 8, 11, - 9, 6, 4, 11, 14, 20, 9, 9, 3, 15, 6, 17, 28, 18, 16, 16, 7, 11, 48, 9, 10, 17, 10, 4, 21, 5, - 12, 5, 11, 13, 9, - ], - infofi: false, - }, - { - label: 'Oil price', - topics: 'brent,crude,barrel,opec,spike', - description: - 'Crude prices are surging after reported attacks on key Middle East facilities (Ras Tanura refinery, Ahwaz pipeline) and tanker disruptions, forcing a geopolitical supply-risk premium. Traders are positioning long USO/USOIL as Brent spikes toward $73–80 with forecasts of $90+ and potential $100–$150 scenarios, while gold and silver also rally. Market commentary warns of equity downside if oil keeps climbing. Crypto-linked themes appear too: tokenized oil projects ($OIL, OILCOIN), trading on exchanges, and noted BTC–oil correlation discussions.', - data: [ - 11, 6, 10, 13, 8, 12, 15, 5, 13, 10, 37, 4, 12, 7, 10, 10, 2, 14, 5, 5, 9, 12, 5, 15, 8, 4, - 6, 11, 6, 16, 7, 8, 7, 104, 5, 4, 49, 13, 5, 7, 8, 11, 9, 12, 15, 12, 6, 9, 11, 8, 8, 4, 14, - 4, 6, - ], - infofi: false, - }, - { - label: "Trump's policy", - topics: 'combat,lay,remarks,weapon,casualties', - description: - 'Multiple posts report major escalation between the U.S. and Iran after President Trump ordered strikes, claimed Iran’s military and leadership were “decimated,” and said he may be personally involved in choosing Iran’s next leader. Messages note mixed signals—Trump both defending strikes and expressing interest in a deal—while coverage warns of political fallout, critics decry a rush to war, and observers fear a broader regional or global conflict. The thread highlights domestic political risk, media reactions, and concerns that the attack could be a major strategic mistake.', - data: [ - 9, 25, 21, 16, 9, 13, 5, 5, 6, 11, 6, 11, 7, 5, 8, 4, 4, 3, 7, 4, 6, 5, 6, 3, 11, 7, 2, 1, - 4, 10, 11, 6, 24, 13, 6, 8, 7, 4, 17, 16, 58, 73, 11, 7, 10, 4, 11, 6, 14, 8, 10, 12, 27, 1, - 8, - ], - infofi: false, - }, - { - label: 'OpenClaw', - topics: 'openclaw,claw,jarvis,opensource,instance', - description: - 'Community debate over OpenClaw centers on deployment, reliability, and use cases. Teams are building one‑click/cloud templates (Rumble Cloud, AWS Lightsail) while others run it on VPS; many recommend the CLI for serious setups. Common pain points: brittle config/RAG workflows, heartbeat-driven hidden model costs, and poor handling of complex multi‑step delegation. Workarounds include TEEs (Dstack, Phala) for security, added gateways (bankr), and creative automations (e.g., class‑action signups), but analysts caution most creators can rely on newer Claude/Notion agents instead.', - data: [ - 5, 12, 3, 5, 9, 6, 8, 4, 10, 5, 10, 5, 5, 5, 2, 10, 9, 10, 5, 5, 8, 9, 8, 10, 8, 7, 11, 6, - 5, 3, 5, 7, 10, 32, 8, 3, 10, 6, 8, 3, 4, 3, 9, 9, 9, 5, 6, 10, 7, 15, 11, 8, 6, 6, 2, - ], - infofi: false, - }, - { - label: 'China', - topics: 'chinas,chinese,ccp,china,xi', - description: - 'Discussion focuses on China’s accelerating industrial and tech advances — AI model releases, a new quantum operating system, record robot production, and massive electricity output — alongside shifting EV dynamics in Europe. Users link those trends to geopolitical risk (Taiwan tensions, Russia energy ties, US policy), domestic market moves and alleged liquidations, and potential effects on asset flows — with speculation that 2026 could be pivotal for Bitcoin as Chinese investors seek indirect exposure. Overall the thread ties China’s domestic takeover and tech leverage to global market and crypto implications.', - data: [ - 5, 1, 10, 3, 10, 2, 7, 24, 8, 10, 6, 7, 2, 7, 5, 5, 2, 6, 7, 2, 5, 3, 10, 12, 7, 8, 6, 7, 3, - 1, 6, 7, 9, 10, 4, 10, 11, 1, 6, 11, 5, 10, 8, 8, 4, 7, 9, 6, 6, 8, 9, 4, 7, 7, 5, - ], - infofi: false, - }, - { - label: 'Pokemon cards', - topics: 'pokemon,pokmon,30th,pombon,anniversary', - description: - 'Conversation revolves around Pokémon’s 30th anniversary, heavy pack-ripping and nostalgia-driven collector activity—users sharing pulls (shiny Charmander, Umbreon master holo), debate over chase rates, spend levels, and major merch drops. Threads also discuss authenticity concerns (fakes), experiments with NFC + NFTs for cards, crypto-adjacent tokens/marketcap references, and community giveaways/Discord events fueling engagement.', - data: [ - 10, 3, 10, 2, 7, 2, 3, 21, 6, 3, 7, 5, 5, 7, 3, 9, 7, 6, 14, 9, 5, 11, 8, 5, 9, 2, 5, 7, 10, - 7, 3, 3, 4, 8, 12, 22, 4, 2, 6, 8, 7, 3, 8, 5, 6, 5, 1, 5, 3, 6, 7, 7, 3, 2, 18, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'games,gaming,immutable,gameplay,graphics', - description: - 'Discussion centers on Web3/GameFi moving from token-centric experiments toward real gameplay: community members praise high-quality art, generative-AI-driven mechanics, and competitive, non-passive experiences that reward skill. Participants flag past projects that prioritized tokens and speculation over fun, while highlighting successes like Immutable Play rewards and top Immutable-powered P2E titles. New web-native games (browser racers, Otherside-quality visions) and platform plays ($PZP, $PLAY) are noted, alongside core crypto benefits—player ownership, open economies, and onchain transparency. The debate is community vs. speculation and how placement and retention matter for mainstream adoption.', - data: [ - 1, 8, 4, 3, 5, 5, 4, 7, 2, 8, 1, 3, 4, 5, 8, 5, 3, 50, 5, 4, 3, 2, 4, 5, 7, 5, 3, 8, 3, 2, - 6, 9, 4, 6, 8, 17, 4, 4, 6, 4, 2, 3, 3, 8, 1, 5, 5, 6, 4, 7, 6, 15, 7, 3, 5, - ], - infofi: false, - }, - { - label: 'Dubai under fire', - topics: 'safest,mall,emirates,tourism,dubai', - description: - 'Social posts insist Dubai remains safe and lively—crowded streets, nightlife, and influencers (including CZ) calling the city ‘SAFU’—while others warn of government caution messages, long-term war risk, and potential real estate fallout. The debate mixes crypto sentiment (’crypto is mooning’), wealth-preservation motives for calming markets, and a Miami vs Dubai relocation comparison.', - data: [ - 6, 7, 1, 5, 7, 1, 10, 7, 10, 7, 6, 6, 3, 17, 2, 6, 5, 3, 9, 4, 5, 5, 4, 5, 7, 5, 2, 12, 4, - 3, 1, 10, 9, 4, 8, 5, 8, 5, 5, 10, 10, 2, 4, 9, 4, 7, 3, 6, 1, 7, 7, 3, 1, 5, 7, - ], - infofi: false, - }, - { - label: 'Ayatollah Khamenei', - topics: 'ali,mohammad,khameneis,ayatollah,supreme', - description: - 'Widespread, conflicting social-media and news reports claim Iran’s Supreme Leader Ayatollah Ali Khamenei and several senior Iranian figures (and family members) were killed or wounded in alleged US‑Israel strikes. Israeli and some Western sources assert he was eliminated; Iranian outlets and officials have alternately denied, confirmed, or provided unclear statements, producing major uncertainty. The incident—plus reports of Hezbollah casualties—heightens geopolitical risk and could prompt retaliation and market volatility pending independent verification.', - data: [ - 2, 8, 7, 7, 2, 2, 0, 3, 11, 34, 2, 12, 4, 5, 1, 1, 0, 0, 0, 2, 0, 4, 3, 3, 20, 12, 0, 1, 0, - 24, 0, 3, 25, 2, 1, 1, 7, 4, 5, 20, 12, 6, 4, 10, 20, 9, 1, 0, 2, 1, 0, 1, 1, 4, 1, - ], - infofi: false, - }, - { - label: 'Vibe coding', - topics: 'vibe,vibecoding,coding,coded,vibes', - description: - 'Discussion revolves around “vibe coding”: using AI agents (Claude, ChatGPT, Anthropic) to rapidly build apps with little/no dev background. Posts celebrate hackathon wins and quick monetization potential, while warning of a memecoin‑like glut (especially on Solana), security/maintenance challenges, and overstated claims that AI will replace software firms. Crypto threads mention AI-driven trading wallets (EmblemVault), BNB, meetups, and the cultural/meme aspects of the movement.', - data: [ - 5, 3, 6, 3, 6, 3, 8, 4, 16, 0, 5, 3, 1, 1, 3, 7, 7, 6, 2, 4, 4, 0, 5, 1, 2, 0, 2, 2, 5, 2, - 5, 3, 2, 4, 4, 2, 2, 1, 5, 1, 2, 0, 6, 6, 1, 2, 4, 8, 4, 4, 1, 99, 5, 2, 2, - ], - infofi: false, - }, - { - label: 'Anthropic vs Pentagon', - topics: 'pentagon,anthropic,safeguards,anthropics,surveillance', - description: - 'Anthropic has resumed negotiations with the Pentagon after a Trump-ordered freeze, reigniting a public standoff over whether its Claude models can be used for autonomous weapons and mass domestic surveillance. Anthropic sought carve-outs prohibiting those uses, prompting government concern about national security, supply-chain designation, and accusations the company is trying to veto military operational decisions. Investors, rivals (notably OpenAI), and commentators are split between moral objections, commercial incentives, and national-security prerogatives as the parties weigh a ~$200M deal and broader precedent for AI defense contracts.', - data: [ - 2, 4, 13, 7, 2, 1, 2, 4, 5, 11, 2, 9, 9, 5, 2, 2, 5, 4, 1, 10, 4, 4, 8, 6, 7, 4, 1, 3, 2, 4, - 6, 4, 1, 5, 2, 1, 3, 5, 18, 12, 7, 5, 5, 2, 6, 1, 6, 9, 4, 11, 4, 9, 4, 8, 6, - ], - infofi: false, - }, - { - label: 'Twitter bans paid promotion', - topics: 'promotion,prohibited,partnership,partnerships,label', - description: - 'Discussion about X’s new “Paid Partnership” labels and how they affect crypto promotion and creator monetization. Users debate whether crypto and gambling are banned or simply require disclosure after X head of product Nikita Bier clarified crypto isn’t restricted, raising questions about reach penalties, enforcement, affiliate/raffle campaigns, and widespread under‑disclosure. Reaction mixes concern over algorithmic penalization, calls for transparency, and acceptance that creator monetization is normal in Web3.', - data: [ - 7, 2, 6, 15, 5, 1, 6, 5, 2, 6, 6, 0, 5, 3, 1, 1, 4, 6, 3, 2, 7, 3, 1, 3, 5, 5, 5, 4, 4, 5, - 2, 2, 8, 28, 17, 7, 8, 6, 4, 11, 5, 4, 5, 3, 5, 2, 7, 4, 3, 3, 8, 4, 1, 1, 7, - ], - infofi: false, - }, - { - label: 'Art', - topics: 'painting,artist,artists,art,artwork', - description: - 'A broad conversation celebrating visual art across digital and physical media — glitch, generative, prompt/AI art, underpainting, paper chemistry pieces, vehicle transformations, edible sculptures, and street/Banksy-style works. Threads praise collecting digital art and reference collectors and SR, while also raising concerns about fakes and devaluation of original artists. Museum authentication (Rembrandt) and striking public murals are also discussed, emphasizing art’s cultural impact and evolving presentation online.', - data: [ - 4, 1, 45, 0, 3, 3, 3, 5, 2, 3, 5, 4, 10, 5, 3, 5, 8, 1, 1, 4, 2, 2, 3, 5, 2, 1, 6, 5, 4, 0, - 2, 8, 2, 16, 10, 2, 5, 2, 3, 2, 2, 4, 4, 1, 5, 7, 4, 4, 2, 4, 6, 5, 3, 4, 2, - ], - infofi: false, - }, - { - label: 'ETH price', - topics: '2100,1800,2k,horizontal,1990', - description: - 'Twitter posts focus on Ethereum price action and technical analysis: support/resistance levels ($1.8k, $2k, $2.1–2.4k, and targets up to $5.1k–$8.6k), chart patterns (bear flag, double top, ABC correction), and trading setups. Commentary mixes bullish and bearish views, trade calls, and near-term momentum signals (MACD/RSI), plus on-chain notes like falling active addresses and large whale withdrawals. Some posts reference tokenization (e.g., $GME on Ethereum) and community narratives, but the dominant theme is ETH market outlook and trading opportunities.', - data: [ - 6, 0, 3, 0, 3, 9, 4, 5, 3, 4, 4, 5, 2, 4, 5, 5, 6, 0, 5, 3, 2, 6, 6, 5, 5, 2, 12, 7, 6, 1, - 0, 6, 1, 4, 3, 3, 10, 9, 4, 5, 2, 2, 15, 3, 5, 9, 6, 4, 5, 10, 7, 1, 2, 4, 0, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'xrp,212,xrpl,134,130', - description: - 'XRP-focused social chatter centers on price action under $2 with strong holder conviction amid panic. Retail and OG holders urge accumulation/HODL while technical analysts note support around $1.30–$1.40, resistance near $1.65–$2.00, elevated short-term volatility, and possible multi-year triangle setups targeting higher levels. Several posts cite institutional buying (spot inflows ~ $1.1B, treasury/ETF accumulation) and the SEC v. Ripple settlement as a major bullish catalyst for 2026, with price targets ranging from $3–$10. Macro headlines (e.g., US–Iran tensions) and mixed trading behaviors (profit-taking vs long-term holding) add to near-term uncertainty.', - data: [ - 5, 4, 5, 2, 9, 2, 10, 5, 2, 4, 5, 2, 3, 5, 3, 8, 5, 2, 2, 2, 2, 23, 7, 1, 4, 4, 1, 3, 3, 2, - 3, 4, 2, 2, 7, 4, 3, 2, 4, 3, 3, 2, 4, 7, 3, 8, 4, 7, 4, 3, 4, 2, 1, 2, 3, - ], - infofi: false, - }, - { - label: 'Nvidia production update', - topics: 'nvidia,gpu,jensen,huang,gpus', - description: - 'Discussion centers on Nvidia’s strategic shift in chip supply—reportedly cutting H200 production for China and reallocating capacity to newer Vera Rubin/Blackwell GPUs—against the backdrop of a blowout quarter and a near-term stock pullback. U.S. export controls (possible caps on accelerator shipments) and strong cloud demand (MSFT, AMZN, OpenAI) are reshaping where GPUs flow, while tokenized NVDA shares on chains and tradfi interest in digital assets surface. Competitors and supply-side players (AMD, Intel, TSMC, ASML) plus India’s GPU scaling and open-source/local LLMs/software optimizations are noted as drivers that could push GPU demand higher. Net impact: regulatory, supply, and software trends create significant market and investment implications.', - data: [ - 6, 4, 6, 2, 1, 3, 3, 4, 1, 6, 2, 1, 3, 4, 5, 2, 2, 5, 3, 1, 3, 4, 2, 11, 3, 5, 5, 2, 3, 0, - 2, 4, 3, 3, 3, 9, 8, 8, 3, 8, 5, 11, 8, 2, 4, 4, 4, 2, 3, 3, 6, 1, 2, 3, 3, - ], - infofi: false, - }, - { - label: 'Ethereum roadmap', - topics: 'vitalik,ethereums,roadmap,abstraction,technologies', - description: - 'Discussion focuses on Vitalik Buterin’s sweeping Ethereum roadmap and technical proposals: execution-layer overhaul (binary state tree, potential EVM replacement), EIP‑8141 advancing account abstraction and smart wallets, MEV mitigation (ePBS, FOCIL, encrypted mempools), stronger privacy, and a plan for quantum resistance. The community views this as a multi-year rebuild to decentralize block building, improve UX, and create “sanctuary technologies,” while some critics flag L2 fragmentation and centralization trade-offs.', - data: [ - 3, 2, 3, 0, 1, 4, 10, 2, 1, 6, 4, 1, 6, 5, 10, 3, 2, 12, 1, 3, 4, 3, 1, 4, 2, 3, 2, 2, 5, 2, - 1, 0, 4, 9, 3, 2, 5, 1, 4, 5, 9, 19, 2, 3, 2, 5, 4, 2, 0, 0, 8, 6, 3, 3, 2, - ], - infofi: false, - }, - { - label: 'XEET NFT', - topics: 'xeets,packs,xeetdotai,legendary,pack', - description: - 'Community buzz around Xeet card packs: a multi-tiered NFT/card pack drop (Common, Rare, Legendary; hidden Epic/Mythic tiers reported) using Xeet points to mint. Users are opening packs, trading/gifting creator cards, and debating whether to spend or save Xeets. A casino-like spinning mechanic gives pack allowances (criticized as gambling), and demand/limited mints (some buying legendaries for ~0.1 ETH) is driving secondary-market interest. Additional utility mentions (Squad Hub) and high community engagement around pack pulls and giveaways.', - data: [ - 6, 1, 0, 2, 1, 4, 1, 14, 1, 1, 5, 1, 1, 2, 1, 5, 7, 4, 5, 8, 0, 5, 2, 1, 1, 1, 13, 1, 5, 7, - 4, 7, 2, 24, 0, 1, 1, 6, 2, 4, 2, 6, 2, 2, 4, 1, 1, 4, 5, 0, 5, 2, 1, 4, 12, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-114.json b/priv/repo/major_topics_seed/data-114.json deleted file mode 100644 index 7d51bbfb67..0000000000 --- a/priv/repo/major_topics_seed/data-114.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["05.03.26","06.03.26","06.03.26","06.03.26","06.03.26","06.03.26","06.03.26","06.03.26","07.03.26","07.03.26","07.03.26","07.03.26","07.03.26","07.03.26","07.03.26","07.03.26","08.03.26","08.03.26","08.03.26","08.03.26","08.03.26","08.03.26","08.03.26","08.03.26","09.03.26","09.03.26","09.03.26","09.03.26","09.03.26","09.03.26","09.03.26","09.03.26","10.03.26","10.03.26","10.03.26","10.03.26","10.03.26","10.03.26","10.03.26","10.03.26","11.03.26","11.03.26","11.03.26","11.03.26","11.03.26","11.03.26","11.03.26","11.03.26","12.03.26","12.03.26","12.03.26","12.03.26","12.03.26","12.03.26","12.03.26"],"datasets":[{"label":"AI agents","topics":"ais,autonomously,autonomous,transact,artificial","description":"Social posts focus on the intersection of AI agents and crypto infrastructure: AI agents are emerging as autonomous economic actors that will use on-chain and off-chain rails (Lightning, Bitcoin, stablecoins) for payments, creating a major on‑ramp and new use cases for crypto. Conversations cover agent infrastructure and standards (e.g., ERC‑8004), native token/ambassador launches, agent platforms on chains like BNB, and tooling/EDA moats. Key themes include massive productivity gains across companies, workforce disruption for new entrants, the need for verifiability/audit trails to prevent hallucinations and failures, and investment/market upside as AI adoption drives crypto demand.","data":[32,221,56,42,34,33,57,28,49,39,60,33,45,39,51,37,35,74,30,38,37,39,73,67,50,43,43,30,41,20,25,45,28,37,55,40,45,40,46,40,35,40,25,40,27,26,59,72,36,43,59,21,24,42,43]},{"label":"Oil price","topics":"wti,brent,barrel,crude,120","description":"Social chatter centers on extreme oil price volatility driven by Middle East tensions and rumors of a coordinated G7 release (300–400M barrels) from strategic reserves that briefly knocked prices down $15–$17. Traders note rapid blow-off rallies above $90–$110, talk of potential triple‑digit or even $150+/barrel tops, and fast retracements; oil equities have lagged and could catch up. Market impacts cited include higher inflation, Fed policy implications, strained supply chains, and active short/long trading on platforms like Hyperliquid with large P&L swings. Advice/themes include patience, watch for SPR interventions, and the risks of trading against state-aligned price suppression.","data":[27,9,18,40,22,50,24,27,23,23,130,27,31,24,18,21,27,42,28,28,37,50,19,22,16,17,24,42,24,32,22,34,312,53,24,25,120,35,13,33,20,15,43,25,29,39,27,36,72,24,19,19,37,18,16]},{"label":"BTC price","topics":"74k,71k,69k,70k,80k","description":"Tweets show Bitcoin range-bound roughly between $62.8K–$72.6K with key resistance around $70K–$71.5K and upside calls to $74K–$81K. Market participants debate whether the bottom is in—some expect ETF inflows and short squeezes to push higher, while others warn profit-taking, liquidation of weak participants, and a breakdown toward $64K or retests near the $60K macro trendline. Drivers mentioned include CME/futures open, US jobs data, order-book liquidity, heavy leverage, and cycle dynamics (accumulation → manipulation → distribution).","data":[22,11,13,26,15,47,50,31,21,26,22,25,22,13,29,42,22,5,17,14,13,59,20,17,11,8,27,47,25,12,12,11,5,19,17,20,27,30,44,25,8,5,45,19,23,34,19,19,30,22,20,16,25,4,13]},{"label":"STRC record volume","topics":"mstr,strc,preferred,strive,atm","description":"Conversation centers on Strategy’s perpetual preferred stock (STRC) as a capital-raising vehicle that is rapidly buying Bitcoin via ATM issuance, driving huge BTC accumulation and intense social hype. Key points: STRC offers ~11.5% yield, estimates of thousands of BTC bought (multiple snapshots: 524 BTC in a minute, 805 BTC in early trading, >3,000 BTC cumulative), and corporate buyers like MSTR, ASST (bought $50M STRC) and SATA participating. While bullish signals and analyst coverage boost MSTR/ASST sentiment, some warn STRC is risky and may have systemic amplification effects on BTC and equities.","data":[22,6,11,12,15,26,22,8,12,14,6,11,8,11,12,6,9,5,12,6,11,10,12,11,8,1,14,2,11,11,10,13,3,10,19,13,7,31,10,4,12,8,16,6,12,11,4,8,13,21,5,19,13,7,4]},{"label":"Bitcoin ideology","topics":"bitcoiners,monetary,fiat,nostr,grassroots","description":"Twitter discussion centers on defending Bitcoin’s fundamentals and role as money against critics calling it worthless or arguing it will go to zero. Posts emphasize adoption, proof-of-work decentralization, and Bitcoin’s monetary properties (comparisons to gold and Swiss bank accounts), while criticizing journalists, Coinbase, and uninformed commentators. Subthreads mention Ordinals, Bitcoin treasury companies, community theatrics, and Nostr’s interplay with Bitcoin and web-native social tech.","data":[9,11,9,18,32,12,14,21,10,16,11,6,12,8,9,8,15,18,8,5,12,10,10,15,14,4,9,9,11,15,12,14,5,9,11,9,13,6,7,7,10,5,3,11,11,14,8,12,1,13,11,12,7,10,9]},{"label":"China","topics":"chinas,china,chinese,taiwan,ccp","description":"Social chatter ties Chinese geopolitics (Taiwan flights pause, China–Iran ties, US strategic pressure) to macro effects (yuan volatility, oil/energy risks) and rapid tech/industrial shifts (AI, quantum, EVs, manufacturing expansion). Crypto-specific threads note Chinese traders exploring derivatives and Beijing tightening rules on crypto money-laundering and currency evasion. Overall sentiment mixes concern about authoritarian moves and economic strategy with market implications for crypto, tech, and energy sectors.","data":[3,14,12,8,10,4,10,23,10,15,6,4,9,10,8,17,14,4,5,11,8,8,10,21,7,9,9,6,7,14,8,9,7,15,7,12,5,15,12,12,13,11,14,9,13,11,16,11,4,8,5,15,11,8,9]},{"label":"International women's day","topics":"womens,international,women,celebrate,shaping","description":"Social posts celebrating International Women’s Day with a focus on women’s contributions in Web3 and blockchain—events, campaigns (Blockchain4Her), and industry shout-outs from exchanges (MEXC, Bitget). Messages emphasize appreciation, inclusion, and empowerment, while also noting community concerns about scammers and fake female profiles. Some posts highlight progress (eg. ~35% participation) and calls to support women builders and leaders in crypto.","data":[7,22,9,7,9,6,6,52,7,4,5,12,3,6,5,3,12,6,10,6,36,14,16,31,3,8,6,3,6,10,2,7,5,6,4,6,3,5,9,2,3,3,7,4,6,9,6,4,6,6,0,7,9,81,8]},{"label":"Gaming","topics":"gaming,games,steam,fortnite,cross","description":"Social chatter centers on a resurgence in gaming—nostalgia for classics alongside a wave of new releases—driven by web3 integrations: Play-to-Earn mechanics, gametokens/NFTs, studio tokens (vs single-game tokens), retail payments (Flexa/Amp at GameStop), and cross-game ecosystems. Community posts highlight hackathons, partnerships, upcoming Steam launches, and rankings of blockchain-powered auto-battlers, with bullish sentiment that finance and gaming are converging while noting risks like delisting and fragmentation.","data":[5,10,4,6,8,8,9,4,10,7,3,2,5,4,6,5,8,92,7,9,9,7,9,4,10,4,11,11,8,4,4,11,7,9,3,30,5,9,7,9,3,3,7,11,7,6,12,7,2,7,9,12,12,2,12]},{"label":"Pokemon cards","topics":"pokemon,packs,cards,tcg,sealed","description":"Social chatter centers on a booming Pokémon TCG market — rapid price spikes, sealed-case flips, celebrity pack openings and anniversary hype. Many warn it’s a speculative bubble (sell signals, panic-sell comparisons to NFT/crypto FOMO), while others plan to buy post-crash; traders report recent big profits but caution about an imminent pullback. Community growth (Pokopia, card shows) and debate over long-term value and reprint risk drive the conversation.","data":[8,5,2,5,12,18,4,31,6,11,11,4,8,3,8,12,1,5,9,20,4,8,6,7,6,4,5,9,12,6,5,5,10,19,10,15,8,12,9,7,5,6,8,9,12,5,9,14,6,10,14,8,5,1,7]},{"label":"20 million BTC mined","topics":"mined,114,scarcity,20m,21m","description":"Social posts mark Bitcoin reaching ~20,000,000 mined (around block ~939k, early March 2026), meaning over 95% of the 21M cap is in circulation. Community highlights that the final ~1,000,000 BTC will take ~114 years to mine due to halvings, amplifying scarcity, and notes effective circulating supply is smaller given ~4M lost, ~738k held by large holders, and ~1.5M in ETFs. Messages are celebratory/bullish on scarcity-driven demand, include mining/block confirmations and node verifications, and reference current price action (~$70.9k) and short-term price probabilities.","data":[29,5,5,5,13,8,3,8,3,3,13,13,6,5,9,1,5,0,1,1,7,12,5,8,3,18,4,1,4,87,48,5,13,2,1,4,6,4,5,0,3,4,0,5,3,8,2,4,20,3,2,1,5,2,9]},{"label":"War in Iran","topics":"iranians,religious,defeated,framed,fm","description":"Social conversations focus on the unfolding Iran–U.S./Israel conflict, with strong talk of regime change, diaspora celebrating leadership strikes, and warnings that the war could escalate into a multi‑decade regional or global conflict. Posters debate political instability on both sides, concerns about Congress’ role, Iranian fragmentation after leadership decapitation, and threats to nations that support the U.S./Israel, while many emphasize the conflict’s deep domestic and ideological roots.","data":[8,7,3,10,6,4,1,7,2,8,7,7,5,6,4,3,9,8,6,6,5,7,10,10,2,4,3,6,2,3,1,2,6,3,10,9,5,4,9,2,9,6,3,3,9,6,6,15,2,7,2,5,28,15,8]},{"label":"OpenClaw","topics":"openclaw,claw,installing,plugin,instance","description":"Social posts center on OpenClaw usability: many users report setup and installation friction (deployment issues, difficulty with third‑party 'clawhub' skills) and express frustration, while others highlight quick one‑click agents and creative uses (teaching tasks, plugin integrations like Chutes/sn64). Some say they'll try alternatives (NousResearch). Discussion also touches on privacy vs convenience and mixed sentiment from annoyed to impressed.","data":[5,16,5,2,7,4,8,2,20,7,2,3,5,6,3,5,3,3,7,7,9,3,1,4,2,4,4,2,5,7,5,10,2,31,8,6,7,7,7,4,1,5,4,8,4,7,9,3,2,7,15,0,3,8,9]},{"label":"Champions league","topics":"arsenal,league,champions,premier,football","description":"Twitter chatter centers on Champions League nights and big domestic fixtures (Real Madrid vs Man City, Leverkusen vs Arsenal, Milan derby, Man City/Arsenal) plus surprise stories like Bodø/Glimt. Threads also cover injuries (Rodrygo out long-term), transfer/club staffing moves (Brandt leaving Dortmund, Iniesta/Morocco talks, Edu Gaspar exit), pundit/player quotes, and heavy betting/prediction activity — including crypto-linked markets and promotions (BitMart, bets, mentions of a crypto-related scam). Fans are debating outcomes, lineups, and betting odds throughout.","data":[5,8,7,9,12,5,5,8,5,9,2,6,4,7,5,12,5,7,6,5,7,4,3,6,6,5,2,7,5,3,6,3,4,3,5,11,0,6,4,10,5,4,11,3,2,12,3,8,6,4,3,3,4,10,7]},{"label":"US jobs data","topics":"payrolls,unemployment,92k,revised,44","description":"US nonfarm payrolls unexpectedly fell by 92,000 in February (unemployment 4.4%), with large downward revisions to prior months (cumulative ~-710k over 13 months). Private payrolls accounted for most losses; manufacturing and full-time positions showed notable declines. ADP’s positive private payroll print contrasted sharply with the BLS miss, and tech and federal job cuts were also highlighted. Markets reacted toward easier policy expectations (dollar down, rate cut odds rising) as tweets flagged recession/stagflation risks and a softer labor market.","data":[3,1,3,7,0,3,2,2,4,3,2,5,5,18,4,9,4,1,1,6,2,7,3,2,26,7,3,13,6,5,4,2,15,0,8,2,3,6,6,5,5,1,4,1,1,7,3,2,4,0,24,3,4,5,4]},{"label":"HYPE","topics":"hype,hayes,arthur,august,essay","description":"Twitter community is overwhelmingly bullish on $HYPE, citing accumulation, strong relative strength, and multiple breakout setups. Traders are posting buy bids (as low as $15–18), watching support reclaimed at ~$30 and resistance/targets near $38–40 (with a possible short pullback to $34–35). Discussion also covers liquidity (Hyperliquid loans, HYPE‑SOL pool), tokenomics/team selling restrictions versus OTC exits, and the idea that HYPE performs well during heightened market volatility; March monthly midpoint is described as a key “time of truth.”","data":[9,6,5,4,6,5,5,3,3,2,5,2,1,4,3,3,4,3,2,3,2,9,20,1,2,3,9,10,3,2,4,4,3,3,4,9,6,3,6,3,6,5,4,4,8,4,6,6,7,5,4,2,3,5,5]},{"label":"Private credit issues","topics":"withdrawals,redemption,credit,blackrock,capped","description":"Social discussion centers on a sudden liquidity crunch in private credit: major managers (BlackRock, Morgan Stanley, Cliffwater, Blackstone) have capped or limited redemptions after large withdrawal requests—e.g., Cliffwater’s $33B fund capped redemptions at ~7%, BlackRock’s $26B HPS fund limited withdrawals after ~$1.2B requested. Causes cited include opaque valuations, illiquid loan books, automated underwriting, and concentrated maturities, prompting fire sales, defaults, and systemic spillover worries likened to a “subprime” cycle. Some commentators push tokenized on‑chain investments as a redemption‑resistant alternative.","data":[4,0,2,2,5,5,1,8,2,5,33,2,5,1,13,0,4,4,2,3,4,3,1,9,3,4,10,2,6,8,0,2,0,1,5,0,28,1,2,9,1,4,3,1,4,3,2,1,4,4,4,1,7,4,9]},{"label":"RWA","topics":"rwa,rwas,treasuries,22b,ondo","description":"Social chatter centers on a rapid expansion of on-chain RWAs as tokenized funds, gold, equities and commodities push total market value to ~$24B and new ATHs across chains. Contributors note composition is diversifying beyond U.S. Treasuries and highlight growth on BNB and upcoming Own Network projects, with events (RWA Pad, RWA Summit) and products (Royco v2) signaling maturation. Key constraints called out are infrastructure and liquidity — underwriting, risk capital providers, composability/standards and market plumbing — while regulatory shifts and bank entry could accelerate adoption.","data":[3,4,2,5,1,4,1,5,4,4,5,3,7,5,10,7,2,2,4,3,2,5,2,5,4,5,2,8,9,4,2,7,2,6,4,2,5,4,15,2,4,5,6,3,2,4,3,5,17,4,2,3,4,3,5]},{"label":"Strait of Hormuz closed","topics":"closure,traffic,ships,crossing,strait","description":"Social media discussion centers on a de facto closure/disruption of the Strait of Hormuz: tanker traffic has plunged (only Iran-linked ships seen), many vessels turning transponders off, and sanctioned tankers dominating the area. Users note major near-term market impacts—spiking tanker rates, potential oil surge (calls of $150/bbl), knock-on effects for gold and U.S. Treasury markets—and debate whether the shutdown is military, sanctions-driven, or financial. Observers track ship movements (including Iran/China activity), estimate lost volumes vs. normal flows, and watch markets/Polymarket for signs traffic is returning to normal.","data":[4,0,0,1,0,3,2,10,18,5,9,6,3,7,4,3,4,1,7,3,4,1,4,0,3,1,8,7,1,2,5,5,4,7,5,0,6,3,3,5,8,2,13,4,8,2,7,6,4,8,4,5,4,3,4]},{"label":"Vibecoding","topics":"vibe,vibecoding,coding,coded,coders","description":"“Vibe coding” refers to AI-assisted, prompt-driven rapid development allowing non-developers to ship apps and workflows quickly. Social chatter highlights explosive app proliferation, a skill gap around prompt craft and typing accuracy, and issues around bugs, marketing, and data privacy. Several crypto-adjacent examples exist (perp signal and TA bots, on-chain NFT drops, Groma cited as a major crypto-native company), but overall crypto interest lags compared with general adoption. Community advice emphasizes learning prompts, developer fundamentals, and tooling to stay competitive.","data":[3,4,5,4,2,5,3,3,18,2,3,4,4,1,0,2,2,3,3,2,4,1,2,4,3,3,5,0,5,1,2,1,2,3,2,0,5,2,2,3,2,2,4,4,2,1,4,2,4,2,8,77,2,4,5]},{"label":"Nvidia","topics":"nvidia,jensen,nbis,gpu,gpus","description":"Social chatter centers on an accelerating GPU-driven AI boom led by Nvidia—product launches (Blackwell, Nemotron 3, NemoClaw), strategic partnerships, and investments are reinforcing Nvidia’s dominance and driving a tripling GPU market. Severe memory/HBM shortages and rising DRAM prices (projected through 2027) are creating hardware scarcity, pricing pressure, and calls to make ‘GPU debt’ tradable to avoid stranded capacity and consumer harm. Traders are debating memory shorts, semiconductor winners/losers ($NVDA, $AMD, $MU), and new infrastructure approaches (AxonDAO, sovereign AI deployments).","data":[4,1,4,0,4,1,3,9,4,7,0,3,3,5,9,4,2,5,3,3,0,4,3,13,3,12,1,1,6,4,3,4,3,8,3,10,4,3,6,11,9,2,8,8,5,0,8,4,3,0,3,1,5,2,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-114.ts b/priv/repo/major_topics_seed/data-114.ts deleted file mode 100644 index e006ddeca9..0000000000 --- a/priv/repo/major_topics_seed/data-114.ts +++ /dev/null @@ -1,287 +0,0 @@ -export const NARRATIVES = { - labels: [ - '05.03.26', - '06.03.26', - '06.03.26', - '06.03.26', - '06.03.26', - '06.03.26', - '06.03.26', - '06.03.26', - '07.03.26', - '07.03.26', - '07.03.26', - '07.03.26', - '07.03.26', - '07.03.26', - '07.03.26', - '07.03.26', - '08.03.26', - '08.03.26', - '08.03.26', - '08.03.26', - '08.03.26', - '08.03.26', - '08.03.26', - '08.03.26', - '09.03.26', - '09.03.26', - '09.03.26', - '09.03.26', - '09.03.26', - '09.03.26', - '09.03.26', - '09.03.26', - '10.03.26', - '10.03.26', - '10.03.26', - '10.03.26', - '10.03.26', - '10.03.26', - '10.03.26', - '10.03.26', - '11.03.26', - '11.03.26', - '11.03.26', - '11.03.26', - '11.03.26', - '11.03.26', - '11.03.26', - '11.03.26', - '12.03.26', - '12.03.26', - '12.03.26', - '12.03.26', - '12.03.26', - '12.03.26', - '12.03.26', - ], - datasets: [ - { - label: 'AI agents', - topics: 'ais,autonomously,autonomous,transact,artificial', - description: - 'Social posts focus on the intersection of AI agents and crypto infrastructure: AI agents are emerging as autonomous economic actors that will use on-chain and off-chain rails (Lightning, Bitcoin, stablecoins) for payments, creating a major on‑ramp and new use cases for crypto. Conversations cover agent infrastructure and standards (e.g., ERC‑8004), native token/ambassador launches, agent platforms on chains like BNB, and tooling/EDA moats. Key themes include massive productivity gains across companies, workforce disruption for new entrants, the need for verifiability/audit trails to prevent hallucinations and failures, and investment/market upside as AI adoption drives crypto demand.', - data: [ - 32, 221, 56, 42, 34, 33, 57, 28, 49, 39, 60, 33, 45, 39, 51, 37, 35, 74, 30, 38, 37, 39, 73, - 67, 50, 43, 43, 30, 41, 20, 25, 45, 28, 37, 55, 40, 45, 40, 46, 40, 35, 40, 25, 40, 27, 26, - 59, 72, 36, 43, 59, 21, 24, 42, 43, - ], - infofi: false, - }, - { - label: 'Oil price', - topics: 'wti,brent,barrel,crude,120', - description: - 'Social chatter centers on extreme oil price volatility driven by Middle East tensions and rumors of a coordinated G7 release (300–400M barrels) from strategic reserves that briefly knocked prices down $15–$17. Traders note rapid blow-off rallies above $90–$110, talk of potential triple‑digit or even $150+/barrel tops, and fast retracements; oil equities have lagged and could catch up. Market impacts cited include higher inflation, Fed policy implications, strained supply chains, and active short/long trading on platforms like Hyperliquid with large P&L swings. Advice/themes include patience, watch for SPR interventions, and the risks of trading against state-aligned price suppression.', - data: [ - 27, 9, 18, 40, 22, 50, 24, 27, 23, 23, 130, 27, 31, 24, 18, 21, 27, 42, 28, 28, 37, 50, 19, - 22, 16, 17, 24, 42, 24, 32, 22, 34, 312, 53, 24, 25, 120, 35, 13, 33, 20, 15, 43, 25, 29, - 39, 27, 36, 72, 24, 19, 19, 37, 18, 16, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '74k,71k,69k,70k,80k', - description: - 'Tweets show Bitcoin range-bound roughly between $62.8K–$72.6K with key resistance around $70K–$71.5K and upside calls to $74K–$81K. Market participants debate whether the bottom is in—some expect ETF inflows and short squeezes to push higher, while others warn profit-taking, liquidation of weak participants, and a breakdown toward $64K or retests near the $60K macro trendline. Drivers mentioned include CME/futures open, US jobs data, order-book liquidity, heavy leverage, and cycle dynamics (accumulation → manipulation → distribution).', - data: [ - 22, 11, 13, 26, 15, 47, 50, 31, 21, 26, 22, 25, 22, 13, 29, 42, 22, 5, 17, 14, 13, 59, 20, - 17, 11, 8, 27, 47, 25, 12, 12, 11, 5, 19, 17, 20, 27, 30, 44, 25, 8, 5, 45, 19, 23, 34, 19, - 19, 30, 22, 20, 16, 25, 4, 13, - ], - infofi: false, - }, - { - label: 'STRC record volume', - topics: 'mstr,strc,preferred,strive,atm', - description: - 'Conversation centers on Strategy’s perpetual preferred stock (STRC) as a capital-raising vehicle that is rapidly buying Bitcoin via ATM issuance, driving huge BTC accumulation and intense social hype. Key points: STRC offers ~11.5% yield, estimates of thousands of BTC bought (multiple snapshots: 524 BTC in a minute, 805 BTC in early trading, >3,000 BTC cumulative), and corporate buyers like MSTR, ASST (bought $50M STRC) and SATA participating. While bullish signals and analyst coverage boost MSTR/ASST sentiment, some warn STRC is risky and may have systemic amplification effects on BTC and equities.', - data: [ - 22, 6, 11, 12, 15, 26, 22, 8, 12, 14, 6, 11, 8, 11, 12, 6, 9, 5, 12, 6, 11, 10, 12, 11, 8, - 1, 14, 2, 11, 11, 10, 13, 3, 10, 19, 13, 7, 31, 10, 4, 12, 8, 16, 6, 12, 11, 4, 8, 13, 21, - 5, 19, 13, 7, 4, - ], - infofi: false, - }, - { - label: 'Bitcoin ideology', - topics: 'bitcoiners,monetary,fiat,nostr,grassroots', - description: - 'Twitter discussion centers on defending Bitcoin’s fundamentals and role as money against critics calling it worthless or arguing it will go to zero. Posts emphasize adoption, proof-of-work decentralization, and Bitcoin’s monetary properties (comparisons to gold and Swiss bank accounts), while criticizing journalists, Coinbase, and uninformed commentators. Subthreads mention Ordinals, Bitcoin treasury companies, community theatrics, and Nostr’s interplay with Bitcoin and web-native social tech.', - data: [ - 9, 11, 9, 18, 32, 12, 14, 21, 10, 16, 11, 6, 12, 8, 9, 8, 15, 18, 8, 5, 12, 10, 10, 15, 14, - 4, 9, 9, 11, 15, 12, 14, 5, 9, 11, 9, 13, 6, 7, 7, 10, 5, 3, 11, 11, 14, 8, 12, 1, 13, 11, - 12, 7, 10, 9, - ], - infofi: false, - }, - { - label: 'China', - topics: 'chinas,china,chinese,taiwan,ccp', - description: - 'Social chatter ties Chinese geopolitics (Taiwan flights pause, China–Iran ties, US strategic pressure) to macro effects (yuan volatility, oil/energy risks) and rapid tech/industrial shifts (AI, quantum, EVs, manufacturing expansion). Crypto-specific threads note Chinese traders exploring derivatives and Beijing tightening rules on crypto money-laundering and currency evasion. Overall sentiment mixes concern about authoritarian moves and economic strategy with market implications for crypto, tech, and energy sectors.', - data: [ - 3, 14, 12, 8, 10, 4, 10, 23, 10, 15, 6, 4, 9, 10, 8, 17, 14, 4, 5, 11, 8, 8, 10, 21, 7, 9, - 9, 6, 7, 14, 8, 9, 7, 15, 7, 12, 5, 15, 12, 12, 13, 11, 14, 9, 13, 11, 16, 11, 4, 8, 5, 15, - 11, 8, 9, - ], - infofi: false, - }, - { - label: "International women's day", - topics: 'womens,international,women,celebrate,shaping', - description: - 'Social posts celebrating International Women’s Day with a focus on women’s contributions in Web3 and blockchain—events, campaigns (Blockchain4Her), and industry shout-outs from exchanges (MEXC, Bitget). Messages emphasize appreciation, inclusion, and empowerment, while also noting community concerns about scammers and fake female profiles. Some posts highlight progress (eg. ~35% participation) and calls to support women builders and leaders in crypto.', - data: [ - 7, 22, 9, 7, 9, 6, 6, 52, 7, 4, 5, 12, 3, 6, 5, 3, 12, 6, 10, 6, 36, 14, 16, 31, 3, 8, 6, 3, - 6, 10, 2, 7, 5, 6, 4, 6, 3, 5, 9, 2, 3, 3, 7, 4, 6, 9, 6, 4, 6, 6, 0, 7, 9, 81, 8, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'gaming,games,steam,fortnite,cross', - description: - 'Social chatter centers on a resurgence in gaming—nostalgia for classics alongside a wave of new releases—driven by web3 integrations: Play-to-Earn mechanics, gametokens/NFTs, studio tokens (vs single-game tokens), retail payments (Flexa/Amp at GameStop), and cross-game ecosystems. Community posts highlight hackathons, partnerships, upcoming Steam launches, and rankings of blockchain-powered auto-battlers, with bullish sentiment that finance and gaming are converging while noting risks like delisting and fragmentation.', - data: [ - 5, 10, 4, 6, 8, 8, 9, 4, 10, 7, 3, 2, 5, 4, 6, 5, 8, 92, 7, 9, 9, 7, 9, 4, 10, 4, 11, 11, 8, - 4, 4, 11, 7, 9, 3, 30, 5, 9, 7, 9, 3, 3, 7, 11, 7, 6, 12, 7, 2, 7, 9, 12, 12, 2, 12, - ], - infofi: false, - }, - { - label: 'Pokemon cards', - topics: 'pokemon,packs,cards,tcg,sealed', - description: - 'Social chatter centers on a booming Pokémon TCG market — rapid price spikes, sealed-case flips, celebrity pack openings and anniversary hype. Many warn it’s a speculative bubble (sell signals, panic-sell comparisons to NFT/crypto FOMO), while others plan to buy post-crash; traders report recent big profits but caution about an imminent pullback. Community growth (Pokopia, card shows) and debate over long-term value and reprint risk drive the conversation.', - data: [ - 8, 5, 2, 5, 12, 18, 4, 31, 6, 11, 11, 4, 8, 3, 8, 12, 1, 5, 9, 20, 4, 8, 6, 7, 6, 4, 5, 9, - 12, 6, 5, 5, 10, 19, 10, 15, 8, 12, 9, 7, 5, 6, 8, 9, 12, 5, 9, 14, 6, 10, 14, 8, 5, 1, 7, - ], - infofi: false, - }, - { - label: '20 million BTC mined', - topics: 'mined,114,scarcity,20m,21m', - description: - 'Social posts mark Bitcoin reaching ~20,000,000 mined (around block ~939k, early March 2026), meaning over 95% of the 21M cap is in circulation. Community highlights that the final ~1,000,000 BTC will take ~114 years to mine due to halvings, amplifying scarcity, and notes effective circulating supply is smaller given ~4M lost, ~738k held by large holders, and ~1.5M in ETFs. Messages are celebratory/bullish on scarcity-driven demand, include mining/block confirmations and node verifications, and reference current price action (~$70.9k) and short-term price probabilities.', - data: [ - 29, 5, 5, 5, 13, 8, 3, 8, 3, 3, 13, 13, 6, 5, 9, 1, 5, 0, 1, 1, 7, 12, 5, 8, 3, 18, 4, 1, 4, - 87, 48, 5, 13, 2, 1, 4, 6, 4, 5, 0, 3, 4, 0, 5, 3, 8, 2, 4, 20, 3, 2, 1, 5, 2, 9, - ], - infofi: false, - }, - { - label: 'War in Iran', - topics: 'iranians,religious,defeated,framed,fm', - description: - 'Social conversations focus on the unfolding Iran–U.S./Israel conflict, with strong talk of regime change, diaspora celebrating leadership strikes, and warnings that the war could escalate into a multi‑decade regional or global conflict. Posters debate political instability on both sides, concerns about Congress’ role, Iranian fragmentation after leadership decapitation, and threats to nations that support the U.S./Israel, while many emphasize the conflict’s deep domestic and ideological roots.', - data: [ - 8, 7, 3, 10, 6, 4, 1, 7, 2, 8, 7, 7, 5, 6, 4, 3, 9, 8, 6, 6, 5, 7, 10, 10, 2, 4, 3, 6, 2, 3, - 1, 2, 6, 3, 10, 9, 5, 4, 9, 2, 9, 6, 3, 3, 9, 6, 6, 15, 2, 7, 2, 5, 28, 15, 8, - ], - infofi: false, - }, - { - label: 'OpenClaw', - topics: 'openclaw,claw,installing,plugin,instance', - description: - "Social posts center on OpenClaw usability: many users report setup and installation friction (deployment issues, difficulty with third‑party 'clawhub' skills) and express frustration, while others highlight quick one‑click agents and creative uses (teaching tasks, plugin integrations like Chutes/sn64). Some say they'll try alternatives (NousResearch). Discussion also touches on privacy vs convenience and mixed sentiment from annoyed to impressed.", - data: [ - 5, 16, 5, 2, 7, 4, 8, 2, 20, 7, 2, 3, 5, 6, 3, 5, 3, 3, 7, 7, 9, 3, 1, 4, 2, 4, 4, 2, 5, 7, - 5, 10, 2, 31, 8, 6, 7, 7, 7, 4, 1, 5, 4, 8, 4, 7, 9, 3, 2, 7, 15, 0, 3, 8, 9, - ], - infofi: false, - }, - { - label: 'Champions league', - topics: 'arsenal,league,champions,premier,football', - description: - 'Twitter chatter centers on Champions League nights and big domestic fixtures (Real Madrid vs Man City, Leverkusen vs Arsenal, Milan derby, Man City/Arsenal) plus surprise stories like Bodø/Glimt. Threads also cover injuries (Rodrygo out long-term), transfer/club staffing moves (Brandt leaving Dortmund, Iniesta/Morocco talks, Edu Gaspar exit), pundit/player quotes, and heavy betting/prediction activity — including crypto-linked markets and promotions (BitMart, bets, mentions of a crypto-related scam). Fans are debating outcomes, lineups, and betting odds throughout.', - data: [ - 5, 8, 7, 9, 12, 5, 5, 8, 5, 9, 2, 6, 4, 7, 5, 12, 5, 7, 6, 5, 7, 4, 3, 6, 6, 5, 2, 7, 5, 3, - 6, 3, 4, 3, 5, 11, 0, 6, 4, 10, 5, 4, 11, 3, 2, 12, 3, 8, 6, 4, 3, 3, 4, 10, 7, - ], - infofi: false, - }, - { - label: 'US jobs data', - topics: 'payrolls,unemployment,92k,revised,44', - description: - 'US nonfarm payrolls unexpectedly fell by 92,000 in February (unemployment 4.4%), with large downward revisions to prior months (cumulative ~-710k over 13 months). Private payrolls accounted for most losses; manufacturing and full-time positions showed notable declines. ADP’s positive private payroll print contrasted sharply with the BLS miss, and tech and federal job cuts were also highlighted. Markets reacted toward easier policy expectations (dollar down, rate cut odds rising) as tweets flagged recession/stagflation risks and a softer labor market.', - data: [ - 3, 1, 3, 7, 0, 3, 2, 2, 4, 3, 2, 5, 5, 18, 4, 9, 4, 1, 1, 6, 2, 7, 3, 2, 26, 7, 3, 13, 6, 5, - 4, 2, 15, 0, 8, 2, 3, 6, 6, 5, 5, 1, 4, 1, 1, 7, 3, 2, 4, 0, 24, 3, 4, 5, 4, - ], - infofi: false, - }, - { - label: 'HYPE', - topics: 'hype,hayes,arthur,august,essay', - description: - 'Twitter community is overwhelmingly bullish on $HYPE, citing accumulation, strong relative strength, and multiple breakout setups. Traders are posting buy bids (as low as $15–18), watching support reclaimed at ~$30 and resistance/targets near $38–40 (with a possible short pullback to $34–35). Discussion also covers liquidity (Hyperliquid loans, HYPE‑SOL pool), tokenomics/team selling restrictions versus OTC exits, and the idea that HYPE performs well during heightened market volatility; March monthly midpoint is described as a key “time of truth.”', - data: [ - 9, 6, 5, 4, 6, 5, 5, 3, 3, 2, 5, 2, 1, 4, 3, 3, 4, 3, 2, 3, 2, 9, 20, 1, 2, 3, 9, 10, 3, 2, - 4, 4, 3, 3, 4, 9, 6, 3, 6, 3, 6, 5, 4, 4, 8, 4, 6, 6, 7, 5, 4, 2, 3, 5, 5, - ], - infofi: false, - }, - { - label: 'Private credit issues', - topics: 'withdrawals,redemption,credit,blackrock,capped', - description: - 'Social discussion centers on a sudden liquidity crunch in private credit: major managers (BlackRock, Morgan Stanley, Cliffwater, Blackstone) have capped or limited redemptions after large withdrawal requests—e.g., Cliffwater’s $33B fund capped redemptions at ~7%, BlackRock’s $26B HPS fund limited withdrawals after ~$1.2B requested. Causes cited include opaque valuations, illiquid loan books, automated underwriting, and concentrated maturities, prompting fire sales, defaults, and systemic spillover worries likened to a “subprime” cycle. Some commentators push tokenized on‑chain investments as a redemption‑resistant alternative.', - data: [ - 4, 0, 2, 2, 5, 5, 1, 8, 2, 5, 33, 2, 5, 1, 13, 0, 4, 4, 2, 3, 4, 3, 1, 9, 3, 4, 10, 2, 6, 8, - 0, 2, 0, 1, 5, 0, 28, 1, 2, 9, 1, 4, 3, 1, 4, 3, 2, 1, 4, 4, 4, 1, 7, 4, 9, - ], - infofi: false, - }, - { - label: 'RWA', - topics: 'rwa,rwas,treasuries,22b,ondo', - description: - 'Social chatter centers on a rapid expansion of on-chain RWAs as tokenized funds, gold, equities and commodities push total market value to ~$24B and new ATHs across chains. Contributors note composition is diversifying beyond U.S. Treasuries and highlight growth on BNB and upcoming Own Network projects, with events (RWA Pad, RWA Summit) and products (Royco v2) signaling maturation. Key constraints called out are infrastructure and liquidity — underwriting, risk capital providers, composability/standards and market plumbing — while regulatory shifts and bank entry could accelerate adoption.', - data: [ - 3, 4, 2, 5, 1, 4, 1, 5, 4, 4, 5, 3, 7, 5, 10, 7, 2, 2, 4, 3, 2, 5, 2, 5, 4, 5, 2, 8, 9, 4, - 2, 7, 2, 6, 4, 2, 5, 4, 15, 2, 4, 5, 6, 3, 2, 4, 3, 5, 17, 4, 2, 3, 4, 3, 5, - ], - infofi: false, - }, - { - label: 'Strait of Hormuz closed', - topics: 'closure,traffic,ships,crossing,strait', - description: - 'Social media discussion centers on a de facto closure/disruption of the Strait of Hormuz: tanker traffic has plunged (only Iran-linked ships seen), many vessels turning transponders off, and sanctioned tankers dominating the area. Users note major near-term market impacts—spiking tanker rates, potential oil surge (calls of $150/bbl), knock-on effects for gold and U.S. Treasury markets—and debate whether the shutdown is military, sanctions-driven, or financial. Observers track ship movements (including Iran/China activity), estimate lost volumes vs. normal flows, and watch markets/Polymarket for signs traffic is returning to normal.', - data: [ - 4, 0, 0, 1, 0, 3, 2, 10, 18, 5, 9, 6, 3, 7, 4, 3, 4, 1, 7, 3, 4, 1, 4, 0, 3, 1, 8, 7, 1, 2, - 5, 5, 4, 7, 5, 0, 6, 3, 3, 5, 8, 2, 13, 4, 8, 2, 7, 6, 4, 8, 4, 5, 4, 3, 4, - ], - infofi: false, - }, - { - label: 'Vibecoding', - topics: 'vibe,vibecoding,coding,coded,coders', - description: - '“Vibe coding” refers to AI-assisted, prompt-driven rapid development allowing non-developers to ship apps and workflows quickly. Social chatter highlights explosive app proliferation, a skill gap around prompt craft and typing accuracy, and issues around bugs, marketing, and data privacy. Several crypto-adjacent examples exist (perp signal and TA bots, on-chain NFT drops, Groma cited as a major crypto-native company), but overall crypto interest lags compared with general adoption. Community advice emphasizes learning prompts, developer fundamentals, and tooling to stay competitive.', - data: [ - 3, 4, 5, 4, 2, 5, 3, 3, 18, 2, 3, 4, 4, 1, 0, 2, 2, 3, 3, 2, 4, 1, 2, 4, 3, 3, 5, 0, 5, 1, - 2, 1, 2, 3, 2, 0, 5, 2, 2, 3, 2, 2, 4, 4, 2, 1, 4, 2, 4, 2, 8, 77, 2, 4, 5, - ], - infofi: false, - }, - { - label: 'Nvidia', - topics: 'nvidia,jensen,nbis,gpu,gpus', - description: - 'Social chatter centers on an accelerating GPU-driven AI boom led by Nvidia—product launches (Blackwell, Nemotron 3, NemoClaw), strategic partnerships, and investments are reinforcing Nvidia’s dominance and driving a tripling GPU market. Severe memory/HBM shortages and rising DRAM prices (projected through 2027) are creating hardware scarcity, pricing pressure, and calls to make ‘GPU debt’ tradable to avoid stranded capacity and consumer harm. Traders are debating memory shorts, semiconductor winners/losers ($NVDA, $AMD, $MU), and new infrastructure approaches (AxonDAO, sovereign AI deployments).', - data: [ - 4, 1, 4, 0, 4, 1, 3, 9, 4, 7, 0, 3, 3, 5, 9, 4, 2, 5, 3, 3, 0, 4, 3, 13, 3, 12, 1, 1, 6, 4, - 3, 4, 3, 8, 3, 10, 4, 3, 6, 11, 9, 2, 8, 8, 5, 0, 8, 4, 3, 0, 3, 1, 5, 2, 0, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-115.json b/priv/repo/major_topics_seed/data-115.json deleted file mode 100644 index 8a9783a14a..0000000000 --- a/priv/repo/major_topics_seed/data-115.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["12.03.26","13.03.26","13.03.26","13.03.26","13.03.26","13.03.26","13.03.26","13.03.26","14.03.26","14.03.26","14.03.26","14.03.26","14.03.26","14.03.26","14.03.26","14.03.26","15.03.26","15.03.26","15.03.26","15.03.26","15.03.26","15.03.26","15.03.26","15.03.26","16.03.26","16.03.26","16.03.26","16.03.26","16.03.26","16.03.26","16.03.26","16.03.26","17.03.26","17.03.26","17.03.26","17.03.26","17.03.26","17.03.26","17.03.26","17.03.26","18.03.26","18.03.26","18.03.26","18.03.26","18.03.26","18.03.26","18.03.26","18.03.26","19.03.26","19.03.26","19.03.26","19.03.26","19.03.26","19.03.26","19.03.26"],"datasets":[{"label":"Oil price","topics":"brent,wti,barrel,crude,uso","description":"Brent crude has surged above $100–$110 after strikes on Middle East energy infrastructure and disruptions around the Strait of Hormuz, driving sharp volatility. Market focus is on the Brent vs WTI spread, oil futures and perpetuals (including large weekend volume on crypto venues like Hyperliquid), and claims of WTI price distortion. Analysts note knock-on effects for equities, Fed policy, and outsized windfalls for U.S. oil companies if prices persist.","data":[9,5,13,22,17,17,12,18,18,12,80,11,22,21,12,17,10,20,10,13,13,40,11,12,13,13,9,23,11,30,15,21,10,173,10,12,57,15,21,18,15,14,32,9,26,24,17,17,24,17,14,13,18,20,11]},{"label":"AI impact on jobs","topics":"replace,jobs,ais,collar,centers","description":"Social discussion centers on AI’s accelerating disruption of white‑collar work: high‑income roles are highly exposed, AI agents are automating coordination (even hiring humans), and productivity gains often translate into more tasks rather than less work. Participants warn of a major AI breakthrough by 2026 and stress the need to become “AI‑fluent” or be replaced. Conversations also highlight a shift from models to infrastructure (semantic layers), debate centralized vs. decentralized/permissionless AI, and note investor interest and research gains improving model performance.","data":[9,36,11,20,26,11,12,11,16,26,13,18,17,16,34,11,10,14,24,17,4,14,12,30,26,16,13,9,11,13,5,7,10,11,23,7,16,6,15,13,19,14,7,11,9,13,21,22,12,7,16,9,8,18,10]},{"label":"Modern dating","topics":"dating,women,woman,men,girl","description":"A combative stream of hot takes about dating, marriage and gender roles—praising traditional “wife material,” disparaging older women, promoting younger partners, and endorsing controlling attitudes and sexual double standards. Includes sapiosexual bragging, provocative social tests to partners, trans-athlete criticism, and casual sexism, but also brief crypto-related notes praising women in web3 as brave survivors in a male-dominated industry.","data":[9,10,9,16,14,11,4,10,4,4,4,18,9,6,11,5,12,8,34,9,8,9,19,6,10,12,10,9,21,44,7,10,6,7,5,6,8,8,5,7,3,5,5,11,11,12,10,11,4,14,4,11,17,80,5]},{"label":"Bitcoin ideology","topics":"spam,bitcoiners,ponzi,jack,satoshi","description":"Twitter discussions center on defending Bitcoin as sound money, urging adoption to preserve purchasing power and buy scarce, counterparty‑free assets. Debates focus on Bitcoin governance (criticism of Core, BIP‑110, node operator priorities), on‑chain data/spam risks, and the need for useful Bitcoin protocols and Layer‑2s. Strong maximalist sentiment rejects distracting crypto/altcoin narratives and emphasizes community building, preparedness, and real-world adoption to reduce poverty and strengthen sovereign money.","data":[10,12,8,18,8,26,12,18,5,10,16,8,10,8,12,10,18,11,6,4,9,8,13,11,15,6,10,4,17,10,18,8,10,10,14,14,14,9,10,15,14,9,9,11,7,14,16,18,5,12,17,7,10,11,6]},{"label":"Nvidia","topics":"huang,jensen,gtc,nvidia,nvidias","description":"Tweets focus on NVIDIA’s accelerating AI-led growth: CEO Jensen Huang’s $1T revenue-by-2027 claim, new Vera Rubin/Feynman/Alchemi chip platforms, and partnerships highlight product-led demand. Market debate over valuation (P/B vs forward P/E) and rapidly rising GPU rental prices amid capacity sellouts. Export-control compliance and China sales risk are discussed alongside competitors (Groq, custom hyperscaler chips) and the idea that NVIDIA controls chip supply like OPEC. Overall sentiment: NVIDIA’s dominance is bullish for AI-related crypto tokens and firms that supply or leverage its GPUs.","data":[7,8,19,8,6,11,5,4,10,14,5,9,9,6,6,12,4,7,10,4,10,7,6,9,10,9,3,5,5,2,3,5,12,15,2,11,10,5,7,14,20,19,12,8,10,7,9,8,11,9,16,5,7,6,15]},{"label":"War in Iran","topics":"iranians,persian,regimes,ceasefire,afghanistan","description":"Social media discussion centers on a rapidly escalating Iran–US/Israel conflict: Iran is reportedly striking critical infrastructure, setting conditions for peace that include reparations and U.S. withdrawal, and claiming tactical successes. Commenters debate the feasibility of a ground invasion, compare this conflict to Iraq/Afghanistan, and highlight information asymmetries and propaganda (Rashomon effect). Economic and geopolitical consequences are emphasized — potential oil-price shocks, wider great-power implications, and risks of regional destabilization. Analysts and users reference military statements, AI-driven scenario analyses, and polarized political reactions.","data":[11,6,7,9,3,5,4,9,5,15,7,7,8,4,7,4,12,7,7,6,10,7,3,11,6,6,10,2,8,2,4,3,11,7,8,6,11,6,9,5,9,15,6,8,10,7,9,15,7,4,11,7,27,16,9]},{"label":"STRC ramping up","topics":"mstr,strc,strategys,dividend,atm","description":"Social posts focus on MicroStrategy’s perpetual preferred 'STRC' as a fast-scaling capital vehicle used to fund large Bitcoin buys. STRC reportedly pays ~11.5% annual dividends (monthly, paid in BTC) and recent sales funded major purchases (claims include $1.18B of $1.57B BTC buys, ~16,816 BTC last week, and ~267k BTC since issuance). Supporters argue STRC removes open-market BTC supply and could attract huge institutional capital, creating reflexive upside; critics and researchers warn of structural and liquidity risks as STRC trades near parity around ex-dividend dates. Debate compares STRC to UST but notes it’s backed by BTC on MicroStrategy’s balance sheet, raising questions about sustainability, dilution, and potential price-support tactics.","data":[21,5,5,4,17,21,16,4,5,6,10,4,7,2,10,6,5,2,8,7,13,10,4,8,8,2,11,4,5,6,6,11,10,3,4,4,9,20,9,9,10,5,10,7,5,15,2,7,9,6,6,10,11,2,6]},{"label":"Memecoins","topics":"memes,meme,memecoin,memecoins,giga","description":"Social channels are buzzing about a memecoin comeback: traders hunt sub-$10M market-cap “runners” with strong cult/community energy, viral memetics, and distribution power. Discussion covers new launchpads, aggregators, infrastructure to scale launches, and overlaps with GameFi/onchain activity. Contributors name specific tokens ($MOG, $DMT, $memetic, $buttcoin), predict a 2026 “memecoin summer,” and push for viral campaigns and community-driven token growth.","data":[8,8,5,5,13,6,4,5,11,10,9,2,6,3,3,3,7,7,1,6,5,3,5,2,5,6,7,7,9,83,2,5,10,3,5,6,6,5,6,5,5,2,1,3,8,6,4,5,10,9,9,5,2,3,4]},{"label":"SEC and CFTC guidance on crypto","topics":"atkins,taxonomy,securities,cftc,guidance","description":"The SEC and CFTC issued joint guidance creating a crypto asset taxonomy that classifies most tokens (including BTC, ETH, SOL, XRP, AVAX and 13 others) as digital commodities, and states mining rewards, staking, airdrops and many stablecoins are not securities. Markets and many commentators reacted bullishly, calling it major regulatory clarity, while others urge caution—the guidance is not law, insider enrichment and fraudulent schemes remain concerns, and proponents want the Clarity Act to codify the changes. The shift reduces enforcement uncertainty but raises calls for stronger securities laws and fairer market access.","data":[2,11,19,2,3,2,4,9,29,2,19,13,7,9,7,5,12,4,2,2,7,5,1,10,31,3,2,6,3,2,2,5,25,3,1,2,1,4,22,3,16,16,4,4,5,2,2,2,3,3,5,1,3,5,5]},{"label":"XRP","topics":"xrp,xrpl,ledger,160,ripple","description":"Heavy social media discussion around XRP’s market activity, adoption, and price outlook. Key points: $3–5B daily volume, reported $85B market cap, 500k+ new wallets, institutional/partnership moves (Doppler Finance + Hex Trust, SBI group adoption), and rumors about replacing SWIFT. Traders debate catalysts (CLARITY Act, U.S. market structure laws), technical targets (short-term $1.1–$2.25, analyst “Zone 1” $1.65–$1.70, long-term bullish scenarios up to $50), orderbook/liquidity dynamics, rising open interest and whale accumulation, plus event-driven hype (XRP Las Vegas). Sentiment is mixed: strong adoption narratives vs. bearish technical cautions under $1.80.","data":[3,3,11,5,15,11,6,6,8,9,6,9,3,4,8,8,13,4,3,7,0,25,3,8,9,8,12,7,7,6,6,9,4,2,7,6,5,5,8,9,2,5,4,7,6,9,5,7,3,10,1,7,4,5,5]},{"label":"HYPE","topics":"hype,hip3,programmed,epoch,lighter","description":"Social posts are focused on the $HYPE token with heavy bullish speculation and technical trading chatter—price targets cited from ~$6 up to $100, local tops around $40–$44, mentions of flipping ADA, breakouts, and activity on HyperliquidX. Tone is largely hype-driven with some contrarian takes.","data":[5,4,2,3,4,11,11,5,4,6,6,2,7,3,2,9,8,3,4,4,4,10,40,5,1,1,4,10,7,4,3,5,3,7,5,2,12,7,3,6,5,5,3,2,8,6,3,6,3,7,3,2,4,6,6]},{"label":"Pokemon cards","topics":"pokemon,pokmon,cards,vintage,psa","description":"Twitter chatter centers on Pokémon card collecting turning into a market — high-end PSA slabs, rare pulls and nostalgic finds driving big price moves. Users compare NFTs to physical cards, note private sales by wealthy buyers, accept crypto payments, and run bots to arbitrage between cheaper crypto-based card platforms and traditional marketplaces.","data":[8,2,8,2,5,3,4,21,7,5,5,6,4,6,3,6,4,3,6,5,5,5,8,3,1,3,6,6,8,2,1,5,7,7,11,18,4,14,8,3,3,6,4,8,3,2,2,6,8,6,8,4,5,5,2]},{"label":"Claude code","topics":"claude,cowork,codex,code,prompting","description":"Social chatter focuses on Anthropic’s Claude and Claude Code: users report powerful automations, scheduling, multi-model switching, workflows, sandboxing, security controls, PR analysis, and enterprise/AWS integrations — plus a quiet model/API upgrade (claude-3-opus-20240229) and UI artifact organization. Many are building Claude-powered automations and Polymarket trading bots, sharing how-tos and Zoom sessions. At the same time people report instability/overloads and warn about risky skills that expose browser tabs or dangerous commands.","data":[4,1,3,3,5,2,9,7,44,6,8,2,5,4,6,2,6,4,3,9,7,4,3,8,0,4,5,2,4,2,4,3,4,6,1,2,3,1,5,4,2,5,7,6,3,4,7,6,7,4,22,3,3,4,4]},{"label":"SOL price","topics":"sol,branding,94,solanas,92","description":"Conversation centers on Solana ($SOL) price action: SOL is trading below $100 while traders note accumulation, higher lows, and bullish technical setups (ascending triangle, cup-and-handle, SuperTrend flip). Many expect a breakout to $100–$150 if momentum holds, though some warn of heavy selling near $100 and dependence on Bitcoin strength. Parallel chatter highlights speculative Solana tokens/memes seeing explosive moves and fundraising activity, plus governance/staff changes in Solana projects affecting sentiment.","data":[5,2,7,3,8,12,9,10,5,4,10,3,3,4,2,8,0,10,4,1,4,5,3,8,2,10,4,9,5,5,4,4,3,4,3,7,12,2,7,5,3,1,8,17,6,7,3,4,5,3,6,4,4,2,3]},{"label":"Dubai safety concerns","topics":"dubai,uae,emirates,influencers,safest","description":"Social chatter centers on crypto influencers in Dubai promoting a “Dubai is safe” narrative amid reports of unrest, shortages, and media FUD. Critics accuse influencers and London-linked real estate interests of biased messaging driven by financial stakes (bagholder bias), while supporters post on-the-ground photos of stocked stores, busy streets, luxury life and praise UAE resilience and innovation. The debate mixes real estate, crypto reputational incentives, geopolitics and claims of smear campaigns.","data":[7,2,4,4,4,3,6,5,2,3,9,6,7,7,3,5,10,3,4,4,6,1,7,9,6,2,8,6,7,6,4,8,5,3,12,3,3,4,6,6,9,1,4,6,8,7,1,6,4,4,7,5,6,3,2]},{"label":"DOGE","topics":"dogecoin,doge,shib,inu,macd","description":"Social chatter is highly bullish on Dogecoin: users tout growing on‑chain activity (active addresses +176%), rising volumes (~$1.96B), and bullish technicals as DOGE tests $0.10–$0.12 resistances after bouncing a decade‑long support. Community optimism is fueled by Elon/Tesla associations, merchant acceptance (e.g., ice cream shop), and upcoming infrastructure like DogeOS and app‑layer projects that promise new utility. Traders discuss breakout targets (up to $0.151 and beyond) while some hype toward much higher price goals persists.","data":[5,3,3,3,4,3,5,7,5,6,4,7,11,8,6,6,5,6,5,10,2,6,6,4,3,2,1,3,9,4,11,5,3,1,4,3,6,10,4,4,7,1,6,2,7,2,2,3,3,5,4,2,2,6,1]},{"label":"Art","topics":"artist,artists,art,artwork,artistic","description":"Discussion argues the artist is the platform—not marketplaces—and art should be made for its own sake rather than commerce. Key themes: support for 1/1 artists and collectors motivated by art, skepticism of provenance/hype, pressure to overproduce in attention-driven spaces, a call for artist-led communities (Clubhouse vibe), creator health concerns, and the conceptual/artistic challenges posed by the NFT space.","data":[0,2,51,4,4,4,5,3,7,6,11,4,4,3,4,6,3,4,1,2,3,0,2,7,4,2,2,3,4,1,1,5,2,10,10,1,2,2,4,2,2,3,1,3,2,7,5,5,1,5,4,4,2,3,5]},{"label":"TAO","topics":"tao,265,240,fet,upwards","description":"Conversation focuses on $TAO (Bittensor) outperformance and rally—bullish technical commentary, breakout momentum, and price targets (near $310, $455, and $497). Key levels cited: support around $165–$272, resistance/flip at ~$307 and 0.702 log Fib; supply noted near $269. Traders discuss profit-taking, consolidation, smart-money positioning, staking yields (~50%+), and comparisons to other tokens ($GLXY, $AIUS).","data":[5,4,1,6,5,7,7,5,2,3,2,4,3,3,3,4,6,2,4,8,2,8,4,3,3,5,6,7,4,5,3,2,2,3,3,5,4,3,2,2,3,2,2,4,1,6,22,5,11,5,7,4,1,3,5]},{"label":"Oscars","topics":"oscars,oscar,actor,jordan,academy","description":"Social chatter around the 98th Oscars highlighted surprising results and high miss-rates for public predictions. “One Battle After Another” took Best Picture (6 wins) and Michael B. Jordan won Best Actor, while favorites like “Marty Supreme” were shut out. Conversation centered on the growing role of crypto-linked prediction markets (Polymarket) and betting—both boosting engagement and drawing criticism after an alphabetical tie-break controversy—and broader skepticism about the legitimacy and viewership impact of awards and forecasts.","data":[5,5,3,5,7,1,0,5,0,0,0,1,6,5,0,4,1,3,10,4,7,3,6,2,1,3,5,3,3,2,6,2,7,7,7,2,4,2,9,6,3,2,2,6,4,1,3,2,3,5,2,4,12,24,4]},{"label":"St Patrick's day","topics":"patricks,st,irish,saint,ireland","description":"Twitter chatter is dominated by St. Patrick’s Day greetings and community engagement posts, many from crypto accounts using the holiday to run giveaways, token tips ($DOGE, $POKEMON) and promotional calls-to-action (follow/retweet/comments). Projects also promoted DeFi incentives—e.g., Mode staking for veMODE with claims of ~87% APY in OP—alongside casual cultural posts and safety/PR messages. Overall the theme is holiday-led marketing and user engagement with some DeFi yield promotions.","data":[3,1,3,3,2,2,3,10,5,1,5,22,1,4,4,5,4,6,5,4,17,2,4,0,2,2,2,7,12,3,2,2,3,4,2,5,2,2,4,0,2,2,2,5,11,3,3,1,8,0,0,2,3,3,6]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-115.ts b/priv/repo/major_topics_seed/data-115.ts deleted file mode 100644 index 1127b84445..0000000000 --- a/priv/repo/major_topics_seed/data-115.ts +++ /dev/null @@ -1,285 +0,0 @@ -export const NARRATIVES = { - labels: [ - '12.03.26', - '13.03.26', - '13.03.26', - '13.03.26', - '13.03.26', - '13.03.26', - '13.03.26', - '13.03.26', - '14.03.26', - '14.03.26', - '14.03.26', - '14.03.26', - '14.03.26', - '14.03.26', - '14.03.26', - '14.03.26', - '15.03.26', - '15.03.26', - '15.03.26', - '15.03.26', - '15.03.26', - '15.03.26', - '15.03.26', - '15.03.26', - '16.03.26', - '16.03.26', - '16.03.26', - '16.03.26', - '16.03.26', - '16.03.26', - '16.03.26', - '16.03.26', - '17.03.26', - '17.03.26', - '17.03.26', - '17.03.26', - '17.03.26', - '17.03.26', - '17.03.26', - '17.03.26', - '18.03.26', - '18.03.26', - '18.03.26', - '18.03.26', - '18.03.26', - '18.03.26', - '18.03.26', - '18.03.26', - '19.03.26', - '19.03.26', - '19.03.26', - '19.03.26', - '19.03.26', - '19.03.26', - '19.03.26', - ], - datasets: [ - { - label: 'Oil price', - topics: 'brent,wti,barrel,crude,uso', - description: - 'Brent crude has surged above $100–$110 after strikes on Middle East energy infrastructure and disruptions around the Strait of Hormuz, driving sharp volatility. Market focus is on the Brent vs WTI spread, oil futures and perpetuals (including large weekend volume on crypto venues like Hyperliquid), and claims of WTI price distortion. Analysts note knock-on effects for equities, Fed policy, and outsized windfalls for U.S. oil companies if prices persist.', - data: [ - 9, 5, 13, 22, 17, 17, 12, 18, 18, 12, 80, 11, 22, 21, 12, 17, 10, 20, 10, 13, 13, 40, 11, - 12, 13, 13, 9, 23, 11, 30, 15, 21, 10, 173, 10, 12, 57, 15, 21, 18, 15, 14, 32, 9, 26, 24, - 17, 17, 24, 17, 14, 13, 18, 20, 11, - ], - infofi: false, - }, - { - label: 'AI impact on jobs', - topics: 'replace,jobs,ais,collar,centers', - description: - 'Social discussion centers on AI’s accelerating disruption of white‑collar work: high‑income roles are highly exposed, AI agents are automating coordination (even hiring humans), and productivity gains often translate into more tasks rather than less work. Participants warn of a major AI breakthrough by 2026 and stress the need to become “AI‑fluent” or be replaced. Conversations also highlight a shift from models to infrastructure (semantic layers), debate centralized vs. decentralized/permissionless AI, and note investor interest and research gains improving model performance.', - data: [ - 9, 36, 11, 20, 26, 11, 12, 11, 16, 26, 13, 18, 17, 16, 34, 11, 10, 14, 24, 17, 4, 14, 12, - 30, 26, 16, 13, 9, 11, 13, 5, 7, 10, 11, 23, 7, 16, 6, 15, 13, 19, 14, 7, 11, 9, 13, 21, 22, - 12, 7, 16, 9, 8, 18, 10, - ], - infofi: false, - }, - { - label: 'Modern dating', - topics: 'dating,women,woman,men,girl', - description: - 'A combative stream of hot takes about dating, marriage and gender roles—praising traditional “wife material,” disparaging older women, promoting younger partners, and endorsing controlling attitudes and sexual double standards. Includes sapiosexual bragging, provocative social tests to partners, trans-athlete criticism, and casual sexism, but also brief crypto-related notes praising women in web3 as brave survivors in a male-dominated industry.', - data: [ - 9, 10, 9, 16, 14, 11, 4, 10, 4, 4, 4, 18, 9, 6, 11, 5, 12, 8, 34, 9, 8, 9, 19, 6, 10, 12, - 10, 9, 21, 44, 7, 10, 6, 7, 5, 6, 8, 8, 5, 7, 3, 5, 5, 11, 11, 12, 10, 11, 4, 14, 4, 11, 17, - 80, 5, - ], - infofi: false, - }, - { - label: 'Bitcoin ideology', - topics: 'spam,bitcoiners,ponzi,jack,satoshi', - description: - 'Twitter discussions center on defending Bitcoin as sound money, urging adoption to preserve purchasing power and buy scarce, counterparty‑free assets. Debates focus on Bitcoin governance (criticism of Core, BIP‑110, node operator priorities), on‑chain data/spam risks, and the need for useful Bitcoin protocols and Layer‑2s. Strong maximalist sentiment rejects distracting crypto/altcoin narratives and emphasizes community building, preparedness, and real-world adoption to reduce poverty and strengthen sovereign money.', - data: [ - 10, 12, 8, 18, 8, 26, 12, 18, 5, 10, 16, 8, 10, 8, 12, 10, 18, 11, 6, 4, 9, 8, 13, 11, 15, - 6, 10, 4, 17, 10, 18, 8, 10, 10, 14, 14, 14, 9, 10, 15, 14, 9, 9, 11, 7, 14, 16, 18, 5, 12, - 17, 7, 10, 11, 6, - ], - infofi: false, - }, - { - label: 'Nvidia', - topics: 'huang,jensen,gtc,nvidia,nvidias', - description: - 'Tweets focus on NVIDIA’s accelerating AI-led growth: CEO Jensen Huang’s $1T revenue-by-2027 claim, new Vera Rubin/Feynman/Alchemi chip platforms, and partnerships highlight product-led demand. Market debate over valuation (P/B vs forward P/E) and rapidly rising GPU rental prices amid capacity sellouts. Export-control compliance and China sales risk are discussed alongside competitors (Groq, custom hyperscaler chips) and the idea that NVIDIA controls chip supply like OPEC. Overall sentiment: NVIDIA’s dominance is bullish for AI-related crypto tokens and firms that supply or leverage its GPUs.', - data: [ - 7, 8, 19, 8, 6, 11, 5, 4, 10, 14, 5, 9, 9, 6, 6, 12, 4, 7, 10, 4, 10, 7, 6, 9, 10, 9, 3, 5, - 5, 2, 3, 5, 12, 15, 2, 11, 10, 5, 7, 14, 20, 19, 12, 8, 10, 7, 9, 8, 11, 9, 16, 5, 7, 6, 15, - ], - infofi: false, - }, - { - label: 'War in Iran', - topics: 'iranians,persian,regimes,ceasefire,afghanistan', - description: - 'Social media discussion centers on a rapidly escalating Iran–US/Israel conflict: Iran is reportedly striking critical infrastructure, setting conditions for peace that include reparations and U.S. withdrawal, and claiming tactical successes. Commenters debate the feasibility of a ground invasion, compare this conflict to Iraq/Afghanistan, and highlight information asymmetries and propaganda (Rashomon effect). Economic and geopolitical consequences are emphasized — potential oil-price shocks, wider great-power implications, and risks of regional destabilization. Analysts and users reference military statements, AI-driven scenario analyses, and polarized political reactions.', - data: [ - 11, 6, 7, 9, 3, 5, 4, 9, 5, 15, 7, 7, 8, 4, 7, 4, 12, 7, 7, 6, 10, 7, 3, 11, 6, 6, 10, 2, 8, - 2, 4, 3, 11, 7, 8, 6, 11, 6, 9, 5, 9, 15, 6, 8, 10, 7, 9, 15, 7, 4, 11, 7, 27, 16, 9, - ], - infofi: false, - }, - { - label: 'STRC ramping up', - topics: 'mstr,strc,strategys,dividend,atm', - description: - "Social posts focus on MicroStrategy’s perpetual preferred 'STRC' as a fast-scaling capital vehicle used to fund large Bitcoin buys. STRC reportedly pays ~11.5% annual dividends (monthly, paid in BTC) and recent sales funded major purchases (claims include $1.18B of $1.57B BTC buys, ~16,816 BTC last week, and ~267k BTC since issuance). Supporters argue STRC removes open-market BTC supply and could attract huge institutional capital, creating reflexive upside; critics and researchers warn of structural and liquidity risks as STRC trades near parity around ex-dividend dates. Debate compares STRC to UST but notes it’s backed by BTC on MicroStrategy’s balance sheet, raising questions about sustainability, dilution, and potential price-support tactics.", - data: [ - 21, 5, 5, 4, 17, 21, 16, 4, 5, 6, 10, 4, 7, 2, 10, 6, 5, 2, 8, 7, 13, 10, 4, 8, 8, 2, 11, 4, - 5, 6, 6, 11, 10, 3, 4, 4, 9, 20, 9, 9, 10, 5, 10, 7, 5, 15, 2, 7, 9, 6, 6, 10, 11, 2, 6, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'memes,meme,memecoin,memecoins,giga', - description: - 'Social channels are buzzing about a memecoin comeback: traders hunt sub-$10M market-cap “runners” with strong cult/community energy, viral memetics, and distribution power. Discussion covers new launchpads, aggregators, infrastructure to scale launches, and overlaps with GameFi/onchain activity. Contributors name specific tokens ($MOG, $DMT, $memetic, $buttcoin), predict a 2026 “memecoin summer,” and push for viral campaigns and community-driven token growth.', - data: [ - 8, 8, 5, 5, 13, 6, 4, 5, 11, 10, 9, 2, 6, 3, 3, 3, 7, 7, 1, 6, 5, 3, 5, 2, 5, 6, 7, 7, 9, - 83, 2, 5, 10, 3, 5, 6, 6, 5, 6, 5, 5, 2, 1, 3, 8, 6, 4, 5, 10, 9, 9, 5, 2, 3, 4, - ], - infofi: false, - }, - { - label: 'SEC and CFTC guidance on crypto', - topics: 'atkins,taxonomy,securities,cftc,guidance', - description: - 'The SEC and CFTC issued joint guidance creating a crypto asset taxonomy that classifies most tokens (including BTC, ETH, SOL, XRP, AVAX and 13 others) as digital commodities, and states mining rewards, staking, airdrops and many stablecoins are not securities. Markets and many commentators reacted bullishly, calling it major regulatory clarity, while others urge caution—the guidance is not law, insider enrichment and fraudulent schemes remain concerns, and proponents want the Clarity Act to codify the changes. The shift reduces enforcement uncertainty but raises calls for stronger securities laws and fairer market access.', - data: [ - 2, 11, 19, 2, 3, 2, 4, 9, 29, 2, 19, 13, 7, 9, 7, 5, 12, 4, 2, 2, 7, 5, 1, 10, 31, 3, 2, 6, - 3, 2, 2, 5, 25, 3, 1, 2, 1, 4, 22, 3, 16, 16, 4, 4, 5, 2, 2, 2, 3, 3, 5, 1, 3, 5, 5, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'xrp,xrpl,ledger,160,ripple', - description: - 'Heavy social media discussion around XRP’s market activity, adoption, and price outlook. Key points: $3–5B daily volume, reported $85B market cap, 500k+ new wallets, institutional/partnership moves (Doppler Finance + Hex Trust, SBI group adoption), and rumors about replacing SWIFT. Traders debate catalysts (CLARITY Act, U.S. market structure laws), technical targets (short-term $1.1–$2.25, analyst “Zone 1” $1.65–$1.70, long-term bullish scenarios up to $50), orderbook/liquidity dynamics, rising open interest and whale accumulation, plus event-driven hype (XRP Las Vegas). Sentiment is mixed: strong adoption narratives vs. bearish technical cautions under $1.80.', - data: [ - 3, 3, 11, 5, 15, 11, 6, 6, 8, 9, 6, 9, 3, 4, 8, 8, 13, 4, 3, 7, 0, 25, 3, 8, 9, 8, 12, 7, 7, - 6, 6, 9, 4, 2, 7, 6, 5, 5, 8, 9, 2, 5, 4, 7, 6, 9, 5, 7, 3, 10, 1, 7, 4, 5, 5, - ], - infofi: false, - }, - { - label: 'HYPE', - topics: 'hype,hip3,programmed,epoch,lighter', - description: - 'Social posts are focused on the $HYPE token with heavy bullish speculation and technical trading chatter—price targets cited from ~$6 up to $100, local tops around $40–$44, mentions of flipping ADA, breakouts, and activity on HyperliquidX. Tone is largely hype-driven with some contrarian takes.', - data: [ - 5, 4, 2, 3, 4, 11, 11, 5, 4, 6, 6, 2, 7, 3, 2, 9, 8, 3, 4, 4, 4, 10, 40, 5, 1, 1, 4, 10, 7, - 4, 3, 5, 3, 7, 5, 2, 12, 7, 3, 6, 5, 5, 3, 2, 8, 6, 3, 6, 3, 7, 3, 2, 4, 6, 6, - ], - infofi: false, - }, - { - label: 'Pokemon cards', - topics: 'pokemon,pokmon,cards,vintage,psa', - description: - 'Twitter chatter centers on Pokémon card collecting turning into a market — high-end PSA slabs, rare pulls and nostalgic finds driving big price moves. Users compare NFTs to physical cards, note private sales by wealthy buyers, accept crypto payments, and run bots to arbitrage between cheaper crypto-based card platforms and traditional marketplaces.', - data: [ - 8, 2, 8, 2, 5, 3, 4, 21, 7, 5, 5, 6, 4, 6, 3, 6, 4, 3, 6, 5, 5, 5, 8, 3, 1, 3, 6, 6, 8, 2, - 1, 5, 7, 7, 11, 18, 4, 14, 8, 3, 3, 6, 4, 8, 3, 2, 2, 6, 8, 6, 8, 4, 5, 5, 2, - ], - infofi: false, - }, - { - label: 'Claude code', - topics: 'claude,cowork,codex,code,prompting', - description: - 'Social chatter focuses on Anthropic’s Claude and Claude Code: users report powerful automations, scheduling, multi-model switching, workflows, sandboxing, security controls, PR analysis, and enterprise/AWS integrations — plus a quiet model/API upgrade (claude-3-opus-20240229) and UI artifact organization. Many are building Claude-powered automations and Polymarket trading bots, sharing how-tos and Zoom sessions. At the same time people report instability/overloads and warn about risky skills that expose browser tabs or dangerous commands.', - data: [ - 4, 1, 3, 3, 5, 2, 9, 7, 44, 6, 8, 2, 5, 4, 6, 2, 6, 4, 3, 9, 7, 4, 3, 8, 0, 4, 5, 2, 4, 2, - 4, 3, 4, 6, 1, 2, 3, 1, 5, 4, 2, 5, 7, 6, 3, 4, 7, 6, 7, 4, 22, 3, 3, 4, 4, - ], - infofi: false, - }, - { - label: 'SOL price', - topics: 'sol,branding,94,solanas,92', - description: - 'Conversation centers on Solana ($SOL) price action: SOL is trading below $100 while traders note accumulation, higher lows, and bullish technical setups (ascending triangle, cup-and-handle, SuperTrend flip). Many expect a breakout to $100–$150 if momentum holds, though some warn of heavy selling near $100 and dependence on Bitcoin strength. Parallel chatter highlights speculative Solana tokens/memes seeing explosive moves and fundraising activity, plus governance/staff changes in Solana projects affecting sentiment.', - data: [ - 5, 2, 7, 3, 8, 12, 9, 10, 5, 4, 10, 3, 3, 4, 2, 8, 0, 10, 4, 1, 4, 5, 3, 8, 2, 10, 4, 9, 5, - 5, 4, 4, 3, 4, 3, 7, 12, 2, 7, 5, 3, 1, 8, 17, 6, 7, 3, 4, 5, 3, 6, 4, 4, 2, 3, - ], - infofi: false, - }, - { - label: 'Dubai safety concerns', - topics: 'dubai,uae,emirates,influencers,safest', - description: - 'Social chatter centers on crypto influencers in Dubai promoting a “Dubai is safe” narrative amid reports of unrest, shortages, and media FUD. Critics accuse influencers and London-linked real estate interests of biased messaging driven by financial stakes (bagholder bias), while supporters post on-the-ground photos of stocked stores, busy streets, luxury life and praise UAE resilience and innovation. The debate mixes real estate, crypto reputational incentives, geopolitics and claims of smear campaigns.', - data: [ - 7, 2, 4, 4, 4, 3, 6, 5, 2, 3, 9, 6, 7, 7, 3, 5, 10, 3, 4, 4, 6, 1, 7, 9, 6, 2, 8, 6, 7, 6, - 4, 8, 5, 3, 12, 3, 3, 4, 6, 6, 9, 1, 4, 6, 8, 7, 1, 6, 4, 4, 7, 5, 6, 3, 2, - ], - infofi: false, - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,shib,inu,macd', - description: - 'Social chatter is highly bullish on Dogecoin: users tout growing on‑chain activity (active addresses +176%), rising volumes (~$1.96B), and bullish technicals as DOGE tests $0.10–$0.12 resistances after bouncing a decade‑long support. Community optimism is fueled by Elon/Tesla associations, merchant acceptance (e.g., ice cream shop), and upcoming infrastructure like DogeOS and app‑layer projects that promise new utility. Traders discuss breakout targets (up to $0.151 and beyond) while some hype toward much higher price goals persists.', - data: [ - 5, 3, 3, 3, 4, 3, 5, 7, 5, 6, 4, 7, 11, 8, 6, 6, 5, 6, 5, 10, 2, 6, 6, 4, 3, 2, 1, 3, 9, 4, - 11, 5, 3, 1, 4, 3, 6, 10, 4, 4, 7, 1, 6, 2, 7, 2, 2, 3, 3, 5, 4, 2, 2, 6, 1, - ], - infofi: false, - }, - { - label: 'Art', - topics: 'artist,artists,art,artwork,artistic', - description: - 'Discussion argues the artist is the platform—not marketplaces—and art should be made for its own sake rather than commerce. Key themes: support for 1/1 artists and collectors motivated by art, skepticism of provenance/hype, pressure to overproduce in attention-driven spaces, a call for artist-led communities (Clubhouse vibe), creator health concerns, and the conceptual/artistic challenges posed by the NFT space.', - data: [ - 0, 2, 51, 4, 4, 4, 5, 3, 7, 6, 11, 4, 4, 3, 4, 6, 3, 4, 1, 2, 3, 0, 2, 7, 4, 2, 2, 3, 4, 1, - 1, 5, 2, 10, 10, 1, 2, 2, 4, 2, 2, 3, 1, 3, 2, 7, 5, 5, 1, 5, 4, 4, 2, 3, 5, - ], - infofi: false, - }, - { - label: 'TAO', - topics: 'tao,265,240,fet,upwards', - description: - 'Conversation focuses on $TAO (Bittensor) outperformance and rally—bullish technical commentary, breakout momentum, and price targets (near $310, $455, and $497). Key levels cited: support around $165–$272, resistance/flip at ~$307 and 0.702 log Fib; supply noted near $269. Traders discuss profit-taking, consolidation, smart-money positioning, staking yields (~50%+), and comparisons to other tokens ($GLXY, $AIUS).', - data: [ - 5, 4, 1, 6, 5, 7, 7, 5, 2, 3, 2, 4, 3, 3, 3, 4, 6, 2, 4, 8, 2, 8, 4, 3, 3, 5, 6, 7, 4, 5, 3, - 2, 2, 3, 3, 5, 4, 3, 2, 2, 3, 2, 2, 4, 1, 6, 22, 5, 11, 5, 7, 4, 1, 3, 5, - ], - infofi: false, - }, - { - label: 'Oscars', - topics: 'oscars,oscar,actor,jordan,academy', - description: - 'Social chatter around the 98th Oscars highlighted surprising results and high miss-rates for public predictions. “One Battle After Another” took Best Picture (6 wins) and Michael B. Jordan won Best Actor, while favorites like “Marty Supreme” were shut out. Conversation centered on the growing role of crypto-linked prediction markets (Polymarket) and betting—both boosting engagement and drawing criticism after an alphabetical tie-break controversy—and broader skepticism about the legitimacy and viewership impact of awards and forecasts.', - data: [ - 5, 5, 3, 5, 7, 1, 0, 5, 0, 0, 0, 1, 6, 5, 0, 4, 1, 3, 10, 4, 7, 3, 6, 2, 1, 3, 5, 3, 3, 2, - 6, 2, 7, 7, 7, 2, 4, 2, 9, 6, 3, 2, 2, 6, 4, 1, 3, 2, 3, 5, 2, 4, 12, 24, 4, - ], - infofi: false, - }, - { - label: "St Patrick's day", - topics: 'patricks,st,irish,saint,ireland', - description: - 'Twitter chatter is dominated by St. Patrick’s Day greetings and community engagement posts, many from crypto accounts using the holiday to run giveaways, token tips ($DOGE, $POKEMON) and promotional calls-to-action (follow/retweet/comments). Projects also promoted DeFi incentives—e.g., Mode staking for veMODE with claims of ~87% APY in OP—alongside casual cultural posts and safety/PR messages. Overall the theme is holiday-led marketing and user engagement with some DeFi yield promotions.', - data: [ - 3, 1, 3, 3, 2, 2, 3, 10, 5, 1, 5, 22, 1, 4, 4, 5, 4, 6, 5, 4, 17, 2, 4, 0, 2, 2, 2, 7, 12, - 3, 2, 2, 3, 4, 2, 5, 2, 2, 4, 0, 2, 2, 2, 5, 11, 3, 3, 1, 8, 0, 0, 2, 3, 3, 6, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-116.json b/priv/repo/major_topics_seed/data-116.json deleted file mode 100644 index 06f18454a3..0000000000 --- a/priv/repo/major_topics_seed/data-116.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["19.03.26","20.03.26","20.03.26","20.03.26","20.03.26","20.03.26","20.03.26","20.03.26","21.03.26","21.03.26","21.03.26","21.03.26","21.03.26","21.03.26","21.03.26","21.03.26","22.03.26","22.03.26","22.03.26","22.03.26","22.03.26","22.03.26","22.03.26","22.03.26","23.03.26","23.03.26","23.03.26","23.03.26","23.03.26","23.03.26","23.03.26","23.03.26","24.03.26","24.03.26","24.03.26","24.03.26","24.03.26","24.03.26","24.03.26","24.03.26","25.03.26","25.03.26","25.03.26","25.03.26","25.03.26","25.03.26","25.03.26","25.03.26","26.03.26","26.03.26","26.03.26","26.03.26","26.03.26","26.03.26","26.03.26"],"datasets":[{"label":"Trump's influence on markets","topics":"presidency,maga,lying,manipulating,stockmarket","description":"Social posts claim Donald Trump and associates are moving markets — including futures and crypto — through timed announcements and possible insider trading, causing pre-announcement price swings and trader panic. The conversation highlights a TRUMP memecoin decline (‑5.41% with volume down ~47%), market volatility, and political risk, blending trading analysis with accusatory political commentary.","data":[13,13,7,7,11,10,15,14,11,10,20,13,11,19,9,11,11,18,9,12,9,14,4,13,12,15,15,12,25,31,13,9,9,12,7,13,26,12,13,6,20,12,11,7,11,17,12,24,8,51,11,17,23,9,9]},{"label":"AI","topics":"replace,ais,replaced,inference,perlelabs","description":"Twitter discussion centers on AI agents reshaping work and markets: AI won’t simply \"replace\" jobs but people using AI will outcompete others, creating structural winners (favoring the already-wealthy) and gendered impacts. Participants highlight AI agents as infrastructure that can transact using crypto — a natural use case — and note technical challenges (hallucinations, unreliable detectors, messy data). Career advice emphasizes future-proofing via skills that coordinate with AI (physical presence, agent orchestration, high productivity, visibility) and warns of solo-dev and marketing traps. Threads also stress AI’s coordination/persistence advantages and projects (e.g., PerleLabs) tackling underlying data problems.","data":[4,42,11,5,12,4,6,4,4,28,12,7,6,11,16,10,5,15,13,13,12,8,9,18,22,14,9,7,18,4,10,15,10,5,20,10,18,7,13,16,6,7,5,12,7,3,11,25,5,13,16,6,5,13,7]},{"label":"NFT","topics":"helpful,animated,ahh,gif,knock","description":"A stream of short-form posts mixing crypto culture (’degen nirvana’, trading/gaming slang), an NFT acquisition on objkt.com, and links to security and AI research (Elastic’s BRUSHWORM/BRUSHLOGGER report and neural nets predicting molecular properties). Tone is informal/fragmented — sharing wins, creative projects, and industry news to a crypto-native audience.","data":[13,11,14,14,6,6,5,17,24,13,6,7,10,15,11,16,11,4,5,14,9,10,10,15,13,4,9,13,9,2,11,8,14,7,10,16,12,8,21,13,9,7,8,15,11,11,15,9,11,16,16,8,4,9,8]},{"label":"Oil price","topics":"wti,brent,crude,barrel,oman","description":"Social chatter centers on extreme crude volatility driven by Iran/Strait of Hormuz geopolitics and rapid price swings (WTI/Brent/Oman). Traders report big leveraged moves, futures shorting, and manipulation concerns; some are shifting to on‑chain oil trading when CME is dark. Analysts flag macro spillovers (equities, yields, Japan carry trades) and scenarios like Fitch’s $120/bbl if Hormuz closed for six months. Overall tone: high risk, low investor appetite, and recommendation to avoid or be cautious with oil exposure and oil ETFs/futures.","data":[8,4,4,7,8,12,7,11,8,7,35,6,3,4,9,5,8,7,6,12,3,9,5,8,3,9,3,9,6,14,5,10,10,75,5,10,36,6,5,6,12,7,12,4,7,10,2,4,7,10,2,5,9,3,5]},{"label":"Memecoins","topics":"memecoins,memecoin,pepe,meme,memes","description":"Conversation revolves around memecoin hype — users asking which to buy, worried about rugs, and celebrating potential next PEPE. Participants note easy token creation via AI/launchpads (eg. Bullshot) flooding the market and diluting attention, while communities lean into fun, viral marketing and NFT/meme culture. Some voices call for quality standards (favoring PoW coins) and industry coordination to reduce scams; others point to Binance’s role in past meme cycles.","data":[9,4,3,3,21,4,14,7,10,6,8,5,8,4,5,13,3,5,7,9,14,4,7,3,7,6,6,9,5,75,54,6,10,5,6,5,5,3,4,7,7,7,8,7,7,5,1,12,9,8,4,6,3,9,6]},{"label":"BTC price","topics":"4h,ltf,wedge,69k,70k","description":"Twitter discussion centers on Bitcoin stuck in a range around $68K–$74K, with $70K–$72K acting as immediate resistance. Traders note bulls defending range highs, de-risking by some, and options activity (call spreads) used to play upside while limiting drawdown. Technical setups (inverse H&S, liquidity imbalances) point to either a flip above $74K to resume bullish structure or a rejection that could cascade down toward $66K, low $60Ks or even $50Ks; macro factors (USD, energy) and ETF/liquidity clusters are cited as key market drivers.","data":[8,2,13,7,4,25,14,12,9,22,7,6,6,15,8,8,4,6,0,6,5,10,18,3,3,3,15,13,18,4,3,8,7,1,3,9,15,10,10,17,3,4,11,4,2,13,14,3,5,8,14,3,10,0,5]},{"label":"Gaming","topics":"gaming,games,desert,gameplay,liu","description":"Debate around the revival and trajectory of blockchain gaming: enthusiasts highlight cross‑platform launches (Smashline, OthersideMeta, Solana handheld), play‑to‑earn success stories (Parallel, PRIME), and capacity improvements (FluxRPC). Critics note early low‑effort/ scam projects and argue blockchains are better suited to finance, but many agree product‑market fit likely lies in on‑chain economies for MMOs/metaverses. A major emerging theme is agentic AI—autonomous agents that can play, earn, and manage onchain systems—potentially replacing manual Axie‑style farms and enabling a more scalable P2E model. Regional demand (Southeast Asia), technical feasibility, and game complexity remain key challenges for broader adoption.","data":[6,6,8,3,5,10,9,3,2,7,7,7,6,11,15,8,3,68,3,3,11,1,7,6,9,7,11,8,8,6,4,6,11,7,4,27,7,5,5,6,8,3,3,10,7,4,11,8,4,5,11,10,7,0,8]},{"label":"Tradfi adoption of crypto","topics":"fannie,mae,legislation,aims,maintains","description":"Social chatter centers on accelerating institutional and mainstream adoption of crypto: Fannie Mae moving to accept crypto-backed mortgages, FalconX exploring an IPO, JPMorgan funding a bitcoin-mining firm pivot to data centers, and euro-backed stablecoins capturing much of the non‑USD on‑chain market. Markets show growing institutional activity and tooling (TCA, AI trading agents), increased liquidity flows and large short liquidations, and shifting on‑chain infrastructure trends (Solana DePIN and AI agents). These developments signal deeper integration of digital assets into traditional finance and investor infrastructure.","data":[6,15,24,9,8,3,4,11,5,9,7,1,7,6,6,7,4,4,3,1,1,7,5,14,4,14,4,11,2,0,9,8,5,4,2,6,12,12,6,15,15,24,10,6,2,7,5,1,8,9,11,2,5,2,3]},{"label":"DeFi","topics":"defi,tradfi,uniswap,lending,protocols","description":"Social conversation centers on the institutionalization and scaling of DeFi: institutional capital entering DeFi is driving demands for robust infrastructure, better risk measurement (liquidations, data, supervision), and capital-allocation tools. Participants highlight supervised loans, fixed-rate lending, discovery layers (e.g., Superlend, RedStone), market-maker competition, and protocols building enterprise-grade infra (Anchorage, Injective, Aave, Chainlink). Overall theme: DeFi is evolving from retail/degen use toward capital-efficient, risk-aware institutional products and education/events supporting that shift.","data":[9,7,6,4,16,3,8,5,6,9,14,16,12,9,6,6,6,7,5,5,9,3,5,15,10,6,2,6,8,3,5,4,4,6,12,5,5,11,3,3,6,1,10,5,6,8,6,5,8,12,8,2,3,3,14]},{"label":"Pokemon cards","topics":"pokemon,pokmon,tcg,packs,cards","description":"Social chatter centers on a renewed surge in interest for Pokémon and other TCGs (One Piece, Yu-Gi-Oh), driven by nostalgia, rare promo/variant cards (KFC Charizard, anniversary prints), grading/slabs, and collector culture (binders, displays, giveaways). Crypto/web3 crossover is prominent — mentions of Solana shops, phygitals, Packly, Vaulted, and suggestions that physical TCG items could replace or mirror NFT infrastructure, plus a request for Pokémon perpetuals on Hyperliquid. Community discussion also highlights card art quality, market demand for vintage pieces, and emerging marketplaces/tools tailored to collectors.","data":[7,4,8,4,5,8,5,22,11,2,1,3,4,1,5,13,5,8,5,16,6,6,7,1,5,3,12,4,10,7,2,6,13,10,20,21,4,14,5,6,8,3,9,6,6,7,1,4,6,3,4,4,4,5,7]},{"label":"Gold price","topics":"4500,ounce,platinum,gld,topped","description":"Social channels are focused on a sharp gold sell-off — prices plunged double digits intraday and saw the biggest weekly drop since 1983 (ranges cited: ~17–27% from recent highs; daily moves ~5–10%). Commentary attributes the move to higher-for-longer Fed rate expectations, portfolio rebalancing, rising oil and geopolitical headlines weakening safe-haven demand, plus technical breakdowns (breach of uptrend and the 200‑DMA). Traders are debating buy‑the‑dip opportunities, while promotional spot‑trading/giveaway activity and comparisons to historical volatility (Weimar era) amplify the discussion.","data":[3,3,2,1,10,6,8,4,6,5,7,1,5,12,4,14,13,5,4,40,3,6,1,4,4,3,1,3,10,4,1,4,1,6,2,9,17,3,10,5,5,4,5,9,1,9,2,3,13,5,1,2,5,4,8]},{"label":"Bitcoin governance","topics":"bitcoiners,spam,fiat,bitcoiner,bip110","description":"Twitter crypto discussions center on ideological splits over Bitcoin’s purpose and governance: debates over holding versus transacting, self-custody/non‑KYC freedom, and Bitcoin as an exit from fiat. Critics warn about informal centralization around Bitcoin Core and push for client diversity (new conservative client funding). Community tensions include on‑chain data spam and immutability concerns, and backlash against tokenization efforts (Runes/Ordinals/BRC20) and ETFs as value-extracting parasites. Practical themes: accumulate and self‑custody BTC, focus on purchasing power over fiat price, and documenting power dynamics in the ecosystem.","data":[4,3,4,10,5,15,6,6,6,8,5,7,6,5,4,2,12,7,5,2,5,3,4,11,11,2,6,2,6,7,11,7,7,2,11,5,2,5,5,5,4,12,2,3,4,5,5,9,2,5,12,6,5,5,3]},{"label":"Crypto twitter is dead","topics":"ct,tourists,dead,infofi,echo","description":"Debate over whether Crypto Twitter (CT) is “dead” or merely transformed. Many users mourn a shift from technical, product-focused discourse to a cycle of airdrop farming, memecoin gambling, referral-driven content, and KOL/creator incentives, amplified by the bear market. Others argue CT persists in a different form—fewer casual casino players, more true believers—and that activity cycles will return with the next market phase. Calls to rebuild quality discussion, focus on real deliverables, and resist vanity metrics appear alongside nostalgia and frustration.","data":[2,4,0,6,5,4,3,4,3,4,27,36,4,1,5,6,4,6,7,2,8,1,4,1,9,4,5,4,12,4,7,1,8,3,6,1,5,6,5,2,5,3,1,0,4,4,1,11,11,5,2,3,1,3,9]},{"label":"ETH price","topics":"2100,1800,aero,eth,reclaim","description":"Ethereum is rangebound and trading around the $2,100–$2,300 area with the $2,150 level acting as a critical short-term support. Bulls need a clean breakout above ~$2,270–$2,300 (and ultimately above 200 EMA near $2,774) to regain momentum; failure to hold $2,100 could expose ETH to $1,900–$1,800 or lower. Traders debate whether recent moves are a low-key breakout or a fakeout, while geopolitical headlines (US‑Iran) and low institutional demand amplify volatility; some are also scouting deeply discounted Layer‑2 tokens for rebounds.","data":[5,2,5,2,1,15,4,4,6,5,7,4,3,3,10,11,7,7,3,4,2,8,20,1,1,1,4,4,13,2,1,4,6,2,2,2,10,10,10,8,3,2,14,3,2,8,6,4,5,9,9,2,3,2,1]},{"label":"CLARITY act","topics":"compromise,clarity,senators,principle,agreement","description":"Lawmakers reportedly reached a bipartisan “agreement in principle” on the CLARITY Act that would restrict yields on idle stablecoin balances while permitting limited, disclosed rewards tied to active user behavior. The draft is seen as a compromise favoring banks’ interests, prompting backlash from crypto advocates who warn it undermines stablecoins’ key utility and could spur deposit flight. Key players (Senate negotiators, White House, banks, major exchanges) are aligned in principle, but implementation details and final passage remain unsettled.","data":[6,5,5,11,4,2,2,0,15,9,11,4,2,4,3,4,5,1,8,4,5,3,4,6,5,12,3,3,2,4,4,5,4,4,6,1,2,9,16,18,2,6,3,7,4,6,2,2,1,7,1,3,2,5,7]},{"label":"TAO","topics":"tao,104,350,jason,300","description":"Social chatter centers on $TAO’s rapid price rally and growing hype: Google Trends are up, influencers reposting bullish takes, and trading bots flagging setups. Community highlights include strong month gains (~+95%), recent halving and a network upgrade (MEV questions), breakout narratives with targets ($455, $1000/10x scenarios) and short-squeeze warnings. Conversations mix high conviction buy calls, technical breakout confirmations, risk-management notes, and advice to wait for confirmation before shorting.","data":[10,2,3,1,2,6,14,6,7,6,1,2,4,3,3,5,10,2,9,12,4,5,3,0,3,1,6,3,9,3,5,3,3,7,4,6,4,5,8,3,8,1,2,5,9,6,14,7,4,2,6,7,4,4,3]},{"label":"Wallets","topics":"cache,blockchains,exodus,wallets,transfers","description":"Conversations center on on-chain privacy risks and remedies—debates over transaction attribution (Axiom), privacy-preserving tools (AnomaPay, Ocash), and user expectations about anonymity. Linked themes include wallet fragmentation and UX improvements—multi-wallet dashboards, unified profiles, and account abstraction (Citrea) to simplify multi-chain asset management. Participants also discuss infrastructure and security (node operators, Myria, Polymesh, post-quantum crypto) and market-level risks like block proposers extracting value.","data":[3,1,5,4,10,15,1,6,3,8,13,0,6,3,7,3,7,3,3,3,1,4,2,5,3,2,3,2,3,5,3,3,12,3,7,4,6,3,3,4,4,5,5,7,2,6,5,3,5,9,8,18,3,3,3]},{"label":"SOL","topics":"solanas,bulk,solana,perps,fogo","description":"Broad bullish momentum around Solana: heavy developer activity, events and bootcamps, growing NFT and onchain utility (Sol domains, core NFTs), and increasing stablecoin liquidity. Key themes: low fees and high throughput positioning Solana for derivatives (perps, ZK-powered perps, $zBTC) with top trading teams building there, plus distribution and ecosystem tooling. Notable friction: criticism of founder/foundation culture and potential SOC‑2 work after regulatory commentary, though a recent statement suggested SOL is not a security. Overall sentiment is optimism about Solana’s product-market fit and near-term growth despite some community concerns.","data":[4,2,2,6,10,3,9,5,2,5,2,3,5,6,4,4,4,7,3,5,6,2,7,2,7,5,9,7,8,2,4,1,8,4,3,2,5,3,0,2,5,6,2,25,6,5,5,8,4,5,3,5,2,7,2]},{"label":"Stablecoins","topics":"stablecoins,survey,stablecoin,issuers,bearing","description":"Social discussion centers on rapid stablecoin adoption across payments, trading, treasury and payroll use cases — stablecoins now account for a dominant share of USD spot volume and are increasingly used to channel dollars and buy US Treasuries. New fintechs and Stablecoin-as-a-Service offerings are accelerating institutional onboarding, while yield products require users to deposit into platforms (staking/DeFi) raising counterparty, liquidity, peg and regulatory risks. Regional dynamics matter: local stablecoins target payments in emerging markets, global flows may impact monetary policy and EM currencies, and on-chain payroll raises privacy concerns.","data":[6,4,1,12,6,3,3,5,2,2,7,2,2,4,5,2,4,1,4,3,3,2,0,8,3,4,4,6,3,10,3,5,5,2,4,4,3,7,9,2,3,0,4,4,47,10,4,2,1,5,2,3,6,1,9]},{"label":"Whales","topics":"whale,whales,2100,137,mysterious","description":"Twitter chatter centers on heavy whale activity driving crypto price action: accumulation of BTC/ETH by some whales during dips, large withdrawals/transfers from exchanges to unknown wallets, and major sales (including a Satoshi-era sale). Conversations note wallet reorganizations, risky leveraged trades and big losses, and institutional on‑chain moves (e.g., Amundi tokenized fund). Overall, whales are reshaping liquidity and market volatility with mixed signals for traders.","data":[14,3,2,6,4,5,8,5,0,3,6,2,7,3,5,2,3,1,3,1,2,1,16,2,0,1,0,2,2,4,4,14,2,5,3,1,3,4,2,4,1,1,4,3,4,1,3,1,7,3,4,1,3,61,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-116.ts b/priv/repo/major_topics_seed/data-116.ts deleted file mode 100644 index 7a82a58431..0000000000 --- a/priv/repo/major_topics_seed/data-116.ts +++ /dev/null @@ -1,265 +0,0 @@ -export const NARRATIVES = { - labels: [ - '19.03.26', - '20.03.26', - '20.03.26', - '20.03.26', - '20.03.26', - '20.03.26', - '20.03.26', - '20.03.26', - '21.03.26', - '21.03.26', - '21.03.26', - '21.03.26', - '21.03.26', - '21.03.26', - '21.03.26', - '21.03.26', - '22.03.26', - '22.03.26', - '22.03.26', - '22.03.26', - '22.03.26', - '22.03.26', - '22.03.26', - '22.03.26', - '23.03.26', - '23.03.26', - '23.03.26', - '23.03.26', - '23.03.26', - '23.03.26', - '23.03.26', - '23.03.26', - '24.03.26', - '24.03.26', - '24.03.26', - '24.03.26', - '24.03.26', - '24.03.26', - '24.03.26', - '24.03.26', - '25.03.26', - '25.03.26', - '25.03.26', - '25.03.26', - '25.03.26', - '25.03.26', - '25.03.26', - '25.03.26', - '26.03.26', - '26.03.26', - '26.03.26', - '26.03.26', - '26.03.26', - '26.03.26', - '26.03.26', - ], - datasets: [ - { - label: "Trump's influence on markets", - topics: 'presidency,maga,lying,manipulating,stockmarket', - description: - 'Social posts claim Donald Trump and associates are moving markets — including futures and crypto — through timed announcements and possible insider trading, causing pre-announcement price swings and trader panic. The conversation highlights a TRUMP memecoin decline (‑5.41% with volume down ~47%), market volatility, and political risk, blending trading analysis with accusatory political commentary.', - data: [ - 13, 13, 7, 7, 11, 10, 15, 14, 11, 10, 20, 13, 11, 19, 9, 11, 11, 18, 9, 12, 9, 14, 4, 13, - 12, 15, 15, 12, 25, 31, 13, 9, 9, 12, 7, 13, 26, 12, 13, 6, 20, 12, 11, 7, 11, 17, 12, 24, - 8, 51, 11, 17, 23, 9, 9, - ], - }, - { - label: 'AI', - topics: 'replace,ais,replaced,inference,perlelabs', - description: - 'Twitter discussion centers on AI agents reshaping work and markets: AI won’t simply "replace" jobs but people using AI will outcompete others, creating structural winners (favoring the already-wealthy) and gendered impacts. Participants highlight AI agents as infrastructure that can transact using crypto — a natural use case — and note technical challenges (hallucinations, unreliable detectors, messy data). Career advice emphasizes future-proofing via skills that coordinate with AI (physical presence, agent orchestration, high productivity, visibility) and warns of solo-dev and marketing traps. Threads also stress AI’s coordination/persistence advantages and projects (e.g., PerleLabs) tackling underlying data problems.', - data: [ - 4, 42, 11, 5, 12, 4, 6, 4, 4, 28, 12, 7, 6, 11, 16, 10, 5, 15, 13, 13, 12, 8, 9, 18, 22, 14, - 9, 7, 18, 4, 10, 15, 10, 5, 20, 10, 18, 7, 13, 16, 6, 7, 5, 12, 7, 3, 11, 25, 5, 13, 16, 6, - 5, 13, 7, - ], - }, - { - label: 'NFT', - topics: 'helpful,animated,ahh,gif,knock', - description: - 'A stream of short-form posts mixing crypto culture (’degen nirvana’, trading/gaming slang), an NFT acquisition on objkt.com, and links to security and AI research (Elastic’s BRUSHWORM/BRUSHLOGGER report and neural nets predicting molecular properties). Tone is informal/fragmented — sharing wins, creative projects, and industry news to a crypto-native audience.', - data: [ - 13, 11, 14, 14, 6, 6, 5, 17, 24, 13, 6, 7, 10, 15, 11, 16, 11, 4, 5, 14, 9, 10, 10, 15, 13, - 4, 9, 13, 9, 2, 11, 8, 14, 7, 10, 16, 12, 8, 21, 13, 9, 7, 8, 15, 11, 11, 15, 9, 11, 16, 16, - 8, 4, 9, 8, - ], - }, - { - label: 'Oil price', - topics: 'wti,brent,crude,barrel,oman', - description: - 'Social chatter centers on extreme crude volatility driven by Iran/Strait of Hormuz geopolitics and rapid price swings (WTI/Brent/Oman). Traders report big leveraged moves, futures shorting, and manipulation concerns; some are shifting to on‑chain oil trading when CME is dark. Analysts flag macro spillovers (equities, yields, Japan carry trades) and scenarios like Fitch’s $120/bbl if Hormuz closed for six months. Overall tone: high risk, low investor appetite, and recommendation to avoid or be cautious with oil exposure and oil ETFs/futures.', - data: [ - 8, 4, 4, 7, 8, 12, 7, 11, 8, 7, 35, 6, 3, 4, 9, 5, 8, 7, 6, 12, 3, 9, 5, 8, 3, 9, 3, 9, 6, - 14, 5, 10, 10, 75, 5, 10, 36, 6, 5, 6, 12, 7, 12, 4, 7, 10, 2, 4, 7, 10, 2, 5, 9, 3, 5, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memecoin,pepe,meme,memes', - description: - 'Conversation revolves around memecoin hype — users asking which to buy, worried about rugs, and celebrating potential next PEPE. Participants note easy token creation via AI/launchpads (eg. Bullshot) flooding the market and diluting attention, while communities lean into fun, viral marketing and NFT/meme culture. Some voices call for quality standards (favoring PoW coins) and industry coordination to reduce scams; others point to Binance’s role in past meme cycles.', - data: [ - 9, 4, 3, 3, 21, 4, 14, 7, 10, 6, 8, 5, 8, 4, 5, 13, 3, 5, 7, 9, 14, 4, 7, 3, 7, 6, 6, 9, 5, - 75, 54, 6, 10, 5, 6, 5, 5, 3, 4, 7, 7, 7, 8, 7, 7, 5, 1, 12, 9, 8, 4, 6, 3, 9, 6, - ], - }, - { - label: 'BTC price', - topics: '4h,ltf,wedge,69k,70k', - description: - 'Twitter discussion centers on Bitcoin stuck in a range around $68K–$74K, with $70K–$72K acting as immediate resistance. Traders note bulls defending range highs, de-risking by some, and options activity (call spreads) used to play upside while limiting drawdown. Technical setups (inverse H&S, liquidity imbalances) point to either a flip above $74K to resume bullish structure or a rejection that could cascade down toward $66K, low $60Ks or even $50Ks; macro factors (USD, energy) and ETF/liquidity clusters are cited as key market drivers.', - data: [ - 8, 2, 13, 7, 4, 25, 14, 12, 9, 22, 7, 6, 6, 15, 8, 8, 4, 6, 0, 6, 5, 10, 18, 3, 3, 3, 15, - 13, 18, 4, 3, 8, 7, 1, 3, 9, 15, 10, 10, 17, 3, 4, 11, 4, 2, 13, 14, 3, 5, 8, 14, 3, 10, 0, - 5, - ], - }, - { - label: 'Gaming', - topics: 'gaming,games,desert,gameplay,liu', - description: - 'Debate around the revival and trajectory of blockchain gaming: enthusiasts highlight cross‑platform launches (Smashline, OthersideMeta, Solana handheld), play‑to‑earn success stories (Parallel, PRIME), and capacity improvements (FluxRPC). Critics note early low‑effort/ scam projects and argue blockchains are better suited to finance, but many agree product‑market fit likely lies in on‑chain economies for MMOs/metaverses. A major emerging theme is agentic AI—autonomous agents that can play, earn, and manage onchain systems—potentially replacing manual Axie‑style farms and enabling a more scalable P2E model. Regional demand (Southeast Asia), technical feasibility, and game complexity remain key challenges for broader adoption.', - data: [ - 6, 6, 8, 3, 5, 10, 9, 3, 2, 7, 7, 7, 6, 11, 15, 8, 3, 68, 3, 3, 11, 1, 7, 6, 9, 7, 11, 8, 8, - 6, 4, 6, 11, 7, 4, 27, 7, 5, 5, 6, 8, 3, 3, 10, 7, 4, 11, 8, 4, 5, 11, 10, 7, 0, 8, - ], - }, - { - label: 'Tradfi adoption of crypto', - topics: 'fannie,mae,legislation,aims,maintains', - description: - 'Social chatter centers on accelerating institutional and mainstream adoption of crypto: Fannie Mae moving to accept crypto-backed mortgages, FalconX exploring an IPO, JPMorgan funding a bitcoin-mining firm pivot to data centers, and euro-backed stablecoins capturing much of the non‑USD on‑chain market. Markets show growing institutional activity and tooling (TCA, AI trading agents), increased liquidity flows and large short liquidations, and shifting on‑chain infrastructure trends (Solana DePIN and AI agents). These developments signal deeper integration of digital assets into traditional finance and investor infrastructure.', - data: [ - 6, 15, 24, 9, 8, 3, 4, 11, 5, 9, 7, 1, 7, 6, 6, 7, 4, 4, 3, 1, 1, 7, 5, 14, 4, 14, 4, 11, 2, - 0, 9, 8, 5, 4, 2, 6, 12, 12, 6, 15, 15, 24, 10, 6, 2, 7, 5, 1, 8, 9, 11, 2, 5, 2, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,tradfi,uniswap,lending,protocols', - description: - 'Social conversation centers on the institutionalization and scaling of DeFi: institutional capital entering DeFi is driving demands for robust infrastructure, better risk measurement (liquidations, data, supervision), and capital-allocation tools. Participants highlight supervised loans, fixed-rate lending, discovery layers (e.g., Superlend, RedStone), market-maker competition, and protocols building enterprise-grade infra (Anchorage, Injective, Aave, Chainlink). Overall theme: DeFi is evolving from retail/degen use toward capital-efficient, risk-aware institutional products and education/events supporting that shift.', - data: [ - 9, 7, 6, 4, 16, 3, 8, 5, 6, 9, 14, 16, 12, 9, 6, 6, 6, 7, 5, 5, 9, 3, 5, 15, 10, 6, 2, 6, 8, - 3, 5, 4, 4, 6, 12, 5, 5, 11, 3, 3, 6, 1, 10, 5, 6, 8, 6, 5, 8, 12, 8, 2, 3, 3, 14, - ], - }, - { - label: 'Pokemon cards', - topics: 'pokemon,pokmon,tcg,packs,cards', - description: - 'Social chatter centers on a renewed surge in interest for Pokémon and other TCGs (One Piece, Yu-Gi-Oh), driven by nostalgia, rare promo/variant cards (KFC Charizard, anniversary prints), grading/slabs, and collector culture (binders, displays, giveaways). Crypto/web3 crossover is prominent — mentions of Solana shops, phygitals, Packly, Vaulted, and suggestions that physical TCG items could replace or mirror NFT infrastructure, plus a request for Pokémon perpetuals on Hyperliquid. Community discussion also highlights card art quality, market demand for vintage pieces, and emerging marketplaces/tools tailored to collectors.', - data: [ - 7, 4, 8, 4, 5, 8, 5, 22, 11, 2, 1, 3, 4, 1, 5, 13, 5, 8, 5, 16, 6, 6, 7, 1, 5, 3, 12, 4, 10, - 7, 2, 6, 13, 10, 20, 21, 4, 14, 5, 6, 8, 3, 9, 6, 6, 7, 1, 4, 6, 3, 4, 4, 4, 5, 7, - ], - }, - { - label: 'Gold price', - topics: '4500,ounce,platinum,gld,topped', - description: - 'Social channels are focused on a sharp gold sell-off — prices plunged double digits intraday and saw the biggest weekly drop since 1983 (ranges cited: ~17–27% from recent highs; daily moves ~5–10%). Commentary attributes the move to higher-for-longer Fed rate expectations, portfolio rebalancing, rising oil and geopolitical headlines weakening safe-haven demand, plus technical breakdowns (breach of uptrend and the 200‑DMA). Traders are debating buy‑the‑dip opportunities, while promotional spot‑trading/giveaway activity and comparisons to historical volatility (Weimar era) amplify the discussion.', - data: [ - 3, 3, 2, 1, 10, 6, 8, 4, 6, 5, 7, 1, 5, 12, 4, 14, 13, 5, 4, 40, 3, 6, 1, 4, 4, 3, 1, 3, 10, - 4, 1, 4, 1, 6, 2, 9, 17, 3, 10, 5, 5, 4, 5, 9, 1, 9, 2, 3, 13, 5, 1, 2, 5, 4, 8, - ], - }, - { - label: 'Bitcoin governance', - topics: 'bitcoiners,spam,fiat,bitcoiner,bip110', - description: - 'Twitter crypto discussions center on ideological splits over Bitcoin’s purpose and governance: debates over holding versus transacting, self-custody/non‑KYC freedom, and Bitcoin as an exit from fiat. Critics warn about informal centralization around Bitcoin Core and push for client diversity (new conservative client funding). Community tensions include on‑chain data spam and immutability concerns, and backlash against tokenization efforts (Runes/Ordinals/BRC20) and ETFs as value-extracting parasites. Practical themes: accumulate and self‑custody BTC, focus on purchasing power over fiat price, and documenting power dynamics in the ecosystem.', - data: [ - 4, 3, 4, 10, 5, 15, 6, 6, 6, 8, 5, 7, 6, 5, 4, 2, 12, 7, 5, 2, 5, 3, 4, 11, 11, 2, 6, 2, 6, - 7, 11, 7, 7, 2, 11, 5, 2, 5, 5, 5, 4, 12, 2, 3, 4, 5, 5, 9, 2, 5, 12, 6, 5, 5, 3, - ], - }, - { - label: 'Crypto twitter is dead', - topics: 'ct,tourists,dead,infofi,echo', - description: - 'Debate over whether Crypto Twitter (CT) is “dead” or merely transformed. Many users mourn a shift from technical, product-focused discourse to a cycle of airdrop farming, memecoin gambling, referral-driven content, and KOL/creator incentives, amplified by the bear market. Others argue CT persists in a different form—fewer casual casino players, more true believers—and that activity cycles will return with the next market phase. Calls to rebuild quality discussion, focus on real deliverables, and resist vanity metrics appear alongside nostalgia and frustration.', - data: [ - 2, 4, 0, 6, 5, 4, 3, 4, 3, 4, 27, 36, 4, 1, 5, 6, 4, 6, 7, 2, 8, 1, 4, 1, 9, 4, 5, 4, 12, 4, - 7, 1, 8, 3, 6, 1, 5, 6, 5, 2, 5, 3, 1, 0, 4, 4, 1, 11, 11, 5, 2, 3, 1, 3, 9, - ], - }, - { - label: 'ETH price', - topics: '2100,1800,aero,eth,reclaim', - description: - 'Ethereum is rangebound and trading around the $2,100–$2,300 area with the $2,150 level acting as a critical short-term support. Bulls need a clean breakout above ~$2,270–$2,300 (and ultimately above 200 EMA near $2,774) to regain momentum; failure to hold $2,100 could expose ETH to $1,900–$1,800 or lower. Traders debate whether recent moves are a low-key breakout or a fakeout, while geopolitical headlines (US‑Iran) and low institutional demand amplify volatility; some are also scouting deeply discounted Layer‑2 tokens for rebounds.', - data: [ - 5, 2, 5, 2, 1, 15, 4, 4, 6, 5, 7, 4, 3, 3, 10, 11, 7, 7, 3, 4, 2, 8, 20, 1, 1, 1, 4, 4, 13, - 2, 1, 4, 6, 2, 2, 2, 10, 10, 10, 8, 3, 2, 14, 3, 2, 8, 6, 4, 5, 9, 9, 2, 3, 2, 1, - ], - }, - { - label: 'CLARITY act', - topics: 'compromise,clarity,senators,principle,agreement', - description: - 'Lawmakers reportedly reached a bipartisan “agreement in principle” on the CLARITY Act that would restrict yields on idle stablecoin balances while permitting limited, disclosed rewards tied to active user behavior. The draft is seen as a compromise favoring banks’ interests, prompting backlash from crypto advocates who warn it undermines stablecoins’ key utility and could spur deposit flight. Key players (Senate negotiators, White House, banks, major exchanges) are aligned in principle, but implementation details and final passage remain unsettled.', - data: [ - 6, 5, 5, 11, 4, 2, 2, 0, 15, 9, 11, 4, 2, 4, 3, 4, 5, 1, 8, 4, 5, 3, 4, 6, 5, 12, 3, 3, 2, - 4, 4, 5, 4, 4, 6, 1, 2, 9, 16, 18, 2, 6, 3, 7, 4, 6, 2, 2, 1, 7, 1, 3, 2, 5, 7, - ], - }, - { - label: 'TAO', - topics: 'tao,104,350,jason,300', - description: - 'Social chatter centers on $TAO’s rapid price rally and growing hype: Google Trends are up, influencers reposting bullish takes, and trading bots flagging setups. Community highlights include strong month gains (~+95%), recent halving and a network upgrade (MEV questions), breakout narratives with targets ($455, $1000/10x scenarios) and short-squeeze warnings. Conversations mix high conviction buy calls, technical breakout confirmations, risk-management notes, and advice to wait for confirmation before shorting.', - data: [ - 10, 2, 3, 1, 2, 6, 14, 6, 7, 6, 1, 2, 4, 3, 3, 5, 10, 2, 9, 12, 4, 5, 3, 0, 3, 1, 6, 3, 9, - 3, 5, 3, 3, 7, 4, 6, 4, 5, 8, 3, 8, 1, 2, 5, 9, 6, 14, 7, 4, 2, 6, 7, 4, 4, 3, - ], - }, - { - label: 'Wallets', - topics: 'cache,blockchains,exodus,wallets,transfers', - description: - 'Conversations center on on-chain privacy risks and remedies—debates over transaction attribution (Axiom), privacy-preserving tools (AnomaPay, Ocash), and user expectations about anonymity. Linked themes include wallet fragmentation and UX improvements—multi-wallet dashboards, unified profiles, and account abstraction (Citrea) to simplify multi-chain asset management. Participants also discuss infrastructure and security (node operators, Myria, Polymesh, post-quantum crypto) and market-level risks like block proposers extracting value.', - data: [ - 3, 1, 5, 4, 10, 15, 1, 6, 3, 8, 13, 0, 6, 3, 7, 3, 7, 3, 3, 3, 1, 4, 2, 5, 3, 2, 3, 2, 3, 5, - 3, 3, 12, 3, 7, 4, 6, 3, 3, 4, 4, 5, 5, 7, 2, 6, 5, 3, 5, 9, 8, 18, 3, 3, 3, - ], - }, - { - label: 'SOL', - topics: 'solanas,bulk,solana,perps,fogo', - description: - 'Broad bullish momentum around Solana: heavy developer activity, events and bootcamps, growing NFT and onchain utility (Sol domains, core NFTs), and increasing stablecoin liquidity. Key themes: low fees and high throughput positioning Solana for derivatives (perps, ZK-powered perps, $zBTC) with top trading teams building there, plus distribution and ecosystem tooling. Notable friction: criticism of founder/foundation culture and potential SOC‑2 work after regulatory commentary, though a recent statement suggested SOL is not a security. Overall sentiment is optimism about Solana’s product-market fit and near-term growth despite some community concerns.', - data: [ - 4, 2, 2, 6, 10, 3, 9, 5, 2, 5, 2, 3, 5, 6, 4, 4, 4, 7, 3, 5, 6, 2, 7, 2, 7, 5, 9, 7, 8, 2, - 4, 1, 8, 4, 3, 2, 5, 3, 0, 2, 5, 6, 2, 25, 6, 5, 5, 8, 4, 5, 3, 5, 2, 7, 2, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,survey,stablecoin,issuers,bearing', - description: - 'Social discussion centers on rapid stablecoin adoption across payments, trading, treasury and payroll use cases — stablecoins now account for a dominant share of USD spot volume and are increasingly used to channel dollars and buy US Treasuries. New fintechs and Stablecoin-as-a-Service offerings are accelerating institutional onboarding, while yield products require users to deposit into platforms (staking/DeFi) raising counterparty, liquidity, peg and regulatory risks. Regional dynamics matter: local stablecoins target payments in emerging markets, global flows may impact monetary policy and EM currencies, and on-chain payroll raises privacy concerns.', - data: [ - 6, 4, 1, 12, 6, 3, 3, 5, 2, 2, 7, 2, 2, 4, 5, 2, 4, 1, 4, 3, 3, 2, 0, 8, 3, 4, 4, 6, 3, 10, - 3, 5, 5, 2, 4, 4, 3, 7, 9, 2, 3, 0, 4, 4, 47, 10, 4, 2, 1, 5, 2, 3, 6, 1, 9, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,2100,137,mysterious', - description: - 'Twitter chatter centers on heavy whale activity driving crypto price action: accumulation of BTC/ETH by some whales during dips, large withdrawals/transfers from exchanges to unknown wallets, and major sales (including a Satoshi-era sale). Conversations note wallet reorganizations, risky leveraged trades and big losses, and institutional on‑chain moves (e.g., Amundi tokenized fund). Overall, whales are reshaping liquidity and market volatility with mixed signals for traders.', - data: [ - 14, 3, 2, 6, 4, 5, 8, 5, 0, 3, 6, 2, 7, 3, 5, 2, 3, 1, 3, 1, 2, 1, 16, 2, 0, 1, 0, 2, 2, 4, - 4, 14, 2, 5, 3, 1, 3, 4, 2, 4, 1, 1, 4, 3, 4, 1, 3, 1, 7, 3, 4, 1, 3, 61, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-117.json b/priv/repo/major_topics_seed/data-117.json deleted file mode 100644 index 187a37efa5..0000000000 --- a/priv/repo/major_topics_seed/data-117.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["26.03.26","27.03.26","27.03.26","27.03.26","27.03.26","27.03.26","27.03.26","27.03.26","28.03.26","28.03.26","28.03.26","28.03.26","28.03.26","28.03.26","28.03.26","28.03.26","29.03.26","29.03.26","29.03.26","29.03.26","29.03.26","29.03.26","29.03.26","29.03.26","30.03.26","30.03.26","30.03.26","30.03.26","30.03.26","30.03.26","30.03.26","30.03.26","31.03.26","31.03.26","31.03.26","31.03.26","31.03.26","31.03.26","31.03.26","31.03.26","01.04.26","01.04.26","01.04.26","01.04.26","01.04.26","01.04.26","01.04.26","01.04.26","02.04.26","02.04.26","02.04.26","02.04.26","02.04.26","02.04.26","02.04.26"],"datasets":[{"label":"Iran war","topics":"negotiations,ceasefire,iranians,plants,kharg","description":"Social posts debate the U.S.–Iran conflict after Trump signaled a possible ceasefire but also threatened further strikes, including seizing Kharg oil hub and targeting Iran’s power infrastructure. Tweets highlight contradictions (humanitarian passage vs. U.S. blocks), accusations of regime‑change failure, casualties, videos mocking the U.S., and geopolitical winners (China, Russia). Market uncertainty and accusations of political market manipulation are noted alongside Iran’s diplomatic messaging to Americans.","data":[9,31,25,26,8,9,9,15,25,33,14,31,47,11,13,20,15,25,22,20,21,20,14,21,33,24,17,6,10,18,17,16,23,29,11,21,27,16,46,42,59,123,28,16,27,15,37,35,19,13,18,11,40,22,9]},{"label":"Quantum threat to crypto","topics":"postquantum,computing,computers,cryptography,encryption","description":"Conversation focuses on the risk future quantum computers pose to elliptic-curve cryptography (ECDSA/ECC) that secures Bitcoin and Ethereum, amplified by a Google Quantum AI paper tailoring Shor’s algorithm to 256-bit ECDLP. Views split between dismissing it as FUD and urgent warnings (claims keys could be cracked in minutes/days), prompting calls for post‑quantum wallet/signature standards, migration plans, and interim mitigations (e.g., locking dormant Satoshi addresses). Projects like Solana highlight existing quantum-resistant features, and many see post‑quantum upgrades as both a necessary defense and an opportunity for differentiation.","data":[13,12,11,13,15,25,12,8,13,34,26,15,26,5,9,17,14,16,11,13,14,7,9,22,15,16,9,14,4,7,13,15,31,20,19,11,24,132,30,36,21,33,17,14,4,12,15,32,7,8,14,13,24,18,25]},{"label":"BTC price","topics":"65k,60k,66k,trendline,70k","description":"Market chatter centers on a Bitcoin pullback below $70K driven by geopolitical risk and risk-off flows, with traders watching $65–66K as near-term support and $60K (and a worst-case $45K) as deeper targets. Technical notes: BTC is testing an 8‑year trendline, showing rejections around the $69–76K resistance band, inside-bar price action on higher timeframes, rising OI and short interest into support. Participants discuss DCA opportunities, potential large buys (e.g., Saylor), and broader volatility spillover to ETH, SOL and token airdrops—raising caution for token launches in a bearish environment.","data":[9,3,17,9,13,45,35,19,14,12,20,19,7,33,16,28,21,10,10,13,8,23,14,9,7,2,29,27,30,8,1,9,8,7,5,14,27,19,20,25,7,11,18,13,10,12,23,9,19,27,23,14,14,4,5]},{"label":"AI agents","topics":"autonomous,autonomously,creativity,loops,replace","description":"Discussion centers on the rise of autonomous AI agents and an emerging agent-to-agent economy: agents transacting, self-upgrading, and getting dedicated wallets/budgets (Coinbase embedded wallets, USDC on Base, Ampersend). Key themes include job disruption and workforce reskilling (possible blue-collar boom vs white-collar displacement), security and trust needs for on-chain skill stores (partnerships like Pieverse), rising AI misbehavior, infrastructure trends (Codex Desktop, local models reducing provider dependence), and concerns about energy use and long-term governance.","data":[7,64,18,13,12,4,22,15,13,20,16,14,15,17,21,21,9,18,17,9,13,8,11,22,29,20,12,11,16,4,17,18,12,7,16,14,14,8,14,17,11,16,10,10,17,16,26,25,12,4,18,15,10,16,19]},{"label":"SOL","topics":"solanas,katana,solana,dex,sol","description":"Social chatter is focused on Solana ($SOL) price action, on-chain volume, and trading opportunities. Users cite massive spot/DEX activity (e.g., ~$13.6B weekly DEX volume, $58M daily token volume, claims of 98% tokenized-equities flow), memecoin-driven extraction and retail losses, and comparisons to Ethereum’s earlier cycle. Opinions split between bullish adoption/yield narratives (more transactions via Jito, staking/Stable Pool buying, stablecoin looping and yield growth by 2026) and bearish concerns (downtrend from $200–$240, memecoin drain, short setups and resistance at $85–$200). Traders discuss specific setups, support targets ($76–$80 buy zone), risk management, and profit-taking strategies.","data":[21,5,7,10,15,14,19,15,7,12,15,17,11,20,8,13,11,8,5,11,6,9,16,13,8,20,13,21,10,7,12,10,4,12,10,10,15,5,4,16,8,5,17,49,11,14,9,4,16,22,11,21,5,9,5]},{"label":"Bitcoin as money","topics":"bitcoiners,monetary,physics,immutable,opt","description":"Tweets promote Bitcoin as hard money and a hedge against fiat, urging cold storage and holding unwrapped while highlighting scarcity and personal priorities. Conversations cover wrapping vs unwrapped Bitcoin, potential real-world use cases (proof/change of ownership, real estate), community culture (hardliners, maximalists vs innovation maximalists), educational content, and Bitcoin-themed merchandise.","data":[7,7,4,9,13,38,6,12,10,9,11,6,12,10,10,8,9,6,6,7,8,6,9,21,14,10,11,11,3,10,11,11,7,9,11,12,5,6,12,11,4,4,8,9,14,10,4,13,9,8,18,7,6,8,13]},{"label":"Stablecoins","topics":"polygon,stablecoins,apy,0xpolygon,stablecoin","description":"Social chatter centers on stablecoins becoming the backbone of crypto markets and enterprise finance: they now account for ~83% of USD-denominated spot volume, Polygon has massive stablecoin txn activity, and firms are building payroll, settlement, and treasury use-cases (KRW PoC, Stellar, Zebec, Kaia). Conversation highlights yield innovation (USDD recursive vaults, protocols offering APYs, lending markets like Aave/Venus), exchange incentives (USD1 rewards), and growing institutional adoption while regulatory questions and CBDC competition remain. Market dynamics are also discussed—large onchain flows, liquidity shifts, and recent stablecoin market cap contractions—framing stablecoins as a CFO and enterprise concern.","data":[6,6,9,8,13,1,11,10,6,7,6,9,6,2,12,10,6,7,4,4,9,12,3,8,9,10,9,10,9,8,9,9,9,14,13,7,7,3,12,6,3,5,5,7,48,6,4,3,7,12,16,9,3,7,17]},{"label":"Memecoins","topics":"memecoins,memecoin,memes,meme,wojak","description":"Community discussion centers on memecoin hype, heavy shilling and tactics to get early access (telegram groups, follow-to-DM, filter-based trades). Many argue the memecoin game is “solved” and the market is overheated, though a few projects (e.g., $BELLS, WOJAK, RAGE, PEPE) are singled out for scarcity or breakout potential. Debates focus on utility vs “vibes,” fragmented liquidity from many deploys, and proposals to curb multi-wallet abuse on platforms to restore fair launches. Memecoins are also viewed as marketing tools for creators (awareness campaigns, prints/merch), fueling nostalgia for a “golden age” and calls for new mechanics to restart parabolic moves.","data":[12,6,5,2,7,4,9,5,16,8,7,6,4,3,5,17,3,5,3,6,8,6,7,4,4,9,8,10,6,106,9,7,9,5,13,8,8,3,9,3,8,4,1,8,1,7,4,8,11,8,6,9,5,6,4]},{"label":"Oil price","topics":"barrel,surge,crude,cl,110","description":"Social chatter centers on a sharp rally in crude oil—WTI topping $100–108+/barrel—driven by OPEC+ cut fears, US Strategic Petroleum Reserve draws (55M+ barrels), and geopolitical risk (Strait of Hormuz, war concerns). Traders debate whether futures justify spot moves, with bullish calls ranging to $200–$500 and worries about rising transport costs, inflation, and equity market impacts. Market sentiment is mixed: some are long and expect more upside, others warn volatility and the macro downside if oil spikes further.","data":[1,2,4,6,4,6,1,11,5,7,14,6,2,0,5,5,5,2,7,8,5,9,1,7,8,2,6,11,4,9,4,5,4,82,3,4,31,7,6,5,4,3,10,3,9,6,2,4,13,6,5,2,7,2,5]},{"label":"Gaming","topics":"gaming,games,gamers,steam,game","description":"Discussion focuses on a Web3 gaming revival and GameFi activity: new launches and indie titles (TheGrottoL1, PlayZap, Color Pop Quest), token-driven rewards ($PZP, $FUN) and developer updates. Threads highlight partnerships for cross-chain and scalable deployment (PlaysOut×qubetics, N7 Alliance), debates against “ponzinomics,” and calls to prioritize core gameplay over pure play-to-earn models. Market signals (top gainers, mobile launches) and broader tech trends (AI tailwinds for gaming platforms) underline growing investor and community interest.","data":[6,3,5,4,10,4,6,6,7,2,4,2,2,4,9,8,3,14,38,7,6,4,6,4,5,1,4,5,11,5,3,2,10,5,6,24,4,9,4,1,9,4,6,5,6,2,3,12,5,6,11,12,10,3,5]},{"label":"China","topics":"chinas,china,taiwan,chinese,ccp","description":"Discussion frames China as a rising strategic rival across geopolitics, trade and technology: export controls (rare earths), trade investigations, missile deployments, cyber operations, and gold retention; meanwhile China is accelerating domestic chips, AI models (Qwen/GLM), and infrastructure innovations. Market and supply‑chain effects are highlighted (soaring rare‑earth stocks, production shifts to Vietnam, altered trade dependence), with commentators seeing Beijing poised to gain as US credibility falters.","data":[6,2,10,4,4,3,7,9,4,7,5,7,10,7,4,9,1,6,4,2,6,7,1,15,4,10,7,4,3,4,7,4,10,9,9,15,5,7,5,10,9,3,4,0,10,12,7,7,6,8,6,5,7,3,5]},{"label":"Memescope Monday","topics":"memescope,scope,monday,orangie,trenching","description":"Social chatter centers on “Memescope Monday” — a meme-token launch/marketing trend that some celebrate as hype/legendary (Elon tweet, banger starts) while many are confused and critical. Comparisons to 2020 DeFi summer, mentions of related events like “Quantum Tuesday,” and strong warnings about rug pulls, deployer advantages, and clown-fiesta behavior dominate the conversation.","data":[3,4,1,7,7,4,4,2,2,4,5,6,3,5,6,6,10,8,13,12,4,4,10,1,6,5,2,8,5,65,13,1,5,5,6,1,2,2,6,0,2,9,7,5,5,2,2,2,6,15,3,5,3,7,5]},{"label":"Japanese twitter surge","topics":"japanese,japan,tokyo,japans,culture","description":"Twitter threads show strong enthusiasm for Japanese users and culture—travel plans, community cross-pollination with American and Korean audiences, and hyperbolic “Japanmaxxing” fandom—alongside warnings that algorithm changes could fragment these connections. Technical/crypto discussion highlights Tokyo’s trading infrastructure advantage (Tokyo ~15.9ms vs Amsterdam ~221ms on Hyperliquid probes) and mentions BDACS + Ripple enabling KRW1 deployment at scale in 2026. Overall mix of social community growth and latency/infra updates relevant to traders and builders.","data":[5,6,2,4,7,7,6,3,5,9,5,4,2,6,6,6,7,12,6,7,9,5,5,2,22,5,6,3,16,1,2,10,14,7,7,7,0,2,4,3,8,3,1,3,3,4,5,10,4,8,8,7,6,2,3]},{"label":"Precious metals","topics":"silver,platinum,gold,plunges,forex","description":"Twitter chatter focuses on intense volatility in gold and silver driven by geopolitical risk, shifting rate expectations, and supply/demand notes (including preordered silver sets). Prices have seen large swings—silver off from its ATH but record quarter close, gold bouncing around $4,400–$4,700—while analysts (Goldman, UBS) issue lofty 2026 targets. Technicals are mixed (100MA/Kumo resistance, possible breakout zones), miners remain weak, and futures volume (notably on MEXC) has surged, amplifying moves.","data":[4,3,8,1,5,5,3,2,9,4,10,9,6,12,4,8,4,8,1,20,1,7,4,3,5,2,1,4,9,1,5,3,4,9,0,15,14,7,1,9,15,7,3,10,6,9,4,2,6,5,4,1,9,2,4]},{"label":"Bear market is here","topics":"bear,bears,bull,bearish,millionaires","description":"Social posts focus on navigating the crypto bear market: survival mindset, accumulation and DCA, resisting overtrading, and using the downturn to build skills, networks, and projects. Users share humor and lifestyle tradeoffs (selling assets, bodybuilding, hobbies) and warn about exploits and team exits during bear phases. Several thread posts include a personal accumulation list (XRP, LINK, QNT, HBAR) and emphasize that surviving now leads to outsized gains in the next bull market.","data":[6,1,3,6,74,1,19,2,4,5,7,4,5,3,4,4,4,2,6,8,1,2,2,5,4,6,2,3,1,30,4,3,7,4,7,4,4,1,4,5,3,2,2,1,6,11,3,2,1,4,3,1,4,1,6]},{"label":"Trump going ballistic","topics":"losers,hang,aka,loser,pedo","description":"Twitter threads strongly criticize Donald Trump’s presidency as erratic, self-serving, and deceptive. Users highlight his contradictory statements, performative rhetoric (gold comments, ‘mission from God’), claims about cognitive testing, alleged misuse of public funds for war, and strategic unpredictability (’12D chess’), expressing concern about political and national consequences.","data":[3,6,1,2,5,4,5,9,4,5,4,4,4,5,6,7,3,1,6,9,11,1,9,6,6,5,6,5,9,8,2,7,1,4,2,3,7,8,7,2,6,5,5,3,9,5,3,13,6,14,4,1,8,3,4]},{"label":"Tesla","topics":"fsd,tesla,car,cars,driving","description":"Social chatter centers on Tesla’s advancing autonomy and production innovations. Users share firsthand FSD experiences (some claiming flawless, hands-off trips) while others note safety/regulatory risks and skepticism about rapid Robotaxi deployment. Discussion highlights Tesla’s v14.3 software milestone, compute/supply bottlenecks limiting FSD rollout, Gigacasting manufacturing gains, and reactions to Model S/X end-of-production.","data":[3,5,2,5,5,3,5,12,0,2,2,6,4,14,2,5,4,9,4,5,0,1,6,3,2,3,7,4,9,2,3,3,4,10,2,3,2,5,2,6,11,9,7,6,2,7,2,2,4,4,5,4,4,2,5]},{"label":"Six red months for BTC","topics":"6th,consecutive,candles,candle,row","description":"Twitter is focused on Bitcoin’s monthly close as it approaches a potential sixth consecutive red monthly candle—only seen once before (2018). Traders and analysts are debating whether March will flip green or cement the sixth loss, citing historical post-2018 rallies, technical patterns, portfolio pain, price targets, and the risk of an unprecedented 7th red month in April. Community sentiment mixes hopium, bearish caution, live analysis, and prediction contests tied to the monthly close.","data":[6,1,2,6,2,7,2,6,33,6,0,10,3,1,13,4,4,2,1,3,4,5,3,1,1,0,0,1,2,3,23,4,3,2,1,2,9,2,22,3,2,2,2,4,2,6,1,3,10,2,1,3,1,2,2]},{"label":"Art","topics":"artists,art,artist,gallery,artwork","description":"Community art share showcasing diverse works (hand-painted, acrylics, fore-edge, sand-in-glass, AI-generated) and promoting free artist exposure. Discussion highlights a slowing digital art market even as some teams open physical gallery space, and raises the core question: what gives a digital collectible its value? Notes Ordinals’ presence in major auctions, upcoming indexing on raster_art, Candy Digital project, and references to 2021 Ethereum NFT minting and art-world value dynamics (e.g., Van Gogh).","data":[6,1,23,13,3,3,7,0,6,1,4,3,7,0,5,3,7,3,4,3,7,1,4,4,2,3,7,4,4,3,5,4,4,11,3,7,5,3,2,1,3,3,1,2,1,6,2,1,4,0,4,6,1,7,5]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-117.ts b/priv/repo/major_topics_seed/data-117.ts deleted file mode 100644 index 16244d2021..0000000000 --- a/priv/repo/major_topics_seed/data-117.ts +++ /dev/null @@ -1,257 +0,0 @@ -export const NARRATIVES = { - labels: [ - '26.03.26', - '27.03.26', - '27.03.26', - '27.03.26', - '27.03.26', - '27.03.26', - '27.03.26', - '27.03.26', - '28.03.26', - '28.03.26', - '28.03.26', - '28.03.26', - '28.03.26', - '28.03.26', - '28.03.26', - '28.03.26', - '29.03.26', - '29.03.26', - '29.03.26', - '29.03.26', - '29.03.26', - '29.03.26', - '29.03.26', - '29.03.26', - '30.03.26', - '30.03.26', - '30.03.26', - '30.03.26', - '30.03.26', - '30.03.26', - '30.03.26', - '30.03.26', - '31.03.26', - '31.03.26', - '31.03.26', - '31.03.26', - '31.03.26', - '31.03.26', - '31.03.26', - '31.03.26', - '01.04.26', - '01.04.26', - '01.04.26', - '01.04.26', - '01.04.26', - '01.04.26', - '01.04.26', - '01.04.26', - '02.04.26', - '02.04.26', - '02.04.26', - '02.04.26', - '02.04.26', - '02.04.26', - '02.04.26', - ], - datasets: [ - { - label: 'Iran war', - topics: 'negotiations,ceasefire,iranians,plants,kharg', - description: - 'Social posts debate the U.S.–Iran conflict after Trump signaled a possible ceasefire but also threatened further strikes, including seizing Kharg oil hub and targeting Iran’s power infrastructure. Tweets highlight contradictions (humanitarian passage vs. U.S. blocks), accusations of regime‑change failure, casualties, videos mocking the U.S., and geopolitical winners (China, Russia). Market uncertainty and accusations of political market manipulation are noted alongside Iran’s diplomatic messaging to Americans.', - data: [ - 9, 31, 25, 26, 8, 9, 9, 15, 25, 33, 14, 31, 47, 11, 13, 20, 15, 25, 22, 20, 21, 20, 14, 21, - 33, 24, 17, 6, 10, 18, 17, 16, 23, 29, 11, 21, 27, 16, 46, 42, 59, 123, 28, 16, 27, 15, 37, - 35, 19, 13, 18, 11, 40, 22, 9, - ], - }, - { - label: 'Quantum threat to crypto', - topics: 'postquantum,computing,computers,cryptography,encryption', - description: - 'Conversation focuses on the risk future quantum computers pose to elliptic-curve cryptography (ECDSA/ECC) that secures Bitcoin and Ethereum, amplified by a Google Quantum AI paper tailoring Shor’s algorithm to 256-bit ECDLP. Views split between dismissing it as FUD and urgent warnings (claims keys could be cracked in minutes/days), prompting calls for post‑quantum wallet/signature standards, migration plans, and interim mitigations (e.g., locking dormant Satoshi addresses). Projects like Solana highlight existing quantum-resistant features, and many see post‑quantum upgrades as both a necessary defense and an opportunity for differentiation.', - data: [ - 13, 12, 11, 13, 15, 25, 12, 8, 13, 34, 26, 15, 26, 5, 9, 17, 14, 16, 11, 13, 14, 7, 9, 22, - 15, 16, 9, 14, 4, 7, 13, 15, 31, 20, 19, 11, 24, 132, 30, 36, 21, 33, 17, 14, 4, 12, 15, 32, - 7, 8, 14, 13, 24, 18, 25, - ], - }, - { - label: 'BTC price', - topics: '65k,60k,66k,trendline,70k', - description: - 'Market chatter centers on a Bitcoin pullback below $70K driven by geopolitical risk and risk-off flows, with traders watching $65–66K as near-term support and $60K (and a worst-case $45K) as deeper targets. Technical notes: BTC is testing an 8‑year trendline, showing rejections around the $69–76K resistance band, inside-bar price action on higher timeframes, rising OI and short interest into support. Participants discuss DCA opportunities, potential large buys (e.g., Saylor), and broader volatility spillover to ETH, SOL and token airdrops—raising caution for token launches in a bearish environment.', - data: [ - 9, 3, 17, 9, 13, 45, 35, 19, 14, 12, 20, 19, 7, 33, 16, 28, 21, 10, 10, 13, 8, 23, 14, 9, 7, - 2, 29, 27, 30, 8, 1, 9, 8, 7, 5, 14, 27, 19, 20, 25, 7, 11, 18, 13, 10, 12, 23, 9, 19, 27, - 23, 14, 14, 4, 5, - ], - }, - { - label: 'AI agents', - topics: 'autonomous,autonomously,creativity,loops,replace', - description: - 'Discussion centers on the rise of autonomous AI agents and an emerging agent-to-agent economy: agents transacting, self-upgrading, and getting dedicated wallets/budgets (Coinbase embedded wallets, USDC on Base, Ampersend). Key themes include job disruption and workforce reskilling (possible blue-collar boom vs white-collar displacement), security and trust needs for on-chain skill stores (partnerships like Pieverse), rising AI misbehavior, infrastructure trends (Codex Desktop, local models reducing provider dependence), and concerns about energy use and long-term governance.', - data: [ - 7, 64, 18, 13, 12, 4, 22, 15, 13, 20, 16, 14, 15, 17, 21, 21, 9, 18, 17, 9, 13, 8, 11, 22, - 29, 20, 12, 11, 16, 4, 17, 18, 12, 7, 16, 14, 14, 8, 14, 17, 11, 16, 10, 10, 17, 16, 26, 25, - 12, 4, 18, 15, 10, 16, 19, - ], - }, - { - label: 'SOL', - topics: 'solanas,katana,solana,dex,sol', - description: - 'Social chatter is focused on Solana ($SOL) price action, on-chain volume, and trading opportunities. Users cite massive spot/DEX activity (e.g., ~$13.6B weekly DEX volume, $58M daily token volume, claims of 98% tokenized-equities flow), memecoin-driven extraction and retail losses, and comparisons to Ethereum’s earlier cycle. Opinions split between bullish adoption/yield narratives (more transactions via Jito, staking/Stable Pool buying, stablecoin looping and yield growth by 2026) and bearish concerns (downtrend from $200–$240, memecoin drain, short setups and resistance at $85–$200). Traders discuss specific setups, support targets ($76–$80 buy zone), risk management, and profit-taking strategies.', - data: [ - 21, 5, 7, 10, 15, 14, 19, 15, 7, 12, 15, 17, 11, 20, 8, 13, 11, 8, 5, 11, 6, 9, 16, 13, 8, - 20, 13, 21, 10, 7, 12, 10, 4, 12, 10, 10, 15, 5, 4, 16, 8, 5, 17, 49, 11, 14, 9, 4, 16, 22, - 11, 21, 5, 9, 5, - ], - }, - { - label: 'Bitcoin as money', - topics: 'bitcoiners,monetary,physics,immutable,opt', - description: - 'Tweets promote Bitcoin as hard money and a hedge against fiat, urging cold storage and holding unwrapped while highlighting scarcity and personal priorities. Conversations cover wrapping vs unwrapped Bitcoin, potential real-world use cases (proof/change of ownership, real estate), community culture (hardliners, maximalists vs innovation maximalists), educational content, and Bitcoin-themed merchandise.', - data: [ - 7, 7, 4, 9, 13, 38, 6, 12, 10, 9, 11, 6, 12, 10, 10, 8, 9, 6, 6, 7, 8, 6, 9, 21, 14, 10, 11, - 11, 3, 10, 11, 11, 7, 9, 11, 12, 5, 6, 12, 11, 4, 4, 8, 9, 14, 10, 4, 13, 9, 8, 18, 7, 6, 8, - 13, - ], - }, - { - label: 'Stablecoins', - topics: 'polygon,stablecoins,apy,0xpolygon,stablecoin', - description: - 'Social chatter centers on stablecoins becoming the backbone of crypto markets and enterprise finance: they now account for ~83% of USD-denominated spot volume, Polygon has massive stablecoin txn activity, and firms are building payroll, settlement, and treasury use-cases (KRW PoC, Stellar, Zebec, Kaia). Conversation highlights yield innovation (USDD recursive vaults, protocols offering APYs, lending markets like Aave/Venus), exchange incentives (USD1 rewards), and growing institutional adoption while regulatory questions and CBDC competition remain. Market dynamics are also discussed—large onchain flows, liquidity shifts, and recent stablecoin market cap contractions—framing stablecoins as a CFO and enterprise concern.', - data: [ - 6, 6, 9, 8, 13, 1, 11, 10, 6, 7, 6, 9, 6, 2, 12, 10, 6, 7, 4, 4, 9, 12, 3, 8, 9, 10, 9, 10, - 9, 8, 9, 9, 9, 14, 13, 7, 7, 3, 12, 6, 3, 5, 5, 7, 48, 6, 4, 3, 7, 12, 16, 9, 3, 7, 17, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memecoin,memes,meme,wojak', - description: - 'Community discussion centers on memecoin hype, heavy shilling and tactics to get early access (telegram groups, follow-to-DM, filter-based trades). Many argue the memecoin game is “solved” and the market is overheated, though a few projects (e.g., $BELLS, WOJAK, RAGE, PEPE) are singled out for scarcity or breakout potential. Debates focus on utility vs “vibes,” fragmented liquidity from many deploys, and proposals to curb multi-wallet abuse on platforms to restore fair launches. Memecoins are also viewed as marketing tools for creators (awareness campaigns, prints/merch), fueling nostalgia for a “golden age” and calls for new mechanics to restart parabolic moves.', - data: [ - 12, 6, 5, 2, 7, 4, 9, 5, 16, 8, 7, 6, 4, 3, 5, 17, 3, 5, 3, 6, 8, 6, 7, 4, 4, 9, 8, 10, 6, - 106, 9, 7, 9, 5, 13, 8, 8, 3, 9, 3, 8, 4, 1, 8, 1, 7, 4, 8, 11, 8, 6, 9, 5, 6, 4, - ], - }, - { - label: 'Oil price', - topics: 'barrel,surge,crude,cl,110', - description: - 'Social chatter centers on a sharp rally in crude oil—WTI topping $100–108+/barrel—driven by OPEC+ cut fears, US Strategic Petroleum Reserve draws (55M+ barrels), and geopolitical risk (Strait of Hormuz, war concerns). Traders debate whether futures justify spot moves, with bullish calls ranging to $200–$500 and worries about rising transport costs, inflation, and equity market impacts. Market sentiment is mixed: some are long and expect more upside, others warn volatility and the macro downside if oil spikes further.', - data: [ - 1, 2, 4, 6, 4, 6, 1, 11, 5, 7, 14, 6, 2, 0, 5, 5, 5, 2, 7, 8, 5, 9, 1, 7, 8, 2, 6, 11, 4, 9, - 4, 5, 4, 82, 3, 4, 31, 7, 6, 5, 4, 3, 10, 3, 9, 6, 2, 4, 13, 6, 5, 2, 7, 2, 5, - ], - }, - { - label: 'Gaming', - topics: 'gaming,games,gamers,steam,game', - description: - 'Discussion focuses on a Web3 gaming revival and GameFi activity: new launches and indie titles (TheGrottoL1, PlayZap, Color Pop Quest), token-driven rewards ($PZP, $FUN) and developer updates. Threads highlight partnerships for cross-chain and scalable deployment (PlaysOut×qubetics, N7 Alliance), debates against “ponzinomics,” and calls to prioritize core gameplay over pure play-to-earn models. Market signals (top gainers, mobile launches) and broader tech trends (AI tailwinds for gaming platforms) underline growing investor and community interest.', - data: [ - 6, 3, 5, 4, 10, 4, 6, 6, 7, 2, 4, 2, 2, 4, 9, 8, 3, 14, 38, 7, 6, 4, 6, 4, 5, 1, 4, 5, 11, - 5, 3, 2, 10, 5, 6, 24, 4, 9, 4, 1, 9, 4, 6, 5, 6, 2, 3, 12, 5, 6, 11, 12, 10, 3, 5, - ], - }, - { - label: 'China', - topics: 'chinas,china,taiwan,chinese,ccp', - description: - 'Discussion frames China as a rising strategic rival across geopolitics, trade and technology: export controls (rare earths), trade investigations, missile deployments, cyber operations, and gold retention; meanwhile China is accelerating domestic chips, AI models (Qwen/GLM), and infrastructure innovations. Market and supply‑chain effects are highlighted (soaring rare‑earth stocks, production shifts to Vietnam, altered trade dependence), with commentators seeing Beijing poised to gain as US credibility falters.', - data: [ - 6, 2, 10, 4, 4, 3, 7, 9, 4, 7, 5, 7, 10, 7, 4, 9, 1, 6, 4, 2, 6, 7, 1, 15, 4, 10, 7, 4, 3, - 4, 7, 4, 10, 9, 9, 15, 5, 7, 5, 10, 9, 3, 4, 0, 10, 12, 7, 7, 6, 8, 6, 5, 7, 3, 5, - ], - }, - { - label: 'Memescope Monday', - topics: 'memescope,scope,monday,orangie,trenching', - description: - 'Social chatter centers on “Memescope Monday” — a meme-token launch/marketing trend that some celebrate as hype/legendary (Elon tweet, banger starts) while many are confused and critical. Comparisons to 2020 DeFi summer, mentions of related events like “Quantum Tuesday,” and strong warnings about rug pulls, deployer advantages, and clown-fiesta behavior dominate the conversation.', - data: [ - 3, 4, 1, 7, 7, 4, 4, 2, 2, 4, 5, 6, 3, 5, 6, 6, 10, 8, 13, 12, 4, 4, 10, 1, 6, 5, 2, 8, 5, - 65, 13, 1, 5, 5, 6, 1, 2, 2, 6, 0, 2, 9, 7, 5, 5, 2, 2, 2, 6, 15, 3, 5, 3, 7, 5, - ], - }, - { - label: 'Japanese twitter surge', - topics: 'japanese,japan,tokyo,japans,culture', - description: - 'Twitter threads show strong enthusiasm for Japanese users and culture—travel plans, community cross-pollination with American and Korean audiences, and hyperbolic “Japanmaxxing” fandom—alongside warnings that algorithm changes could fragment these connections. Technical/crypto discussion highlights Tokyo’s trading infrastructure advantage (Tokyo ~15.9ms vs Amsterdam ~221ms on Hyperliquid probes) and mentions BDACS + Ripple enabling KRW1 deployment at scale in 2026. Overall mix of social community growth and latency/infra updates relevant to traders and builders.', - data: [ - 5, 6, 2, 4, 7, 7, 6, 3, 5, 9, 5, 4, 2, 6, 6, 6, 7, 12, 6, 7, 9, 5, 5, 2, 22, 5, 6, 3, 16, 1, - 2, 10, 14, 7, 7, 7, 0, 2, 4, 3, 8, 3, 1, 3, 3, 4, 5, 10, 4, 8, 8, 7, 6, 2, 3, - ], - }, - { - label: 'Precious metals', - topics: 'silver,platinum,gold,plunges,forex', - description: - 'Twitter chatter focuses on intense volatility in gold and silver driven by geopolitical risk, shifting rate expectations, and supply/demand notes (including preordered silver sets). Prices have seen large swings—silver off from its ATH but record quarter close, gold bouncing around $4,400–$4,700—while analysts (Goldman, UBS) issue lofty 2026 targets. Technicals are mixed (100MA/Kumo resistance, possible breakout zones), miners remain weak, and futures volume (notably on MEXC) has surged, amplifying moves.', - data: [ - 4, 3, 8, 1, 5, 5, 3, 2, 9, 4, 10, 9, 6, 12, 4, 8, 4, 8, 1, 20, 1, 7, 4, 3, 5, 2, 1, 4, 9, 1, - 5, 3, 4, 9, 0, 15, 14, 7, 1, 9, 15, 7, 3, 10, 6, 9, 4, 2, 6, 5, 4, 1, 9, 2, 4, - ], - }, - { - label: 'Bear market is here', - topics: 'bear,bears,bull,bearish,millionaires', - description: - 'Social posts focus on navigating the crypto bear market: survival mindset, accumulation and DCA, resisting overtrading, and using the downturn to build skills, networks, and projects. Users share humor and lifestyle tradeoffs (selling assets, bodybuilding, hobbies) and warn about exploits and team exits during bear phases. Several thread posts include a personal accumulation list (XRP, LINK, QNT, HBAR) and emphasize that surviving now leads to outsized gains in the next bull market.', - data: [ - 6, 1, 3, 6, 74, 1, 19, 2, 4, 5, 7, 4, 5, 3, 4, 4, 4, 2, 6, 8, 1, 2, 2, 5, 4, 6, 2, 3, 1, 30, - 4, 3, 7, 4, 7, 4, 4, 1, 4, 5, 3, 2, 2, 1, 6, 11, 3, 2, 1, 4, 3, 1, 4, 1, 6, - ], - }, - { - label: 'Trump going ballistic', - topics: 'losers,hang,aka,loser,pedo', - description: - 'Twitter threads strongly criticize Donald Trump’s presidency as erratic, self-serving, and deceptive. Users highlight his contradictory statements, performative rhetoric (gold comments, ‘mission from God’), claims about cognitive testing, alleged misuse of public funds for war, and strategic unpredictability (’12D chess’), expressing concern about political and national consequences.', - data: [ - 3, 6, 1, 2, 5, 4, 5, 9, 4, 5, 4, 4, 4, 5, 6, 7, 3, 1, 6, 9, 11, 1, 9, 6, 6, 5, 6, 5, 9, 8, - 2, 7, 1, 4, 2, 3, 7, 8, 7, 2, 6, 5, 5, 3, 9, 5, 3, 13, 6, 14, 4, 1, 8, 3, 4, - ], - }, - { - label: 'Tesla', - topics: 'fsd,tesla,car,cars,driving', - description: - 'Social chatter centers on Tesla’s advancing autonomy and production innovations. Users share firsthand FSD experiences (some claiming flawless, hands-off trips) while others note safety/regulatory risks and skepticism about rapid Robotaxi deployment. Discussion highlights Tesla’s v14.3 software milestone, compute/supply bottlenecks limiting FSD rollout, Gigacasting manufacturing gains, and reactions to Model S/X end-of-production.', - data: [ - 3, 5, 2, 5, 5, 3, 5, 12, 0, 2, 2, 6, 4, 14, 2, 5, 4, 9, 4, 5, 0, 1, 6, 3, 2, 3, 7, 4, 9, 2, - 3, 3, 4, 10, 2, 3, 2, 5, 2, 6, 11, 9, 7, 6, 2, 7, 2, 2, 4, 4, 5, 4, 4, 2, 5, - ], - }, - { - label: 'Six red months for BTC', - topics: '6th,consecutive,candles,candle,row', - description: - 'Twitter is focused on Bitcoin’s monthly close as it approaches a potential sixth consecutive red monthly candle—only seen once before (2018). Traders and analysts are debating whether March will flip green or cement the sixth loss, citing historical post-2018 rallies, technical patterns, portfolio pain, price targets, and the risk of an unprecedented 7th red month in April. Community sentiment mixes hopium, bearish caution, live analysis, and prediction contests tied to the monthly close.', - data: [ - 6, 1, 2, 6, 2, 7, 2, 6, 33, 6, 0, 10, 3, 1, 13, 4, 4, 2, 1, 3, 4, 5, 3, 1, 1, 0, 0, 1, 2, 3, - 23, 4, 3, 2, 1, 2, 9, 2, 22, 3, 2, 2, 2, 4, 2, 6, 1, 3, 10, 2, 1, 3, 1, 2, 2, - ], - }, - { - label: 'Art', - topics: 'artists,art,artist,gallery,artwork', - description: - 'Community art share showcasing diverse works (hand-painted, acrylics, fore-edge, sand-in-glass, AI-generated) and promoting free artist exposure. Discussion highlights a slowing digital art market even as some teams open physical gallery space, and raises the core question: what gives a digital collectible its value? Notes Ordinals’ presence in major auctions, upcoming indexing on raster_art, Candy Digital project, and references to 2021 Ethereum NFT minting and art-world value dynamics (e.g., Van Gogh).', - data: [ - 6, 1, 23, 13, 3, 3, 7, 0, 6, 1, 4, 3, 7, 0, 5, 3, 7, 3, 4, 3, 7, 1, 4, 4, 2, 3, 7, 4, 4, 3, - 5, 4, 4, 11, 3, 7, 5, 3, 2, 1, 3, 3, 1, 2, 1, 6, 2, 1, 4, 0, 4, 6, 1, 7, 5, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-118.json b/priv/repo/major_topics_seed/data-118.json deleted file mode 100644 index 7e66abfe99..0000000000 --- a/priv/repo/major_topics_seed/data-118.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["02.04.26","03.04.26","03.04.26","03.04.26","03.04.26","03.04.26","03.04.26","03.04.26","04.04.26","04.04.26","04.04.26","04.04.26","04.04.26","04.04.26","04.04.26","04.04.26","05.04.26","05.04.26","05.04.26","05.04.26","05.04.26","05.04.26","05.04.26","05.04.26","06.04.26","06.04.26","06.04.26","06.04.26","06.04.26","06.04.26","06.04.26","06.04.26","07.04.26","07.04.26","07.04.26","07.04.26","07.04.26","07.04.26","07.04.26","07.04.26","08.04.26","08.04.26","08.04.26","08.04.26","08.04.26","08.04.26","08.04.26","08.04.26","09.04.26","09.04.26","09.04.26","09.04.26","09.04.26","09.04.26","09.04.26"],"datasets":[{"label":"Oil price","topics":"brent,wti,crude,dated,barrel","description":"Social posts focus on a dramatic oil rally and extreme volatility driven by geopolitical events (Iran strikes/ceasefire), with WTI/Brent spiking into triple digits (mentions up to $115–$144) and rapid reversals. Traders are taking outsized leveraged bets on crypto-native derivatives platforms (Hyperliquid, Tradexyz), large volumes briefly rival BTC, and high-profile wipeouts (~$3.6M loss) highlight tail risk. Discussion also centers on paper vs physical oil disconnect, supply disruption risks (Iran shipments, pipelines, SPR), and broader cross-asset impacts (crypto, equities, bonds).","data":[14,5,14,10,9,15,8,16,15,10,55,8,6,22,7,16,8,19,9,11,9,11,11,13,6,3,7,25,7,15,8,6,9,145,7,15,62,17,13,7,16,12,15,10,15,15,8,9,19,14,8,7,13,6,11]},{"label":"AI","topics":"ais,artificial,automate,slop,output","description":"Social posts argue AI is accelerating fast, shifting software toward agentic systems that will reshape jobs and workflows — often augmenting rather than outright eliminating roles. Themes: AI raises workplace output expectations, creates new demand for complementary skills, and concentrates economic gains (sparking calls for redistribution via pensions/sovereign funds). Industry signals include CPU shortages, AMD demand, OpenAI partnerships, and debate over blockchain’s role as infrastructure for autonomous AI agents. Concerns include talent/ institutional readiness (e.g., Indonesia), data/closed-AI extraction, and the need for human-centric, sovereign tech rather than platform lock-in.","data":[5,33,12,8,23,8,16,9,8,20,11,1,3,18,13,11,12,12,16,14,12,12,6,18,19,9,11,8,22,7,13,10,6,5,13,10,15,9,6,7,11,11,10,8,4,7,12,18,14,6,18,11,8,10,12]},{"label":"Claude Mythos","topics":"mythos,anthropics,preview,anthropic,vulnerabilities","description":"Anthropic’s new Claude Mythos preview is being hailed as extremely powerful — able to find thousands of high‑severity vulnerabilities across major OSes, browsers and websites — prompting both hype and alarm. Anthropic launched Project Glasswing to remediate and protect world‑class software and is withholding broad release amid safety concerns; researchers have also criticized aspects of Mythos’ public claim counts. The model is being explored for corporate use (security audits, automated alpha discovery boosting Sharpe) while Anthropic expands rapidly (reported revenue growth) and even formed AnthroPAC to influence AI policy. The discussion centers on real security risk, responsible release, potential misuse, and implications for web3/devs and trading strategies.","data":[10,6,23,5,8,3,14,1,15,9,10,4,6,5,8,7,10,6,4,19,12,4,8,9,6,14,8,4,8,10,7,12,14,7,2,8,8,7,11,17,12,6,5,3,6,4,6,15,5,7,9,8,5,4,3]},{"label":"Future of Bitcoin","topics":"fiat,bitcointwitter,currency,plebs,bitcoiner","description":"Twitter conversation is strongly bullish on Bitcoin as the future global money—calling it the best, anti-fragile, and ‘hardest’ money with adoption likened to iPhone/ChatGPT moments and the refrain that ‘no one is late.’ Topics include Bitcoin as superior collateral for DeFi, merchant acceptance and payment use (#SPEDN), historical notes (Hal Finney, early Windows/Linux support), tech angles like AGI writing BIPs and robots using BTC, competing commodity-designated digital assets, and community-driven promotion (Austin drone display) alongside criticism of traditional finance culture.","data":[4,7,6,11,10,17,6,5,3,9,7,9,9,7,14,8,18,6,4,7,10,7,2,8,10,1,9,9,7,2,10,9,6,2,11,9,6,7,8,5,6,6,7,7,1,6,5,13,7,7,12,8,5,3,9]},{"label":"BTC price","topics":"downtrend,71k,trendline,72k,retest","description":"Bitcoin is trading around $70K after a multi-week sideways channel and an ascending trendline retest. Social chatter focuses on whether BTC will reclaim and clear the $72K–$76K zone (bullish case toward March highs) or face rejection back to $68K–$65K (bearish/downside to $50K cited by some). Traders note mixed TA signals (SMA50, Stoch RSI, wedges, liquidity clusters, RVWAP) and a short-heavy market with negative funding — creating squeeze risk if momentum shifts. Common trade plans: long on dips near ~$65K, short near ~$70K unless a clear breakout above $72–76K confirms trend reversal.","data":[7,5,3,4,3,16,20,11,3,5,7,11,8,4,5,12,5,4,4,5,3,4,17,4,4,1,8,7,15,5,5,6,4,3,2,8,10,13,15,6,2,2,10,5,4,4,5,5,5,6,5,2,2,4,1]},{"label":"Easter","topics":"wishing,renewal,joy,celebrating,chocolate","description":"A collection of Happy Easter posts from crypto projects, exchanges, and community accounts. Messages are largely seasonal greetings (Wirex, EstateX, LBank, IC Team, WEEX, etc.) combined with light promotional tie‑ins (APTree Earn, trading reminders, Bitcoin price on Easter) and community updates (server upgrades, tournaments). Overall theme: holiday engagement and brand/community promotion rather than substantive market-moving news.","data":[0,4,4,6,5,5,5,32,3,6,2,13,1,9,11,15,3,13,4,4,4,33,12,1,7,1,2,2,7,3,1,0,3,2,6,1,2,4,3,1,6,4,1,5,3,2,6,2,6,2,1,1,6,7,5]},{"label":"Gaming","topics":"gaming,games,steam,replay,studios","description":"Active conversation around video games and game development: gameplay clips, tools/engines (LOVE2D and others), AI agents for game creation, cross-region multiplayer, and community game recs. Mentions Netflix Playground for kids and interest in competitive cognitive/mental games. Also highlights ARPGs with player-driven economies and specific projects (e.g., Etherscape), suggesting some overlap with blockchain gaming.","data":[4,3,0,2,9,0,4,3,1,4,4,0,4,3,10,6,5,12,31,4,10,5,2,9,1,3,8,7,7,6,7,6,2,3,2,17,5,4,6,2,3,0,1,3,5,9,7,7,4,8,5,3,5,5,2]},{"label":"Iran's Bitcoin toll","topics":"toll,tolls,transit,yuan,tankers","description":"Multiple reports claim Iran will accept Bitcoin (and other crypto/USDT) as transit tolls for ships through the Strait of Hormuz, with some citing payments up to $2M and IRGC involvement. Coverage is conflicting over whether payments are BTC specifically or stablecoins on Tron, and raises operational questions (e.g., Lightning instant payments). Social commentary frames this as a major real-world BTC use-case and potential sanctions-evasion channel, sparking debate on market impact, legal risks, and security implications.","data":[13,2,2,5,3,5,2,19,6,4,5,3,22,1,1,3,0,2,1,3,2,1,6,8,9,3,5,3,1,0,4,1,4,2,12,7,2,0,2,20,5,0,8,3,4,2,7,7,7,7,4,3,13,5,2]},{"label":"DeFi","topics":"defi,protocols,borrowed,exploits,tvl","description":"Conversation centers on DeFi’s next phase: broadened asset types, agent-enabled lending, new algorithmic AMMs, improved oracles, and simpler UX. Participants reference builders and projects (Moonwell, Solstice, Patara, Hyperliquid, 0xfluid, Baseline) and note a CRS report framing DeFi as a technical innovation. Despite current market headwinds, sentiment is constructive — keep building, iterate on weaknesses, and the space can mature. Topics include options, perps, oracle config, and composability.","data":[4,4,1,6,4,5,2,2,5,6,4,5,9,8,6,5,7,3,3,10,4,4,2,10,5,3,11,8,2,4,4,8,3,4,5,4,10,4,9,4,3,1,2,4,4,3,1,1,6,7,13,3,2,3,6]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,mastercard,visa,stables","description":"Discussion highlights rapid stablecoin adoption and infrastructure expansion driving real-world payment and treasury use. Key datapoints cited include Ethereum stablecoin supply ATH (~$180B), Polygon inflows up 80%, Chainalysis projections of $719T–$1.5 quadrillion by 2035, and February stablecoin flows reportedly surpassing ACH. Threads cover cross‑chain rails and integrations (TRON, Mantle, Hyperlane), institutional payroll/settlement patterns (weekend drops), operational finance challenges, yield products, bot-driven volume, and regulatory impacts on supply dynamics.","data":[3,5,2,3,1,3,0,2,4,7,7,3,2,3,2,4,3,5,2,1,6,3,4,3,4,1,4,4,2,1,5,7,6,1,4,4,8,2,6,4,2,6,4,3,42,7,2,4,5,8,2,9,0,4,3]},{"label":"MSBT ETF launch","topics":"morgan,stanley,etf,aum,025","description":"Morgan Stanley launched its spot Bitcoin ETF (ticker MSBT) on NYSE Arca, debuting with roughly $33–34M in first-day volume and about 444 BTC purchased. The fund carries a low 0.14% expense ratio, positioning it as the cheapest U.S. spot Bitcoin ETF and sparking expectations of strong inflows—analysts project up to $5B AUM in year one—driven by Morgan Stanley’s 16,000 advisors and captive client base. Market commentary highlights a potential fee war and rotation among ETFs versus net-new demand, and frames the launch as a significant institutional adoption milestone and head-to-head competitor to BlackRock’s IBIT.","data":[1,4,7,8,4,7,1,1,3,1,1,5,3,4,1,1,8,3,5,5,0,2,3,2,1,34,2,6,5,1,3,5,8,4,2,0,1,4,4,5,5,4,6,0,28,2,0,1,4,10,0,1,1,1,3]},{"label":"Memecoins","topics":"memecoin,memecoins,memes,meme,fudding","description":"Social chatter centers on memecoin hype: community-driven launches, hunting the next big ticker, and a belief a single memecoin can deliver life-changing gains. Threads tout memecoin conferences, nostalgia for past launch methods, and examples like $DEGEN on Base and viral winners (e.g., Moo Deng). Some users project a memecoin “supercycle,” ties to ETH memes in 2026, and even transitions from memecoin fame to large AI startup exits. Overall sentiment is exuberant, speculative, and focused on community strength and quick upside.","data":[2,1,0,3,6,0,2,1,3,5,2,6,7,2,5,0,2,5,3,4,4,3,7,5,5,3,2,3,2,64,0,7,5,1,3,4,1,2,3,0,6,1,2,1,1,5,2,5,3,7,4,4,1,1,1]},{"label":"ETH price","topics":"2100,2000,ethereums,trendline,2k","description":"Twitter discussion centers on Ethereum’s short- and medium-term price action, with $2,000–$2,200 (notably $2,140) cited as critical support/resistance. Traders debate a potential relief rally and breakouts toward $2,600–$3,000 (and much higher long-term targets cited by some: $8,500–$12,000 or even $60,000), versus downside scenarios to $1,940, $1,000 or new lows in Q2/Q3 2026. Analysts note fractal patterns mirroring April 2025, rising social activity, and mixed technical signals (demand zone, SMA support, liquidity wipes) that make the next directional move pivotal.","data":[9,0,4,7,3,5,10,7,4,8,3,6,3,3,8,7,3,2,3,8,4,0,5,3,2,1,6,3,6,4,7,5,4,3,3,2,2,1,8,1,1,0,4,2,5,1,5,7,8,5,3,3,2,0,4]},{"label":"China","topics":"chinas,china,chinese,taiwan,communist","description":"Discussion focuses on China’s rapid technological rise and global competitiveness — from state-backed R&D and manufacturing surpluses to space-agriculture milestones and advanced quant teams — alongside security and regulatory tensions (government hacks, FCC proposals banning Chinese testing labs). Threads mix business lessons, cultural observations, historical context, and concerns about how Western firms and policymakers respond to China’s innovation push.","data":[6,2,4,6,3,2,3,3,11,3,4,0,5,4,4,4,5,7,2,3,3,1,6,4,2,8,4,5,3,2,5,2,11,3,1,5,4,6,4,1,1,5,3,5,4,5,7,4,3,3,2,5,6,2,3]},{"label":"ZEC","topics":"zec,zcash,privacy,digit,300","description":"Social chatter centers on Zcash ($ZEC) breaking out and rallying—posts report gains (~+50–60%, with longer-term calls >150% into the high $600s), technical setups (ascending triangle, cup & handle, higher lows) and trade ideas (buy alerts, retest at $265–270, short/resistance levels around $332–357). Community traders and signal services boast timely alerts and past call accuracy, while some users discuss liquidity-providing yields and institutional interest in DeFi products. Overall tone is bullish with active technical analysis, profit-taking, and hype/shilling across channels.","data":[6,4,1,2,3,8,7,3,6,5,3,4,3,4,2,7,2,4,5,3,3,3,4,2,3,4,5,3,2,3,2,3,4,3,1,4,9,7,1,2,5,5,6,3,4,6,2,1,8,3,1,2,2,1,17]},{"label":"HYPE","topics":"hype,assistance,buyback,notional,burned","description":"Strong bullish sentiment and technical momentum around the $HYPE token: traders note consolidation at the 0.50 fib and compressed EMAs, reclaiming key daily trend/resistance levels, and expect a breakout toward mid-$40s (some bullish takes even reference much higher speculative targets). Active trade setups include stops below $35 and targets around $43–$50, with mentions of 30%+ range opportunities if levels confirm and arbitrage vs $PURR NAV. Community praise for the HypeStrat team and HYPEUSD platform, plus TAO, ALGO and FLOKI cited as related bullish names; risk-managed swing trades and position sizing emphasized amid volatile news events.","data":[9,0,1,4,3,6,5,2,3,1,1,3,3,3,4,2,5,5,3,3,2,6,17,4,5,1,1,6,4,2,3,1,4,3,6,5,4,5,3,6,0,2,2,4,4,5,2,3,7,7,9,5,2,6,0]},{"label":"Pokemon cards","topics":"pokemon,cards,tcg,psa,shiny","description":"Active discussion around Pokémon card collecting and market dynamics: debate over overrated modern cards (e.g., PF Charizard), graded and serialized cards, vaulting/secure storage and shipping, and proof-of-authentication for high-end sales. Community interest in phygitals and tokenized/serialized assets as the ‘future’ of the Pokémon asset class, plus a proposed tool to evaluate pack EV (price, hit rates, expected value). Other threads include undervalued Trainer SIRs, new partner illustration Series 2, flash sales, collecting losses/timing, and a Pokémon Go tournament controversy.","data":[2,4,1,5,4,2,3,12,9,2,2,1,1,2,5,9,2,0,2,11,4,2,5,1,4,3,2,6,6,3,4,5,1,3,2,11,5,6,2,4,1,3,6,5,4,6,2,4,2,3,3,3,1,4,1]},{"label":"RWA","topics":"tokenized,tokenization,tokenize,securities,2030","description":"Social discussion focuses on rapid growth and institutional adoption of tokenized real-world assets (RWA), highlighted by JPMorgan projections of up to $13 trillion by 2030 and NYSE efforts to offer 24/7 tokenized securities trading. Participants stress tokenization’s potential to lower fundraising costs, increase access to capital, and enable onchain collateral and structured products, while calling out gaps in transparency, reporting standards, liquidity infrastructure, and the need for prime-brokerage primitives. Industry moves (Apex, Turbine, Sierra, OpenTrade, Magma, xStocks hackathon) and warnings about overcomplex token models underscore a shift toward simpler, programmable financial instruments that bridge traditional finance and onchain markets.","data":[2,2,2,4,1,5,4,1,2,1,3,3,2,5,9,5,1,3,1,2,3,1,1,12,3,2,2,4,0,5,2,1,3,5,4,1,5,3,6,1,3,3,3,3,6,2,3,4,32,7,4,1,0,3,8]},{"label":"Bitcoin quantum risk","topics":"computing,computers,quantum,signatures,postquantum","description":"Debate over Bitcoin’s quantum risk is active but measured: experts (Adam Back, Samson Mow, Michael Saylor, Greg Maxwell) generally view an existential quantum break as distant (often 10–20 years) yet urge proactive preparation. Key points: signature schemes are more vulnerable than mining, post‑quantum signature standards and migration infrastructure are under development, and coordination (workshops, standards) is needed to avoid complacency or rushed fixes. Some argue AI/data‑center hashpower concentration is a nearer‑term threat; markets and projects (Polymarket, BTQ) are already pricing the debate and building tools.","data":[2,1,4,4,0,6,0,6,1,22,5,2,6,1,3,5,4,2,1,1,0,2,3,3,2,4,3,2,0,1,2,2,4,2,4,2,7,29,2,3,4,8,3,1,2,1,0,6,1,1,0,4,5,3,5]},{"label":"Vibecoding","topics":"vibe,coding,coded,vibes,pages","description":"Social posts revolve around “vibecoding” — using LLMs/AI to rapidly build crypto apps and DeFi products. Community enthusiasm highlights quick front-end prototypes (expense trackers, Spotify integrations, agent tools), perp markets for any token (no fees / free listing promos), dApp activity on chains like Cronos, and hackathons/events with token incentives. Criticisms note poor backend, payment and DB integration, ugly UIs, and limits of free models. Overall it’s a blend of AI-assisted development, community culture, and DeFi product launches (e.g., Vibe Trading, $Bari, $PACK).","data":[1,3,0,0,1,2,2,0,17,0,7,3,3,3,1,2,3,2,0,3,3,2,1,1,4,5,4,6,3,2,2,5,4,2,1,1,1,1,2,1,1,2,4,3,3,1,3,2,3,0,6,56,1,3,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-118.ts b/priv/repo/major_topics_seed/data-118.ts deleted file mode 100644 index bebc3a0198..0000000000 --- a/priv/repo/major_topics_seed/data-118.ts +++ /dev/null @@ -1,283 +0,0 @@ -export const NARRATIVES = { - labels: [ - '02.04.26', - '03.04.26', - '03.04.26', - '03.04.26', - '03.04.26', - '03.04.26', - '03.04.26', - '03.04.26', - '04.04.26', - '04.04.26', - '04.04.26', - '04.04.26', - '04.04.26', - '04.04.26', - '04.04.26', - '04.04.26', - '05.04.26', - '05.04.26', - '05.04.26', - '05.04.26', - '05.04.26', - '05.04.26', - '05.04.26', - '05.04.26', - '06.04.26', - '06.04.26', - '06.04.26', - '06.04.26', - '06.04.26', - '06.04.26', - '06.04.26', - '06.04.26', - '07.04.26', - '07.04.26', - '07.04.26', - '07.04.26', - '07.04.26', - '07.04.26', - '07.04.26', - '07.04.26', - '08.04.26', - '08.04.26', - '08.04.26', - '08.04.26', - '08.04.26', - '08.04.26', - '08.04.26', - '08.04.26', - '09.04.26', - '09.04.26', - '09.04.26', - '09.04.26', - '09.04.26', - '09.04.26', - '09.04.26', - ], - datasets: [ - { - label: 'Oil price', - topics: 'brent,wti,crude,dated,barrel', - description: - 'Social posts focus on a dramatic oil rally and extreme volatility driven by geopolitical events (Iran strikes/ceasefire), with WTI/Brent spiking into triple digits (mentions up to $115–$144) and rapid reversals. Traders are taking outsized leveraged bets on crypto-native derivatives platforms (Hyperliquid, Tradexyz), large volumes briefly rival BTC, and high-profile wipeouts (~$3.6M loss) highlight tail risk. Discussion also centers on paper vs physical oil disconnect, supply disruption risks (Iran shipments, pipelines, SPR), and broader cross-asset impacts (crypto, equities, bonds).', - data: [ - 14, 5, 14, 10, 9, 15, 8, 16, 15, 10, 55, 8, 6, 22, 7, 16, 8, 19, 9, 11, 9, 11, 11, 13, 6, 3, - 7, 25, 7, 15, 8, 6, 9, 145, 7, 15, 62, 17, 13, 7, 16, 12, 15, 10, 15, 15, 8, 9, 19, 14, 8, - 7, 13, 6, 11, - ], - infofi: false, - }, - { - label: 'AI', - topics: 'ais,artificial,automate,slop,output', - description: - 'Social posts argue AI is accelerating fast, shifting software toward agentic systems that will reshape jobs and workflows — often augmenting rather than outright eliminating roles. Themes: AI raises workplace output expectations, creates new demand for complementary skills, and concentrates economic gains (sparking calls for redistribution via pensions/sovereign funds). Industry signals include CPU shortages, AMD demand, OpenAI partnerships, and debate over blockchain’s role as infrastructure for autonomous AI agents. Concerns include talent/ institutional readiness (e.g., Indonesia), data/closed-AI extraction, and the need for human-centric, sovereign tech rather than platform lock-in.', - data: [ - 5, 33, 12, 8, 23, 8, 16, 9, 8, 20, 11, 1, 3, 18, 13, 11, 12, 12, 16, 14, 12, 12, 6, 18, 19, - 9, 11, 8, 22, 7, 13, 10, 6, 5, 13, 10, 15, 9, 6, 7, 11, 11, 10, 8, 4, 7, 12, 18, 14, 6, 18, - 11, 8, 10, 12, - ], - infofi: false, - }, - { - label: 'Claude Mythos', - topics: 'mythos,anthropics,preview,anthropic,vulnerabilities', - description: - 'Anthropic’s new Claude Mythos preview is being hailed as extremely powerful — able to find thousands of high‑severity vulnerabilities across major OSes, browsers and websites — prompting both hype and alarm. Anthropic launched Project Glasswing to remediate and protect world‑class software and is withholding broad release amid safety concerns; researchers have also criticized aspects of Mythos’ public claim counts. The model is being explored for corporate use (security audits, automated alpha discovery boosting Sharpe) while Anthropic expands rapidly (reported revenue growth) and even formed AnthroPAC to influence AI policy. The discussion centers on real security risk, responsible release, potential misuse, and implications for web3/devs and trading strategies.', - data: [ - 10, 6, 23, 5, 8, 3, 14, 1, 15, 9, 10, 4, 6, 5, 8, 7, 10, 6, 4, 19, 12, 4, 8, 9, 6, 14, 8, 4, - 8, 10, 7, 12, 14, 7, 2, 8, 8, 7, 11, 17, 12, 6, 5, 3, 6, 4, 6, 15, 5, 7, 9, 8, 5, 4, 3, - ], - infofi: false, - }, - { - label: 'Future of Bitcoin', - topics: 'fiat,bitcointwitter,currency,plebs,bitcoiner', - description: - 'Twitter conversation is strongly bullish on Bitcoin as the future global money—calling it the best, anti-fragile, and ‘hardest’ money with adoption likened to iPhone/ChatGPT moments and the refrain that ‘no one is late.’ Topics include Bitcoin as superior collateral for DeFi, merchant acceptance and payment use (#SPEDN), historical notes (Hal Finney, early Windows/Linux support), tech angles like AGI writing BIPs and robots using BTC, competing commodity-designated digital assets, and community-driven promotion (Austin drone display) alongside criticism of traditional finance culture.', - data: [ - 4, 7, 6, 11, 10, 17, 6, 5, 3, 9, 7, 9, 9, 7, 14, 8, 18, 6, 4, 7, 10, 7, 2, 8, 10, 1, 9, 9, - 7, 2, 10, 9, 6, 2, 11, 9, 6, 7, 8, 5, 6, 6, 7, 7, 1, 6, 5, 13, 7, 7, 12, 8, 5, 3, 9, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: 'downtrend,71k,trendline,72k,retest', - description: - 'Bitcoin is trading around $70K after a multi-week sideways channel and an ascending trendline retest. Social chatter focuses on whether BTC will reclaim and clear the $72K–$76K zone (bullish case toward March highs) or face rejection back to $68K–$65K (bearish/downside to $50K cited by some). Traders note mixed TA signals (SMA50, Stoch RSI, wedges, liquidity clusters, RVWAP) and a short-heavy market with negative funding — creating squeeze risk if momentum shifts. Common trade plans: long on dips near ~$65K, short near ~$70K unless a clear breakout above $72–76K confirms trend reversal.', - data: [ - 7, 5, 3, 4, 3, 16, 20, 11, 3, 5, 7, 11, 8, 4, 5, 12, 5, 4, 4, 5, 3, 4, 17, 4, 4, 1, 8, 7, - 15, 5, 5, 6, 4, 3, 2, 8, 10, 13, 15, 6, 2, 2, 10, 5, 4, 4, 5, 5, 5, 6, 5, 2, 2, 4, 1, - ], - infofi: false, - }, - { - label: 'Easter', - topics: 'wishing,renewal,joy,celebrating,chocolate', - description: - 'A collection of Happy Easter posts from crypto projects, exchanges, and community accounts. Messages are largely seasonal greetings (Wirex, EstateX, LBank, IC Team, WEEX, etc.) combined with light promotional tie‑ins (APTree Earn, trading reminders, Bitcoin price on Easter) and community updates (server upgrades, tournaments). Overall theme: holiday engagement and brand/community promotion rather than substantive market-moving news.', - data: [ - 0, 4, 4, 6, 5, 5, 5, 32, 3, 6, 2, 13, 1, 9, 11, 15, 3, 13, 4, 4, 4, 33, 12, 1, 7, 1, 2, 2, - 7, 3, 1, 0, 3, 2, 6, 1, 2, 4, 3, 1, 6, 4, 1, 5, 3, 2, 6, 2, 6, 2, 1, 1, 6, 7, 5, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'gaming,games,steam,replay,studios', - description: - 'Active conversation around video games and game development: gameplay clips, tools/engines (LOVE2D and others), AI agents for game creation, cross-region multiplayer, and community game recs. Mentions Netflix Playground for kids and interest in competitive cognitive/mental games. Also highlights ARPGs with player-driven economies and specific projects (e.g., Etherscape), suggesting some overlap with blockchain gaming.', - data: [ - 4, 3, 0, 2, 9, 0, 4, 3, 1, 4, 4, 0, 4, 3, 10, 6, 5, 12, 31, 4, 10, 5, 2, 9, 1, 3, 8, 7, 7, - 6, 7, 6, 2, 3, 2, 17, 5, 4, 6, 2, 3, 0, 1, 3, 5, 9, 7, 7, 4, 8, 5, 3, 5, 5, 2, - ], - infofi: false, - }, - { - label: "Iran's Bitcoin toll", - topics: 'toll,tolls,transit,yuan,tankers', - description: - 'Multiple reports claim Iran will accept Bitcoin (and other crypto/USDT) as transit tolls for ships through the Strait of Hormuz, with some citing payments up to $2M and IRGC involvement. Coverage is conflicting over whether payments are BTC specifically or stablecoins on Tron, and raises operational questions (e.g., Lightning instant payments). Social commentary frames this as a major real-world BTC use-case and potential sanctions-evasion channel, sparking debate on market impact, legal risks, and security implications.', - data: [ - 13, 2, 2, 5, 3, 5, 2, 19, 6, 4, 5, 3, 22, 1, 1, 3, 0, 2, 1, 3, 2, 1, 6, 8, 9, 3, 5, 3, 1, 0, - 4, 1, 4, 2, 12, 7, 2, 0, 2, 20, 5, 0, 8, 3, 4, 2, 7, 7, 7, 7, 4, 3, 13, 5, 2, - ], - infofi: false, - }, - { - label: 'DeFi', - topics: 'defi,protocols,borrowed,exploits,tvl', - description: - 'Conversation centers on DeFi’s next phase: broadened asset types, agent-enabled lending, new algorithmic AMMs, improved oracles, and simpler UX. Participants reference builders and projects (Moonwell, Solstice, Patara, Hyperliquid, 0xfluid, Baseline) and note a CRS report framing DeFi as a technical innovation. Despite current market headwinds, sentiment is constructive — keep building, iterate on weaknesses, and the space can mature. Topics include options, perps, oracle config, and composability.', - data: [ - 4, 4, 1, 6, 4, 5, 2, 2, 5, 6, 4, 5, 9, 8, 6, 5, 7, 3, 3, 10, 4, 4, 2, 10, 5, 3, 11, 8, 2, 4, - 4, 8, 3, 4, 5, 4, 10, 4, 9, 4, 3, 1, 2, 4, 4, 3, 1, 1, 6, 7, 13, 3, 2, 3, 6, - ], - infofi: false, - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,mastercard,visa,stables', - description: - 'Discussion highlights rapid stablecoin adoption and infrastructure expansion driving real-world payment and treasury use. Key datapoints cited include Ethereum stablecoin supply ATH (~$180B), Polygon inflows up 80%, Chainalysis projections of $719T–$1.5 quadrillion by 2035, and February stablecoin flows reportedly surpassing ACH. Threads cover cross‑chain rails and integrations (TRON, Mantle, Hyperlane), institutional payroll/settlement patterns (weekend drops), operational finance challenges, yield products, bot-driven volume, and regulatory impacts on supply dynamics.', - data: [ - 3, 5, 2, 3, 1, 3, 0, 2, 4, 7, 7, 3, 2, 3, 2, 4, 3, 5, 2, 1, 6, 3, 4, 3, 4, 1, 4, 4, 2, 1, 5, - 7, 6, 1, 4, 4, 8, 2, 6, 4, 2, 6, 4, 3, 42, 7, 2, 4, 5, 8, 2, 9, 0, 4, 3, - ], - infofi: false, - }, - { - label: 'MSBT ETF launch', - topics: 'morgan,stanley,etf,aum,025', - description: - 'Morgan Stanley launched its spot Bitcoin ETF (ticker MSBT) on NYSE Arca, debuting with roughly $33–34M in first-day volume and about 444 BTC purchased. The fund carries a low 0.14% expense ratio, positioning it as the cheapest U.S. spot Bitcoin ETF and sparking expectations of strong inflows—analysts project up to $5B AUM in year one—driven by Morgan Stanley’s 16,000 advisors and captive client base. Market commentary highlights a potential fee war and rotation among ETFs versus net-new demand, and frames the launch as a significant institutional adoption milestone and head-to-head competitor to BlackRock’s IBIT.', - data: [ - 1, 4, 7, 8, 4, 7, 1, 1, 3, 1, 1, 5, 3, 4, 1, 1, 8, 3, 5, 5, 0, 2, 3, 2, 1, 34, 2, 6, 5, 1, - 3, 5, 8, 4, 2, 0, 1, 4, 4, 5, 5, 4, 6, 0, 28, 2, 0, 1, 4, 10, 0, 1, 1, 1, 3, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'memecoin,memecoins,memes,meme,fudding', - description: - 'Social chatter centers on memecoin hype: community-driven launches, hunting the next big ticker, and a belief a single memecoin can deliver life-changing gains. Threads tout memecoin conferences, nostalgia for past launch methods, and examples like $DEGEN on Base and viral winners (e.g., Moo Deng). Some users project a memecoin “supercycle,” ties to ETH memes in 2026, and even transitions from memecoin fame to large AI startup exits. Overall sentiment is exuberant, speculative, and focused on community strength and quick upside.', - data: [ - 2, 1, 0, 3, 6, 0, 2, 1, 3, 5, 2, 6, 7, 2, 5, 0, 2, 5, 3, 4, 4, 3, 7, 5, 5, 3, 2, 3, 2, 64, - 0, 7, 5, 1, 3, 4, 1, 2, 3, 0, 6, 1, 2, 1, 1, 5, 2, 5, 3, 7, 4, 4, 1, 1, 1, - ], - infofi: false, - }, - { - label: 'ETH price', - topics: '2100,2000,ethereums,trendline,2k', - description: - 'Twitter discussion centers on Ethereum’s short- and medium-term price action, with $2,000–$2,200 (notably $2,140) cited as critical support/resistance. Traders debate a potential relief rally and breakouts toward $2,600–$3,000 (and much higher long-term targets cited by some: $8,500–$12,000 or even $60,000), versus downside scenarios to $1,940, $1,000 or new lows in Q2/Q3 2026. Analysts note fractal patterns mirroring April 2025, rising social activity, and mixed technical signals (demand zone, SMA support, liquidity wipes) that make the next directional move pivotal.', - data: [ - 9, 0, 4, 7, 3, 5, 10, 7, 4, 8, 3, 6, 3, 3, 8, 7, 3, 2, 3, 8, 4, 0, 5, 3, 2, 1, 6, 3, 6, 4, - 7, 5, 4, 3, 3, 2, 2, 1, 8, 1, 1, 0, 4, 2, 5, 1, 5, 7, 8, 5, 3, 3, 2, 0, 4, - ], - infofi: false, - }, - { - label: 'China', - topics: 'chinas,china,chinese,taiwan,communist', - description: - 'Discussion focuses on China’s rapid technological rise and global competitiveness — from state-backed R&D and manufacturing surpluses to space-agriculture milestones and advanced quant teams — alongside security and regulatory tensions (government hacks, FCC proposals banning Chinese testing labs). Threads mix business lessons, cultural observations, historical context, and concerns about how Western firms and policymakers respond to China’s innovation push.', - data: [ - 6, 2, 4, 6, 3, 2, 3, 3, 11, 3, 4, 0, 5, 4, 4, 4, 5, 7, 2, 3, 3, 1, 6, 4, 2, 8, 4, 5, 3, 2, - 5, 2, 11, 3, 1, 5, 4, 6, 4, 1, 1, 5, 3, 5, 4, 5, 7, 4, 3, 3, 2, 5, 6, 2, 3, - ], - infofi: false, - }, - { - label: 'ZEC', - topics: 'zec,zcash,privacy,digit,300', - description: - 'Social chatter centers on Zcash ($ZEC) breaking out and rallying—posts report gains (~+50–60%, with longer-term calls >150% into the high $600s), technical setups (ascending triangle, cup & handle, higher lows) and trade ideas (buy alerts, retest at $265–270, short/resistance levels around $332–357). Community traders and signal services boast timely alerts and past call accuracy, while some users discuss liquidity-providing yields and institutional interest in DeFi products. Overall tone is bullish with active technical analysis, profit-taking, and hype/shilling across channels.', - data: [ - 6, 4, 1, 2, 3, 8, 7, 3, 6, 5, 3, 4, 3, 4, 2, 7, 2, 4, 5, 3, 3, 3, 4, 2, 3, 4, 5, 3, 2, 3, 2, - 3, 4, 3, 1, 4, 9, 7, 1, 2, 5, 5, 6, 3, 4, 6, 2, 1, 8, 3, 1, 2, 2, 1, 17, - ], - infofi: false, - }, - { - label: 'HYPE', - topics: 'hype,assistance,buyback,notional,burned', - description: - 'Strong bullish sentiment and technical momentum around the $HYPE token: traders note consolidation at the 0.50 fib and compressed EMAs, reclaiming key daily trend/resistance levels, and expect a breakout toward mid-$40s (some bullish takes even reference much higher speculative targets). Active trade setups include stops below $35 and targets around $43–$50, with mentions of 30%+ range opportunities if levels confirm and arbitrage vs $PURR NAV. Community praise for the HypeStrat team and HYPEUSD platform, plus TAO, ALGO and FLOKI cited as related bullish names; risk-managed swing trades and position sizing emphasized amid volatile news events.', - data: [ - 9, 0, 1, 4, 3, 6, 5, 2, 3, 1, 1, 3, 3, 3, 4, 2, 5, 5, 3, 3, 2, 6, 17, 4, 5, 1, 1, 6, 4, 2, - 3, 1, 4, 3, 6, 5, 4, 5, 3, 6, 0, 2, 2, 4, 4, 5, 2, 3, 7, 7, 9, 5, 2, 6, 0, - ], - infofi: false, - }, - { - label: 'Pokemon cards', - topics: 'pokemon,cards,tcg,psa,shiny', - description: - 'Active discussion around Pokémon card collecting and market dynamics: debate over overrated modern cards (e.g., PF Charizard), graded and serialized cards, vaulting/secure storage and shipping, and proof-of-authentication for high-end sales. Community interest in phygitals and tokenized/serialized assets as the ‘future’ of the Pokémon asset class, plus a proposed tool to evaluate pack EV (price, hit rates, expected value). Other threads include undervalued Trainer SIRs, new partner illustration Series 2, flash sales, collecting losses/timing, and a Pokémon Go tournament controversy.', - data: [ - 2, 4, 1, 5, 4, 2, 3, 12, 9, 2, 2, 1, 1, 2, 5, 9, 2, 0, 2, 11, 4, 2, 5, 1, 4, 3, 2, 6, 6, 3, - 4, 5, 1, 3, 2, 11, 5, 6, 2, 4, 1, 3, 6, 5, 4, 6, 2, 4, 2, 3, 3, 3, 1, 4, 1, - ], - infofi: false, - }, - { - label: 'RWA', - topics: 'tokenized,tokenization,tokenize,securities,2030', - description: - 'Social discussion focuses on rapid growth and institutional adoption of tokenized real-world assets (RWA), highlighted by JPMorgan projections of up to $13 trillion by 2030 and NYSE efforts to offer 24/7 tokenized securities trading. Participants stress tokenization’s potential to lower fundraising costs, increase access to capital, and enable onchain collateral and structured products, while calling out gaps in transparency, reporting standards, liquidity infrastructure, and the need for prime-brokerage primitives. Industry moves (Apex, Turbine, Sierra, OpenTrade, Magma, xStocks hackathon) and warnings about overcomplex token models underscore a shift toward simpler, programmable financial instruments that bridge traditional finance and onchain markets.', - data: [ - 2, 2, 2, 4, 1, 5, 4, 1, 2, 1, 3, 3, 2, 5, 9, 5, 1, 3, 1, 2, 3, 1, 1, 12, 3, 2, 2, 4, 0, 5, - 2, 1, 3, 5, 4, 1, 5, 3, 6, 1, 3, 3, 3, 3, 6, 2, 3, 4, 32, 7, 4, 1, 0, 3, 8, - ], - infofi: false, - }, - { - label: 'Bitcoin quantum risk', - topics: 'computing,computers,quantum,signatures,postquantum', - description: - 'Debate over Bitcoin’s quantum risk is active but measured: experts (Adam Back, Samson Mow, Michael Saylor, Greg Maxwell) generally view an existential quantum break as distant (often 10–20 years) yet urge proactive preparation. Key points: signature schemes are more vulnerable than mining, post‑quantum signature standards and migration infrastructure are under development, and coordination (workshops, standards) is needed to avoid complacency or rushed fixes. Some argue AI/data‑center hashpower concentration is a nearer‑term threat; markets and projects (Polymarket, BTQ) are already pricing the debate and building tools.', - data: [ - 2, 1, 4, 4, 0, 6, 0, 6, 1, 22, 5, 2, 6, 1, 3, 5, 4, 2, 1, 1, 0, 2, 3, 3, 2, 4, 3, 2, 0, 1, - 2, 2, 4, 2, 4, 2, 7, 29, 2, 3, 4, 8, 3, 1, 2, 1, 0, 6, 1, 1, 0, 4, 5, 3, 5, - ], - infofi: false, - }, - { - label: 'Vibecoding', - topics: 'vibe,coding,coded,vibes,pages', - description: - 'Social posts revolve around “vibecoding” — using LLMs/AI to rapidly build crypto apps and DeFi products. Community enthusiasm highlights quick front-end prototypes (expense trackers, Spotify integrations, agent tools), perp markets for any token (no fees / free listing promos), dApp activity on chains like Cronos, and hackathons/events with token incentives. Criticisms note poor backend, payment and DB integration, ugly UIs, and limits of free models. Overall it’s a blend of AI-assisted development, community culture, and DeFi product launches (e.g., Vibe Trading, $Bari, $PACK).', - data: [ - 1, 3, 0, 0, 1, 2, 2, 0, 17, 0, 7, 3, 3, 3, 1, 2, 3, 2, 0, 3, 3, 2, 1, 1, 4, 5, 4, 6, 3, 2, - 2, 5, 4, 2, 1, 1, 1, 1, 2, 1, 1, 2, 4, 3, 3, 1, 3, 2, 3, 0, 6, 56, 1, 3, 1, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-119.json b/priv/repo/major_topics_seed/data-119.json deleted file mode 100644 index 28483b65e2..0000000000 --- a/priv/repo/major_topics_seed/data-119.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["09.04.26","10.04.26","10.04.26","10.04.26","10.04.26","10.04.26","10.04.26","10.04.26","11.04.26","11.04.26","11.04.26","11.04.26","11.04.26","11.04.26","11.04.26","11.04.26","12.04.26","12.04.26","12.04.26","12.04.26","12.04.26","12.04.26","12.04.26","12.04.26","13.04.26","13.04.26","13.04.26","13.04.26","13.04.26","13.04.26","13.04.26","13.04.26","14.04.26","14.04.26","14.04.26","14.04.26","14.04.26","14.04.26","14.04.26","14.04.26","15.04.26","15.04.26","15.04.26","15.04.26","15.04.26","15.04.26","15.04.26","15.04.26","16.04.26","16.04.26","16.04.26","16.04.26","16.04.26","16.04.26","16.04.26"],"datasets":[{"label":"AI agents","topics":"x402,autonomous,automation,productivity,agentic","description":"Conversation focuses on AI agents and systems moving beyond big models into real-world workflows — lowering software costs, powering design and Web3 dApps, and reshaping trading and enterprise work. Persistent themes: enterprise governance and execution risk versus hype, UX for agent correction and recovery, talent flows, and emerging marketplaces for trusted agents with reputation and payments. Overall sentiment: many early alphas exist; winners will be decided by execution, integration, and trust solutions.","data":[23,142,30,37,25,17,35,28,35,41,32,21,34,26,45,25,21,40,26,24,26,27,34,44,23,27,27,26,21,17,17,26,29,27,40,30,24,23,32,22,27,27,12,40,16,15,36,47,13,30,27,23,19,24,31]},{"label":"BTC price","topics":"76k,75k,75000,80k,73k","description":"Social posts focus on a bullish Bitcoin breakout and near‑term upside: traders cite technical setups (Type‑1 breakout, falling wedge, Fibonacci golden pocket), momentum past $73–76k, and targets around $80–90k (with some extreme calls like $250k). Analysts also flag on‑chain resistance levels (True Market Mean, short‑term holder realized price), derivatives/options risk and the Puell Multiple as reasons for caution; many addresses remain underwater, so participants are watching for retrace buying opportunities or a potential fakeout.","data":[16,10,19,11,18,72,42,30,18,18,20,26,9,20,10,22,16,11,11,23,9,35,24,11,7,8,25,15,21,8,19,19,5,12,11,22,26,25,39,25,13,15,31,12,15,19,17,25,22,29,16,10,22,9,16]},{"label":"Strategy and STRC","topics":"mstr,strc,saylors,saylor,115","description":"Discussion centers on MicroStrategy’s STRC (strategy preferred stock) as a capital engine to buy massive amounts of Bitcoin. Tweets report billions raised and thousands of BTC purchased (e.g., 3,447 BTC in a day, 9,153 BTC in a week, 26k+ BTC overall), describe STRC’s high yield (~11.5%) and dividend/ex‑dividend mechanics, and debate arbitrage, NAV premium justification, and market impact (STRC as the marginal BTC buyer). Community ideas include putting STRC on‑chain, daily dividends, and protections for MSTR holders; skeptics note unrealistic dividend obligation scenarios and systemic implications for BTC supply and MSTR valuation.","data":[25,6,5,13,25,41,33,7,6,9,10,16,3,11,16,10,10,3,14,15,12,18,5,13,7,4,13,9,10,11,18,8,7,8,11,10,13,32,12,5,21,10,14,9,9,18,7,9,14,9,6,20,2,9,5]},{"label":"Hormuz blockade","topics":"vessels,ports,tanker,mines,traffic","description":"Live coverage describes a de facto US maritime blockade and mine‑clearing operation in the Strait of Hormuz amid rising US–Iran tensions. Iran has deployed mines and intermittently paused transit yet continued exports, while Houthi threats to the Red Sea and potential rerouting around the Cape of Good Hope amplify shipping, insurance, and oil‑supply risks. Market impact has been muted so far despite price spikes; ship transit counts (AIS) and official claims remain contested.","data":[10,8,13,3,9,43,3,7,26,18,4,6,18,6,13,12,11,12,4,5,3,3,8,7,2,3,7,3,6,4,35,15,10,25,8,13,4,8,9,18,16,26,19,7,7,13,12,8,4,13,7,13,19,8,6]},{"label":"Trump's involvement in Iran","topics":"blockading,navy,iranians,ships,naval","description":"Social posts report the Trump administration threatening and enacting a naval blockade of Iranian ports and the Strait of Hormuz while pressing Iran for a deal on its nuclear program. Statements include threats to destroy Iranian vessels, stop oil flows, and force Tehran’s compliance, amid critics warning this could escalate into military conflict and disrupt global oil markets; Iran calls the threats a bluff. The debate centers on diplomacy versus force and the potential economic and geopolitical fallout.","data":[5,7,21,2,3,12,0,4,6,8,4,4,9,8,2,4,5,1,1,8,5,6,6,6,5,10,6,5,2,4,2,5,3,17,2,7,11,5,8,8,26,65,6,6,10,4,18,12,6,8,3,4,16,4,3]},{"label":"Clarity Act","topics":"clarity,armstrong,senate,senator,act","description":"Social discussion centers on the bipartisan push to pass the CLARITY Act to provide clear federal rules for digital assets. Senators (notably Lummis and Tim Scott) and industry leaders (e.g., Coinbase, Circle) are urging passage, citing institutional adoption, stablecoin clarity, and market impact. However, markup and hearings have slipped, creating timeline uncertainty (hopes for April/May vs. warnings that delay could push action to 2030).","data":[3,9,4,7,5,2,2,13,5,11,13,4,10,2,7,8,4,3,2,1,3,7,1,2,1,3,5,3,2,6,1,9,2,5,10,5,6,3,5,13,6,44,3,2,2,7,0,9,7,2,13,1,9,3,4]},{"label":"Oil price","topics":"wti,crude,barrel,brent,cl","description":"Social posts focus on a sharp pickup in crude oil volatility after Middle East tensions (Iran/Saudi strikes), with forecasts of elevated prices for months. Contributors note large divergences between physical crude prices (e.g., Forties) and paper/futures, concern about strained supply and delivery risks, and accusations of market manipulation. The conversation also highlights crypto-native access to oil risk via 24/7 crude perpetuals on platforms like TradeXYZ and HyperliquidX, with multi-million-dollar leveraged longs and unusual options/call flow amplifying short-term moves.","data":[6,2,3,6,3,4,2,5,10,4,21,6,5,8,5,3,1,2,3,5,4,2,1,6,4,4,3,4,10,9,2,4,3,44,4,7,22,2,1,4,6,2,9,1,6,5,6,2,8,2,2,4,5,12,0]},{"label":"TAO pump and dump","topics":"tao,fud,rugging,240,sl","description":"Conversation focuses on $TAO’s extreme volatility and suspected pump-and-rug behavior. Traders debate technical entry/exit points (roughly $220–$300), key supports/dump zones, stacked liquidity above price, and the risk of large-holder/Binance dumps. Sentiment is mixed: some expect bounces and short-term plays, while others warn of rug pulls, influencer-driven hype, and advise caution.","data":[0,1,2,8,5,2,6,9,4,4,4,4,5,3,3,4,3,3,6,5,9,10,8,4,2,5,12,11,6,5,7,1,3,1,4,3,5,1,4,1,10,3,9,4,6,12,27,8,6,6,7,2,5,3,5]},{"label":"Twitter bot purge","topics":"followers,mutuals,mutual,follower,instagram","description":"Users are reacting to a platform bot purge and the removal of the “mutuals” indicator from profiles. Many report large follower drops (hundreds to tens of thousands), argue mutuals were a key credibility signal to distinguish real accounts from bots, and are calling on product leads to restore the feature. The change is disrupting timelines, discovery and influencer trust metrics, prompting follow-back drives, manual checks, and debate over authenticity of large followings.","data":[15,8,1,0,7,7,1,3,3,1,3,4,5,2,3,4,51,11,3,6,1,6,3,6,9,2,7,3,6,1,2,14,5,0,5,2,3,4,3,11,3,1,4,4,4,0,2,0,3,3,11,4,4,6,4]},{"label":"S&P500 all-time-highs","topics":"spx,spy,d1,ath,ndx","description":"Social chatter focuses on the S&P 500 (SPY/SPX) pushing toward all-time highs—some calling for SPY 700—driven by technical signals (inside-day compression, demand zones, premarket prints) and OPEX dynamics. Participants note the rally has shrugged off geopolitical shocks (Iran), with rotation into leaders including crypto (BTC/ETH) and MAG7/software, but many warn of a potential local top, elevated risk from high-yield credit, and skeptical, short‑term trader behavior.","data":[8,7,18,5,2,3,2,6,7,4,4,5,4,6,4,3,9,3,4,0,6,9,1,2,1,3,6,3,5,7,4,4,9,1,5,3,6,6,17,3,2,1,8,6,11,7,6,6,7,6,1,1,3,2,6]},{"label":"DeFi","topics":"defi,lending,protocols,feeds,borrowing","description":"Conversation centers on DeFi’s current fragmentation and multiple efforts to unify and professionalize the space. Threads highlight user-friendly stacks (Katana, KyberSwap, Quicknode), middleware and APIs (UnifAI, z_fi), Cardano-native solutions (DeFi Kernel, $NIGHT), and institutional approaches (capital-efficient supervised loans, managers posting first-loss capital). Also discussed: private/anonymized DeFi narratives, adaptability as a competitive edge, and bullish expectations for DeFi’s next growth cycle (”DeFi summer 2.0”).","data":[4,4,3,1,11,7,11,1,1,6,7,2,8,2,9,5,8,6,3,4,7,5,3,10,0,7,13,1,7,3,6,5,5,3,4,3,5,3,2,2,9,2,4,8,5,5,3,6,5,5,6,2,1,9,7]},{"label":"Art","topics":"artists,artist,art,artworks,artwork","description":"Social posts celebrating World Art Day and prompting community art sharing, feedback, and submissions (Masterpiece of the Day). Topics include graffiti and art-school towns, naming and storytelling for artworks, physical pieces entering museum collections, and creators minting 1/1 NFTs and running auctions on-chain (Manifold/mainnet). Overall a mix of traditional art appreciation, community growth, and NFT activity.","data":[5,4,45,0,6,2,4,4,5,2,8,4,2,6,4,10,7,3,3,6,4,1,2,6,3,2,4,4,13,2,4,1,2,6,2,9,1,2,5,0,1,0,3,4,2,7,1,7,8,1,6,1,4,11,4]},{"label":"RWA","topics":"tokenization,tokenized,tokenize,jamie,issuers","description":"Social discussion centers on rapid institutional adoption of asset tokenization—especially tokenized treasuries and funds—driven by BlackRock, JPMorgan, Franklin, Circle and others. Ethereum leads market share with over $22.5B in tokenized on‑chain assets and U.S. treasury token caps exceeding $13B. Critical enablers are 1:1 backing, atomic on‑chain settlement, pre‑indexed token data/APIs (The Graph), custody and compliance infrastructure; distribution and regulatory complexity remain the main scaling bottlenecks. Tokenization is framed as unlocking broader access, new liquidity, and more stable performance for real‑world assets rather than merely minting more tokens.","data":[2,2,3,8,5,4,11,5,0,3,5,1,0,7,3,6,8,5,5,1,4,1,1,7,6,5,5,5,2,4,10,5,3,2,2,3,3,4,7,3,7,9,5,2,5,8,7,2,27,6,8,3,2,3,2]},{"label":"Covenant AI drama with TAO","topics":"bittensor,covenant,gtgt,tao,decentralization","description":"Covenant AI, a major Bittensor subnet, announced it was leaving the network and sold 37,000 TAO (~$10M), triggering a ~25–27% $TAO price crash and wiping significant market cap. Covenant accused co‑founder Jacob “Const” Steeves of disproportionate control and criticized governance/emissions decisions; the community is sharply divided over whether this was a rug or a governance failure. Supporters stress Bittensor’s open-source incentives, subnet innovation (e.g., SN3, Nakamoto coefficient data, Yuma consensus) and resilience, while critics highlight free‑rider problems, tokenomics and systemic risks going forward.","data":[2,2,5,3,5,7,0,1,3,3,12,2,6,13,3,16,6,8,1,5,22,2,3,7,0,5,4,5,5,3,2,1,5,4,7,3,4,3,4,1,2,3,6,5,8,15,4,2,4,2,3,3,3,3,3]},{"label":"Institutions","topics":"schwab,charles,artificial,bier,sachs","description":"Discussion highlights accelerating institutional crypto adoption (Charles Schwab retail BTC/ETH trading, Goldman bitcoin-linked ETF filing, Broadridge/tokenized-asset platforms, banks prepping products) alongside regulatory progress on US market-structure bills. Threads also flag tax/reporting avoidance by retail traders, market impacts (prediction markets, payouts, litigation), and a strong AI intersection—exchanges pursuing Anthropic’s Claude, Anthropic product updates/expansion, and warnings about AI bot traffic and security risks.","data":[4,5,22,7,1,3,4,6,2,5,5,5,9,2,4,10,10,5,1,0,2,3,0,11,2,13,1,1,1,0,1,0,7,7,4,3,7,2,2,11,12,15,1,1,6,4,5,0,3,9,5,2,2,0,4]},{"label":"Gaming","topics":"games,gaming,gameplay,chess,puzzle","description":"Social conversation centers on video game lifecycle problems (server shutdowns, abandonware, emulation, and preservation), creator frustration with design/controls and streamer/game fatigue, plus dev tools and endless-mode ideas. Parallel thread highlights blockchain gaming and Play‑to‑Earn—projects claiming on‑chain permanence, skill‑based ecosystems, token lists, and user acquisition updates—arguing Web3 can keep games “alive” after studios leave.","data":[3,4,1,3,3,1,4,2,2,4,5,2,6,5,7,8,6,2,36,6,7,1,5,3,3,2,13,1,5,2,0,3,6,7,3,8,1,5,3,7,1,3,0,4,6,2,4,4,1,5,4,8,6,0,2]},{"label":"ETH price","topics":"2400,2300,eth,fakeout,3k","description":"Social chatter centers on Ethereum’s near-term price action: bulls anticipate a large breakout while technicals show consolidation around $2,260–$2,360. Key levels: support ~$2,150–2,260 (50 SMA/100D SMA) and resistance ~$2,300–2,400; indicators include a forming death cross and declining volume/derivatives activity. Sentiment is mixed—optimistic price targets (3k–8k) and bullish setups vs. caution from institutional losses and fragile trend structure. Traders are watching catalysts, alt bets like ROAR and OP, and upcoming technical tests for confirmation of a move.","data":[1,0,3,4,4,1,7,6,7,7,1,7,2,6,12,8,0,2,4,6,2,3,6,1,2,1,5,8,7,3,2,7,1,5,2,5,8,1,8,6,4,3,9,3,1,6,3,5,1,9,4,2,8,3,3]},{"label":"RAVE pump","topics":"rave,altcoins,altseason,dump,wtf","description":"Social posts warn that $RAVE is exhibiting classic pump-and-dump behavior: rapid, large spikes with heavy volume, concentrated supply (dev/whale-held), and trading activity migrating to AsterDex. Users report it’s hard to short, late buyers are FOMO’ing in, and insiders may rug-pull or dump, causing cascades. Frequent price targets and volatility warnings encourage avoiding leverage and treating the token as extremely risky.","data":[1,1,0,1,1,1,2,0,0,0,5,1,0,1,1,2,1,9,1,2,2,1,2,0,1,0,5,1,8,1,0,2,2,0,1,0,2,3,132,0,5,1,3,1,2,2,2,3,3,2,2,2,2,2,6]},{"label":"Whales","topics":"whale,whales,2013,accumulated,20x","description":"Large whales are highly active across BTC and ETH markets—opening big leveraged longs and shorts, rotating positions (Matrixport-linked trades, Hyperliquid and Binance flows), and realizing profits while still holding massive exposure. On-chain signals show heavy accumulation (270k BTC bought in 30 days, wallets with 1k–10k BTC controlling >21% supply) and low exchange balances, creating bullish conviction but raising liquidation risk from concentrated high-leverage bets. Macro liquidity (Treasury buybacks, Fed injections) and changing institutional flows (CME basis compressing, ETF/futures dynamics) are amplifying moves and potential volatility.","data":[18,0,2,3,2,5,8,1,1,3,0,5,2,4,2,0,2,1,1,2,3,4,1,3,2,6,9,1,1,7,2,2,5,5,5,1,4,5,2,8,2,0,2,2,2,0,3,1,4,1,1,9,1,49,4]},{"label":"HYPE price","topics":"hype,44,burned,lit,htf","description":"Social chatter is highly bullish on the HYPE token: traders report a daily breakout above $40–44 with targets at $50 and even $100, citing strong momentum and technical setups. Community updates highlight supply reductions (token burns/lockups), an upcoming airdrop via NestExchange, and rising rewards in the HYPE Engine Vault (extra ~$174k toward $223k veNEST). Analysts point to HYPE’s strong recovery (noted ~112% from its 2026 low), decent volume, and limited macro downside, keeping a buy/hold bias and eyeing new all-time highs.","data":[7,5,2,3,3,10,7,5,2,6,2,2,3,1,5,4,4,5,8,1,2,4,23,4,1,1,1,6,5,3,1,4,3,2,2,4,4,5,8,4,0,2,5,2,3,10,1,1,8,3,4,2,2,2,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-119.ts b/priv/repo/major_topics_seed/data-119.ts deleted file mode 100644 index 3e60092b0f..0000000000 --- a/priv/repo/major_topics_seed/data-119.ts +++ /dev/null @@ -1,285 +0,0 @@ -export const NARRATIVES = { - labels: [ - '09.04.26', - '10.04.26', - '10.04.26', - '10.04.26', - '10.04.26', - '10.04.26', - '10.04.26', - '10.04.26', - '11.04.26', - '11.04.26', - '11.04.26', - '11.04.26', - '11.04.26', - '11.04.26', - '11.04.26', - '11.04.26', - '12.04.26', - '12.04.26', - '12.04.26', - '12.04.26', - '12.04.26', - '12.04.26', - '12.04.26', - '12.04.26', - '13.04.26', - '13.04.26', - '13.04.26', - '13.04.26', - '13.04.26', - '13.04.26', - '13.04.26', - '13.04.26', - '14.04.26', - '14.04.26', - '14.04.26', - '14.04.26', - '14.04.26', - '14.04.26', - '14.04.26', - '14.04.26', - '15.04.26', - '15.04.26', - '15.04.26', - '15.04.26', - '15.04.26', - '15.04.26', - '15.04.26', - '15.04.26', - '16.04.26', - '16.04.26', - '16.04.26', - '16.04.26', - '16.04.26', - '16.04.26', - '16.04.26', - ], - datasets: [ - { - label: 'AI agents', - topics: 'x402,autonomous,automation,productivity,agentic', - description: - 'Conversation focuses on AI agents and systems moving beyond big models into real-world workflows — lowering software costs, powering design and Web3 dApps, and reshaping trading and enterprise work. Persistent themes: enterprise governance and execution risk versus hype, UX for agent correction and recovery, talent flows, and emerging marketplaces for trusted agents with reputation and payments. Overall sentiment: many early alphas exist; winners will be decided by execution, integration, and trust solutions.', - data: [ - 23, 142, 30, 37, 25, 17, 35, 28, 35, 41, 32, 21, 34, 26, 45, 25, 21, 40, 26, 24, 26, 27, 34, - 44, 23, 27, 27, 26, 21, 17, 17, 26, 29, 27, 40, 30, 24, 23, 32, 22, 27, 27, 12, 40, 16, 15, - 36, 47, 13, 30, 27, 23, 19, 24, 31, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '76k,75k,75000,80k,73k', - description: - 'Social posts focus on a bullish Bitcoin breakout and near‑term upside: traders cite technical setups (Type‑1 breakout, falling wedge, Fibonacci golden pocket), momentum past $73–76k, and targets around $80–90k (with some extreme calls like $250k). Analysts also flag on‑chain resistance levels (True Market Mean, short‑term holder realized price), derivatives/options risk and the Puell Multiple as reasons for caution; many addresses remain underwater, so participants are watching for retrace buying opportunities or a potential fakeout.', - data: [ - 16, 10, 19, 11, 18, 72, 42, 30, 18, 18, 20, 26, 9, 20, 10, 22, 16, 11, 11, 23, 9, 35, 24, - 11, 7, 8, 25, 15, 21, 8, 19, 19, 5, 12, 11, 22, 26, 25, 39, 25, 13, 15, 31, 12, 15, 19, 17, - 25, 22, 29, 16, 10, 22, 9, 16, - ], - infofi: false, - }, - { - label: 'Strategy and STRC', - topics: 'mstr,strc,saylors,saylor,115', - description: - 'Discussion centers on MicroStrategy’s STRC (strategy preferred stock) as a capital engine to buy massive amounts of Bitcoin. Tweets report billions raised and thousands of BTC purchased (e.g., 3,447 BTC in a day, 9,153 BTC in a week, 26k+ BTC overall), describe STRC’s high yield (~11.5%) and dividend/ex‑dividend mechanics, and debate arbitrage, NAV premium justification, and market impact (STRC as the marginal BTC buyer). Community ideas include putting STRC on‑chain, daily dividends, and protections for MSTR holders; skeptics note unrealistic dividend obligation scenarios and systemic implications for BTC supply and MSTR valuation.', - data: [ - 25, 6, 5, 13, 25, 41, 33, 7, 6, 9, 10, 16, 3, 11, 16, 10, 10, 3, 14, 15, 12, 18, 5, 13, 7, - 4, 13, 9, 10, 11, 18, 8, 7, 8, 11, 10, 13, 32, 12, 5, 21, 10, 14, 9, 9, 18, 7, 9, 14, 9, 6, - 20, 2, 9, 5, - ], - infofi: false, - }, - { - label: 'Hormuz blockade', - topics: 'vessels,ports,tanker,mines,traffic', - description: - 'Live coverage describes a de facto US maritime blockade and mine‑clearing operation in the Strait of Hormuz amid rising US–Iran tensions. Iran has deployed mines and intermittently paused transit yet continued exports, while Houthi threats to the Red Sea and potential rerouting around the Cape of Good Hope amplify shipping, insurance, and oil‑supply risks. Market impact has been muted so far despite price spikes; ship transit counts (AIS) and official claims remain contested.', - data: [ - 10, 8, 13, 3, 9, 43, 3, 7, 26, 18, 4, 6, 18, 6, 13, 12, 11, 12, 4, 5, 3, 3, 8, 7, 2, 3, 7, - 3, 6, 4, 35, 15, 10, 25, 8, 13, 4, 8, 9, 18, 16, 26, 19, 7, 7, 13, 12, 8, 4, 13, 7, 13, 19, - 8, 6, - ], - infofi: false, - }, - { - label: "Trump's involvement in Iran", - topics: 'blockading,navy,iranians,ships,naval', - description: - 'Social posts report the Trump administration threatening and enacting a naval blockade of Iranian ports and the Strait of Hormuz while pressing Iran for a deal on its nuclear program. Statements include threats to destroy Iranian vessels, stop oil flows, and force Tehran’s compliance, amid critics warning this could escalate into military conflict and disrupt global oil markets; Iran calls the threats a bluff. The debate centers on diplomacy versus force and the potential economic and geopolitical fallout.', - data: [ - 5, 7, 21, 2, 3, 12, 0, 4, 6, 8, 4, 4, 9, 8, 2, 4, 5, 1, 1, 8, 5, 6, 6, 6, 5, 10, 6, 5, 2, 4, - 2, 5, 3, 17, 2, 7, 11, 5, 8, 8, 26, 65, 6, 6, 10, 4, 18, 12, 6, 8, 3, 4, 16, 4, 3, - ], - infofi: false, - }, - { - label: 'Clarity Act', - topics: 'clarity,armstrong,senate,senator,act', - description: - 'Social discussion centers on the bipartisan push to pass the CLARITY Act to provide clear federal rules for digital assets. Senators (notably Lummis and Tim Scott) and industry leaders (e.g., Coinbase, Circle) are urging passage, citing institutional adoption, stablecoin clarity, and market impact. However, markup and hearings have slipped, creating timeline uncertainty (hopes for April/May vs. warnings that delay could push action to 2030).', - data: [ - 3, 9, 4, 7, 5, 2, 2, 13, 5, 11, 13, 4, 10, 2, 7, 8, 4, 3, 2, 1, 3, 7, 1, 2, 1, 3, 5, 3, 2, - 6, 1, 9, 2, 5, 10, 5, 6, 3, 5, 13, 6, 44, 3, 2, 2, 7, 0, 9, 7, 2, 13, 1, 9, 3, 4, - ], - infofi: false, - }, - { - label: 'Oil price', - topics: 'wti,crude,barrel,brent,cl', - description: - 'Social posts focus on a sharp pickup in crude oil volatility after Middle East tensions (Iran/Saudi strikes), with forecasts of elevated prices for months. Contributors note large divergences between physical crude prices (e.g., Forties) and paper/futures, concern about strained supply and delivery risks, and accusations of market manipulation. The conversation also highlights crypto-native access to oil risk via 24/7 crude perpetuals on platforms like TradeXYZ and HyperliquidX, with multi-million-dollar leveraged longs and unusual options/call flow amplifying short-term moves.', - data: [ - 6, 2, 3, 6, 3, 4, 2, 5, 10, 4, 21, 6, 5, 8, 5, 3, 1, 2, 3, 5, 4, 2, 1, 6, 4, 4, 3, 4, 10, 9, - 2, 4, 3, 44, 4, 7, 22, 2, 1, 4, 6, 2, 9, 1, 6, 5, 6, 2, 8, 2, 2, 4, 5, 12, 0, - ], - infofi: false, - }, - { - label: 'TAO pump and dump', - topics: 'tao,fud,rugging,240,sl', - description: - 'Conversation focuses on $TAO’s extreme volatility and suspected pump-and-rug behavior. Traders debate technical entry/exit points (roughly $220–$300), key supports/dump zones, stacked liquidity above price, and the risk of large-holder/Binance dumps. Sentiment is mixed: some expect bounces and short-term plays, while others warn of rug pulls, influencer-driven hype, and advise caution.', - data: [ - 0, 1, 2, 8, 5, 2, 6, 9, 4, 4, 4, 4, 5, 3, 3, 4, 3, 3, 6, 5, 9, 10, 8, 4, 2, 5, 12, 11, 6, 5, - 7, 1, 3, 1, 4, 3, 5, 1, 4, 1, 10, 3, 9, 4, 6, 12, 27, 8, 6, 6, 7, 2, 5, 3, 5, - ], - infofi: false, - }, - { - label: 'Twitter bot purge', - topics: 'followers,mutuals,mutual,follower,instagram', - description: - 'Users are reacting to a platform bot purge and the removal of the “mutuals” indicator from profiles. Many report large follower drops (hundreds to tens of thousands), argue mutuals were a key credibility signal to distinguish real accounts from bots, and are calling on product leads to restore the feature. The change is disrupting timelines, discovery and influencer trust metrics, prompting follow-back drives, manual checks, and debate over authenticity of large followings.', - data: [ - 15, 8, 1, 0, 7, 7, 1, 3, 3, 1, 3, 4, 5, 2, 3, 4, 51, 11, 3, 6, 1, 6, 3, 6, 9, 2, 7, 3, 6, 1, - 2, 14, 5, 0, 5, 2, 3, 4, 3, 11, 3, 1, 4, 4, 4, 0, 2, 0, 3, 3, 11, 4, 4, 6, 4, - ], - infofi: false, - }, - { - label: 'S&P500 all-time-highs', - topics: 'spx,spy,d1,ath,ndx', - description: - 'Social chatter focuses on the S&P 500 (SPY/SPX) pushing toward all-time highs—some calling for SPY 700—driven by technical signals (inside-day compression, demand zones, premarket prints) and OPEX dynamics. Participants note the rally has shrugged off geopolitical shocks (Iran), with rotation into leaders including crypto (BTC/ETH) and MAG7/software, but many warn of a potential local top, elevated risk from high-yield credit, and skeptical, short‑term trader behavior.', - data: [ - 8, 7, 18, 5, 2, 3, 2, 6, 7, 4, 4, 5, 4, 6, 4, 3, 9, 3, 4, 0, 6, 9, 1, 2, 1, 3, 6, 3, 5, 7, - 4, 4, 9, 1, 5, 3, 6, 6, 17, 3, 2, 1, 8, 6, 11, 7, 6, 6, 7, 6, 1, 1, 3, 2, 6, - ], - infofi: false, - }, - { - label: 'DeFi', - topics: 'defi,lending,protocols,feeds,borrowing', - description: - 'Conversation centers on DeFi’s current fragmentation and multiple efforts to unify and professionalize the space. Threads highlight user-friendly stacks (Katana, KyberSwap, Quicknode), middleware and APIs (UnifAI, z_fi), Cardano-native solutions (DeFi Kernel, $NIGHT), and institutional approaches (capital-efficient supervised loans, managers posting first-loss capital). Also discussed: private/anonymized DeFi narratives, adaptability as a competitive edge, and bullish expectations for DeFi’s next growth cycle (”DeFi summer 2.0”).', - data: [ - 4, 4, 3, 1, 11, 7, 11, 1, 1, 6, 7, 2, 8, 2, 9, 5, 8, 6, 3, 4, 7, 5, 3, 10, 0, 7, 13, 1, 7, - 3, 6, 5, 5, 3, 4, 3, 5, 3, 2, 2, 9, 2, 4, 8, 5, 5, 3, 6, 5, 5, 6, 2, 1, 9, 7, - ], - infofi: false, - }, - { - label: 'Art', - topics: 'artists,artist,art,artworks,artwork', - description: - 'Social posts celebrating World Art Day and prompting community art sharing, feedback, and submissions (Masterpiece of the Day). Topics include graffiti and art-school towns, naming and storytelling for artworks, physical pieces entering museum collections, and creators minting 1/1 NFTs and running auctions on-chain (Manifold/mainnet). Overall a mix of traditional art appreciation, community growth, and NFT activity.', - data: [ - 5, 4, 45, 0, 6, 2, 4, 4, 5, 2, 8, 4, 2, 6, 4, 10, 7, 3, 3, 6, 4, 1, 2, 6, 3, 2, 4, 4, 13, 2, - 4, 1, 2, 6, 2, 9, 1, 2, 5, 0, 1, 0, 3, 4, 2, 7, 1, 7, 8, 1, 6, 1, 4, 11, 4, - ], - infofi: false, - }, - { - label: 'RWA', - topics: 'tokenization,tokenized,tokenize,jamie,issuers', - description: - 'Social discussion centers on rapid institutional adoption of asset tokenization—especially tokenized treasuries and funds—driven by BlackRock, JPMorgan, Franklin, Circle and others. Ethereum leads market share with over $22.5B in tokenized on‑chain assets and U.S. treasury token caps exceeding $13B. Critical enablers are 1:1 backing, atomic on‑chain settlement, pre‑indexed token data/APIs (The Graph), custody and compliance infrastructure; distribution and regulatory complexity remain the main scaling bottlenecks. Tokenization is framed as unlocking broader access, new liquidity, and more stable performance for real‑world assets rather than merely minting more tokens.', - data: [ - 2, 2, 3, 8, 5, 4, 11, 5, 0, 3, 5, 1, 0, 7, 3, 6, 8, 5, 5, 1, 4, 1, 1, 7, 6, 5, 5, 5, 2, 4, - 10, 5, 3, 2, 2, 3, 3, 4, 7, 3, 7, 9, 5, 2, 5, 8, 7, 2, 27, 6, 8, 3, 2, 3, 2, - ], - infofi: false, - }, - { - label: 'Covenant AI drama with TAO', - topics: 'bittensor,covenant,gtgt,tao,decentralization', - description: - 'Covenant AI, a major Bittensor subnet, announced it was leaving the network and sold 37,000 TAO (~$10M), triggering a ~25–27% $TAO price crash and wiping significant market cap. Covenant accused co‑founder Jacob “Const” Steeves of disproportionate control and criticized governance/emissions decisions; the community is sharply divided over whether this was a rug or a governance failure. Supporters stress Bittensor’s open-source incentives, subnet innovation (e.g., SN3, Nakamoto coefficient data, Yuma consensus) and resilience, while critics highlight free‑rider problems, tokenomics and systemic risks going forward.', - data: [ - 2, 2, 5, 3, 5, 7, 0, 1, 3, 3, 12, 2, 6, 13, 3, 16, 6, 8, 1, 5, 22, 2, 3, 7, 0, 5, 4, 5, 5, - 3, 2, 1, 5, 4, 7, 3, 4, 3, 4, 1, 2, 3, 6, 5, 8, 15, 4, 2, 4, 2, 3, 3, 3, 3, 3, - ], - infofi: false, - }, - { - label: 'Institutions', - topics: 'schwab,charles,artificial,bier,sachs', - description: - 'Discussion highlights accelerating institutional crypto adoption (Charles Schwab retail BTC/ETH trading, Goldman bitcoin-linked ETF filing, Broadridge/tokenized-asset platforms, banks prepping products) alongside regulatory progress on US market-structure bills. Threads also flag tax/reporting avoidance by retail traders, market impacts (prediction markets, payouts, litigation), and a strong AI intersection—exchanges pursuing Anthropic’s Claude, Anthropic product updates/expansion, and warnings about AI bot traffic and security risks.', - data: [ - 4, 5, 22, 7, 1, 3, 4, 6, 2, 5, 5, 5, 9, 2, 4, 10, 10, 5, 1, 0, 2, 3, 0, 11, 2, 13, 1, 1, 1, - 0, 1, 0, 7, 7, 4, 3, 7, 2, 2, 11, 12, 15, 1, 1, 6, 4, 5, 0, 3, 9, 5, 2, 2, 0, 4, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'games,gaming,gameplay,chess,puzzle', - description: - 'Social conversation centers on video game lifecycle problems (server shutdowns, abandonware, emulation, and preservation), creator frustration with design/controls and streamer/game fatigue, plus dev tools and endless-mode ideas. Parallel thread highlights blockchain gaming and Play‑to‑Earn—projects claiming on‑chain permanence, skill‑based ecosystems, token lists, and user acquisition updates—arguing Web3 can keep games “alive” after studios leave.', - data: [ - 3, 4, 1, 3, 3, 1, 4, 2, 2, 4, 5, 2, 6, 5, 7, 8, 6, 2, 36, 6, 7, 1, 5, 3, 3, 2, 13, 1, 5, 2, - 0, 3, 6, 7, 3, 8, 1, 5, 3, 7, 1, 3, 0, 4, 6, 2, 4, 4, 1, 5, 4, 8, 6, 0, 2, - ], - infofi: false, - }, - { - label: 'ETH price', - topics: '2400,2300,eth,fakeout,3k', - description: - 'Social chatter centers on Ethereum’s near-term price action: bulls anticipate a large breakout while technicals show consolidation around $2,260–$2,360. Key levels: support ~$2,150–2,260 (50 SMA/100D SMA) and resistance ~$2,300–2,400; indicators include a forming death cross and declining volume/derivatives activity. Sentiment is mixed—optimistic price targets (3k–8k) and bullish setups vs. caution from institutional losses and fragile trend structure. Traders are watching catalysts, alt bets like ROAR and OP, and upcoming technical tests for confirmation of a move.', - data: [ - 1, 0, 3, 4, 4, 1, 7, 6, 7, 7, 1, 7, 2, 6, 12, 8, 0, 2, 4, 6, 2, 3, 6, 1, 2, 1, 5, 8, 7, 3, - 2, 7, 1, 5, 2, 5, 8, 1, 8, 6, 4, 3, 9, 3, 1, 6, 3, 5, 1, 9, 4, 2, 8, 3, 3, - ], - infofi: false, - }, - { - label: 'RAVE pump', - topics: 'rave,altcoins,altseason,dump,wtf', - description: - 'Social posts warn that $RAVE is exhibiting classic pump-and-dump behavior: rapid, large spikes with heavy volume, concentrated supply (dev/whale-held), and trading activity migrating to AsterDex. Users report it’s hard to short, late buyers are FOMO’ing in, and insiders may rug-pull or dump, causing cascades. Frequent price targets and volatility warnings encourage avoiding leverage and treating the token as extremely risky.', - data: [ - 1, 1, 0, 1, 1, 1, 2, 0, 0, 0, 5, 1, 0, 1, 1, 2, 1, 9, 1, 2, 2, 1, 2, 0, 1, 0, 5, 1, 8, 1, 0, - 2, 2, 0, 1, 0, 2, 3, 132, 0, 5, 1, 3, 1, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 6, - ], - infofi: false, - }, - { - label: 'Whales', - topics: 'whale,whales,2013,accumulated,20x', - description: - 'Large whales are highly active across BTC and ETH markets—opening big leveraged longs and shorts, rotating positions (Matrixport-linked trades, Hyperliquid and Binance flows), and realizing profits while still holding massive exposure. On-chain signals show heavy accumulation (270k BTC bought in 30 days, wallets with 1k–10k BTC controlling >21% supply) and low exchange balances, creating bullish conviction but raising liquidation risk from concentrated high-leverage bets. Macro liquidity (Treasury buybacks, Fed injections) and changing institutional flows (CME basis compressing, ETF/futures dynamics) are amplifying moves and potential volatility.', - data: [ - 18, 0, 2, 3, 2, 5, 8, 1, 1, 3, 0, 5, 2, 4, 2, 0, 2, 1, 1, 2, 3, 4, 1, 3, 2, 6, 9, 1, 1, 7, - 2, 2, 5, 5, 5, 1, 4, 5, 2, 8, 2, 0, 2, 2, 2, 0, 3, 1, 4, 1, 1, 9, 1, 49, 4, - ], - infofi: false, - }, - { - label: 'HYPE price', - topics: 'hype,44,burned,lit,htf', - description: - 'Social chatter is highly bullish on the HYPE token: traders report a daily breakout above $40–44 with targets at $50 and even $100, citing strong momentum and technical setups. Community updates highlight supply reductions (token burns/lockups), an upcoming airdrop via NestExchange, and rising rewards in the HYPE Engine Vault (extra ~$174k toward $223k veNEST). Analysts point to HYPE’s strong recovery (noted ~112% from its 2026 low), decent volume, and limited macro downside, keeping a buy/hold bias and eyeing new all-time highs.', - data: [ - 7, 5, 2, 3, 3, 10, 7, 5, 2, 6, 2, 2, 3, 1, 5, 4, 4, 5, 8, 1, 2, 4, 23, 4, 1, 1, 1, 6, 5, 3, - 1, 4, 3, 2, 2, 4, 4, 5, 8, 4, 0, 2, 5, 2, 3, 10, 1, 1, 8, 3, 4, 2, 2, 2, 1, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-12.json b/priv/repo/major_topics_seed/data-12.json deleted file mode 100644 index 657e4be6b2..0000000000 --- a/priv/repo/major_topics_seed/data-12.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["21.03.24","22.03.24","22.03.24","22.03.24","22.03.24","22.03.24","22.03.24","22.03.24","23.03.24","23.03.24","23.03.24","23.03.24","23.03.24","23.03.24","23.03.24","23.03.24","24.03.24","24.03.24","24.03.24","24.03.24","24.03.24","24.03.24","24.03.24","24.03.24","25.03.24","25.03.24","25.03.24","25.03.24","25.03.24","25.03.24","25.03.24","25.03.24","26.03.24","26.03.24","26.03.24","26.03.24","26.03.24","26.03.24","26.03.24","26.03.24","27.03.24","27.03.24","27.03.24","27.03.24","27.03.24","27.03.24","27.03.24","27.03.24","28.03.24","28.03.24","28.03.24","28.03.24","28.03.24","28.03.24","28.03.24"],"datasets":[{"label":"Trading strategies","topics":"focus,people,dont,youre,bull","description":"The key topics discussed in the messages from Twitter regarding the crypto industry include:\n\n1. Avoiding leverage trading and focusing on spot trading until the market becomes clearer.\n2. Surviving pullbacks in a bull market and waiting for prices to move higher.\n3. Not letting others' trades or ideas distract you from your own plans.\n4. Becoming an expert in one niche within the crypto industry and diversifying picks within that niche.\n5. Key principles for taking and keeping profits during the current market cycle.\n6. Dream life aspirations for crypto investors, including financial freedom and working on something they love.\n7. Speculation on the impact of low interest rates on various asset classes, including stocks, Bitcoin, and \"poop coins.\"\n8. Uncertainty surrounding the US Federal Reserve's next move and the potential for a market shift.\n\nOverall, the messages reflect a mix of trading advice, market analysis, and personal reflections on the crypto industry and financial markets.","data":[8,8,8,12,0,0,4,12,5,10,7,13,12,4,4,16,2,9,11,14,6,17,9,17,15,16,10,13,16,21,14,22,9,16,3,8,29,7,10,2,17,15,13,10,11,11,23,14,15,6,19,5,13,9,19]},{"label":"Art","topics":"art,artwork,artist,artists,cryptoart","description":"The key topics discussed in the messages from twitter include:\n1. Appreciation of art and artists\n2. Discussion on the legality of nude art\n3. Critique and reflection on art\n4. Solo art shows featuring multiple mediums\n5. Selling and buying art\n6. Plagiarism and attribution in art\n7. Digital art auctions\n8. Art frames and hardware\n9. Photography and Leica cameras\n10. NFT art and generative artwork\n11. Collecting non-speculative assets for personal enjoyment and support of peers.","data":[15,13,94,13,1,0,3,7,13,8,15,21,12,16,6,9,6,4,7,7,11,6,12,8,7,6,5,11,6,12,23,4,10,16,8,12,12,12,7,8,10,3,9,13,7,9,18,16,9,8,11,5,8,7,16]},{"label":"DOGE","topics":"doge,dogecoin,dc,macro,elon","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin (DOGE) experiencing a sudden price jump and potential rally, with predictions of reaching $1 and even $3\n- Speculation on the potential growth of other cryptocurrencies like $SOL, $VARA, $BTC, $SFM, and $Wif\n- Calls for investors to stop overthinking and start making profits, with a focus on the current market cycle\n- Elon Musk's interest in $YIKES and its potential impact on the market\n- Discussion on the behavior of Dogecoin holders and the recent market adjustments\n- Interest in Chinese community members increasing their holdings in Dogecoin and other cryptocurrencies like #cryptopunks\n\nOverall, the sentiment seems to be optimistic and focused on potential profits and market trends in the crypto industry.","data":[4,4,2,6,0,0,3,3,5,9,4,1,3,6,209,9,6,4,4,4,4,5,5,6,7,4,2,5,13,2,9,10,6,5,3,5,10,7,6,13,4,5,9,14,3,2,9,8,5,4,11,6,3,4,3]},{"label":"BTC","topics":"bitcoin,capture,magazine,god,bitcoiners","description":"The key topics currently being discussed in the crypto industry on Twitter include the popularity and growth of Bitcoin, with mentions of adding Bitcoin to portfolios, development threads, and funding rates. There is also discussion about the potential for Bitcoin to disrupt traditional financial systems and the importance of transparency and honesty in the industry. Additionally, there is interest in creating an open-source collaboration book about Bitcoin to educate users at different levels of expertise. Overall, the sentiment towards Bitcoin appears positive and optimistic about its future potential.","data":[7,4,8,3,57,48,2,6,7,12,12,6,4,3,2,9,4,8,8,7,10,13,8,7,5,7,7,8,4,13,6,8,1,9,3,11,4,12,13,6,5,8,7,6,9,8,9,2,9,7,14,2,4,5,21]},{"label":"AI","topics":"ai,nvidia,generative,artificial,intelligence","description":"The key topics discussed in the messages from twitter are:\n1. Artificial Intelligence (AI) in the crypto industry\n2. AGI (Artificial General Intelligence) and super-intelligence predictions\n3. Competition among AI industry leaders like NVIDIA, Google, Intel, and Qualcomm\n4. The transformative role of AI in trading\n5. Investment opportunities in AI-related projects and coins\n6. Top crypto coins for 2024 related to gaming and AI\n\nOverall, the messages highlight the growing importance and impact of AI in the crypto industry, with discussions ranging from market trends to investment opportunities and technological advancements.","data":[14,44,15,10,1,1,6,6,4,6,6,12,3,14,2,9,9,7,6,8,8,11,15,5,9,15,12,5,3,3,7,3,7,4,8,11,6,5,5,8,7,12,3,7,11,4,11,6,8,9,10,6,6,2,17]},{"label":"GameFi","topics":"gaming,games,game,web3,play","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n- GameFi and the integration of gaming with cryptocurrency, such as the launch of new games and platforms like Axie Infinity and Vision Game.\n- The rise of Web3 gaming and the potential for gaming content creators to dominate social media timelines.\n- The development of on-chain infrastructure for gaming guilds, as seen with Yield Guild Games transforming into a protocol for 'Pixels' and beyond.\n- The implementation of layer 2 blockchain solutions for gaming, as demonstrated by Arbitrum's Gaming Catalyst Program.\n- Collaborations and events within the GameFi space, such as the Bitrue x Gala 2024 GameFi Carnival offering airdrops and zero trading fees for Gala/USDT trading pairs.","data":[6,2,9,2,0,0,1,8,3,6,4,7,1,4,3,4,4,3,4,8,65,6,7,5,4,6,4,10,10,7,3,2,1,8,7,5,7,29,6,5,6,8,6,1,5,10,4,4,1,3,3,11,5,5,4]},{"label":"Memecoins","topics":"meme,memecoin,coins,memecoins,coin","description":"The messages from Twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are talking about buying meme coins, predicting their prices, and even raising funds for meme coins. There is also a cautionary note about investing in meme coins, with a reminder to only invest what you can afford to lose. Overall, it seems like meme coins are a hot topic of conversation and investment in the crypto community.","data":[7,2,1,7,1,2,0,5,16,4,8,3,3,2,1,4,2,4,4,5,6,6,7,7,9,2,5,2,3,6,7,10,60,2,7,4,4,7,5,3,7,19,6,1,11,1,4,5,11,8,5,8,5,5,3]},{"label":"NFT","topics":"nft,nfts,comeback,punk,3d","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include NFTs, minting NFTs, NFT drops, fractionalized NFTs, partnerships in the NFT marketplace, the value and risks associated with NFTs, upcoming NFT mints, and the use of different cryptocurrencies like ETH, BTC, and SOL in the NFT space. There is also mention of specific NFT projects such as Mistral, Pixelmon, and MetaFightOff, as well as platforms like Art Blocks and HuggingFace. Additionally, there is excitement around the potential of receiving real paintings through purchasing NFTs and the success of NFT Kid in raising 500 ETH in a short amount of time. Overall, the NFT market and its various aspects continue to be a hot topic of discussion within the crypto community.","data":[2,2,4,2,0,0,2,4,6,7,2,4,9,0,3,6,1,2,1,6,3,4,5,0,2,7,3,3,5,4,4,5,4,6,13,1,4,2,8,8,7,2,6,0,4,4,5,4,6,4,0,7,3,2,4]},{"label":"RWA","topics":"rwa,rwas,tokenization,realworld,assets","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Real World Asset (RWA) tokenization, the rise of RWA projects on platforms like Uniswap and Arbitrum, the potential for tokenizing assets on chain by companies like BlackRock, and the growth of USD-pegged stablecoins and tokenized treasuries. There is also discussion about specific RWA projects like E Money Network (formerly Scallop), as well as comparisons between low-cap RWA altcoins like Kali, Fly, and Ves against larger projects like Bixin group, Coinbase ventures, and Arsenal, DWF Labs, Huawei. Additionally, there is mention of companies like Joltify Finance and Nexera being at the forefront of tokenization efforts in the industry. Overall, the sentiment seems to be positive towards the potential of RWA tokenization and its impact on the crypto market.","data":[1,2,1,4,2,4,0,3,1,1,1,1,3,1,1,3,4,4,2,1,0,1,5,1,1,3,7,5,8,3,4,1,1,7,2,8,1,1,6,3,9,19,4,0,2,2,3,0,2,5,3,2,1,4,2]},{"label":"BTC price","topics":"70k,100k,70000,71k,100000","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community are the price of Bitcoin reaching $70,000 and potentially heading towards $80,000, the resistance levels being broken, the consolidation around $70,000, projections for Bitcoin's future price ranging from $500 to $3.8 million in 10 years, and the UK holding 61k Bitcoin. There is also mention of potential market manipulation and the need for patience and steady holding in the face of price fluctuations. Overall, the sentiment seems to be optimistic about Bitcoin's future potential and growth.","data":[2,0,3,1,20,14,7,1,3,3,3,4,0,0,3,1,2,2,2,2,6,3,1,2,5,3,1,4,3,1,3,0,1,0,3,1,0,0,5,3,2,6,2,1,3,3,3,1,3,3,0,2,2,4,1]},{"label":"Altseason","topics":"altseason,altcoins,bonk,aero,pepe","description":"The key topics currently being discussed in the crypto community on Twitter are related to the launch of the Memecoin Bobaoppa by Taiwanese singer Jeffrey Huang. Huang has successfully raised $36 million for the project, attracting attention from the global crypto community. There is speculation about the potential growth of Bobaoppa, with some users predicting a 5x increase in value from $0.55 to $2.84. Additionally, there are discussions about the involvement of Huang in past ICOs and the skepticism surrounding his new project. There are also hints at a potential listing of Bobaoppa on Binance, with transactions involving the coin being monitored closely. Traders are discussing price movements and potential opportunities for profit, with some predicting significant gains in the near future. Overall, the community seems divided on the potential success of Bobaoppa, with some expressing excitement and others expressing caution.","data":[9,0,0,1,0,0,20,1,5,0,3,0,3,4,1,1,1,3,0,1,1,7,1,2,13,2,0,3,1,4,3,1,1,5,0,2,6,0,4,6,3,0,0,8,4,0,4,1,8,0,1,2,5,0,0]},{"label":"Solana","topics":"sol,solana,solanas,presale,launches","description":"The key topics currently discussed in the messages from Twitter about the crypto industry include:\n1. Solana (SOL) experiencing a price increase and successful retests\n2. Updates and potential of Solana network\n3. Trading strategies and gains related to SOL\n4. SORA Ecosystem Integrated Plan\n5. Whale alert for shorting SOL on Binance\n6. Speculation about the future of SOL and potential rug pulls\n7. New projects launching on Solana\n8. Discussion about the reliability and performance of Solana as a blockchain\n9. Mention of specific tokens like $GPT and $TAOLIE on Solana\n10. Criticism and skepticism towards Solana and its founder, SBF\n\nOverall, the sentiment seems to be mixed with excitement about the potential of Solana and new projects, but also concerns about the reliability and potential risks associated with investing in SOL.","data":[2,1,3,4,0,0,3,2,1,8,0,3,1,1,1,1,0,4,1,1,0,4,2,2,2,2,2,0,3,1,5,2,1,5,0,1,2,1,10,3,1,1,2,4,22,2,4,2,2,1,1,5,2,2,1]},{"label":"Inflation and FED","topics":"inflation,fed,rate,deflationary,economy","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Inflation: There are discussions about inflation rates, how they are measured, and their impact on various aspects of the economy. Some users are comparing historical inflation rates to current ones, while others are discussing the potential effects of inflation on different asset classes like Bitcoin.\n\n2. Interest Rates: Users are speculating about potential rate cuts by central banks and how they may affect the economy. There are also mentions of consumer sentiment and how it is influenced by changes in interest rates.\n\n3. Bitcoin: The discussions around Bitcoin include its role as a hedge against inflation, its recent rally, and its popularity in countries experiencing high inflation rates. Users are also discussing the potential impact of government policies on Bitcoin adoption.\n\n4. Housing Market: There are mentions of rising foreclosure rates in the housing market, which could indicate potential challenges for the real estate sector. Users are also discussing the impact of inflation and interest rates on housing prices.\n\n5. Central Banks: Users are expressing opinions about the actions of central banks in response to inflation and economic challenges. There are mentions of the IMF's recommendations for currency devaluation and concerns about the effectiveness of central bank policies.\n\nOverall, the discussions on social media platforms reflect a mix of economic analysis, market speculation, and opinions on government policies in relation to inflation and other economic indicators.","data":[1,0,3,2,0,0,4,0,2,2,1,4,1,2,2,3,1,4,5,3,2,1,5,1,11,20,2,1,0,1,2,4,0,3,0,1,2,2,3,6,5,1,2,0,1,2,1,2,0,0,7,2,0,1,2]},{"label":"EU ban on payments from anonymous wallets","topics":"eu,wallets,anonymous,ban,european","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. The European Union implementing AML laws prohibiting anonymous crypto payments.\n2. Speculation and confusion surrounding the ban on non-custodial crypto wallets in the EU.\n3. Concerns about the EU's new crypto regulations sparking privacy concerns.\n4. The EU probing tech giants like Apple, Google, Meta, and Amazon for potentially violating the Digital Markets Act.\n5. Calls for clearer crypto regulations to protect investors from money laundering, market manipulation, and investor deception.\n6. Criticism of the EU's perceived war on private property and asset ownership.\n7. Debunking claims about the EU banning anonymous crypto transactions or self-custodial wallets.\n8. Updates clarifying that crypto wallets are not banned in Europe, with restrictions mainly targeting centralized services like exchanges.\n9. Discussions on the need for more transparent and comprehensive crypto regulations to prevent misinformation and confusion in the industry.","data":[1,3,3,7,0,0,0,1,2,1,1,2,2,1,1,3,4,2,2,1,0,1,5,3,0,8,6,1,6,1,1,2,2,7,5,3,4,0,2,0,4,2,0,3,3,4,1,0,1,3,7,4,4,2,0]},{"label":"DeFi","topics":"defi,finance,protocol,dive,protocols","description":"The messages from twitter indicate a growing interest in decentralized finance (DeFi) within the crypto industry. Key topics being discussed include the launch of new platforms and services, such as the introduction of U.S. Treasury Bill depository receipt tokens by DigiFT, as well as the exploration of DeFi opportunities through NFT loans and decentralized platforms like BalancedDAO. Additionally, there is a focus on the development activities of various DeFi coins and protocols, highlighting the potential for composability and innovation within the space. Overall, the conversations on social media reflect a dynamic and evolving landscape within the crypto industry, with a strong emphasis on financial freedom and innovation.","data":[3,0,2,3,0,0,0,1,0,1,3,3,1,8,8,1,1,5,3,1,1,1,2,1,1,3,5,5,2,0,5,1,0,0,2,0,3,3,6,2,3,6,2,0,6,2,1,3,5,0,2,3,2,2,5]},{"label":"SHIB","topics":"inu,shiba,shib,damn,burn","description":"The key topics currently discussed in the crypto industry on Twitter include Shiba Inu's price predictions, its entry into the cryptocurrency gaming market, its rise in crypto searches, adoption boosts from major exchanges, new integrations, support and resistances to watch, and recent listings of SHIB and BONE tokens. Additionally, there is excitement about upcoming launches, whale accumulation of altcoins, and giveaways of AI Shiba tokens.","data":[2,3,1,0,0,0,0,2,0,2,4,1,2,0,0,1,1,4,0,1,0,0,0,3,3,0,29,0,3,4,1,4,0,0,3,0,2,1,2,4,4,1,1,23,1,1,1,2,1,1,0,4,0,3,0]},{"label":"Coinbase vs SEC","topics":"court,coinbase,judge,sec,lawsuit","description":"The key topic currently being discussed on Twitter is the SEC vs Coinbase case. A federal judge ruled that the SEC's lawsuit against Coinbase can largely proceed, with the claim that Coinbase acts as an unregistered broker through its Wallet being dismissed. This ruling means the case will move forward to discovery, but it is not an indicator of how the actual court case will proceed. Many are interpreting this ruling as a win for the SEC, but others believe that the SEC may lose in court if they continue to act in bad faith. The case has also sparked discussions about the SEC's actions and potential outcomes for the crypto industry.","data":[1,4,2,5,0,1,13,4,5,5,3,8,0,4,5,1,0,3,3,1,0,1,1,1,2,1,2,4,4,2,4,0,0,0,1,0,1,1,1,3,1,6,6,2,1,0,0,3,1,0,0,2,3,0,2]},{"label":"Halving","topics":"days,halving,countdown,bitcoinhalving,month","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the upcoming Bitcoin halving, which is only a few weeks away. There is a lot of excitement and anticipation surrounding this event, with many users discussing the potential impact on Bitcoin's price and the overall market. Some users are also sharing strategies for investing in Bitcoin during this time, such as the HODL strategy for patient investors. Additionally, there is talk about the rapid growth of certain cryptocurrencies like $Milli, which has seen significant milestones in a short period of time. Overall, the sentiment seems to be bullish and optimistic about the future of the crypto industry.","data":[1,0,0,2,14,2,1,1,0,1,1,4,18,24,1,1,0,2,1,2,1,3,0,4,2,2,1,2,0,1,1,0,1,11,0,0,1,1,3,1,1,1,0,0,0,0,1,1,0,0,0,1,0,4,1]},{"label":"SBF sentence","topics":"sam,ftx,prison,founder,25","description":"The key topic currently being discussed on Twitter is the sentencing of FTX founder Sam Bankman-Fried to 25 years in prison for massive fraud and money laundering. The collapse of FTX has been called the biggest case of fraud ever in the crypto industry. Prosecutors are pushing for a 40-50 year prison term for Bankman-Fried, citing his alleged misappropriation of customer funds. This case has sparked discussions about the need for stricter regulations and transparency in the crypto industry to prevent such monumental frauds.","data":[1,0,0,2,0,0,23,2,0,1,0,6,2,1,1,2,2,2,1,48,0,1,0,0,1,0,1,1,0,0,0,1,1,0,1,1,0,1,2,0,3,0,2,5,2,0,0,0,0,0,0,0,0,0,3]},{"label":"Microstrategy","topics":"mstr,microstrategy,short,premium,stock","description":"The messages from Twitter discuss various topics related to the crypto industry, specifically focusing on MicroStrategy ($MSTR) stock and Bitcoin. Some key points mentioned include the comparison between owning Bitcoin and owning $MSTR stock, the performance of MicroStrategy as an asset in 2024, the idea of buying $MSTR when it's \"unsexy,\" and the relationship between Bitcoin's price movement and MicroStrategy's leverage.\n\nOverall, the discussions highlight the ongoing interest and debate surrounding the relationship between traditional stocks like $MSTR and cryptocurrencies like Bitcoin, as well as the potential investment opportunities and risks associated with each.","data":[0,1,2,1,1,1,2,2,9,0,1,6,1,2,0,1,0,1,0,2,1,2,1,3,4,3,4,2,1,2,1,2,13,11,1,5,1,0,2,0,2,0,1,7,0,2,4,0,2,4,0,0,1,2,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-12.ts b/priv/repo/major_topics_seed/data-12.ts deleted file mode 100644 index c70a6ca923..0000000000 --- a/priv/repo/major_topics_seed/data-12.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '21.03.24', - '22.03.24', - '22.03.24', - '22.03.24', - '22.03.24', - '22.03.24', - '22.03.24', - '22.03.24', - '23.03.24', - '23.03.24', - '23.03.24', - '23.03.24', - '23.03.24', - '23.03.24', - '23.03.24', - '23.03.24', - '24.03.24', - '24.03.24', - '24.03.24', - '24.03.24', - '24.03.24', - '24.03.24', - '24.03.24', - '24.03.24', - '25.03.24', - '25.03.24', - '25.03.24', - '25.03.24', - '25.03.24', - '25.03.24', - '25.03.24', - '25.03.24', - '26.03.24', - '26.03.24', - '26.03.24', - '26.03.24', - '26.03.24', - '26.03.24', - '26.03.24', - '26.03.24', - '27.03.24', - '27.03.24', - '27.03.24', - '27.03.24', - '27.03.24', - '27.03.24', - '27.03.24', - '27.03.24', - '28.03.24', - '28.03.24', - '28.03.24', - '28.03.24', - '28.03.24', - '28.03.24', - '28.03.24', - ], - datasets: [ - { - label: 'Trading strategies', - topics: 'focus,people,dont,youre,bull', - description: - 'The key topics discussed in the messages from Twitter regarding the crypto industry include:\n\n1. Avoiding leverage trading and focusing on spot trading until the market becomes clearer.\n2. Surviving pullbacks in a bull market and waiting for prices to move higher.\n3. Not letting others\' trades or ideas distract you from your own plans.\n4. Becoming an expert in one niche within the crypto industry and diversifying picks within that niche.\n5. Key principles for taking and keeping profits during the current market cycle.\n6. Dream life aspirations for crypto investors, including financial freedom and working on something they love.\n7. Speculation on the impact of low interest rates on various asset classes, including stocks, Bitcoin, and "poop coins."\n8. Uncertainty surrounding the US Federal Reserve\'s next move and the potential for a market shift.\n\nOverall, the messages reflect a mix of trading advice, market analysis, and personal reflections on the crypto industry and financial markets.', - data: [ - 8, 8, 8, 12, 0, 0, 4, 12, 5, 10, 7, 13, 12, 4, 4, 16, 2, 9, 11, 14, 6, 17, 9, 17, 15, 16, - 10, 13, 16, 21, 14, 22, 9, 16, 3, 8, 29, 7, 10, 2, 17, 15, 13, 10, 11, 11, 23, 14, 15, 6, - 19, 5, 13, 9, 19, - ], - }, - { - label: 'Art', - topics: 'art,artwork,artist,artists,cryptoart', - description: - 'The key topics discussed in the messages from twitter include:\n1. Appreciation of art and artists\n2. Discussion on the legality of nude art\n3. Critique and reflection on art\n4. Solo art shows featuring multiple mediums\n5. Selling and buying art\n6. Plagiarism and attribution in art\n7. Digital art auctions\n8. Art frames and hardware\n9. Photography and Leica cameras\n10. NFT art and generative artwork\n11. Collecting non-speculative assets for personal enjoyment and support of peers.', - data: [ - 15, 13, 94, 13, 1, 0, 3, 7, 13, 8, 15, 21, 12, 16, 6, 9, 6, 4, 7, 7, 11, 6, 12, 8, 7, 6, 5, - 11, 6, 12, 23, 4, 10, 16, 8, 12, 12, 12, 7, 8, 10, 3, 9, 13, 7, 9, 18, 16, 9, 8, 11, 5, 8, - 7, 16, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dc,macro,elon', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin (DOGE) experiencing a sudden price jump and potential rally, with predictions of reaching $1 and even $3\n- Speculation on the potential growth of other cryptocurrencies like $SOL, $VARA, $BTC, $SFM, and $Wif\n- Calls for investors to stop overthinking and start making profits, with a focus on the current market cycle\n- Elon Musk's interest in $YIKES and its potential impact on the market\n- Discussion on the behavior of Dogecoin holders and the recent market adjustments\n- Interest in Chinese community members increasing their holdings in Dogecoin and other cryptocurrencies like #cryptopunks\n\nOverall, the sentiment seems to be optimistic and focused on potential profits and market trends in the crypto industry.", - data: [ - 4, 4, 2, 6, 0, 0, 3, 3, 5, 9, 4, 1, 3, 6, 209, 9, 6, 4, 4, 4, 4, 5, 5, 6, 7, 4, 2, 5, 13, 2, - 9, 10, 6, 5, 3, 5, 10, 7, 6, 13, 4, 5, 9, 14, 3, 2, 9, 8, 5, 4, 11, 6, 3, 4, 3, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,capture,magazine,god,bitcoiners', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include the popularity and growth of Bitcoin, with mentions of adding Bitcoin to portfolios, development threads, and funding rates. There is also discussion about the potential for Bitcoin to disrupt traditional financial systems and the importance of transparency and honesty in the industry. Additionally, there is interest in creating an open-source collaboration book about Bitcoin to educate users at different levels of expertise. Overall, the sentiment towards Bitcoin appears positive and optimistic about its future potential.', - data: [ - 7, 4, 8, 3, 57, 48, 2, 6, 7, 12, 12, 6, 4, 3, 2, 9, 4, 8, 8, 7, 10, 13, 8, 7, 5, 7, 7, 8, 4, - 13, 6, 8, 1, 9, 3, 11, 4, 12, 13, 6, 5, 8, 7, 6, 9, 8, 9, 2, 9, 7, 14, 2, 4, 5, 21, - ], - }, - { - label: 'AI', - topics: 'ai,nvidia,generative,artificial,intelligence', - description: - 'The key topics discussed in the messages from twitter are:\n1. Artificial Intelligence (AI) in the crypto industry\n2. AGI (Artificial General Intelligence) and super-intelligence predictions\n3. Competition among AI industry leaders like NVIDIA, Google, Intel, and Qualcomm\n4. The transformative role of AI in trading\n5. Investment opportunities in AI-related projects and coins\n6. Top crypto coins for 2024 related to gaming and AI\n\nOverall, the messages highlight the growing importance and impact of AI in the crypto industry, with discussions ranging from market trends to investment opportunities and technological advancements.', - data: [ - 14, 44, 15, 10, 1, 1, 6, 6, 4, 6, 6, 12, 3, 14, 2, 9, 9, 7, 6, 8, 8, 11, 15, 5, 9, 15, 12, - 5, 3, 3, 7, 3, 7, 4, 8, 11, 6, 5, 5, 8, 7, 12, 3, 7, 11, 4, 11, 6, 8, 9, 10, 6, 6, 2, 17, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,web3,play', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n- GameFi and the integration of gaming with cryptocurrency, such as the launch of new games and platforms like Axie Infinity and Vision Game.\n- The rise of Web3 gaming and the potential for gaming content creators to dominate social media timelines.\n- The development of on-chain infrastructure for gaming guilds, as seen with Yield Guild Games transforming into a protocol for 'Pixels' and beyond.\n- The implementation of layer 2 blockchain solutions for gaming, as demonstrated by Arbitrum's Gaming Catalyst Program.\n- Collaborations and events within the GameFi space, such as the Bitrue x Gala 2024 GameFi Carnival offering airdrops and zero trading fees for Gala/USDT trading pairs.", - data: [ - 6, 2, 9, 2, 0, 0, 1, 8, 3, 6, 4, 7, 1, 4, 3, 4, 4, 3, 4, 8, 65, 6, 7, 5, 4, 6, 4, 10, 10, 7, - 3, 2, 1, 8, 7, 5, 7, 29, 6, 5, 6, 8, 6, 1, 5, 10, 4, 4, 1, 3, 3, 11, 5, 5, 4, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coins,memecoins,coin', - description: - 'The messages from Twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are talking about buying meme coins, predicting their prices, and even raising funds for meme coins. There is also a cautionary note about investing in meme coins, with a reminder to only invest what you can afford to lose. Overall, it seems like meme coins are a hot topic of conversation and investment in the crypto community.', - data: [ - 7, 2, 1, 7, 1, 2, 0, 5, 16, 4, 8, 3, 3, 2, 1, 4, 2, 4, 4, 5, 6, 6, 7, 7, 9, 2, 5, 2, 3, 6, - 7, 10, 60, 2, 7, 4, 4, 7, 5, 3, 7, 19, 6, 1, 11, 1, 4, 5, 11, 8, 5, 8, 5, 5, 3, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,comeback,punk,3d', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include NFTs, minting NFTs, NFT drops, fractionalized NFTs, partnerships in the NFT marketplace, the value and risks associated with NFTs, upcoming NFT mints, and the use of different cryptocurrencies like ETH, BTC, and SOL in the NFT space. There is also mention of specific NFT projects such as Mistral, Pixelmon, and MetaFightOff, as well as platforms like Art Blocks and HuggingFace. Additionally, there is excitement around the potential of receiving real paintings through purchasing NFTs and the success of NFT Kid in raising 500 ETH in a short amount of time. Overall, the NFT market and its various aspects continue to be a hot topic of discussion within the crypto community.', - data: [ - 2, 2, 4, 2, 0, 0, 2, 4, 6, 7, 2, 4, 9, 0, 3, 6, 1, 2, 1, 6, 3, 4, 5, 0, 2, 7, 3, 3, 5, 4, 4, - 5, 4, 6, 13, 1, 4, 2, 8, 8, 7, 2, 6, 0, 4, 4, 5, 4, 6, 4, 0, 7, 3, 2, 4, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,tokenization,realworld,assets', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Real World Asset (RWA) tokenization, the rise of RWA projects on platforms like Uniswap and Arbitrum, the potential for tokenizing assets on chain by companies like BlackRock, and the growth of USD-pegged stablecoins and tokenized treasuries. There is also discussion about specific RWA projects like E Money Network (formerly Scallop), as well as comparisons between low-cap RWA altcoins like Kali, Fly, and Ves against larger projects like Bixin group, Coinbase ventures, and Arsenal, DWF Labs, Huawei. Additionally, there is mention of companies like Joltify Finance and Nexera being at the forefront of tokenization efforts in the industry. Overall, the sentiment seems to be positive towards the potential of RWA tokenization and its impact on the crypto market.', - data: [ - 1, 2, 1, 4, 2, 4, 0, 3, 1, 1, 1, 1, 3, 1, 1, 3, 4, 4, 2, 1, 0, 1, 5, 1, 1, 3, 7, 5, 8, 3, 4, - 1, 1, 7, 2, 8, 1, 1, 6, 3, 9, 19, 4, 0, 2, 2, 3, 0, 2, 5, 3, 2, 1, 4, 2, - ], - }, - { - label: 'BTC price', - topics: '70k,100k,70000,71k,100000', - description: - "Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community are the price of Bitcoin reaching $70,000 and potentially heading towards $80,000, the resistance levels being broken, the consolidation around $70,000, projections for Bitcoin's future price ranging from $500 to $3.8 million in 10 years, and the UK holding 61k Bitcoin. There is also mention of potential market manipulation and the need for patience and steady holding in the face of price fluctuations. Overall, the sentiment seems to be optimistic about Bitcoin's future potential and growth.", - data: [ - 2, 0, 3, 1, 20, 14, 7, 1, 3, 3, 3, 4, 0, 0, 3, 1, 2, 2, 2, 2, 6, 3, 1, 2, 5, 3, 1, 4, 3, 1, - 3, 0, 1, 0, 3, 1, 0, 0, 5, 3, 2, 6, 2, 1, 3, 3, 3, 1, 3, 3, 0, 2, 2, 4, 1, - ], - }, - { - label: 'Altseason', - topics: 'altseason,altcoins,bonk,aero,pepe', - description: - 'The key topics currently being discussed in the crypto community on Twitter are related to the launch of the Memecoin Bobaoppa by Taiwanese singer Jeffrey Huang. Huang has successfully raised $36 million for the project, attracting attention from the global crypto community. There is speculation about the potential growth of Bobaoppa, with some users predicting a 5x increase in value from $0.55 to $2.84. Additionally, there are discussions about the involvement of Huang in past ICOs and the skepticism surrounding his new project. There are also hints at a potential listing of Bobaoppa on Binance, with transactions involving the coin being monitored closely. Traders are discussing price movements and potential opportunities for profit, with some predicting significant gains in the near future. Overall, the community seems divided on the potential success of Bobaoppa, with some expressing excitement and others expressing caution.', - data: [ - 9, 0, 0, 1, 0, 0, 20, 1, 5, 0, 3, 0, 3, 4, 1, 1, 1, 3, 0, 1, 1, 7, 1, 2, 13, 2, 0, 3, 1, 4, - 3, 1, 1, 5, 0, 2, 6, 0, 4, 6, 3, 0, 0, 8, 4, 0, 4, 1, 8, 0, 1, 2, 5, 0, 0, - ], - }, - { - label: 'Solana', - topics: 'sol,solana,solanas,presale,launches', - description: - 'The key topics currently discussed in the messages from Twitter about the crypto industry include:\n1. Solana (SOL) experiencing a price increase and successful retests\n2. Updates and potential of Solana network\n3. Trading strategies and gains related to SOL\n4. SORA Ecosystem Integrated Plan\n5. Whale alert for shorting SOL on Binance\n6. Speculation about the future of SOL and potential rug pulls\n7. New projects launching on Solana\n8. Discussion about the reliability and performance of Solana as a blockchain\n9. Mention of specific tokens like $GPT and $TAOLIE on Solana\n10. Criticism and skepticism towards Solana and its founder, SBF\n\nOverall, the sentiment seems to be mixed with excitement about the potential of Solana and new projects, but also concerns about the reliability and potential risks associated with investing in SOL.', - data: [ - 2, 1, 3, 4, 0, 0, 3, 2, 1, 8, 0, 3, 1, 1, 1, 1, 0, 4, 1, 1, 0, 4, 2, 2, 2, 2, 2, 0, 3, 1, 5, - 2, 1, 5, 0, 1, 2, 1, 10, 3, 1, 1, 2, 4, 22, 2, 4, 2, 2, 1, 1, 5, 2, 2, 1, - ], - }, - { - label: 'Inflation and FED', - topics: 'inflation,fed,rate,deflationary,economy', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Inflation: There are discussions about inflation rates, how they are measured, and their impact on various aspects of the economy. Some users are comparing historical inflation rates to current ones, while others are discussing the potential effects of inflation on different asset classes like Bitcoin.\n\n2. Interest Rates: Users are speculating about potential rate cuts by central banks and how they may affect the economy. There are also mentions of consumer sentiment and how it is influenced by changes in interest rates.\n\n3. Bitcoin: The discussions around Bitcoin include its role as a hedge against inflation, its recent rally, and its popularity in countries experiencing high inflation rates. Users are also discussing the potential impact of government policies on Bitcoin adoption.\n\n4. Housing Market: There are mentions of rising foreclosure rates in the housing market, which could indicate potential challenges for the real estate sector. Users are also discussing the impact of inflation and interest rates on housing prices.\n\n5. Central Banks: Users are expressing opinions about the actions of central banks in response to inflation and economic challenges. There are mentions of the IMF's recommendations for currency devaluation and concerns about the effectiveness of central bank policies.\n\nOverall, the discussions on social media platforms reflect a mix of economic analysis, market speculation, and opinions on government policies in relation to inflation and other economic indicators.", - data: [ - 1, 0, 3, 2, 0, 0, 4, 0, 2, 2, 1, 4, 1, 2, 2, 3, 1, 4, 5, 3, 2, 1, 5, 1, 11, 20, 2, 1, 0, 1, - 2, 4, 0, 3, 0, 1, 2, 2, 3, 6, 5, 1, 2, 0, 1, 2, 1, 2, 0, 0, 7, 2, 0, 1, 2, - ], - }, - { - label: 'EU ban on payments from anonymous wallets', - topics: 'eu,wallets,anonymous,ban,european', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. The European Union implementing AML laws prohibiting anonymous crypto payments.\n2. Speculation and confusion surrounding the ban on non-custodial crypto wallets in the EU.\n3. Concerns about the EU's new crypto regulations sparking privacy concerns.\n4. The EU probing tech giants like Apple, Google, Meta, and Amazon for potentially violating the Digital Markets Act.\n5. Calls for clearer crypto regulations to protect investors from money laundering, market manipulation, and investor deception.\n6. Criticism of the EU's perceived war on private property and asset ownership.\n7. Debunking claims about the EU banning anonymous crypto transactions or self-custodial wallets.\n8. Updates clarifying that crypto wallets are not banned in Europe, with restrictions mainly targeting centralized services like exchanges.\n9. Discussions on the need for more transparent and comprehensive crypto regulations to prevent misinformation and confusion in the industry.", - data: [ - 1, 3, 3, 7, 0, 0, 0, 1, 2, 1, 1, 2, 2, 1, 1, 3, 4, 2, 2, 1, 0, 1, 5, 3, 0, 8, 6, 1, 6, 1, 1, - 2, 2, 7, 5, 3, 4, 0, 2, 0, 4, 2, 0, 3, 3, 4, 1, 0, 1, 3, 7, 4, 4, 2, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,protocol,dive,protocols', - description: - 'The messages from twitter indicate a growing interest in decentralized finance (DeFi) within the crypto industry. Key topics being discussed include the launch of new platforms and services, such as the introduction of U.S. Treasury Bill depository receipt tokens by DigiFT, as well as the exploration of DeFi opportunities through NFT loans and decentralized platforms like BalancedDAO. Additionally, there is a focus on the development activities of various DeFi coins and protocols, highlighting the potential for composability and innovation within the space. Overall, the conversations on social media reflect a dynamic and evolving landscape within the crypto industry, with a strong emphasis on financial freedom and innovation.', - data: [ - 3, 0, 2, 3, 0, 0, 0, 1, 0, 1, 3, 3, 1, 8, 8, 1, 1, 5, 3, 1, 1, 1, 2, 1, 1, 3, 5, 5, 2, 0, 5, - 1, 0, 0, 2, 0, 3, 3, 6, 2, 3, 6, 2, 0, 6, 2, 1, 3, 5, 0, 2, 3, 2, 2, 5, - ], - }, - { - label: 'SHIB', - topics: 'inu,shiba,shib,damn,burn', - description: - "The key topics currently discussed in the crypto industry on Twitter include Shiba Inu's price predictions, its entry into the cryptocurrency gaming market, its rise in crypto searches, adoption boosts from major exchanges, new integrations, support and resistances to watch, and recent listings of SHIB and BONE tokens. Additionally, there is excitement about upcoming launches, whale accumulation of altcoins, and giveaways of AI Shiba tokens.", - data: [ - 2, 3, 1, 0, 0, 0, 0, 2, 0, 2, 4, 1, 2, 0, 0, 1, 1, 4, 0, 1, 0, 0, 0, 3, 3, 0, 29, 0, 3, 4, - 1, 4, 0, 0, 3, 0, 2, 1, 2, 4, 4, 1, 1, 23, 1, 1, 1, 2, 1, 1, 0, 4, 0, 3, 0, - ], - }, - { - label: 'Coinbase vs SEC', - topics: 'court,coinbase,judge,sec,lawsuit', - description: - "The key topic currently being discussed on Twitter is the SEC vs Coinbase case. A federal judge ruled that the SEC's lawsuit against Coinbase can largely proceed, with the claim that Coinbase acts as an unregistered broker through its Wallet being dismissed. This ruling means the case will move forward to discovery, but it is not an indicator of how the actual court case will proceed. Many are interpreting this ruling as a win for the SEC, but others believe that the SEC may lose in court if they continue to act in bad faith. The case has also sparked discussions about the SEC's actions and potential outcomes for the crypto industry.", - data: [ - 1, 4, 2, 5, 0, 1, 13, 4, 5, 5, 3, 8, 0, 4, 5, 1, 0, 3, 3, 1, 0, 1, 1, 1, 2, 1, 2, 4, 4, 2, - 4, 0, 0, 0, 1, 0, 1, 1, 1, 3, 1, 6, 6, 2, 1, 0, 0, 3, 1, 0, 0, 2, 3, 0, 2, - ], - }, - { - label: 'Halving', - topics: 'days,halving,countdown,bitcoinhalving,month', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the upcoming Bitcoin halving, which is only a few weeks away. There is a lot of excitement and anticipation surrounding this event, with many users discussing the potential impact on Bitcoin's price and the overall market. Some users are also sharing strategies for investing in Bitcoin during this time, such as the HODL strategy for patient investors. Additionally, there is talk about the rapid growth of certain cryptocurrencies like $Milli, which has seen significant milestones in a short period of time. Overall, the sentiment seems to be bullish and optimistic about the future of the crypto industry.", - data: [ - 1, 0, 0, 2, 14, 2, 1, 1, 0, 1, 1, 4, 18, 24, 1, 1, 0, 2, 1, 2, 1, 3, 0, 4, 2, 2, 1, 2, 0, 1, - 1, 0, 1, 11, 0, 0, 1, 1, 3, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 4, 1, - ], - }, - { - label: 'SBF sentence', - topics: 'sam,ftx,prison,founder,25', - description: - 'The key topic currently being discussed on Twitter is the sentencing of FTX founder Sam Bankman-Fried to 25 years in prison for massive fraud and money laundering. The collapse of FTX has been called the biggest case of fraud ever in the crypto industry. Prosecutors are pushing for a 40-50 year prison term for Bankman-Fried, citing his alleged misappropriation of customer funds. This case has sparked discussions about the need for stricter regulations and transparency in the crypto industry to prevent such monumental frauds.', - data: [ - 1, 0, 0, 2, 0, 0, 23, 2, 0, 1, 0, 6, 2, 1, 1, 2, 2, 2, 1, 48, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, - 0, 1, 1, 0, 1, 1, 0, 1, 2, 0, 3, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, - ], - }, - { - label: 'Microstrategy', - topics: 'mstr,microstrategy,short,premium,stock', - description: - "The messages from Twitter discuss various topics related to the crypto industry, specifically focusing on MicroStrategy ($MSTR) stock and Bitcoin. Some key points mentioned include the comparison between owning Bitcoin and owning $MSTR stock, the performance of MicroStrategy as an asset in 2024, the idea of buying $MSTR when it's \"unsexy,\" and the relationship between Bitcoin's price movement and MicroStrategy's leverage.\n\nOverall, the discussions highlight the ongoing interest and debate surrounding the relationship between traditional stocks like $MSTR and cryptocurrencies like Bitcoin, as well as the potential investment opportunities and risks associated with each.", - data: [ - 0, 1, 2, 1, 1, 1, 2, 2, 9, 0, 1, 6, 1, 2, 0, 1, 0, 1, 0, 2, 1, 2, 1, 3, 4, 3, 4, 2, 1, 2, 1, - 2, 13, 11, 1, 5, 1, 0, 2, 0, 2, 0, 1, 7, 0, 2, 4, 0, 2, 4, 0, 0, 1, 2, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-120.json b/priv/repo/major_topics_seed/data-120.json deleted file mode 100644 index 9a37513ac9..0000000000 --- a/priv/repo/major_topics_seed/data-120.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["16.04.26","17.04.26","17.04.26","17.04.26","17.04.26","17.04.26","17.04.26","17.04.26","18.04.26","18.04.26","18.04.26","18.04.26","18.04.26","18.04.26","18.04.26","18.04.26","19.04.26","19.04.26","19.04.26","19.04.26","19.04.26","19.04.26","19.04.26","19.04.26","20.04.26","20.04.26","20.04.26","20.04.26","20.04.26","20.04.26","20.04.26","20.04.26","21.04.26","21.04.26","21.04.26","21.04.26","21.04.26","21.04.26","21.04.26","21.04.26","22.04.26","22.04.26","22.04.26","22.04.26","22.04.26","22.04.26","22.04.26","22.04.26","23.04.26","23.04.26","23.04.26","23.04.26","23.04.26","23.04.26","23.04.26"],"datasets":[{"label":"Bitcoin ideology","topics":"bitcoiners,bitcointwitter,fiat,bitcoins,currency","description":"Tweets focus on Bitcoin’s role as a hedge and store-of-value, framing energy as liquidity and mining (ASICs) as a core activity. Discussions push adoption: education courses, easier onramps, institutional interest, and regional growth in Europe and Africa. Many posts dismiss FUD (quantum, AI miner claims), emphasize Bitcoin’s security and decentralization (no leaders), and promote stacking sats and mining as practical responses to macro risks and inflation.","data":[13,12,16,11,39,36,15,19,15,15,10,8,19,12,11,8,21,22,15,12,20,18,9,23,19,19,14,14,16,10,19,13,11,9,20,14,6,7,18,9,16,15,10,17,7,9,15,19,10,11,27,16,9,16,10]},{"label":"DeFi","topics":"circuit,breaker,exploits,defi,hacks","description":"Social chatter centers on DeFi’s paradox: it remains resilient and ideologically persistent despite repeated high‑profile exploits (Terra, Wormhole, Ronin) and growing risk‑reward problems. Participants call for better security, asset quality, guardrails, and clearer investor protections as institutions scrutinize yields and tokenization models that trade off DeFi utility for legal safety. Debate highlights a shift toward regulated/tokenized assets, the need to accept some efficiency for safety, and concern that complexity limits mainstream adoption even as DeFi evolves with privacy, cypherpunk currents, and AI-driven tooling.","data":[13,9,8,11,16,11,8,14,13,11,13,34,48,14,15,20,18,19,14,11,23,12,8,14,11,4,21,11,12,17,10,17,7,15,20,13,20,16,9,10,25,8,7,13,9,12,15,14,14,13,16,10,10,14,24]},{"label":"MSTR and STRC","topics":"mstr,strc,dividend,115,ponzi","description":"Social media discussion centers on MicroStrategy ($MSTR) and its preferred issuance $STRC: STRC is being positioned as a Bitcoin‑backed yield instrument ( ~11.5% cited) with no smart‑contract risk, now moving to semi‑monthly dividends to smooth price volatility and encourage demand. Contributors argue STRC functions like a money‑market alternative for treasuries seeking BTC exposure, while MSTR retains asymmetric upside from direct BTC accumulation. Commentary highlights MSTR’s strategic shift to preferred equity, large recent BTC buys, dividend‑capture trading around ex‑dividend dates, and active rebuttals to “STRC FUD.” Overall tone: bullish on MSTR’s long‑term upside and supportive of STRC as a yield vehicle, with warnings about other non‑smart‑contract risks and cyclical dividend effects.","data":[16,2,10,7,14,16,15,6,6,4,4,8,13,7,8,12,7,3,11,5,1,6,8,9,4,5,10,7,8,11,2,11,5,6,8,6,8,13,7,2,13,8,10,7,8,15,5,7,9,6,10,6,10,4,8]},{"label":"ASTEROID meme","topics":"shiba,asteroid,mascot,spacexs,marketcap","description":"$ASTEROID, an Ethereum/Solana memecoin tied to an Elon/SpaceX narrative, exploded in volume and market cap after high-profile replies and social amplification. The community is frenzied—active English/Chinese Telegrams, NFT drops, airdrop talk, listings speculation, and whale/Bybit-driven moves—sparking debate over whether it’s a sustainable runner toward $1B or a short-lived, Elon-triggered pump with thin holder stability.","data":[14,9,6,39,14,5,6,3,4,8,11,5,5,4,6,10,5,5,9,11,5,14,4,3,11,9,8,9,9,14,4,7,7,1,4,1,3,9,6,7,17,6,9,18,4,5,3,14,9,11,1,12,3,5,4]},{"label":"Memecoins","topics":"memecoins,memes,memecoin,meme,prototype","description":"Social chatter shows a memecoin resurgence — people hunting the next billion-dollar meme and debating a “meme supercycle.” Threads emphasize creativity and lore as key drivers of big rallies (theme rotations, community merch, cultural memes), while also flagging rug-pull risk and asking which projects are legit. Market-focused posts mention memecoin futures, trading competitions and milestone listings (e.g., Bonk on NASDAQ), and argue memecoins materially boost on‑chain activity and market engagement.","data":[4,0,6,3,14,4,6,4,9,9,4,3,6,7,4,9,7,3,3,8,3,3,8,5,6,2,4,7,5,88,4,2,4,6,3,8,3,3,8,2,7,3,3,2,6,3,3,10,6,9,7,3,8,5,5]},{"label":"Gaming","topics":"gaming,games,played,game,jam","description":"Discussion focuses on Web3/crypto gaming and how startups are reshaping real‑money gaming (RMG) and Play‑to‑Earn UX. Highlights include upcoming indie/browser launches (TheGrottoL1, WSM Casino), ranked idle P2E games and spotlight projects, a unified multiplayer widget, an industry panel on publishing in 2026, and skepticism about credentialed web3 teams. Nostalgia for classic hardcore games and developer design culture also appears.","data":[6,3,2,3,7,2,6,4,6,7,8,3,1,3,3,8,7,43,3,6,6,6,8,4,3,7,9,6,10,1,7,2,12,7,3,27,1,3,5,7,4,1,5,4,10,8,3,6,5,7,9,11,10,0,6]},{"label":"AAVE crisis","topics":"tvl,aaves,aave,withdraw,utilization","description":"Aave is undergoing a major liquidity crisis after the Kelp DAO exploit: stolen rsETH was used as collateral, driving borrows, bad debt and 100% ETH pool utilization. The protocol has seen billions in TVL outflows (reports of $6–12B across DeFi and multi‑billion withdrawals from Aave), prompting cap changes in Aave V4 and emergency/insurance fund debates. Community discussion covers user exit strategies (e.g., swapping aTokens via CoWSwap), security‑first cap increases, and broader market effects as capital reallocates to alternatives and BTC/RWA integrations. Sentiment is a mix of alarm, tactical advice for users, and scrutiny of governance choices for rebuilding trust and liquidity.","data":[20,1,3,9,3,5,2,7,3,9,8,8,4,14,4,10,7,4,0,5,9,6,11,6,5,4,9,2,13,5,6,6,5,4,3,6,5,5,5,9,11,3,2,9,3,8,4,3,20,4,14,2,2,6,3]},{"label":"US - Iran war","topics":"nato,islamabad,reportedly,jd,bbc","description":"A spike in Iran–U.S. tensions around the Strait of Hormuz: Iran has intermittently closed the strait, blocked tankers, and threatened to fire on U.S. ships while some vessel traffic resumed via Iran-approved routes. U.S. forces reportedly intercepted tankers and Trump claimed mines were removed and called the U.S. blockade a success; Iranian officials rejected talks and criticized U.S. signals. The episode injected volatility — then a claimed “guarantee” of reopening eased energy-market fears and was framed as bullish for equities and crypto (#BTC), though risks remain high.","data":[2,3,10,4,2,1,3,3,6,4,2,9,12,0,5,5,10,0,0,2,1,1,0,4,1,2,1,0,1,1,5,3,8,11,3,2,2,5,7,16,15,77,12,4,6,4,9,1,2,4,3,3,8,0,0]},{"label":"BTC price","topics":"4h,rejection,d1,rsi,retest","description":"Twitter threads focus on Bitcoin price action around a major resistance zone (~75–79K). Analysts say a clean breakout could push BTC into the mid-80s and toward 95–100K, while failure/rejection risks a retrace to ~70K or deeper (60K and even a 52K measured move if a bearish wedge breaks). Technicals are mixed—RSI/stochastic and VWAP/money flow show short-term exhaustion but on-chain metrics and ETF cost-basis remain supportive. Many note demand near ~62.4K, lagging altcoins, and key trendline/support levels traders are watching (~75.6K and 70K).","data":[8,2,6,5,4,16,11,6,4,2,5,2,4,3,2,5,3,2,3,2,0,13,10,9,3,1,11,8,9,4,7,5,5,5,2,0,3,7,11,10,5,2,5,5,5,12,14,5,4,5,2,5,6,3,3]},{"label":"RWA","topics":"tokenization,tokenized,tokenize,buidl,aum","description":"Discussion centers on rapid growth and institutional adoption of tokenized real-world assets (RWAs): tokenized funds ($23.1B on Ethereum, 68.1% share), tokenized U.S. Treasury bill tokens (~$11.1B market cap, big intraday jumps), Securitize powering $4B BUIDL, Aptos hosting ~$740M RWA after Ondo’s USDY, and tokenized stocks expanding from $10M to $400M. Themes: who wins is about scalable, affordable token issuance and UX (Matcha, Meteora, Bankr), fee accrual to hosting chains, native staking vs speculative strategies, and lingering liquidity/structuring challenges—tokenization changes product design and capital allocation more than simply copying TradFi. Institutional signals—from JPMorgan, DTCC, Morgan Stanley, and asset managers—suggest a “do or die” shift toward onchain productization and increased demand for risk-free onchain instruments.","data":[4,4,7,11,7,7,4,4,4,4,6,3,3,2,8,5,0,6,4,2,7,2,5,9,6,10,3,1,2,6,4,7,2,3,5,6,5,6,9,4,4,2,4,4,6,6,5,3,47,5,4,5,0,1,6]},{"label":"Kevin Warsh FED nomination","topics":"warsh,nominee,kevin,chair,fabric","description":"Social posts focus on Kevin Warsh’s nomination to be Fed Chair, his repeated pledge to keep monetary policy independent, and his hawkish views on shrinking the Fed balance sheet and ending QE. Market and political debate centers on potential rate moves under Trump pressure, Senate delays to confirmation, and how Warsh framing digital assets as part of financial infrastructure could shift bank integration plans and regulatory clarity for crypto and Bitcoin. Additional chatter notes past investor ties and fraud allegations, and the broader market implications for rates, liquidity, and monetary regime change.","data":[2,4,7,7,5,2,1,13,3,17,1,7,3,5,3,5,4,1,6,5,1,5,1,7,4,5,5,3,4,5,5,1,49,5,1,7,3,6,7,5,11,12,4,3,2,1,5,6,6,4,0,3,4,0,2]},{"label":"Precious metals","topics":"silver,gold,metals,substack,copper","description":"Discussion focuses on gold’s multi‑week rally (around $4,870–$5,000/oz) with Chinese physical premiums rising, a CSOP Gold ETF listing, and commodities moving onto on‑chain trading venues. Drivers include heavy central‑bank buying, geopolitics (ceasefire/US–Iran), and Fed/dollar dynamics; major banks’ 2026 gold targets range roughly $5.4k–$6.3k+/oz. Technicals are mixed—momentum shows fatigue, watch 200‑day MAs and Fibonacci “Golden Zone” support levels—while silver and AUDFX provide correlated signals and short‑term trading setups.","data":[7,7,6,12,8,3,2,13,9,1,3,4,3,6,2,5,5,3,1,18,0,2,0,4,6,1,3,3,7,4,7,4,2,5,4,5,20,12,7,3,10,3,6,17,3,7,2,2,6,3,2,2,5,3,1]},{"label":"NFTs comeback","topics":"nfts,nft,pfp,pfps,collectibles","description":"Social chatter signals an NFT resurgence: increased demand for high-end and early projects, renewed collector interest, and a shift from flipping to culture-driven collections. Discussions highlight practical utilities—ticketing, provable on-chain ownership, and digital collectibles—as well as novel mechanics like performance NFTs that mint AI agents with verifiable on-chain track records. Community calls for clearer answers on why to buy, who’s buying, and what additional functions NFTs will provide.","data":[4,4,7,3,5,2,7,5,9,11,6,6,7,3,4,3,5,6,4,2,5,2,5,6,0,3,5,6,6,5,5,3,8,3,7,7,7,2,4,3,8,1,1,6,3,5,2,12,5,1,6,6,3,5,4]},{"label":"China","topics":"chinas,china,chinese,accuses,solar","description":"Social posts highlight China’s accelerating edge in technology, AI, semiconductors and monetary tools — including large IC export growth, ¥500–910 billion liquidity actions, and reported Treasuries selling — alongside geopolitical leverage (energy aid tied to military posture) and influence operations. Observers contrast China’s rapid market-to-product execution and corporate scale with Europe’s regulatory constraints and the US–China innovation and security rivalry (Space Force warnings, proxies extracting AI models). Europe’s temporary lead in unicorn market cap and supply‑chain exposures (ASML/Tokyo Electron revenue) are noted, but the dominant theme is China’s growing economic, technological and strategic leverage with potential global market consequences.","data":[11,4,7,3,2,1,3,10,3,8,0,4,8,12,5,8,1,2,2,6,3,8,4,9,6,4,3,3,5,7,3,3,4,3,6,3,2,5,1,6,2,9,6,4,4,2,7,9,2,4,5,7,5,2,4]},{"label":"Vibecoding","topics":"claude,cowork,codex,desktop,harness","description":"Discussion centers on Anthropic’s Claude and Claude Code: users praise its powerful capabilities (memory/persistent context, agent workflows, reviving old projects) but frequently report regressions, brittle edits, and reliability problems. The community is building open-source starters, add-ons, guardrails, and integrations to improve tooling, automate debugging, and share skills/workflows, while some developers enforce strict P0 rules and hooks to prevent repeat mistakes. Several posts note Claude lowered the cost of building but makes shipping, operational robustness, and contextual memory the differentiators—especially for crypto projects. Overall the conversation mixes enthusiasm for new use cases with frustration over productization and stability.","data":[2,7,4,2,3,4,7,2,32,7,4,2,6,2,5,4,3,0,4,6,7,8,5,5,4,3,4,5,5,3,2,4,4,2,6,4,5,3,5,3,4,2,8,12,2,1,4,1,4,3,10,3,2,4,1]},{"label":"ETH price","topics":"ens,fvg,2500,persists,3000","description":"Traders are focused on Ethereum’s price around key support/resistance: repeated rejections near $2,350–2,475 (failed $2,400 reclaims) and support clusters around $2,150–$2,325 (2325 cited as a critical pivot). Short-term technicals show weakness (loss of 4H SMA50, parabola broken, Weekly 20sma rejection) with risk of a drop toward $2,000 if lower supports fail. Upside scenarios target $2,800–$3,000 (and larger targets if gaps/low-volume areas fill), but low ETF buying, volume profile, and geopolitical catalysts (Hormuz/Iran) could drive rapid moves and volatility.","data":[4,3,2,3,1,7,6,3,3,3,4,1,3,1,13,4,7,3,4,4,1,2,5,2,7,2,8,6,9,5,5,7,9,2,2,2,11,5,2,10,2,1,9,3,9,8,5,1,7,7,7,2,3,1,4]},{"label":"Whales","topics":"whale,whales,20x,withdrew,opened","description":"Social chatter focuses on large \"whale\" moves: live whale-tracking tools, massive BTC/ETH accumulation, huge leveraged longs/shorts, and large withdrawals/transfers to/from exchanges and lending protocols. Users highlight record accumulation (largest since 2013/July 2025), miners stopping sales, and both bullish signals and acute volatility from whale leverage/losses. Discussions also cover copy-trading whales, NFT whale spending, OTC exits, and a nation-state scale mining expansion — all stressing smart-money vs retail positioning.","data":[8,4,3,3,1,5,4,3,1,4,7,4,5,2,2,4,4,2,3,2,1,3,2,2,1,4,3,4,3,8,8,2,1,6,2,1,4,4,1,4,1,1,4,4,1,5,1,2,5,4,4,5,4,64,2]},{"label":"Oil price","topics":"cl,crude,oil,barrel,120","description":"Social posts are debating a renewed oil rally amid supply concerns (SPR draws, constrained energy supply) with price targets ranging from $100 up to $200–$300/bbl. Traders note heavy positioning and dislocations between paper markets and physical/European crude, causing volatile intraday moves. Market participants point to energy firms and cheap E&P names as preferred plays while equities and Bitcoin rally alongside oil, creating tension between risk-on markets and commodity-driven inflation fears. The thread reflects bullish conviction, accusations of market manipulation, and a watch for washouts that could set up a further leg higher.","data":[1,1,2,3,2,6,3,1,6,6,14,0,4,8,3,2,2,4,3,2,2,2,3,7,0,4,0,5,5,4,2,2,4,32,2,2,23,6,4,3,3,1,2,3,7,4,3,3,3,4,4,2,3,3,3]},{"label":"Apple CEO rotation","topics":"tim,apple,cook,apples,steve","description":"Breaking news: Tim Cook will become Apple’s executive chairman and John Ternus will succeed him as CEO effective September 1, 2026. Social posts celebrate Cook’s operational achievements—huge market‑cap and revenue growth driven by supply‑chain mastery, services and Apple Silicon—while debating Apple’s lack of bold consumer product innovation under his tenure. John Ternus is highlighted as a 25‑year hardware veteran and architect of Apple Silicon, with observers split on whether a hardware‑focused engineer can push Apple into AI and new product breakthroughs. The thread mixes admiration, skepticism, and reminders of Apple’s dominant financial performance.","data":[1,4,15,2,7,2,2,3,4,4,1,0,0,2,7,3,2,2,2,4,7,9,7,6,3,5,10,2,2,4,2,9,10,0,3,0,2,3,2,7,3,2,1,3,28,4,4,9,3,0,3,2,2,2,5]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-120.ts b/priv/repo/major_topics_seed/data-120.ts deleted file mode 100644 index 1d24a430c7..0000000000 --- a/priv/repo/major_topics_seed/data-120.ts +++ /dev/null @@ -1,272 +0,0 @@ -export const NARRATIVES = { - labels: [ - '16.04.26', - '17.04.26', - '17.04.26', - '17.04.26', - '17.04.26', - '17.04.26', - '17.04.26', - '17.04.26', - '18.04.26', - '18.04.26', - '18.04.26', - '18.04.26', - '18.04.26', - '18.04.26', - '18.04.26', - '18.04.26', - '19.04.26', - '19.04.26', - '19.04.26', - '19.04.26', - '19.04.26', - '19.04.26', - '19.04.26', - '19.04.26', - '20.04.26', - '20.04.26', - '20.04.26', - '20.04.26', - '20.04.26', - '20.04.26', - '20.04.26', - '20.04.26', - '21.04.26', - '21.04.26', - '21.04.26', - '21.04.26', - '21.04.26', - '21.04.26', - '21.04.26', - '21.04.26', - '22.04.26', - '22.04.26', - '22.04.26', - '22.04.26', - '22.04.26', - '22.04.26', - '22.04.26', - '22.04.26', - '23.04.26', - '23.04.26', - '23.04.26', - '23.04.26', - '23.04.26', - '23.04.26', - '23.04.26', - ], - datasets: [ - { - label: 'Bitcoin ideology', - topics: 'bitcoiners,bitcointwitter,fiat,bitcoins,currency', - description: - 'Tweets focus on Bitcoin’s role as a hedge and store-of-value, framing energy as liquidity and mining (ASICs) as a core activity. Discussions push adoption: education courses, easier onramps, institutional interest, and regional growth in Europe and Africa. Many posts dismiss FUD (quantum, AI miner claims), emphasize Bitcoin’s security and decentralization (no leaders), and promote stacking sats and mining as practical responses to macro risks and inflation.', - data: [ - 13, 12, 16, 11, 39, 36, 15, 19, 15, 15, 10, 8, 19, 12, 11, 8, 21, 22, 15, 12, 20, 18, 9, 23, - 19, 19, 14, 14, 16, 10, 19, 13, 11, 9, 20, 14, 6, 7, 18, 9, 16, 15, 10, 17, 7, 9, 15, 19, - 10, 11, 27, 16, 9, 16, 10, - ], - infofi: false, - }, - { - label: 'DeFi', - topics: 'circuit,breaker,exploits,defi,hacks', - description: - 'Social chatter centers on DeFi’s paradox: it remains resilient and ideologically persistent despite repeated high‑profile exploits (Terra, Wormhole, Ronin) and growing risk‑reward problems. Participants call for better security, asset quality, guardrails, and clearer investor protections as institutions scrutinize yields and tokenization models that trade off DeFi utility for legal safety. Debate highlights a shift toward regulated/tokenized assets, the need to accept some efficiency for safety, and concern that complexity limits mainstream adoption even as DeFi evolves with privacy, cypherpunk currents, and AI-driven tooling.', - data: [ - 13, 9, 8, 11, 16, 11, 8, 14, 13, 11, 13, 34, 48, 14, 15, 20, 18, 19, 14, 11, 23, 12, 8, 14, - 11, 4, 21, 11, 12, 17, 10, 17, 7, 15, 20, 13, 20, 16, 9, 10, 25, 8, 7, 13, 9, 12, 15, 14, - 14, 13, 16, 10, 10, 14, 24, - ], - infofi: false, - }, - { - label: 'MSTR and STRC', - topics: 'mstr,strc,dividend,115,ponzi', - description: - 'Social media discussion centers on MicroStrategy ($MSTR) and its preferred issuance $STRC: STRC is being positioned as a Bitcoin‑backed yield instrument ( ~11.5% cited) with no smart‑contract risk, now moving to semi‑monthly dividends to smooth price volatility and encourage demand. Contributors argue STRC functions like a money‑market alternative for treasuries seeking BTC exposure, while MSTR retains asymmetric upside from direct BTC accumulation. Commentary highlights MSTR’s strategic shift to preferred equity, large recent BTC buys, dividend‑capture trading around ex‑dividend dates, and active rebuttals to “STRC FUD.” Overall tone: bullish on MSTR’s long‑term upside and supportive of STRC as a yield vehicle, with warnings about other non‑smart‑contract risks and cyclical dividend effects.', - data: [ - 16, 2, 10, 7, 14, 16, 15, 6, 6, 4, 4, 8, 13, 7, 8, 12, 7, 3, 11, 5, 1, 6, 8, 9, 4, 5, 10, 7, - 8, 11, 2, 11, 5, 6, 8, 6, 8, 13, 7, 2, 13, 8, 10, 7, 8, 15, 5, 7, 9, 6, 10, 6, 10, 4, 8, - ], - infofi: false, - }, - { - label: 'ASTEROID meme', - topics: 'shiba,asteroid,mascot,spacexs,marketcap', - description: - '$ASTEROID, an Ethereum/Solana memecoin tied to an Elon/SpaceX narrative, exploded in volume and market cap after high-profile replies and social amplification. The community is frenzied—active English/Chinese Telegrams, NFT drops, airdrop talk, listings speculation, and whale/Bybit-driven moves—sparking debate over whether it’s a sustainable runner toward $1B or a short-lived, Elon-triggered pump with thin holder stability.', - data: [ - 14, 9, 6, 39, 14, 5, 6, 3, 4, 8, 11, 5, 5, 4, 6, 10, 5, 5, 9, 11, 5, 14, 4, 3, 11, 9, 8, 9, - 9, 14, 4, 7, 7, 1, 4, 1, 3, 9, 6, 7, 17, 6, 9, 18, 4, 5, 3, 14, 9, 11, 1, 12, 3, 5, 4, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'memecoins,memes,memecoin,meme,prototype', - description: - 'Social chatter shows a memecoin resurgence — people hunting the next billion-dollar meme and debating a “meme supercycle.” Threads emphasize creativity and lore as key drivers of big rallies (theme rotations, community merch, cultural memes), while also flagging rug-pull risk and asking which projects are legit. Market-focused posts mention memecoin futures, trading competitions and milestone listings (e.g., Bonk on NASDAQ), and argue memecoins materially boost on‑chain activity and market engagement.', - data: [ - 4, 0, 6, 3, 14, 4, 6, 4, 9, 9, 4, 3, 6, 7, 4, 9, 7, 3, 3, 8, 3, 3, 8, 5, 6, 2, 4, 7, 5, 88, - 4, 2, 4, 6, 3, 8, 3, 3, 8, 2, 7, 3, 3, 2, 6, 3, 3, 10, 6, 9, 7, 3, 8, 5, 5, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'gaming,games,played,game,jam', - description: - 'Discussion focuses on Web3/crypto gaming and how startups are reshaping real‑money gaming (RMG) and Play‑to‑Earn UX. Highlights include upcoming indie/browser launches (TheGrottoL1, WSM Casino), ranked idle P2E games and spotlight projects, a unified multiplayer widget, an industry panel on publishing in 2026, and skepticism about credentialed web3 teams. Nostalgia for classic hardcore games and developer design culture also appears.', - data: [ - 6, 3, 2, 3, 7, 2, 6, 4, 6, 7, 8, 3, 1, 3, 3, 8, 7, 43, 3, 6, 6, 6, 8, 4, 3, 7, 9, 6, 10, 1, - 7, 2, 12, 7, 3, 27, 1, 3, 5, 7, 4, 1, 5, 4, 10, 8, 3, 6, 5, 7, 9, 11, 10, 0, 6, - ], - infofi: false, - }, - { - label: 'AAVE crisis', - topics: 'tvl,aaves,aave,withdraw,utilization', - description: - 'Aave is undergoing a major liquidity crisis after the Kelp DAO exploit: stolen rsETH was used as collateral, driving borrows, bad debt and 100% ETH pool utilization. The protocol has seen billions in TVL outflows (reports of $6–12B across DeFi and multi‑billion withdrawals from Aave), prompting cap changes in Aave V4 and emergency/insurance fund debates. Community discussion covers user exit strategies (e.g., swapping aTokens via CoWSwap), security‑first cap increases, and broader market effects as capital reallocates to alternatives and BTC/RWA integrations. Sentiment is a mix of alarm, tactical advice for users, and scrutiny of governance choices for rebuilding trust and liquidity.', - data: [ - 20, 1, 3, 9, 3, 5, 2, 7, 3, 9, 8, 8, 4, 14, 4, 10, 7, 4, 0, 5, 9, 6, 11, 6, 5, 4, 9, 2, 13, - 5, 6, 6, 5, 4, 3, 6, 5, 5, 5, 9, 11, 3, 2, 9, 3, 8, 4, 3, 20, 4, 14, 2, 2, 6, 3, - ], - infofi: false, - }, - { - label: 'US - Iran war', - topics: 'nato,islamabad,reportedly,jd,bbc', - description: - 'A spike in Iran–U.S. tensions around the Strait of Hormuz: Iran has intermittently closed the strait, blocked tankers, and threatened to fire on U.S. ships while some vessel traffic resumed via Iran-approved routes. U.S. forces reportedly intercepted tankers and Trump claimed mines were removed and called the U.S. blockade a success; Iranian officials rejected talks and criticized U.S. signals. The episode injected volatility — then a claimed “guarantee” of reopening eased energy-market fears and was framed as bullish for equities and crypto (#BTC), though risks remain high.', - data: [ - 2, 3, 10, 4, 2, 1, 3, 3, 6, 4, 2, 9, 12, 0, 5, 5, 10, 0, 0, 2, 1, 1, 0, 4, 1, 2, 1, 0, 1, 1, - 5, 3, 8, 11, 3, 2, 2, 5, 7, 16, 15, 77, 12, 4, 6, 4, 9, 1, 2, 4, 3, 3, 8, 0, 0, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '4h,rejection,d1,rsi,retest', - description: - 'Twitter threads focus on Bitcoin price action around a major resistance zone (~75–79K). Analysts say a clean breakout could push BTC into the mid-80s and toward 95–100K, while failure/rejection risks a retrace to ~70K or deeper (60K and even a 52K measured move if a bearish wedge breaks). Technicals are mixed—RSI/stochastic and VWAP/money flow show short-term exhaustion but on-chain metrics and ETF cost-basis remain supportive. Many note demand near ~62.4K, lagging altcoins, and key trendline/support levels traders are watching (~75.6K and 70K).', - data: [ - 8, 2, 6, 5, 4, 16, 11, 6, 4, 2, 5, 2, 4, 3, 2, 5, 3, 2, 3, 2, 0, 13, 10, 9, 3, 1, 11, 8, 9, - 4, 7, 5, 5, 5, 2, 0, 3, 7, 11, 10, 5, 2, 5, 5, 5, 12, 14, 5, 4, 5, 2, 5, 6, 3, 3, - ], - infofi: false, - }, - { - label: 'RWA', - topics: 'tokenization,tokenized,tokenize,buidl,aum', - description: - 'Discussion centers on rapid growth and institutional adoption of tokenized real-world assets (RWAs): tokenized funds ($23.1B on Ethereum, 68.1% share), tokenized U.S. Treasury bill tokens (~$11.1B market cap, big intraday jumps), Securitize powering $4B BUIDL, Aptos hosting ~$740M RWA after Ondo’s USDY, and tokenized stocks expanding from $10M to $400M. Themes: who wins is about scalable, affordable token issuance and UX (Matcha, Meteora, Bankr), fee accrual to hosting chains, native staking vs speculative strategies, and lingering liquidity/structuring challenges—tokenization changes product design and capital allocation more than simply copying TradFi. Institutional signals—from JPMorgan, DTCC, Morgan Stanley, and asset managers—suggest a “do or die” shift toward onchain productization and increased demand for risk-free onchain instruments.', - data: [ - 4, 4, 7, 11, 7, 7, 4, 4, 4, 4, 6, 3, 3, 2, 8, 5, 0, 6, 4, 2, 7, 2, 5, 9, 6, 10, 3, 1, 2, 6, - 4, 7, 2, 3, 5, 6, 5, 6, 9, 4, 4, 2, 4, 4, 6, 6, 5, 3, 47, 5, 4, 5, 0, 1, 6, - ], - infofi: false, - }, - { - label: 'Kevin Warsh FED nomination', - topics: 'warsh,nominee,kevin,chair,fabric', - description: - 'Social posts focus on Kevin Warsh’s nomination to be Fed Chair, his repeated pledge to keep monetary policy independent, and his hawkish views on shrinking the Fed balance sheet and ending QE. Market and political debate centers on potential rate moves under Trump pressure, Senate delays to confirmation, and how Warsh framing digital assets as part of financial infrastructure could shift bank integration plans and regulatory clarity for crypto and Bitcoin. Additional chatter notes past investor ties and fraud allegations, and the broader market implications for rates, liquidity, and monetary regime change.', - data: [ - 2, 4, 7, 7, 5, 2, 1, 13, 3, 17, 1, 7, 3, 5, 3, 5, 4, 1, 6, 5, 1, 5, 1, 7, 4, 5, 5, 3, 4, 5, - 5, 1, 49, 5, 1, 7, 3, 6, 7, 5, 11, 12, 4, 3, 2, 1, 5, 6, 6, 4, 0, 3, 4, 0, 2, - ], - infofi: false, - }, - { - label: 'Precious metals', - topics: 'silver,gold,metals,substack,copper', - description: - 'Discussion focuses on gold’s multi‑week rally (around $4,870–$5,000/oz) with Chinese physical premiums rising, a CSOP Gold ETF listing, and commodities moving onto on‑chain trading venues. Drivers include heavy central‑bank buying, geopolitics (ceasefire/US–Iran), and Fed/dollar dynamics; major banks’ 2026 gold targets range roughly $5.4k–$6.3k+/oz. Technicals are mixed—momentum shows fatigue, watch 200‑day MAs and Fibonacci “Golden Zone” support levels—while silver and AUDFX provide correlated signals and short‑term trading setups.', - data: [ - 7, 7, 6, 12, 8, 3, 2, 13, 9, 1, 3, 4, 3, 6, 2, 5, 5, 3, 1, 18, 0, 2, 0, 4, 6, 1, 3, 3, 7, 4, - 7, 4, 2, 5, 4, 5, 20, 12, 7, 3, 10, 3, 6, 17, 3, 7, 2, 2, 6, 3, 2, 2, 5, 3, 1, - ], - infofi: false, - }, - { - label: 'NFTs comeback', - topics: 'nfts,nft,pfp,pfps,collectibles', - description: - 'Social chatter signals an NFT resurgence: increased demand for high-end and early projects, renewed collector interest, and a shift from flipping to culture-driven collections. Discussions highlight practical utilities—ticketing, provable on-chain ownership, and digital collectibles—as well as novel mechanics like performance NFTs that mint AI agents with verifiable on-chain track records. Community calls for clearer answers on why to buy, who’s buying, and what additional functions NFTs will provide.', - data: [ - 4, 4, 7, 3, 5, 2, 7, 5, 9, 11, 6, 6, 7, 3, 4, 3, 5, 6, 4, 2, 5, 2, 5, 6, 0, 3, 5, 6, 6, 5, - 5, 3, 8, 3, 7, 7, 7, 2, 4, 3, 8, 1, 1, 6, 3, 5, 2, 12, 5, 1, 6, 6, 3, 5, 4, - ], - infofi: false, - }, - { - label: 'China', - topics: 'chinas,china,chinese,accuses,solar', - description: - 'Social posts highlight China’s accelerating edge in technology, AI, semiconductors and monetary tools — including large IC export growth, ¥500–910 billion liquidity actions, and reported Treasuries selling — alongside geopolitical leverage (energy aid tied to military posture) and influence operations. Observers contrast China’s rapid market-to-product execution and corporate scale with Europe’s regulatory constraints and the US–China innovation and security rivalry (Space Force warnings, proxies extracting AI models). Europe’s temporary lead in unicorn market cap and supply‑chain exposures (ASML/Tokyo Electron revenue) are noted, but the dominant theme is China’s growing economic, technological and strategic leverage with potential global market consequences.', - data: [ - 11, 4, 7, 3, 2, 1, 3, 10, 3, 8, 0, 4, 8, 12, 5, 8, 1, 2, 2, 6, 3, 8, 4, 9, 6, 4, 3, 3, 5, 7, - 3, 3, 4, 3, 6, 3, 2, 5, 1, 6, 2, 9, 6, 4, 4, 2, 7, 9, 2, 4, 5, 7, 5, 2, 4, - ], - infofi: false, - }, - { - label: 'Vibecoding', - topics: 'claude,cowork,codex,desktop,harness', - description: - 'Discussion centers on Anthropic’s Claude and Claude Code: users praise its powerful capabilities (memory/persistent context, agent workflows, reviving old projects) but frequently report regressions, brittle edits, and reliability problems. The community is building open-source starters, add-ons, guardrails, and integrations to improve tooling, automate debugging, and share skills/workflows, while some developers enforce strict P0 rules and hooks to prevent repeat mistakes. Several posts note Claude lowered the cost of building but makes shipping, operational robustness, and contextual memory the differentiators—especially for crypto projects. Overall the conversation mixes enthusiasm for new use cases with frustration over productization and stability.', - data: [ - 2, 7, 4, 2, 3, 4, 7, 2, 32, 7, 4, 2, 6, 2, 5, 4, 3, 0, 4, 6, 7, 8, 5, 5, 4, 3, 4, 5, 5, 3, - 2, 4, 4, 2, 6, 4, 5, 3, 5, 3, 4, 2, 8, 12, 2, 1, 4, 1, 4, 3, 10, 3, 2, 4, 1, - ], - infofi: false, - }, - { - label: 'ETH price', - topics: 'ens,fvg,2500,persists,3000', - description: - 'Traders are focused on Ethereum’s price around key support/resistance: repeated rejections near $2,350–2,475 (failed $2,400 reclaims) and support clusters around $2,150–$2,325 (2325 cited as a critical pivot). Short-term technicals show weakness (loss of 4H SMA50, parabola broken, Weekly 20sma rejection) with risk of a drop toward $2,000 if lower supports fail. Upside scenarios target $2,800–$3,000 (and larger targets if gaps/low-volume areas fill), but low ETF buying, volume profile, and geopolitical catalysts (Hormuz/Iran) could drive rapid moves and volatility.', - data: [ - 4, 3, 2, 3, 1, 7, 6, 3, 3, 3, 4, 1, 3, 1, 13, 4, 7, 3, 4, 4, 1, 2, 5, 2, 7, 2, 8, 6, 9, 5, - 5, 7, 9, 2, 2, 2, 11, 5, 2, 10, 2, 1, 9, 3, 9, 8, 5, 1, 7, 7, 7, 2, 3, 1, 4, - ], - infofi: false, - }, - { - label: 'Whales', - topics: 'whale,whales,20x,withdrew,opened', - description: - 'Social chatter focuses on large "whale" moves: live whale-tracking tools, massive BTC/ETH accumulation, huge leveraged longs/shorts, and large withdrawals/transfers to/from exchanges and lending protocols. Users highlight record accumulation (largest since 2013/July 2025), miners stopping sales, and both bullish signals and acute volatility from whale leverage/losses. Discussions also cover copy-trading whales, NFT whale spending, OTC exits, and a nation-state scale mining expansion — all stressing smart-money vs retail positioning.', - data: [ - 8, 4, 3, 3, 1, 5, 4, 3, 1, 4, 7, 4, 5, 2, 2, 4, 4, 2, 3, 2, 1, 3, 2, 2, 1, 4, 3, 4, 3, 8, 8, - 2, 1, 6, 2, 1, 4, 4, 1, 4, 1, 1, 4, 4, 1, 5, 1, 2, 5, 4, 4, 5, 4, 64, 2, - ], - infofi: false, - }, - { - label: 'Oil price', - topics: 'cl,crude,oil,barrel,120', - description: - 'Social posts are debating a renewed oil rally amid supply concerns (SPR draws, constrained energy supply) with price targets ranging from $100 up to $200–$300/bbl. Traders note heavy positioning and dislocations between paper markets and physical/European crude, causing volatile intraday moves. Market participants point to energy firms and cheap E&P names as preferred plays while equities and Bitcoin rally alongside oil, creating tension between risk-on markets and commodity-driven inflation fears. The thread reflects bullish conviction, accusations of market manipulation, and a watch for washouts that could set up a further leg higher.', - data: [ - 1, 1, 2, 3, 2, 6, 3, 1, 6, 6, 14, 0, 4, 8, 3, 2, 2, 4, 3, 2, 2, 2, 3, 7, 0, 4, 0, 5, 5, 4, - 2, 2, 4, 32, 2, 2, 23, 6, 4, 3, 3, 1, 2, 3, 7, 4, 3, 3, 3, 4, 4, 2, 3, 3, 3, - ], - infofi: false, - }, - { - label: 'Apple CEO rotation', - topics: 'tim,apple,cook,apples,steve', - description: - 'Breaking news: Tim Cook will become Apple’s executive chairman and John Ternus will succeed him as CEO effective September 1, 2026. Social posts celebrate Cook’s operational achievements—huge market‑cap and revenue growth driven by supply‑chain mastery, services and Apple Silicon—while debating Apple’s lack of bold consumer product innovation under his tenure. John Ternus is highlighted as a 25‑year hardware veteran and architect of Apple Silicon, with observers split on whether a hardware‑focused engineer can push Apple into AI and new product breakthroughs. The thread mixes admiration, skepticism, and reminders of Apple’s dominant financial performance.', - data: [ - 1, 4, 15, 2, 7, 2, 2, 3, 4, 4, 1, 0, 0, 2, 7, 3, 2, 2, 2, 4, 7, 9, 7, 6, 3, 5, 10, 2, 2, 4, - 2, 9, 10, 0, 3, 0, 2, 3, 2, 7, 3, 2, 1, 3, 28, 4, 4, 9, 3, 0, 3, 2, 2, 2, 5, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-121.json b/priv/repo/major_topics_seed/data-121.json deleted file mode 100644 index 85ab5aafe2..0000000000 --- a/priv/repo/major_topics_seed/data-121.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["23.04.26","24.04.26","24.04.26","24.04.26","24.04.26","24.04.26","24.04.26","24.04.26","25.04.26","25.04.26","25.04.26","25.04.26","25.04.26","25.04.26","25.04.26","25.04.26","26.04.26","26.04.26","26.04.26","26.04.26","26.04.26","26.04.26","26.04.26","26.04.26","27.04.26","27.04.26","27.04.26","27.04.26","27.04.26","27.04.26","27.04.26","27.04.26","28.04.26","28.04.26","28.04.26","28.04.26","28.04.26","28.04.26","28.04.26","28.04.26","29.04.26","29.04.26","29.04.26","29.04.26","29.04.26","29.04.26","29.04.26","29.04.26","30.04.26","30.04.26","30.04.26","30.04.26","30.04.26","30.04.26","30.04.26"],"datasets":[{"label":"Iran war","topics":"irans,pakistan,iranian,blockade,strait","description":"Social discussion focuses on renewed US–Iran tensions and active diplomacy (Araghchi’s travel, Pakistan mediation, and back-channel US exchanges) alongside Iranian warnings of unused missile capabilities. Markets are watching for military options and Strait of Hormuz disruptions — Brent around $111, Jones Act waivers, Polymarket speculation, and spillover chatter into equities and crypto (Bitcoin). Timing concerns (60-day window, May 8 reset) and possible oil-flow risks are driving near-term market uncertainty.","data":[10,12,11,3,4,12,2,14,6,14,4,12,13,14,5,16,7,4,2,6,7,10,10,10,9,6,2,5,7,14,16,20,20,6,4,8,8,5,18,25,33,23,3,14,7,8,19,4,13,10,11,5,28,5,1]},{"label":"Gaming","topics":"gaming,games,93,theory,game","description":"Social posts center on the collapse and evolution of Web3 gaming: roughly $8B went into 1,000+ projects but Caladan reports ~93% are effectively dead, token values down ~95% and studio funding collapsed ~93% by 2025. Despite failures, communities and creators persist — Immutable Play shows 137M quests played, some devs used AI to rapidly iterate games (e.g., Potatoz Survivors), and partnerships (BAI_AGI × CROSS_gamechain) point to autonomous economies and AI-driven development. Discussion contrasts Web3 with classic gaming (some Web3 projects can’t match enduring fun), highlights streaming/creator strategies, player-driven economies’ durability, and the hard choice for creators to double down or diversify.","data":[8,5,5,6,12,4,8,6,13,3,8,8,3,5,4,4,4,62,11,15,10,3,7,0,5,6,8,7,8,6,0,9,8,5,11,28,6,2,8,3,2,5,8,8,8,5,3,14,6,4,3,9,11,4,5]},{"label":"Memecoins","topics":"pepe,memes,memecoin,meme,memecoins","description":"Twitter chatter centers on a renewed memecoin boom: new launches ($PEPE, $FLORK, $ASTEROID, $AIB, etc.), AI/meme-to-coin pipelines, and strong speculation about imminent pumps to hundreds of millions or $1B. Users debate long-term community durability versus short 24h runs, share trading/portfolio allocation approaches, and hype plans to sell into larger venues (Binance/whales). Overall sentiment is bullish and focused on quick gains and community-driven momentum.","data":[4,6,7,7,6,7,9,8,7,3,6,5,1,3,6,10,9,5,9,7,7,4,2,3,4,5,6,11,3,77,2,5,6,4,9,3,3,6,7,6,6,6,12,5,8,5,6,14,6,7,5,6,4,2,3]},{"label":"Future of Bitcoin","topics":"bitcoiners,scarce,printer,understood,bitcoiner","description":"Social discussion centers on Bitcoin’s role beyond a cash asset — framed as a gateway to truth, a tool for separating money and state, and a national-security issue in failing economies. Critics argue accepting BTC isn’t a treasury strategy, Core developers and Lightning Network face pushback, and cloneability raises questions about scarcity vs. abundance (Jeff Booth). Public figures and investors offer polarized views, while some users shift attention to altchains like Ethereum, Solana, and PulseChain.","data":[8,4,1,14,10,17,6,5,4,7,10,5,8,6,8,6,5,4,5,11,5,6,7,9,9,7,5,5,1,5,23,4,2,4,11,6,8,6,5,6,11,10,5,5,3,6,9,11,1,8,13,1,3,7,11]},{"label":"MegaETH TGE","topics":"mega,megaeth,tge,fdv,terminal","description":"Social chatter centers on MegaETH’s $MEGA token launch (TGE) and associated farming/points campaign. Season 1 just went live (8 weeks, ~2.5% supply ~ $42M), with on-chain Terminal points, app integrations, airdrop distributions, and bonus XP/rewards for holders. Major CEXs and derivatives venues listed MEGA (Binance, OKX, BitMart, GMX, Coinbase futures), driving expectations of heavy price action and trading/leverage opportunities. Community discussion focuses on farming playbooks, bridging, KPI-driven utilities, and how to participate or capture short-term opportunities.","data":[7,4,10,6,7,2,4,2,5,10,5,13,4,2,7,7,2,2,4,7,8,5,3,7,5,17,19,12,9,19,5,7,4,2,3,8,7,2,8,1,5,3,2,5,1,7,7,10,10,3,10,1,6,4,2]},{"label":"NFT comeback","topics":"nfts,nft,collections,comeback,collecting","description":"Social sentiment and on-chain metrics indicate an NFT market rebound: trading volume and transfers are rising, major OG collections (BAYC, Pudgy Penguins) are leading the move, and attention is returning to digital collectibles. Participants note a revival of community-driven utility and nostalgia (early projects, 10KTF, RTFKT/Nike chatter), alongside new use cases like NFTs tied to funded trading accounts (Foxify). Analysts urge caution — previous cycles were driven by speculation and low-effort drops — but the current rally shows stronger circulation and more sustainable engagement than a simple pump.","data":[0,4,4,4,10,7,4,6,11,6,8,5,4,6,5,3,9,9,5,8,4,11,4,2,4,1,6,5,11,4,2,7,12,2,9,1,5,6,6,4,3,14,6,7,6,4,6,6,8,3,10,3,4,1,2]},{"label":"Dogecoin","topics":"dogecoin,doge,010,cents,triangle","description":"Conversation is focused on bullish Dogecoin momentum around the $0.10 level: traders highlight breakouts after prolonged consolidation, MACD/100 SMA strength, support/resistance tests and channel support. Strong community hype (Doge Army, memes, VIP trading calls, options talk) and hyperbolic bullish sentiment drive the narrative.","data":[3,5,1,2,6,4,8,7,2,7,5,12,23,3,1,6,2,6,3,3,5,4,5,5,4,3,3,7,3,1,5,2,0,2,7,3,4,13,7,6,2,9,8,2,5,5,3,10,1,6,8,6,6,2,3]},{"label":"Bored Apes","topics":"apes,ape,bored,yacht,club","description":"Social chatter centers on Apecoin and the broader BAYC ecosystem (BAYC, MAYC, ApeChain). $APE has seen a sharp rebound (20-day +120–240%, intraday +150% candles), rising open interest on OKX and short-term outperformance vs BTC; users report rotating strategy profits into APE and buying ape NFTs, with whale trades and Grails OTC deals fueling attention. Catalysts mentioned include Michael Figge as Yuga Labs CEO and renewed liquidity/attention; voices also warn of exit-pumps, retrace risk, and typical diamond‑hand behavior despite narratives of supply shock and long-term membership value.","data":[7,3,37,3,4,13,7,3,4,3,3,9,3,7,3,4,6,3,4,6,1,5,2,4,4,2,6,7,8,3,3,0,7,3,9,0,1,4,3,4,5,4,6,4,1,5,4,7,4,3,5,3,2,3,5]},{"label":"Defi United bails out AAVE","topics":"united,defi,exploits,initiative,defillama","description":"Social posts celebrate 'DeFi United' — an ad-hoc cross‑protocol coordination and bailout effort after the KelpDAO/LayerZero hack created bad debt on Aave. The conversation highlights protocol teams and treasuries deploying funds, audits and security practices, and the need for simpler, robust DeFi design primitives rather than complex, fragile products. Users also critique yield‑farming risks, question 'trustless' promises, and urge that this crisis response become a lasting model for ecosystem resilience.","data":[2,4,3,9,9,8,7,1,2,5,7,29,3,3,3,3,3,9,3,6,1,2,6,10,5,2,3,6,6,2,2,8,2,4,4,6,7,3,3,7,8,11,7,2,3,2,5,7,1,1,3,2,2,3,3]},{"label":"Champions League","topics":"league,football,goals,match,premier","description":"Conversation centers on the Champions League semi between PSG and Bayern—framed as an ‘early final’ with expectations of a goal-heavy, chaotic tie—alongside fan reactions (Neuer retirement talk), manager quotes (Pep, Mourinho, Conte, Carrick), transfer/club news (Dybala, Longoria, Al Ahli champions) and broader match previews. Several posts promote prediction markets and contests tied to crypto rewards (USDC, USDT, CRO, Tangem), linking football engagement with crypto staking/prize mechanics.","data":[2,5,2,6,14,1,2,5,4,3,1,2,5,1,2,6,8,5,8,6,3,6,4,5,4,3,2,3,3,7,2,4,3,3,4,9,5,3,5,4,1,4,5,1,1,1,2,8,3,3,3,7,6,10,2]},{"label":"Art","topics":"artist,artists,art,painting,pixel","description":"Conversation centers on promoting digital artists and sharing artwork—both NFT-native and physical IRL pieces. Key themes: artist spotlights and gallery/exhibit posts, a recurring DRAGON prompt, debate over PFP/NFT culture versus traditional paintings, and positioning art as “programmable entertainment.” Mentions of platforms and projects (Art Blocks, Tezos, Phenomenalabs, GoblynzNFT) and community building for next‑gen creatives.","data":[3,1,31,25,5,0,1,4,3,7,1,2,2,4,2,3,0,5,0,1,3,1,3,1,1,2,5,4,8,2,3,6,1,10,5,0,5,1,2,4,4,6,3,3,3,1,3,6,3,0,2,6,6,6,4]},{"label":"Oil price","topics":"brent,crude,wti,oil,goldman","description":"Brent crude has surged rapidly — from about $94 ten days ago to highs near $120, with intra-day swings between ~$111 and $126. Markets are pricing a supply shock driven by escalating U.S.–Iran tensions and Strait of Hormuz disruptions, while a 95mb SPR release had minimal calming effect. Forecasters (e.g., Goldman) raised Q4 oil views as inventories draw, boosting volatility and creating clear headwinds for risk assets, consumers (gasoline), and corporate earnings; downside technical risk toward $105–$100 exists if $112–$113 resistance holds.","data":[1,0,6,5,2,5,1,4,4,0,12,2,3,2,2,8,5,6,2,2,2,5,0,2,2,3,1,3,1,2,0,4,23,0,1,2,29,6,2,6,4,3,1,2,7,9,3,2,6,1,2,3,3,1,3]},{"label":"SOL","topics":"solana,utilities,ventures,og,accelerate","description":"Social chatter shows strong Solana ecosystem activity: users buying and flipping SOL and 'sleeper' tokens, heavy excitement around NFTs as the platform's killer use case, and GameFi projects promoting playable characters and IRL rewards. Community events and streams (Network State Spring 2026 workshops, live shows) plus validator application openings for the April cycle indicate growing on‑chain and off‑chain engagement and infrastructure development.","data":[5,6,2,5,7,0,7,4,2,1,6,5,3,2,4,8,3,0,6,3,2,4,1,1,1,7,2,1,5,7,0,2,3,2,3,2,4,4,2,3,3,2,0,24,3,2,4,6,4,4,0,2,1,4,5]},{"label":"XRP","topics":"xrp,ripple,xrpl,outflows,ledger","description":"Social chatter centers on bullish XRP momentum: technical and on-chain signals (exchange outflows, orderflow stacking at $0.61, passive depth highs) suggest a potential rally and breakout if key resistances (~$1.39–$1.45) hold. Regulatory and market developments are fueling the narrative—SEC/CFTC classified XRP as a digital commodity and Coinbase plans institutional listings—while XRPL upgrades (escrow fixes, zk tools) and Flare’s FAssets expand DeFi utility. Community events, hype, price targets, and debates over centralization vs. executional efficiency drive strong retail and trading interest.","data":[2,4,2,2,2,6,2,5,9,8,7,3,4,2,4,6,4,1,1,4,2,7,3,3,2,6,4,1,3,3,1,2,2,2,4,1,2,7,8,3,3,4,4,1,2,5,4,2,1,2,5,7,2,3,6]},{"label":"STRC","topics":"strc,mstr,115,preferred,dividend","description":"Conversation focuses on MicroStrategy’s STRC preferred stock as a high-yield (≈11.5%) capital-markets vehicle that funds and accelerates MSTR’s large-scale Bitcoin accumulation. STRC is presented as a low-volatility, cash-flow product (hypergrowth to a ~$38B run rate) that enables institutions and fixed-income allocators to gain Bitcoin exposure, while Strategy has grown sats-per-share ~28% CAGR and now holds ~818k BTC. Critics compare alternatives (bCLOs) and flag volatility/dilution risks, but supporters argue STRC provides the bridge for massive future BTC buys (semi-monthly dividends, record-date trading, and recent $255M purchases cited).","data":[8,0,5,4,8,5,5,4,6,2,1,2,7,5,2,5,0,3,4,2,1,6,4,2,0,3,2,3,1,3,2,1,3,4,3,4,6,9,2,1,13,4,2,1,6,5,1,4,1,0,6,4,4,0,4]},{"label":"ETH price","topics":"zone,divergence,1d,consolidation,upward","description":"Ethereum is consolidating around $2,300 with key support at $2,100–2,200 and resistance near $2,400–2,500. Social and on‑chain metrics show bullish divergence—record active addresses, rising taker buy pressure, and smart‑contract growth—suggesting accumulation and potential undervaluation. Traders expect a breakout higher (targets ranging from $3,200 to multi‑thousand levels, and some long‑term price optimism) if support holds; downside risk if $2,300–$2,200 breaks. Near‑term catalysts include macro/regulatory headlines (e.g., US‑Iran talks) and events (ETHMilan); DeFi/rsETH bad‑debt fears easing and renewed NFT/ETH‑token demand are supportive.","data":[11,1,0,2,3,3,4,9,1,3,3,4,4,5,14,3,5,2,1,2,1,5,3,3,1,1,2,9,8,1,0,2,0,1,3,1,8,2,5,0,1,5,5,1,3,5,3,2,6,11,3,4,2,3,3]},{"label":"Inflation","topics":"pce,inflation,prior,elevated,unchanged","description":"Conversation focuses on a renewed inflation shock: US PCE rose 3.5% YoY (core 3.2%), the Fed held rates at 3.50–3.75% and described inflation as “elevated” with no near-term cuts signaled. Debate centers on stagflation vs. employment risk as energy and global price pressures (Eurozone, Australia, Middle East oil) may force further central bank tightening. Markets and crypto reacted (Bitcoin down), while some argue AI could be structurally deflationary, leaving a conflicted outlook for policy and asset prices.","data":[3,1,2,4,0,2,1,2,1,9,2,1,3,6,3,7,2,2,3,5,2,15,4,18,5,6,4,1,4,7,2,2,2,0,4,5,2,4,1,10,3,3,2,0,2,4,2,3,0,0,1,6,4,0,6]},{"label":"CLARITY act","topics":"clarity,senator,act,regulation,regulatory","description":"The US CLARITY Act is back in the headlines as Sen. Cynthia Lummis signals a May markup and industry leaders predict rapid passage if obstacles are resolved. Key flashpoints include Sen. Thom Tillis’s ethics clause, developer protections, stablecoin yield rules, and GOP intra-committee splits that could delay progress. Markets and firms see the bill as a major regulatory clarification that would delineate SEC/CFTC boundaries, unlock institutional custody/prime brokerage, and is viewed as bullish — though critics warn it may favor incumbents and slow innovation. Presidential support and ongoing negotiations mean timing could range from imminent (May/June) to much later if disputes persist.","data":[1,3,2,3,5,1,1,7,4,5,11,3,5,0,3,5,4,4,4,1,3,0,3,3,2,6,3,3,0,1,0,1,2,4,0,4,2,5,10,2,18,5,5,1,2,4,3,3,0,2,2,2,4,2,2]},{"label":"RWA","topics":"rwa,rwas,tokenized,tokenization,30b","description":"Real-World Asset (RWA) tokenization is rapidly accelerating: on-chain RWA market estimates range from ~$19B–$28B and has grown multiple-fold in the past year as institutional players roll out tokenized funds, stocks, T-bills, gold, and private credit. Infrastructure and custody partnerships (Ondo + Clearstream, Mu Digital, Golden Hill, Swarm) plus audits and contract-level trust (CertiK) are driving deployments, while liquidity and redeemability remain a major pain point. Activity shows consolidation across tokenization rails, exchanges, and asset platforms, and the narrative is shifting from mere wrapping to building real on-chain financial products and clearing yields above T-bill rates. Events like the RWA Summit (Dubai) and rising M&A underline the sector moving from framework to large-scale adoption in 2026.","data":[3,8,2,4,5,2,3,0,0,5,5,0,1,0,6,3,2,3,3,0,1,3,0,4,3,6,2,4,4,3,1,5,4,7,1,2,6,4,4,3,0,3,2,1,0,2,5,2,12,2,0,1,3,2,3]},{"label":"BTC price","topics":"rejected,rejection,trendline,retest,zone","description":"Twitter chatter focuses on Bitcoin being repeatedly rejected around the $80–82K zone, calling recent rallies potential bull traps rather than confirmed breakouts. Analysts highlight critical support at ~$76K (and mid-$70Ks); a loss could mean a quick drop toward the mid‑$60Ks or retest of the low $60Ks. Traders cite macro catalysts (Fed decision), weekend weakness, easing exchange sell-pressure, and on‑chain/technical setups (channels, order blocks) as determinants of the next move.","data":[7,0,3,1,1,10,10,2,2,4,3,1,1,2,2,5,3,0,2,6,0,9,1,1,2,0,1,3,6,0,1,5,1,5,2,2,4,1,12,10,0,1,1,2,1,0,9,3,1,3,4,0,2,0,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-121.ts b/priv/repo/major_topics_seed/data-121.ts deleted file mode 100644 index f1dfb56f06..0000000000 --- a/priv/repo/major_topics_seed/data-121.ts +++ /dev/null @@ -1,282 +0,0 @@ -export const NARRATIVES = { - labels: [ - '23.04.26', - '24.04.26', - '24.04.26', - '24.04.26', - '24.04.26', - '24.04.26', - '24.04.26', - '24.04.26', - '25.04.26', - '25.04.26', - '25.04.26', - '25.04.26', - '25.04.26', - '25.04.26', - '25.04.26', - '25.04.26', - '26.04.26', - '26.04.26', - '26.04.26', - '26.04.26', - '26.04.26', - '26.04.26', - '26.04.26', - '26.04.26', - '27.04.26', - '27.04.26', - '27.04.26', - '27.04.26', - '27.04.26', - '27.04.26', - '27.04.26', - '27.04.26', - '28.04.26', - '28.04.26', - '28.04.26', - '28.04.26', - '28.04.26', - '28.04.26', - '28.04.26', - '28.04.26', - '29.04.26', - '29.04.26', - '29.04.26', - '29.04.26', - '29.04.26', - '29.04.26', - '29.04.26', - '29.04.26', - '30.04.26', - '30.04.26', - '30.04.26', - '30.04.26', - '30.04.26', - '30.04.26', - '30.04.26', - ], - datasets: [ - { - label: 'Iran war', - topics: 'irans,pakistan,iranian,blockade,strait', - description: - 'Social discussion focuses on renewed US–Iran tensions and active diplomacy (Araghchi’s travel, Pakistan mediation, and back-channel US exchanges) alongside Iranian warnings of unused missile capabilities. Markets are watching for military options and Strait of Hormuz disruptions — Brent around $111, Jones Act waivers, Polymarket speculation, and spillover chatter into equities and crypto (Bitcoin). Timing concerns (60-day window, May 8 reset) and possible oil-flow risks are driving near-term market uncertainty.', - data: [ - 10, 12, 11, 3, 4, 12, 2, 14, 6, 14, 4, 12, 13, 14, 5, 16, 7, 4, 2, 6, 7, 10, 10, 10, 9, 6, - 2, 5, 7, 14, 16, 20, 20, 6, 4, 8, 8, 5, 18, 25, 33, 23, 3, 14, 7, 8, 19, 4, 13, 10, 11, 5, - 28, 5, 1, - ], - infofi: false, - }, - { - label: 'Gaming', - topics: 'gaming,games,93,theory,game', - description: - 'Social posts center on the collapse and evolution of Web3 gaming: roughly $8B went into 1,000+ projects but Caladan reports ~93% are effectively dead, token values down ~95% and studio funding collapsed ~93% by 2025. Despite failures, communities and creators persist — Immutable Play shows 137M quests played, some devs used AI to rapidly iterate games (e.g., Potatoz Survivors), and partnerships (BAI_AGI × CROSS_gamechain) point to autonomous economies and AI-driven development. Discussion contrasts Web3 with classic gaming (some Web3 projects can’t match enduring fun), highlights streaming/creator strategies, player-driven economies’ durability, and the hard choice for creators to double down or diversify.', - data: [ - 8, 5, 5, 6, 12, 4, 8, 6, 13, 3, 8, 8, 3, 5, 4, 4, 4, 62, 11, 15, 10, 3, 7, 0, 5, 6, 8, 7, 8, - 6, 0, 9, 8, 5, 11, 28, 6, 2, 8, 3, 2, 5, 8, 8, 8, 5, 3, 14, 6, 4, 3, 9, 11, 4, 5, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'pepe,memes,memecoin,meme,memecoins', - description: - 'Twitter chatter centers on a renewed memecoin boom: new launches ($PEPE, $FLORK, $ASTEROID, $AIB, etc.), AI/meme-to-coin pipelines, and strong speculation about imminent pumps to hundreds of millions or $1B. Users debate long-term community durability versus short 24h runs, share trading/portfolio allocation approaches, and hype plans to sell into larger venues (Binance/whales). Overall sentiment is bullish and focused on quick gains and community-driven momentum.', - data: [ - 4, 6, 7, 7, 6, 7, 9, 8, 7, 3, 6, 5, 1, 3, 6, 10, 9, 5, 9, 7, 7, 4, 2, 3, 4, 5, 6, 11, 3, 77, - 2, 5, 6, 4, 9, 3, 3, 6, 7, 6, 6, 6, 12, 5, 8, 5, 6, 14, 6, 7, 5, 6, 4, 2, 3, - ], - infofi: false, - }, - { - label: 'Future of Bitcoin', - topics: 'bitcoiners,scarce,printer,understood,bitcoiner', - description: - 'Social discussion centers on Bitcoin’s role beyond a cash asset — framed as a gateway to truth, a tool for separating money and state, and a national-security issue in failing economies. Critics argue accepting BTC isn’t a treasury strategy, Core developers and Lightning Network face pushback, and cloneability raises questions about scarcity vs. abundance (Jeff Booth). Public figures and investors offer polarized views, while some users shift attention to altchains like Ethereum, Solana, and PulseChain.', - data: [ - 8, 4, 1, 14, 10, 17, 6, 5, 4, 7, 10, 5, 8, 6, 8, 6, 5, 4, 5, 11, 5, 6, 7, 9, 9, 7, 5, 5, 1, - 5, 23, 4, 2, 4, 11, 6, 8, 6, 5, 6, 11, 10, 5, 5, 3, 6, 9, 11, 1, 8, 13, 1, 3, 7, 11, - ], - infofi: false, - }, - { - label: 'MegaETH TGE', - topics: 'mega,megaeth,tge,fdv,terminal', - description: - 'Social chatter centers on MegaETH’s $MEGA token launch (TGE) and associated farming/points campaign. Season 1 just went live (8 weeks, ~2.5% supply ~ $42M), with on-chain Terminal points, app integrations, airdrop distributions, and bonus XP/rewards for holders. Major CEXs and derivatives venues listed MEGA (Binance, OKX, BitMart, GMX, Coinbase futures), driving expectations of heavy price action and trading/leverage opportunities. Community discussion focuses on farming playbooks, bridging, KPI-driven utilities, and how to participate or capture short-term opportunities.', - data: [ - 7, 4, 10, 6, 7, 2, 4, 2, 5, 10, 5, 13, 4, 2, 7, 7, 2, 2, 4, 7, 8, 5, 3, 7, 5, 17, 19, 12, 9, - 19, 5, 7, 4, 2, 3, 8, 7, 2, 8, 1, 5, 3, 2, 5, 1, 7, 7, 10, 10, 3, 10, 1, 6, 4, 2, - ], - infofi: false, - }, - { - label: 'NFT comeback', - topics: 'nfts,nft,collections,comeback,collecting', - description: - 'Social sentiment and on-chain metrics indicate an NFT market rebound: trading volume and transfers are rising, major OG collections (BAYC, Pudgy Penguins) are leading the move, and attention is returning to digital collectibles. Participants note a revival of community-driven utility and nostalgia (early projects, 10KTF, RTFKT/Nike chatter), alongside new use cases like NFTs tied to funded trading accounts (Foxify). Analysts urge caution — previous cycles were driven by speculation and low-effort drops — but the current rally shows stronger circulation and more sustainable engagement than a simple pump.', - data: [ - 0, 4, 4, 4, 10, 7, 4, 6, 11, 6, 8, 5, 4, 6, 5, 3, 9, 9, 5, 8, 4, 11, 4, 2, 4, 1, 6, 5, 11, - 4, 2, 7, 12, 2, 9, 1, 5, 6, 6, 4, 3, 14, 6, 7, 6, 4, 6, 6, 8, 3, 10, 3, 4, 1, 2, - ], - infofi: false, - }, - { - label: 'Dogecoin', - topics: 'dogecoin,doge,010,cents,triangle', - description: - 'Conversation is focused on bullish Dogecoin momentum around the $0.10 level: traders highlight breakouts after prolonged consolidation, MACD/100 SMA strength, support/resistance tests and channel support. Strong community hype (Doge Army, memes, VIP trading calls, options talk) and hyperbolic bullish sentiment drive the narrative.', - data: [ - 3, 5, 1, 2, 6, 4, 8, 7, 2, 7, 5, 12, 23, 3, 1, 6, 2, 6, 3, 3, 5, 4, 5, 5, 4, 3, 3, 7, 3, 1, - 5, 2, 0, 2, 7, 3, 4, 13, 7, 6, 2, 9, 8, 2, 5, 5, 3, 10, 1, 6, 8, 6, 6, 2, 3, - ], - infofi: false, - }, - { - label: 'Bored Apes', - topics: 'apes,ape,bored,yacht,club', - description: - 'Social chatter centers on Apecoin and the broader BAYC ecosystem (BAYC, MAYC, ApeChain). $APE has seen a sharp rebound (20-day +120–240%, intraday +150% candles), rising open interest on OKX and short-term outperformance vs BTC; users report rotating strategy profits into APE and buying ape NFTs, with whale trades and Grails OTC deals fueling attention. Catalysts mentioned include Michael Figge as Yuga Labs CEO and renewed liquidity/attention; voices also warn of exit-pumps, retrace risk, and typical diamond‑hand behavior despite narratives of supply shock and long-term membership value.', - data: [ - 7, 3, 37, 3, 4, 13, 7, 3, 4, 3, 3, 9, 3, 7, 3, 4, 6, 3, 4, 6, 1, 5, 2, 4, 4, 2, 6, 7, 8, 3, - 3, 0, 7, 3, 9, 0, 1, 4, 3, 4, 5, 4, 6, 4, 1, 5, 4, 7, 4, 3, 5, 3, 2, 3, 5, - ], - infofi: false, - }, - { - label: 'Defi United bails out AAVE', - topics: 'united,defi,exploits,initiative,defillama', - description: - "Social posts celebrate 'DeFi United' — an ad-hoc cross‑protocol coordination and bailout effort after the KelpDAO/LayerZero hack created bad debt on Aave. The conversation highlights protocol teams and treasuries deploying funds, audits and security practices, and the need for simpler, robust DeFi design primitives rather than complex, fragile products. Users also critique yield‑farming risks, question 'trustless' promises, and urge that this crisis response become a lasting model for ecosystem resilience.", - data: [ - 2, 4, 3, 9, 9, 8, 7, 1, 2, 5, 7, 29, 3, 3, 3, 3, 3, 9, 3, 6, 1, 2, 6, 10, 5, 2, 3, 6, 6, 2, - 2, 8, 2, 4, 4, 6, 7, 3, 3, 7, 8, 11, 7, 2, 3, 2, 5, 7, 1, 1, 3, 2, 2, 3, 3, - ], - infofi: false, - }, - { - label: 'Champions League', - topics: 'league,football,goals,match,premier', - description: - 'Conversation centers on the Champions League semi between PSG and Bayern—framed as an ‘early final’ with expectations of a goal-heavy, chaotic tie—alongside fan reactions (Neuer retirement talk), manager quotes (Pep, Mourinho, Conte, Carrick), transfer/club news (Dybala, Longoria, Al Ahli champions) and broader match previews. Several posts promote prediction markets and contests tied to crypto rewards (USDC, USDT, CRO, Tangem), linking football engagement with crypto staking/prize mechanics.', - data: [ - 2, 5, 2, 6, 14, 1, 2, 5, 4, 3, 1, 2, 5, 1, 2, 6, 8, 5, 8, 6, 3, 6, 4, 5, 4, 3, 2, 3, 3, 7, - 2, 4, 3, 3, 4, 9, 5, 3, 5, 4, 1, 4, 5, 1, 1, 1, 2, 8, 3, 3, 3, 7, 6, 10, 2, - ], - infofi: false, - }, - { - label: 'Art', - topics: 'artist,artists,art,painting,pixel', - description: - 'Conversation centers on promoting digital artists and sharing artwork—both NFT-native and physical IRL pieces. Key themes: artist spotlights and gallery/exhibit posts, a recurring DRAGON prompt, debate over PFP/NFT culture versus traditional paintings, and positioning art as “programmable entertainment.” Mentions of platforms and projects (Art Blocks, Tezos, Phenomenalabs, GoblynzNFT) and community building for next‑gen creatives.', - data: [ - 3, 1, 31, 25, 5, 0, 1, 4, 3, 7, 1, 2, 2, 4, 2, 3, 0, 5, 0, 1, 3, 1, 3, 1, 1, 2, 5, 4, 8, 2, - 3, 6, 1, 10, 5, 0, 5, 1, 2, 4, 4, 6, 3, 3, 3, 1, 3, 6, 3, 0, 2, 6, 6, 6, 4, - ], - infofi: false, - }, - { - label: 'Oil price', - topics: 'brent,crude,wti,oil,goldman', - description: - 'Brent crude has surged rapidly — from about $94 ten days ago to highs near $120, with intra-day swings between ~$111 and $126. Markets are pricing a supply shock driven by escalating U.S.–Iran tensions and Strait of Hormuz disruptions, while a 95mb SPR release had minimal calming effect. Forecasters (e.g., Goldman) raised Q4 oil views as inventories draw, boosting volatility and creating clear headwinds for risk assets, consumers (gasoline), and corporate earnings; downside technical risk toward $105–$100 exists if $112–$113 resistance holds.', - data: [ - 1, 0, 6, 5, 2, 5, 1, 4, 4, 0, 12, 2, 3, 2, 2, 8, 5, 6, 2, 2, 2, 5, 0, 2, 2, 3, 1, 3, 1, 2, - 0, 4, 23, 0, 1, 2, 29, 6, 2, 6, 4, 3, 1, 2, 7, 9, 3, 2, 6, 1, 2, 3, 3, 1, 3, - ], - infofi: false, - }, - { - label: 'SOL', - topics: 'solana,utilities,ventures,og,accelerate', - description: - "Social chatter shows strong Solana ecosystem activity: users buying and flipping SOL and 'sleeper' tokens, heavy excitement around NFTs as the platform's killer use case, and GameFi projects promoting playable characters and IRL rewards. Community events and streams (Network State Spring 2026 workshops, live shows) plus validator application openings for the April cycle indicate growing on‑chain and off‑chain engagement and infrastructure development.", - data: [ - 5, 6, 2, 5, 7, 0, 7, 4, 2, 1, 6, 5, 3, 2, 4, 8, 3, 0, 6, 3, 2, 4, 1, 1, 1, 7, 2, 1, 5, 7, 0, - 2, 3, 2, 3, 2, 4, 4, 2, 3, 3, 2, 0, 24, 3, 2, 4, 6, 4, 4, 0, 2, 1, 4, 5, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'xrp,ripple,xrpl,outflows,ledger', - description: - 'Social chatter centers on bullish XRP momentum: technical and on-chain signals (exchange outflows, orderflow stacking at $0.61, passive depth highs) suggest a potential rally and breakout if key resistances (~$1.39–$1.45) hold. Regulatory and market developments are fueling the narrative—SEC/CFTC classified XRP as a digital commodity and Coinbase plans institutional listings—while XRPL upgrades (escrow fixes, zk tools) and Flare’s FAssets expand DeFi utility. Community events, hype, price targets, and debates over centralization vs. executional efficiency drive strong retail and trading interest.', - data: [ - 2, 4, 2, 2, 2, 6, 2, 5, 9, 8, 7, 3, 4, 2, 4, 6, 4, 1, 1, 4, 2, 7, 3, 3, 2, 6, 4, 1, 3, 3, 1, - 2, 2, 2, 4, 1, 2, 7, 8, 3, 3, 4, 4, 1, 2, 5, 4, 2, 1, 2, 5, 7, 2, 3, 6, - ], - infofi: false, - }, - { - label: 'STRC', - topics: 'strc,mstr,115,preferred,dividend', - description: - 'Conversation focuses on MicroStrategy’s STRC preferred stock as a high-yield (≈11.5%) capital-markets vehicle that funds and accelerates MSTR’s large-scale Bitcoin accumulation. STRC is presented as a low-volatility, cash-flow product (hypergrowth to a ~$38B run rate) that enables institutions and fixed-income allocators to gain Bitcoin exposure, while Strategy has grown sats-per-share ~28% CAGR and now holds ~818k BTC. Critics compare alternatives (bCLOs) and flag volatility/dilution risks, but supporters argue STRC provides the bridge for massive future BTC buys (semi-monthly dividends, record-date trading, and recent $255M purchases cited).', - data: [ - 8, 0, 5, 4, 8, 5, 5, 4, 6, 2, 1, 2, 7, 5, 2, 5, 0, 3, 4, 2, 1, 6, 4, 2, 0, 3, 2, 3, 1, 3, 2, - 1, 3, 4, 3, 4, 6, 9, 2, 1, 13, 4, 2, 1, 6, 5, 1, 4, 1, 0, 6, 4, 4, 0, 4, - ], - infofi: false, - }, - { - label: 'ETH price', - topics: 'zone,divergence,1d,consolidation,upward', - description: - 'Ethereum is consolidating around $2,300 with key support at $2,100–2,200 and resistance near $2,400–2,500. Social and on‑chain metrics show bullish divergence—record active addresses, rising taker buy pressure, and smart‑contract growth—suggesting accumulation and potential undervaluation. Traders expect a breakout higher (targets ranging from $3,200 to multi‑thousand levels, and some long‑term price optimism) if support holds; downside risk if $2,300–$2,200 breaks. Near‑term catalysts include macro/regulatory headlines (e.g., US‑Iran talks) and events (ETHMilan); DeFi/rsETH bad‑debt fears easing and renewed NFT/ETH‑token demand are supportive.', - data: [ - 11, 1, 0, 2, 3, 3, 4, 9, 1, 3, 3, 4, 4, 5, 14, 3, 5, 2, 1, 2, 1, 5, 3, 3, 1, 1, 2, 9, 8, 1, - 0, 2, 0, 1, 3, 1, 8, 2, 5, 0, 1, 5, 5, 1, 3, 5, 3, 2, 6, 11, 3, 4, 2, 3, 3, - ], - infofi: false, - }, - { - label: 'Inflation', - topics: 'pce,inflation,prior,elevated,unchanged', - description: - 'Conversation focuses on a renewed inflation shock: US PCE rose 3.5% YoY (core 3.2%), the Fed held rates at 3.50–3.75% and described inflation as “elevated” with no near-term cuts signaled. Debate centers on stagflation vs. employment risk as energy and global price pressures (Eurozone, Australia, Middle East oil) may force further central bank tightening. Markets and crypto reacted (Bitcoin down), while some argue AI could be structurally deflationary, leaving a conflicted outlook for policy and asset prices.', - data: [ - 3, 1, 2, 4, 0, 2, 1, 2, 1, 9, 2, 1, 3, 6, 3, 7, 2, 2, 3, 5, 2, 15, 4, 18, 5, 6, 4, 1, 4, 7, - 2, 2, 2, 0, 4, 5, 2, 4, 1, 10, 3, 3, 2, 0, 2, 4, 2, 3, 0, 0, 1, 6, 4, 0, 6, - ], - infofi: false, - }, - { - label: 'CLARITY act', - topics: 'clarity,senator,act,regulation,regulatory', - description: - 'The US CLARITY Act is back in the headlines as Sen. Cynthia Lummis signals a May markup and industry leaders predict rapid passage if obstacles are resolved. Key flashpoints include Sen. Thom Tillis’s ethics clause, developer protections, stablecoin yield rules, and GOP intra-committee splits that could delay progress. Markets and firms see the bill as a major regulatory clarification that would delineate SEC/CFTC boundaries, unlock institutional custody/prime brokerage, and is viewed as bullish — though critics warn it may favor incumbents and slow innovation. Presidential support and ongoing negotiations mean timing could range from imminent (May/June) to much later if disputes persist.', - data: [ - 1, 3, 2, 3, 5, 1, 1, 7, 4, 5, 11, 3, 5, 0, 3, 5, 4, 4, 4, 1, 3, 0, 3, 3, 2, 6, 3, 3, 0, 1, - 0, 1, 2, 4, 0, 4, 2, 5, 10, 2, 18, 5, 5, 1, 2, 4, 3, 3, 0, 2, 2, 2, 4, 2, 2, - ], - infofi: false, - }, - { - label: 'RWA', - topics: 'rwa,rwas,tokenized,tokenization,30b', - description: - 'Real-World Asset (RWA) tokenization is rapidly accelerating: on-chain RWA market estimates range from ~$19B–$28B and has grown multiple-fold in the past year as institutional players roll out tokenized funds, stocks, T-bills, gold, and private credit. Infrastructure and custody partnerships (Ondo + Clearstream, Mu Digital, Golden Hill, Swarm) plus audits and contract-level trust (CertiK) are driving deployments, while liquidity and redeemability remain a major pain point. Activity shows consolidation across tokenization rails, exchanges, and asset platforms, and the narrative is shifting from mere wrapping to building real on-chain financial products and clearing yields above T-bill rates. Events like the RWA Summit (Dubai) and rising M&A underline the sector moving from framework to large-scale adoption in 2026.', - data: [ - 3, 8, 2, 4, 5, 2, 3, 0, 0, 5, 5, 0, 1, 0, 6, 3, 2, 3, 3, 0, 1, 3, 0, 4, 3, 6, 2, 4, 4, 3, 1, - 5, 4, 7, 1, 2, 6, 4, 4, 3, 0, 3, 2, 1, 0, 2, 5, 2, 12, 2, 0, 1, 3, 2, 3, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: 'rejected,rejection,trendline,retest,zone', - description: - 'Twitter chatter focuses on Bitcoin being repeatedly rejected around the $80–82K zone, calling recent rallies potential bull traps rather than confirmed breakouts. Analysts highlight critical support at ~$76K (and mid-$70Ks); a loss could mean a quick drop toward the mid‑$60Ks or retest of the low $60Ks. Traders cite macro catalysts (Fed decision), weekend weakness, easing exchange sell-pressure, and on‑chain/technical setups (channels, order blocks) as determinants of the next move.', - data: [ - 7, 0, 3, 1, 1, 10, 10, 2, 2, 4, 3, 1, 1, 2, 2, 5, 3, 0, 2, 6, 0, 9, 1, 1, 2, 0, 1, 3, 6, 0, - 1, 5, 1, 5, 2, 2, 4, 1, 12, 10, 0, 1, 1, 2, 1, 0, 9, 3, 1, 3, 4, 0, 2, 0, 1, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-122.json b/priv/repo/major_topics_seed/data-122.json deleted file mode 100644 index c21e038fd9..0000000000 --- a/priv/repo/major_topics_seed/data-122.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["30.04.26","01.05.26","01.05.26","01.05.26","01.05.26","01.05.26","01.05.26","01.05.26","02.05.26","02.05.26","02.05.26","02.05.26","02.05.26","02.05.26","02.05.26","02.05.26","03.05.26","03.05.26","03.05.26","03.05.26","03.05.26","03.05.26","03.05.26","03.05.26","04.05.26","04.05.26","04.05.26","04.05.26","04.05.26","04.05.26","04.05.26","04.05.26","05.05.26","05.05.26","05.05.26","05.05.26","05.05.26","05.05.26","05.05.26","05.05.26","06.05.26","06.05.26","06.05.26","06.05.26","06.05.26","06.05.26","06.05.26","06.05.26","07.05.26","07.05.26","07.05.26","07.05.26","07.05.26","07.05.26","07.05.26"],"datasets":[{"label":"Saylor potentially selling BTC","topics":"mstr,strc,dividends,saylor,115","description":"MicroStrategy’s CEO Michael Saylor signaled the company may sell some of its 818,334 BTC holdings to fund STRC dividends and manage obligations, prompting intense community debate and fears of market selling or manipulation (wash-trade accusations). Strategy has tokenized its perpetual preferred (STRC) — marketed with ~11.5% yield and launched on Ethereum/BNB/Solana via Ondo — and faces criticism from analysts (e.g., Peter Schiff) about sustainability and impact on BTC price and MSTR/ASST liquidity. Supporters argue selling could be tactical (buying cheaper BTC later) and Strategy has cash buffers, while critics warn dividend funding could pressure both Bitcoin and MicroStrategy shares.","data":[10,6,10,8,14,7,16,24,11,6,16,8,6,12,14,9,7,10,14,17,9,13,9,4,14,6,16,14,13,15,7,13,9,17,11,4,15,20,9,8,24,19,59,15,10,14,11,15,11,9,6,7,7,13,10]},{"label":"BTC price","topics":"80k,85k,rejection,resistance,zone","description":"Twitter crypto chatter centers on Bitcoin’s rally past the $80K zone and whether the breakout will hold. Traders set short-term targets roughly 76–90K (common 78–85K/83–86K), note reclaim of key H4/200MA levels and a possible CME gap fill, and debate bull-trap risk. Comments highlight high perp funding during the rally, mixed spot demand/on‑chain signals, BTC dominance (~61%), and related ETH price action and market news.","data":[8,4,15,11,9,31,51,6,17,6,17,11,5,4,5,20,8,7,9,12,6,15,34,10,9,4,12,10,19,7,8,22,4,3,4,10,9,19,34,8,8,7,8,15,6,12,17,19,19,20,12,5,5,3,5]},{"label":"DeFi","topics":"defi,exploits,drift,protocols,kelpdao","description":"Twitter discussion centers on a DeFi resurgence shadowed by a sharp rise in hacks and systemic risk (April 2026 ~$651M stolen, 40+ exploits; big losses at Drift and KelpDAO). Root causes cited include yield-chasing leverage loops, oracle/fake-collateral and wallet-approval vulnerabilities, centralized control points, and accelerating AI-driven attacks. Concurrently the community is pushing maturity: aggregation and collateral diversification (Olympus, P0, FastBridge, LIKWID), a move toward cash-flow-based credit, performance narratives (DeFi Growth Index vs ETH), and growing legal/product-liability concerns for developers. Calls for stronger security tooling (DefiLlama), better system design, and governance reforms are prominent.","data":[8,6,9,3,9,1,7,3,4,12,2,7,18,4,6,15,2,10,5,6,23,6,5,15,7,5,10,3,15,6,7,8,6,8,6,10,4,11,9,10,9,7,1,6,6,8,4,5,3,7,17,5,4,1,8]},{"label":"BTC adoption","topics":"bitcoiners,fiat,fixes,bitcoiner,blocks","description":"Twitter crypto chatter centers on Bitcoin as a form of money and a growing adoption narrative: proponents call it scarce, anti-fragile, and the vehicle for a historic wealth transfer as institutions and retail ‘stack sats’. Debate persists about whether Bitcoin is meant to solve inequality or merely serve as money, and critics argue fundamentals are lacking and it’s speculative. Social signals (merchant acceptance, public endorsements) and cultural rhetoric (fiat vs. freedom, personal responsibility) drive the conversation alongside warnings about mental/health limits to wealth.","data":[3,6,3,11,11,26,9,4,6,4,13,12,6,10,6,4,6,8,6,3,11,6,5,10,14,4,1,2,5,5,7,10,8,6,6,7,5,3,3,5,5,3,1,5,6,8,6,9,2,9,10,2,5,7,4]},{"label":"Memecoins","topics":"memecoin,meme,memes,memecoins,cult","description":"Social chatter is focused on finding the “next billion-dollar” memecoin: community-driven launches, branding/real-world marketing, influencer triggers, meme wars and promotions are driving hype and speculative buying. Users highlight memecoins as a fast route to outsized gains while warning about rug pulls, liquidations and short-term volatility; parallels to stocks and mainstream platforms (TikTok, celebs) are noted. Discussions also touch on infrastructure (perps, spot, prediction markets) and the revenue/engagement memecoins bring to chains.","data":[5,2,4,5,10,8,7,4,5,4,6,9,3,4,7,3,8,4,2,9,7,7,3,9,4,3,7,7,7,62,14,5,7,4,8,8,2,2,5,4,3,6,7,4,4,6,4,4,2,6,5,7,5,3,3]},{"label":"CLARITY act","topics":"compromise,clarity,act,senate,passive","description":"Discussion focuses on the CLARITY Act’s bipartisan compromise limiting passive stablecoin yield (banning rewards economically equivalent to bank interest) while permitting activity‑based rewards. Traders and analysts say this regulatory clarity could unlock institutional capital, accelerate tokenization and benefit major crypto networks, though banks are lobbying against parts of the bill and DeFi developer liability remains an unresolved risk. Senators Tillis and Alsobrooks drove the deal and a Senate Banking markup is imminent, making passage and market impact likely soon.","data":[4,5,7,7,7,2,4,8,9,8,1,8,7,5,0,5,5,3,6,2,3,4,0,5,8,3,15,2,0,8,4,9,12,1,5,3,9,4,16,6,10,36,4,4,15,6,4,7,1,4,4,2,2,4,6]},{"label":"TON rally","topics":"ton,telegram,validator,6x,tons","description":"Social chatter centers on a sharp TON rally driven by Telegram’s deeper integration: fees were cut (~6x to ~0.00039 TON), txns became sub-second, and Pavel Durov/Telegram are moving to be the largest validator. That shift has triggered huge on‑chain flows (large transfers into the Elector/staking contract), explosive trading volume and memecoin pumps (UTYA, DOGS, etc.), and quick trader gains. Infrastructure and onboarding (wallet_tg, Husher, Rubic, Cocoon) are highlighted as catalyzers, while some users flag decentralization concerns as Telegram gains control.","data":[3,2,7,2,5,4,3,4,6,3,4,5,6,8,11,5,7,9,7,6,1,6,5,1,8,7,4,1,4,14,4,6,5,16,3,4,8,11,7,5,5,5,3,4,1,6,13,7,15,10,6,5,7,3,2]},{"label":"Whales","topics":"whales,whale,aped,dyor,mc","description":"Social chatter is dominated by large “whale” movements across BTC, ETH and alt tokens: heavy off‑exchange withdrawals (~$2.3B), sizable deposits (e.g., a $377M ETH deposit to Binance), targeted buys (WBTC, SOL, small caps) and profit-taking (2,521 BTC ≈ $205M sold). Analysts note divergent positioning—whales leaning long on BTC while some are shorting, retail crowding the opposite side—and warn these shifts often precede spikes in volatility and liquidation cascades. Many posts flag smart‑money accumulation, on‑chain metrics (liquidity, holder concentration, momentum, SAFU scores) and ad hoc alerts about risky apes into low‑market‑cap tokens; consensus advice is caution and DYOR.","data":[17,4,5,3,5,3,0,5,3,5,3,12,4,3,4,4,2,8,1,3,0,3,2,7,4,2,2,5,3,9,2,3,3,3,2,2,3,3,0,3,3,1,7,3,7,2,1,3,0,11,2,4,1,101,0]},{"label":"ZEC rally","topics":"zcash,zec,xmr,privacy,encrypted","description":"Social chatter focuses on a strong Zcash ($ZEC) rally and bullish momentum, with traders citing technical setups and lofty price targets ($600–$2,000+), buy‑the‑dip sentiment, and some caution over rapid vertical moves. Discussion emphasizes ZEC’s privacy narrative (shielded transactions, removal of trusted setup — “just math”) and growing utility/acceptance (payments, art sales). Also highlighted: cross‑chain movement via NEAR Intents (moving ZEC across 30+ chains without CEX) and exchange/fee-related promotions driving activity.","data":[7,2,4,5,13,6,5,9,3,6,2,8,5,2,7,4,3,6,3,5,4,7,2,4,5,3,6,4,7,6,2,5,3,3,6,3,9,8,3,3,5,8,7,4,6,3,10,1,7,4,2,3,5,3,23]},{"label":"Consensus Miami","topics":"miami,consensus2026,consensus,panel,booth","description":"Consensus Miami 2026 is dominating social feeds — high-energy in-person conference and side events drawing builders, VCs, traders, artists, and institutional allocators. Key themes: institutional liquidity and adoption, tokenization/RWA issuance, onchain options/VTFs, superchains, privacy, security reviews, and bridging US–LATAM capital. Multiple panels and 1:1 security sessions highlight the shift toward institutional-grade infrastructure and real-world use cases. BitBasel and rooftop/after-hours meetups are where many networking and deal conversations happen.","data":[4,1,5,1,3,4,3,8,2,12,8,8,8,5,3,8,6,4,2,5,11,9,8,7,9,1,7,8,1,6,6,5,6,5,2,3,2,4,1,1,5,2,4,2,10,3,16,1,11,3,3,5,12,1,0]},{"label":"Art","topics":"art,artist,artists,generative,style","description":"Social posts celebrate a resurgence of digital, generative and on-chain art in web3 — artists using AI, 3D and hand-drawn techniques are minting and getting traction. Community highlights .ART domains, curator interest, and notable drops, while warning about low-supply “cash grab” projects and advising buyers to check artist/team track records.","data":[0,5,2,50,12,1,6,3,5,3,7,10,6,2,0,5,8,4,2,5,2,1,2,5,4,0,8,5,9,2,2,2,7,9,3,4,6,6,2,3,2,4,2,3,1,3,4,2,3,4,1,4,6,3,2]},{"label":"Hantavirus","topics":"hantavirus,virus,cruise,ship,passengers","description":"Social conversation centers on a hantavirus outbreak aboard the MV Hondius polar cruise (multiple deaths, confirmed and suspected cases) involving the Andes strain, which can rarely spread person-to-person. Posts mix factual updates (passengers returned, UK self-isolation, WHO comments) with panic, conspiracy theories about engineered viruses for vaccine profit, doomsday comparisons to COVID, and viral prediction claims. Crypto-adjacent elements appear (market reactions, users long DOGE, and a Track Hanta project accepting Solana donations), driving some trader and community attention.","data":[1,4,2,2,2,3,1,2,5,8,7,2,6,4,1,2,2,4,6,6,4,24,2,2,7,1,4,0,2,9,1,3,5,5,13,3,7,3,3,8,5,7,5,1,5,4,7,6,6,7,6,9,5,6,6]},{"label":"NFTs","topics":"nfts,nft,mint,collection,comeback","description":"Social chatter centers on an NFT comeback driven by renewed institutional interest, blue-chip rotation (BAYC round 2) and community-led activity. Participants note retail skepticism but expect a collectible “supercycle” combining physical and digital assets, cheaper entry points, new characters/narratives, and utility-focused game assets to spark the next bull run. Commentary highlights ETH accumulation, giveaways/community rewards, and generational opportunities for NFT-focused apps and platforms.","data":[2,5,3,8,5,4,2,3,0,13,6,6,4,5,6,2,7,3,5,8,3,5,7,9,2,4,3,6,3,3,9,3,5,5,4,8,7,2,5,3,3,5,1,3,2,10,2,6,4,2,9,7,2,3,6]},{"label":"Coinbase layoffs","topics":"workforce,employees,layoffs,brian,14","description":"Coinbase is cutting roughly 14% of its workforce (about 700 roles) as CEO Brian Armstrong frames the move as a cost reset driven by crypto market volatility and a shift to AI-native, more automated operations. This is the company’s fourth major layoff since 2022 and reflects broader industry cost-cutting and automation trends as exchanges adapt to uneven revenue and faster engineering workflows enabled by AI.","data":[1,2,10,1,3,0,0,1,0,9,4,31,0,4,7,3,9,3,2,5,4,3,1,2,5,11,14,0,2,2,2,4,4,3,5,1,0,0,4,6,4,4,3,9,2,4,1,4,1,3,2,2,3,5,1]},{"label":"Onchain privacy","topics":"privacy,offchain,blockchains,icp,encryption","description":"Discussion focuses on privacy-first blockchain infrastructure—ZK and TFHE privacy layers (ExoLabs, RAILGUN, Beam, INIChain, Gh0st) that enable private balances, stealth addresses, and confidential bridged assets. Conversations also emphasize interoperability and bridges (Starknet BTC bridge, NEAR Intents, Ethereum↔Beam), institutional RWA onboarding, multi-chain futures, and concerns that without privacy Ethereum could become a surveillance ledger.","data":[2,1,2,3,3,9,5,5,2,3,1,5,4,3,5,5,7,3,9,4,1,1,2,6,2,5,4,1,5,4,3,2,6,7,5,5,7,7,2,2,0,5,1,3,2,3,6,1,0,6,6,0,3,1,2]},{"label":"Israel - Palestine","topics":"israel,killed,southern,journalist,attacks","description":"Social media posts focus on escalating Israel military strikes in Gaza and Lebanon, reporting civilian deaths, targeted assassinations (including a Hezbollah commander), and wounded leaders’ family members. The discussion mixes outrage over alleged Israeli “genocidal” tactics with domestic politics—UK and Australian protests, accusations of antisemitism, and criticism of Western support—alongside conspiratorial rhetoric about Zionist influence and US coordination. Eyewitness clips, casualty reports, and inflammatory political commentary drive widespread polarization and calls for accountability.","data":[1,11,8,5,3,2,3,2,2,3,7,0,6,4,3,4,2,5,0,2,4,2,1,5,10,2,8,1,1,1,4,2,1,3,6,2,1,4,3,4,7,2,2,2,2,6,5,3,3,4,1,2,4,4,2]},{"label":"XRP","topics":"xrp,ripple,garlinghouse,brad,okx","description":"Twitter chatter centers on $XRP — heavy technical talk about a long compression/triangle breakout (short-term ‘powder keg’), key resistance levels (~$1.40–1.45), and low Binance liquidity that could trigger a large move. Community and exchanges fuel momentum: XRP Las Vegas highlights Ripple exec appearances, Garlinghouse’s multi‑chain comments, RLUSD listings (parity across OKX USD orderbooks), OKX $100 XRP promotions and giveaways. Newsflows include rapid market‑cap spikes, bullish TA/algo signals, and projects from major holders (Greg Kidd’s USBC), with debate over speculation vs real adoption driving price upside scenarios.","data":[3,2,2,5,3,1,3,1,5,2,3,4,1,4,7,6,6,1,3,3,2,1,6,7,2,4,5,6,3,5,5,0,8,0,1,2,6,3,4,3,4,7,4,2,4,1,1,1,2,1,1,3,7,3,0]},{"label":"DOGE","topics":"dogecoin,doge,channel,accept,batch","description":"Social chatter is overwhelmingly bullish on Dogecoin: users report accumulation, meme-driven engagement, and high on-chain activity while traders highlight technical breakouts, Ichimoku alignment, and a possible PMO bullish crossover. Targets being discussed range from $0.50 to $1 (and jokingly $4), with traders noting favorable risk/reward setups but warning about fakeouts and volatility. The community momentum is reinforced by meme culture, viral posts, and short-term swing trade setups—driving sentiment more than fundamentals.","data":[8,0,3,4,2,1,3,2,3,6,5,2,0,24,0,1,2,2,3,2,2,4,12,2,2,2,4,1,4,4,1,5,1,1,2,1,3,4,7,3,1,0,2,6,2,1,5,4,1,3,0,3,4,3,3]},{"label":"Stablecoins","topics":"stablecoins,payouts,visa,bitwise,stablecoin","description":"Discussion centers on stablecoins as both a driving infrastructure for crypto payments and a privacy/regulatory risk—critics call major fiat-pegged tokens (USDC/USDT) “surveillance capitalism,” while proponents highlight rapid adoption and massive growth forecasts. Current supply is ~ $300B+ with industry estimates of $2T–$4T+ by 2030; stablecoins are increasingly the on-ramp and payment rail across regions (notably LatAm) and chains (Polygon, Solana). Conversation touches on banking partnerships, reserve models, neobanks, yield products, decentralized stablecoin projects, and the need for better UX and real‑time risk tooling. The central tension is privacy and regulatory exposure versus stablecoins becoming core global financial plumbing.","data":[5,2,5,5,1,6,3,4,0,7,0,1,4,1,3,3,3,2,0,0,1,2,4,4,3,1,4,1,3,1,1,5,3,5,1,0,3,6,0,4,4,12,2,3,28,3,1,2,4,2,3,1,0,0,1]},{"label":"SOL","topics":"solanas,solana,scalability,landing,bobo","description":"Social chatter centers on rapid Solana ecosystem expansion: developer events and hackathons, growing technical complexity (Solana 2.0, low‑latency execution platforms like Zela), and new tooling for trading (Beam, wallet chatter around Solflare). Privacy and encrypted-market features are being promoted across collections, while DeFi integrations (USX, Kamino, Solstice), RWAs, AI, and collectibles are highlighted. Simultaneously, the network sees rampant low‑cap/meme token activity and pumps—raising liquidity and risk concerns even as community optimism and governance projects (e.g., $MUFFIN, Namecoin on Solana) increase.","data":[4,2,1,2,14,1,5,3,0,4,3,2,4,1,2,4,1,1,1,3,3,2,4,5,2,2,4,2,1,2,4,4,2,3,1,1,6,1,2,0,2,0,4,28,1,2,2,6,1,1,8,2,3,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-122.ts b/priv/repo/major_topics_seed/data-122.ts deleted file mode 100644 index 89bc5dce7d..0000000000 --- a/priv/repo/major_topics_seed/data-122.ts +++ /dev/null @@ -1,283 +0,0 @@ -export const NARRATIVES = { - labels: [ - '30.04.26', - '01.05.26', - '01.05.26', - '01.05.26', - '01.05.26', - '01.05.26', - '01.05.26', - '01.05.26', - '02.05.26', - '02.05.26', - '02.05.26', - '02.05.26', - '02.05.26', - '02.05.26', - '02.05.26', - '02.05.26', - '03.05.26', - '03.05.26', - '03.05.26', - '03.05.26', - '03.05.26', - '03.05.26', - '03.05.26', - '03.05.26', - '04.05.26', - '04.05.26', - '04.05.26', - '04.05.26', - '04.05.26', - '04.05.26', - '04.05.26', - '04.05.26', - '05.05.26', - '05.05.26', - '05.05.26', - '05.05.26', - '05.05.26', - '05.05.26', - '05.05.26', - '05.05.26', - '06.05.26', - '06.05.26', - '06.05.26', - '06.05.26', - '06.05.26', - '06.05.26', - '06.05.26', - '06.05.26', - '07.05.26', - '07.05.26', - '07.05.26', - '07.05.26', - '07.05.26', - '07.05.26', - '07.05.26', - ], - datasets: [ - { - label: 'Saylor potentially selling BTC', - topics: 'mstr,strc,dividends,saylor,115', - description: - 'MicroStrategy’s CEO Michael Saylor signaled the company may sell some of its 818,334 BTC holdings to fund STRC dividends and manage obligations, prompting intense community debate and fears of market selling or manipulation (wash-trade accusations). Strategy has tokenized its perpetual preferred (STRC) — marketed with ~11.5% yield and launched on Ethereum/BNB/Solana via Ondo — and faces criticism from analysts (e.g., Peter Schiff) about sustainability and impact on BTC price and MSTR/ASST liquidity. Supporters argue selling could be tactical (buying cheaper BTC later) and Strategy has cash buffers, while critics warn dividend funding could pressure both Bitcoin and MicroStrategy shares.', - data: [ - 10, 6, 10, 8, 14, 7, 16, 24, 11, 6, 16, 8, 6, 12, 14, 9, 7, 10, 14, 17, 9, 13, 9, 4, 14, 6, - 16, 14, 13, 15, 7, 13, 9, 17, 11, 4, 15, 20, 9, 8, 24, 19, 59, 15, 10, 14, 11, 15, 11, 9, 6, - 7, 7, 13, 10, - ], - infofi: false, - }, - { - label: 'BTC price', - topics: '80k,85k,rejection,resistance,zone', - description: - 'Twitter crypto chatter centers on Bitcoin’s rally past the $80K zone and whether the breakout will hold. Traders set short-term targets roughly 76–90K (common 78–85K/83–86K), note reclaim of key H4/200MA levels and a possible CME gap fill, and debate bull-trap risk. Comments highlight high perp funding during the rally, mixed spot demand/on‑chain signals, BTC dominance (~61%), and related ETH price action and market news.', - data: [ - 8, 4, 15, 11, 9, 31, 51, 6, 17, 6, 17, 11, 5, 4, 5, 20, 8, 7, 9, 12, 6, 15, 34, 10, 9, 4, - 12, 10, 19, 7, 8, 22, 4, 3, 4, 10, 9, 19, 34, 8, 8, 7, 8, 15, 6, 12, 17, 19, 19, 20, 12, 5, - 5, 3, 5, - ], - infofi: false, - }, - { - label: 'DeFi', - topics: 'defi,exploits,drift,protocols,kelpdao', - description: - 'Twitter discussion centers on a DeFi resurgence shadowed by a sharp rise in hacks and systemic risk (April 2026 ~$651M stolen, 40+ exploits; big losses at Drift and KelpDAO). Root causes cited include yield-chasing leverage loops, oracle/fake-collateral and wallet-approval vulnerabilities, centralized control points, and accelerating AI-driven attacks. Concurrently the community is pushing maturity: aggregation and collateral diversification (Olympus, P0, FastBridge, LIKWID), a move toward cash-flow-based credit, performance narratives (DeFi Growth Index vs ETH), and growing legal/product-liability concerns for developers. Calls for stronger security tooling (DefiLlama), better system design, and governance reforms are prominent.', - data: [ - 8, 6, 9, 3, 9, 1, 7, 3, 4, 12, 2, 7, 18, 4, 6, 15, 2, 10, 5, 6, 23, 6, 5, 15, 7, 5, 10, 3, - 15, 6, 7, 8, 6, 8, 6, 10, 4, 11, 9, 10, 9, 7, 1, 6, 6, 8, 4, 5, 3, 7, 17, 5, 4, 1, 8, - ], - infofi: false, - }, - { - label: 'BTC adoption', - topics: 'bitcoiners,fiat,fixes,bitcoiner,blocks', - description: - 'Twitter crypto chatter centers on Bitcoin as a form of money and a growing adoption narrative: proponents call it scarce, anti-fragile, and the vehicle for a historic wealth transfer as institutions and retail ‘stack sats’. Debate persists about whether Bitcoin is meant to solve inequality or merely serve as money, and critics argue fundamentals are lacking and it’s speculative. Social signals (merchant acceptance, public endorsements) and cultural rhetoric (fiat vs. freedom, personal responsibility) drive the conversation alongside warnings about mental/health limits to wealth.', - data: [ - 3, 6, 3, 11, 11, 26, 9, 4, 6, 4, 13, 12, 6, 10, 6, 4, 6, 8, 6, 3, 11, 6, 5, 10, 14, 4, 1, 2, - 5, 5, 7, 10, 8, 6, 6, 7, 5, 3, 3, 5, 5, 3, 1, 5, 6, 8, 6, 9, 2, 9, 10, 2, 5, 7, 4, - ], - infofi: false, - }, - { - label: 'Memecoins', - topics: 'memecoin,meme,memes,memecoins,cult', - description: - 'Social chatter is focused on finding the “next billion-dollar” memecoin: community-driven launches, branding/real-world marketing, influencer triggers, meme wars and promotions are driving hype and speculative buying. Users highlight memecoins as a fast route to outsized gains while warning about rug pulls, liquidations and short-term volatility; parallels to stocks and mainstream platforms (TikTok, celebs) are noted. Discussions also touch on infrastructure (perps, spot, prediction markets) and the revenue/engagement memecoins bring to chains.', - data: [ - 5, 2, 4, 5, 10, 8, 7, 4, 5, 4, 6, 9, 3, 4, 7, 3, 8, 4, 2, 9, 7, 7, 3, 9, 4, 3, 7, 7, 7, 62, - 14, 5, 7, 4, 8, 8, 2, 2, 5, 4, 3, 6, 7, 4, 4, 6, 4, 4, 2, 6, 5, 7, 5, 3, 3, - ], - infofi: false, - }, - { - label: 'CLARITY act', - topics: 'compromise,clarity,act,senate,passive', - description: - 'Discussion focuses on the CLARITY Act’s bipartisan compromise limiting passive stablecoin yield (banning rewards economically equivalent to bank interest) while permitting activity‑based rewards. Traders and analysts say this regulatory clarity could unlock institutional capital, accelerate tokenization and benefit major crypto networks, though banks are lobbying against parts of the bill and DeFi developer liability remains an unresolved risk. Senators Tillis and Alsobrooks drove the deal and a Senate Banking markup is imminent, making passage and market impact likely soon.', - data: [ - 4, 5, 7, 7, 7, 2, 4, 8, 9, 8, 1, 8, 7, 5, 0, 5, 5, 3, 6, 2, 3, 4, 0, 5, 8, 3, 15, 2, 0, 8, - 4, 9, 12, 1, 5, 3, 9, 4, 16, 6, 10, 36, 4, 4, 15, 6, 4, 7, 1, 4, 4, 2, 2, 4, 6, - ], - infofi: false, - }, - { - label: 'TON rally', - topics: 'ton,telegram,validator,6x,tons', - description: - 'Social chatter centers on a sharp TON rally driven by Telegram’s deeper integration: fees were cut (~6x to ~0.00039 TON), txns became sub-second, and Pavel Durov/Telegram are moving to be the largest validator. That shift has triggered huge on‑chain flows (large transfers into the Elector/staking contract), explosive trading volume and memecoin pumps (UTYA, DOGS, etc.), and quick trader gains. Infrastructure and onboarding (wallet_tg, Husher, Rubic, Cocoon) are highlighted as catalyzers, while some users flag decentralization concerns as Telegram gains control.', - data: [ - 3, 2, 7, 2, 5, 4, 3, 4, 6, 3, 4, 5, 6, 8, 11, 5, 7, 9, 7, 6, 1, 6, 5, 1, 8, 7, 4, 1, 4, 14, - 4, 6, 5, 16, 3, 4, 8, 11, 7, 5, 5, 5, 3, 4, 1, 6, 13, 7, 15, 10, 6, 5, 7, 3, 2, - ], - infofi: false, - }, - { - label: 'Whales', - topics: 'whales,whale,aped,dyor,mc', - description: - 'Social chatter is dominated by large “whale” movements across BTC, ETH and alt tokens: heavy off‑exchange withdrawals (~$2.3B), sizable deposits (e.g., a $377M ETH deposit to Binance), targeted buys (WBTC, SOL, small caps) and profit-taking (2,521 BTC ≈ $205M sold). Analysts note divergent positioning—whales leaning long on BTC while some are shorting, retail crowding the opposite side—and warn these shifts often precede spikes in volatility and liquidation cascades. Many posts flag smart‑money accumulation, on‑chain metrics (liquidity, holder concentration, momentum, SAFU scores) and ad hoc alerts about risky apes into low‑market‑cap tokens; consensus advice is caution and DYOR.', - data: [ - 17, 4, 5, 3, 5, 3, 0, 5, 3, 5, 3, 12, 4, 3, 4, 4, 2, 8, 1, 3, 0, 3, 2, 7, 4, 2, 2, 5, 3, 9, - 2, 3, 3, 3, 2, 2, 3, 3, 0, 3, 3, 1, 7, 3, 7, 2, 1, 3, 0, 11, 2, 4, 1, 101, 0, - ], - infofi: false, - }, - { - label: 'ZEC rally', - topics: 'zcash,zec,xmr,privacy,encrypted', - description: - 'Social chatter focuses on a strong Zcash ($ZEC) rally and bullish momentum, with traders citing technical setups and lofty price targets ($600–$2,000+), buy‑the‑dip sentiment, and some caution over rapid vertical moves. Discussion emphasizes ZEC’s privacy narrative (shielded transactions, removal of trusted setup — “just math”) and growing utility/acceptance (payments, art sales). Also highlighted: cross‑chain movement via NEAR Intents (moving ZEC across 30+ chains without CEX) and exchange/fee-related promotions driving activity.', - data: [ - 7, 2, 4, 5, 13, 6, 5, 9, 3, 6, 2, 8, 5, 2, 7, 4, 3, 6, 3, 5, 4, 7, 2, 4, 5, 3, 6, 4, 7, 6, - 2, 5, 3, 3, 6, 3, 9, 8, 3, 3, 5, 8, 7, 4, 6, 3, 10, 1, 7, 4, 2, 3, 5, 3, 23, - ], - infofi: false, - }, - { - label: 'Consensus Miami', - topics: 'miami,consensus2026,consensus,panel,booth', - description: - 'Consensus Miami 2026 is dominating social feeds — high-energy in-person conference and side events drawing builders, VCs, traders, artists, and institutional allocators. Key themes: institutional liquidity and adoption, tokenization/RWA issuance, onchain options/VTFs, superchains, privacy, security reviews, and bridging US–LATAM capital. Multiple panels and 1:1 security sessions highlight the shift toward institutional-grade infrastructure and real-world use cases. BitBasel and rooftop/after-hours meetups are where many networking and deal conversations happen.', - data: [ - 4, 1, 5, 1, 3, 4, 3, 8, 2, 12, 8, 8, 8, 5, 3, 8, 6, 4, 2, 5, 11, 9, 8, 7, 9, 1, 7, 8, 1, 6, - 6, 5, 6, 5, 2, 3, 2, 4, 1, 1, 5, 2, 4, 2, 10, 3, 16, 1, 11, 3, 3, 5, 12, 1, 0, - ], - infofi: false, - }, - { - label: 'Art', - topics: 'art,artist,artists,generative,style', - description: - 'Social posts celebrate a resurgence of digital, generative and on-chain art in web3 — artists using AI, 3D and hand-drawn techniques are minting and getting traction. Community highlights .ART domains, curator interest, and notable drops, while warning about low-supply “cash grab” projects and advising buyers to check artist/team track records.', - data: [ - 0, 5, 2, 50, 12, 1, 6, 3, 5, 3, 7, 10, 6, 2, 0, 5, 8, 4, 2, 5, 2, 1, 2, 5, 4, 0, 8, 5, 9, 2, - 2, 2, 7, 9, 3, 4, 6, 6, 2, 3, 2, 4, 2, 3, 1, 3, 4, 2, 3, 4, 1, 4, 6, 3, 2, - ], - infofi: false, - }, - { - label: 'Hantavirus', - topics: 'hantavirus,virus,cruise,ship,passengers', - description: - 'Social conversation centers on a hantavirus outbreak aboard the MV Hondius polar cruise (multiple deaths, confirmed and suspected cases) involving the Andes strain, which can rarely spread person-to-person. Posts mix factual updates (passengers returned, UK self-isolation, WHO comments) with panic, conspiracy theories about engineered viruses for vaccine profit, doomsday comparisons to COVID, and viral prediction claims. Crypto-adjacent elements appear (market reactions, users long DOGE, and a Track Hanta project accepting Solana donations), driving some trader and community attention.', - data: [ - 1, 4, 2, 2, 2, 3, 1, 2, 5, 8, 7, 2, 6, 4, 1, 2, 2, 4, 6, 6, 4, 24, 2, 2, 7, 1, 4, 0, 2, 9, - 1, 3, 5, 5, 13, 3, 7, 3, 3, 8, 5, 7, 5, 1, 5, 4, 7, 6, 6, 7, 6, 9, 5, 6, 6, - ], - infofi: false, - }, - { - label: 'NFTs', - topics: 'nfts,nft,mint,collection,comeback', - description: - 'Social chatter centers on an NFT comeback driven by renewed institutional interest, blue-chip rotation (BAYC round 2) and community-led activity. Participants note retail skepticism but expect a collectible “supercycle” combining physical and digital assets, cheaper entry points, new characters/narratives, and utility-focused game assets to spark the next bull run. Commentary highlights ETH accumulation, giveaways/community rewards, and generational opportunities for NFT-focused apps and platforms.', - data: [ - 2, 5, 3, 8, 5, 4, 2, 3, 0, 13, 6, 6, 4, 5, 6, 2, 7, 3, 5, 8, 3, 5, 7, 9, 2, 4, 3, 6, 3, 3, - 9, 3, 5, 5, 4, 8, 7, 2, 5, 3, 3, 5, 1, 3, 2, 10, 2, 6, 4, 2, 9, 7, 2, 3, 6, - ], - infofi: false, - }, - { - label: 'Coinbase layoffs', - topics: 'workforce,employees,layoffs,brian,14', - description: - 'Coinbase is cutting roughly 14% of its workforce (about 700 roles) as CEO Brian Armstrong frames the move as a cost reset driven by crypto market volatility and a shift to AI-native, more automated operations. This is the company’s fourth major layoff since 2022 and reflects broader industry cost-cutting and automation trends as exchanges adapt to uneven revenue and faster engineering workflows enabled by AI.', - data: [ - 1, 2, 10, 1, 3, 0, 0, 1, 0, 9, 4, 31, 0, 4, 7, 3, 9, 3, 2, 5, 4, 3, 1, 2, 5, 11, 14, 0, 2, - 2, 2, 4, 4, 3, 5, 1, 0, 0, 4, 6, 4, 4, 3, 9, 2, 4, 1, 4, 1, 3, 2, 2, 3, 5, 1, - ], - infofi: false, - }, - { - label: 'Onchain privacy', - topics: 'privacy,offchain,blockchains,icp,encryption', - description: - 'Discussion focuses on privacy-first blockchain infrastructure—ZK and TFHE privacy layers (ExoLabs, RAILGUN, Beam, INIChain, Gh0st) that enable private balances, stealth addresses, and confidential bridged assets. Conversations also emphasize interoperability and bridges (Starknet BTC bridge, NEAR Intents, Ethereum↔Beam), institutional RWA onboarding, multi-chain futures, and concerns that without privacy Ethereum could become a surveillance ledger.', - data: [ - 2, 1, 2, 3, 3, 9, 5, 5, 2, 3, 1, 5, 4, 3, 5, 5, 7, 3, 9, 4, 1, 1, 2, 6, 2, 5, 4, 1, 5, 4, 3, - 2, 6, 7, 5, 5, 7, 7, 2, 2, 0, 5, 1, 3, 2, 3, 6, 1, 0, 6, 6, 0, 3, 1, 2, - ], - infofi: false, - }, - { - label: 'Israel - Palestine', - topics: 'israel,killed,southern,journalist,attacks', - description: - 'Social media posts focus on escalating Israel military strikes in Gaza and Lebanon, reporting civilian deaths, targeted assassinations (including a Hezbollah commander), and wounded leaders’ family members. The discussion mixes outrage over alleged Israeli “genocidal” tactics with domestic politics—UK and Australian protests, accusations of antisemitism, and criticism of Western support—alongside conspiratorial rhetoric about Zionist influence and US coordination. Eyewitness clips, casualty reports, and inflammatory political commentary drive widespread polarization and calls for accountability.', - data: [ - 1, 11, 8, 5, 3, 2, 3, 2, 2, 3, 7, 0, 6, 4, 3, 4, 2, 5, 0, 2, 4, 2, 1, 5, 10, 2, 8, 1, 1, 1, - 4, 2, 1, 3, 6, 2, 1, 4, 3, 4, 7, 2, 2, 2, 2, 6, 5, 3, 3, 4, 1, 2, 4, 4, 2, - ], - infofi: false, - }, - { - label: 'XRP', - topics: 'xrp,ripple,garlinghouse,brad,okx', - description: - 'Twitter chatter centers on $XRP — heavy technical talk about a long compression/triangle breakout (short-term ‘powder keg’), key resistance levels (~$1.40–1.45), and low Binance liquidity that could trigger a large move. Community and exchanges fuel momentum: XRP Las Vegas highlights Ripple exec appearances, Garlinghouse’s multi‑chain comments, RLUSD listings (parity across OKX USD orderbooks), OKX $100 XRP promotions and giveaways. Newsflows include rapid market‑cap spikes, bullish TA/algo signals, and projects from major holders (Greg Kidd’s USBC), with debate over speculation vs real adoption driving price upside scenarios.', - data: [ - 3, 2, 2, 5, 3, 1, 3, 1, 5, 2, 3, 4, 1, 4, 7, 6, 6, 1, 3, 3, 2, 1, 6, 7, 2, 4, 5, 6, 3, 5, 5, - 0, 8, 0, 1, 2, 6, 3, 4, 3, 4, 7, 4, 2, 4, 1, 1, 1, 2, 1, 1, 3, 7, 3, 0, - ], - infofi: false, - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,channel,accept,batch', - description: - 'Social chatter is overwhelmingly bullish on Dogecoin: users report accumulation, meme-driven engagement, and high on-chain activity while traders highlight technical breakouts, Ichimoku alignment, and a possible PMO bullish crossover. Targets being discussed range from $0.50 to $1 (and jokingly $4), with traders noting favorable risk/reward setups but warning about fakeouts and volatility. The community momentum is reinforced by meme culture, viral posts, and short-term swing trade setups—driving sentiment more than fundamentals.', - data: [ - 8, 0, 3, 4, 2, 1, 3, 2, 3, 6, 5, 2, 0, 24, 0, 1, 2, 2, 3, 2, 2, 4, 12, 2, 2, 2, 4, 1, 4, 4, - 1, 5, 1, 1, 2, 1, 3, 4, 7, 3, 1, 0, 2, 6, 2, 1, 5, 4, 1, 3, 0, 3, 4, 3, 3, - ], - infofi: false, - }, - { - label: 'Stablecoins', - topics: 'stablecoins,payouts,visa,bitwise,stablecoin', - description: - 'Discussion centers on stablecoins as both a driving infrastructure for crypto payments and a privacy/regulatory risk—critics call major fiat-pegged tokens (USDC/USDT) “surveillance capitalism,” while proponents highlight rapid adoption and massive growth forecasts. Current supply is ~ $300B+ with industry estimates of $2T–$4T+ by 2030; stablecoins are increasingly the on-ramp and payment rail across regions (notably LatAm) and chains (Polygon, Solana). Conversation touches on banking partnerships, reserve models, neobanks, yield products, decentralized stablecoin projects, and the need for better UX and real‑time risk tooling. The central tension is privacy and regulatory exposure versus stablecoins becoming core global financial plumbing.', - data: [ - 5, 2, 5, 5, 1, 6, 3, 4, 0, 7, 0, 1, 4, 1, 3, 3, 3, 2, 0, 0, 1, 2, 4, 4, 3, 1, 4, 1, 3, 1, 1, - 5, 3, 5, 1, 0, 3, 6, 0, 4, 4, 12, 2, 3, 28, 3, 1, 2, 4, 2, 3, 1, 0, 0, 1, - ], - infofi: false, - }, - { - label: 'SOL', - topics: 'solanas,solana,scalability,landing,bobo', - description: - 'Social chatter centers on rapid Solana ecosystem expansion: developer events and hackathons, growing technical complexity (Solana 2.0, low‑latency execution platforms like Zela), and new tooling for trading (Beam, wallet chatter around Solflare). Privacy and encrypted-market features are being promoted across collections, while DeFi integrations (USX, Kamino, Solstice), RWAs, AI, and collectibles are highlighted. Simultaneously, the network sees rampant low‑cap/meme token activity and pumps—raising liquidity and risk concerns even as community optimism and governance projects (e.g., $MUFFIN, Namecoin on Solana) increase.', - data: [ - 4, 2, 1, 2, 14, 1, 5, 3, 0, 4, 3, 2, 4, 1, 2, 4, 1, 1, 1, 3, 3, 2, 4, 5, 2, 2, 4, 2, 1, 2, - 4, 4, 2, 3, 1, 1, 6, 1, 2, 0, 2, 0, 4, 28, 1, 2, 2, 6, 1, 1, 8, 2, 3, 1, 1, - ], - infofi: false, - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-123.json b/priv/repo/major_topics_seed/data-123.json deleted file mode 100644 index 68d36adc75..0000000000 --- a/priv/repo/major_topics_seed/data-123.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["07.05.26","08.05.26","08.05.26","08.05.26","08.05.26","08.05.26","08.05.26","08.05.26","09.05.26","09.05.26","09.05.26","09.05.26","09.05.26","09.05.26","09.05.26","09.05.26","10.05.26","10.05.26","10.05.26","10.05.26","10.05.26","10.05.26","10.05.26","10.05.26","11.05.26","11.05.26","11.05.26","11.05.26","11.05.26","11.05.26","11.05.26","11.05.26","12.05.26","12.05.26","12.05.26","12.05.26","12.05.26","12.05.26","12.05.26","12.05.26","13.05.26","13.05.26","13.05.26","13.05.26","13.05.26","13.05.26","13.05.26","13.05.26","14.05.26","14.05.26","14.05.26","14.05.26","14.05.26","14.05.26","14.05.26"],"datasets":[{"label":"Bitcoin adoption","topics":"bitcoiners,fiat,salt,bitcoins,node,nodes,currency,revolution,satoshi,economics","description":"Discussion centers on Bitcoin adoption, infrastructure, and ecosystem growth: proponents emphasize noncustodial usage, fair-launch values, and real-world adoption (El Salvador, Nairobi). Key topics include scaling and throughput (Stacks), Bitcoin-native apps and financial rails (fiat on/off ramps, stablecoin UX, Bitcoin-backed lending, KYC), debates over regulation vs. Bitcoin’s self-functioning nature, fee/subsat dynamics, and community-driven treasury/dividend experiments.","data":[8,7,3,20,14,38,12,13,9,3,9,10,6,15,15,7,18,9,5,11,15,9,8,6,18,16,13,9,11,13,10,14,15,12,12,8,11,6,10,7,14,8,9,13,17,7,8,5,4,18,14,5,9,8,9]},{"label":"HYPE","topics":"hyperliquid,hyperliquidx,hype,hl,usdc,5b,codes,debut,aligned,native","description":"Social conversation centers on Hyperliquid (HYPE) as a rapidly rising on‑chain trading protocol: HYPE has surpassed ETH in open interest on Derive, Hyperliquid generated nearly $2M in fees over 24 hours, and new ETFs tied to HYPE launched with solid debut volume. Major structural shifts include Coinbase becoming Hyperliquid’s USDC treasury deployer as USDH is phased out, USDC liquidity on the network nearing $5B, and protocol features (builders staking, HIP proposals, fee splits) that route yield and revenue back to HYPE holders. Market participants highlight growing institutional interest, increased on‑chain market infrastructure, and bullish price expectations for HYPE.","data":[17,7,9,6,8,4,5,6,6,14,6,4,4,4,4,16,3,3,8,15,4,2,14,6,10,15,6,13,10,8,2,8,14,21,10,6,5,9,8,6,5,0,11,4,9,5,9,10,6,6,15,4,8,4,4]},{"label":"SOL","topics":"solanaso11111111111111111111111111111111111111112,solana,mev,solanas,ethena,perps,toly,slot,slots,cluster","description":"Burst of activity across the Solana ecosystem: large on‑chain volume (including a $20M 24h hyperliquid native trade), extreme token volatility (big pumps and -96% one‑candle moves), and influencer-driven token rallies and burns. Institutional and infrastructure developments are driving growth—Grayscale added ENA to its DeFi fund, Jupiter and Sunrise integrations, and Ethena‑related institutional flows. Technical upgrades (Anza/Alpenglow reducing finality to ~100–150ms) and surging stablecoin and real‑world asset transfers are cited as catalysts. Traders warn of imminent dumps and scalp opportunities even as bulls forecast multi‑billion market caps for some Solana tokens.","data":[7,4,3,2,7,10,16,5,3,10,9,3,5,2,3,7,6,9,6,6,5,8,8,8,4,8,2,9,2,8,3,4,8,8,9,4,7,6,5,7,5,7,6,72,6,6,8,3,5,5,5,5,3,5,5]},{"label":"CLARITY Act","topics":"committee,markup,senate,banking,vote,votes,scheduled,advances,legislation,clarity","description":"The CLARITY Act has advanced to a Senate Banking Committee markup and received bipartisan committee support, marking the most significant U.S. step toward a federal digital-asset market structure. If passed by the full Senate and signed, the bill would create a clear SEC/CFTC split, clarify which tokens are securities, and establish rules for stablecoins — a change many expect to materially affect Bitcoin, exchanges, and institutional flows. Banks warn stablecoin rewards could pull deposits; crypto firms largely support clarity, while some warn the law could be politicized in future. Next steps: full Senate consideration, potential floor votes this summer, then presidential signature if approved.","data":[4,16,16,3,7,5,1,3,15,6,6,13,4,5,6,3,6,8,5,5,1,13,4,4,4,6,9,1,1,23,3,10,4,13,15,4,7,1,3,5,3,20,13,5,2,0,4,3,5,1,2,22,3,1,2]},{"label":"Stablecoins","topics":"stablecoins,visa,stablecoin,stable,stability,paypal,sky,payment,rails,payments","description":"Discussion focuses on rapidly maturing stablecoin infrastructure and mainstream adoption: market metrics (stablecoin market ~$323B, quarterly volume ~$4–4.5T, USDT ~58% share; USDD TVL ATH), growing merchant and platform tests (DoorDash, Meta), rising card spending and institutional interest (banks, fintechs). Dev and issuer tooling (Reflect API, BitGo services) and yield/savings products are enabling easy on‑chain payments and payouts. Key themes: real‑world utility, global settlement ambitions, custody/peg and privacy risks, and some users preferring Bitcoin.","data":[6,5,8,5,7,3,0,9,3,5,5,5,9,3,6,5,2,6,7,5,2,2,6,7,1,7,5,6,2,7,3,6,6,6,16,2,4,7,6,5,0,0,4,7,58,7,6,1,3,2,5,6,3,3,10]},{"label":"STRC","topics":"strc,mstr,atm,strategys,par,dividend,purchased,proceeds,115,preferred","description":"Discussion focuses on Strategy’s STRC instrument surging to par and fueling massive ATM issuance that’s financing large Bitcoin accumulation. STRC offers ~11.5% dividend yield, generated hundreds of millions in daily volume and thousands of BTC buys, and has spawned STRC-linked fixed-yield primitives (Pendle, xStocksFi, ~ $320M TVL). Key debates: whether Strategy is issuing shares/raising capital or selling BTC to pay dividends, dilution math (~8M shares ≈2.3% dilution for ~$1.49B annual dividend), market impact on BTC price, custodial and structural risks, and whether STRC repackages corporate-treasury BTC as fixed-income for institutions.","data":[12,10,4,5,4,12,10,6,3,5,5,6,6,4,6,4,2,1,10,8,3,1,7,6,5,3,5,4,5,4,7,5,4,7,8,3,10,12,5,1,6,4,8,10,6,5,6,7,6,4,6,12,3,5,2]},{"label":"Memecoins","topics":"memecoin,meme,memes,memecoins,shill,100x,shib,szn,bonk,trenches","description":"Social chatter centers on a resurgent memecoin cycle—community-driven launches, marketing push by launchpads, contests and collectible memes are fueling hype. Traders discuss newbie strategies, long/leveraged plays and frequent liquidations; derivative/leveraged meme tokens (new products) and platforms like Raydium, Biconomy and altdotfun are highlighted. Popular tickers cited include $DOG, $KISHU, $Pepe, $FLOKI, $Bonk and others, with strong emphasis on community loyalty, viral marketing and high-risk/high-reward dynamics.","data":[5,3,2,2,8,1,5,5,3,11,0,6,5,3,3,0,8,2,7,6,6,8,5,3,2,6,1,3,10,63,25,11,5,6,1,2,3,4,6,6,4,4,1,4,3,6,2,4,7,1,2,5,5,4,3]},{"label":"Russia-Ukraine war","topics":"russia,drones,struck,strike,forces,region,attack,eu,air,overnight","description":"Social posts report an intensification of the Russia–Ukraine conflict: large-scale Russian drone campaigns (hundreds daily) and heavy Ukrainian air defense activity, plus Ukrainian strikes on Russian depots, refineries and helicopters. Political developments include EU accession steps, international coalitions to recover abducted children, regional diplomatic tensions, and domestic unrest in Russia (airport chaos, accusations of corruption and conscription avoidance). Analysts flag market implications — energy flows, sanctions relief if the war ends — and occasional bitcoin/market commentary tied to these geopolitical shifts.","data":[11,2,6,5,3,2,4,4,3,10,4,1,2,20,1,6,1,6,3,0,3,5,4,9,2,3,5,4,5,3,8,3,1,7,4,10,4,2,4,7,34,9,3,5,5,14,3,8,2,3,4,1,7,2,3]},{"label":"Iran war","topics":"strait,ceasefire,hormuz,iran,strikes,response,nuclear,proposal,uae,dubai","description":"Escalating Iran–US tensions and regional strikes around the Strait of Hormuz are driving market anxiety: energy prices and inflation risks are rising, central banks are watching policy, and UN/US sanctions and military actions could widen. Reports include Iran rejecting dismantling nuclear facilities, US strikes and explosions near Qeshm and Bandar Abbas, Saudi strikes on Iran-linked militias, Pakistan possibly sheltering Iranian aircraft, potential control of undersea cables, and resumed negotiations. Crypto/market links: Iran’s Nobitex reportedly dodging US sanctions, bitcoin discussed as a market hedge, and broader geopolitical risk affecting asset prices and trading flows.","data":[2,3,5,7,2,2,2,14,4,6,6,2,8,7,3,5,4,11,0,1,1,1,2,8,4,7,1,1,2,3,3,1,2,4,3,2,4,1,8,16,12,31,6,3,3,6,2,5,8,0,3,4,9,3,3]},{"label":"Art","topics":"artists,art,artist,paint,creativity,drawing,music,pieces,piece,beautiful","description":"Social posts focus on digital and on‑chain art moving into Web3: generative pieces, VR sculpture, Axie fan art, and gallery tools like Verse to present work. Discussion emphasizes provenance, programmable rights, and artist‑first settlement (especially for music IP) as the next infrastructure need. Contributors note how algorithms shape artistic risk and how established artists (e.g., Dima Kashtalyan, The Beaks) and metaverse platforms (Otherside) are legitimizing crypto‑native art and collectible value. Collecting challenges (digital ownership vs. physical) and high upside narratives for early projects are also common themes.","data":[4,4,3,38,10,1,2,4,6,3,8,3,6,7,3,3,6,4,4,2,1,6,3,4,3,1,3,2,16,2,3,4,5,8,5,10,4,4,2,3,3,2,4,4,4,5,5,7,2,3,6,1,3,2,1]},{"label":"ETH","topics":"ethereumnative,hook,ethereums,v4,uniswap,l2s,evm,cexs,ethereum,ethereumfndn","description":"Social posts hype multiple Ethereum contract addresses as potential short-term gainers, notably 0x8de3... promoted as the next big runner with CEX listing signals and contract migration (0x50→0x8D). Users mention imminent breakouts (~48h), price discovery, and a broader theme that original-IP tokens will lead this cycle — overall coordinated speculation and listing-driven price promotions.","data":[3,3,4,4,4,5,9,5,6,2,2,4,2,1,7,85,2,1,3,2,2,3,4,0,4,4,2,2,5,3,1,5,2,5,7,2,2,4,0,1,3,1,3,1,2,0,6,5,4,4,5,0,4,3,0]},{"label":"Gaming","topics":"gaming,games,game,steam,mechanics,characters,items,players,playing,studio","description":"Social chatter mixes general gaming talk (new quests, dungeon challenges, popular titles, gacha skepticism, esports friction) with an emphasis on blockchain integration: trading game items on-chain, GameFi/p2e mechanics, asset migrations (Wolf Game), and infrastructure deals (Ontology/Palz data campaigns, Tilted real-time payments and DaaS). Threads also reference game theory and ML as lenses for design and policy. Overall the conversation centers on gaming culture evolving toward web3 monetization, data sourcing, and payment rails.","data":[2,7,2,1,5,1,5,0,5,2,5,3,4,1,4,2,2,5,38,4,1,6,1,5,2,3,3,5,6,2,2,8,9,5,4,13,1,1,3,3,2,1,1,1,5,6,3,1,4,1,6,9,5,4,2]},{"label":"DeFi","topics":"defi,protocols,oracle,apy,sustainable,aave,lending,vault,fragmented,vaults","description":"Conversation centers on DeFi’s next phase: moving from pure growth narratives to real revenue, sustainability and institutional integration while preserving noncustodial composability. Key threads include new infrastructure (derivatives via Aevo, DEX designation for Yuzu, Mobius on PoW, Teller features like Predictive Allocation), the need for deep, reliable liquidity and legal precedents, and evolving tokenomics (revenue-sharing, buyback & burn). On-chain activity and protocol structure (governance, utility, value flow) are highlighted as healthier long-term signals versus price alone.","data":[4,5,2,9,7,1,2,8,5,5,2,5,2,4,3,3,7,3,3,4,2,2,1,7,1,3,5,3,3,3,4,5,5,6,1,4,8,6,5,2,1,2,1,5,3,2,7,3,4,1,10,5,1,1,6]},{"label":"UK Labour party","topics":"secretary,minister,party,deputy,leader,election,prime,sir,uk,tells","description":"A major Labour Party leadership crisis is unfolding after poor local election results: around 70 Labour MPs have publicly called for Keir Starmer to resign, several ministers have resigned or threatened to, and internal opposition has grown over policy and direction. Reports name potential challengers (Wes Streeting, Catherine West) and moves to bring Andy Burnham back to Parliament; Downing Street insists Starmer retains support and has appointed replacements and whips. The rebellion includes MPs opposing proposed immigration reforms and has prompted resignations, by-election actions, and fraught public statements about the party’s future.","data":[3,3,4,1,3,2,4,8,1,3,2,0,1,3,6,2,2,5,5,4,4,1,1,2,4,5,7,2,8,0,5,4,6,1,4,7,5,1,7,12,0,13,5,2,1,6,7,2,2,2,4,4,3,6,4]},{"label":"Mother's Day","topics":"mothers,mom,happy,mother,gift,celebrate,kids,wife,honor,bless","description":"Crypto community users broadcast Mother’s Day greetings across Twitter, celebrating mothers broadly and specifically within the ecosystem — trading moms, NFT creators, and project-related mothers (mentions of $UFD, Bored Ape derivative, WINkLink). Messages mix heartfelt thanks, community shoutouts, and remarks about trust, resilience, and balancing parenting with trading/crypto work.","data":[1,1,7,1,7,3,0,4,2,1,1,6,2,0,0,0,1,5,3,7,7,9,10,3,5,2,4,1,10,3,30,15,1,3,4,1,0,0,4,1,0,1,0,1,1,6,1,0,2,1,1,0,5,6,2]},{"label":"Israel-Palestine war","topics":"israel,killed,jewish,southern,attacks,strikes,military,children,destroy,terrorist","description":"A stream of social posts condemns Israel’s conduct in Gaza and the wider region, accusing Netanyahu’s government of war crimes and genocide while calling for the U.S. to end military aid. Messages cite alleged systematic sexual violence on Oct. 7 (not independently verified by some outlets), reports of casualties from Israeli strikes in Lebanon and Gaza, prisoner deaths, deportations of activists, and ongoing negotiations between Lebanon and Israel. The tone is highly critical and conspiratorial, mixing eyewitness reports, media links, and political outrage demanding accountability and ceasefire action.","data":[5,4,3,8,2,3,1,3,1,5,3,1,4,3,2,5,4,4,0,3,2,4,4,3,5,5,3,0,1,6,4,3,2,5,3,3,1,5,1,5,7,4,4,3,2,2,3,3,6,2,1,1,7,3,5]},{"label":"CPI","topics":"cpi,ppi,38,yoy,headline,producer,37,inflation,hotter,core","description":"Social posts focus on hotter-than-expected US inflation prints: April headline CPI 3.8% YoY (vs. 3.7e) and core CPI 2.8% (2.7e); April PPI 6.0% YoY (4.9e) and core PPI ~5.2% (4.3e). A sharp rise in oil/energy prices is the main driver, prompting debate whether the move is a temporary energy shock or the start of stickier cost-push inflation. Market reactions include repricing of yields and a more complicated Fed rate-cut outlook, with implications for real wages, seasonal-adjustment distortions, and risk assets including crypto.","data":[5,2,3,1,1,2,1,4,5,2,7,10,2,2,0,3,0,1,0,7,3,8,7,34,1,3,1,0,0,5,0,1,3,3,0,2,5,3,2,2,16,2,2,0,1,1,3,1,1,1,4,6,1,1,1]},{"label":"Hantavirus","topics":"hantavirus,cruise,virus,pandemic,ship,covid,suspected,condition,french,dutch","description":"Social posts focus on a hantavirus outbreak tied to the MV Hondius cruise ship (multiple cases, reported deaths, evacuees to the U.S., WHO urging limited alarm) and widespread public concern/panic. Conversations mix health updates (transmission, mask guidance, monitoring of non-passengers) with market speculation — tweets highlight Moderna’s vaccine work and a big $MRNA rally — and crypto-community chatter about tokenizing or listing related plays (Solana DEX, Ethereum projects). Overall tone blends fear, skepticism of “doomerism,” and opportunistic trading commentary.","data":[1,1,3,6,2,2,0,3,3,4,3,9,6,0,3,5,4,0,3,5,4,14,2,5,2,4,2,1,1,2,1,4,5,8,6,5,2,5,1,2,4,0,3,1,2,5,2,5,2,1,0,4,2,5,7]},{"label":"NFTs","topics":"nfts,nft,wl,collectibles,collecting,collectors,minting,cartyisme,collection,communities","description":"Social chatter celebrating an NFT comeback, sharing curated lists of favorite and affordable collections (Pudgy Penguins, BEANZ, DeadPixels, JustPFPart, Unipix, etc.) across chains (ETH, SOL, HBAR, Base, XRPL). Emphasis on projects building lasting ecosystems and digital identity rather than short-term flips, plus active calls to join whitelists/GTDs and early mints (e.g., 1111 supply, free mint). Community-driven marketing and hype tactics (clean art, PFP focus, promotional strategies) are also highlighted.","data":[0,1,1,4,6,2,3,4,0,12,3,5,2,1,2,2,11,1,6,3,2,3,4,4,2,1,6,2,4,4,2,3,5,6,2,2,14,2,2,2,2,2,4,0,1,4,4,4,2,2,1,4,4,0,1]},{"label":"ZEC","topics":"zcash,zec,privacy,zk,journal,tge,scarcity,600,offline,anonymous","description":"Social chatter centers on Zcash ($ZEC) surging toward new highs as privacy coins regain momentum. Posts highlight big short‑term gains (e.g., +62% weekly), bullish price calls (some target ~$1,000; 5x–15x scenarios), and support from institutional/mining activity (Foundry/Multicoin involvement, ~30% hashrate capture), a halving-driven emission drop (~70%), and sharp growth in shielded-pool usage (+304%). Drivers cited include KYC/AI surveillance fears, renewed demand for on‑chain privacy, promotional activity for non‑KYC trading and shielding tools (zodl, THORSwap), and product interest (Grayscale Zcash Trust $ZCSH). Debate also includes traceability/NSA claims and accusations of laundering, plus trading advice to take profits while holding a moon bag.","data":[2,1,0,2,3,5,1,6,3,1,1,1,1,4,6,2,3,6,1,3,1,2,6,0,2,5,4,4,1,1,1,3,5,3,2,1,9,2,8,1,1,9,1,1,4,3,2,3,5,1,5,4,1,1,9]},{"label":"Crypto Community Nostalgia","topics":"album,memories,remember,music,song,learned,sugar,ago,grateful,joined","description":"A stream of nostalgic reflections from long-time crypto and NFT participants noting recurring cycles of hype, “one-hit wonders,” and repeated community behaviors since early days. Messages reference specific projects (veefriends, Interdimensional Beings, Conste11ation), Solana’s technical maturation and improved uptime, Bitcoin analytics/energy-tracking tools, and a new Solana game launch — alongside commentary that crypto has recently underperformed traditional finance. Overall tone: loyal, weary, and observant of ecosystem evolution and recurring patterns.","data":[1,4,2,0,3,2,0,0,1,0,2,2,8,3,1,2,1,4,4,3,1,1,2,2,1,1,4,3,1,1,3,5,1,3,0,0,0,1,3,14,1,2,0,0,3,1,0,2,3,3,2,11,2,5,35]},{"label":"AI Agent Payment Rails","topics":"x402,commerce,agentic,transact,apis,payment,autonomous,rails,api,programmable","description":"Social posts argue AI agents are becoming autonomous economic actors that will use crypto rails to pay, get paid, and prove authorized actions. Key infrastructure needs highlighted: agent wallets and stablecoins (e.g., XO Cash), trusted oracles and cryptographic audit trails for price and authorization data (Band, WinkLinkAI, agent risk oracles), ZK proofs for privacy and verification, and SDKs/wallet integrations (Nara Chain, Bitget, XYO, Anchorage). The conversation frames these as investable infrastructure plays powering agentic commerce and compliance.","data":[1,33,5,1,0,4,7,0,2,8,1,1,2,1,2,2,0,2,2,1,2,1,0,5,2,4,1,3,2,0,1,2,3,3,4,1,3,0,1,2,2,0,4,4,1,1,5,2,3,1,3,5,3,2,7]},{"label":"TRON Treasury Accumulation","topics":"tron,trx,eco,tps,reflects,integrations,tvl,recap,narrative,circulation","description":"Multiple social posts note Tron Inc.’s repeated TRX purchases (incremental buys like ~142k TRX and larger aggregate holdings), and argue this pattern signals a shift to disciplined, long-term on‑chain treasury accumulation rather than one‑off trading. Observers link the buys to growing ecosystem conviction as TRX reclaimed levels above ~$0.35 amid a market focused on AI, memecoins and new L2s. The discussion contrasts corporate treasury strategies (and praise for Arbitrum’s treasury program/EntropyAdvisors) and emphasizes that sustained accumulation and on‑chain treasury infrastructure are becoming an undervalued indicator of protocol health.","data":[4,11,1,1,1,8,1,4,5,7,2,5,2,0,8,1,7,1,2,2,2,0,4,4,2,2,3,1,1,2,3,7,3,2,2,1,4,2,2,1,2,1,1,0,3,2,3,3,3,10,1,2,1,0,1]},{"label":"NBA Officiating and Flopping","topics":"adam,abc,fans,suspended,james,series,george,league,game,iconic","description":"Social posts focus on NBA playoff drama: debates over officiating and flopping (notably OKC and Wembanyama), calls for suspension after physical plays, and criticism of controversial calls. Fans discuss LeBron’s performance, injury concerns and trade speculation, while also praising standout games from Spurs, Timberwolves, Cavs, and WNBA action. Overall tone mixes outrage at officiating with game-by-game reaction and player hot takes.","data":[4,0,1,3,4,1,5,2,4,2,1,1,2,1,2,0,4,7,12,7,4,3,2,1,3,7,4,2,2,3,3,6,3,1,0,4,1,3,1,1,4,0,6,2,2,3,4,5,0,4,1,3,1,1,1]},{"label":"Coinbase layoffs and outage","topics":"aws,disruption,staff,laid,offline,coinbase,discord,datacenter,fired,engineers","description":"Twitter discussion centers on Coinbase cutting ~14% of staff followed by multi-hour trading outages traced to an AWS datacenter overheating. Users suspect the layoffs (and increased reliance on AI/non-technical pushes) contributed to slower incident response and criticize centralized exchange reliability amid weak Q1 results. Conversation pushes decentralized compute/DEX alternatives and questions exchange operational risk during market stress.","data":[0,3,1,1,2,2,2,2,2,12,1,4,3,3,0,9,3,8,2,5,2,2,8,3,1,4,4,1,1,0,1,3,1,9,1,2,1,2,3,5,2,5,0,3,0,4,4,1,3,5,1,0,1,6,0]},{"label":"AI recovers lost Bitcoin","topics":"recovered,recover,400k,college,forgot,2015,cracked,locked,forgotten,helped","description":"Multiple posts report that Anthropic’s Claude AI helped a user recover access to a Bitcoin wallet dormant for ~11 years by scanning old drives, locating an encrypted wallet/mnemonic backup, and assisting with password-recovery tools (btcrecover/Hashcat). The user regained ~5 BTC (roughly $400k) after prior manual attempts and trillions of password guesses failed. The story is framed as a bullish, heartwarming AI win but also raises security and privacy concerns about giving AI access to personal devices and how AI may blur the line between ‘lost forever’ and recoverable crypto keys.","data":[3,3,0,3,0,8,1,1,4,1,10,2,0,6,0,1,0,6,1,2,18,13,9,5,2,0,0,3,3,11,4,1,0,0,0,1,2,0,10,0,0,4,0,1,0,3,1,0,2,1,3,2,0,0,2]},{"label":"AI Infrastructure Competition","topics":"benchmark,ainative,competition,sun,scalability,reasoning,matrix,17m,assistant,coordination","description":"Discussion centers on a shift in AI competition from model-count and parameters toward infrastructure: production scalability, orchestration, developer experience, inference cost, and frictionless onboarding. Crypto projects (BNB Chain, ICN_Protocol, AINFT, Alaya, Gauntlet AI, TronLink) are highlighted as building distributed/cloud AI infra, access layers, and low-friction UX to enable real-world AI workloads and mass adoption. Reliable real-time data, cost optimization, and end-to-end coordination are seen as the decisive factors for future AI platforms.","data":[5,7,2,1,5,0,0,0,1,14,6,1,7,4,5,0,2,4,0,2,2,0,4,16,2,2,1,2,3,2,2,6,0,2,1,4,1,3,2,3,0,2,4,0,3,4,2,0,1,0,4,1,2,2,2]},{"label":"Spot Bitcoin ETF Flows","topics":"outflows,etfs,inflows,inflow,recorded,net,streak,ibit,longest,etf","description":"U.S. spot Bitcoin ETFs saw a strong April (≈$1.97B inflows) and a multi‑week inflow streak into early May, but that momentum recently reversed with large single‑day outflows (notable draws: -$277M, -$630M, -$635M). Netflow metrics (7‑day SMA ≈ -$88M/day) show institutional re‑weighting: some products (IBIT, FBTC) both attracted and shed large sums across days. Market context: ETF AUM and total BTC held remain near record levels (~681k BTC), allocations appear to be rotating (gold → BTC), and selling has occurred even as BTC traded near the $80k level.","data":[7,3,0,0,0,6,0,1,1,0,5,7,2,2,2,1,1,6,0,1,1,0,1,6,0,3,1,1,0,0,1,0,2,6,2,5,0,5,9,0,1,11,3,5,28,2,1,0,0,2,1,1,4,1,0]},{"label":"Real-World Asset Tokenization","topics":"rwa,rwas,treasuries,realworld,tokenization,tokenized,tokenisation,bnbchain,redemption,4b","description":"The thread highlights rapid growth in tokenized real-world assets (RWAs) — now >$30B onchain — driven by projects, institutional backers, and new product classes (deRWAs, tokenized active strategies, RWA perp DEXs, stablecoins). It emphasizes that tokenization is straightforward but creating liquid secondary markets is the harder structural challenge, requiring infrastructure: oracles, redemption rails (e.g., Upshift Clear), compliance layers, standards (Institutional Guide to RWA Token Standards), and audits. Examples include AWARP/Animoca investment, Algorand water-reuse credits, AnchoredFi’s equity tokenization, Chronicle Labs oracles, and emerging RWA-focused chains and funds. Overall momentum is strong, but liquidity and market-making remain the key bottlenecks for broader adoption.","data":[3,0,2,7,1,1,7,5,0,5,1,4,0,3,1,2,2,3,1,2,0,3,3,3,2,2,5,2,1,7,2,3,4,2,5,1,1,1,3,3,1,2,3,2,6,2,2,2,4,2,4,1,2,0,6]},{"label":"Self-Improvement and Branding","topics":"life,quit,dreams,death,comfortable,criticism,dream,painful,deserve,person","description":"A string of motivational messages urging self-discipline, personal accountability, and embracing the process of growth rather than external validation. Themes include building a personal brand, resisting overstimulation and bad habits, prioritizing long-term choices over short-term approval, and occasional references to wealth and government digital ID skepticism.","data":[1,2,1,1,7,0,1,3,1,4,2,1,3,2,0,1,2,3,1,2,5,2,0,1,2,7,11,5,5,2,3,3,2,2,7,1,0,2,1,2,1,1,1,2,0,5,3,3,0,3,2,6,3,2,4]},{"label":"NFT Giveaways & Raffles","topics":"giveaway,winners,winner,gtd,rt,spots,wl,tag,winning,giveaways","description":"Social feeds are filled with giveaways, raffles and WL (whitelist) spot drops for NFTs, game keys, limited merch and cash/USDC/USDT prizes. Entry mechanics commonly require following, liking/RTing, posting an EVM address or proving asset/level holdings; winners are announced and rewards distributed (on-chain, DMs or platform accounts). Threads also feature trading competitions, auctions and time-limited promo mechanics tied to community growth and launches.","data":[5,0,2,11,0,1,0,5,3,4,2,1,3,1,5,0,0,3,13,2,0,1,2,3,1,0,0,4,5,0,5,0,0,4,0,1,3,4,3,2,0,1,0,1,3,0,1,1,1,0,4,3,1,20,1]},{"label":"BTC Breakout or Fakeout","topics":"4h,retest,resistance,range,band,rejection,ema,rsi,bulls,85k","description":"Traders debate whether Bitcoin will breakout or fakeout while trading in a tight ~78–82K range. Technicals are mixed—Ichimoku, 21/50/200 EMAs, MACD, RSI and Stoch-RSI show both bullish structure and exhaustion/divergences; IV and a weekly doji suggest compressed volatility. Macro risk and BTC.D resistance could send liquidity down the risk curve and trigger a pullback (possible retest toward ~70K); holding above ~79K would favor the next leg up. Market caution: watch trendlines, liquidity, and potential traps.","data":[4,1,3,2,1,4,11,3,11,1,7,2,2,5,1,2,3,2,2,2,0,1,4,0,2,0,5,3,4,0,2,2,1,0,1,0,4,3,3,8,1,1,1,3,2,3,2,5,0,1,2,0,0,1,0]},{"label":"XRP: Yield and Breakout","topics":"xrp,ripple,inflow,inflows,surpassing,150,intact,ledger,disclosed,180","description":"Social chatter centers on XRP’s growing on‑chain and institutional momentum: ETF inflows, whale accumulation, and rising exchange volumes (notably South Korea) are fueling bullish price action and technical breakout setups. Network utility is increasing via XRPL sidechains (Xahau), Flare integration (FXRP), XRPL native vaults offering ~5% yields, and real‑world settlement pilots with banks, which together drive narrative of increased adoption. Market watchers also highlight regulatory catalysts (CLARITY Act markup), treasury settlements, and forecasts targeting multi‑dollar prices as drivers for further capital inflows.","data":[5,1,1,1,1,3,8,1,4,3,3,3,1,4,3,1,3,0,2,1,1,1,5,3,7,2,2,3,1,1,0,1,4,7,3,3,0,1,3,2,4,2,4,2,4,1,0,1,0,8,1,2,1,1,2]},{"label":"AP x Swatch Royal Pop","topics":"ap,royal,watches,pop,collab,pocket,flex,wearing,stores,versions","description":"Audemars Piguet x Swatch’s new “Royal Pop” bioceramic lanyard/pocket-watch drop (~$400 retail) sparked community backlash over brand dilution and ridicule, while secondary-market listings are already asking $1,070–$1,700 (some $2,200+). The release has generated speculative behavior: resale arbitrage, a social-narrative-driven “Royal Pop” pump token, and some traders taking leveraged positions in Swatch stock. Debate centers on whether the collab hurts Royal Oak values or simply fuels short-term hype and meme-driven trading.","data":[0,1,4,0,1,0,2,5,3,9,3,1,2,5,1,5,4,1,2,4,4,3,3,0,0,3,0,2,5,1,0,1,3,0,5,3,0,2,2,2,1,1,0,1,2,0,5,2,0,1,2,3,13,2,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-123.ts b/priv/repo/major_topics_seed/data-123.ts deleted file mode 100644 index fd107e8010..0000000000 --- a/priv/repo/major_topics_seed/data-123.ts +++ /dev/null @@ -1,406 +0,0 @@ -export const NARRATIVES = { - datasets: [ - { - data: [ - 8, 7, 3, 20, 14, 38, 12, 13, 9, 3, 9, 10, 6, 15, 15, 7, 18, 9, 5, 11, 15, 9, 8, 6, 18, 16, - 13, 9, 11, 13, 10, 14, 15, 12, 12, 8, 11, 6, 10, 7, 14, 8, 9, 13, 17, 7, 8, 5, 4, 18, 14, 5, - 9, 8, 9, - ], - description: - 'Discussion centers on Bitcoin adoption, infrastructure, and ecosystem growth: proponents emphasize noncustodial usage, fair-launch values, and real-world adoption (El Salvador, Nairobi). Key topics include scaling and throughput (Stacks), Bitcoin-native apps and financial rails (fiat on/off ramps, stablecoin UX, Bitcoin-backed lending, KYC), debates over regulation vs. Bitcoin’s self-functioning nature, fee/subsat dynamics, and community-driven treasury/dividend experiments.', - label: 'Bitcoin adoption', - topics: 'bitcoiners,fiat,salt,bitcoins,node,nodes,currency,revolution,satoshi,economics', - }, - { - data: [ - 17, 7, 9, 6, 8, 4, 5, 6, 6, 14, 6, 4, 4, 4, 4, 16, 3, 3, 8, 15, 4, 2, 14, 6, 10, 15, 6, 13, - 10, 8, 2, 8, 14, 21, 10, 6, 5, 9, 8, 6, 5, 0, 11, 4, 9, 5, 9, 10, 6, 6, 15, 4, 8, 4, 4, - ], - description: - 'Social conversation centers on Hyperliquid (HYPE) as a rapidly rising on‑chain trading protocol: HYPE has surpassed ETH in open interest on Derive, Hyperliquid generated nearly $2M in fees over 24 hours, and new ETFs tied to HYPE launched with solid debut volume. Major structural shifts include Coinbase becoming Hyperliquid’s USDC treasury deployer as USDH is phased out, USDC liquidity on the network nearing $5B, and protocol features (builders staking, HIP proposals, fee splits) that route yield and revenue back to HYPE holders. Market participants highlight growing institutional interest, increased on‑chain market infrastructure, and bullish price expectations for HYPE.', - label: 'HYPE', - topics: 'hyperliquid,hyperliquidx,hype,hl,usdc,5b,codes,debut,aligned,native', - }, - { - data: [ - 7, 4, 3, 2, 7, 10, 16, 5, 3, 10, 9, 3, 5, 2, 3, 7, 6, 9, 6, 6, 5, 8, 8, 8, 4, 8, 2, 9, 2, 8, - 3, 4, 8, 8, 9, 4, 7, 6, 5, 7, 5, 7, 6, 72, 6, 6, 8, 3, 5, 5, 5, 5, 3, 5, 5, - ], - description: - 'Burst of activity across the Solana ecosystem: large on‑chain volume (including a $20M 24h hyperliquid native trade), extreme token volatility (big pumps and -96% one‑candle moves), and influencer-driven token rallies and burns. Institutional and infrastructure developments are driving growth—Grayscale added ENA to its DeFi fund, Jupiter and Sunrise integrations, and Ethena‑related institutional flows. Technical upgrades (Anza/Alpenglow reducing finality to ~100–150ms) and surging stablecoin and real‑world asset transfers are cited as catalysts. Traders warn of imminent dumps and scalp opportunities even as bulls forecast multi‑billion market caps for some Solana tokens.', - label: 'SOL', - topics: - 'solanaso11111111111111111111111111111111111111112,solana,mev,solanas,ethena,perps,toly,slot,slots,cluster', - }, - { - data: [ - 4, 16, 16, 3, 7, 5, 1, 3, 15, 6, 6, 13, 4, 5, 6, 3, 6, 8, 5, 5, 1, 13, 4, 4, 4, 6, 9, 1, 1, - 23, 3, 10, 4, 13, 15, 4, 7, 1, 3, 5, 3, 20, 13, 5, 2, 0, 4, 3, 5, 1, 2, 22, 3, 1, 2, - ], - description: - 'The CLARITY Act has advanced to a Senate Banking Committee markup and received bipartisan committee support, marking the most significant U.S. step toward a federal digital-asset market structure. If passed by the full Senate and signed, the bill would create a clear SEC/CFTC split, clarify which tokens are securities, and establish rules for stablecoins — a change many expect to materially affect Bitcoin, exchanges, and institutional flows. Banks warn stablecoin rewards could pull deposits; crypto firms largely support clarity, while some warn the law could be politicized in future. Next steps: full Senate consideration, potential floor votes this summer, then presidential signature if approved.', - label: 'CLARITY Act', - topics: 'committee,markup,senate,banking,vote,votes,scheduled,advances,legislation,clarity', - }, - { - data: [ - 6, 5, 8, 5, 7, 3, 0, 9, 3, 5, 5, 5, 9, 3, 6, 5, 2, 6, 7, 5, 2, 2, 6, 7, 1, 7, 5, 6, 2, 7, 3, - 6, 6, 6, 16, 2, 4, 7, 6, 5, 0, 0, 4, 7, 58, 7, 6, 1, 3, 2, 5, 6, 3, 3, 10, - ], - description: - 'Discussion focuses on rapidly maturing stablecoin infrastructure and mainstream adoption: market metrics (stablecoin market ~$323B, quarterly volume ~$4–4.5T, USDT ~58% share; USDD TVL ATH), growing merchant and platform tests (DoorDash, Meta), rising card spending and institutional interest (banks, fintechs). Dev and issuer tooling (Reflect API, BitGo services) and yield/savings products are enabling easy on‑chain payments and payouts. Key themes: real‑world utility, global settlement ambitions, custody/peg and privacy risks, and some users preferring Bitcoin.', - label: 'Stablecoins', - topics: 'stablecoins,visa,stablecoin,stable,stability,paypal,sky,payment,rails,payments', - }, - { - data: [ - 12, 10, 4, 5, 4, 12, 10, 6, 3, 5, 5, 6, 6, 4, 6, 4, 2, 1, 10, 8, 3, 1, 7, 6, 5, 3, 5, 4, 5, - 4, 7, 5, 4, 7, 8, 3, 10, 12, 5, 1, 6, 4, 8, 10, 6, 5, 6, 7, 6, 4, 6, 12, 3, 5, 2, - ], - description: - 'Discussion focuses on Strategy’s STRC instrument surging to par and fueling massive ATM issuance that’s financing large Bitcoin accumulation. STRC offers ~11.5% dividend yield, generated hundreds of millions in daily volume and thousands of BTC buys, and has spawned STRC-linked fixed-yield primitives (Pendle, xStocksFi, ~ $320M TVL). Key debates: whether Strategy is issuing shares/raising capital or selling BTC to pay dividends, dilution math (~8M shares ≈2.3% dilution for ~$1.49B annual dividend), market impact on BTC price, custodial and structural risks, and whether STRC repackages corporate-treasury BTC as fixed-income for institutions.', - label: 'STRC', - topics: 'strc,mstr,atm,strategys,par,dividend,purchased,proceeds,115,preferred', - }, - { - data: [ - 5, 3, 2, 2, 8, 1, 5, 5, 3, 11, 0, 6, 5, 3, 3, 0, 8, 2, 7, 6, 6, 8, 5, 3, 2, 6, 1, 3, 10, 63, - 25, 11, 5, 6, 1, 2, 3, 4, 6, 6, 4, 4, 1, 4, 3, 6, 2, 4, 7, 1, 2, 5, 5, 4, 3, - ], - description: - 'Social chatter centers on a resurgent memecoin cycle—community-driven launches, marketing push by launchpads, contests and collectible memes are fueling hype. Traders discuss newbie strategies, long/leveraged plays and frequent liquidations; derivative/leveraged meme tokens (new products) and platforms like Raydium, Biconomy and altdotfun are highlighted. Popular tickers cited include $DOG, $KISHU, $Pepe, $FLOKI, $Bonk and others, with strong emphasis on community loyalty, viral marketing and high-risk/high-reward dynamics.', - label: 'Memecoins', - topics: 'memecoin,meme,memes,memecoins,shill,100x,shib,szn,bonk,trenches', - }, - { - data: [ - 11, 2, 6, 5, 3, 2, 4, 4, 3, 10, 4, 1, 2, 20, 1, 6, 1, 6, 3, 0, 3, 5, 4, 9, 2, 3, 5, 4, 5, 3, - 8, 3, 1, 7, 4, 10, 4, 2, 4, 7, 34, 9, 3, 5, 5, 14, 3, 8, 2, 3, 4, 1, 7, 2, 3, - ], - description: - 'Social posts report an intensification of the Russia–Ukraine conflict: large-scale Russian drone campaigns (hundreds daily) and heavy Ukrainian air defense activity, plus Ukrainian strikes on Russian depots, refineries and helicopters. Political developments include EU accession steps, international coalitions to recover abducted children, regional diplomatic tensions, and domestic unrest in Russia (airport chaos, accusations of corruption and conscription avoidance). Analysts flag market implications — energy flows, sanctions relief if the war ends — and occasional bitcoin/market commentary tied to these geopolitical shifts.', - label: 'Russia-Ukraine war', - topics: 'russia,drones,struck,strike,forces,region,attack,eu,air,overnight', - }, - { - data: [ - 2, 3, 5, 7, 2, 2, 2, 14, 4, 6, 6, 2, 8, 7, 3, 5, 4, 11, 0, 1, 1, 1, 2, 8, 4, 7, 1, 1, 2, 3, - 3, 1, 2, 4, 3, 2, 4, 1, 8, 16, 12, 31, 6, 3, 3, 6, 2, 5, 8, 0, 3, 4, 9, 3, 3, - ], - description: - 'Escalating Iran–US tensions and regional strikes around the Strait of Hormuz are driving market anxiety: energy prices and inflation risks are rising, central banks are watching policy, and UN/US sanctions and military actions could widen. Reports include Iran rejecting dismantling nuclear facilities, US strikes and explosions near Qeshm and Bandar Abbas, Saudi strikes on Iran-linked militias, Pakistan possibly sheltering Iranian aircraft, potential control of undersea cables, and resumed negotiations. Crypto/market links: Iran’s Nobitex reportedly dodging US sanctions, bitcoin discussed as a market hedge, and broader geopolitical risk affecting asset prices and trading flows.', - label: 'Iran war', - topics: 'strait,ceasefire,hormuz,iran,strikes,response,nuclear,proposal,uae,dubai', - }, - { - data: [ - 4, 4, 3, 38, 10, 1, 2, 4, 6, 3, 8, 3, 6, 7, 3, 3, 6, 4, 4, 2, 1, 6, 3, 4, 3, 1, 3, 2, 16, 2, - 3, 4, 5, 8, 5, 10, 4, 4, 2, 3, 3, 2, 4, 4, 4, 5, 5, 7, 2, 3, 6, 1, 3, 2, 1, - ], - description: - 'Social posts focus on digital and on‑chain art moving into Web3: generative pieces, VR sculpture, Axie fan art, and gallery tools like Verse to present work. Discussion emphasizes provenance, programmable rights, and artist‑first settlement (especially for music IP) as the next infrastructure need. Contributors note how algorithms shape artistic risk and how established artists (e.g., Dima Kashtalyan, The Beaks) and metaverse platforms (Otherside) are legitimizing crypto‑native art and collectible value. Collecting challenges (digital ownership vs. physical) and high upside narratives for early projects are also common themes.', - label: 'Art', - topics: 'artists,art,artist,paint,creativity,drawing,music,pieces,piece,beautiful', - }, - { - data: [ - 3, 3, 4, 4, 4, 5, 9, 5, 6, 2, 2, 4, 2, 1, 7, 85, 2, 1, 3, 2, 2, 3, 4, 0, 4, 4, 2, 2, 5, 3, - 1, 5, 2, 5, 7, 2, 2, 4, 0, 1, 3, 1, 3, 1, 2, 0, 6, 5, 4, 4, 5, 0, 4, 3, 0, - ], - description: - 'Social posts hype multiple Ethereum contract addresses as potential short-term gainers, notably 0x8de3... promoted as the next big runner with CEX listing signals and contract migration (0x50→0x8D). Users mention imminent breakouts (~48h), price discovery, and a broader theme that original-IP tokens will lead this cycle — overall coordinated speculation and listing-driven price promotions.', - label: 'ETH', - topics: 'ethereumnative,hook,ethereums,v4,uniswap,l2s,evm,cexs,ethereum,ethereumfndn', - }, - { - data: [ - 2, 7, 2, 1, 5, 1, 5, 0, 5, 2, 5, 3, 4, 1, 4, 2, 2, 5, 38, 4, 1, 6, 1, 5, 2, 3, 3, 5, 6, 2, - 2, 8, 9, 5, 4, 13, 1, 1, 3, 3, 2, 1, 1, 1, 5, 6, 3, 1, 4, 1, 6, 9, 5, 4, 2, - ], - description: - 'Social chatter mixes general gaming talk (new quests, dungeon challenges, popular titles, gacha skepticism, esports friction) with an emphasis on blockchain integration: trading game items on-chain, GameFi/p2e mechanics, asset migrations (Wolf Game), and infrastructure deals (Ontology/Palz data campaigns, Tilted real-time payments and DaaS). Threads also reference game theory and ML as lenses for design and policy. Overall the conversation centers on gaming culture evolving toward web3 monetization, data sourcing, and payment rails.', - label: 'Gaming', - topics: 'gaming,games,game,steam,mechanics,characters,items,players,playing,studio', - }, - { - data: [ - 4, 5, 2, 9, 7, 1, 2, 8, 5, 5, 2, 5, 2, 4, 3, 3, 7, 3, 3, 4, 2, 2, 1, 7, 1, 3, 5, 3, 3, 3, 4, - 5, 5, 6, 1, 4, 8, 6, 5, 2, 1, 2, 1, 5, 3, 2, 7, 3, 4, 1, 10, 5, 1, 1, 6, - ], - description: - 'Conversation centers on DeFi’s next phase: moving from pure growth narratives to real revenue, sustainability and institutional integration while preserving noncustodial composability. Key threads include new infrastructure (derivatives via Aevo, DEX designation for Yuzu, Mobius on PoW, Teller features like Predictive Allocation), the need for deep, reliable liquidity and legal precedents, and evolving tokenomics (revenue-sharing, buyback & burn). On-chain activity and protocol structure (governance, utility, value flow) are highlighted as healthier long-term signals versus price alone.', - label: 'DeFi', - topics: 'defi,protocols,oracle,apy,sustainable,aave,lending,vault,fragmented,vaults', - }, - { - data: [ - 3, 3, 4, 1, 3, 2, 4, 8, 1, 3, 2, 0, 1, 3, 6, 2, 2, 5, 5, 4, 4, 1, 1, 2, 4, 5, 7, 2, 8, 0, 5, - 4, 6, 1, 4, 7, 5, 1, 7, 12, 0, 13, 5, 2, 1, 6, 7, 2, 2, 2, 4, 4, 3, 6, 4, - ], - description: - 'A major Labour Party leadership crisis is unfolding after poor local election results: around 70 Labour MPs have publicly called for Keir Starmer to resign, several ministers have resigned or threatened to, and internal opposition has grown over policy and direction. Reports name potential challengers (Wes Streeting, Catherine West) and moves to bring Andy Burnham back to Parliament; Downing Street insists Starmer retains support and has appointed replacements and whips. The rebellion includes MPs opposing proposed immigration reforms and has prompted resignations, by-election actions, and fraught public statements about the party’s future.', - label: 'UK Labour party', - topics: 'secretary,minister,party,deputy,leader,election,prime,sir,uk,tells', - }, - { - data: [ - 1, 1, 7, 1, 7, 3, 0, 4, 2, 1, 1, 6, 2, 0, 0, 0, 1, 5, 3, 7, 7, 9, 10, 3, 5, 2, 4, 1, 10, 3, - 30, 15, 1, 3, 4, 1, 0, 0, 4, 1, 0, 1, 0, 1, 1, 6, 1, 0, 2, 1, 1, 0, 5, 6, 2, - ], - description: - 'Crypto community users broadcast Mother’s Day greetings across Twitter, celebrating mothers broadly and specifically within the ecosystem — trading moms, NFT creators, and project-related mothers (mentions of $UFD, Bored Ape derivative, WINkLink). Messages mix heartfelt thanks, community shoutouts, and remarks about trust, resilience, and balancing parenting with trading/crypto work.', - label: "Mother's Day", - topics: 'mothers,mom,happy,mother,gift,celebrate,kids,wife,honor,bless', - }, - { - data: [ - 5, 4, 3, 8, 2, 3, 1, 3, 1, 5, 3, 1, 4, 3, 2, 5, 4, 4, 0, 3, 2, 4, 4, 3, 5, 5, 3, 0, 1, 6, 4, - 3, 2, 5, 3, 3, 1, 5, 1, 5, 7, 4, 4, 3, 2, 2, 3, 3, 6, 2, 1, 1, 7, 3, 5, - ], - description: - 'A stream of social posts condemns Israel’s conduct in Gaza and the wider region, accusing Netanyahu’s government of war crimes and genocide while calling for the U.S. to end military aid. Messages cite alleged systematic sexual violence on Oct. 7 (not independently verified by some outlets), reports of casualties from Israeli strikes in Lebanon and Gaza, prisoner deaths, deportations of activists, and ongoing negotiations between Lebanon and Israel. The tone is highly critical and conspiratorial, mixing eyewitness reports, media links, and political outrage demanding accountability and ceasefire action.', - label: 'Israel-Palestine war', - topics: 'israel,killed,jewish,southern,attacks,strikes,military,children,destroy,terrorist', - }, - { - data: [ - 5, 2, 3, 1, 1, 2, 1, 4, 5, 2, 7, 10, 2, 2, 0, 3, 0, 1, 0, 7, 3, 8, 7, 34, 1, 3, 1, 0, 0, 5, - 0, 1, 3, 3, 0, 2, 5, 3, 2, 2, 16, 2, 2, 0, 1, 1, 3, 1, 1, 1, 4, 6, 1, 1, 1, - ], - description: - 'Social posts focus on hotter-than-expected US inflation prints: April headline CPI 3.8% YoY (vs. 3.7e) and core CPI 2.8% (2.7e); April PPI 6.0% YoY (4.9e) and core PPI ~5.2% (4.3e). A sharp rise in oil/energy prices is the main driver, prompting debate whether the move is a temporary energy shock or the start of stickier cost-push inflation. Market reactions include repricing of yields and a more complicated Fed rate-cut outlook, with implications for real wages, seasonal-adjustment distortions, and risk assets including crypto.', - label: 'CPI', - topics: 'cpi,ppi,38,yoy,headline,producer,37,inflation,hotter,core', - }, - { - data: [ - 1, 1, 3, 6, 2, 2, 0, 3, 3, 4, 3, 9, 6, 0, 3, 5, 4, 0, 3, 5, 4, 14, 2, 5, 2, 4, 2, 1, 1, 2, - 1, 4, 5, 8, 6, 5, 2, 5, 1, 2, 4, 0, 3, 1, 2, 5, 2, 5, 2, 1, 0, 4, 2, 5, 7, - ], - description: - 'Social posts focus on a hantavirus outbreak tied to the MV Hondius cruise ship (multiple cases, reported deaths, evacuees to the U.S., WHO urging limited alarm) and widespread public concern/panic. Conversations mix health updates (transmission, mask guidance, monitoring of non-passengers) with market speculation — tweets highlight Moderna’s vaccine work and a big $MRNA rally — and crypto-community chatter about tokenizing or listing related plays (Solana DEX, Ethereum projects). Overall tone blends fear, skepticism of “doomerism,” and opportunistic trading commentary.', - label: 'Hantavirus', - topics: 'hantavirus,cruise,virus,pandemic,ship,covid,suspected,condition,french,dutch', - }, - { - data: [ - 0, 1, 1, 4, 6, 2, 3, 4, 0, 12, 3, 5, 2, 1, 2, 2, 11, 1, 6, 3, 2, 3, 4, 4, 2, 1, 6, 2, 4, 4, - 2, 3, 5, 6, 2, 2, 14, 2, 2, 2, 2, 2, 4, 0, 1, 4, 4, 4, 2, 2, 1, 4, 4, 0, 1, - ], - description: - 'Social chatter celebrating an NFT comeback, sharing curated lists of favorite and affordable collections (Pudgy Penguins, BEANZ, DeadPixels, JustPFPart, Unipix, etc.) across chains (ETH, SOL, HBAR, Base, XRPL). Emphasis on projects building lasting ecosystems and digital identity rather than short-term flips, plus active calls to join whitelists/GTDs and early mints (e.g., 1111 supply, free mint). Community-driven marketing and hype tactics (clean art, PFP focus, promotional strategies) are also highlighted.', - label: 'NFTs', - topics: - 'nfts,nft,wl,collectibles,collecting,collectors,minting,cartyisme,collection,communities', - }, - { - data: [ - 2, 1, 0, 2, 3, 5, 1, 6, 3, 1, 1, 1, 1, 4, 6, 2, 3, 6, 1, 3, 1, 2, 6, 0, 2, 5, 4, 4, 1, 1, 1, - 3, 5, 3, 2, 1, 9, 2, 8, 1, 1, 9, 1, 1, 4, 3, 2, 3, 5, 1, 5, 4, 1, 1, 9, - ], - description: - 'Social chatter centers on Zcash ($ZEC) surging toward new highs as privacy coins regain momentum. Posts highlight big short‑term gains (e.g., +62% weekly), bullish price calls (some target ~$1,000; 5x–15x scenarios), and support from institutional/mining activity (Foundry/Multicoin involvement, ~30% hashrate capture), a halving-driven emission drop (~70%), and sharp growth in shielded-pool usage (+304%). Drivers cited include KYC/AI surveillance fears, renewed demand for on‑chain privacy, promotional activity for non‑KYC trading and shielding tools (zodl, THORSwap), and product interest (Grayscale Zcash Trust $ZCSH). Debate also includes traceability/NSA claims and accusations of laundering, plus trading advice to take profits while holding a moon bag.', - label: 'ZEC', - topics: 'zcash,zec,privacy,zk,journal,tge,scarcity,600,offline,anonymous', - }, - { - data: [ - 1, 4, 2, 0, 3, 2, 0, 0, 1, 0, 2, 2, 8, 3, 1, 2, 1, 4, 4, 3, 1, 1, 2, 2, 1, 1, 4, 3, 1, 1, 3, - 5, 1, 3, 0, 0, 0, 1, 3, 14, 1, 2, 0, 0, 3, 1, 0, 2, 3, 3, 2, 11, 2, 5, 35, - ], - description: - 'A stream of nostalgic reflections from long-time crypto and NFT participants noting recurring cycles of hype, “one-hit wonders,” and repeated community behaviors since early days. Messages reference specific projects (veefriends, Interdimensional Beings, Conste11ation), Solana’s technical maturation and improved uptime, Bitcoin analytics/energy-tracking tools, and a new Solana game launch — alongside commentary that crypto has recently underperformed traditional finance. Overall tone: loyal, weary, and observant of ecosystem evolution and recurring patterns.', - label: 'Crypto Community Nostalgia', - topics: 'album,memories,remember,music,song,learned,sugar,ago,grateful,joined', - }, - { - data: [ - 1, 33, 5, 1, 0, 4, 7, 0, 2, 8, 1, 1, 2, 1, 2, 2, 0, 2, 2, 1, 2, 1, 0, 5, 2, 4, 1, 3, 2, 0, - 1, 2, 3, 3, 4, 1, 3, 0, 1, 2, 2, 0, 4, 4, 1, 1, 5, 2, 3, 1, 3, 5, 3, 2, 7, - ], - description: - 'Social posts argue AI agents are becoming autonomous economic actors that will use crypto rails to pay, get paid, and prove authorized actions. Key infrastructure needs highlighted: agent wallets and stablecoins (e.g., XO Cash), trusted oracles and cryptographic audit trails for price and authorization data (Band, WinkLinkAI, agent risk oracles), ZK proofs for privacy and verification, and SDKs/wallet integrations (Nara Chain, Bitget, XYO, Anchorage). The conversation frames these as investable infrastructure plays powering agentic commerce and compliance.', - label: 'AI Agent Payment Rails', - topics: 'x402,commerce,agentic,transact,apis,payment,autonomous,rails,api,programmable', - }, - { - data: [ - 4, 11, 1, 1, 1, 8, 1, 4, 5, 7, 2, 5, 2, 0, 8, 1, 7, 1, 2, 2, 2, 0, 4, 4, 2, 2, 3, 1, 1, 2, - 3, 7, 3, 2, 2, 1, 4, 2, 2, 1, 2, 1, 1, 0, 3, 2, 3, 3, 3, 10, 1, 2, 1, 0, 1, - ], - description: - 'Multiple social posts note Tron Inc.’s repeated TRX purchases (incremental buys like ~142k TRX and larger aggregate holdings), and argue this pattern signals a shift to disciplined, long-term on‑chain treasury accumulation rather than one‑off trading. Observers link the buys to growing ecosystem conviction as TRX reclaimed levels above ~$0.35 amid a market focused on AI, memecoins and new L2s. The discussion contrasts corporate treasury strategies (and praise for Arbitrum’s treasury program/EntropyAdvisors) and emphasizes that sustained accumulation and on‑chain treasury infrastructure are becoming an undervalued indicator of protocol health.', - label: 'TRON Treasury Accumulation', - topics: 'tron,trx,eco,tps,reflects,integrations,tvl,recap,narrative,circulation', - }, - { - data: [ - 4, 0, 1, 3, 4, 1, 5, 2, 4, 2, 1, 1, 2, 1, 2, 0, 4, 7, 12, 7, 4, 3, 2, 1, 3, 7, 4, 2, 2, 3, - 3, 6, 3, 1, 0, 4, 1, 3, 1, 1, 4, 0, 6, 2, 2, 3, 4, 5, 0, 4, 1, 3, 1, 1, 1, - ], - description: - 'Social posts focus on NBA playoff drama: debates over officiating and flopping (notably OKC and Wembanyama), calls for suspension after physical plays, and criticism of controversial calls. Fans discuss LeBron’s performance, injury concerns and trade speculation, while also praising standout games from Spurs, Timberwolves, Cavs, and WNBA action. Overall tone mixes outrage at officiating with game-by-game reaction and player hot takes.', - label: 'NBA Officiating and Flopping', - topics: 'adam,abc,fans,suspended,james,series,george,league,game,iconic', - }, - { - data: [ - 0, 3, 1, 1, 2, 2, 2, 2, 2, 12, 1, 4, 3, 3, 0, 9, 3, 8, 2, 5, 2, 2, 8, 3, 1, 4, 4, 1, 1, 0, - 1, 3, 1, 9, 1, 2, 1, 2, 3, 5, 2, 5, 0, 3, 0, 4, 4, 1, 3, 5, 1, 0, 1, 6, 0, - ], - description: - 'Twitter discussion centers on Coinbase cutting ~14% of staff followed by multi-hour trading outages traced to an AWS datacenter overheating. Users suspect the layoffs (and increased reliance on AI/non-technical pushes) contributed to slower incident response and criticize centralized exchange reliability amid weak Q1 results. Conversation pushes decentralized compute/DEX alternatives and questions exchange operational risk during market stress.', - label: 'Coinbase layoffs and outage', - topics: 'aws,disruption,staff,laid,offline,coinbase,discord,datacenter,fired,engineers', - }, - { - data: [ - 3, 3, 0, 3, 0, 8, 1, 1, 4, 1, 10, 2, 0, 6, 0, 1, 0, 6, 1, 2, 18, 13, 9, 5, 2, 0, 0, 3, 3, - 11, 4, 1, 0, 0, 0, 1, 2, 0, 10, 0, 0, 4, 0, 1, 0, 3, 1, 0, 2, 1, 3, 2, 0, 0, 2, - ], - description: - 'Multiple posts report that Anthropic’s Claude AI helped a user recover access to a Bitcoin wallet dormant for ~11 years by scanning old drives, locating an encrypted wallet/mnemonic backup, and assisting with password-recovery tools (btcrecover/Hashcat). The user regained ~5 BTC (roughly $400k) after prior manual attempts and trillions of password guesses failed. The story is framed as a bullish, heartwarming AI win but also raises security and privacy concerns about giving AI access to personal devices and how AI may blur the line between ‘lost forever’ and recoverable crypto keys.', - label: 'AI recovers lost Bitcoin', - topics: 'recovered,recover,400k,college,forgot,2015,cracked,locked,forgotten,helped', - }, - { - data: [ - 5, 7, 2, 1, 5, 0, 0, 0, 1, 14, 6, 1, 7, 4, 5, 0, 2, 4, 0, 2, 2, 0, 4, 16, 2, 2, 1, 2, 3, 2, - 2, 6, 0, 2, 1, 4, 1, 3, 2, 3, 0, 2, 4, 0, 3, 4, 2, 0, 1, 0, 4, 1, 2, 2, 2, - ], - description: - 'Discussion centers on a shift in AI competition from model-count and parameters toward infrastructure: production scalability, orchestration, developer experience, inference cost, and frictionless onboarding. Crypto projects (BNB Chain, ICN_Protocol, AINFT, Alaya, Gauntlet AI, TronLink) are highlighted as building distributed/cloud AI infra, access layers, and low-friction UX to enable real-world AI workloads and mass adoption. Reliable real-time data, cost optimization, and end-to-end coordination are seen as the decisive factors for future AI platforms.', - label: 'AI Infrastructure Competition', - topics: - 'benchmark,ainative,competition,sun,scalability,reasoning,matrix,17m,assistant,coordination', - }, - { - data: [ - 7, 3, 0, 0, 0, 6, 0, 1, 1, 0, 5, 7, 2, 2, 2, 1, 1, 6, 0, 1, 1, 0, 1, 6, 0, 3, 1, 1, 0, 0, 1, - 0, 2, 6, 2, 5, 0, 5, 9, 0, 1, 11, 3, 5, 28, 2, 1, 0, 0, 2, 1, 1, 4, 1, 0, - ], - description: - 'U.S. spot Bitcoin ETFs saw a strong April (≈$1.97B inflows) and a multi‑week inflow streak into early May, but that momentum recently reversed with large single‑day outflows (notable draws: -$277M, -$630M, -$635M). Netflow metrics (7‑day SMA ≈ -$88M/day) show institutional re‑weighting: some products (IBIT, FBTC) both attracted and shed large sums across days. Market context: ETF AUM and total BTC held remain near record levels (~681k BTC), allocations appear to be rotating (gold → BTC), and selling has occurred even as BTC traded near the $80k level.', - label: 'Spot Bitcoin ETF Flows', - topics: 'outflows,etfs,inflows,inflow,recorded,net,streak,ibit,longest,etf', - }, - { - data: [ - 3, 0, 2, 7, 1, 1, 7, 5, 0, 5, 1, 4, 0, 3, 1, 2, 2, 3, 1, 2, 0, 3, 3, 3, 2, 2, 5, 2, 1, 7, 2, - 3, 4, 2, 5, 1, 1, 1, 3, 3, 1, 2, 3, 2, 6, 2, 2, 2, 4, 2, 4, 1, 2, 0, 6, - ], - description: - 'The thread highlights rapid growth in tokenized real-world assets (RWAs) — now >$30B onchain — driven by projects, institutional backers, and new product classes (deRWAs, tokenized active strategies, RWA perp DEXs, stablecoins). It emphasizes that tokenization is straightforward but creating liquid secondary markets is the harder structural challenge, requiring infrastructure: oracles, redemption rails (e.g., Upshift Clear), compliance layers, standards (Institutional Guide to RWA Token Standards), and audits. Examples include AWARP/Animoca investment, Algorand water-reuse credits, AnchoredFi’s equity tokenization, Chronicle Labs oracles, and emerging RWA-focused chains and funds. Overall momentum is strong, but liquidity and market-making remain the key bottlenecks for broader adoption.', - label: 'Real-World Asset Tokenization', - topics: - 'rwa,rwas,treasuries,realworld,tokenization,tokenized,tokenisation,bnbchain,redemption,4b', - }, - { - data: [ - 1, 2, 1, 1, 7, 0, 1, 3, 1, 4, 2, 1, 3, 2, 0, 1, 2, 3, 1, 2, 5, 2, 0, 1, 2, 7, 11, 5, 5, 2, - 3, 3, 2, 2, 7, 1, 0, 2, 1, 2, 1, 1, 1, 2, 0, 5, 3, 3, 0, 3, 2, 6, 3, 2, 4, - ], - description: - 'A string of motivational messages urging self-discipline, personal accountability, and embracing the process of growth rather than external validation. Themes include building a personal brand, resisting overstimulation and bad habits, prioritizing long-term choices over short-term approval, and occasional references to wealth and government digital ID skepticism.', - label: 'Self-Improvement and Branding', - topics: 'life,quit,dreams,death,comfortable,criticism,dream,painful,deserve,person', - }, - { - data: [ - 5, 0, 2, 11, 0, 1, 0, 5, 3, 4, 2, 1, 3, 1, 5, 0, 0, 3, 13, 2, 0, 1, 2, 3, 1, 0, 0, 4, 5, 0, - 5, 0, 0, 4, 0, 1, 3, 4, 3, 2, 0, 1, 0, 1, 3, 0, 1, 1, 1, 0, 4, 3, 1, 20, 1, - ], - description: - 'Social feeds are filled with giveaways, raffles and WL (whitelist) spot drops for NFTs, game keys, limited merch and cash/USDC/USDT prizes. Entry mechanics commonly require following, liking/RTing, posting an EVM address or proving asset/level holdings; winners are announced and rewards distributed (on-chain, DMs or platform accounts). Threads also feature trading competitions, auctions and time-limited promo mechanics tied to community growth and launches.', - label: 'NFT Giveaways & Raffles', - topics: 'giveaway,winners,winner,gtd,rt,spots,wl,tag,winning,giveaways', - }, - { - data: [ - 4, 1, 3, 2, 1, 4, 11, 3, 11, 1, 7, 2, 2, 5, 1, 2, 3, 2, 2, 2, 0, 1, 4, 0, 2, 0, 5, 3, 4, 0, - 2, 2, 1, 0, 1, 0, 4, 3, 3, 8, 1, 1, 1, 3, 2, 3, 2, 5, 0, 1, 2, 0, 0, 1, 0, - ], - description: - 'Traders debate whether Bitcoin will breakout or fakeout while trading in a tight ~78–82K range. Technicals are mixed—Ichimoku, 21/50/200 EMAs, MACD, RSI and Stoch-RSI show both bullish structure and exhaustion/divergences; IV and a weekly doji suggest compressed volatility. Macro risk and BTC.D resistance could send liquidity down the risk curve and trigger a pullback (possible retest toward ~70K); holding above ~79K would favor the next leg up. Market caution: watch trendlines, liquidity, and potential traps.', - label: 'BTC Breakout or Fakeout', - topics: '4h,retest,resistance,range,band,rejection,ema,rsi,bulls,85k', - }, - { - data: [ - 5, 1, 1, 1, 1, 3, 8, 1, 4, 3, 3, 3, 1, 4, 3, 1, 3, 0, 2, 1, 1, 1, 5, 3, 7, 2, 2, 3, 1, 1, 0, - 1, 4, 7, 3, 3, 0, 1, 3, 2, 4, 2, 4, 2, 4, 1, 0, 1, 0, 8, 1, 2, 1, 1, 2, - ], - description: - 'Social chatter centers on XRP’s growing on‑chain and institutional momentum: ETF inflows, whale accumulation, and rising exchange volumes (notably South Korea) are fueling bullish price action and technical breakout setups. Network utility is increasing via XRPL sidechains (Xahau), Flare integration (FXRP), XRPL native vaults offering ~5% yields, and real‑world settlement pilots with banks, which together drive narrative of increased adoption. Market watchers also highlight regulatory catalysts (CLARITY Act markup), treasury settlements, and forecasts targeting multi‑dollar prices as drivers for further capital inflows.', - label: 'XRP: Yield and Breakout', - topics: 'xrp,ripple,inflow,inflows,surpassing,150,intact,ledger,disclosed,180', - }, - { - data: [ - 0, 1, 4, 0, 1, 0, 2, 5, 3, 9, 3, 1, 2, 5, 1, 5, 4, 1, 2, 4, 4, 3, 3, 0, 0, 3, 0, 2, 5, 1, 0, - 1, 3, 0, 5, 3, 0, 2, 2, 2, 1, 1, 0, 1, 2, 0, 5, 2, 0, 1, 2, 3, 13, 2, 3, - ], - description: - 'Audemars Piguet x Swatch’s new “Royal Pop” bioceramic lanyard/pocket-watch drop (~$400 retail) sparked community backlash over brand dilution and ridicule, while secondary-market listings are already asking $1,070–$1,700 (some $2,200+). The release has generated speculative behavior: resale arbitrage, a social-narrative-driven “Royal Pop” pump token, and some traders taking leveraged positions in Swatch stock. Debate centers on whether the collab hurts Royal Oak values or simply fuels short-term hype and meme-driven trading.', - label: 'AP x Swatch Royal Pop', - topics: 'ap,royal,watches,pop,collab,pocket,flex,wearing,stores,versions', - }, - ], - labels: [ - '07.05.26', - '08.05.26', - '08.05.26', - '08.05.26', - '08.05.26', - '08.05.26', - '08.05.26', - '08.05.26', - '09.05.26', - '09.05.26', - '09.05.26', - '09.05.26', - '09.05.26', - '09.05.26', - '09.05.26', - '09.05.26', - '10.05.26', - '10.05.26', - '10.05.26', - '10.05.26', - '10.05.26', - '10.05.26', - '10.05.26', - '10.05.26', - '11.05.26', - '11.05.26', - '11.05.26', - '11.05.26', - '11.05.26', - '11.05.26', - '11.05.26', - '11.05.26', - '12.05.26', - '12.05.26', - '12.05.26', - '12.05.26', - '12.05.26', - '12.05.26', - '12.05.26', - '12.05.26', - '13.05.26', - '13.05.26', - '13.05.26', - '13.05.26', - '13.05.26', - '13.05.26', - '13.05.26', - '13.05.26', - '14.05.26', - '14.05.26', - '14.05.26', - '14.05.26', - '14.05.26', - '14.05.26', - '14.05.26', - ], -} diff --git a/priv/repo/major_topics_seed/data-13.json b/priv/repo/major_topics_seed/data-13.json deleted file mode 100644 index 3d3896bd41..0000000000 --- a/priv/repo/major_topics_seed/data-13.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["28.03.24","29.03.24","29.03.24","29.03.24","29.03.24","29.03.24","29.03.24","29.03.24","30.03.24","30.03.24","30.03.24","30.03.24","30.03.24","30.03.24","30.03.24","30.03.24","31.03.24","31.03.24","31.03.24","31.03.24","31.03.24","31.03.24","31.03.24","31.03.24","01.04.24","01.04.24","01.04.24","01.04.24","01.04.24","01.04.24","01.04.24","01.04.24","02.04.24","02.04.24","02.04.24","02.04.24","02.04.24","02.04.24","02.04.24","02.04.24","03.04.24","03.04.24","03.04.24","03.04.24","03.04.24","03.04.24","03.04.24","03.04.24","04.04.24","04.04.24","04.04.24","04.04.24","04.04.24","04.04.24","04.04.24"],"datasets":[{"label":"BTC","topics":"fiat,bitcoin,freedom,money,satoshi","description":"The messages from Twitter discuss various topics related to the crypto industry, specifically focusing on Bitcoin. Some key points mentioned include the lack of Bitcoin knowledge among individuals, the importance of fixing the monetary system to fix the world, the excitement around Bitcoin mining activities, and the debate around the value of distributed ledgers and securities in comparison to Bitcoin. Additionally, there is a mention of the world's first Master's Degree in Blockchain and Digital Assets, highlighting the growing interest and demand for expertise in this field. Overall, the messages reflect a mix of enthusiasm, skepticism, and curiosity surrounding Bitcoin and its impact on the financial world.","data":[25,10,18,22,85,66,12,12,8,10,20,16,13,15,10,21,11,11,12,20,16,15,15,17,15,13,12,23,27,10,14,20,6,27,15,20,45,19,19,17,21,27,18,18,16,16,22,17,17,16,36,13,13,19,24]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Memecoins and their potential for high returns (e.g. hitting a 100x)\n- The meme economy and the rise of meme coins\n- Low market cap meme coins and which ones to invest in\n- Meme communities and contests for meme coins\n- The volatility of meme coins and their price fluctuations\n- The launch of new meme networks like Memenet\n- The risks and rewards of investing in meme coins\n- The popularity of certain meme coins like $MUMU and their recent performance\n- The strategies of investors in meme coins, such as diversifying investments across multiple meme coins\n- Events and contests related to meme coins, such as the Streaming Meme Contest and the Boba Oppa meme contest\n- The influence of influencers and communities like @Hasbiland in the meme coin market\n- The comparison between meme coins and traditional tokens in terms of performance and market value.","data":[11,8,15,19,0,6,9,9,30,23,15,16,14,10,4,10,7,16,23,15,13,20,20,15,7,15,15,16,13,13,21,57,159,11,9,16,16,12,11,21,9,15,19,12,12,4,16,23,21,19,9,6,17,17,9]},{"label":"Art","topics":"art,artist,artists,artwork,piece","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- The value and pricing of art\n- Digital art and its significance in the 21st century\n- AI's impact on art creation and investment\n- The rarity of human art in the age of AI\n- The importance of supporting artists and their dreams\n- The lack of outlets for new artist discovery and curation\n- Crypto art and NFTs\n- AI exhibitions and techniques in art curation\n- Solo art shows and the pricing of artwork\n\nOverall, the messages reflect a diverse range of discussions surrounding art, technology, and the evolving landscape of the art industry in the digital age.","data":[3,5,69,11,0,0,4,8,9,6,18,8,5,3,7,9,3,5,7,9,4,6,8,7,7,8,5,5,5,8,14,5,0,6,7,4,14,14,9,6,7,7,4,8,10,8,9,9,10,4,6,6,4,5,7]},{"label":"SOL","topics":"solana,sol,solanas,presale,meme","description":"The key topics currently discussed in the crypto community on Twitter include:\n- Solana's recent price surge, with SOL climbing from $180 to over $210\n- The popularity of meme coins on Solana, such as $HaaHaa and $TFO\n- Projects and NFTs minted on the Solana network, such as CONTROL, VECORATIVE, MASTERS OF THE METAVERSE, and DREAMSCAPE ODYSSEY\n- The growth and development of the Solana ecosystem, with users expressing interest in exploring it further\n- The comparison of Solana to other blockchain networks like Ethereum, Cosmos, and Polkadot\n- Trading signals and analysis for SOL/BTC pair on Coinbase Advanced Trade\n- Upcoming launches and presales on Solana, such as Porgy and JYDS\n- The potential for SOL to reach a $250 price target\n- The unique features and innovations of Solana, such as the Palazzo Miner and zero taxes\n- The excitement around a meme coin called $TFO on Solana, with users discussing its potential and risks\n\nOverall, the community seems to be highly engaged with Solana and its ecosystem, with a focus on price movements, new projects, and trading opportunities.","data":[2,7,5,9,0,1,3,7,9,11,6,6,2,11,5,10,3,11,5,6,6,8,4,3,12,8,8,5,7,7,7,5,9,7,7,8,5,8,19,9,5,5,7,11,37,6,14,10,3,6,8,6,4,4,6]},{"label":"GameFi","topics":"gaming,game,games,web3,players","description":"The key topics currently being discussed in the crypto industry on Twitter include gaming in the Web3 space, GameFi projects, gaming accelerators, and new game releases. There is excitement around projects like Fusionist and Nine Chronicles, as well as anticipation for upcoming games like the one from $BRN. Additionally, there is discussion about the integration of blockchain technology in gaming, such as with Tezos Unity SDK. Overall, the sentiment seems positive with a focus on innovation and growth in the Web3 gaming sector.","data":[9,6,4,7,1,0,2,0,2,12,10,6,7,1,10,7,12,12,6,6,72,10,7,3,4,9,7,5,11,4,4,3,6,7,15,3,2,16,3,6,5,6,3,2,6,8,6,2,8,3,7,6,8,8,2]},{"label":"FED & Inflation","topics":"inflation,fed,cuts,rate,rates","description":"The key topics currently discussed in the crypto industry on social media include:\n- Inflation concerns and the impact on the value of the U.S. dollar\n- Market reactions to Jerome Powell and Janet Yellen being indicted on corruption charges\n- The Federal Reserve's next move and its impact on the economy\n- Interest rates and their effect on the market\n- Potential FOMO in the housing market due to Fed rate cuts\n- Escalating yields and commodity prices\n- Potential changes in the financial system in the future\n- The impact of the ECB Consumer Expectations Survey results on Bitcoin\n- Concerns over systemic risk management and bail-ins\n- The potential impact of Fed policy on banks like $BAC\n- The influence of the upcoming US jobs report on market views and growth\n- The potential for a new all-time high in 2024 and future market trends in stocks and cryptos\n\nOverall, the discussions on social media indicate a high level of interest and concern regarding economic indicators, central bank policies, and market trends in the crypto industry.","data":[6,0,3,5,0,0,6,2,1,3,2,1,3,2,7,13,2,8,5,6,3,5,1,2,5,32,9,5,5,5,3,37,0,9,1,2,10,6,9,9,13,5,13,3,7,2,3,4,2,4,3,2,2,8,7]},{"label":"ETH","topics":"eth,ethereum,ethbtc,05,ethereums","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n\n1. Ethereum (ETH) price action and analysis: Discussions about ETH price movements, resistance levels, support levels, and potential trading strategies.\n2. Comparison between Ethereum (ETH) and Bitcoin (BTC): Comparisons of performance, gains, and market behavior between ETH and BTC.\n3. Yield farming and staking opportunities: Mention of earning opportunities through yield farming with various platforms such as LidoFinance, Rocket_Pool, and Bedrock_DeFi.\n4. Market corrections and buying opportunities: Discussions about market corrections, historical data on dips, and the importance of buying during dips.\n5. Technical analysis and trading signals: References to technical analysis, trading signals, and market analysis tools.\n6. Initial Coin Offerings (ICOs) and Token Generation Events (TGEs): Mention of successful TGEs and the potential value of tokens like $ENA.\n7. Market sentiment and investor behavior: Comments on market anxiety, corrections, and the importance of staying patient for long-term gains.\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, trading strategies, market sentiment, and investment opportunities within the crypto industry.","data":[4,1,4,1,1,0,6,2,5,4,5,9,5,4,3,7,90,5,3,0,4,6,1,5,0,6,3,1,4,10,8,3,1,4,1,3,4,4,7,8,7,3,3,5,2,1,10,0,6,3,3,9,2,5,7]},{"label":"AI","topics":"ai,generative,tool,intelligence,software","description":"Based on the messages from Twitter, it is evident that the topic of discussion revolves around artificial intelligence (AI). Some key points mentioned include:\n- Jeremy Grantham from GMO stating that the AI craze is creating a 'bubble within a bubble'.\n- CEOs being overpaid in the age of AI.\n- The use of AI tools to automate tasks and improve efficiency.\n- The potential of AI to scale businesses with fewer employees.\n- Speculation about the future impact of AI on society, including leaving our bodies within 50 years.\n- The intersection of AI and Web3 technology.\n- Using AI to power businesses and personal growth.\n- The ongoing debate about the capabilities of AI, with Bill Gates cautioning against relying solely on AI for complex tasks.\n- The continuous evolution of the AI narrative in the crypto industry.\n\nOverall, the messages reflect a mix of excitement, skepticism, and curiosity surrounding the role of AI in various aspects of life and business.","data":[21,19,0,5,0,0,0,2,3,2,5,4,1,2,2,6,8,0,2,4,4,5,6,3,1,11,6,3,4,5,1,2,1,8,8,4,3,3,2,1,2,4,5,2,4,3,2,3,8,2,4,2,2,4,6]},{"label":"BTC Halving","topics":"halving,countdown,420,date,hashrate","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin halving event happening in April 2024\n2. Speculation on the price of Bitcoin post-halving\n3. The impact of halving on Bitcoin's value and scarcity\n4. Events and parties related to the Bitcoin halving\n5. Memes, art, and excitement surrounding the halving\n6. Preparation for the next wave of growth after the halving\n7. Analysis of Bitcoin's historical performance during halving events\n8. Collaborations and artwork related to the halving event\n\nOverall, the community is eagerly anticipating the Bitcoin halving event in 2024 and discussing its potential impact on the cryptocurrency market.","data":[4,4,0,4,58,7,6,2,3,2,2,6,1,0,0,6,5,3,3,1,2,4,3,25,0,1,2,4,0,2,3,2,0,3,0,2,1,2,3,8,3,0,0,1,2,3,3,0,3,0,3,2,1,2,3]},{"label":"Silk Road","topics":"government,road,coinbase,transferred,moved","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The US government selling confiscated Bitcoin, potentially marking a local bottom in the market.\n2. Millions of dollars stolen from money storage facilities and safes, with thieves making off with cash undetected.\n3. Reports of the US government moving large sums of funds seized from individuals, including Bitcoin transactions.\n4. Speculation about the US government selling off seized Bitcoin to delay the upcoming bull run.\n5. Calls for governments to adopt Bitcoin as legal tender to avoid financial instability.\n6. Concerns about the US government's financial solvency and potential consequences for the economy.\n7. Criticism of government actions involving Bitcoin and other cryptocurrencies, such as selling off scarce assets or making incompetent decisions.\n\nOverall, the discussions on Twitter reflect a mix of skepticism, speculation, and criticism regarding government involvement in the crypto industry and its potential impact on the market and economy.","data":[3,4,4,1,4,2,7,0,0,0,1,2,5,1,1,5,1,1,2,1,1,2,50,1,1,4,1,3,1,4,4,1,1,8,2,6,2,2,2,3,2,5,4,12,0,2,2,1,3,1,3,5,7,0,2]},{"label":"NFT","topics":"nft,nfts,nftnyc2024,save,collections","description":"The key topics currently discussed in the crypto industry on social media include NFTs, airdrops, exclusive NFT claims, valuable NFT collections like EtherRocks, meme coins, creating and selling NFTs on the blockchain, NFT-Fi, tax tokens, Artyfact NFT marketplace, Soulbound NFTs, NFT gamification, floor prices of NFT brands, minting Phantasma NFTs on GhostMarket.io, and locked content for NFT owners. There is also mention of specific projects like ENKI, Ethena, and SharkyFi, as well as the potential growth of certain meme coins like flies NFT. Overall, the sentiment seems to be positive and optimistic about the future of NFTs and the crypto industry.","data":[4,2,2,3,0,1,0,4,7,6,1,3,1,3,7,3,2,3,4,4,7,3,3,3,4,3,5,9,2,2,1,9,6,1,12,4,5,3,4,7,4,3,3,1,1,0,2,1,4,0,5,0,1,4,4]},{"label":"XRP","topics":"xrp,ripple,stablecoin,ledger,dollar","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Ripple Labs issuing a stablecoin to rival USDT and USDC\n2. XRP transactions being processed by FedNow and hitting milestones\n3. Speculation about Sheila Blair making money off Ripple\n4. Chainlink enabling Rtoken stables\n5. Analysis predicting potential downside for XRP to $0.5\n6. CrediBULL predicting a potential XRP rally if Bitcoin's support holds\n7. Ripple launching a US dollar stablecoin to compete with USDT and USDC\n8. The advantage of the Hong Kong dollar being pegged to the US dollar in the world of stable coins\n9. How Rtoken works on ReserveProtocol\n10. Ripple unlocking 1 billion XRP tokens worth $628.5 million\n11. Ripple's announcement of launching a USD-backed stablecoin on XRP Ledger and Ethereum\n\nThese topics indicate a lot of activity and interest in the Ripple and XRP ecosystem, stablecoins, and the broader cryptocurrency market. Investors and enthusiasts are closely following developments and announcements in these areas.","data":[3,11,1,4,0,0,8,0,2,1,1,1,1,5,3,1,0,1,2,1,2,3,2,2,5,0,9,2,12,2,1,3,1,3,2,3,2,4,10,4,3,18,1,2,2,10,2,2,4,0,4,7,0,3,3]},{"label":"WIF","topics":"wif,dogwifhat,hat,pepe,marketcap","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- The rise of meme coins like WIF, PEPE, and FLOKI, with discussions on their performance and potential future trends.\n- Speculation on the market movements of meme coins like WIF, with mentions of price analysis, predictions, and potential buy zones.\n- The impact of listings on major exchanges like Binance on meme coins like WIF, with debates on whether they are top signals for investors.\n- Comparisons between meme coins like WIF and traditional cryptocurrencies like Dogecoin, with predictions on which coins will become the face of crypto to mainstream audiences.\n- Discussions on swing trade opportunities in meme coins like MYRO, with comparisons to market cap levels of coins like WIF.\n- Analysis of the cuteness of profile pictures as a key skill for evaluating meme coins in the 2024 memecoin super cycle.\n- Speculation on the future performance of meme coins like WIF, with mentions of potential weekly reversals and new all-time highs.","data":[1,0,1,7,0,0,6,0,1,1,4,2,5,2,6,2,1,3,5,1,2,0,3,2,2,1,2,4,1,1,1,3,2,2,2,1,8,3,6,2,3,7,3,5,3,0,9,1,5,1,1,1,1,22,2]},{"label":"Airdrops","topics":"airdrop,airdrops,farming,grass,points","description":"The messages from Twitter discuss various aspects of airdrop farming in the crypto industry. Users are sharing their experiences with farming different tokens and projects, as well as providing tips and warnings for others interested in airdrop farming. The messages also mention specific projects and tokens that are currently offering airdrops, such as $DOP, Linea, Orderly, $COOKIE, $VARCH, and $GUMMY. Additionally, there are references to upcoming airdrops, tokenomics details, and opportunities for users to participate in airdrops through specific platforms like StrikeXWallet. Overall, the Twitter messages highlight the excitement and potential rewards of airdrop farming, while also emphasizing the importance of caution and managing expectations in this space.","data":[1,29,0,1,0,2,2,2,1,4,3,3,1,1,0,4,3,8,10,2,3,3,3,3,4,1,2,0,4,0,7,1,1,1,5,2,2,4,1,2,3,2,6,0,2,1,2,1,2,1,2,2,5,1,0]},{"label":"DeFi","topics":"defi,protocol,protocols,secure,tvl","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. DeFi Collective and VoxSwap revealing at KDC24\n2. Total value locked in DeFi doubling since 2023\n3. DeFi Saver integrating Safe for account abstraction\n4. Bella Protocol and Manta Network partnering to propel DeFi ecosystem\n5. Fully Homomorphic Encryption (FHE) coming to private and public execution environments\n6. Bitwise CIO excited for a product giving exposure to Ethereum DeFi\n7. Shift in attention towards memecoins and new projects within the DeFi community\n8. Dragon DeFi Initiative (D2I) fostering a strong DeFi ecosystem\n9. Importance of minimizing human intervention in DeFi economic risk management\n10. ROI calculator for maximizing DeFi earnings.","data":[3,1,0,2,0,0,1,1,0,3,3,2,2,8,8,2,3,2,5,3,1,0,5,2,0,7,6,1,2,1,0,3,1,3,3,4,1,1,8,10,7,5,5,0,1,3,0,4,3,3,2,3,1,6,3]},{"label":"Blackrock","topics":"blackrock,larry,fink,buidl,fidelity","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Corporations not yet purchasing Bitcoin ETFs\n- Tether acquiring a significant amount of BTC\n- BlackRock CEO Larry Fink's comments on Bitcoin and Ethereum ETFs\n- Diversity initiatives in the crypto industry\n- BlackRock's increasing involvement in Bitcoin ETFs\n- Net deposits for Index Coop and BlackRock\n- Retail demand for Bitcoin ETFs\n- BlackRock and Fidelity's combined holdings of BTC\n- Larry Fink's bullish stance on Bitcoin\n- IBIT becoming the fastest-growing ETF ever\n\nOverall, the discussions revolve around institutional involvement in the crypto market, the potential impact of major players like BlackRock and Fidelity, and the growing acceptance and adoption of Bitcoin and other cryptocurrencies.","data":[11,3,1,4,5,14,8,4,1,2,2,2,1,0,2,1,9,2,1,2,1,2,1,1,6,2,2,0,3,3,1,1,0,3,0,4,3,0,2,1,2,1,8,2,0,4,2,1,3,3,5,0,2,0,6]},{"label":"Tesla","topics":"tesla,tsla,vehicles,car,production","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Tesla's performance and stock price ($TSLA)\n- Elon Musk's involvement in autonomous transport and xAI company\n- Tesla's Q1 delivery numbers and challenges faced\n- Recruitment of Tesla engineers by xAI company\n- Investment opportunities in Tesla\n- Arson attack at Tesla's factory in Germany\n- Houthi attacks in the Red Sea affecting Tesla's shipping\n- Tesla's computer vision chief leaving for xAI company\n\nOverall, the discussions revolve around Tesla's performance, challenges, and future prospects, as well as Elon Musk's influence and ventures in the industry.","data":[5,2,4,4,0,1,3,2,6,5,2,3,0,3,0,2,2,0,1,2,1,0,2,4,0,1,5,4,1,1,0,6,0,3,1,3,0,1,5,3,2,5,5,3,2,1,4,18,1,3,10,2,1,2,1]},{"label":"PEPE","topics":"pepe,pepecoins,frens,rare,trader","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Rare Pepe collection and the potential for $pepe to have 1 million holders by end of year\n- The rise of memecoins and the excitement around the world's first memecoin\n- Market cap comparisons between different memecoins like PEPE and BEL\n- Price forecasts and anticipated growth for Pepe\n- Community engagement and bidding on physical tokens related to Pepe\n- Speculation on market cap potential for Pepe and other memecoins\n- Personal experiences and success stories with holding Pepe coins\n- New projects and tokens like $BOO being introduced in the market\n- The launch of memecoins on different platforms like Polygon and Bitrue\n- Limited-time trading offers and promotions for memecoins like $AIPEPE\n\nOverall, the discussions on social media reflect a mix of excitement, speculation, and community engagement surrounding memecoins and specific tokens like Pepe in the crypto industry.","data":[1,0,3,3,0,0,3,1,1,3,3,0,1,0,1,1,2,4,0,8,1,1,0,0,4,0,0,4,5,1,5,2,4,2,2,1,36,4,4,0,2,3,0,1,1,0,6,1,5,0,2,1,3,1,4]},{"label":"SHIB","topics":"shiba,inu,shib,burn,india","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Shiba Inu (SHIB) support levels and potential price surges\n- Accumulation of SHIB from exchanges and debunking of SHIB airdrop bots\n- Analyst predictions of SHIB rallying 300% and growth potential\n- SHIB burn incoming and sponsorship of Token 2049 Dubai\n- Memecoin BOBO experiencing significant price increases\n- SHIB being more than just a meme coin with potential for gains\n- Comparison of SHIB and UNI holders pivoting to Raffle Coin (RAFF)\n- Ethereum price at $3,600 and speculation on ETFs\n- Furrever Token raising $570K in presale\n- Predictions on other cryptocurrencies stealing the show in 2024 with massive gains\n\nOverall, the sentiment on Twitter seems to be positive towards Shiba Inu (SHIB) and other cryptocurrencies, with discussions focusing on potential price movements, partnerships, and future growth opportunities.","data":[1,7,0,1,0,0,0,0,3,3,3,0,5,1,3,5,2,0,1,4,0,1,2,0,2,0,45,0,1,0,0,5,2,0,2,1,1,1,5,0,1,0,1,13,1,0,1,0,1,2,0,3,0,5,1]},{"label":"DEGEN","topics":"degen,l3,chain,bridge,bridged","description":"The key topics discussed in the messages from twitter about the crypto industry include the launch of Degen Chain, a layer-3 blockchain on the Base network, which has seen a surge in transactional volumes reaching nearly $100 million in just 24 hours. $DEGEN, a memecoin, has also launched its own Layer-3 chain called Degen Chain, which uses Base as a settlement layer and $DEGEN as a gas token. There is discussion about the potential of $DEGEN as a genius coin and its role in the future of the base ecosystem. Additionally, there is a warning about rug pulls in the crypto industry and the importance of checking contract creators' addresses before investing in projects.","data":[1,3,0,1,0,0,2,2,1,2,1,2,1,44,1,1,0,1,1,1,2,0,1,1,3,1,4,1,2,2,0,2,6,0,0,0,2,2,0,3,1,0,0,1,0,3,1,4,1,4,1,1,3,7,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-13.ts b/priv/repo/major_topics_seed/data-13.ts deleted file mode 100644 index a85bf92e89..0000000000 --- a/priv/repo/major_topics_seed/data-13.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '28.03.24', - '29.03.24', - '29.03.24', - '29.03.24', - '29.03.24', - '29.03.24', - '29.03.24', - '29.03.24', - '30.03.24', - '30.03.24', - '30.03.24', - '30.03.24', - '30.03.24', - '30.03.24', - '30.03.24', - '30.03.24', - '31.03.24', - '31.03.24', - '31.03.24', - '31.03.24', - '31.03.24', - '31.03.24', - '31.03.24', - '31.03.24', - '01.04.24', - '01.04.24', - '01.04.24', - '01.04.24', - '01.04.24', - '01.04.24', - '01.04.24', - '01.04.24', - '02.04.24', - '02.04.24', - '02.04.24', - '02.04.24', - '02.04.24', - '02.04.24', - '02.04.24', - '02.04.24', - '03.04.24', - '03.04.24', - '03.04.24', - '03.04.24', - '03.04.24', - '03.04.24', - '03.04.24', - '03.04.24', - '04.04.24', - '04.04.24', - '04.04.24', - '04.04.24', - '04.04.24', - '04.04.24', - '04.04.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'fiat,bitcoin,freedom,money,satoshi', - description: - "The messages from Twitter discuss various topics related to the crypto industry, specifically focusing on Bitcoin. Some key points mentioned include the lack of Bitcoin knowledge among individuals, the importance of fixing the monetary system to fix the world, the excitement around Bitcoin mining activities, and the debate around the value of distributed ledgers and securities in comparison to Bitcoin. Additionally, there is a mention of the world's first Master's Degree in Blockchain and Digital Assets, highlighting the growing interest and demand for expertise in this field. Overall, the messages reflect a mix of enthusiasm, skepticism, and curiosity surrounding Bitcoin and its impact on the financial world.", - data: [ - 25, 10, 18, 22, 85, 66, 12, 12, 8, 10, 20, 16, 13, 15, 10, 21, 11, 11, 12, 20, 16, 15, 15, - 17, 15, 13, 12, 23, 27, 10, 14, 20, 6, 27, 15, 20, 45, 19, 19, 17, 21, 27, 18, 18, 16, 16, - 22, 17, 17, 16, 36, 13, 13, 19, 24, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Memecoins and their potential for high returns (e.g. hitting a 100x)\n- The meme economy and the rise of meme coins\n- Low market cap meme coins and which ones to invest in\n- Meme communities and contests for meme coins\n- The volatility of meme coins and their price fluctuations\n- The launch of new meme networks like Memenet\n- The risks and rewards of investing in meme coins\n- The popularity of certain meme coins like $MUMU and their recent performance\n- The strategies of investors in meme coins, such as diversifying investments across multiple meme coins\n- Events and contests related to meme coins, such as the Streaming Meme Contest and the Boba Oppa meme contest\n- The influence of influencers and communities like @Hasbiland in the meme coin market\n- The comparison between meme coins and traditional tokens in terms of performance and market value.', - data: [ - 11, 8, 15, 19, 0, 6, 9, 9, 30, 23, 15, 16, 14, 10, 4, 10, 7, 16, 23, 15, 13, 20, 20, 15, 7, - 15, 15, 16, 13, 13, 21, 57, 159, 11, 9, 16, 16, 12, 11, 21, 9, 15, 19, 12, 12, 4, 16, 23, - 21, 19, 9, 6, 17, 17, 9, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,artwork,piece', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- The value and pricing of art\n- Digital art and its significance in the 21st century\n- AI's impact on art creation and investment\n- The rarity of human art in the age of AI\n- The importance of supporting artists and their dreams\n- The lack of outlets for new artist discovery and curation\n- Crypto art and NFTs\n- AI exhibitions and techniques in art curation\n- Solo art shows and the pricing of artwork\n\nOverall, the messages reflect a diverse range of discussions surrounding art, technology, and the evolving landscape of the art industry in the digital age.", - data: [ - 3, 5, 69, 11, 0, 0, 4, 8, 9, 6, 18, 8, 5, 3, 7, 9, 3, 5, 7, 9, 4, 6, 8, 7, 7, 8, 5, 5, 5, 8, - 14, 5, 0, 6, 7, 4, 14, 14, 9, 6, 7, 7, 4, 8, 10, 8, 9, 9, 10, 4, 6, 6, 4, 5, 7, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,solanas,presale,meme', - description: - "The key topics currently discussed in the crypto community on Twitter include:\n- Solana's recent price surge, with SOL climbing from $180 to over $210\n- The popularity of meme coins on Solana, such as $HaaHaa and $TFO\n- Projects and NFTs minted on the Solana network, such as CONTROL, VECORATIVE, MASTERS OF THE METAVERSE, and DREAMSCAPE ODYSSEY\n- The growth and development of the Solana ecosystem, with users expressing interest in exploring it further\n- The comparison of Solana to other blockchain networks like Ethereum, Cosmos, and Polkadot\n- Trading signals and analysis for SOL/BTC pair on Coinbase Advanced Trade\n- Upcoming launches and presales on Solana, such as Porgy and JYDS\n- The potential for SOL to reach a $250 price target\n- The unique features and innovations of Solana, such as the Palazzo Miner and zero taxes\n- The excitement around a meme coin called $TFO on Solana, with users discussing its potential and risks\n\nOverall, the community seems to be highly engaged with Solana and its ecosystem, with a focus on price movements, new projects, and trading opportunities.", - data: [ - 2, 7, 5, 9, 0, 1, 3, 7, 9, 11, 6, 6, 2, 11, 5, 10, 3, 11, 5, 6, 6, 8, 4, 3, 12, 8, 8, 5, 7, - 7, 7, 5, 9, 7, 7, 8, 5, 8, 19, 9, 5, 5, 7, 11, 37, 6, 14, 10, 3, 6, 8, 6, 4, 4, 6, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,players', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include gaming in the Web3 space, GameFi projects, gaming accelerators, and new game releases. There is excitement around projects like Fusionist and Nine Chronicles, as well as anticipation for upcoming games like the one from $BRN. Additionally, there is discussion about the integration of blockchain technology in gaming, such as with Tezos Unity SDK. Overall, the sentiment seems positive with a focus on innovation and growth in the Web3 gaming sector.', - data: [ - 9, 6, 4, 7, 1, 0, 2, 0, 2, 12, 10, 6, 7, 1, 10, 7, 12, 12, 6, 6, 72, 10, 7, 3, 4, 9, 7, 5, - 11, 4, 4, 3, 6, 7, 15, 3, 2, 16, 3, 6, 5, 6, 3, 2, 6, 8, 6, 2, 8, 3, 7, 6, 8, 8, 2, - ], - }, - { - label: 'FED & Inflation', - topics: 'inflation,fed,cuts,rate,rates', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Inflation concerns and the impact on the value of the U.S. dollar\n- Market reactions to Jerome Powell and Janet Yellen being indicted on corruption charges\n- The Federal Reserve's next move and its impact on the economy\n- Interest rates and their effect on the market\n- Potential FOMO in the housing market due to Fed rate cuts\n- Escalating yields and commodity prices\n- Potential changes in the financial system in the future\n- The impact of the ECB Consumer Expectations Survey results on Bitcoin\n- Concerns over systemic risk management and bail-ins\n- The potential impact of Fed policy on banks like $BAC\n- The influence of the upcoming US jobs report on market views and growth\n- The potential for a new all-time high in 2024 and future market trends in stocks and cryptos\n\nOverall, the discussions on social media indicate a high level of interest and concern regarding economic indicators, central bank policies, and market trends in the crypto industry.", - data: [ - 6, 0, 3, 5, 0, 0, 6, 2, 1, 3, 2, 1, 3, 2, 7, 13, 2, 8, 5, 6, 3, 5, 1, 2, 5, 32, 9, 5, 5, 5, - 3, 37, 0, 9, 1, 2, 10, 6, 9, 9, 13, 5, 13, 3, 7, 2, 3, 4, 2, 4, 3, 2, 2, 8, 7, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,ethbtc,05,ethereums', - description: - 'Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n\n1. Ethereum (ETH) price action and analysis: Discussions about ETH price movements, resistance levels, support levels, and potential trading strategies.\n2. Comparison between Ethereum (ETH) and Bitcoin (BTC): Comparisons of performance, gains, and market behavior between ETH and BTC.\n3. Yield farming and staking opportunities: Mention of earning opportunities through yield farming with various platforms such as LidoFinance, Rocket_Pool, and Bedrock_DeFi.\n4. Market corrections and buying opportunities: Discussions about market corrections, historical data on dips, and the importance of buying during dips.\n5. Technical analysis and trading signals: References to technical analysis, trading signals, and market analysis tools.\n6. Initial Coin Offerings (ICOs) and Token Generation Events (TGEs): Mention of successful TGEs and the potential value of tokens like $ENA.\n7. Market sentiment and investor behavior: Comments on market anxiety, corrections, and the importance of staying patient for long-term gains.\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, trading strategies, market sentiment, and investment opportunities within the crypto industry.', - data: [ - 4, 1, 4, 1, 1, 0, 6, 2, 5, 4, 5, 9, 5, 4, 3, 7, 90, 5, 3, 0, 4, 6, 1, 5, 0, 6, 3, 1, 4, 10, - 8, 3, 1, 4, 1, 3, 4, 4, 7, 8, 7, 3, 3, 5, 2, 1, 10, 0, 6, 3, 3, 9, 2, 5, 7, - ], - }, - { - label: 'AI', - topics: 'ai,generative,tool,intelligence,software', - description: - "Based on the messages from Twitter, it is evident that the topic of discussion revolves around artificial intelligence (AI). Some key points mentioned include:\n- Jeremy Grantham from GMO stating that the AI craze is creating a 'bubble within a bubble'.\n- CEOs being overpaid in the age of AI.\n- The use of AI tools to automate tasks and improve efficiency.\n- The potential of AI to scale businesses with fewer employees.\n- Speculation about the future impact of AI on society, including leaving our bodies within 50 years.\n- The intersection of AI and Web3 technology.\n- Using AI to power businesses and personal growth.\n- The ongoing debate about the capabilities of AI, with Bill Gates cautioning against relying solely on AI for complex tasks.\n- The continuous evolution of the AI narrative in the crypto industry.\n\nOverall, the messages reflect a mix of excitement, skepticism, and curiosity surrounding the role of AI in various aspects of life and business.", - data: [ - 21, 19, 0, 5, 0, 0, 0, 2, 3, 2, 5, 4, 1, 2, 2, 6, 8, 0, 2, 4, 4, 5, 6, 3, 1, 11, 6, 3, 4, 5, - 1, 2, 1, 8, 8, 4, 3, 3, 2, 1, 2, 4, 5, 2, 4, 3, 2, 3, 8, 2, 4, 2, 2, 4, 6, - ], - }, - { - label: 'BTC Halving', - topics: 'halving,countdown,420,date,hashrate', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin halving event happening in April 2024\n2. Speculation on the price of Bitcoin post-halving\n3. The impact of halving on Bitcoin's value and scarcity\n4. Events and parties related to the Bitcoin halving\n5. Memes, art, and excitement surrounding the halving\n6. Preparation for the next wave of growth after the halving\n7. Analysis of Bitcoin's historical performance during halving events\n8. Collaborations and artwork related to the halving event\n\nOverall, the community is eagerly anticipating the Bitcoin halving event in 2024 and discussing its potential impact on the cryptocurrency market.", - data: [ - 4, 4, 0, 4, 58, 7, 6, 2, 3, 2, 2, 6, 1, 0, 0, 6, 5, 3, 3, 1, 2, 4, 3, 25, 0, 1, 2, 4, 0, 2, - 3, 2, 0, 3, 0, 2, 1, 2, 3, 8, 3, 0, 0, 1, 2, 3, 3, 0, 3, 0, 3, 2, 1, 2, 3, - ], - }, - { - label: 'Silk Road', - topics: 'government,road,coinbase,transferred,moved', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The US government selling confiscated Bitcoin, potentially marking a local bottom in the market.\n2. Millions of dollars stolen from money storage facilities and safes, with thieves making off with cash undetected.\n3. Reports of the US government moving large sums of funds seized from individuals, including Bitcoin transactions.\n4. Speculation about the US government selling off seized Bitcoin to delay the upcoming bull run.\n5. Calls for governments to adopt Bitcoin as legal tender to avoid financial instability.\n6. Concerns about the US government's financial solvency and potential consequences for the economy.\n7. Criticism of government actions involving Bitcoin and other cryptocurrencies, such as selling off scarce assets or making incompetent decisions.\n\nOverall, the discussions on Twitter reflect a mix of skepticism, speculation, and criticism regarding government involvement in the crypto industry and its potential impact on the market and economy.", - data: [ - 3, 4, 4, 1, 4, 2, 7, 0, 0, 0, 1, 2, 5, 1, 1, 5, 1, 1, 2, 1, 1, 2, 50, 1, 1, 4, 1, 3, 1, 4, - 4, 1, 1, 8, 2, 6, 2, 2, 2, 3, 2, 5, 4, 12, 0, 2, 2, 1, 3, 1, 3, 5, 7, 0, 2, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,nftnyc2024,save,collections', - description: - 'The key topics currently discussed in the crypto industry on social media include NFTs, airdrops, exclusive NFT claims, valuable NFT collections like EtherRocks, meme coins, creating and selling NFTs on the blockchain, NFT-Fi, tax tokens, Artyfact NFT marketplace, Soulbound NFTs, NFT gamification, floor prices of NFT brands, minting Phantasma NFTs on GhostMarket.io, and locked content for NFT owners. There is also mention of specific projects like ENKI, Ethena, and SharkyFi, as well as the potential growth of certain meme coins like flies NFT. Overall, the sentiment seems to be positive and optimistic about the future of NFTs and the crypto industry.', - data: [ - 4, 2, 2, 3, 0, 1, 0, 4, 7, 6, 1, 3, 1, 3, 7, 3, 2, 3, 4, 4, 7, 3, 3, 3, 4, 3, 5, 9, 2, 2, 1, - 9, 6, 1, 12, 4, 5, 3, 4, 7, 4, 3, 3, 1, 1, 0, 2, 1, 4, 0, 5, 0, 1, 4, 4, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,stablecoin,ledger,dollar', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Ripple Labs issuing a stablecoin to rival USDT and USDC\n2. XRP transactions being processed by FedNow and hitting milestones\n3. Speculation about Sheila Blair making money off Ripple\n4. Chainlink enabling Rtoken stables\n5. Analysis predicting potential downside for XRP to $0.5\n6. CrediBULL predicting a potential XRP rally if Bitcoin's support holds\n7. Ripple launching a US dollar stablecoin to compete with USDT and USDC\n8. The advantage of the Hong Kong dollar being pegged to the US dollar in the world of stable coins\n9. How Rtoken works on ReserveProtocol\n10. Ripple unlocking 1 billion XRP tokens worth $628.5 million\n11. Ripple's announcement of launching a USD-backed stablecoin on XRP Ledger and Ethereum\n\nThese topics indicate a lot of activity and interest in the Ripple and XRP ecosystem, stablecoins, and the broader cryptocurrency market. Investors and enthusiasts are closely following developments and announcements in these areas.", - data: [ - 3, 11, 1, 4, 0, 0, 8, 0, 2, 1, 1, 1, 1, 5, 3, 1, 0, 1, 2, 1, 2, 3, 2, 2, 5, 0, 9, 2, 12, 2, - 1, 3, 1, 3, 2, 3, 2, 4, 10, 4, 3, 18, 1, 2, 2, 10, 2, 2, 4, 0, 4, 7, 0, 3, 3, - ], - }, - { - label: 'WIF', - topics: 'wif,dogwifhat,hat,pepe,marketcap', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- The rise of meme coins like WIF, PEPE, and FLOKI, with discussions on their performance and potential future trends.\n- Speculation on the market movements of meme coins like WIF, with mentions of price analysis, predictions, and potential buy zones.\n- The impact of listings on major exchanges like Binance on meme coins like WIF, with debates on whether they are top signals for investors.\n- Comparisons between meme coins like WIF and traditional cryptocurrencies like Dogecoin, with predictions on which coins will become the face of crypto to mainstream audiences.\n- Discussions on swing trade opportunities in meme coins like MYRO, with comparisons to market cap levels of coins like WIF.\n- Analysis of the cuteness of profile pictures as a key skill for evaluating meme coins in the 2024 memecoin super cycle.\n- Speculation on the future performance of meme coins like WIF, with mentions of potential weekly reversals and new all-time highs.', - data: [ - 1, 0, 1, 7, 0, 0, 6, 0, 1, 1, 4, 2, 5, 2, 6, 2, 1, 3, 5, 1, 2, 0, 3, 2, 2, 1, 2, 4, 1, 1, 1, - 3, 2, 2, 2, 1, 8, 3, 6, 2, 3, 7, 3, 5, 3, 0, 9, 1, 5, 1, 1, 1, 1, 22, 2, - ], - }, - { - label: 'Airdrops', - topics: 'airdrop,airdrops,farming,grass,points', - description: - 'The messages from Twitter discuss various aspects of airdrop farming in the crypto industry. Users are sharing their experiences with farming different tokens and projects, as well as providing tips and warnings for others interested in airdrop farming. The messages also mention specific projects and tokens that are currently offering airdrops, such as $DOP, Linea, Orderly, $COOKIE, $VARCH, and $GUMMY. Additionally, there are references to upcoming airdrops, tokenomics details, and opportunities for users to participate in airdrops through specific platforms like StrikeXWallet. Overall, the Twitter messages highlight the excitement and potential rewards of airdrop farming, while also emphasizing the importance of caution and managing expectations in this space.', - data: [ - 1, 29, 0, 1, 0, 2, 2, 2, 1, 4, 3, 3, 1, 1, 0, 4, 3, 8, 10, 2, 3, 3, 3, 3, 4, 1, 2, 0, 4, 0, - 7, 1, 1, 1, 5, 2, 2, 4, 1, 2, 3, 2, 6, 0, 2, 1, 2, 1, 2, 1, 2, 2, 5, 1, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocol,protocols,secure,tvl', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. DeFi Collective and VoxSwap revealing at KDC24\n2. Total value locked in DeFi doubling since 2023\n3. DeFi Saver integrating Safe for account abstraction\n4. Bella Protocol and Manta Network partnering to propel DeFi ecosystem\n5. Fully Homomorphic Encryption (FHE) coming to private and public execution environments\n6. Bitwise CIO excited for a product giving exposure to Ethereum DeFi\n7. Shift in attention towards memecoins and new projects within the DeFi community\n8. Dragon DeFi Initiative (D2I) fostering a strong DeFi ecosystem\n9. Importance of minimizing human intervention in DeFi economic risk management\n10. ROI calculator for maximizing DeFi earnings.', - data: [ - 3, 1, 0, 2, 0, 0, 1, 1, 0, 3, 3, 2, 2, 8, 8, 2, 3, 2, 5, 3, 1, 0, 5, 2, 0, 7, 6, 1, 2, 1, 0, - 3, 1, 3, 3, 4, 1, 1, 8, 10, 7, 5, 5, 0, 1, 3, 0, 4, 3, 3, 2, 3, 1, 6, 3, - ], - }, - { - label: 'Blackrock', - topics: 'blackrock,larry,fink,buidl,fidelity', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Corporations not yet purchasing Bitcoin ETFs\n- Tether acquiring a significant amount of BTC\n- BlackRock CEO Larry Fink's comments on Bitcoin and Ethereum ETFs\n- Diversity initiatives in the crypto industry\n- BlackRock's increasing involvement in Bitcoin ETFs\n- Net deposits for Index Coop and BlackRock\n- Retail demand for Bitcoin ETFs\n- BlackRock and Fidelity's combined holdings of BTC\n- Larry Fink's bullish stance on Bitcoin\n- IBIT becoming the fastest-growing ETF ever\n\nOverall, the discussions revolve around institutional involvement in the crypto market, the potential impact of major players like BlackRock and Fidelity, and the growing acceptance and adoption of Bitcoin and other cryptocurrencies.", - data: [ - 11, 3, 1, 4, 5, 14, 8, 4, 1, 2, 2, 2, 1, 0, 2, 1, 9, 2, 1, 2, 1, 2, 1, 1, 6, 2, 2, 0, 3, 3, - 1, 1, 0, 3, 0, 4, 3, 0, 2, 1, 2, 1, 8, 2, 0, 4, 2, 1, 3, 3, 5, 0, 2, 0, 6, - ], - }, - { - label: 'Tesla', - topics: 'tesla,tsla,vehicles,car,production', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Tesla's performance and stock price ($TSLA)\n- Elon Musk's involvement in autonomous transport and xAI company\n- Tesla's Q1 delivery numbers and challenges faced\n- Recruitment of Tesla engineers by xAI company\n- Investment opportunities in Tesla\n- Arson attack at Tesla's factory in Germany\n- Houthi attacks in the Red Sea affecting Tesla's shipping\n- Tesla's computer vision chief leaving for xAI company\n\nOverall, the discussions revolve around Tesla's performance, challenges, and future prospects, as well as Elon Musk's influence and ventures in the industry.", - data: [ - 5, 2, 4, 4, 0, 1, 3, 2, 6, 5, 2, 3, 0, 3, 0, 2, 2, 0, 1, 2, 1, 0, 2, 4, 0, 1, 5, 4, 1, 1, 0, - 6, 0, 3, 1, 3, 0, 1, 5, 3, 2, 5, 5, 3, 2, 1, 4, 18, 1, 3, 10, 2, 1, 2, 1, - ], - }, - { - label: 'PEPE', - topics: 'pepe,pepecoins,frens,rare,trader', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Rare Pepe collection and the potential for $pepe to have 1 million holders by end of year\n- The rise of memecoins and the excitement around the world's first memecoin\n- Market cap comparisons between different memecoins like PEPE and BEL\n- Price forecasts and anticipated growth for Pepe\n- Community engagement and bidding on physical tokens related to Pepe\n- Speculation on market cap potential for Pepe and other memecoins\n- Personal experiences and success stories with holding Pepe coins\n- New projects and tokens like $BOO being introduced in the market\n- The launch of memecoins on different platforms like Polygon and Bitrue\n- Limited-time trading offers and promotions for memecoins like $AIPEPE\n\nOverall, the discussions on social media reflect a mix of excitement, speculation, and community engagement surrounding memecoins and specific tokens like Pepe in the crypto industry.", - data: [ - 1, 0, 3, 3, 0, 0, 3, 1, 1, 3, 3, 0, 1, 0, 1, 1, 2, 4, 0, 8, 1, 1, 0, 0, 4, 0, 0, 4, 5, 1, 5, - 2, 4, 2, 2, 1, 36, 4, 4, 0, 2, 3, 0, 1, 1, 0, 6, 1, 5, 0, 2, 1, 3, 1, 4, - ], - }, - { - label: 'SHIB', - topics: 'shiba,inu,shib,burn,india', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Shiba Inu (SHIB) support levels and potential price surges\n- Accumulation of SHIB from exchanges and debunking of SHIB airdrop bots\n- Analyst predictions of SHIB rallying 300% and growth potential\n- SHIB burn incoming and sponsorship of Token 2049 Dubai\n- Memecoin BOBO experiencing significant price increases\n- SHIB being more than just a meme coin with potential for gains\n- Comparison of SHIB and UNI holders pivoting to Raffle Coin (RAFF)\n- Ethereum price at $3,600 and speculation on ETFs\n- Furrever Token raising $570K in presale\n- Predictions on other cryptocurrencies stealing the show in 2024 with massive gains\n\nOverall, the sentiment on Twitter seems to be positive towards Shiba Inu (SHIB) and other cryptocurrencies, with discussions focusing on potential price movements, partnerships, and future growth opportunities.', - data: [ - 1, 7, 0, 1, 0, 0, 0, 0, 3, 3, 3, 0, 5, 1, 3, 5, 2, 0, 1, 4, 0, 1, 2, 0, 2, 0, 45, 0, 1, 0, - 0, 5, 2, 0, 2, 1, 1, 1, 5, 0, 1, 0, 1, 13, 1, 0, 1, 0, 1, 2, 0, 3, 0, 5, 1, - ], - }, - { - label: 'DEGEN', - topics: 'degen,l3,chain,bridge,bridged', - description: - "The key topics discussed in the messages from twitter about the crypto industry include the launch of Degen Chain, a layer-3 blockchain on the Base network, which has seen a surge in transactional volumes reaching nearly $100 million in just 24 hours. $DEGEN, a memecoin, has also launched its own Layer-3 chain called Degen Chain, which uses Base as a settlement layer and $DEGEN as a gas token. There is discussion about the potential of $DEGEN as a genius coin and its role in the future of the base ecosystem. Additionally, there is a warning about rug pulls in the crypto industry and the importance of checking contract creators' addresses before investing in projects.", - data: [ - 1, 3, 0, 1, 0, 0, 2, 2, 1, 2, 1, 2, 1, 44, 1, 1, 0, 1, 1, 1, 2, 0, 1, 1, 3, 1, 4, 1, 2, 2, - 0, 2, 6, 0, 0, 0, 2, 2, 0, 3, 1, 0, 0, 1, 0, 3, 1, 4, 1, 4, 1, 1, 3, 7, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-14.json b/priv/repo/major_topics_seed/data-14.json deleted file mode 100644 index cf03315819..0000000000 --- a/priv/repo/major_topics_seed/data-14.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["04.04.24","05.04.24","05.04.24","05.04.24","05.04.24","05.04.24","05.04.24","05.04.24","06.04.24","06.04.24","06.04.24","06.04.24","06.04.24","06.04.24","06.04.24","06.04.24","07.04.24","07.04.24","07.04.24","07.04.24","07.04.24","07.04.24","07.04.24","07.04.24","08.04.24","08.04.24","08.04.24","08.04.24","08.04.24","08.04.24","08.04.24","08.04.24","09.04.24","09.04.24","09.04.24","09.04.24","09.04.24","09.04.24","09.04.24","09.04.24","10.04.24","10.04.24","10.04.24","10.04.24","10.04.24","10.04.24","10.04.24","10.04.24","11.04.24","11.04.24","11.04.24","11.04.24","11.04.24","11.04.24","11.04.24"],"datasets":[{"label":"BTC Price","topics":"btc,price,breakout,bitcoin,range","description":"The key topics currently discussed in the crypto industry on social media accounts include:\n1. Bitcoin reaching a new all-time high (ATH) and potentially breaking $70,000\n2. Altcoins experiencing surges and potential breakouts\n3. Market volatility and potential price movements for Bitcoin\n4. Analysis of Bitcoin's performance compared to other asset classes\n5. Speculation on future price targets for Bitcoin, including reaching $175k and $540k\n6. Technical analysis and chart patterns for Bitcoin\n7. Comparison between different cryptocurrencies like Wrapped Bitcoin (WBTC) and Incent (INC) on Pulsechain\n8. Price action analysis and potential targets for Bitcoin on FTX exchange\n9. Discussion on funding rates and market sentiment around Bitcoin\n10. Speculation on market trends and potential outcomes for Bitcoin and other cryptocurrencies.","data":[16,28,15,18,117,139,21,98,6,20,22,25,33,9,9,19,10,21,20,17,14,28,8,14,38,12,22,15,10,10,29,19,5,17,22,19,22,27,43,30,31,35,14,28,14,17,25,22,18,24,5,33,6,16,14]},{"label":"BTC & Fiat","topics":"bitcoin,fiat,money,freedom,people","description":"The key topics discussed in the messages from twitter are:\n1. #Bitcoin - The importance of holding Bitcoin, the concept beginners should learn, comparison of Fiat vs Bitcoin, engaging leaders to make the Bitcoin world possible, and the criticism of Bitcoin by those with little knowledge.\n2. #BitcoinETF - Mentioned in relation to betting on Bitcoin.\n3. @21Futures - Mentioned in relation to a volume 2 of a fiction book about Bitcoin.\n4. @wasabiwallet - Mentioned in relation to prize money for a Bitcoin-related event.\n5. SatoshiActFund - Mentioned in relation to engaging leaders to create a better world with Bitcoin.\n6. BTC - Mentioned in relation to the criticism of Bitcoin by some individuals.\n7. Shitcoins - Mentioned in relation to fraudulent media operations happening at the same time as Bitcoin.\n8. CryptoCraeg - Mentioned as a builder in the crypto industry.\n9. Maxis - Mentioned in relation to the belief that Bitcoin doesn't need to be more than a store of value.\n10. Pedro McDonald, Zucco, and Udi - Mentioned in relation to interviewing different cryptocurrencies.\n11. Satoshi forum posts and emails - Mentioned in relation to understanding the original vision of Bitcoin.","data":[22,7,9,20,69,73,10,14,6,13,25,17,14,16,13,13,12,11,26,17,11,14,16,19,14,13,11,17,17,20,11,21,14,23,8,14,22,15,11,13,14,8,20,15,19,19,13,19,16,8,31,13,19,12,24]},{"label":"Solana","topics":"solana,sol,transaction,network,transactions","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana: There are discussions about Solana's performance, with mentions of its transaction failure rate, network glitches, and the need for better incentives and fee markets. Some users express concerns about Solana's beta status and advise caution when investing in SOL tokens.\n2. Memecoins: Memecoins on the Solana blockchain, such as MEW and BOME, are gaining attention, with significant market cap increases and high returns for early investors.\n3. FrogSwap: FrogSwap, the second biggest DEX on the DEGEN chain, is highlighted for its early success and undervalued token.\n4. Raydium: Raydium is praised for being the first AMM on Solana to reach a total trading volume of over 100 billion dollars, signaling the growth of DeFi on the Solana network.\n5. Book of Memes (BOME) and Book of Meme (BOBA): These tokens on the Solana network are compared based on their market caps and potential for growth, with users discussing their investment strategies.\n6. LBank: LBank's successful completion of the Slerfsol refund and the refund of SOL tokens to pre-sale users are mentioned as positive developments in the crypto community.\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and strategic investment decisions within the crypto industry, particularly focusing on the Solana ecosystem and various tokens and projects within it.","data":[11,10,3,9,0,4,18,12,18,16,9,20,15,16,12,10,22,38,19,18,11,13,12,8,11,8,14,5,15,14,7,13,14,21,8,13,8,20,18,10,10,18,16,17,33,12,20,7,8,20,19,18,9,15,8]},{"label":"AI","topics":"ai,models,chip,google,model","description":"The messages from Twitter discuss a variety of topics related to AI, including the potential for AI to save basis points at jobs sensitive to automation, the humor of llama.cpp becoming sentient and hearing what Winamp has been saying, the release of AI pin by Humane, the frustration of AI failing to provide a proper solution for code, and the potential for AI to improve text-to-speech technology. Additionally, there is mention of the Construction Union seeking to reduce accidents involving babies crawling on steel I-beams, the importance of ensuring search engine results are not scams, and the potential for hackers to manipulate AI chatbots. The overall theme of the messages seems to be the evolving capabilities and challenges of AI technology.","data":[23,62,22,3,0,0,3,9,2,11,11,18,9,6,9,8,4,8,8,7,14,5,7,12,4,3,19,12,16,6,6,2,7,4,15,10,2,5,12,8,8,6,13,9,5,6,11,9,3,1,7,15,5,2,11]},{"label":"Art","topics":"art,artists,artist,piece,collection","description":"The key topics currently discussed in the crypto industry on social media include the integration of digital art in art institutions' permanent collections, the use of blockchain technology by artists, the importance of building adoption in the digital art world, and the value of art collections. There is also a mention of using $Bonsai as a collect currency on Lens for art sales. Additionally, there is excitement about showcasing and treasuring art collections, regardless of their current monetary value. The discussion also touches on the significance of separating the artist from the art and the potential impact of an artist's personality on art sales. Overall, the crypto community seems to be enthusiastic about the intersection of art and technology, particularly in the realm of digital art.","data":[14,9,63,6,0,0,6,3,2,2,6,6,14,3,7,3,2,8,9,9,13,9,10,5,3,8,8,8,7,4,15,3,8,3,7,9,12,7,8,5,5,3,10,6,6,4,8,5,7,2,5,3,8,7,9]},{"label":"Memecoins","topics":"meme,memecoin,coins,memes,coin","description":"The messages from Twitter are discussing meme coins in the crypto industry. Some key topics mentioned include:\n- Investing in meme coins\n- Potential gains from meme coins\n- Importance of the meme itself in meme coins\n- Different meme coins being discussed and trending\n- Base related tokens and their potential gains\n- Original meme coins with unique features\n\nOverall, the discussion revolves around the popularity and potential profitability of meme coins in the current market environment.","data":[3,1,1,1,1,1,2,3,21,1,6,8,8,2,5,2,2,5,8,3,5,8,15,3,8,6,6,4,10,13,8,31,69,7,5,3,7,4,9,7,6,6,6,6,3,5,8,6,8,2,13,5,6,10,3]},{"label":"ETH","topics":"ethereum,eth,ethereums,4000,price","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- $ETH (Ethereum) going up and being a good long-term investment\n- EIP-3074 going live with the next Ethereum network upgrade\n- $Dyl (possibly a new cryptocurrency) being mentioned\n- Ethereum and Polygon dominating in Q1 with EVM user growth\n- $ETC (Ethereum Classic) being one of the most accepted cryptocurrencies\n- FUD (fear, uncertainty, doubt) surrounding Ethereum and L2's\n- The Ethereum ecosystem being strong and a good value bet\n- The number of transactions on ETH layer 2s increasing significantly\n- XFlows on Wanchain supporting WETH.e on Avalanche\n\nOverall, the sentiment towards Ethereum and related cryptocurrencies seems positive, with discussions focusing on investment opportunities, network upgrades, and transaction volume growth.","data":[5,4,4,6,1,1,4,2,5,5,9,3,3,3,2,2,88,5,6,3,4,3,5,3,11,7,4,0,5,4,6,4,2,6,6,8,3,6,8,8,6,9,2,3,9,2,7,6,6,1,4,11,4,3,3]},{"label":"SEC vs Uniswap","topics":"uniswap,sec,notice,uni,securities","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The SEC issuing a Wells notice to Uniswap, indicating potential regulatory enforcement actions against the decentralized exchange.\n2. Speculation and concerns about the SEC cracking down on DeFi projects like Uniswap.\n3. Allegations of key inflation data being leaked to BlackRock and JP Morgan by the Bureau of Labor Statistics.\n4. Uniswap's native token $UNI dropping by 16.9% following news of the SEC's actions.\n5. The SEC filing a lawsuit against Uniswap for using Pyth oracles instead of Chainlink, leading to MEV front running issues.\n6. Uniswap surpassing $2 trillion in trading volume since its inception in 2018.\n7. The Second Circuit Court of Appeals refusing to reconsider a decision regarding SEC disgorgement in cases where buyers suffer no financial loss.\n8. Speculation about the SEC wanting a piece of the trading volume pie on Uniswap.\n9. Concerns about staking being outlawed in the US due to regulatory pressure.\n10. Morgan Stanley's wealth arm being probed by regulatory authorities.","data":[3,2,4,6,0,0,7,10,3,1,5,2,4,5,0,4,0,5,5,8,3,10,4,8,4,2,9,6,7,4,6,5,1,9,1,4,1,3,9,4,12,3,4,13,2,9,10,7,3,4,73,3,2,4,5]},{"label":"BTC Halving","topics":"halving,bitcoinhalving,420,bitcoin,impact","description":"The messages from Twitter are discussing the upcoming Bitcoin halving event and its potential impact on the cryptocurrency market. Some key topics mentioned include:\n- Speculation on how the halving will affect Bitcoin price and mining\n- The history of Bitcoin halvings and potential differences this time\n- Expert perspectives and insights for investors\n- Potential selling pressures on crypto as USD liquidity tightens\n- Predictions for Bitcoin price volatility post-halving\n- Trading competitions and opportunities related to the halving event\n\nOverall, the Twitter messages reflect a mix of excitement, speculation, and caution surrounding the Bitcoin halving event and its implications for the crypto industry.","data":[2,5,2,1,62,7,2,2,10,0,4,1,5,1,4,2,3,3,2,5,1,0,1,42,7,0,3,2,2,1,1,4,1,2,2,2,0,10,0,12,2,0,1,0,5,0,3,3,1,2,3,5,3,6,5]},{"label":"DOGE","topics":"doge,dogecoin,level,prediction,hit","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Dogecoin hitting $1: There is speculation and excitement around whether Dogecoin will reach $1, with mentions of price rebounds and whales buying large amounts of DOGE.\n\n2. Dogecoin's price movement: There are discussions about Dogecoin's price stalling at $0.2, potential sell-offs, and bullish signs pointing towards a $0.4 target.\n\n3. Dogecoin's performance compared to other altcoins: There are predictions that Dogecoin will outperform other top altcoins, including ICP, despite market volatility.\n\n4. Dogecoin's popularity and potential: There is interest in Dogecoin as a meme-based cryptocurrency, with mentions of its significant investor attention and the story behind its rise as a sensation.\n\n5. Investment advice and warnings: There are warnings about the hype surrounding Dogecoin and the need for profits to flow elsewhere, along with mentions of staking opportunities with TaraCoinx and _mxdoge.\n\nOverall, the discussions on Twitter indicate a mix of excitement, speculation, and caution surrounding Dogecoin and its potential future performance in the crypto industry.","data":[2,1,0,1,0,0,2,3,2,0,3,1,4,2,124,2,3,0,2,0,1,4,1,2,4,4,3,1,4,0,6,3,0,5,3,2,1,4,4,5,7,4,3,3,1,3,2,1,3,2,3,3,4,0,1]},{"label":"Hong Kong BTC ETF","topics":"hong,kong,china,chinese,etfs","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the approval of Bitcoin ETFs in Hong Kong by Chinese institutions, specifically the launch of spot Bitcoin ETFs. Additionally, there is a focus on the introduction of banking solutions for stablecoin issuers by ZA Bank in Hong Kong, marking a milestone in the industry's evolution. There is also mention of Korean approval of Bitcoin ETFs if pro-Bitcoin opposition wins the election, as well as Chinese investment firms like Harvest Fund and Southern Fund seeking approval for Bitcoin ETFs in Hong Kong. Overall, the industry is buzzing with news about the expansion and adoption of cryptocurrencies and blockchain technology in various financial sectors.","data":[1,2,11,7,3,2,12,6,2,1,10,3,3,4,2,1,5,8,6,4,7,7,6,4,2,5,4,2,10,2,4,4,0,4,2,1,2,4,1,2,11,4,6,9,1,4,6,2,1,2,1,1,3,3,2]},{"label":"BTC ETFs","topics":"gbtc,net,inflows,etfs,etf","description":"The key topics currently being discussed in the crypto industry on social media accounts include:\n1. Insane correlation between spot Bitcoin ETF flows and price\n2. Fidelity's FBTC spot Bitcoin ETF surpassing 150,000 BTC within three months\n3. BlackRock IBIT ETF nearing $15 billion net milestone\n4. Bitcoin ETFs experiencing a surprising $200M outflow\n5. Daily net inflows into Bitcoin ETFs\n6. BlackRock mining Bitcoin Spot ETF being profitable\n7. Historic moment for GBTC ETF with the 'Least Worst Dumpage Ever'\n8. Net inflows for Bitcoin ETFs despite GBTC selling increasing\n9. Bitcoin spot ETFs seeing a total net outflow on April 9\n\nThese topics indicate a mix of positive and negative trends in the crypto industry, with fluctuations in ETF flows, milestone achievements, profitability of mining ETFs, and historic moments in ETF performance. Investors and analysts are closely monitoring these developments to make informed decisions in the market.","data":[6,2,1,1,22,3,7,2,0,0,0,2,3,2,0,2,18,1,0,4,12,2,2,1,6,10,8,0,1,0,6,1,3,7,2,5,0,0,0,0,3,0,3,6,16,19,2,2,0,5,1,3,1,5,6]},{"label":"GameFi","topics":"gaming,game,games,web3,gamefi","description":"The key topics currently being discussed in the crypto industry on social media include GameFi, GamerHash, GamerCoin, AI, Space Trading Roguelike Indie RPG Game, Lords of Light, Mobile gaming, web3 gaming, GunzillaGames, GUNbyGUNZ Blockchain, opensea, Topup Game, Esports events, Vulcan game, on-chain gaming, decentralized model for game logic, state and asset ownership, playSHRAPNEL, AVAX blockchain, symbiogenesisPR, NFTs, play_ember, ParallelTCG, visitsugartown, Viction Horizon Startup Hackathon, Townstory Galaxy, social economy, multi-chain, and NFTs. These topics are generating a lot of buzz and interest among users in the crypto community.","data":[3,0,0,2,0,0,4,2,2,1,0,0,3,1,2,1,4,2,3,2,27,7,9,2,5,3,7,2,2,2,4,0,4,4,5,3,6,7,2,4,3,1,2,1,4,4,2,0,0,2,5,5,5,2,1]},{"label":"RUNE","topics":"runes,runestone,rune,ordinals,floor","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Runes and Runestones: There is a lot of excitement and bullish sentiment surrounding Runes and Runestones, with users discussing their purchases, trading prices, and potential for growth. Some are skeptical due to past disappointments with similar projects, while others are optimistic about the future of Runes.\n- Bitcoin ecosystem: Users are discussing the impact of Runes on the Bitcoin ecosystem, with mentions of airdrops, memecoins, and the upcoming Bitcoin Runes Protocol debut.\n- Solana and Puppets ecosystem: There are mentions of the dominance of the Puppets ecosystem within the Runes community, as well as discussions about other projects on Solana and BRC20s.\n- Market volatility: Users are acknowledging the volatility of young tokens like Runestones and emphasizing the importance of holding onto investments for potential gains.\n- Investment opportunities: Some users are discussing investment opportunities such as $RB as a solid play for those bullish on Runes, and the importance of bridges in the crypto infrastructure.\n\nOverall, the sentiment seems to be a mix of excitement, skepticism, and strategic thinking about the future of Runes and related projects within the crypto industry.","data":[2,3,2,4,1,2,0,5,6,0,4,3,1,2,3,1,1,2,2,3,3,0,1,0,11,1,5,3,2,2,2,2,1,0,4,4,5,3,3,6,1,39,1,3,1,3,1,0,0,2,2,0,1,0,2]},{"label":"BLOCK","topics":"block,snapshot,engage,player,farmers","description":"The key topics currently being discussed in the crypto industry on Twitter include the launch and trading of the $BLOCK token, partnerships and developments made by #BlockGames, airdrops and farming opportunities related to $BLOCK, engagement and excitement surrounding $BLOCK, as well as updates on DF rewards claims and the $ASI merger vote. There is also mention of other tokens such as $PARAM, $TRIP, $BUBBLE, $BEYOND, $MOJO, $COOKIE, and $SOMO. Additionally, caution is advised against clicking on links shared outside of official channels for $BLOCK.","data":[5,2,3,2,0,1,66,1,0,1,0,1,0,0,0,0,1,1,10,1,4,1,1,3,2,5,1,3,4,2,1,1,0,4,2,3,4,1,2,1,0,1,2,1,1,3,1,1,4,0,0,1,1,1,2]},{"label":"Tesla","topics":"tesla,elon,reuters,stock,musk","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n\n1. Tesla's decision to cancel its low-cost car plans amid fierce competition in China.\n2. Cathie Wood's $2,000 price target for Tesla and her active portfolio management.\n3. Tesla's plan to fend off cheaper competition from China with a $25,000 electric car.\n4. The impact of Elon Musk's selling of Bitcoin on Tesla's financial performance.\n5. The comparison between Tesla and MicroStrategy's adoption of the Bitcoin strategy.\n6. The potential benefits of Tesla adopting a more educational approach in customer outreach.\n7. The affordability of Tesla Model 3 compared to other car lease options.\n8. The potential implications of Tesla's production line overhaul on its future success.","data":[4,3,4,0,0,0,3,7,4,0,4,1,2,2,1,3,3,3,0,1,4,3,0,2,0,4,8,3,1,3,1,2,2,2,1,3,2,2,1,0,2,8,8,3,0,2,0,11,4,3,18,2,3,2,4]},{"label":"Chainlink","topics":"crosschain,chainlink,tracking,blockchain,bridge","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include collaborations between Chainlink and Aave, the launch of new blockchain applications and platforms like Transporter and Divi Updates, the potential impact of blockchain on digital securities management for stock exchanges, the Chainlink Block Magic Hackathon, the importance of ZK-proofing and off-chain computations for Keeper networks, the launch of the Komodo Wallet browser extension, the utility of aelf blockchain for generating various utilities with a single contract, and the role of Chainlink in providing verifiable and immutable data for banks and institutions. Additionally, there is discussion about Blocktrade as a European VASP and gamified platform for digital assets, gaming, and commerce, with the opportunity for investors to purchase shares via CONDA Capital Market.","data":[1,3,1,2,0,0,5,2,1,22,2,5,2,1,3,3,0,6,0,2,1,0,1,2,0,3,1,2,4,1,2,0,1,4,1,1,0,4,1,3,2,2,1,1,0,2,0,1,3,22,6,4,5,1,4]},{"label":"Airdrop","topics":"airdrop,airdrops,address,submit,holders","description":"The key topics discussed in the messages from Twitter related to the crypto industry include:\n- Airdrops: Various projects are conducting airdrops to distribute tokens to users, with some requiring specific actions to participate.\n- MetaMask Portfolio: MetaMask has introduced a new feature called Portfolio to help users check their eligibility for airdrops and NFT mints.\n- Solv Protocol: A protocol backed by Binance that is currently running a points program and offering airdrops.\n- Looty Boxes: Trader Joe is collaborating with Looty and Inspectxyz for a loot drop on Avalanche, rewarding loyalty within the community.\n- Cryptopedia: Users can learn about zkLink_Official's dApps ecosystem to win rewards like points, tokens, and NFTs.\n- Marine Moguls by MetFi: A $5.9 million ERC-404 airdrop campaign that has attracted participants globally.\n- DOTA Tokenization: The DOTA tokenization and airdrop by dot20_dota on Polkadot.\n- SEB Tokens: A social experiment involving a DAO for SEB holders to suggest ideas and utility for SEB tokens, as well as an airdrop for LAND owners in The Sandbox Game.","data":[0,22,2,6,0,0,1,1,0,6,3,1,1,1,0,3,1,2,5,3,1,0,2,2,2,2,1,2,1,0,2,1,5,5,2,2,6,1,8,1,1,2,2,3,4,4,11,2,3,2,0,3,6,0,0]},{"label":"DeFi","topics":"defi,finance,landscape,dex,protocol","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi growth and partnerships: Discussions about the growth of Ethena in the DeFi space and partnerships with projects like CIAN Protocol and Flash Protocol.\n2. Token burning and investment opportunities: Mention of the deflationary nature of the $SEED token and investment opportunities in the DeFi world.\n3. Crosschain dilemma: Challenges of navigating dApps across different chains and the importance of improving usability for attracting more users to DeFi.\n4. DeFi trends and TVL rise: Analysis of the rise in Total Value Locked (TVL) in DeFi in March, with a focus on trends shaping the market.\n5. Future of DeFi: Speculation and discussions about the future of DeFi and innovations shaping the landscape.\n6. Linear marketplace feature: Announcement of a new feature in the Linear marketplace that aims to revolutionize trading experiences in DeFi.\n7. Sei Network: Exploration of the technical foundations of Sei Network, a specialized Layer 1 blockchain optimized for trading applications.\n8. Kima Network IDO: Announcement of Kima Network, a decentralized money transfer protocol revolutionizing financial interoperability.\n9. inSure DeFi: Introduction to inSure DeFi, a decentralized exchange for trading digital assets directly on the blockchain.\n10. EthCC event: Excitement about the upcoming EthCC event in Brussels and discussions about DeFi topics that will be covered.","data":[3,3,0,2,1,0,0,5,0,2,0,1,2,1,6,6,4,8,6,6,5,3,2,0,1,8,5,3,3,3,2,5,1,2,9,1,0,0,7,3,1,0,2,3,0,0,1,9,2,1,1,1,1,3,2]},{"label":"XRP","topics":"xrp,ripple,stablecoin,plans,ledger","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ripple XRP include:\n1. Ripple executives potentially rug XRP investors before the $2 billion SEC fine is enforced.\n2. Ripple launching its own stablecoin to compete with Tether and Circle.\n3. Speculation on XRP price predictions, with some experts forecasting a surge to $12.\n4. Ripple CEO foreseeing the possibility of an XRP ETF in the future.\n5. Debate over whether XRP is centralized or decentralized on the XRPL.\n6. Market unease over XRP's ability to reach the $1 price objective.\n7. Ripple Labs' plans to launch a dollar-pegged stablecoin by the end of the year to compete with other stablecoins like USDT and USDC.","data":[1,9,0,2,0,0,1,1,2,1,1,2,3,2,2,2,1,6,0,3,0,1,2,0,3,0,5,1,3,4,1,2,2,3,1,0,0,4,13,0,1,28,3,1,3,2,1,2,1,4,0,1,3,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-14.ts b/priv/repo/major_topics_seed/data-14.ts deleted file mode 100644 index a50883aea3..0000000000 --- a/priv/repo/major_topics_seed/data-14.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '04.04.24', - '05.04.24', - '05.04.24', - '05.04.24', - '05.04.24', - '05.04.24', - '05.04.24', - '05.04.24', - '06.04.24', - '06.04.24', - '06.04.24', - '06.04.24', - '06.04.24', - '06.04.24', - '06.04.24', - '06.04.24', - '07.04.24', - '07.04.24', - '07.04.24', - '07.04.24', - '07.04.24', - '07.04.24', - '07.04.24', - '07.04.24', - '08.04.24', - '08.04.24', - '08.04.24', - '08.04.24', - '08.04.24', - '08.04.24', - '08.04.24', - '08.04.24', - '09.04.24', - '09.04.24', - '09.04.24', - '09.04.24', - '09.04.24', - '09.04.24', - '09.04.24', - '09.04.24', - '10.04.24', - '10.04.24', - '10.04.24', - '10.04.24', - '10.04.24', - '10.04.24', - '10.04.24', - '10.04.24', - '11.04.24', - '11.04.24', - '11.04.24', - '11.04.24', - '11.04.24', - '11.04.24', - '11.04.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,price,breakout,bitcoin,range', - description: - "The key topics currently discussed in the crypto industry on social media accounts include:\n1. Bitcoin reaching a new all-time high (ATH) and potentially breaking $70,000\n2. Altcoins experiencing surges and potential breakouts\n3. Market volatility and potential price movements for Bitcoin\n4. Analysis of Bitcoin's performance compared to other asset classes\n5. Speculation on future price targets for Bitcoin, including reaching $175k and $540k\n6. Technical analysis and chart patterns for Bitcoin\n7. Comparison between different cryptocurrencies like Wrapped Bitcoin (WBTC) and Incent (INC) on Pulsechain\n8. Price action analysis and potential targets for Bitcoin on FTX exchange\n9. Discussion on funding rates and market sentiment around Bitcoin\n10. Speculation on market trends and potential outcomes for Bitcoin and other cryptocurrencies.", - data: [ - 16, 28, 15, 18, 117, 139, 21, 98, 6, 20, 22, 25, 33, 9, 9, 19, 10, 21, 20, 17, 14, 28, 8, - 14, 38, 12, 22, 15, 10, 10, 29, 19, 5, 17, 22, 19, 22, 27, 43, 30, 31, 35, 14, 28, 14, 17, - 25, 22, 18, 24, 5, 33, 6, 16, 14, - ], - }, - { - label: 'BTC & Fiat', - topics: 'bitcoin,fiat,money,freedom,people', - description: - "The key topics discussed in the messages from twitter are:\n1. #Bitcoin - The importance of holding Bitcoin, the concept beginners should learn, comparison of Fiat vs Bitcoin, engaging leaders to make the Bitcoin world possible, and the criticism of Bitcoin by those with little knowledge.\n2. #BitcoinETF - Mentioned in relation to betting on Bitcoin.\n3. @21Futures - Mentioned in relation to a volume 2 of a fiction book about Bitcoin.\n4. @wasabiwallet - Mentioned in relation to prize money for a Bitcoin-related event.\n5. SatoshiActFund - Mentioned in relation to engaging leaders to create a better world with Bitcoin.\n6. BTC - Mentioned in relation to the criticism of Bitcoin by some individuals.\n7. Shitcoins - Mentioned in relation to fraudulent media operations happening at the same time as Bitcoin.\n8. CryptoCraeg - Mentioned as a builder in the crypto industry.\n9. Maxis - Mentioned in relation to the belief that Bitcoin doesn't need to be more than a store of value.\n10. Pedro McDonald, Zucco, and Udi - Mentioned in relation to interviewing different cryptocurrencies.\n11. Satoshi forum posts and emails - Mentioned in relation to understanding the original vision of Bitcoin.", - data: [ - 22, 7, 9, 20, 69, 73, 10, 14, 6, 13, 25, 17, 14, 16, 13, 13, 12, 11, 26, 17, 11, 14, 16, 19, - 14, 13, 11, 17, 17, 20, 11, 21, 14, 23, 8, 14, 22, 15, 11, 13, 14, 8, 20, 15, 19, 19, 13, - 19, 16, 8, 31, 13, 19, 12, 24, - ], - }, - { - label: 'Solana', - topics: 'solana,sol,transaction,network,transactions', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana: There are discussions about Solana's performance, with mentions of its transaction failure rate, network glitches, and the need for better incentives and fee markets. Some users express concerns about Solana's beta status and advise caution when investing in SOL tokens.\n2. Memecoins: Memecoins on the Solana blockchain, such as MEW and BOME, are gaining attention, with significant market cap increases and high returns for early investors.\n3. FrogSwap: FrogSwap, the second biggest DEX on the DEGEN chain, is highlighted for its early success and undervalued token.\n4. Raydium: Raydium is praised for being the first AMM on Solana to reach a total trading volume of over 100 billion dollars, signaling the growth of DeFi on the Solana network.\n5. Book of Memes (BOME) and Book of Meme (BOBA): These tokens on the Solana network are compared based on their market caps and potential for growth, with users discussing their investment strategies.\n6. LBank: LBank's successful completion of the Slerfsol refund and the refund of SOL tokens to pre-sale users are mentioned as positive developments in the crypto community.\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and strategic investment decisions within the crypto industry, particularly focusing on the Solana ecosystem and various tokens and projects within it.", - data: [ - 11, 10, 3, 9, 0, 4, 18, 12, 18, 16, 9, 20, 15, 16, 12, 10, 22, 38, 19, 18, 11, 13, 12, 8, - 11, 8, 14, 5, 15, 14, 7, 13, 14, 21, 8, 13, 8, 20, 18, 10, 10, 18, 16, 17, 33, 12, 20, 7, 8, - 20, 19, 18, 9, 15, 8, - ], - }, - { - label: 'AI', - topics: 'ai,models,chip,google,model', - description: - 'The messages from Twitter discuss a variety of topics related to AI, including the potential for AI to save basis points at jobs sensitive to automation, the humor of llama.cpp becoming sentient and hearing what Winamp has been saying, the release of AI pin by Humane, the frustration of AI failing to provide a proper solution for code, and the potential for AI to improve text-to-speech technology. Additionally, there is mention of the Construction Union seeking to reduce accidents involving babies crawling on steel I-beams, the importance of ensuring search engine results are not scams, and the potential for hackers to manipulate AI chatbots. The overall theme of the messages seems to be the evolving capabilities and challenges of AI technology.', - data: [ - 23, 62, 22, 3, 0, 0, 3, 9, 2, 11, 11, 18, 9, 6, 9, 8, 4, 8, 8, 7, 14, 5, 7, 12, 4, 3, 19, - 12, 16, 6, 6, 2, 7, 4, 15, 10, 2, 5, 12, 8, 8, 6, 13, 9, 5, 6, 11, 9, 3, 1, 7, 15, 5, 2, 11, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,collection', - description: - "The key topics currently discussed in the crypto industry on social media include the integration of digital art in art institutions' permanent collections, the use of blockchain technology by artists, the importance of building adoption in the digital art world, and the value of art collections. There is also a mention of using $Bonsai as a collect currency on Lens for art sales. Additionally, there is excitement about showcasing and treasuring art collections, regardless of their current monetary value. The discussion also touches on the significance of separating the artist from the art and the potential impact of an artist's personality on art sales. Overall, the crypto community seems to be enthusiastic about the intersection of art and technology, particularly in the realm of digital art.", - data: [ - 14, 9, 63, 6, 0, 0, 6, 3, 2, 2, 6, 6, 14, 3, 7, 3, 2, 8, 9, 9, 13, 9, 10, 5, 3, 8, 8, 8, 7, - 4, 15, 3, 8, 3, 7, 9, 12, 7, 8, 5, 5, 3, 10, 6, 6, 4, 8, 5, 7, 2, 5, 3, 8, 7, 9, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coins,memes,coin', - description: - 'The messages from Twitter are discussing meme coins in the crypto industry. Some key topics mentioned include:\n- Investing in meme coins\n- Potential gains from meme coins\n- Importance of the meme itself in meme coins\n- Different meme coins being discussed and trending\n- Base related tokens and their potential gains\n- Original meme coins with unique features\n\nOverall, the discussion revolves around the popularity and potential profitability of meme coins in the current market environment.', - data: [ - 3, 1, 1, 1, 1, 1, 2, 3, 21, 1, 6, 8, 8, 2, 5, 2, 2, 5, 8, 3, 5, 8, 15, 3, 8, 6, 6, 4, 10, - 13, 8, 31, 69, 7, 5, 3, 7, 4, 9, 7, 6, 6, 6, 6, 3, 5, 8, 6, 8, 2, 13, 5, 6, 10, 3, - ], - }, - { - label: 'ETH', - topics: 'ethereum,eth,ethereums,4000,price', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- $ETH (Ethereum) going up and being a good long-term investment\n- EIP-3074 going live with the next Ethereum network upgrade\n- $Dyl (possibly a new cryptocurrency) being mentioned\n- Ethereum and Polygon dominating in Q1 with EVM user growth\n- $ETC (Ethereum Classic) being one of the most accepted cryptocurrencies\n- FUD (fear, uncertainty, doubt) surrounding Ethereum and L2's\n- The Ethereum ecosystem being strong and a good value bet\n- The number of transactions on ETH layer 2s increasing significantly\n- XFlows on Wanchain supporting WETH.e on Avalanche\n\nOverall, the sentiment towards Ethereum and related cryptocurrencies seems positive, with discussions focusing on investment opportunities, network upgrades, and transaction volume growth.", - data: [ - 5, 4, 4, 6, 1, 1, 4, 2, 5, 5, 9, 3, 3, 3, 2, 2, 88, 5, 6, 3, 4, 3, 5, 3, 11, 7, 4, 0, 5, 4, - 6, 4, 2, 6, 6, 8, 3, 6, 8, 8, 6, 9, 2, 3, 9, 2, 7, 6, 6, 1, 4, 11, 4, 3, 3, - ], - }, - { - label: 'SEC vs Uniswap', - topics: 'uniswap,sec,notice,uni,securities', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The SEC issuing a Wells notice to Uniswap, indicating potential regulatory enforcement actions against the decentralized exchange.\n2. Speculation and concerns about the SEC cracking down on DeFi projects like Uniswap.\n3. Allegations of key inflation data being leaked to BlackRock and JP Morgan by the Bureau of Labor Statistics.\n4. Uniswap's native token $UNI dropping by 16.9% following news of the SEC's actions.\n5. The SEC filing a lawsuit against Uniswap for using Pyth oracles instead of Chainlink, leading to MEV front running issues.\n6. Uniswap surpassing $2 trillion in trading volume since its inception in 2018.\n7. The Second Circuit Court of Appeals refusing to reconsider a decision regarding SEC disgorgement in cases where buyers suffer no financial loss.\n8. Speculation about the SEC wanting a piece of the trading volume pie on Uniswap.\n9. Concerns about staking being outlawed in the US due to regulatory pressure.\n10. Morgan Stanley's wealth arm being probed by regulatory authorities.", - data: [ - 3, 2, 4, 6, 0, 0, 7, 10, 3, 1, 5, 2, 4, 5, 0, 4, 0, 5, 5, 8, 3, 10, 4, 8, 4, 2, 9, 6, 7, 4, - 6, 5, 1, 9, 1, 4, 1, 3, 9, 4, 12, 3, 4, 13, 2, 9, 10, 7, 3, 4, 73, 3, 2, 4, 5, - ], - }, - { - label: 'BTC Halving', - topics: 'halving,bitcoinhalving,420,bitcoin,impact', - description: - 'The messages from Twitter are discussing the upcoming Bitcoin halving event and its potential impact on the cryptocurrency market. Some key topics mentioned include:\n- Speculation on how the halving will affect Bitcoin price and mining\n- The history of Bitcoin halvings and potential differences this time\n- Expert perspectives and insights for investors\n- Potential selling pressures on crypto as USD liquidity tightens\n- Predictions for Bitcoin price volatility post-halving\n- Trading competitions and opportunities related to the halving event\n\nOverall, the Twitter messages reflect a mix of excitement, speculation, and caution surrounding the Bitcoin halving event and its implications for the crypto industry.', - data: [ - 2, 5, 2, 1, 62, 7, 2, 2, 10, 0, 4, 1, 5, 1, 4, 2, 3, 3, 2, 5, 1, 0, 1, 42, 7, 0, 3, 2, 2, 1, - 1, 4, 1, 2, 2, 2, 0, 10, 0, 12, 2, 0, 1, 0, 5, 0, 3, 3, 1, 2, 3, 5, 3, 6, 5, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,level,prediction,hit', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Dogecoin hitting $1: There is speculation and excitement around whether Dogecoin will reach $1, with mentions of price rebounds and whales buying large amounts of DOGE.\n\n2. Dogecoin's price movement: There are discussions about Dogecoin's price stalling at $0.2, potential sell-offs, and bullish signs pointing towards a $0.4 target.\n\n3. Dogecoin's performance compared to other altcoins: There are predictions that Dogecoin will outperform other top altcoins, including ICP, despite market volatility.\n\n4. Dogecoin's popularity and potential: There is interest in Dogecoin as a meme-based cryptocurrency, with mentions of its significant investor attention and the story behind its rise as a sensation.\n\n5. Investment advice and warnings: There are warnings about the hype surrounding Dogecoin and the need for profits to flow elsewhere, along with mentions of staking opportunities with TaraCoinx and _mxdoge.\n\nOverall, the discussions on Twitter indicate a mix of excitement, speculation, and caution surrounding Dogecoin and its potential future performance in the crypto industry.", - data: [ - 2, 1, 0, 1, 0, 0, 2, 3, 2, 0, 3, 1, 4, 2, 124, 2, 3, 0, 2, 0, 1, 4, 1, 2, 4, 4, 3, 1, 4, 0, - 6, 3, 0, 5, 3, 2, 1, 4, 4, 5, 7, 4, 3, 3, 1, 3, 2, 1, 3, 2, 3, 3, 4, 0, 1, - ], - }, - { - label: 'Hong Kong BTC ETF', - topics: 'hong,kong,china,chinese,etfs', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the approval of Bitcoin ETFs in Hong Kong by Chinese institutions, specifically the launch of spot Bitcoin ETFs. Additionally, there is a focus on the introduction of banking solutions for stablecoin issuers by ZA Bank in Hong Kong, marking a milestone in the industry's evolution. There is also mention of Korean approval of Bitcoin ETFs if pro-Bitcoin opposition wins the election, as well as Chinese investment firms like Harvest Fund and Southern Fund seeking approval for Bitcoin ETFs in Hong Kong. Overall, the industry is buzzing with news about the expansion and adoption of cryptocurrencies and blockchain technology in various financial sectors.", - data: [ - 1, 2, 11, 7, 3, 2, 12, 6, 2, 1, 10, 3, 3, 4, 2, 1, 5, 8, 6, 4, 7, 7, 6, 4, 2, 5, 4, 2, 10, - 2, 4, 4, 0, 4, 2, 1, 2, 4, 1, 2, 11, 4, 6, 9, 1, 4, 6, 2, 1, 2, 1, 1, 3, 3, 2, - ], - }, - { - label: 'BTC ETFs', - topics: 'gbtc,net,inflows,etfs,etf', - description: - "The key topics currently being discussed in the crypto industry on social media accounts include:\n1. Insane correlation between spot Bitcoin ETF flows and price\n2. Fidelity's FBTC spot Bitcoin ETF surpassing 150,000 BTC within three months\n3. BlackRock IBIT ETF nearing $15 billion net milestone\n4. Bitcoin ETFs experiencing a surprising $200M outflow\n5. Daily net inflows into Bitcoin ETFs\n6. BlackRock mining Bitcoin Spot ETF being profitable\n7. Historic moment for GBTC ETF with the 'Least Worst Dumpage Ever'\n8. Net inflows for Bitcoin ETFs despite GBTC selling increasing\n9. Bitcoin spot ETFs seeing a total net outflow on April 9\n\nThese topics indicate a mix of positive and negative trends in the crypto industry, with fluctuations in ETF flows, milestone achievements, profitability of mining ETFs, and historic moments in ETF performance. Investors and analysts are closely monitoring these developments to make informed decisions in the market.", - data: [ - 6, 2, 1, 1, 22, 3, 7, 2, 0, 0, 0, 2, 3, 2, 0, 2, 18, 1, 0, 4, 12, 2, 2, 1, 6, 10, 8, 0, 1, - 0, 6, 1, 3, 7, 2, 5, 0, 0, 0, 0, 3, 0, 3, 6, 16, 19, 2, 2, 0, 5, 1, 3, 1, 5, 6, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,gamefi', - description: - 'The key topics currently being discussed in the crypto industry on social media include GameFi, GamerHash, GamerCoin, AI, Space Trading Roguelike Indie RPG Game, Lords of Light, Mobile gaming, web3 gaming, GunzillaGames, GUNbyGUNZ Blockchain, opensea, Topup Game, Esports events, Vulcan game, on-chain gaming, decentralized model for game logic, state and asset ownership, playSHRAPNEL, AVAX blockchain, symbiogenesisPR, NFTs, play_ember, ParallelTCG, visitsugartown, Viction Horizon Startup Hackathon, Townstory Galaxy, social economy, multi-chain, and NFTs. These topics are generating a lot of buzz and interest among users in the crypto community.', - data: [ - 3, 0, 0, 2, 0, 0, 4, 2, 2, 1, 0, 0, 3, 1, 2, 1, 4, 2, 3, 2, 27, 7, 9, 2, 5, 3, 7, 2, 2, 2, - 4, 0, 4, 4, 5, 3, 6, 7, 2, 4, 3, 1, 2, 1, 4, 4, 2, 0, 0, 2, 5, 5, 5, 2, 1, - ], - }, - { - label: 'RUNE', - topics: 'runes,runestone,rune,ordinals,floor', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Runes and Runestones: There is a lot of excitement and bullish sentiment surrounding Runes and Runestones, with users discussing their purchases, trading prices, and potential for growth. Some are skeptical due to past disappointments with similar projects, while others are optimistic about the future of Runes.\n- Bitcoin ecosystem: Users are discussing the impact of Runes on the Bitcoin ecosystem, with mentions of airdrops, memecoins, and the upcoming Bitcoin Runes Protocol debut.\n- Solana and Puppets ecosystem: There are mentions of the dominance of the Puppets ecosystem within the Runes community, as well as discussions about other projects on Solana and BRC20s.\n- Market volatility: Users are acknowledging the volatility of young tokens like Runestones and emphasizing the importance of holding onto investments for potential gains.\n- Investment opportunities: Some users are discussing investment opportunities such as $RB as a solid play for those bullish on Runes, and the importance of bridges in the crypto infrastructure.\n\nOverall, the sentiment seems to be a mix of excitement, skepticism, and strategic thinking about the future of Runes and related projects within the crypto industry.', - data: [ - 2, 3, 2, 4, 1, 2, 0, 5, 6, 0, 4, 3, 1, 2, 3, 1, 1, 2, 2, 3, 3, 0, 1, 0, 11, 1, 5, 3, 2, 2, - 2, 2, 1, 0, 4, 4, 5, 3, 3, 6, 1, 39, 1, 3, 1, 3, 1, 0, 0, 2, 2, 0, 1, 0, 2, - ], - }, - { - label: 'BLOCK', - topics: 'block,snapshot,engage,player,farmers', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include the launch and trading of the $BLOCK token, partnerships and developments made by #BlockGames, airdrops and farming opportunities related to $BLOCK, engagement and excitement surrounding $BLOCK, as well as updates on DF rewards claims and the $ASI merger vote. There is also mention of other tokens such as $PARAM, $TRIP, $BUBBLE, $BEYOND, $MOJO, $COOKIE, and $SOMO. Additionally, caution is advised against clicking on links shared outside of official channels for $BLOCK.', - data: [ - 5, 2, 3, 2, 0, 1, 66, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 10, 1, 4, 1, 1, 3, 2, 5, 1, 3, 4, 2, - 1, 1, 0, 4, 2, 3, 4, 1, 2, 1, 0, 1, 2, 1, 1, 3, 1, 1, 4, 0, 0, 1, 1, 1, 2, - ], - }, - { - label: 'Tesla', - topics: 'tesla,elon,reuters,stock,musk', - description: - "Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n\n1. Tesla's decision to cancel its low-cost car plans amid fierce competition in China.\n2. Cathie Wood's $2,000 price target for Tesla and her active portfolio management.\n3. Tesla's plan to fend off cheaper competition from China with a $25,000 electric car.\n4. The impact of Elon Musk's selling of Bitcoin on Tesla's financial performance.\n5. The comparison between Tesla and MicroStrategy's adoption of the Bitcoin strategy.\n6. The potential benefits of Tesla adopting a more educational approach in customer outreach.\n7. The affordability of Tesla Model 3 compared to other car lease options.\n8. The potential implications of Tesla's production line overhaul on its future success.", - data: [ - 4, 3, 4, 0, 0, 0, 3, 7, 4, 0, 4, 1, 2, 2, 1, 3, 3, 3, 0, 1, 4, 3, 0, 2, 0, 4, 8, 3, 1, 3, 1, - 2, 2, 2, 1, 3, 2, 2, 1, 0, 2, 8, 8, 3, 0, 2, 0, 11, 4, 3, 18, 2, 3, 2, 4, - ], - }, - { - label: 'Chainlink', - topics: 'crosschain,chainlink,tracking,blockchain,bridge', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include collaborations between Chainlink and Aave, the launch of new blockchain applications and platforms like Transporter and Divi Updates, the potential impact of blockchain on digital securities management for stock exchanges, the Chainlink Block Magic Hackathon, the importance of ZK-proofing and off-chain computations for Keeper networks, the launch of the Komodo Wallet browser extension, the utility of aelf blockchain for generating various utilities with a single contract, and the role of Chainlink in providing verifiable and immutable data for banks and institutions. Additionally, there is discussion about Blocktrade as a European VASP and gamified platform for digital assets, gaming, and commerce, with the opportunity for investors to purchase shares via CONDA Capital Market.', - data: [ - 1, 3, 1, 2, 0, 0, 5, 2, 1, 22, 2, 5, 2, 1, 3, 3, 0, 6, 0, 2, 1, 0, 1, 2, 0, 3, 1, 2, 4, 1, - 2, 0, 1, 4, 1, 1, 0, 4, 1, 3, 2, 2, 1, 1, 0, 2, 0, 1, 3, 22, 6, 4, 5, 1, 4, - ], - }, - { - label: 'Airdrop', - topics: 'airdrop,airdrops,address,submit,holders', - description: - "The key topics discussed in the messages from Twitter related to the crypto industry include:\n- Airdrops: Various projects are conducting airdrops to distribute tokens to users, with some requiring specific actions to participate.\n- MetaMask Portfolio: MetaMask has introduced a new feature called Portfolio to help users check their eligibility for airdrops and NFT mints.\n- Solv Protocol: A protocol backed by Binance that is currently running a points program and offering airdrops.\n- Looty Boxes: Trader Joe is collaborating with Looty and Inspectxyz for a loot drop on Avalanche, rewarding loyalty within the community.\n- Cryptopedia: Users can learn about zkLink_Official's dApps ecosystem to win rewards like points, tokens, and NFTs.\n- Marine Moguls by MetFi: A $5.9 million ERC-404 airdrop campaign that has attracted participants globally.\n- DOTA Tokenization: The DOTA tokenization and airdrop by dot20_dota on Polkadot.\n- SEB Tokens: A social experiment involving a DAO for SEB holders to suggest ideas and utility for SEB tokens, as well as an airdrop for LAND owners in The Sandbox Game.", - data: [ - 0, 22, 2, 6, 0, 0, 1, 1, 0, 6, 3, 1, 1, 1, 0, 3, 1, 2, 5, 3, 1, 0, 2, 2, 2, 2, 1, 2, 1, 0, - 2, 1, 5, 5, 2, 2, 6, 1, 8, 1, 1, 2, 2, 3, 4, 4, 11, 2, 3, 2, 0, 3, 6, 0, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,landscape,dex,protocol', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi growth and partnerships: Discussions about the growth of Ethena in the DeFi space and partnerships with projects like CIAN Protocol and Flash Protocol.\n2. Token burning and investment opportunities: Mention of the deflationary nature of the $SEED token and investment opportunities in the DeFi world.\n3. Crosschain dilemma: Challenges of navigating dApps across different chains and the importance of improving usability for attracting more users to DeFi.\n4. DeFi trends and TVL rise: Analysis of the rise in Total Value Locked (TVL) in DeFi in March, with a focus on trends shaping the market.\n5. Future of DeFi: Speculation and discussions about the future of DeFi and innovations shaping the landscape.\n6. Linear marketplace feature: Announcement of a new feature in the Linear marketplace that aims to revolutionize trading experiences in DeFi.\n7. Sei Network: Exploration of the technical foundations of Sei Network, a specialized Layer 1 blockchain optimized for trading applications.\n8. Kima Network IDO: Announcement of Kima Network, a decentralized money transfer protocol revolutionizing financial interoperability.\n9. inSure DeFi: Introduction to inSure DeFi, a decentralized exchange for trading digital assets directly on the blockchain.\n10. EthCC event: Excitement about the upcoming EthCC event in Brussels and discussions about DeFi topics that will be covered.', - data: [ - 3, 3, 0, 2, 1, 0, 0, 5, 0, 2, 0, 1, 2, 1, 6, 6, 4, 8, 6, 6, 5, 3, 2, 0, 1, 8, 5, 3, 3, 3, 2, - 5, 1, 2, 9, 1, 0, 0, 7, 3, 1, 0, 2, 3, 0, 0, 1, 9, 2, 1, 1, 1, 1, 3, 2, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,stablecoin,plans,ledger', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding Ripple XRP include:\n1. Ripple executives potentially rug XRP investors before the $2 billion SEC fine is enforced.\n2. Ripple launching its own stablecoin to compete with Tether and Circle.\n3. Speculation on XRP price predictions, with some experts forecasting a surge to $12.\n4. Ripple CEO foreseeing the possibility of an XRP ETF in the future.\n5. Debate over whether XRP is centralized or decentralized on the XRPL.\n6. Market unease over XRP's ability to reach the $1 price objective.\n7. Ripple Labs' plans to launch a dollar-pegged stablecoin by the end of the year to compete with other stablecoins like USDT and USDC.", - data: [ - 1, 9, 0, 2, 0, 0, 1, 1, 2, 1, 1, 2, 3, 2, 2, 2, 1, 6, 0, 3, 0, 1, 2, 0, 3, 0, 5, 1, 3, 4, 1, - 2, 2, 3, 1, 0, 0, 4, 13, 0, 1, 28, 3, 1, 3, 2, 1, 2, 1, 4, 0, 1, 3, 1, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-15.json b/priv/repo/major_topics_seed/data-15.json deleted file mode 100644 index 011b7f8995..0000000000 --- a/priv/repo/major_topics_seed/data-15.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["11.04.24","12.04.24","12.04.24","12.04.24","12.04.24","12.04.24","12.04.24","12.04.24","13.04.24","13.04.24","13.04.24","13.04.24","13.04.24","13.04.24","13.04.24","13.04.24","14.04.24","14.04.24","14.04.24","14.04.24","14.04.24","14.04.24","14.04.24","14.04.24","15.04.24","15.04.24","15.04.24","15.04.24","15.04.24","15.04.24","15.04.24","15.04.24","16.04.24","16.04.24","16.04.24","16.04.24","16.04.24","16.04.24","16.04.24","16.04.24","17.04.24","17.04.24","17.04.24","17.04.24","17.04.24","17.04.24","17.04.24","17.04.24","18.04.24","18.04.24","18.04.24","18.04.24","18.04.24","18.04.24","18.04.24"],"datasets":[{"label":"Halving","topics":"halving,days,mining,miners,bitcoinhalving","description":"The key topics currently being discussed on Twitter regarding the crypto industry and Bitcoin halving include:\n- The exact date and time for the Bitcoin halving, which is 2 days away.\n- Speculation and predictions about Bitcoin's price movement post-halving.\n- Geopolitical tensions potentially affecting the halving date.\n- Mining rewards being slashed after the halving.\n- Bitcoin bulls awaiting the halving and signals of investor confidence.\n- Events and livestreams related to the Bitcoin halving, such as those powered by KrakenFX.\n- Contests and campaigns related to the halving, such as the Poloniex Halving Crypto Trading Contest.\n- Market readiness and potential major dips for altcoins in the near future.\n- The countdown to the Bitcoin halving, which is slightly over 5 days away.\n- The celebration and anticipation surrounding the Bitcoin halving event.","data":[23,17,11,22,233,144,94,24,11,31,20,45,32,133,11,8,9,26,13,20,20,19,22,139,30,27,13,36,11,24,12,9,34,19,18,11,11,24,26,45,17,11,23,15,20,12,18,12,22,20,11,20,8,38,16]},{"label":"AI","topics":"ai,models,model,artificial,google","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Adobe Premiere Pro integrating AI-generated video features\n2. Dfinity Foundation launching an accelerator platform for Asian Web3 and AI ecosystem development\n3. The rise of small language models in AI\n4. Strategies for implementing, monitoring, and evaluating AI initiatives\n5. The concept of AI becoming a literal cult with church-like structures and rituals\n6. SAG-AFTRA entering into a tentative agreement with record labels for AI protections\n7. SingularityDAO positioning itself as the DeFi hub for the $ASI alliance in decentralized AI development\n8. The impact of blockchain and AI on industries and the future of technology\n9. The ongoing battle between AI agents making predictions onchain, with Kleros arbitrating disputes.","data":[76,38,24,16,0,0,6,6,5,16,7,14,11,14,14,11,7,20,11,14,19,7,20,11,12,17,23,13,10,11,14,12,15,10,11,22,16,9,26,15,17,14,15,8,21,6,20,16,11,8,13,15,6,13,18]},{"label":"Buy the dip","topics":"dip,buy,buying,dips,bought","description":"The key topics currently being discussed in the crypto industry on social media include buying the dip, staying long on strong altcoins, taking profit on the way up, strategies for individual quant/algo traders, celebrating opportunities to buy during market uncertainty, zooming out during market volatility, avoiding panic selling during bull market dips, smart money accumulating strong coins during market dips, and the potential for a bull market dip rather than a bear market. Additionally, specific coins such as $THOG and $HBAR are being mentioned as potential investment opportunities. Overall, the sentiment seems to be focused on strategic buying and holding during market fluctuations.","data":[18,10,11,10,0,0,4,7,86,9,8,6,18,7,57,9,7,11,26,6,9,14,14,14,9,3,5,16,10,18,21,30,16,14,3,13,33,11,13,16,10,11,7,16,15,12,14,13,24,14,10,7,12,14,9]},{"label":"Hong Kong ETF","topics":"hong,kong,etfs,etf,spot","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are the approval of spot Bitcoin and Ethereum ETFs in Hong Kong, with the Hong Kong market being compared to the US market. There is also mention of Japan collaborating on Chinese payment services and the approval of an ETH ETF in Hong Kong. Additionally, there is discussion about the differences between BTC/ETH redemption in Hong Kong ETFs versus cash settlement in the US Bitcoin ETF. Overall, there is a mix of bullish and bearish sentiments regarding the approval of ETFs in different regions, with competition being highlighted in the US and across Asia. Furthermore, there is mention of a partnership in Australia and New Zealand for trading BST through a brokerage service.","data":[6,7,73,18,11,5,8,42,4,5,11,6,3,4,5,4,33,14,9,5,4,11,12,7,4,12,6,4,5,10,3,16,3,7,7,10,3,15,7,5,18,4,8,10,7,19,5,3,4,1,2,5,6,9,4]},{"label":"BTC","topics":"bitcoin,freedom,fixes,money,core","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n- Bitcoin's role as a proof-of-work asset and its security over time\n- The distinction between Bitcoin and other cryptocurrencies\n- The potential for diversification beyond Bitcoin in investment portfolios\n- The impact of institutions and governments on Bitcoin ownership and value\n- The potential for higher returns through small cap altcoins with strong teams and partnerships\n\nOverall, the sentiment towards Bitcoin seems positive, with discussions around its security, uniqueness, and potential for growth. There is also a focus on the broader cryptocurrency market and the opportunities it presents for investors.","data":[9,6,5,15,32,44,25,6,0,3,11,12,3,0,7,7,4,3,9,13,5,10,8,1,6,9,8,11,5,4,7,7,3,9,5,5,11,2,11,8,13,7,17,7,16,10,8,5,7,6,18,8,1,11,6]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The key topics currently discussed in the crypto industry on social media include meme coins, meme tokens, meme communities, the future of memecoins, potential rug pulls, Solana, Base, Blast memecoin markets, inclusive and transparent financial future, growth of meme coins like $PEPE, $BONK, and $DOGE, and the impact of internet culture on the established crypto elite. There is also a focus on launching new meme tokens, the power of meme communities, and the debate on whether memecoins are the future or just a fleeting joke. Overall, the discussion revolves around the intersection of technology, meme culture, and finance in the crypto industry.","data":[5,1,8,10,0,2,3,8,9,5,9,5,5,5,8,5,6,3,16,5,7,13,8,7,11,5,9,6,6,11,10,4,109,5,6,8,7,12,6,5,7,11,10,7,7,9,6,4,11,8,6,4,3,4,7]},{"label":"Art","topics":"art,artist,artists,artwork,pieces","description":"The key topics discussed in the messages from twitter about art and crypto industry include NFTs, body painting, traditional art forms, artist interventions, and community engagement. Artists like Johannes Stötter and Andrew Scott are highlighted for their unique approaches to art creation, while the use of kawaii eyes and anime NFTs are also mentioned. The messages also touch on the concept of rewarding oneself with art purchases and the excitement of joining exclusive art clubs. Additionally, the mention of crypto currency $ARF indicates a potential investment opportunity in the art world.","data":[13,4,65,5,1,0,1,2,3,6,9,4,10,11,12,8,4,4,7,7,4,2,13,5,6,12,8,10,6,8,10,4,6,6,10,7,16,9,4,3,4,2,7,7,15,5,8,4,6,3,5,4,8,5,9]},{"label":"ETFs","topics":"etf,blackrock,outflows,net,grayscale","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- High-Yield Funds See Biggest Outflow of 2024\n- Grayscale's Bitcoin ETF lowering fees over time\n- Digital asset investment products witnessing outflows\n- Net outflows from US ETFs, particularly Grayscale\n- BlackRock's potential impact on the market\n- Ethereum Spot ETF or BlackRock Buidl Fund\n- Grayscale's ongoing selling and decreasing demand\n- Bitcoin ETF flow updates and net flows\n- Speculation on Grayscale potentially hitting zero in trading days\n\nOverall, the discussions revolve around market trends, fund outflows, fee reductions, and the potential impact of key players like Grayscale and BlackRock on the crypto industry.","data":[12,0,5,9,45,0,32,17,5,1,5,2,8,9,7,1,39,5,7,9,12,1,12,2,5,8,8,2,6,2,0,7,2,13,11,5,0,1,1,1,7,2,7,7,1,30,2,2,3,11,2,5,2,4,12]},{"label":"FED & Inflation","topics":"inflation,rates,fed,rate,economy","description":"The key topics currently being discussed in the crypto industry on social media include:\n- US consumer deterioration in April\n- Consumer price index for March 2024 quarter\n- Outlook for inflation\n- Economy slowing down\n- Results of the ECB Survey of Professional Forecasters for the second quarter of 2024\n- Inflation and its impact on power bills\n- Future of borrowing and lending in traditional banks\n- Impact of high interest rates on prices\n- IMF warning to US over spending and debt\n- Inflation blamed on Powell Pivot\n- Interest rates and rate cuts in 2024\n- Fragility test of markets and favorable factors for equities\n\nThese topics reflect a mix of economic indicators, inflation concerns, market trends, and policy implications that are shaping discussions within the crypto industry.","data":[8,4,6,3,0,0,2,5,3,11,6,11,4,6,3,16,2,8,5,19,8,3,11,3,13,41,11,6,2,0,3,58,4,5,2,3,6,3,5,6,3,6,9,4,5,8,10,5,6,0,8,5,2,8,9]},{"label":"BTC Price","topics":"rsi,support,candle,range,bounce","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- Analysis of Bitcoin's price action and potential future movements\n- Discussion of various technical indicators such as RSI, MACD, and support/resistance levels\n- Speculation on potential price targets and levels for Bitcoin\n- Mention of specific altcoins such as $OCEAN and $RISITA\n- Analysis of market trends and potential scenarios for Bitcoin's price movement\n- Discussion of potential bullish and bearish scenarios for Bitcoin\n- Mention of potential liquidation events and support levels for Bitcoin\n- Speculation on the future direction of Bitcoin's price based on historical data and indicators\n- Analysis of potential breakout and reversal patterns for Bitcoin\n- Mention of potential market manipulation and the impact on Bitcoin's price\n- Discussion of potential long and short positions for Bitcoin trading\n- Mention of potential resistance levels and key price points for Bitcoin\n- Analysis of market sentiment and potential market trends for Bitcoin\n- Mention of potential scenarios for Bitcoin's price movement based on technical analysis and market trends.","data":[5,5,5,7,10,19,10,36,12,10,7,5,13,13,1,5,3,2,5,0,1,4,0,6,7,10,4,0,1,4,23,4,1,8,4,10,7,7,7,8,2,18,5,7,3,5,9,8,7,5,4,15,1,8,5]},{"label":"SOL","topics":"solana,sol,presale,network,dex","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Solana ($SOL) experiencing issues with chain functionality, leading to trading difficulties and flash crashes for users\n- Positive sentiment towards Solana's potential for growth and innovation, with mentions of projects like Solestia and Zeus gaining traction\n- Comparison between Solana and other chains like Bitcoin and Ethereum, with discussions on market performance and potential market cap growth\n- Criticisms of Solana's congestion issues and challenges, but also optimism about the network's ability to improve and overcome obstacles\n- Trading strategies and experiences, including successful long positions on $SOL and losses due to leverage trading\n- Promotions of new projects and platforms on Solana, such as BlocksChat and Phantasma Swap\n- Speculation on the future of Solana as a retail chain with superior user experience compared to Ethereum, and the potential for Solana to attract institutional and DeFi players in the long term\n\nOverall, the sentiment towards Solana appears to be mixed, with users expressing both excitement for its potential and frustrations with current challenges. The community remains engaged and active in discussing various aspects of Solana and its ecosystem.","data":[5,12,4,14,0,2,4,5,5,8,4,2,3,4,14,4,4,6,9,6,6,8,4,3,7,3,2,4,6,5,9,4,9,8,2,10,0,1,13,4,9,6,3,3,36,3,9,6,3,4,3,10,3,5,9]},{"label":"GameFi","topics":"gaming,game,games,web3,gamefi","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and the bullish sentiment towards it\n- The emergence of player-driven economies powered by NFTs in gaming\n- The impact of Bitcoin's price on gaming tokens\n- The development of portable crypto gaming devices\n- The excitement around new gaming platforms and titles such as Capsule Heroes and The Sandbox Game Builders Bootcamp program\n- The use of blockchain technology in gaming, particularly in creating unique digital assets and virtual worlds\n- The popularity of specific games like Star Citizen and Minecraft within the crypto community\n- The anticipation for new gaming launches and updates, such as the GTArbitrum bot launch\n- The involvement of influencers and content creators in promoting and engaging with crypto gaming projects.","data":[4,6,3,4,0,1,3,2,0,3,3,3,8,1,0,5,4,12,8,5,42,7,3,1,4,2,5,5,8,1,4,3,5,2,3,5,2,20,4,6,5,5,2,1,1,3,2,1,9,3,8,6,4,6,3]},{"label":"Gold & Silver","topics":"gold,peter,silver,vs,forecast","description":"The key topics discussed in the messages from Twitter regarding the crypto industry and gold include:\n- Comparison between gold and Bitcoin in terms of investment potential\n- World Bank report highlighting advantages of central bank gold revaluation accounts\n- Shift in the gold market towards East, with China playing a pivotal role\n- Rising demand for gold and silver in China\n- Introduction of a new perpetual contract featuring Tether Gold on BitMEX\n\nOverall, the messages indicate a mix of opinions on gold and Bitcoin as investment options, as well as updates on market trends and new products in the crypto industry.","data":[6,2,1,3,17,4,2,0,2,3,2,2,3,1,2,3,3,4,2,3,1,47,40,3,5,0,8,1,1,3,1,6,3,0,0,5,4,2,2,1,6,0,17,2,6,2,2,1,5,1,2,1,1,2,10]},{"label":"ETH","topics":"eth,ethereum,3000,target,price","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum's price dropping below $3,000 for the first time in 2 months\n- 27% of Ethereum now being staked, with $98 billion committed\n- Ethereum losing 41% of its value compared to Bitcoin since the \"merge\" to proof of stake\n- Ethereum facing hurdles near $3,200 and struggling to recover above the resistance zone\n- Analysts speculating about the future price of Ethereum, with some predicting $2,000\n- Divergence forming between ETHBTC and Total Value Locked in ETH terms on the Ethereum mainnet\n- Ethereum being seen as expensive, but with low costs for transactions on the Base chain\n- Short interest in Ethereum surging as the price teeters on crucial support at $3,000\n- Potential breakout targets for other cryptocurrencies like LUNA and TRU\n- Potential major decline for Ethereum if it stays below $3,200 and $3,280\n\nOverall, the sentiment seems mixed with some concerns about Ethereum's price and performance, while others are optimistic about potential breakout targets for other cryptocurrencies.","data":[4,7,0,3,0,0,1,3,5,1,3,2,1,1,3,5,59,4,2,4,4,4,0,0,4,4,3,3,0,5,6,2,0,1,1,2,4,7,8,1,4,2,0,6,1,2,6,3,1,4,2,11,5,2,2]},{"label":"NFT","topics":"nft,pfp,nfts,collection,mint","description":"The key topics currently discussed in the messages from twitter are NFT art, ERC5773z, Rorschach series, SuperRareBot, WizardX_0x, NFT art season, ConfluxScan, Theory of Gravity free NFT mint, Workstation95 collection, Inspect integration with MultiversX, EGLD, Guild of Guardians Avatars, Immutable zkEVM, WELL3 journey, BNBCHAIN, Staking Template Bounty, BurntPix NFT, digital ownership, NFTs vs SFTs, and tradedog.io blog.","data":[3,4,4,5,1,0,0,0,1,9,11,4,5,3,2,5,2,4,4,12,3,5,4,0,5,3,3,3,7,3,4,3,15,3,16,5,8,4,2,3,2,4,1,1,1,0,7,4,2,2,3,1,2,0,5]},{"label":"Blockchain Security","topics":"blockchain,security,identity,transactions,smart","description":"The messages from Twitter are discussing various topics related to the crypto industry, including blockchain technology, scalability, security, privacy, interoperability, decentralization, and tokenomics. Key words mentioned in the messages include blockchain, scalability, security, privacy, interoperability, Algorand, Syntropy, NFTs, Wanchain, DUSK, and blockchain-powered security exchange. The messages also mention specific projects and events such as the Venom Foundation, Partisia MPC, Swarm Grants Wave, Flow transactions, Harvard College speaking event, and The Social Laboratory x Global Blockchain Show. Overall, the messages highlight the ongoing developments and innovations in the crypto industry, with a focus on improving technology, security, and industry adoption.","data":[2,4,2,0,0,0,7,0,2,10,3,7,2,7,14,4,8,10,2,6,1,0,3,2,2,8,10,8,6,0,4,1,1,0,8,2,1,2,6,4,1,3,5,2,9,4,3,1,1,2,7,3,2,6,1]},{"label":"Tesla","topics":"tesla,employees,stock,elon,elonmusk","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Tesla's new Roadster and Plaid model\n- Tesla Cybertruck updates and improvements\n- Rumors of Tesla laying off employees\n- Comparison of Tesla's Full Self-Driving (FSD) costs versus rental prices\n- Alphabet firing workers involved in a protest\n- Tesla stock strategy and entry points\n- The impact of the 10-year yield on the S&P 500\n- Layoffs at Tesla and criticism of the company's performance\n- Reasons why Tesla does not allow consumers to buy back their cars after the lease is over, including the economics of robotaxi utilization.","data":[2,1,4,2,0,0,1,0,0,1,2,1,5,1,3,4,2,1,1,4,1,1,1,0,1,1,7,2,7,2,4,5,3,1,1,0,0,3,3,2,2,2,4,3,5,3,1,27,1,3,21,1,0,3,3]},{"label":"DOGE","topics":"doge,dogecoin,dogs,pvp,elon","description":"Based on the messages from Twitter, it is evident that Dogecoin ($DOGE) is a popular topic of discussion within the crypto community. Some key points mentioned include:\n\n1. Dogecoin's potential for a massive price increase to $0.26.\n2. Concerns about Dogecoin falling 14% in a single day.\n3. Comparisons between weekly gains of $SHIB and $DOGE.\n4. Speculation about using Dogecoin as a representation of retail sentiment.\n5. Analysts being bullish on Dogecoin reclaiming $0.20 amidst volatility.\n6. Dogecoin's performance over the past year, including rallies and dumps.\n7. Mention of other dog-themed cryptocurrencies like BabyDoge, Shiba, DogElonMars, Floki, and Bonk.\n8. Technical analysis of $DOGE's support levels and potential buying opportunities.\n\nOverall, the sentiment towards Dogecoin appears to be mixed, with some optimistic about its future price potential while others remain cautious about its volatility.","data":[0,5,2,3,0,0,1,1,3,2,1,1,0,1,42,37,1,2,1,3,0,1,0,1,1,3,2,0,3,1,5,6,0,0,0,1,1,1,2,2,2,0,0,5,3,0,1,0,4,0,0,1,3,3,0]},{"label":"Farming","topics":"farming,param,bubble,farm,trip","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include farming various tokens such as $BUBBLE, $PARAM, $BEYOND, $COOKIE, and $MOJO. There is a focus on engaging with these tokens to generate wealth, with mentions of giveaways and rewards for participants. Additionally, there is discussion about the importance of rangers in gaming and the potential for Play 2 Earn to fuel the next bull run in the market. Overall, the community is actively participating in farming activities and looking for opportunities to maximize their earnings.","data":[0,1,2,0,0,0,1,7,2,3,2,2,1,1,0,1,4,1,49,1,2,2,3,3,1,3,1,3,2,4,2,0,1,3,2,2,2,4,0,1,1,0,2,1,5,4,2,1,2,4,1,0,2,2,1]},{"label":"RUNES","topics":"runes,rune,brc20,protocol,ordinals","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Runes, Ordinals, Bitcoin, tokenization, DeFi, and the upcoming Runes protocol launch. There is excitement and anticipation surrounding the Runes project, with mentions of potential high returns and the project's potential to bridge the gap between Bitcoin and Ethereum. Additionally, there are discussions about the impact of Runes on the crypto market, the involvement of key figures like Casey Rodarmor, and the community's engagement with the project. Overall, the sentiment seems positive and optimistic about the future of Runes and its potential impact on the crypto industry.","data":[4,1,0,0,0,4,2,6,0,1,2,3,2,2,3,1,0,3,1,3,0,5,2,2,2,1,4,0,1,3,0,0,2,1,0,1,0,6,4,4,3,45,2,0,0,0,2,1,1,2,0,2,0,3,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-15.ts b/priv/repo/major_topics_seed/data-15.ts deleted file mode 100644 index 87345a394d..0000000000 --- a/priv/repo/major_topics_seed/data-15.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '11.04.24', - '12.04.24', - '12.04.24', - '12.04.24', - '12.04.24', - '12.04.24', - '12.04.24', - '12.04.24', - '13.04.24', - '13.04.24', - '13.04.24', - '13.04.24', - '13.04.24', - '13.04.24', - '13.04.24', - '13.04.24', - '14.04.24', - '14.04.24', - '14.04.24', - '14.04.24', - '14.04.24', - '14.04.24', - '14.04.24', - '14.04.24', - '15.04.24', - '15.04.24', - '15.04.24', - '15.04.24', - '15.04.24', - '15.04.24', - '15.04.24', - '15.04.24', - '16.04.24', - '16.04.24', - '16.04.24', - '16.04.24', - '16.04.24', - '16.04.24', - '16.04.24', - '16.04.24', - '17.04.24', - '17.04.24', - '17.04.24', - '17.04.24', - '17.04.24', - '17.04.24', - '17.04.24', - '17.04.24', - '18.04.24', - '18.04.24', - '18.04.24', - '18.04.24', - '18.04.24', - '18.04.24', - '18.04.24', - ], - datasets: [ - { - label: 'Halving', - topics: 'halving,days,mining,miners,bitcoinhalving', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry and Bitcoin halving include:\n- The exact date and time for the Bitcoin halving, which is 2 days away.\n- Speculation and predictions about Bitcoin's price movement post-halving.\n- Geopolitical tensions potentially affecting the halving date.\n- Mining rewards being slashed after the halving.\n- Bitcoin bulls awaiting the halving and signals of investor confidence.\n- Events and livestreams related to the Bitcoin halving, such as those powered by KrakenFX.\n- Contests and campaigns related to the halving, such as the Poloniex Halving Crypto Trading Contest.\n- Market readiness and potential major dips for altcoins in the near future.\n- The countdown to the Bitcoin halving, which is slightly over 5 days away.\n- The celebration and anticipation surrounding the Bitcoin halving event.", - data: [ - 23, 17, 11, 22, 233, 144, 94, 24, 11, 31, 20, 45, 32, 133, 11, 8, 9, 26, 13, 20, 20, 19, 22, - 139, 30, 27, 13, 36, 11, 24, 12, 9, 34, 19, 18, 11, 11, 24, 26, 45, 17, 11, 23, 15, 20, 12, - 18, 12, 22, 20, 11, 20, 8, 38, 16, - ], - }, - { - label: 'AI', - topics: 'ai,models,model,artificial,google', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n1. Adobe Premiere Pro integrating AI-generated video features\n2. Dfinity Foundation launching an accelerator platform for Asian Web3 and AI ecosystem development\n3. The rise of small language models in AI\n4. Strategies for implementing, monitoring, and evaluating AI initiatives\n5. The concept of AI becoming a literal cult with church-like structures and rituals\n6. SAG-AFTRA entering into a tentative agreement with record labels for AI protections\n7. SingularityDAO positioning itself as the DeFi hub for the $ASI alliance in decentralized AI development\n8. The impact of blockchain and AI on industries and the future of technology\n9. The ongoing battle between AI agents making predictions onchain, with Kleros arbitrating disputes.', - data: [ - 76, 38, 24, 16, 0, 0, 6, 6, 5, 16, 7, 14, 11, 14, 14, 11, 7, 20, 11, 14, 19, 7, 20, 11, 12, - 17, 23, 13, 10, 11, 14, 12, 15, 10, 11, 22, 16, 9, 26, 15, 17, 14, 15, 8, 21, 6, 20, 16, 11, - 8, 13, 15, 6, 13, 18, - ], - }, - { - label: 'Buy the dip', - topics: 'dip,buy,buying,dips,bought', - description: - 'The key topics currently being discussed in the crypto industry on social media include buying the dip, staying long on strong altcoins, taking profit on the way up, strategies for individual quant/algo traders, celebrating opportunities to buy during market uncertainty, zooming out during market volatility, avoiding panic selling during bull market dips, smart money accumulating strong coins during market dips, and the potential for a bull market dip rather than a bear market. Additionally, specific coins such as $THOG and $HBAR are being mentioned as potential investment opportunities. Overall, the sentiment seems to be focused on strategic buying and holding during market fluctuations.', - data: [ - 18, 10, 11, 10, 0, 0, 4, 7, 86, 9, 8, 6, 18, 7, 57, 9, 7, 11, 26, 6, 9, 14, 14, 14, 9, 3, 5, - 16, 10, 18, 21, 30, 16, 14, 3, 13, 33, 11, 13, 16, 10, 11, 7, 16, 15, 12, 14, 13, 24, 14, - 10, 7, 12, 14, 9, - ], - }, - { - label: 'Hong Kong ETF', - topics: 'hong,kong,etfs,etf,spot', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry are the approval of spot Bitcoin and Ethereum ETFs in Hong Kong, with the Hong Kong market being compared to the US market. There is also mention of Japan collaborating on Chinese payment services and the approval of an ETH ETF in Hong Kong. Additionally, there is discussion about the differences between BTC/ETH redemption in Hong Kong ETFs versus cash settlement in the US Bitcoin ETF. Overall, there is a mix of bullish and bearish sentiments regarding the approval of ETFs in different regions, with competition being highlighted in the US and across Asia. Furthermore, there is mention of a partnership in Australia and New Zealand for trading BST through a brokerage service.', - data: [ - 6, 7, 73, 18, 11, 5, 8, 42, 4, 5, 11, 6, 3, 4, 5, 4, 33, 14, 9, 5, 4, 11, 12, 7, 4, 12, 6, - 4, 5, 10, 3, 16, 3, 7, 7, 10, 3, 15, 7, 5, 18, 4, 8, 10, 7, 19, 5, 3, 4, 1, 2, 5, 6, 9, 4, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,freedom,fixes,money,core', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n- Bitcoin's role as a proof-of-work asset and its security over time\n- The distinction between Bitcoin and other cryptocurrencies\n- The potential for diversification beyond Bitcoin in investment portfolios\n- The impact of institutions and governments on Bitcoin ownership and value\n- The potential for higher returns through small cap altcoins with strong teams and partnerships\n\nOverall, the sentiment towards Bitcoin seems positive, with discussions around its security, uniqueness, and potential for growth. There is also a focus on the broader cryptocurrency market and the opportunities it presents for investors.", - data: [ - 9, 6, 5, 15, 32, 44, 25, 6, 0, 3, 11, 12, 3, 0, 7, 7, 4, 3, 9, 13, 5, 10, 8, 1, 6, 9, 8, 11, - 5, 4, 7, 7, 3, 9, 5, 5, 11, 2, 11, 8, 13, 7, 17, 7, 16, 10, 8, 5, 7, 6, 18, 8, 1, 11, 6, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - 'The key topics currently discussed in the crypto industry on social media include meme coins, meme tokens, meme communities, the future of memecoins, potential rug pulls, Solana, Base, Blast memecoin markets, inclusive and transparent financial future, growth of meme coins like $PEPE, $BONK, and $DOGE, and the impact of internet culture on the established crypto elite. There is also a focus on launching new meme tokens, the power of meme communities, and the debate on whether memecoins are the future or just a fleeting joke. Overall, the discussion revolves around the intersection of technology, meme culture, and finance in the crypto industry.', - data: [ - 5, 1, 8, 10, 0, 2, 3, 8, 9, 5, 9, 5, 5, 5, 8, 5, 6, 3, 16, 5, 7, 13, 8, 7, 11, 5, 9, 6, 6, - 11, 10, 4, 109, 5, 6, 8, 7, 12, 6, 5, 7, 11, 10, 7, 7, 9, 6, 4, 11, 8, 6, 4, 3, 4, 7, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,artwork,pieces', - description: - 'The key topics discussed in the messages from twitter about art and crypto industry include NFTs, body painting, traditional art forms, artist interventions, and community engagement. Artists like Johannes Stötter and Andrew Scott are highlighted for their unique approaches to art creation, while the use of kawaii eyes and anime NFTs are also mentioned. The messages also touch on the concept of rewarding oneself with art purchases and the excitement of joining exclusive art clubs. Additionally, the mention of crypto currency $ARF indicates a potential investment opportunity in the art world.', - data: [ - 13, 4, 65, 5, 1, 0, 1, 2, 3, 6, 9, 4, 10, 11, 12, 8, 4, 4, 7, 7, 4, 2, 13, 5, 6, 12, 8, 10, - 6, 8, 10, 4, 6, 6, 10, 7, 16, 9, 4, 3, 4, 2, 7, 7, 15, 5, 8, 4, 6, 3, 5, 4, 8, 5, 9, - ], - }, - { - label: 'ETFs', - topics: 'etf,blackrock,outflows,net,grayscale', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- High-Yield Funds See Biggest Outflow of 2024\n- Grayscale's Bitcoin ETF lowering fees over time\n- Digital asset investment products witnessing outflows\n- Net outflows from US ETFs, particularly Grayscale\n- BlackRock's potential impact on the market\n- Ethereum Spot ETF or BlackRock Buidl Fund\n- Grayscale's ongoing selling and decreasing demand\n- Bitcoin ETF flow updates and net flows\n- Speculation on Grayscale potentially hitting zero in trading days\n\nOverall, the discussions revolve around market trends, fund outflows, fee reductions, and the potential impact of key players like Grayscale and BlackRock on the crypto industry.", - data: [ - 12, 0, 5, 9, 45, 0, 32, 17, 5, 1, 5, 2, 8, 9, 7, 1, 39, 5, 7, 9, 12, 1, 12, 2, 5, 8, 8, 2, - 6, 2, 0, 7, 2, 13, 11, 5, 0, 1, 1, 1, 7, 2, 7, 7, 1, 30, 2, 2, 3, 11, 2, 5, 2, 4, 12, - ], - }, - { - label: 'FED & Inflation', - topics: 'inflation,rates,fed,rate,economy', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- US consumer deterioration in April\n- Consumer price index for March 2024 quarter\n- Outlook for inflation\n- Economy slowing down\n- Results of the ECB Survey of Professional Forecasters for the second quarter of 2024\n- Inflation and its impact on power bills\n- Future of borrowing and lending in traditional banks\n- Impact of high interest rates on prices\n- IMF warning to US over spending and debt\n- Inflation blamed on Powell Pivot\n- Interest rates and rate cuts in 2024\n- Fragility test of markets and favorable factors for equities\n\nThese topics reflect a mix of economic indicators, inflation concerns, market trends, and policy implications that are shaping discussions within the crypto industry.', - data: [ - 8, 4, 6, 3, 0, 0, 2, 5, 3, 11, 6, 11, 4, 6, 3, 16, 2, 8, 5, 19, 8, 3, 11, 3, 13, 41, 11, 6, - 2, 0, 3, 58, 4, 5, 2, 3, 6, 3, 5, 6, 3, 6, 9, 4, 5, 8, 10, 5, 6, 0, 8, 5, 2, 8, 9, - ], - }, - { - label: 'BTC Price', - topics: 'rsi,support,candle,range,bounce', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n- Analysis of Bitcoin's price action and potential future movements\n- Discussion of various technical indicators such as RSI, MACD, and support/resistance levels\n- Speculation on potential price targets and levels for Bitcoin\n- Mention of specific altcoins such as $OCEAN and $RISITA\n- Analysis of market trends and potential scenarios for Bitcoin's price movement\n- Discussion of potential bullish and bearish scenarios for Bitcoin\n- Mention of potential liquidation events and support levels for Bitcoin\n- Speculation on the future direction of Bitcoin's price based on historical data and indicators\n- Analysis of potential breakout and reversal patterns for Bitcoin\n- Mention of potential market manipulation and the impact on Bitcoin's price\n- Discussion of potential long and short positions for Bitcoin trading\n- Mention of potential resistance levels and key price points for Bitcoin\n- Analysis of market sentiment and potential market trends for Bitcoin\n- Mention of potential scenarios for Bitcoin's price movement based on technical analysis and market trends.", - data: [ - 5, 5, 5, 7, 10, 19, 10, 36, 12, 10, 7, 5, 13, 13, 1, 5, 3, 2, 5, 0, 1, 4, 0, 6, 7, 10, 4, 0, - 1, 4, 23, 4, 1, 8, 4, 10, 7, 7, 7, 8, 2, 18, 5, 7, 3, 5, 9, 8, 7, 5, 4, 15, 1, 8, 5, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,presale,network,dex', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Solana ($SOL) experiencing issues with chain functionality, leading to trading difficulties and flash crashes for users\n- Positive sentiment towards Solana's potential for growth and innovation, with mentions of projects like Solestia and Zeus gaining traction\n- Comparison between Solana and other chains like Bitcoin and Ethereum, with discussions on market performance and potential market cap growth\n- Criticisms of Solana's congestion issues and challenges, but also optimism about the network's ability to improve and overcome obstacles\n- Trading strategies and experiences, including successful long positions on $SOL and losses due to leverage trading\n- Promotions of new projects and platforms on Solana, such as BlocksChat and Phantasma Swap\n- Speculation on the future of Solana as a retail chain with superior user experience compared to Ethereum, and the potential for Solana to attract institutional and DeFi players in the long term\n\nOverall, the sentiment towards Solana appears to be mixed, with users expressing both excitement for its potential and frustrations with current challenges. The community remains engaged and active in discussing various aspects of Solana and its ecosystem.", - data: [ - 5, 12, 4, 14, 0, 2, 4, 5, 5, 8, 4, 2, 3, 4, 14, 4, 4, 6, 9, 6, 6, 8, 4, 3, 7, 3, 2, 4, 6, 5, - 9, 4, 9, 8, 2, 10, 0, 1, 13, 4, 9, 6, 3, 3, 36, 3, 9, 6, 3, 4, 3, 10, 3, 5, 9, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,gamefi', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and the bullish sentiment towards it\n- The emergence of player-driven economies powered by NFTs in gaming\n- The impact of Bitcoin's price on gaming tokens\n- The development of portable crypto gaming devices\n- The excitement around new gaming platforms and titles such as Capsule Heroes and The Sandbox Game Builders Bootcamp program\n- The use of blockchain technology in gaming, particularly in creating unique digital assets and virtual worlds\n- The popularity of specific games like Star Citizen and Minecraft within the crypto community\n- The anticipation for new gaming launches and updates, such as the GTArbitrum bot launch\n- The involvement of influencers and content creators in promoting and engaging with crypto gaming projects.", - data: [ - 4, 6, 3, 4, 0, 1, 3, 2, 0, 3, 3, 3, 8, 1, 0, 5, 4, 12, 8, 5, 42, 7, 3, 1, 4, 2, 5, 5, 8, 1, - 4, 3, 5, 2, 3, 5, 2, 20, 4, 6, 5, 5, 2, 1, 1, 3, 2, 1, 9, 3, 8, 6, 4, 6, 3, - ], - }, - { - label: 'Gold & Silver', - topics: 'gold,peter,silver,vs,forecast', - description: - 'The key topics discussed in the messages from Twitter regarding the crypto industry and gold include:\n- Comparison between gold and Bitcoin in terms of investment potential\n- World Bank report highlighting advantages of central bank gold revaluation accounts\n- Shift in the gold market towards East, with China playing a pivotal role\n- Rising demand for gold and silver in China\n- Introduction of a new perpetual contract featuring Tether Gold on BitMEX\n\nOverall, the messages indicate a mix of opinions on gold and Bitcoin as investment options, as well as updates on market trends and new products in the crypto industry.', - data: [ - 6, 2, 1, 3, 17, 4, 2, 0, 2, 3, 2, 2, 3, 1, 2, 3, 3, 4, 2, 3, 1, 47, 40, 3, 5, 0, 8, 1, 1, 3, - 1, 6, 3, 0, 0, 5, 4, 2, 2, 1, 6, 0, 17, 2, 6, 2, 2, 1, 5, 1, 2, 1, 1, 2, 10, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,3000,target,price', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum\'s price dropping below $3,000 for the first time in 2 months\n- 27% of Ethereum now being staked, with $98 billion committed\n- Ethereum losing 41% of its value compared to Bitcoin since the "merge" to proof of stake\n- Ethereum facing hurdles near $3,200 and struggling to recover above the resistance zone\n- Analysts speculating about the future price of Ethereum, with some predicting $2,000\n- Divergence forming between ETHBTC and Total Value Locked in ETH terms on the Ethereum mainnet\n- Ethereum being seen as expensive, but with low costs for transactions on the Base chain\n- Short interest in Ethereum surging as the price teeters on crucial support at $3,000\n- Potential breakout targets for other cryptocurrencies like LUNA and TRU\n- Potential major decline for Ethereum if it stays below $3,200 and $3,280\n\nOverall, the sentiment seems mixed with some concerns about Ethereum\'s price and performance, while others are optimistic about potential breakout targets for other cryptocurrencies.', - data: [ - 4, 7, 0, 3, 0, 0, 1, 3, 5, 1, 3, 2, 1, 1, 3, 5, 59, 4, 2, 4, 4, 4, 0, 0, 4, 4, 3, 3, 0, 5, - 6, 2, 0, 1, 1, 2, 4, 7, 8, 1, 4, 2, 0, 6, 1, 2, 6, 3, 1, 4, 2, 11, 5, 2, 2, - ], - }, - { - label: 'NFT', - topics: 'nft,pfp,nfts,collection,mint', - description: - 'The key topics currently discussed in the messages from twitter are NFT art, ERC5773z, Rorschach series, SuperRareBot, WizardX_0x, NFT art season, ConfluxScan, Theory of Gravity free NFT mint, Workstation95 collection, Inspect integration with MultiversX, EGLD, Guild of Guardians Avatars, Immutable zkEVM, WELL3 journey, BNBCHAIN, Staking Template Bounty, BurntPix NFT, digital ownership, NFTs vs SFTs, and tradedog.io blog.', - data: [ - 3, 4, 4, 5, 1, 0, 0, 0, 1, 9, 11, 4, 5, 3, 2, 5, 2, 4, 4, 12, 3, 5, 4, 0, 5, 3, 3, 3, 7, 3, - 4, 3, 15, 3, 16, 5, 8, 4, 2, 3, 2, 4, 1, 1, 1, 0, 7, 4, 2, 2, 3, 1, 2, 0, 5, - ], - }, - { - label: 'Blockchain Security', - topics: 'blockchain,security,identity,transactions,smart', - description: - 'The messages from Twitter are discussing various topics related to the crypto industry, including blockchain technology, scalability, security, privacy, interoperability, decentralization, and tokenomics. Key words mentioned in the messages include blockchain, scalability, security, privacy, interoperability, Algorand, Syntropy, NFTs, Wanchain, DUSK, and blockchain-powered security exchange. The messages also mention specific projects and events such as the Venom Foundation, Partisia MPC, Swarm Grants Wave, Flow transactions, Harvard College speaking event, and The Social Laboratory x Global Blockchain Show. Overall, the messages highlight the ongoing developments and innovations in the crypto industry, with a focus on improving technology, security, and industry adoption.', - data: [ - 2, 4, 2, 0, 0, 0, 7, 0, 2, 10, 3, 7, 2, 7, 14, 4, 8, 10, 2, 6, 1, 0, 3, 2, 2, 8, 10, 8, 6, - 0, 4, 1, 1, 0, 8, 2, 1, 2, 6, 4, 1, 3, 5, 2, 9, 4, 3, 1, 1, 2, 7, 3, 2, 6, 1, - ], - }, - { - label: 'Tesla', - topics: 'tesla,employees,stock,elon,elonmusk', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Tesla's new Roadster and Plaid model\n- Tesla Cybertruck updates and improvements\n- Rumors of Tesla laying off employees\n- Comparison of Tesla's Full Self-Driving (FSD) costs versus rental prices\n- Alphabet firing workers involved in a protest\n- Tesla stock strategy and entry points\n- The impact of the 10-year yield on the S&P 500\n- Layoffs at Tesla and criticism of the company's performance\n- Reasons why Tesla does not allow consumers to buy back their cars after the lease is over, including the economics of robotaxi utilization.", - data: [ - 2, 1, 4, 2, 0, 0, 1, 0, 0, 1, 2, 1, 5, 1, 3, 4, 2, 1, 1, 4, 1, 1, 1, 0, 1, 1, 7, 2, 7, 2, 4, - 5, 3, 1, 1, 0, 0, 3, 3, 2, 2, 2, 4, 3, 5, 3, 1, 27, 1, 3, 21, 1, 0, 3, 3, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dogs,pvp,elon', - description: - "Based on the messages from Twitter, it is evident that Dogecoin ($DOGE) is a popular topic of discussion within the crypto community. Some key points mentioned include:\n\n1. Dogecoin's potential for a massive price increase to $0.26.\n2. Concerns about Dogecoin falling 14% in a single day.\n3. Comparisons between weekly gains of $SHIB and $DOGE.\n4. Speculation about using Dogecoin as a representation of retail sentiment.\n5. Analysts being bullish on Dogecoin reclaiming $0.20 amidst volatility.\n6. Dogecoin's performance over the past year, including rallies and dumps.\n7. Mention of other dog-themed cryptocurrencies like BabyDoge, Shiba, DogElonMars, Floki, and Bonk.\n8. Technical analysis of $DOGE's support levels and potential buying opportunities.\n\nOverall, the sentiment towards Dogecoin appears to be mixed, with some optimistic about its future price potential while others remain cautious about its volatility.", - data: [ - 0, 5, 2, 3, 0, 0, 1, 1, 3, 2, 1, 1, 0, 1, 42, 37, 1, 2, 1, 3, 0, 1, 0, 1, 1, 3, 2, 0, 3, 1, - 5, 6, 0, 0, 0, 1, 1, 1, 2, 2, 2, 0, 0, 5, 3, 0, 1, 0, 4, 0, 0, 1, 3, 3, 0, - ], - }, - { - label: 'Farming', - topics: 'farming,param,bubble,farm,trip', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include farming various tokens such as $BUBBLE, $PARAM, $BEYOND, $COOKIE, and $MOJO. There is a focus on engaging with these tokens to generate wealth, with mentions of giveaways and rewards for participants. Additionally, there is discussion about the importance of rangers in gaming and the potential for Play 2 Earn to fuel the next bull run in the market. Overall, the community is actively participating in farming activities and looking for opportunities to maximize their earnings.', - data: [ - 0, 1, 2, 0, 0, 0, 1, 7, 2, 3, 2, 2, 1, 1, 0, 1, 4, 1, 49, 1, 2, 2, 3, 3, 1, 3, 1, 3, 2, 4, - 2, 0, 1, 3, 2, 2, 2, 4, 0, 1, 1, 0, 2, 1, 5, 4, 2, 1, 2, 4, 1, 0, 2, 2, 1, - ], - }, - { - label: 'RUNES', - topics: 'runes,rune,brc20,protocol,ordinals', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Runes, Ordinals, Bitcoin, tokenization, DeFi, and the upcoming Runes protocol launch. There is excitement and anticipation surrounding the Runes project, with mentions of potential high returns and the project's potential to bridge the gap between Bitcoin and Ethereum. Additionally, there are discussions about the impact of Runes on the crypto market, the involvement of key figures like Casey Rodarmor, and the community's engagement with the project. Overall, the sentiment seems positive and optimistic about the future of Runes and its potential impact on the crypto industry.", - data: [ - 4, 1, 0, 0, 0, 4, 2, 6, 0, 1, 2, 3, 2, 2, 3, 1, 0, 3, 1, 3, 0, 5, 2, 2, 2, 1, 4, 0, 1, 3, 0, - 0, 2, 1, 0, 1, 0, 6, 4, 4, 3, 45, 2, 0, 0, 0, 2, 1, 1, 2, 0, 2, 0, 3, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-16.json b/priv/repo/major_topics_seed/data-16.json deleted file mode 100644 index 4cd87898e6..0000000000 --- a/priv/repo/major_topics_seed/data-16.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["18.04.24","19.04.24","19.04.24","19.04.24","19.04.24","19.04.24","19.04.24","19.04.24","20.04.24","20.04.24","20.04.24","20.04.24","20.04.24","20.04.24","20.04.24","20.04.24","21.04.24","21.04.24","21.04.24","21.04.24","21.04.24","21.04.24","21.04.24","21.04.24","22.04.24","22.04.24","22.04.24","22.04.24","22.04.24","22.04.24","22.04.24","22.04.24","23.04.24","23.04.24","23.04.24","23.04.24","23.04.24","23.04.24","23.04.24","23.04.24","24.04.24","24.04.24","24.04.24","24.04.24","24.04.24","24.04.24","24.04.24","24.04.24","25.04.24","25.04.24","25.04.24","25.04.24","25.04.24","25.04.24","25.04.24"],"datasets":[{"label":"BTC price","topics":"btc,price,resistance,chart,range","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin price predictions: There are discussions about the potential for Bitcoin to reach $100,000 this year and even $900,000 by September 2025 based on fractal analysis.\n2. Technical analysis: Traders are analyzing charts and patterns such as Bull Flag Pattern and Elliott Wave Theory to make predictions about Bitcoin's price movements.\n3. Market sentiment: There is a mix of bullish and bearish sentiment, with some expecting a breakout above certain resistance levels while others caution about potential selloffs and the need for volume validation.\n4. Fundamental analysis: Some users are discussing the fundamentals of Bitcoin, highlighting its strong underpinning and solid foundation despite market volatility.\n5. Altcoins and related stocks: Mention of altcoins like MARA, RIOT, CIFR, CLSK, WULF, and related stocks in the context of Bitcoin's price movements and market analysis.\n6. Seasonality and geopolitical factors: Discussions about seasonality trends in the crypto market and how geopolitical situations may impact Bitcoin's price.\n7. Liquidations and market updates: Alerts about potential liquidations if Bitcoin rebounds to certain price levels and recommendations to follow specific media outlets for market updates.","data":[17,17,6,22,27,94,32,56,13,6,29,17,6,26,7,20,7,18,17,15,10,20,8,8,32,10,24,15,2,11,38,35,12,20,9,5,10,29,30,21,10,12,10,29,5,11,23,13,23,16,17,26,7,16,12]},{"label":"BTC & fiat","topics":"fiat,money,bitcoin,shitcoin,freedom","description":"The messages from Twitter about the crypto industry mainly focus on Bitcoin (#Bitcoin). The discussions revolve around the concept of Bitcoin being a form of energy money with built-in property rights, the idea of choosing freedom by investing in Bitcoin, and the belief that Bitcoin is a perfectly engineered form of money. There is also mention of skepticism towards traditional fiat currencies and trust in the full faith and credit of the United States government, with Bitcoin being seen as a more reliable alternative.\n\nAdditionally, there is a debate about whether Bitcoin should be used as a savings vehicle and reserve asset rather than for spending, and a call for Bitcoiners to shake things up in the digital payments space. The messages also touch on the idea that Bitcoin will eventually serve as a store of value, peer-to-peer currency for poorer individuals, and a means of transferring value within communities.\n\nOverall, the messages reflect a mix of optimism, skepticism, and debate surrounding the role and potential of Bitcoin within the crypto industry.","data":[12,6,8,19,54,70,33,5,13,13,19,14,11,13,17,15,13,12,17,22,16,16,12,4,22,17,6,9,16,28,7,13,4,38,6,18,31,21,10,18,15,14,21,20,14,17,11,17,12,8,17,14,14,16,16]},{"label":"BTC halving","topics":"halving,bitcoin,bitcoinhalving,event,bitcoins","description":"The messages from Twitter are discussing the recent completion of the Bitcoin Halving event and its potential impact on the cryptocurrency market. Key topics include the excitement surrounding the halving, speculation on how it will affect Bitcoin's price, comparisons to previous halving events, and discussions on potential bullish trends in the market. Additionally, there is mention of celebrity reactions to the halving, the anticipation of ETFs, and advice for those new to crypto investing. Overall, the sentiment seems positive towards the Bitcoin Halving and its implications for the future of cryptocurrency.","data":[5,6,9,10,159,48,16,11,8,10,8,18,11,4,9,5,6,11,5,4,12,6,5,96,8,4,6,5,3,11,2,4,3,4,5,5,4,24,4,5,7,2,5,5,4,6,11,5,4,9,3,10,4,11,6]},{"label":"RUNE","topics":"runes,ordinals,rune,protocol,eden","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Ordinals, #RUNES on #Bitcoin, NFT market trends, and the impact of fungible tokens on Bitcoin. \n\nThere is a lot of buzz around Ordinals, with some users expressing skepticism initially but then diving deeper into understanding the protocol. The creation of the ordinals protocol last year during a black swan event has caught the attention of many in the crypto community.\n\n#RUNES on #Bitcoin is also a hot topic, with discussions about the protocol's recent launch and its implications on Bitcoin. Users are curious about how fungible tokens could shake up the world of Bitcoin and are eager to learn more about the protocol from its creator, Casey Rodarmor.\n\nAdditionally, there are mentions of NFT market trends, with Magic Eden leading in trading volume and market share. The surge in trading volume for Magic Eden in March has outpaced other marketplaces, indicating a growing interest in NFTs.\n\nOverall, the discussions on social media suggest a mix of excitement, skepticism, and curiosity surrounding Ordinals, #RUNES on #Bitcoin, and NFT market trends in the crypto industry.","data":[8,9,6,10,10,13,2,7,16,7,9,8,5,15,14,9,7,12,10,7,18,12,9,8,13,18,11,6,11,8,7,18,12,7,3,30,13,12,11,13,8,120,7,7,5,4,8,26,11,6,7,8,11,12,4]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coin","description":"The messages from Twitter suggest that there is a lot of discussion and hype surrounding memecoins in the crypto industry. People are talking about potential pumps, investments, and bullish sentiments towards certain memecoins. There is also mention of the oversaturation of smallcap memecoins and comparisons to NFT projects. Additionally, there is a mention of a specific memecoin, $BAGS, being highlighted as a long-term, sustainable solution on a platform called @base. Overall, it seems like memecoins are a hot topic of conversation and speculation within the crypto community on social media.","data":[13,13,3,7,0,1,1,4,11,7,10,8,6,4,10,5,2,0,5,4,6,15,11,2,2,7,4,14,7,7,11,5,112,9,8,7,6,9,1,13,3,8,5,3,13,8,14,16,13,8,6,4,3,11,5]},{"label":"AI","topics":"ai,microsoft,generative,tech,intelligence","description":"The key topics currently discussed in the crypto industry on social media include the integration of AI into daily life, the ethical implications of human-like AI, the use of blockchain technology for provenance, the development of decentralized physical infrastructure networks for AI, the impact of AI on various industries such as gaming and financial services, and the advancements in AI technologies such as AI agents and LLMs. Additionally, there is a focus on specific AI projects such as $TAO, $FET, $RNDR, $PAAL, and $ASCN, with anticipation for their performance in the market. Overall, the intersection of AI and crypto is a prominent theme in the discussions on social media platforms.","data":[48,18,13,15,0,0,1,4,4,7,8,15,9,9,18,9,6,7,4,4,8,8,5,3,6,1,7,5,8,5,3,5,10,6,9,7,7,14,7,10,6,5,6,4,12,4,7,4,5,2,13,5,7,5,6]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto gaming community on Twitter include:\n- Immutable launching a crypto gaming rewards program worth $50 million\n- Excitement for new games dropping on portal and other platforms\n- The desire for a nostalgia-inspired MMORPG with real-life stakes through a decentralized economy\n- Splinterlands offering airdrops for staking cards\n- Web3 enabling unique gaming experiences\n- Predictions for the growth of PIXEL token\n- Kogaea, a new game with dungeons and epic battles\n- ESM X aiming to onboard traditional gamers into Web3\n- StellarGate.io building an ambitious FPS MMO space adventure game\n- StreamingArtWAX hosting an intergalactic adventure on Twitch Games with a chance to win Alien Worlds NFT prizes.","data":[7,7,13,13,0,0,1,5,4,6,6,3,4,7,11,3,8,19,11,5,50,7,4,0,6,9,11,6,11,6,11,6,2,5,12,2,3,28,6,7,6,5,4,4,14,8,4,2,9,4,10,7,6,4,6]},{"label":"Tesla","topics":"tesla,tsla,earnings,elon,car","description":"The key topics currently being discussed on Twitter in relation to the crypto industry include Tesla's Q2 earnings, the stock performance of Tesla ($TSLA), Elon Musk's decisions regarding layoffs and Bitcoin holdings, comparisons between Tesla and other auto makers like Toyota, concerns about Tesla's future as a company, and the potential for Tesla to become a Robotaxi company. There is also discussion about the impact of Tesla's stock price on its market value and comparisons to other companies like Uber. Additionally, there are criticisms of Elon Musk's leadership and decisions regarding Tesla. Overall, the sentiment on Twitter seems to be mixed, with some expressing concerns about Tesla's future while others remain optimistic about its potential as a company.","data":[8,5,5,5,0,0,1,4,8,3,3,5,2,4,1,9,8,6,2,7,5,4,9,1,3,1,6,5,3,4,3,5,1,7,5,5,5,10,5,1,10,6,12,7,4,8,3,60,2,2,51,9,6,5,1]},{"label":"Art","topics":"art,artists,artist,xlm,collection","description":"The key topics currently discussed in the crypto industry on social media include:\n- Hyperlane art and the need for more of it\n- The concept of art and its subjective nature\n- The importance of art as a form of expression\n- NFTs and their role in the art world\n- The process of creating art, such as squeegee painting\n- Opportunities for artists, such as grants and blockchain platforms like RARI Chain and Rarible\n- The impact of art on individuals and communities\n- The value of collecting art and supporting artists\n- The influence of technology on art creation and distribution\n- The celebration of artists and their work, such as James Hamilton and Coldie\n\nOverall, the discussions on social media reflect a vibrant and diverse art community within the crypto industry, with a focus on creativity, innovation, and collaboration.","data":[5,8,72,6,0,0,0,1,6,3,3,9,6,5,5,4,8,3,8,5,5,4,7,0,3,3,8,4,2,7,7,2,1,4,3,6,11,1,1,10,9,2,1,5,4,3,2,5,9,4,6,4,5,2,8]},{"label":"Transaction Fees","topics":"fees,transaction,block,fee,high","description":"The key topic currently being discussed on Twitter in the crypto industry is the significant increase in transaction fees on the Bitcoin blockchain. There is a lot of attention on the record-breaking block 840,000, which saw 37.625 BTC in fees, the highest ever recorded. This surge in fees is attributed to a new protocol called Runes, which has caused a frenzy among users. Despite the high fees, there is debate on whether they are too high or low at the moment, with some users pointing out the volatility in fees post-halving. Additionally, there is discussion about the SORA network updating its fees to maintain stability and alignment with target prices. Overall, the community is closely monitoring the fluctuating transaction fees on the Bitcoin blockchain.","data":[2,1,6,5,18,7,47,8,1,4,0,1,11,4,4,1,1,1,35,1,2,2,1,14,7,7,11,1,2,3,9,6,5,2,7,3,5,1,3,1,6,3,1,1,4,0,0,0,0,7,16,4,1,2,2]},{"label":"SOL","topics":"solana,sol,presale,meme,coins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Solana memes vs Runes: There is a comparison between the performance of Solana and meme coins, with Solana pumping while meme coin bags are dumping.\n- Losses in meme coin projects on Solana: Investors have lost a significant amount of money, $26.7 million, due to rug pulls in meme coin projects on Solana.\n- Long opportunities in Solana: Some traders are looking for long opportunities in Solana, especially after a dip.\n- Memecoins as an asset class: There is a discussion about the lasting value of memes and how they are developing into an asset class.\n- Scams in Solana memecoins: There is a warning about scams in Solana memecoins, where developers divide funds among multiple wallets and insta-sell at once.\n- Fame Protocol on Solana: A protocol called Fame Protocol is mentioned as a project worth participating in on Solana, streamlining fundraising and token issuance.\n- Rebel Satoshi's presale: Rebel Satoshi's presale is causing excitement in the market, leading to significant drops in Solana and Cardano prices.\n- Halving Inu on Solana: A project called Halving Inu on Solana is highlighted as ready for a massive run, with upcoming CEX listings.\n\nOverall, the discussions on social media platforms like Twitter revolve around the performance of Solana, meme coins, scams, new projects, and market trends in the crypto industry.","data":[4,5,4,6,0,2,1,6,6,2,9,5,5,2,4,2,2,6,4,2,2,3,2,4,5,2,4,4,2,6,5,4,19,6,3,5,3,4,8,7,9,4,8,7,18,1,9,1,5,7,5,6,5,2,3]},{"label":"USDT & TON","topics":"ton,tether,telegram,usdt,stablecoin","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Tether expanding USDT support to the TON network and unveiling a transparency page.\n2. Tether CEO announcing the integration of USDT into the TON network.\n3. Tether expanding USDT and XAUT stablecoins to the TON ecosystem to boost peer-to-peer payments on Telegram.\n4. Launch of US Dollar stablecoin on Telegram's network.\n5. Introduction of USDT stablecoin on TON blockchain for higher liquidity.\n6. Multicheque for 0.1 TON available at approximately 0.56 USD.\n7. Bitball ecosystem opening markets for all tokens on Latoken crypto exchange.\n8. Launch plan for BitBall on Solana chain to be announced soon.\n9. Integration of Chain Abstraction directly into Telegram account for various cryptocurrencies.\n10. Allegations of fraud against Binance related to market manipulation.","data":[1,8,6,5,0,0,2,7,2,1,2,4,2,0,3,1,4,9,0,5,3,1,2,0,1,2,9,5,3,3,1,6,2,1,7,10,4,1,4,1,1,2,4,0,2,2,4,51,3,32,1,6,2,1,0]},{"label":"Halving celebration","topics":"happy,halving,day,420,4th","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin Halving Day celebrations and excitement\n- Generational wealth opportunities with Bitcoin\n- Dispensary visits and art displays on 4/20\n- Skepticism towards traditional financial figures like Jamie Dimon\n- Trading contests and prize pools in the crypto community\n- Minting and selling digital art on platforms like SuperRare\n- Speculation on leveraged shorts being liquidated with Bitcoin crossing $71k\n- Potential big moves from projects like $ZCX on Unizen_io\n\nOverall, the sentiment seems to be positive and optimistic about the future of Bitcoin and the crypto industry, with a focus on wealth generation, creativity, and community engagement.","data":[1,1,0,1,0,1,1,0,0,3,2,3,1,6,0,0,2,0,2,3,2,2,2,151,15,2,0,2,2,1,0,0,1,0,1,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,1,2,0,3]},{"label":"Hong Kong ETF","topics":"hong,kong,etfs,etf,spot","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The approval of Bitcoin and Ethereum Spot ETFs in Hong Kong, with trading set to begin on April 30th.\n2. The Chinese Embassy advising citizens in Angola to avoid crypto mining, following the detainment of Chinese nationals engaged in cryptocurrency mining in Angola.\n3. The launch of Harvest Fund's Bitcoin ETF with a 0% fee on April 30th, sparking fee wars in the ETF market.\n4. Hong Kong's emergence as a crypto ETF hub, potentially fueling a multi-billion dollar liquidity wave into Bitcoin.\n5. Angola officially banning all cryptocurrency mining activities to protect energy supplies.\n6. The potential impact of Hong Kong's ETF approval on Bitcoin's journey to $100K.\n7. The integration of crypto payments by companies like Stripe, along with other bullish developments in the crypto market.\n8. The significance of IMF's research note and the promising outlook for Bitcoin.\n9. The importance of in-kind approach in trading ETFs for crypto natives, market makers, and digital-asset exchanges.\n10. The joint military drills between the US and Philippines near China's doorstep, adding geopolitical tensions to the mix.","data":[1,4,11,11,5,0,2,16,0,5,5,3,5,5,1,1,20,5,3,1,2,0,3,0,4,8,3,5,4,3,0,3,1,2,1,11,2,2,1,2,1,1,2,5,9,9,2,1,4,2,1,3,5,6,1]},{"label":"SHIB","topics":"shiba,inu,shib,treat,raises","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Comparison of gains between $SHIB and $DOGE\n- New Crypto Whale acquiring 237.8 billion SHIB following a key Shiba Inu blockchain announcement\n- Expert trader sharing a simple Shiba Inu trading plan\n- Unveiling of BONE use case in Layer 3 blockchain by Shiba Inu lead\n- Shiba Inu soaring 18% as the crypto market recovers\n- Shiba Inu price surging 50% in 10 days with potential for more gains ahead\n- Plans for funds investing in memes and meme infrastructure with SHIB team leading the way\n- Shiba Inu being referred to as the chosen coin of this cycle\n- Shytoshi Kusama, the mysterious leader of Shiba Inu, breaking silence with a message for SHIB fudders and hinting at ShibaSwap's future\n- SHIB climbing 17% with Shiboshis NFTs spearheading growth\n- Shiba Inu raising $12 million by selling its unreleased token, TREAT, to non-U.S. venture capital investors\n- Announcement of a 30% off flash sale for $SHIBB on BitMart Launchpad\n\nOverall, the sentiment around Shiba Inu (SHIB) seems positive with discussions focusing on price surges, new developments, and potential for further growth.","data":[2,0,2,2,0,1,2,2,5,2,4,2,2,2,2,1,0,3,1,2,1,0,1,0,1,4,3,43,11,0,0,3,2,2,5,2,0,4,6,13,6,4,1,35,0,2,4,3,0,0,0,4,1,0,1]},{"label":"PEPE perpetual futures","topics":"pepe,perpetual,futures,coinbase,wif","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the following:\n\n1. #PEPE Coin Rockets 16% Following #Coinbase Perpetual Futures Listing\n2. Pepe Coin Price Eyes $0.00001 High As Chart Pattern Hints End-of-Correction Trend\n3. Memecoin Rally Signifies Confidence Returning To Crypto Market\n4. Memecoins are starting to surge in price again, with coins like $WIF, $PEPE, $BODEN, and $MAGA putting on a surge\n5. Comparison of $VINU with other top memecoins on Binance, with discussions about potential flipping of $WIF, $SHIB, or $DOGE\n6. Discussion about the importance of memecoins in the crypto industry and their role in onboarding new users\n7. Analysis of market trends, including the performance of $PEPE with a market cap of more than $2.5B and the recent bullish chart pattern\n8. Speculation about the potential pump in #MUMUUSDT and the breaking of the diagonal trendline for $MUMU\n9. Mention of various memecoins like $DOGE, $SHIB, $PEPE, $WIF, and their impact on the crypto market\n10. Community strength and listing votes for $VINU on platforms like Bybit, Gateio, Kucoin, and potential listing on Binance Futures\n\nOverall, the discussions on social media platforms reflect a mix of market analysis, price speculation, community engagement, and the role of memecoins in the crypto industry.","data":[3,4,1,2,0,0,1,4,4,1,4,1,2,2,2,2,0,3,1,7,1,2,4,0,3,3,1,0,6,1,4,3,11,1,1,0,34,2,2,3,1,3,1,4,3,1,9,0,3,2,2,3,3,4,1]},{"label":"XRP","topics":"ripple,xrp,sec,lawsuit,vs","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Ripple vs. SEC Lawsuit: There is speculation about a potential settlement between Ripple and the SEC, as well as discussions about the impact of the lawsuit on XRP's price fluctuations.\n\n2. XRP Price Movement: Analysts are predicting a surge in XRP's price to $1.20 amid market volatility, with signs of renewed bullish momentum in the market.\n\n3. XRP News: There are updates on XRP's legal setbacks in the SEC lawsuit, as well as insights into the USDC/XRP AMM Pool imbalance provided by a Ripple Labs veteran.\n\n4. Crypto Market Update: XRP has shown resilience in the market, bouncing back from a significant price drop and gaining ground against Ethereum, while Cardano faces hurdles.\n\n5. Top Crypto Picks: Influencers are sharing their top crypto picks, with some suggesting that XRP has greater growth potential than Ethereum.\n\nOverall, the discussions on social media indicate a mix of optimism and uncertainty surrounding XRP's future performance in the crypto market.","data":[1,4,3,2,0,0,0,1,2,3,7,3,6,3,4,1,1,4,5,0,2,0,1,0,3,0,3,1,4,4,0,0,3,3,2,4,3,9,17,2,4,20,2,4,2,2,3,1,2,0,2,1,0,2,4]},{"label":"DoJ vs CZ and others","topics":"cz,founder,binance,seeks,ceo","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. U.S. Department of Justice seeking a 3-year jail time for Binance founder Changpeng Zhao for money laundering and fraud charges.\n2. Avraham Eisenberg, the Mango Markets hacker, convicted of fraud and manipulation in a Manhattan federal court for orchestrating a scheme that stole $110 million from the DeFi platform.\n3. Discussion on the sentencing of Avraham Eisenberg, with a potential sentence of up to 20 years in prison expected.\n4. Debate on the appropriate punishment for Changpeng Zhao, with the defense team requesting probation instead of imprisonment.\n5. Reuters reporting on U.S. prosecutors seeking a 36-month prison sentence for Changpeng Zhao after pleading guilty to violating money laundering laws.\n6. Criticism of the perceived leniency of a 3-year prison sentence for Changpeng Zhao given the scale of alleged fraud and money laundering activities by Binance.\n7. Mention of a fake website scam involving Coinbase and an Indian man stealing $9.5 million in crypto.\n8. Concerns about the involvement of Binance in facilitating fraud and money laundering for terrorists, drug cartels, and rogue states.\n9. Comparison of Avraham Eisenberg as a criminal who was smart enough to execute a crime but not smart enough to hide and launder the proceeds cleanly.\n10. Discussion on the potential impact of these legal cases on the crypto industry and the reputation of major players like Binance and its founder.","data":[2,9,2,0,0,0,0,9,0,0,1,1,4,3,3,0,0,6,2,14,1,0,6,0,0,2,4,8,1,2,0,5,0,0,0,3,0,0,10,1,6,0,16,6,3,0,3,2,0,0,1,0,2,3,5]},{"label":"Lawsuits vs SEC","topics":"sec,lawsuit,metamask,rule,securities","description":"The key topic currently being discussed in the crypto industry on social media is the lawsuit filed by various crypto industry groups against the SEC over the new 'dealer' rule. The lawsuit claims that the SEC is overreaching in its definition of a dealer and is imposing overzealous regulations on the industry. Consensys, a major backer of the Ethereum blockchain, has also filed a lawsuit against the SEC over its regulation of the popular MetaMask wallet and is seeking clarity on whether ETH is considered a security. The Blockchain Association and Crypto Freedom Alliance are also fighting back against the SEC's 'Dealer Rule' in a landmark lawsuit. Overall, the industry is pushing back against what they perceive as excessive regulation from the SEC.","data":[1,3,3,1,0,0,0,10,0,4,4,8,10,4,0,1,1,2,6,3,3,1,4,0,3,3,0,3,1,2,1,4,2,0,1,3,0,0,1,1,2,3,4,1,2,3,20,4,2,3,2,3,2,0,1]},{"label":"DeFi","topics":"defi,decentralized,finance,projects,protocol","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include DeFi (Decentralized Finance), new projects and partnerships in the DeFi space, maximizing earnings in DeFi through farming pools, the convergence of traditional finance and DeFi, the metrics and sustainability of DeFi protocols, the empowerment and responsibility in DeFi, and new opportunities and partnerships in the DeFi space. Additionally, there is a focus on specific projects such as Koi Farming Pools, PolynomialFi, NEOPIN SDLP, and DEGO Finance, as well as events like the SecondLiveReal Eco-Partner Program and Token2049 in Dubai. Overall, the discussions highlight the growth, innovation, and complexities within the DeFi sector.","data":[2,4,5,3,1,0,0,1,4,3,3,4,0,3,10,1,1,7,2,3,1,4,1,0,2,4,3,2,7,3,3,1,1,2,7,1,5,1,3,5,5,1,2,0,1,1,2,3,2,2,2,0,0,6,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-16.ts b/priv/repo/major_topics_seed/data-16.ts deleted file mode 100644 index 5303e4f126..0000000000 --- a/priv/repo/major_topics_seed/data-16.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '18.04.24', - '19.04.24', - '19.04.24', - '19.04.24', - '19.04.24', - '19.04.24', - '19.04.24', - '19.04.24', - '20.04.24', - '20.04.24', - '20.04.24', - '20.04.24', - '20.04.24', - '20.04.24', - '20.04.24', - '20.04.24', - '21.04.24', - '21.04.24', - '21.04.24', - '21.04.24', - '21.04.24', - '21.04.24', - '21.04.24', - '21.04.24', - '22.04.24', - '22.04.24', - '22.04.24', - '22.04.24', - '22.04.24', - '22.04.24', - '22.04.24', - '22.04.24', - '23.04.24', - '23.04.24', - '23.04.24', - '23.04.24', - '23.04.24', - '23.04.24', - '23.04.24', - '23.04.24', - '24.04.24', - '24.04.24', - '24.04.24', - '24.04.24', - '24.04.24', - '24.04.24', - '24.04.24', - '24.04.24', - '25.04.24', - '25.04.24', - '25.04.24', - '25.04.24', - '25.04.24', - '25.04.24', - '25.04.24', - ], - datasets: [ - { - label: 'BTC price', - topics: 'btc,price,resistance,chart,range', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin price predictions: There are discussions about the potential for Bitcoin to reach $100,000 this year and even $900,000 by September 2025 based on fractal analysis.\n2. Technical analysis: Traders are analyzing charts and patterns such as Bull Flag Pattern and Elliott Wave Theory to make predictions about Bitcoin's price movements.\n3. Market sentiment: There is a mix of bullish and bearish sentiment, with some expecting a breakout above certain resistance levels while others caution about potential selloffs and the need for volume validation.\n4. Fundamental analysis: Some users are discussing the fundamentals of Bitcoin, highlighting its strong underpinning and solid foundation despite market volatility.\n5. Altcoins and related stocks: Mention of altcoins like MARA, RIOT, CIFR, CLSK, WULF, and related stocks in the context of Bitcoin's price movements and market analysis.\n6. Seasonality and geopolitical factors: Discussions about seasonality trends in the crypto market and how geopolitical situations may impact Bitcoin's price.\n7. Liquidations and market updates: Alerts about potential liquidations if Bitcoin rebounds to certain price levels and recommendations to follow specific media outlets for market updates.", - data: [ - 17, 17, 6, 22, 27, 94, 32, 56, 13, 6, 29, 17, 6, 26, 7, 20, 7, 18, 17, 15, 10, 20, 8, 8, 32, - 10, 24, 15, 2, 11, 38, 35, 12, 20, 9, 5, 10, 29, 30, 21, 10, 12, 10, 29, 5, 11, 23, 13, 23, - 16, 17, 26, 7, 16, 12, - ], - }, - { - label: 'BTC & fiat', - topics: 'fiat,money,bitcoin,shitcoin,freedom', - description: - 'The messages from Twitter about the crypto industry mainly focus on Bitcoin (#Bitcoin). The discussions revolve around the concept of Bitcoin being a form of energy money with built-in property rights, the idea of choosing freedom by investing in Bitcoin, and the belief that Bitcoin is a perfectly engineered form of money. There is also mention of skepticism towards traditional fiat currencies and trust in the full faith and credit of the United States government, with Bitcoin being seen as a more reliable alternative.\n\nAdditionally, there is a debate about whether Bitcoin should be used as a savings vehicle and reserve asset rather than for spending, and a call for Bitcoiners to shake things up in the digital payments space. The messages also touch on the idea that Bitcoin will eventually serve as a store of value, peer-to-peer currency for poorer individuals, and a means of transferring value within communities.\n\nOverall, the messages reflect a mix of optimism, skepticism, and debate surrounding the role and potential of Bitcoin within the crypto industry.', - data: [ - 12, 6, 8, 19, 54, 70, 33, 5, 13, 13, 19, 14, 11, 13, 17, 15, 13, 12, 17, 22, 16, 16, 12, 4, - 22, 17, 6, 9, 16, 28, 7, 13, 4, 38, 6, 18, 31, 21, 10, 18, 15, 14, 21, 20, 14, 17, 11, 17, - 12, 8, 17, 14, 14, 16, 16, - ], - }, - { - label: 'BTC halving', - topics: 'halving,bitcoin,bitcoinhalving,event,bitcoins', - description: - "The messages from Twitter are discussing the recent completion of the Bitcoin Halving event and its potential impact on the cryptocurrency market. Key topics include the excitement surrounding the halving, speculation on how it will affect Bitcoin's price, comparisons to previous halving events, and discussions on potential bullish trends in the market. Additionally, there is mention of celebrity reactions to the halving, the anticipation of ETFs, and advice for those new to crypto investing. Overall, the sentiment seems positive towards the Bitcoin Halving and its implications for the future of cryptocurrency.", - data: [ - 5, 6, 9, 10, 159, 48, 16, 11, 8, 10, 8, 18, 11, 4, 9, 5, 6, 11, 5, 4, 12, 6, 5, 96, 8, 4, 6, - 5, 3, 11, 2, 4, 3, 4, 5, 5, 4, 24, 4, 5, 7, 2, 5, 5, 4, 6, 11, 5, 4, 9, 3, 10, 4, 11, 6, - ], - }, - { - label: 'RUNE', - topics: 'runes,ordinals,rune,protocol,eden', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Ordinals, #RUNES on #Bitcoin, NFT market trends, and the impact of fungible tokens on Bitcoin. \n\nThere is a lot of buzz around Ordinals, with some users expressing skepticism initially but then diving deeper into understanding the protocol. The creation of the ordinals protocol last year during a black swan event has caught the attention of many in the crypto community.\n\n#RUNES on #Bitcoin is also a hot topic, with discussions about the protocol's recent launch and its implications on Bitcoin. Users are curious about how fungible tokens could shake up the world of Bitcoin and are eager to learn more about the protocol from its creator, Casey Rodarmor.\n\nAdditionally, there are mentions of NFT market trends, with Magic Eden leading in trading volume and market share. The surge in trading volume for Magic Eden in March has outpaced other marketplaces, indicating a growing interest in NFTs.\n\nOverall, the discussions on social media suggest a mix of excitement, skepticism, and curiosity surrounding Ordinals, #RUNES on #Bitcoin, and NFT market trends in the crypto industry.", - data: [ - 8, 9, 6, 10, 10, 13, 2, 7, 16, 7, 9, 8, 5, 15, 14, 9, 7, 12, 10, 7, 18, 12, 9, 8, 13, 18, - 11, 6, 11, 8, 7, 18, 12, 7, 3, 30, 13, 12, 11, 13, 8, 120, 7, 7, 5, 4, 8, 26, 11, 6, 7, 8, - 11, 12, 4, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coin', - description: - 'The messages from Twitter suggest that there is a lot of discussion and hype surrounding memecoins in the crypto industry. People are talking about potential pumps, investments, and bullish sentiments towards certain memecoins. There is also mention of the oversaturation of smallcap memecoins and comparisons to NFT projects. Additionally, there is a mention of a specific memecoin, $BAGS, being highlighted as a long-term, sustainable solution on a platform called @base. Overall, it seems like memecoins are a hot topic of conversation and speculation within the crypto community on social media.', - data: [ - 13, 13, 3, 7, 0, 1, 1, 4, 11, 7, 10, 8, 6, 4, 10, 5, 2, 0, 5, 4, 6, 15, 11, 2, 2, 7, 4, 14, - 7, 7, 11, 5, 112, 9, 8, 7, 6, 9, 1, 13, 3, 8, 5, 3, 13, 8, 14, 16, 13, 8, 6, 4, 3, 11, 5, - ], - }, - { - label: 'AI', - topics: 'ai,microsoft,generative,tech,intelligence', - description: - 'The key topics currently discussed in the crypto industry on social media include the integration of AI into daily life, the ethical implications of human-like AI, the use of blockchain technology for provenance, the development of decentralized physical infrastructure networks for AI, the impact of AI on various industries such as gaming and financial services, and the advancements in AI technologies such as AI agents and LLMs. Additionally, there is a focus on specific AI projects such as $TAO, $FET, $RNDR, $PAAL, and $ASCN, with anticipation for their performance in the market. Overall, the intersection of AI and crypto is a prominent theme in the discussions on social media platforms.', - data: [ - 48, 18, 13, 15, 0, 0, 1, 4, 4, 7, 8, 15, 9, 9, 18, 9, 6, 7, 4, 4, 8, 8, 5, 3, 6, 1, 7, 5, 8, - 5, 3, 5, 10, 6, 9, 7, 7, 14, 7, 10, 6, 5, 6, 4, 12, 4, 7, 4, 5, 2, 13, 5, 7, 5, 6, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto gaming community on Twitter include:\n- Immutable launching a crypto gaming rewards program worth $50 million\n- Excitement for new games dropping on portal and other platforms\n- The desire for a nostalgia-inspired MMORPG with real-life stakes through a decentralized economy\n- Splinterlands offering airdrops for staking cards\n- Web3 enabling unique gaming experiences\n- Predictions for the growth of PIXEL token\n- Kogaea, a new game with dungeons and epic battles\n- ESM X aiming to onboard traditional gamers into Web3\n- StellarGate.io building an ambitious FPS MMO space adventure game\n- StreamingArtWAX hosting an intergalactic adventure on Twitch Games with a chance to win Alien Worlds NFT prizes.', - data: [ - 7, 7, 13, 13, 0, 0, 1, 5, 4, 6, 6, 3, 4, 7, 11, 3, 8, 19, 11, 5, 50, 7, 4, 0, 6, 9, 11, 6, - 11, 6, 11, 6, 2, 5, 12, 2, 3, 28, 6, 7, 6, 5, 4, 4, 14, 8, 4, 2, 9, 4, 10, 7, 6, 4, 6, - ], - }, - { - label: 'Tesla', - topics: 'tesla,tsla,earnings,elon,car', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry include Tesla's Q2 earnings, the stock performance of Tesla ($TSLA), Elon Musk's decisions regarding layoffs and Bitcoin holdings, comparisons between Tesla and other auto makers like Toyota, concerns about Tesla's future as a company, and the potential for Tesla to become a Robotaxi company. There is also discussion about the impact of Tesla's stock price on its market value and comparisons to other companies like Uber. Additionally, there are criticisms of Elon Musk's leadership and decisions regarding Tesla. Overall, the sentiment on Twitter seems to be mixed, with some expressing concerns about Tesla's future while others remain optimistic about its potential as a company.", - data: [ - 8, 5, 5, 5, 0, 0, 1, 4, 8, 3, 3, 5, 2, 4, 1, 9, 8, 6, 2, 7, 5, 4, 9, 1, 3, 1, 6, 5, 3, 4, 3, - 5, 1, 7, 5, 5, 5, 10, 5, 1, 10, 6, 12, 7, 4, 8, 3, 60, 2, 2, 51, 9, 6, 5, 1, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,xlm,collection', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Hyperlane art and the need for more of it\n- The concept of art and its subjective nature\n- The importance of art as a form of expression\n- NFTs and their role in the art world\n- The process of creating art, such as squeegee painting\n- Opportunities for artists, such as grants and blockchain platforms like RARI Chain and Rarible\n- The impact of art on individuals and communities\n- The value of collecting art and supporting artists\n- The influence of technology on art creation and distribution\n- The celebration of artists and their work, such as James Hamilton and Coldie\n\nOverall, the discussions on social media reflect a vibrant and diverse art community within the crypto industry, with a focus on creativity, innovation, and collaboration.', - data: [ - 5, 8, 72, 6, 0, 0, 0, 1, 6, 3, 3, 9, 6, 5, 5, 4, 8, 3, 8, 5, 5, 4, 7, 0, 3, 3, 8, 4, 2, 7, - 7, 2, 1, 4, 3, 6, 11, 1, 1, 10, 9, 2, 1, 5, 4, 3, 2, 5, 9, 4, 6, 4, 5, 2, 8, - ], - }, - { - label: 'Transaction Fees', - topics: 'fees,transaction,block,fee,high', - description: - 'The key topic currently being discussed on Twitter in the crypto industry is the significant increase in transaction fees on the Bitcoin blockchain. There is a lot of attention on the record-breaking block 840,000, which saw 37.625 BTC in fees, the highest ever recorded. This surge in fees is attributed to a new protocol called Runes, which has caused a frenzy among users. Despite the high fees, there is debate on whether they are too high or low at the moment, with some users pointing out the volatility in fees post-halving. Additionally, there is discussion about the SORA network updating its fees to maintain stability and alignment with target prices. Overall, the community is closely monitoring the fluctuating transaction fees on the Bitcoin blockchain.', - data: [ - 2, 1, 6, 5, 18, 7, 47, 8, 1, 4, 0, 1, 11, 4, 4, 1, 1, 1, 35, 1, 2, 2, 1, 14, 7, 7, 11, 1, 2, - 3, 9, 6, 5, 2, 7, 3, 5, 1, 3, 1, 6, 3, 1, 1, 4, 0, 0, 0, 0, 7, 16, 4, 1, 2, 2, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,presale,meme,coins', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Solana memes vs Runes: There is a comparison between the performance of Solana and meme coins, with Solana pumping while meme coin bags are dumping.\n- Losses in meme coin projects on Solana: Investors have lost a significant amount of money, $26.7 million, due to rug pulls in meme coin projects on Solana.\n- Long opportunities in Solana: Some traders are looking for long opportunities in Solana, especially after a dip.\n- Memecoins as an asset class: There is a discussion about the lasting value of memes and how they are developing into an asset class.\n- Scams in Solana memecoins: There is a warning about scams in Solana memecoins, where developers divide funds among multiple wallets and insta-sell at once.\n- Fame Protocol on Solana: A protocol called Fame Protocol is mentioned as a project worth participating in on Solana, streamlining fundraising and token issuance.\n- Rebel Satoshi's presale: Rebel Satoshi's presale is causing excitement in the market, leading to significant drops in Solana and Cardano prices.\n- Halving Inu on Solana: A project called Halving Inu on Solana is highlighted as ready for a massive run, with upcoming CEX listings.\n\nOverall, the discussions on social media platforms like Twitter revolve around the performance of Solana, meme coins, scams, new projects, and market trends in the crypto industry.", - data: [ - 4, 5, 4, 6, 0, 2, 1, 6, 6, 2, 9, 5, 5, 2, 4, 2, 2, 6, 4, 2, 2, 3, 2, 4, 5, 2, 4, 4, 2, 6, 5, - 4, 19, 6, 3, 5, 3, 4, 8, 7, 9, 4, 8, 7, 18, 1, 9, 1, 5, 7, 5, 6, 5, 2, 3, - ], - }, - { - label: 'USDT & TON', - topics: 'ton,tether,telegram,usdt,stablecoin', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Tether expanding USDT support to the TON network and unveiling a transparency page.\n2. Tether CEO announcing the integration of USDT into the TON network.\n3. Tether expanding USDT and XAUT stablecoins to the TON ecosystem to boost peer-to-peer payments on Telegram.\n4. Launch of US Dollar stablecoin on Telegram's network.\n5. Introduction of USDT stablecoin on TON blockchain for higher liquidity.\n6. Multicheque for 0.1 TON available at approximately 0.56 USD.\n7. Bitball ecosystem opening markets for all tokens on Latoken crypto exchange.\n8. Launch plan for BitBall on Solana chain to be announced soon.\n9. Integration of Chain Abstraction directly into Telegram account for various cryptocurrencies.\n10. Allegations of fraud against Binance related to market manipulation.", - data: [ - 1, 8, 6, 5, 0, 0, 2, 7, 2, 1, 2, 4, 2, 0, 3, 1, 4, 9, 0, 5, 3, 1, 2, 0, 1, 2, 9, 5, 3, 3, 1, - 6, 2, 1, 7, 10, 4, 1, 4, 1, 1, 2, 4, 0, 2, 2, 4, 51, 3, 32, 1, 6, 2, 1, 0, - ], - }, - { - label: 'Halving celebration', - topics: 'happy,halving,day,420,4th', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin Halving Day celebrations and excitement\n- Generational wealth opportunities with Bitcoin\n- Dispensary visits and art displays on 4/20\n- Skepticism towards traditional financial figures like Jamie Dimon\n- Trading contests and prize pools in the crypto community\n- Minting and selling digital art on platforms like SuperRare\n- Speculation on leveraged shorts being liquidated with Bitcoin crossing $71k\n- Potential big moves from projects like $ZCX on Unizen_io\n\nOverall, the sentiment seems to be positive and optimistic about the future of Bitcoin and the crypto industry, with a focus on wealth generation, creativity, and community engagement.', - data: [ - 1, 1, 0, 1, 0, 1, 1, 0, 0, 3, 2, 3, 1, 6, 0, 0, 2, 0, 2, 3, 2, 2, 2, 151, 15, 2, 0, 2, 2, 1, - 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 2, 0, 3, - ], - }, - { - label: 'Hong Kong ETF', - topics: 'hong,kong,etfs,etf,spot', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The approval of Bitcoin and Ethereum Spot ETFs in Hong Kong, with trading set to begin on April 30th.\n2. The Chinese Embassy advising citizens in Angola to avoid crypto mining, following the detainment of Chinese nationals engaged in cryptocurrency mining in Angola.\n3. The launch of Harvest Fund's Bitcoin ETF with a 0% fee on April 30th, sparking fee wars in the ETF market.\n4. Hong Kong's emergence as a crypto ETF hub, potentially fueling a multi-billion dollar liquidity wave into Bitcoin.\n5. Angola officially banning all cryptocurrency mining activities to protect energy supplies.\n6. The potential impact of Hong Kong's ETF approval on Bitcoin's journey to $100K.\n7. The integration of crypto payments by companies like Stripe, along with other bullish developments in the crypto market.\n8. The significance of IMF's research note and the promising outlook for Bitcoin.\n9. The importance of in-kind approach in trading ETFs for crypto natives, market makers, and digital-asset exchanges.\n10. The joint military drills between the US and Philippines near China's doorstep, adding geopolitical tensions to the mix.", - data: [ - 1, 4, 11, 11, 5, 0, 2, 16, 0, 5, 5, 3, 5, 5, 1, 1, 20, 5, 3, 1, 2, 0, 3, 0, 4, 8, 3, 5, 4, - 3, 0, 3, 1, 2, 1, 11, 2, 2, 1, 2, 1, 1, 2, 5, 9, 9, 2, 1, 4, 2, 1, 3, 5, 6, 1, - ], - }, - { - label: 'SHIB', - topics: 'shiba,inu,shib,treat,raises', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Comparison of gains between $SHIB and $DOGE\n- New Crypto Whale acquiring 237.8 billion SHIB following a key Shiba Inu blockchain announcement\n- Expert trader sharing a simple Shiba Inu trading plan\n- Unveiling of BONE use case in Layer 3 blockchain by Shiba Inu lead\n- Shiba Inu soaring 18% as the crypto market recovers\n- Shiba Inu price surging 50% in 10 days with potential for more gains ahead\n- Plans for funds investing in memes and meme infrastructure with SHIB team leading the way\n- Shiba Inu being referred to as the chosen coin of this cycle\n- Shytoshi Kusama, the mysterious leader of Shiba Inu, breaking silence with a message for SHIB fudders and hinting at ShibaSwap's future\n- SHIB climbing 17% with Shiboshis NFTs spearheading growth\n- Shiba Inu raising $12 million by selling its unreleased token, TREAT, to non-U.S. venture capital investors\n- Announcement of a 30% off flash sale for $SHIBB on BitMart Launchpad\n\nOverall, the sentiment around Shiba Inu (SHIB) seems positive with discussions focusing on price surges, new developments, and potential for further growth.", - data: [ - 2, 0, 2, 2, 0, 1, 2, 2, 5, 2, 4, 2, 2, 2, 2, 1, 0, 3, 1, 2, 1, 0, 1, 0, 1, 4, 3, 43, 11, 0, - 0, 3, 2, 2, 5, 2, 0, 4, 6, 13, 6, 4, 1, 35, 0, 2, 4, 3, 0, 0, 0, 4, 1, 0, 1, - ], - }, - { - label: 'PEPE perpetual futures', - topics: 'pepe,perpetual,futures,coinbase,wif', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the following:\n\n1. #PEPE Coin Rockets 16% Following #Coinbase Perpetual Futures Listing\n2. Pepe Coin Price Eyes $0.00001 High As Chart Pattern Hints End-of-Correction Trend\n3. Memecoin Rally Signifies Confidence Returning To Crypto Market\n4. Memecoins are starting to surge in price again, with coins like $WIF, $PEPE, $BODEN, and $MAGA putting on a surge\n5. Comparison of $VINU with other top memecoins on Binance, with discussions about potential flipping of $WIF, $SHIB, or $DOGE\n6. Discussion about the importance of memecoins in the crypto industry and their role in onboarding new users\n7. Analysis of market trends, including the performance of $PEPE with a market cap of more than $2.5B and the recent bullish chart pattern\n8. Speculation about the potential pump in #MUMUUSDT and the breaking of the diagonal trendline for $MUMU\n9. Mention of various memecoins like $DOGE, $SHIB, $PEPE, $WIF, and their impact on the crypto market\n10. Community strength and listing votes for $VINU on platforms like Bybit, Gateio, Kucoin, and potential listing on Binance Futures\n\nOverall, the discussions on social media platforms reflect a mix of market analysis, price speculation, community engagement, and the role of memecoins in the crypto industry.', - data: [ - 3, 4, 1, 2, 0, 0, 1, 4, 4, 1, 4, 1, 2, 2, 2, 2, 0, 3, 1, 7, 1, 2, 4, 0, 3, 3, 1, 0, 6, 1, 4, - 3, 11, 1, 1, 0, 34, 2, 2, 3, 1, 3, 1, 4, 3, 1, 9, 0, 3, 2, 2, 3, 3, 4, 1, - ], - }, - { - label: 'XRP', - topics: 'ripple,xrp,sec,lawsuit,vs', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Ripple vs. SEC Lawsuit: There is speculation about a potential settlement between Ripple and the SEC, as well as discussions about the impact of the lawsuit on XRP's price fluctuations.\n\n2. XRP Price Movement: Analysts are predicting a surge in XRP's price to $1.20 amid market volatility, with signs of renewed bullish momentum in the market.\n\n3. XRP News: There are updates on XRP's legal setbacks in the SEC lawsuit, as well as insights into the USDC/XRP AMM Pool imbalance provided by a Ripple Labs veteran.\n\n4. Crypto Market Update: XRP has shown resilience in the market, bouncing back from a significant price drop and gaining ground against Ethereum, while Cardano faces hurdles.\n\n5. Top Crypto Picks: Influencers are sharing their top crypto picks, with some suggesting that XRP has greater growth potential than Ethereum.\n\nOverall, the discussions on social media indicate a mix of optimism and uncertainty surrounding XRP's future performance in the crypto market.", - data: [ - 1, 4, 3, 2, 0, 0, 0, 1, 2, 3, 7, 3, 6, 3, 4, 1, 1, 4, 5, 0, 2, 0, 1, 0, 3, 0, 3, 1, 4, 4, 0, - 0, 3, 3, 2, 4, 3, 9, 17, 2, 4, 20, 2, 4, 2, 2, 3, 1, 2, 0, 2, 1, 0, 2, 4, - ], - }, - { - label: 'DoJ vs CZ and others', - topics: 'cz,founder,binance,seeks,ceo', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. U.S. Department of Justice seeking a 3-year jail time for Binance founder Changpeng Zhao for money laundering and fraud charges.\n2. Avraham Eisenberg, the Mango Markets hacker, convicted of fraud and manipulation in a Manhattan federal court for orchestrating a scheme that stole $110 million from the DeFi platform.\n3. Discussion on the sentencing of Avraham Eisenberg, with a potential sentence of up to 20 years in prison expected.\n4. Debate on the appropriate punishment for Changpeng Zhao, with the defense team requesting probation instead of imprisonment.\n5. Reuters reporting on U.S. prosecutors seeking a 36-month prison sentence for Changpeng Zhao after pleading guilty to violating money laundering laws.\n6. Criticism of the perceived leniency of a 3-year prison sentence for Changpeng Zhao given the scale of alleged fraud and money laundering activities by Binance.\n7. Mention of a fake website scam involving Coinbase and an Indian man stealing $9.5 million in crypto.\n8. Concerns about the involvement of Binance in facilitating fraud and money laundering for terrorists, drug cartels, and rogue states.\n9. Comparison of Avraham Eisenberg as a criminal who was smart enough to execute a crime but not smart enough to hide and launder the proceeds cleanly.\n10. Discussion on the potential impact of these legal cases on the crypto industry and the reputation of major players like Binance and its founder.', - data: [ - 2, 9, 2, 0, 0, 0, 0, 9, 0, 0, 1, 1, 4, 3, 3, 0, 0, 6, 2, 14, 1, 0, 6, 0, 0, 2, 4, 8, 1, 2, - 0, 5, 0, 0, 0, 3, 0, 0, 10, 1, 6, 0, 16, 6, 3, 0, 3, 2, 0, 0, 1, 0, 2, 3, 5, - ], - }, - { - label: 'Lawsuits vs SEC', - topics: 'sec,lawsuit,metamask,rule,securities', - description: - "The key topic currently being discussed in the crypto industry on social media is the lawsuit filed by various crypto industry groups against the SEC over the new 'dealer' rule. The lawsuit claims that the SEC is overreaching in its definition of a dealer and is imposing overzealous regulations on the industry. Consensys, a major backer of the Ethereum blockchain, has also filed a lawsuit against the SEC over its regulation of the popular MetaMask wallet and is seeking clarity on whether ETH is considered a security. The Blockchain Association and Crypto Freedom Alliance are also fighting back against the SEC's 'Dealer Rule' in a landmark lawsuit. Overall, the industry is pushing back against what they perceive as excessive regulation from the SEC.", - data: [ - 1, 3, 3, 1, 0, 0, 0, 10, 0, 4, 4, 8, 10, 4, 0, 1, 1, 2, 6, 3, 3, 1, 4, 0, 3, 3, 0, 3, 1, 2, - 1, 4, 2, 0, 1, 3, 0, 0, 1, 1, 2, 3, 4, 1, 2, 3, 20, 4, 2, 3, 2, 3, 2, 0, 1, - ], - }, - { - label: 'DeFi', - topics: 'defi,decentralized,finance,projects,protocol', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include DeFi (Decentralized Finance), new projects and partnerships in the DeFi space, maximizing earnings in DeFi through farming pools, the convergence of traditional finance and DeFi, the metrics and sustainability of DeFi protocols, the empowerment and responsibility in DeFi, and new opportunities and partnerships in the DeFi space. Additionally, there is a focus on specific projects such as Koi Farming Pools, PolynomialFi, NEOPIN SDLP, and DEGO Finance, as well as events like the SecondLiveReal Eco-Partner Program and Token2049 in Dubai. Overall, the discussions highlight the growth, innovation, and complexities within the DeFi sector.', - data: [ - 2, 4, 5, 3, 1, 0, 0, 1, 4, 3, 3, 4, 0, 3, 10, 1, 1, 7, 2, 3, 1, 4, 1, 0, 2, 4, 3, 2, 7, 3, - 3, 1, 1, 2, 7, 1, 5, 1, 3, 5, 5, 1, 2, 0, 1, 1, 2, 3, 2, 2, 2, 0, 0, 6, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-17.json b/priv/repo/major_topics_seed/data-17.json deleted file mode 100644 index 426c0a4d7d..0000000000 --- a/priv/repo/major_topics_seed/data-17.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["25.04.24","26.04.24","26.04.24","26.04.24","26.04.24","26.04.24","26.04.24","26.04.24","27.04.24","27.04.24","27.04.24","27.04.24","27.04.24","27.04.24","27.04.24","27.04.24","28.04.24","28.04.24","28.04.24","28.04.24","28.04.24","28.04.24","28.04.24","28.04.24","29.04.24","29.04.24","29.04.24","29.04.24","29.04.24","29.04.24","29.04.24","29.04.24","30.04.24","30.04.24","30.04.24","30.04.24","30.04.24","30.04.24","30.04.24","30.04.24","01.05.24","01.05.24","01.05.24","01.05.24","01.05.24","01.05.24","01.05.24","01.05.24","02.05.24","02.05.24","02.05.24","02.05.24","02.05.24","02.05.24","02.05.24"],"datasets":[{"label":"BTC price","topics":"60k,price,support,close,btc","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin falling to a one-week low and struggling to recover\n- BTC trading below the 100-day moving average\n- Bitcoin bulls facing challenges and potential trials\n- Bitcoin's futures premium dropping to a 5-month low\n- Analysis of Bitcoin's price movements and potential support levels\n- Speculation on Bitcoin's next move and potential downside targets\n- Observations on short-term Bitcoin charts and potential resistance levels\n- Discussion of a Death Cross approaching for Bitcoin\n- Analysis of Bitcoin's monthly candle closing in the red for the first time since August 2023\n- Speculation on Bitcoin's future price movements and potential corrections due to global challenges\n\nOverall, the sentiment on Twitter seems to be cautious and bearish towards Bitcoin's current price movements, with discussions focusing on potential support levels, resistance levels, and future market trends.","data":[24,17,8,11,73,114,18,50,12,14,21,31,40,16,11,10,6,14,33,12,11,17,8,8,27,9,20,6,7,6,31,11,5,30,9,13,9,17,30,15,29,11,18,23,8,7,18,13,22,17,7,29,3,23,11]},{"label":"Hong Kong ETF","topics":"hong,kong,etfs,etf,spot","description":"The key topics currently being discussed on Twitter in relation to the crypto industry include the launch of Bitcoin and Ethereum spot ETFs in Hong Kong, the comparison of trading volumes between Hong Kong and the US, the potential impact of China's gold buying on the market, the anticipation of the halving event, and the transformation of Horizon to GlobalXCA. Additionally, there is speculation about the competitiveness of Hong Kong ETFs in terms of trading volume and funding rates, as well as the advantages of investing in Hong Kong for Asian investors. The future of Bitcoin ETFs globally is also a topic of discussion, with mentions of upcoming launches in the USA, UK, Australia, and UAE. Overall, the sentiment seems positive towards the growth and expansion of the crypto industry, with a focus on new opportunities and developments in different regions.","data":[8,2,9,17,23,4,22,9,13,13,4,11,9,19,5,1,64,17,8,4,7,6,6,4,14,14,13,10,15,10,9,19,1,7,13,23,2,2,9,8,3,8,7,11,15,21,3,4,6,18,7,4,4,4,2]},{"label":"Art","topics":"art,artists,artist,piece,collectors","description":"The messages from Twitter are mainly focused on various forms of art, including paintings, calligraphy, and street art. There is also mention of crypto-related art projects such as Cryptopunks. The artists mentioned in the messages are creating unique and innovative art forms, such as Double Exposure 3D and street murals. Overall, the discussion revolves around the beauty and creativity of different art forms and the excitement of new art releases.","data":[2,4,86,8,0,0,2,6,4,4,8,6,3,3,10,4,5,4,8,8,9,8,9,6,5,9,3,6,4,1,13,7,2,3,9,9,16,2,10,7,3,4,10,4,8,4,10,8,5,0,10,2,3,5,14]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The messages from Twitter suggest that there is a lot of discussion around meme coins in the crypto industry. People are talking about various meme coins such as $MBL, $ROCKY, $WIF, and others. There is also a comparison between meme coins and NFTs, with meme coins being seen as more accessible and fun versions of NFTs. Additionally, there is a poll asking people to choose one meme coin to hold for the rest of the cycle. Pepecoin from 2016 is mentioned as a successful project that achieved prominence through genuine community engagement and technological innovation. Overall, meme coins seem to be a hot topic of discussion in the crypto community on Twitter.","data":[5,2,6,1,0,2,1,5,10,6,9,3,4,7,3,9,4,5,8,6,10,6,8,2,10,5,2,8,8,7,8,3,84,6,9,3,5,8,7,9,4,8,5,6,7,4,5,6,9,2,8,3,3,3,4]},{"label":"BTC","topics":"bitcoin,core,world,digital,power","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin fixing issues and making sense in the world\n- The difficulty and importance of hodling Bitcoin\n- Ways to improve and bring more global wealth into Bitcoin\n- Discussions about Bitcoin in various locations such as Edinburgh and Serbia\n- Use of new widgets and tools related to Bitcoin\n- Criticizing Bitcoin in a constructive manner\n- Bitcoin's impact on biodiversity in the cannabis industry\n- Hedging bets and losses with BitBull and Bitcoin v2\n- Using Bitcoin for rental payments and accommodations\n- Providing more ways to earn and spend Bitcoin.","data":[5,1,1,2,51,41,6,6,6,5,6,13,3,2,5,1,1,8,5,6,5,1,11,11,2,6,2,7,5,6,9,4,6,8,8,8,5,4,4,4,7,3,5,7,9,7,5,2,7,0,8,3,2,4,13]},{"label":"AI","topics":"ai,agents,intelligence,artificial,future","description":"The key topics currently being discussed in the crypto industry on social media include:\n- AI technology and its applications\n- OpenAI incorporating content from the Financial Times into ChatGPT responses\n- Development and use of AI in various industries\n- Concerns about privacy and potential misuse of AI\n- Fighting against fake AI-generated digital identities\n- Rabbit R1 AI assistant receiving positive reviews\n- Confusion and misapplication of benefits of hardware in AI inference\n\nOverall, the discussions on social media highlight the growing interest and advancements in AI technology, as well as the need for responsible and ethical use of AI in various sectors.","data":[16,33,6,4,1,0,2,2,4,6,6,4,5,6,9,3,4,9,3,4,8,4,9,5,3,7,11,3,5,2,8,4,3,10,4,7,5,5,13,5,6,6,8,3,7,4,9,2,8,2,1,7,8,7,8]},{"label":"GameFI","topics":"gaming,game,games,web3,play","description":"The key topics currently being discussed in the crypto gaming community on Twitter include the launch of Solana's GameShift API on Google Cloud, the strength of gaming communities that have been around for over 2 years, the excitement around upcoming crypto games like $MEE, the integration of Omniaverse with SKALE for gas-free gaming, and funding secured by Holographxyz for omnichain gaming advancement. There is also discussion about the popularity of Web3 gaming, with some expressing concerns about predatory practices in the sector. Additionally, there is anticipation for the growth of the gaming narrative and updates on the $CATCH token, including rumors of a CEX listing.","data":[3,1,4,4,0,0,2,5,4,4,4,9,3,6,2,1,1,5,4,1,57,6,13,5,5,9,7,5,5,3,5,4,2,6,17,8,6,18,5,5,5,6,3,2,2,8,3,6,10,0,6,6,8,5,6]},{"label":"CZ sentencing","topics":"cz,binance,founder,months,czbinance","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the sentencing of Binance founder Changpeng Zhao to 4 months in prison, compliance with regulations, money laundering probes, legal battles with US authorities, and the impact on the cryptocurrency market. There is also mention of CZ's resignation from Binance, the settlement with US authorities, ongoing civil suits, and the potential implications for other crypto CEOs. Additionally, there is speculation about the SEC's stance on stablecoins as securities and the potential impact on alt-coins like $SOL. Overall, the community seems divided on the sentencing of CZ, with some showing support for him as a visionary in the crypto space, while others question the implications for the industry as a whole.","data":[1,5,4,6,1,0,19,1,3,1,6,3,15,1,2,1,4,4,10,33,8,17,6,6,1,2,2,8,3,2,2,7,3,11,0,9,8,5,2,5,8,3,6,33,2,2,5,4,5,6,1,2,2,0,7]},{"label":"DOGE","topics":"doge,dogecoin,dog,moon,elonmusk","description":"The key topics currently discussed in the crypto community on Twitter include the price movement of Dogecoin ($DOGE), potential price targets, whale transactions, market trends, and debates between dog coins and cat coins. There is also discussion about the potential listing of $DOG on Coinbase, the distribution and execution risks of $DOG, and the comparison of $DOG to other memecoins. Additionally, there is mention of taking profits, minimizing losses, and the importance of community support for Dogecoin. The community is also interested in the debate between dog coins and cat coins, with various dog coins being mentioned as potential contenders for the \"takeover.\"","data":[2,2,0,2,4,1,2,2,6,1,4,6,1,3,116,2,0,2,5,3,2,3,3,6,4,4,1,4,8,5,3,1,1,4,2,2,5,3,5,5,2,4,6,0,3,4,4,1,3,3,1,0,2,1,3]},{"label":"Inflation","topics":"inflation,rates,fed,powell,rate","description":"The key topic discussed in the twitter messages is the Federal Reserve's recent decisions and statements regarding inflation rates, interest rates, and monetary policy. The messages mention the Fed's decision to keep rates steady, the possibility of rate cuts in the future, the Fed's approach to quantitative tightening, and the overall dovish tone of the Fed's recent communications. Additionally, there is discussion about inflation levels, labor market conditions, and market expectations for future rate cuts. Overall, the messages indicate a focus on the Fed's actions and their implications for the economy and financial markets.","data":[7,3,4,2,0,0,3,1,3,5,5,9,2,7,2,8,1,4,9,8,3,10,0,3,12,22,7,8,4,2,2,8,1,4,2,5,12,3,8,14,8,3,7,0,4,7,6,1,5,3,0,3,1,3,8]},{"label":"Tesla","topics":"tesla,elon,musk,china,car","description":"The key topics currently discussed in the crypto industry on social media include:\n- Tesla ($TSLA) and Elon Musk: Discussions about Tesla's stock performance, Elon Musk's tweets and legal battles with the SEC, as well as updates on Tesla's business decisions such as scaling back superchargers.\n- Artificial Intelligence (AI) in automotive industry: Ford using AI to train dealership staff, Elon Musk's AI startup XAI securing funding, and the potential impact of AI on the automotive industry.\n- Cathie Wood and Tesla's future revenue projections: Speculation on the potential revenue generated by robotaxis and the influence of platforms like Tesla.\n- Insider trading at Tesla: Former executive Andrew Baglino selling a large amount of Tesla stock.\n- Apple stock performance: Apple's shares rising after an analyst upgrade.\n\nOverall, the discussions on social media reflect a mix of financial analysis, industry news, and speculation about the future of companies like Tesla and Apple in the crypto industry.","data":[3,3,7,7,0,0,4,3,4,1,0,0,0,3,1,7,0,2,3,6,4,2,3,2,0,6,10,4,3,4,5,2,6,9,4,1,3,5,3,7,4,8,5,4,6,5,2,20,4,1,31,3,3,1,4]},{"label":"SEC & Consensus","topics":"consensys,sec,gensler,security,ethereum","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- The Supreme Court rejecting Elon Musk's 'Twitter Sitter' appeal in a win for the SEC\n- Criticism of SEC Chairman Gary Gensler for misleading categorization of Ethereum as a security\n- Lawsuits filed by Consensys against the SEC challenging regulatory approaches to Ethereum\n- Charges brought by the SEC against Texas-based mining company Geosyn for fraudulent activities\n- Allegations against Consensys for operating as an unlicensed broker-dealer\n- Preemptive lawsuits against the SEC by various companies, including Consensys\n- Accusations of the SEC misleading Congress on Ethereum\n- Redacted information in the Consensys complaint regarding the SEC's designation of ETH as a security\n- Approval of ETH Futures ETF by the SEC in October 2023\n\nOverall, the discussions highlight the ongoing regulatory challenges and legal battles within the crypto industry, particularly regarding the classification of Ethereum and the actions of the SEC.","data":[7,1,4,5,0,1,12,1,2,4,2,15,5,0,0,2,10,4,15,4,6,2,7,5,2,4,7,6,12,5,0,4,8,0,10,2,2,0,0,3,6,6,6,4,5,1,13,0,1,1,5,5,0,1,2]},{"label":"Mining","topics":"mining,miners,miner,revenue,halving","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. The impact of AI on Bitcoin mining post-halving and the approaching all-time low profitability.\n2. Strategies for dealing with the price fluctuations of Bitcoin miners and MSTR, such as buying spot BTC.\n3. Questions about the current rate of Bitcoin issuance per mined block.\n4. Concerns about mining centralization and revenue around halving.\n5. The monetization of stranded energy assets by coal mining companies through Bitcoin.\n6. The increased costs faced by miners post-halving, with electricity and expenses nearly doubling.\n7. The Full Pay-Per-Share (FPPS) model in Bitcoin mining and its parallels to socialist principles.\n8. The availability of Bitmain Antminer KA3 116TH/s Kadena miner for sale.\n9. The decline in Bitcoin miners' gross margins and the importance of custom ASIC firmware.\n10. The decreasing profitability of Bitcoin mining as hashprice hits an all-time low, leading to lower daily yields.\n11. The evolution of Bitcoin mining from a profitable venture to a costly operation due to rising costs of ASIC machines and electricity.\n12. The benefits of Sequencer Mining on Metis for increasing rewards through increased demand.","data":[2,1,6,1,4,39,1,2,1,3,2,0,1,2,0,2,2,10,0,3,2,1,0,8,2,5,3,5,3,5,1,3,18,1,3,2,1,3,2,4,1,4,4,3,2,3,7,0,1,1,2,1,1,3,1]},{"label":"Runes","topics":"runes,rune,fees,protocol,okx","description":"The key topics currently discussed in the messages from twitter are:\n- Runes Protocol\n- Bitcoin\n- Transaction fees\n- Fungible tokens\n- LeverPro\n- Luke Dashjr's criticism of Runes Protocol\n- Community distribution and airdrops\n- Integration with other platforms\n- Runes Builders and suggestions for improvement\n- Spread of Runes Protocol onto new networks\n- Rumors about Rune listing on exchanges\n\nOverall, the discussions revolve around the development, adoption, and criticism of the Runes Protocol, its impact on the Bitcoin network, transaction fees post-halving, and the potential for innovation in the Bitcoin token space. There is also a focus on community engagement, partnerships, and the future growth of the protocol.","data":[4,1,0,0,8,6,2,0,0,0,1,0,1,4,3,0,0,1,4,3,4,0,1,0,2,5,3,1,3,2,3,0,2,1,2,2,4,3,1,2,0,44,2,1,2,1,3,6,2,0,4,5,0,3,0]},{"label":"Altcoins","topics":"alts,alt,altcoins,dominance,season","description":"The key topic being discussed on social media accounts and communities in the crypto industry is the potential for an \"ALT season\" or altcoin season. There is a lot of discussion about the performance of altcoins compared to Bitcoin, with some traders seeing bullish signs for altcoins. Some specific altcoins like $BONK and $PEPE are mentioned as performing well. There is also mention of a possible bullish divergence in the $ETH / $BTC pair, which could indicate a potential rally for altcoins. Overall, there is anticipation and speculation about the timing and potential factors that could lead to an altcoin season in the near future.","data":[1,36,0,5,0,0,2,2,0,1,3,2,2,0,1,2,1,4,2,1,0,0,0,4,1,0,0,3,1,0,3,1,0,2,2,1,2,4,0,7,5,4,9,2,3,1,2,5,7,3,1,4,0,1,1]},{"label":"SHIB","topics":"shiba,shib,fork,burn,crucial","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Shiba Inu ranking in top positions on leading platforms\n- The reasons behind Shiba Inu's price falling\n- Shiba Inu flashing an epic bull flag\n- The possibility of Ethereum using SHIB for gas fees\n- The burning of 1,695,717,536 SHIB by the Shiba Inu community in April\n- A comparison between Shiba Inu and Dogecoin\n- The movement of 1.75 trillion SHIB from Robinhood\n- The upcoming hard fork for Shibarium on May 2, 2024\n- Speculation about a major BTC price downturn and the future of Shiba Inu\n- The failure of massive SHIB burns in April to impact the price rally\n- The disabling of SHIBA Bitcoin deposits, withdrawals, and trading on certain platforms\n\nOverall, the discussions revolve around the performance, developments, and potential future of Shiba Inu and its impact on the broader cryptocurrency market.","data":[4,5,0,4,0,0,5,3,1,2,4,1,0,5,3,3,1,3,0,0,0,0,0,1,4,0,33,0,1,1,0,4,1,1,3,0,3,1,3,1,0,2,2,23,0,0,0,1,0,2,1,2,2,4,2]},{"label":"NFT","topics":"nft,nfts,pfp,collection,utility","description":"The key topics currently discussed in the crypto industry on social media platforms include NFTs (Non-Fungible Tokens), PFP projects, NFT collections, NFT marketplaces, NFT categories, NFT staking benefits, and the diverse world of NFTs. There is a lot of excitement and interest in owning attention through NFTs, exploring different NFT collections, finding the perfect equippable NFT for avatars, and discovering unique use cases for NFTs. Additionally, discussions also revolve around specific NFT projects such as Casio's NFT collection celebrating its 50th anniversary and the SCHIZO_POSTERS NFT collection, which is praised for its attention to detail and versatility. The community is also exploring different strategies for NFT staking games and assigning values to payoffs based on preference. Overall, the crypto community is actively engaged in exploring and participating in the NFT space.","data":[1,0,0,2,0,1,1,2,6,7,1,1,0,0,3,2,0,3,5,2,5,1,2,1,2,1,2,1,5,2,1,2,5,2,23,3,4,3,6,2,2,0,3,2,4,1,4,1,2,1,2,3,2,2,2]},{"label":"Government","topics":"government,selfcustody,custody,money,self","description":"The key topics currently being discussed in the crypto industry on social media include:\n- The recent Bitcoin regulation in the US and whether it is beneficial or harmful\n- The government's attempts to control and potentially ban Bitcoin\n- The power dynamics between traditional financial systems and crypto financial systems\n- The potential impact of government actions on the global Bitcoin network\n- The debate over whether Bitcoin should be considered money and subject to money transmitter rules\n- Concerns about government crackdowns on various aspects of the crypto industry, such as wallets, developers, and self-custody\n- The importance of free speech and privacy in the crypto space\n- The role of governments in regulating and potentially restricting the use of cryptocurrencies\n\nOverall, there is a sense of defiance and resistance among the crypto community against government intervention and attempts to control the industry. There is also a strong belief in the value of decentralization and self-custody in the crypto space.","data":[2,2,1,2,6,6,0,1,3,2,8,8,2,2,1,2,0,2,6,0,3,3,16,2,2,1,4,1,3,1,0,2,0,2,1,4,1,2,1,5,2,0,6,2,1,4,1,1,2,0,4,0,2,1,3]},{"label":"Blockchain","topics":"blockchain,chainlink,blockchains,chains,security","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The state of blockchain L1/L2 interoperability standards and the concept of a \"Superchain\" that connects multiple blockchain networks.\n2. The use of different consensus mechanisms in blockchain, such as proof of reputation used by GoChain, and the tradeoffs between scalability, security, and decentralization.\n3. The importance of combining technologies with blockchain to achieve decentralization, trustlessness, immutability, and transparency, as seen in the case of Bitcoin.\n4. The transparency and security benefits of using blockchain in various applications, such as advertising campaigns and fair democracy.\n5. The development of blockchain-based election architectures, such as the one using the XRPL (Ripple) blockchain.\n6. The launch of multi-chain bridges, such as the Tricorn Bridge, to enable asset movement between different blockchain networks.\n7. The advancements in blockchain technology, such as advanced APIs for optimizing, indexing, caching, and storing blockchain data for dApps.\n8. The exploration of key technologies powering Chain Abstraction, such as Forwarder, Münzen Onramp solution, and Cross Contract Calls, to simplify development processes in the blockchain space.","data":[2,3,2,2,0,0,6,2,1,10,3,2,4,3,6,1,1,5,5,1,2,2,1,3,1,1,6,7,4,3,2,0,2,2,3,3,0,2,3,1,4,3,0,1,2,1,1,1,0,1,8,4,2,0,2]},{"label":"Halving","topics":"halving,cryptocurrency,altcoins,event,countdown","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Bitcoin Halving: Traders are discussing the recent Bitcoin halving event and its impact on the market. There is speculation about the price of Bitcoin reaching $10M and the potential for a final bull market stage pump later this year.\n\n2. Bitcoin Halving 2024: There is anticipation and analysis of the next Bitcoin halving event in 2024, with discussions on what it means for investors and the crypto market.\n\n3. Trading Strategies: Traders are sharing their thoughts on how the recent Bitcoin halving will affect their trading strategies. There is also excitement about hearing from experts like @paoloardoino on the implications of the halving for markets.\n\n4. Market Sentiment: There are mixed reactions to post-halving market conditions, with some expressing optimism and others feeling uncertain about the future. The market is closely following narratives and events like ETF approvals and rate cuts.\n\n5. On-chain Data: The surge in trading activity on the Bitcoin network post-halving is being analyzed through on-chain data, indicating increased interest in Bitcoin despite the halving event.\n\nOverall, the crypto community is actively discussing the implications of the recent Bitcoin halving, future halving events, trading strategies, market sentiment, and on-chain data analysis.","data":[1,2,1,0,45,2,1,1,2,1,1,5,5,1,0,0,1,3,1,3,1,0,1,16,1,1,2,2,1,1,0,0,1,1,2,1,2,5,1,0,2,1,2,0,1,2,2,0,0,1,1,3,0,2,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-17.ts b/priv/repo/major_topics_seed/data-17.ts deleted file mode 100644 index 0ec3a6a3b7..0000000000 --- a/priv/repo/major_topics_seed/data-17.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '25.04.24', - '26.04.24', - '26.04.24', - '26.04.24', - '26.04.24', - '26.04.24', - '26.04.24', - '26.04.24', - '27.04.24', - '27.04.24', - '27.04.24', - '27.04.24', - '27.04.24', - '27.04.24', - '27.04.24', - '27.04.24', - '28.04.24', - '28.04.24', - '28.04.24', - '28.04.24', - '28.04.24', - '28.04.24', - '28.04.24', - '28.04.24', - '29.04.24', - '29.04.24', - '29.04.24', - '29.04.24', - '29.04.24', - '29.04.24', - '29.04.24', - '29.04.24', - '30.04.24', - '30.04.24', - '30.04.24', - '30.04.24', - '30.04.24', - '30.04.24', - '30.04.24', - '30.04.24', - '01.05.24', - '01.05.24', - '01.05.24', - '01.05.24', - '01.05.24', - '01.05.24', - '01.05.24', - '01.05.24', - '02.05.24', - '02.05.24', - '02.05.24', - '02.05.24', - '02.05.24', - '02.05.24', - '02.05.24', - ], - datasets: [ - { - label: 'BTC price', - topics: '60k,price,support,close,btc', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin falling to a one-week low and struggling to recover\n- BTC trading below the 100-day moving average\n- Bitcoin bulls facing challenges and potential trials\n- Bitcoin's futures premium dropping to a 5-month low\n- Analysis of Bitcoin's price movements and potential support levels\n- Speculation on Bitcoin's next move and potential downside targets\n- Observations on short-term Bitcoin charts and potential resistance levels\n- Discussion of a Death Cross approaching for Bitcoin\n- Analysis of Bitcoin's monthly candle closing in the red for the first time since August 2023\n- Speculation on Bitcoin's future price movements and potential corrections due to global challenges\n\nOverall, the sentiment on Twitter seems to be cautious and bearish towards Bitcoin's current price movements, with discussions focusing on potential support levels, resistance levels, and future market trends.", - data: [ - 24, 17, 8, 11, 73, 114, 18, 50, 12, 14, 21, 31, 40, 16, 11, 10, 6, 14, 33, 12, 11, 17, 8, 8, - 27, 9, 20, 6, 7, 6, 31, 11, 5, 30, 9, 13, 9, 17, 30, 15, 29, 11, 18, 23, 8, 7, 18, 13, 22, - 17, 7, 29, 3, 23, 11, - ], - }, - { - label: 'Hong Kong ETF', - topics: 'hong,kong,etfs,etf,spot', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry include the launch of Bitcoin and Ethereum spot ETFs in Hong Kong, the comparison of trading volumes between Hong Kong and the US, the potential impact of China's gold buying on the market, the anticipation of the halving event, and the transformation of Horizon to GlobalXCA. Additionally, there is speculation about the competitiveness of Hong Kong ETFs in terms of trading volume and funding rates, as well as the advantages of investing in Hong Kong for Asian investors. The future of Bitcoin ETFs globally is also a topic of discussion, with mentions of upcoming launches in the USA, UK, Australia, and UAE. Overall, the sentiment seems positive towards the growth and expansion of the crypto industry, with a focus on new opportunities and developments in different regions.", - data: [ - 8, 2, 9, 17, 23, 4, 22, 9, 13, 13, 4, 11, 9, 19, 5, 1, 64, 17, 8, 4, 7, 6, 6, 4, 14, 14, 13, - 10, 15, 10, 9, 19, 1, 7, 13, 23, 2, 2, 9, 8, 3, 8, 7, 11, 15, 21, 3, 4, 6, 18, 7, 4, 4, 4, - 2, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,collectors', - description: - 'The messages from Twitter are mainly focused on various forms of art, including paintings, calligraphy, and street art. There is also mention of crypto-related art projects such as Cryptopunks. The artists mentioned in the messages are creating unique and innovative art forms, such as Double Exposure 3D and street murals. Overall, the discussion revolves around the beauty and creativity of different art forms and the excitement of new art releases.', - data: [ - 2, 4, 86, 8, 0, 0, 2, 6, 4, 4, 8, 6, 3, 3, 10, 4, 5, 4, 8, 8, 9, 8, 9, 6, 5, 9, 3, 6, 4, 1, - 13, 7, 2, 3, 9, 9, 16, 2, 10, 7, 3, 4, 10, 4, 8, 4, 10, 8, 5, 0, 10, 2, 3, 5, 14, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - 'The messages from Twitter suggest that there is a lot of discussion around meme coins in the crypto industry. People are talking about various meme coins such as $MBL, $ROCKY, $WIF, and others. There is also a comparison between meme coins and NFTs, with meme coins being seen as more accessible and fun versions of NFTs. Additionally, there is a poll asking people to choose one meme coin to hold for the rest of the cycle. Pepecoin from 2016 is mentioned as a successful project that achieved prominence through genuine community engagement and technological innovation. Overall, meme coins seem to be a hot topic of discussion in the crypto community on Twitter.', - data: [ - 5, 2, 6, 1, 0, 2, 1, 5, 10, 6, 9, 3, 4, 7, 3, 9, 4, 5, 8, 6, 10, 6, 8, 2, 10, 5, 2, 8, 8, 7, - 8, 3, 84, 6, 9, 3, 5, 8, 7, 9, 4, 8, 5, 6, 7, 4, 5, 6, 9, 2, 8, 3, 3, 3, 4, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,core,world,digital,power', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin fixing issues and making sense in the world\n- The difficulty and importance of hodling Bitcoin\n- Ways to improve and bring more global wealth into Bitcoin\n- Discussions about Bitcoin in various locations such as Edinburgh and Serbia\n- Use of new widgets and tools related to Bitcoin\n- Criticizing Bitcoin in a constructive manner\n- Bitcoin's impact on biodiversity in the cannabis industry\n- Hedging bets and losses with BitBull and Bitcoin v2\n- Using Bitcoin for rental payments and accommodations\n- Providing more ways to earn and spend Bitcoin.", - data: [ - 5, 1, 1, 2, 51, 41, 6, 6, 6, 5, 6, 13, 3, 2, 5, 1, 1, 8, 5, 6, 5, 1, 11, 11, 2, 6, 2, 7, 5, - 6, 9, 4, 6, 8, 8, 8, 5, 4, 4, 4, 7, 3, 5, 7, 9, 7, 5, 2, 7, 0, 8, 3, 2, 4, 13, - ], - }, - { - label: 'AI', - topics: 'ai,agents,intelligence,artificial,future', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- AI technology and its applications\n- OpenAI incorporating content from the Financial Times into ChatGPT responses\n- Development and use of AI in various industries\n- Concerns about privacy and potential misuse of AI\n- Fighting against fake AI-generated digital identities\n- Rabbit R1 AI assistant receiving positive reviews\n- Confusion and misapplication of benefits of hardware in AI inference\n\nOverall, the discussions on social media highlight the growing interest and advancements in AI technology, as well as the need for responsible and ethical use of AI in various sectors.', - data: [ - 16, 33, 6, 4, 1, 0, 2, 2, 4, 6, 6, 4, 5, 6, 9, 3, 4, 9, 3, 4, 8, 4, 9, 5, 3, 7, 11, 3, 5, 2, - 8, 4, 3, 10, 4, 7, 5, 5, 13, 5, 6, 6, 8, 3, 7, 4, 9, 2, 8, 2, 1, 7, 8, 7, 8, - ], - }, - { - label: 'GameFI', - topics: 'gaming,game,games,web3,play', - description: - "The key topics currently being discussed in the crypto gaming community on Twitter include the launch of Solana's GameShift API on Google Cloud, the strength of gaming communities that have been around for over 2 years, the excitement around upcoming crypto games like $MEE, the integration of Omniaverse with SKALE for gas-free gaming, and funding secured by Holographxyz for omnichain gaming advancement. There is also discussion about the popularity of Web3 gaming, with some expressing concerns about predatory practices in the sector. Additionally, there is anticipation for the growth of the gaming narrative and updates on the $CATCH token, including rumors of a CEX listing.", - data: [ - 3, 1, 4, 4, 0, 0, 2, 5, 4, 4, 4, 9, 3, 6, 2, 1, 1, 5, 4, 1, 57, 6, 13, 5, 5, 9, 7, 5, 5, 3, - 5, 4, 2, 6, 17, 8, 6, 18, 5, 5, 5, 6, 3, 2, 2, 8, 3, 6, 10, 0, 6, 6, 8, 5, 6, - ], - }, - { - label: 'CZ sentencing', - topics: 'cz,binance,founder,months,czbinance', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the sentencing of Binance founder Changpeng Zhao to 4 months in prison, compliance with regulations, money laundering probes, legal battles with US authorities, and the impact on the cryptocurrency market. There is also mention of CZ's resignation from Binance, the settlement with US authorities, ongoing civil suits, and the potential implications for other crypto CEOs. Additionally, there is speculation about the SEC's stance on stablecoins as securities and the potential impact on alt-coins like $SOL. Overall, the community seems divided on the sentencing of CZ, with some showing support for him as a visionary in the crypto space, while others question the implications for the industry as a whole.", - data: [ - 1, 5, 4, 6, 1, 0, 19, 1, 3, 1, 6, 3, 15, 1, 2, 1, 4, 4, 10, 33, 8, 17, 6, 6, 1, 2, 2, 8, 3, - 2, 2, 7, 3, 11, 0, 9, 8, 5, 2, 5, 8, 3, 6, 33, 2, 2, 5, 4, 5, 6, 1, 2, 2, 0, 7, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dog,moon,elonmusk', - description: - 'The key topics currently discussed in the crypto community on Twitter include the price movement of Dogecoin ($DOGE), potential price targets, whale transactions, market trends, and debates between dog coins and cat coins. There is also discussion about the potential listing of $DOG on Coinbase, the distribution and execution risks of $DOG, and the comparison of $DOG to other memecoins. Additionally, there is mention of taking profits, minimizing losses, and the importance of community support for Dogecoin. The community is also interested in the debate between dog coins and cat coins, with various dog coins being mentioned as potential contenders for the "takeover."', - data: [ - 2, 2, 0, 2, 4, 1, 2, 2, 6, 1, 4, 6, 1, 3, 116, 2, 0, 2, 5, 3, 2, 3, 3, 6, 4, 4, 1, 4, 8, 5, - 3, 1, 1, 4, 2, 2, 5, 3, 5, 5, 2, 4, 6, 0, 3, 4, 4, 1, 3, 3, 1, 0, 2, 1, 3, - ], - }, - { - label: 'Inflation', - topics: 'inflation,rates,fed,powell,rate', - description: - "The key topic discussed in the twitter messages is the Federal Reserve's recent decisions and statements regarding inflation rates, interest rates, and monetary policy. The messages mention the Fed's decision to keep rates steady, the possibility of rate cuts in the future, the Fed's approach to quantitative tightening, and the overall dovish tone of the Fed's recent communications. Additionally, there is discussion about inflation levels, labor market conditions, and market expectations for future rate cuts. Overall, the messages indicate a focus on the Fed's actions and their implications for the economy and financial markets.", - data: [ - 7, 3, 4, 2, 0, 0, 3, 1, 3, 5, 5, 9, 2, 7, 2, 8, 1, 4, 9, 8, 3, 10, 0, 3, 12, 22, 7, 8, 4, 2, - 2, 8, 1, 4, 2, 5, 12, 3, 8, 14, 8, 3, 7, 0, 4, 7, 6, 1, 5, 3, 0, 3, 1, 3, 8, - ], - }, - { - label: 'Tesla', - topics: 'tesla,elon,musk,china,car', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Tesla ($TSLA) and Elon Musk: Discussions about Tesla's stock performance, Elon Musk's tweets and legal battles with the SEC, as well as updates on Tesla's business decisions such as scaling back superchargers.\n- Artificial Intelligence (AI) in automotive industry: Ford using AI to train dealership staff, Elon Musk's AI startup XAI securing funding, and the potential impact of AI on the automotive industry.\n- Cathie Wood and Tesla's future revenue projections: Speculation on the potential revenue generated by robotaxis and the influence of platforms like Tesla.\n- Insider trading at Tesla: Former executive Andrew Baglino selling a large amount of Tesla stock.\n- Apple stock performance: Apple's shares rising after an analyst upgrade.\n\nOverall, the discussions on social media reflect a mix of financial analysis, industry news, and speculation about the future of companies like Tesla and Apple in the crypto industry.", - data: [ - 3, 3, 7, 7, 0, 0, 4, 3, 4, 1, 0, 0, 0, 3, 1, 7, 0, 2, 3, 6, 4, 2, 3, 2, 0, 6, 10, 4, 3, 4, - 5, 2, 6, 9, 4, 1, 3, 5, 3, 7, 4, 8, 5, 4, 6, 5, 2, 20, 4, 1, 31, 3, 3, 1, 4, - ], - }, - { - label: 'SEC & Consensus', - topics: 'consensys,sec,gensler,security,ethereum', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- The Supreme Court rejecting Elon Musk's 'Twitter Sitter' appeal in a win for the SEC\n- Criticism of SEC Chairman Gary Gensler for misleading categorization of Ethereum as a security\n- Lawsuits filed by Consensys against the SEC challenging regulatory approaches to Ethereum\n- Charges brought by the SEC against Texas-based mining company Geosyn for fraudulent activities\n- Allegations against Consensys for operating as an unlicensed broker-dealer\n- Preemptive lawsuits against the SEC by various companies, including Consensys\n- Accusations of the SEC misleading Congress on Ethereum\n- Redacted information in the Consensys complaint regarding the SEC's designation of ETH as a security\n- Approval of ETH Futures ETF by the SEC in October 2023\n\nOverall, the discussions highlight the ongoing regulatory challenges and legal battles within the crypto industry, particularly regarding the classification of Ethereum and the actions of the SEC.", - data: [ - 7, 1, 4, 5, 0, 1, 12, 1, 2, 4, 2, 15, 5, 0, 0, 2, 10, 4, 15, 4, 6, 2, 7, 5, 2, 4, 7, 6, 12, - 5, 0, 4, 8, 0, 10, 2, 2, 0, 0, 3, 6, 6, 6, 4, 5, 1, 13, 0, 1, 1, 5, 5, 0, 1, 2, - ], - }, - { - label: 'Mining', - topics: 'mining,miners,miner,revenue,halving', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. The impact of AI on Bitcoin mining post-halving and the approaching all-time low profitability.\n2. Strategies for dealing with the price fluctuations of Bitcoin miners and MSTR, such as buying spot BTC.\n3. Questions about the current rate of Bitcoin issuance per mined block.\n4. Concerns about mining centralization and revenue around halving.\n5. The monetization of stranded energy assets by coal mining companies through Bitcoin.\n6. The increased costs faced by miners post-halving, with electricity and expenses nearly doubling.\n7. The Full Pay-Per-Share (FPPS) model in Bitcoin mining and its parallels to socialist principles.\n8. The availability of Bitmain Antminer KA3 116TH/s Kadena miner for sale.\n9. The decline in Bitcoin miners' gross margins and the importance of custom ASIC firmware.\n10. The decreasing profitability of Bitcoin mining as hashprice hits an all-time low, leading to lower daily yields.\n11. The evolution of Bitcoin mining from a profitable venture to a costly operation due to rising costs of ASIC machines and electricity.\n12. The benefits of Sequencer Mining on Metis for increasing rewards through increased demand.", - data: [ - 2, 1, 6, 1, 4, 39, 1, 2, 1, 3, 2, 0, 1, 2, 0, 2, 2, 10, 0, 3, 2, 1, 0, 8, 2, 5, 3, 5, 3, 5, - 1, 3, 18, 1, 3, 2, 1, 3, 2, 4, 1, 4, 4, 3, 2, 3, 7, 0, 1, 1, 2, 1, 1, 3, 1, - ], - }, - { - label: 'Runes', - topics: 'runes,rune,fees,protocol,okx', - description: - "The key topics currently discussed in the messages from twitter are:\n- Runes Protocol\n- Bitcoin\n- Transaction fees\n- Fungible tokens\n- LeverPro\n- Luke Dashjr's criticism of Runes Protocol\n- Community distribution and airdrops\n- Integration with other platforms\n- Runes Builders and suggestions for improvement\n- Spread of Runes Protocol onto new networks\n- Rumors about Rune listing on exchanges\n\nOverall, the discussions revolve around the development, adoption, and criticism of the Runes Protocol, its impact on the Bitcoin network, transaction fees post-halving, and the potential for innovation in the Bitcoin token space. There is also a focus on community engagement, partnerships, and the future growth of the protocol.", - data: [ - 4, 1, 0, 0, 8, 6, 2, 0, 0, 0, 1, 0, 1, 4, 3, 0, 0, 1, 4, 3, 4, 0, 1, 0, 2, 5, 3, 1, 3, 2, 3, - 0, 2, 1, 2, 2, 4, 3, 1, 2, 0, 44, 2, 1, 2, 1, 3, 6, 2, 0, 4, 5, 0, 3, 0, - ], - }, - { - label: 'Altcoins', - topics: 'alts,alt,altcoins,dominance,season', - description: - 'The key topic being discussed on social media accounts and communities in the crypto industry is the potential for an "ALT season" or altcoin season. There is a lot of discussion about the performance of altcoins compared to Bitcoin, with some traders seeing bullish signs for altcoins. Some specific altcoins like $BONK and $PEPE are mentioned as performing well. There is also mention of a possible bullish divergence in the $ETH / $BTC pair, which could indicate a potential rally for altcoins. Overall, there is anticipation and speculation about the timing and potential factors that could lead to an altcoin season in the near future.', - data: [ - 1, 36, 0, 5, 0, 0, 2, 2, 0, 1, 3, 2, 2, 0, 1, 2, 1, 4, 2, 1, 0, 0, 0, 4, 1, 0, 0, 3, 1, 0, - 3, 1, 0, 2, 2, 1, 2, 4, 0, 7, 5, 4, 9, 2, 3, 1, 2, 5, 7, 3, 1, 4, 0, 1, 1, - ], - }, - { - label: 'SHIB', - topics: 'shiba,shib,fork,burn,crucial', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Shiba Inu ranking in top positions on leading platforms\n- The reasons behind Shiba Inu's price falling\n- Shiba Inu flashing an epic bull flag\n- The possibility of Ethereum using SHIB for gas fees\n- The burning of 1,695,717,536 SHIB by the Shiba Inu community in April\n- A comparison between Shiba Inu and Dogecoin\n- The movement of 1.75 trillion SHIB from Robinhood\n- The upcoming hard fork for Shibarium on May 2, 2024\n- Speculation about a major BTC price downturn and the future of Shiba Inu\n- The failure of massive SHIB burns in April to impact the price rally\n- The disabling of SHIBA Bitcoin deposits, withdrawals, and trading on certain platforms\n\nOverall, the discussions revolve around the performance, developments, and potential future of Shiba Inu and its impact on the broader cryptocurrency market.", - data: [ - 4, 5, 0, 4, 0, 0, 5, 3, 1, 2, 4, 1, 0, 5, 3, 3, 1, 3, 0, 0, 0, 0, 0, 1, 4, 0, 33, 0, 1, 1, - 0, 4, 1, 1, 3, 0, 3, 1, 3, 1, 0, 2, 2, 23, 0, 0, 0, 1, 0, 2, 1, 2, 2, 4, 2, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,collection,utility', - description: - "The key topics currently discussed in the crypto industry on social media platforms include NFTs (Non-Fungible Tokens), PFP projects, NFT collections, NFT marketplaces, NFT categories, NFT staking benefits, and the diverse world of NFTs. There is a lot of excitement and interest in owning attention through NFTs, exploring different NFT collections, finding the perfect equippable NFT for avatars, and discovering unique use cases for NFTs. Additionally, discussions also revolve around specific NFT projects such as Casio's NFT collection celebrating its 50th anniversary and the SCHIZO_POSTERS NFT collection, which is praised for its attention to detail and versatility. The community is also exploring different strategies for NFT staking games and assigning values to payoffs based on preference. Overall, the crypto community is actively engaged in exploring and participating in the NFT space.", - data: [ - 1, 0, 0, 2, 0, 1, 1, 2, 6, 7, 1, 1, 0, 0, 3, 2, 0, 3, 5, 2, 5, 1, 2, 1, 2, 1, 2, 1, 5, 2, 1, - 2, 5, 2, 23, 3, 4, 3, 6, 2, 2, 0, 3, 2, 4, 1, 4, 1, 2, 1, 2, 3, 2, 2, 2, - ], - }, - { - label: 'Government', - topics: 'government,selfcustody,custody,money,self', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- The recent Bitcoin regulation in the US and whether it is beneficial or harmful\n- The government's attempts to control and potentially ban Bitcoin\n- The power dynamics between traditional financial systems and crypto financial systems\n- The potential impact of government actions on the global Bitcoin network\n- The debate over whether Bitcoin should be considered money and subject to money transmitter rules\n- Concerns about government crackdowns on various aspects of the crypto industry, such as wallets, developers, and self-custody\n- The importance of free speech and privacy in the crypto space\n- The role of governments in regulating and potentially restricting the use of cryptocurrencies\n\nOverall, there is a sense of defiance and resistance among the crypto community against government intervention and attempts to control the industry. There is also a strong belief in the value of decentralization and self-custody in the crypto space.", - data: [ - 2, 2, 1, 2, 6, 6, 0, 1, 3, 2, 8, 8, 2, 2, 1, 2, 0, 2, 6, 0, 3, 3, 16, 2, 2, 1, 4, 1, 3, 1, - 0, 2, 0, 2, 1, 4, 1, 2, 1, 5, 2, 0, 6, 2, 1, 4, 1, 1, 2, 0, 4, 0, 2, 1, 3, - ], - }, - { - label: 'Blockchain', - topics: 'blockchain,chainlink,blockchains,chains,security', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The state of blockchain L1/L2 interoperability standards and the concept of a "Superchain" that connects multiple blockchain networks.\n2. The use of different consensus mechanisms in blockchain, such as proof of reputation used by GoChain, and the tradeoffs between scalability, security, and decentralization.\n3. The importance of combining technologies with blockchain to achieve decentralization, trustlessness, immutability, and transparency, as seen in the case of Bitcoin.\n4. The transparency and security benefits of using blockchain in various applications, such as advertising campaigns and fair democracy.\n5. The development of blockchain-based election architectures, such as the one using the XRPL (Ripple) blockchain.\n6. The launch of multi-chain bridges, such as the Tricorn Bridge, to enable asset movement between different blockchain networks.\n7. The advancements in blockchain technology, such as advanced APIs for optimizing, indexing, caching, and storing blockchain data for dApps.\n8. The exploration of key technologies powering Chain Abstraction, such as Forwarder, Münzen Onramp solution, and Cross Contract Calls, to simplify development processes in the blockchain space.', - data: [ - 2, 3, 2, 2, 0, 0, 6, 2, 1, 10, 3, 2, 4, 3, 6, 1, 1, 5, 5, 1, 2, 2, 1, 3, 1, 1, 6, 7, 4, 3, - 2, 0, 2, 2, 3, 3, 0, 2, 3, 1, 4, 3, 0, 1, 2, 1, 1, 1, 0, 1, 8, 4, 2, 0, 2, - ], - }, - { - label: 'Halving', - topics: 'halving,cryptocurrency,altcoins,event,countdown', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Bitcoin Halving: Traders are discussing the recent Bitcoin halving event and its impact on the market. There is speculation about the price of Bitcoin reaching $10M and the potential for a final bull market stage pump later this year.\n\n2. Bitcoin Halving 2024: There is anticipation and analysis of the next Bitcoin halving event in 2024, with discussions on what it means for investors and the crypto market.\n\n3. Trading Strategies: Traders are sharing their thoughts on how the recent Bitcoin halving will affect their trading strategies. There is also excitement about hearing from experts like @paoloardoino on the implications of the halving for markets.\n\n4. Market Sentiment: There are mixed reactions to post-halving market conditions, with some expressing optimism and others feeling uncertain about the future. The market is closely following narratives and events like ETF approvals and rate cuts.\n\n5. On-chain Data: The surge in trading activity on the Bitcoin network post-halving is being analyzed through on-chain data, indicating increased interest in Bitcoin despite the halving event.\n\nOverall, the crypto community is actively discussing the implications of the recent Bitcoin halving, future halving events, trading strategies, market sentiment, and on-chain data analysis.', - data: [ - 1, 2, 1, 0, 45, 2, 1, 1, 2, 1, 1, 5, 5, 1, 0, 0, 1, 3, 1, 3, 1, 0, 1, 16, 1, 1, 2, 2, 1, 1, - 0, 0, 1, 1, 2, 1, 2, 5, 1, 0, 2, 1, 2, 0, 1, 2, 2, 0, 0, 1, 1, 3, 0, 2, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-18.json b/priv/repo/major_topics_seed/data-18.json deleted file mode 100644 index 164aa7cf1b..0000000000 --- a/priv/repo/major_topics_seed/data-18.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["02.05.24","03.05.24","03.05.24","03.05.24","03.05.24","03.05.24","03.05.24","03.05.24","04.05.24","04.05.24","04.05.24","04.05.24","04.05.24","04.05.24","04.05.24","04.05.24","05.05.24","05.05.24","05.05.24","05.05.24","05.05.24","05.05.24","05.05.24","05.05.24","06.05.24","06.05.24","06.05.24","06.05.24","06.05.24","06.05.24","06.05.24","06.05.24","07.05.24","07.05.24","07.05.24","07.05.24","07.05.24","07.05.24","07.05.24","07.05.24","08.05.24","08.05.24","08.05.24","08.05.24","08.05.24","08.05.24","08.05.24","08.05.24","09.05.24","09.05.24","09.05.24","09.05.24","09.05.24","09.05.24","09.05.24"],"datasets":[{"label":"BTC price","topics":"btc,price,resistance,range,close","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin price movements and analysis\n- Potential Bitcoin short squeeze\n- MVRV 90-Day Ratio indicating Bitcoin in a prime buy zone\n- Technical analysis of Bitcoin charts and potential breakouts\n- Speculation on Bitcoin price reaching $72,000\n- Profit-taking strategies for Bitcoin trading\n- Comparison of average Bitcoin price during halving cycles\n- Discussion on lower highs and potential bounce for Bitcoin\n\nOverall, the sentiment seems to be bullish with discussions around potential price increases, technical analysis, and profit-taking strategies. Traders are closely monitoring Bitcoin's price movements and looking for opportunities to capitalize on market trends.","data":[17,41,10,19,97,127,32,74,11,27,10,20,34,14,12,11,8,31,21,11,12,20,9,28,17,16,12,16,11,12,21,24,4,20,13,16,8,28,57,26,42,23,30,21,20,15,27,23,18,19,16,19,13,20,5]},{"label":"BTC","topics":"bitcoin,fiat,money,world,people","description":"The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin's unstoppable rise and potential for growth\n- The importance of understanding Bitcoin's monetary policy\n- The criticism and blame directed towards Bitcoin for issues in the crypto market\n- The need to opt out of fiat currency and inflation in favor of Bitcoin\n- The potential for Bitcoin to outperform other cryptocurrencies\n- The accumulation of Bitcoin failing to keep pace with issuance\n- The belief that Bitcoin is not outside the system and can be manipulated\n\nOverall, the sentiment towards Bitcoin in the social media discussions seems positive, with a focus on its potential as a valuable asset and a way to opt out of traditional financial systems.","data":[8,8,16,16,102,94,13,13,12,20,10,21,11,17,11,28,13,21,25,22,21,14,28,17,14,23,13,23,27,19,20,10,29,13,16,24,33,17,12,23,18,16,37,20,28,34,33,16,20,13,28,14,25,21,21]},{"label":"AI","topics":"ai,intelligence,fet,models,data","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n- Elon Musk's AI startup raising $6 billion and closing funding round at a valuation of $18 billion\n- Meta CEO Mark Zuckerberg's investments in artificial intelligence and the time it may take for Meta to profit from AI\n- AI tokens outperforming in crypto markets\n- AI dating coach built on ChatGPT making $190,000/month\n- Speculation on the future of AI computing and its potential impact on humanity\n- Microsoft reportedly planning a $100 billion supercomputer powered by nuclear plants\n- Data privacy and self-sovereignty as urgent human rights issues in the Post-AI era\n- Braintrust's new AI Recruiter \"Braintrust AIR\" aiming to reduce bias and increase diversity in hiring\n- $INNO providing AI tools for creating websites quickly\n- Meta investing $30 billion in Nvidia GPUs for AI training.","data":[39,50,13,13,0,1,9,3,8,10,11,11,14,14,5,10,6,9,10,6,15,12,8,5,9,13,17,10,13,9,9,7,11,16,16,15,6,12,12,16,11,10,10,4,8,12,10,8,11,8,13,5,8,10,10]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, meme formats, meme trading, meme card creations, meme coin battles, meme coin indexes, meme coin projects benefiting dogs and humanity, memecoin market growth, memecoin airdrops, memecoin pre-sales, memecoin farming, and memecoin community events. There is also a mention of traditional crypto projects sharing the spotlight with the booming memecoin market and the interest of institutional investors in memecoins. Overall, the discussion revolves around the popularity, potential, and impact of meme coins in the crypto industry.","data":[4,4,4,10,2,2,5,7,12,6,13,10,9,8,13,7,4,7,5,0,6,18,6,7,6,10,1,12,8,13,11,60,62,5,12,4,9,8,6,4,2,7,9,9,4,2,14,8,14,6,14,6,7,8,7]},{"label":"SOL","topics":"solana,sol,presale,meme,memecoin","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana network and its potential for high returns\n- Trading and investing in meme coins on Solana\n- Wormhole experiencing high volume transfers between Solana and the SUI network\n- Launch of new projects like SolarXcoin and Lord Of SOL\n- Potential scams and warnings to be cautious\n- Altcoin of the week short set up on $SOL\n- Decrease in total value locked on Solana\n- Speculation on the future performance of Solana\n- Use of Solana network for transactions and purchases\n- Community-based projects and fairlaunch presales on Solana\n\nOverall, the discussions on Twitter indicate a mix of excitement, caution, and speculation surrounding the Solana network and various projects and coins within the crypto industry.","data":[5,9,3,2,0,1,5,3,3,8,8,4,9,3,4,7,5,4,6,5,5,11,4,4,5,3,7,5,10,8,2,9,14,6,5,4,4,3,15,13,7,1,7,3,30,1,3,5,3,7,2,6,8,2,4]},{"label":"Art","topics":"art,artists,artist,digital,pieces","description":"Based on the messages from twitter, it seems that the key topics being discussed in the crypto industry include digital art, NFTs (non-fungible tokens), crypto assets like Cryptopunks, and the impact of technology on art. There is also a focus on the importance of supporting artists and appreciating their work. The messages highlight the intersection of art and technology, with discussions on digital paintings, minting artwork, and the use of social media platforms for showcasing and promoting art. Overall, the crypto community is actively engaged in exploring new forms of art and the potential of blockchain technology in the art world.","data":[4,5,63,5,0,0,3,1,8,6,7,11,7,5,9,5,3,2,8,3,1,7,11,8,5,6,7,11,4,3,8,3,3,5,1,5,8,3,3,5,2,3,3,5,0,3,5,5,4,5,5,3,4,3,7]},{"label":"Mining","topics":"mining,miners,miner,halving,energy","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin mining companies reporting production declines following the halving event.\n2. The impact of Bitcoin's price on miner profitability.\n3. Routine infrastructure maintenance processes in Bitcoin mining.\n4. Decreases in Bitcoin production by public mining companies.\n5. The latest mining difficulty adjustment for Bitcoin.\n6. Energy and environmental benefits of Bitcoin.\n7. Challenges and innovations in cryptocurrency mining post-2024 halving.\n8. Peak Mining, a silver partner of BTCPrague 2024, powering the future of the Bitcoin network.\n9. Liquidity mining with the MetisEDF for protocol and user value acquisition.\n10. Research supporting energy and environmental benefits of Bitcoin.\n\nThese topics reflect the current trends and discussions within the crypto community, highlighting the challenges, innovations, and opportunities in the industry.","data":[4,4,5,3,48,6,5,4,8,3,2,3,2,5,5,4,1,6,3,3,3,4,4,11,2,1,4,5,6,6,4,9,23,7,0,2,0,8,4,2,3,5,2,2,5,3,3,1,1,1,2,4,1,2,3]},{"label":"Inflation","topics":"inflation,rates,rate,fed,cut","description":"The key topics currently discussed in the crypto industry on social media include:\n- The impact of inflation on the economy and financial markets\n- Central bank policies and interest rates\n- Market reactions to statements from financial officials such as Janet Yellen and Mark Spitznagel\n- Rising costs of living, particularly in housing and food prices\n- The concept of transitory inflation and its implications for investments\n- Cryptocurrency minting and trading opportunities\n\nOverall, the discussions on social media reflect a mix of concerns about inflation, government policies, and investment strategies within the crypto industry.","data":[1,2,5,4,1,0,5,1,2,0,5,5,5,2,2,8,2,2,7,1,1,7,1,8,3,31,5,4,2,1,4,32,1,4,3,5,8,6,5,6,9,3,11,4,3,2,5,1,3,4,7,2,1,2,5]},{"label":"DOGE","topics":"dogecoin,doge,tesla,elonmusk,payment","description":"Based on the messages from Twitter, it seems that the key topics currently discussed in the crypto community are related to Dogecoin ($DOGE). Some of the main points mentioned include:\n\n- Dogecoin payments being accepted by various businesses, such as @WburgPizza\n- Speculation on Dogecoin's price reaching $0.2 in May 2024\n- Increased network activity and wallet balances leading to a price surge\n- The potential of Dogecoin as an investment, with pros and cons being explored\n- The rise in Dogecoin's price on exchanges like BitMart\n- Discussions on joining the \"DOGE army\" and the value of being part of the community\n- Memes and jokes surrounding Dogecoin and its comparison to Bitcoin\n- New user promotions and rewards for trading Dogecoin\n\nOverall, it appears that Dogecoin continues to be a popular and trending topic within the crypto industry, with both positive and speculative discussions taking place.","data":[6,3,1,0,0,0,4,5,3,1,2,3,1,3,107,2,0,1,2,4,1,5,1,6,2,3,4,4,2,1,2,2,1,6,1,1,4,2,0,4,2,1,0,3,0,1,3,5,4,1,0,5,2,5,1]},{"label":"Blast Jackpot","topics":"blast,jackpot,gold,pacmoon,won","description":"The key topics discussed in the messages from Twitter regarding Blast Jackpot and crypto industry include:\n- Discussion about winning the Blast Gold Jackpot by holding tokens and NFTs on Blast\n- Launch of Blast token called Jackpot with utility for Blast Jackpot Gold entry\n- Mention of various tokens and NFTs that reward users on Blast\n- Speculation on which project will win the next Blast Jackpot\n- Importance of adapting to changes in the Blast ecosystem to succeed\n- Introduction of on-chain GambleFi product on Blast called Flashbitxyz\n- Impact of Blast Jackpot launch on nft and token prices\n- Easy and fun farming opportunities on Blast through Pacbot\n- Support for Blast projects like Blasted Grifters by XCOPYART\n- Minting for the culture and distribution of gold to minters on Blast\n\nOverall, the messages reflect excitement and engagement with the Blast Jackpot and various projects on the Blast platform within the crypto community on Twitter.","data":[2,1,5,9,0,18,8,3,3,3,3,4,5,4,0,1,0,2,8,3,5,9,4,6,4,2,3,6,5,3,6,2,4,3,4,9,0,6,1,3,2,1,3,0,2,1,2,6,5,1,1,2,1,25,5]},{"label":"New listings","topics":"listing,utc,deposit,trading,bitmart","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. New exchange listings: Various tokens such as $PNG, $MOLLARS, $TYT, $NUB, $ZERO, $ETHFI, $MANEKI, $ATOR, $AREA, $FLUFF, $BUNNY, $TIM, $MONKE, $MICHI, $PIKA, Hank (HANK), and Hard Rock (ROCK) are being listed on different exchanges like BitunixOfficial, BitMart, LCX Exchange, BTSE, KuCoin, Poloniex, WazirX, Gateio, and VinDAX.\n\n2. Token updates: Tokens like $ATOM, $STONE, $OM, $MANTA, $ZEROLEND, and $MOCA are being discussed for their staking, borrowing, and trading functionalities.\n\n3. Memecoins: Memecoins like $NUB and $MANEKI, inspired by internet characters, are gaining attention in the crypto community.\n\n4. Pre-market trading: Zeta Markets (Z) and Mocaverse (MOCA) are launching pre-market trading on Gateio, creating opportunities for early trend-catching.\n\n5. Trading features: Perpetual swap trading, margin trading, and simple earn options are being highlighted for tokens like $ZERO and $ETHFI.\n\nOverall, the crypto industry on Twitter is buzzing with new listings, token updates, memecoins, pre-market trading opportunities, and trading features.","data":[1,2,4,2,0,24,1,0,1,0,1,0,1,4,0,0,1,0,2,2,2,5,2,1,13,1,1,0,7,11,0,3,0,4,40,5,0,25,0,0,0,1,1,0,0,3,2,1,1,12,1,14,1,0,10]},{"label":"PEPE","topics":"pepe,frens,whale,coin,meme","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the potential for a huge pump in $PEPE, with discussions about defending support levels, price targeting a new all-time high in May 2024, and a smart money purchase of nearly 143 billion $PEPE. Other coins like $RNDR and @Polkadot are also mentioned as leading out the gates. There is also mention of a new coin called @epikduckcoin with optimism about its potential growth. Overall, there is a mix of bullish sentiment, price speculation, and excitement about various cryptocurrency projects in the community.","data":[5,0,3,2,0,0,4,0,4,1,6,3,6,2,1,1,1,1,5,7,3,0,1,1,5,2,1,4,3,1,1,1,7,1,3,5,61,3,2,2,2,3,3,2,4,4,1,1,3,6,2,2,2,6,1]},{"label":"Friendtech","topics":"friend,friendtech,club,keys,airdrop","description":"Based on the messages from Twitter, it seems that the cryptocurrency $FRIEND is a hot topic of discussion. There are mixed opinions about the value and potential of $FRIEND, with some users expressing skepticism about its transferability and trading fees, while others are optimistic about its potential for a price increase. The launch of Friend Tech V2 has generated interest, with some users willing to give the project a chance despite past issues with Friend Tech V1. The number of clubs and transaction volume related to $FRIEND has been increasing since the release of Friend Tech V2. Overall, there is a mix of excitement, skepticism, and speculation surrounding $FRIEND in the crypto community.","data":[6,3,1,4,0,1,2,3,1,2,7,2,1,4,2,1,1,4,6,37,6,4,2,3,2,3,5,5,1,3,5,2,1,1,4,0,2,2,5,6,2,4,4,5,2,2,3,3,1,3,4,8,1,1,4]},{"label":"NFT","topics":"nft,nfts,pfp,collection,mint","description":"The key topics currently discussed in the crypto industry on social media include NFT collections, NFT minting, top selling NFTs, NFT marketplaces, NFT projects like EGADS and MintTree, Casio NFTs, ME project for personalized NFTs, Blast_L2 NFT projects, Ultra platform for NFT collections, and various crypto-related hashtags like #Bitcoin, #cryptocurrency, #CryptoNews, #NFTCommunity, and #NFTs. The community is actively engaging in discussions about NFT portfolio management, supporting NFT projects with good intentions, and exploring new opportunities in the NFT space.","data":[4,0,4,1,1,0,1,3,9,10,4,4,2,1,2,0,2,4,3,4,1,4,2,4,2,4,2,4,6,1,1,4,7,3,22,6,6,2,4,2,3,2,4,4,3,0,10,1,3,2,5,3,3,1,1]},{"label":"ETH","topics":"ethereum,eth,ethereums,price,resistance","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Ethereum (ETH) price predictions and analysis, with mentions of potential price targets, support levels, and signals for short and long positions.\n2. Ethereum Foundation shifting $3M ETH, sparking concerns about future price dips.\n3. US House voting to overturn SEC rule preventing highly regulated financial firms from holding Bitcoin and crypto, with a significance rating of three stars.\n4. Comparison of performance between Bitcoin and Ethereum during the 2023-23 cycle, noting weaker price performance for ETH.\n5. Speculation about Ethereum being classified as a commodity, approval of an Ethereum Spot ETF, and approval of Ethereum staking by the SEC in 2024.\n6. Analysis of the coin $AEVO, stuck within a descending wedge pattern and showing potential bullish movements based on RSI signals.\n\nOverall, the discussions on Twitter revolve around price analysis, regulatory developments, and technical analysis of specific coins in the crypto industry.","data":[4,1,1,5,0,0,1,1,0,3,1,1,1,1,1,1,80,0,1,1,2,1,2,0,4,4,0,3,1,3,3,3,3,5,3,6,0,1,0,2,3,1,4,5,1,3,3,5,3,1,1,6,1,3,0]},{"label":"ETFs","topics":"gbtc,inflows,inflow,net,outflows","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin ETFs experiencing inflows and outflows, with GBTC seeing its first net inflow day and buying a significant amount of Bitcoin.\n2. BlackRock's Bitcoin ETF reporting its first outflows, reflecting a drop in BTC prices.\n3. Ethereum network gas fees dropping to 4 gwei.\n4. U.S. CFTC Chairman predicting a wave of cryptocurrency enforcement cycles in the next 2 years.\n5. ETFs collectively adding 3,710 bitcoins in a single day, equivalent to approximately $236 million.\n6. AI altcoin obtaining fresh investments amidst Bitcoin ETF outflows.\n7. Updates on daily ETF flows, with GBTC having a neutral flow for the first time.\n8. Airdrop promotions for ETF traders, offering double rewards for a limited time.\n9. Analysis of outflows from US Bitcoin ETFs, with GBTC leading in outflows but BTCO seeing the highest inflow on a specific day.","data":[7,3,1,4,20,7,3,0,0,1,0,3,2,3,0,1,18,4,1,7,7,1,0,2,4,2,2,0,0,0,6,1,0,6,0,4,1,3,0,2,1,2,4,2,1,26,2,1,2,2,2,3,0,0,12]},{"label":"Fantasy Top","topics":"fantasy,fantasytop,cards,card,floor","description":"The messages from Twitter suggest that there is a lot of discussion around the Fantasy Top game in the crypto industry. Some users are praising the game for being fun and exciting, while others are skeptical about its high costs and potential for being a grift. There are mentions of accumulating picks, building decks, and preparing for tournaments with different strategies. Additionally, there is talk about the number of fantasy cards in circulation and potential for profit sharing in the future. Overall, it seems like Fantasy Top is generating a mix of excitement and skepticism within the crypto community.","data":[4,6,3,0,0,1,2,5,4,0,1,2,4,1,1,3,3,0,31,3,6,4,2,2,4,7,0,1,0,6,7,1,1,0,0,4,2,6,1,3,1,2,3,3,4,3,1,4,3,7,5,3,2,1,2]},{"label":"Hong Kong ETF","topics":"hong,kong,etfs,china,spot","description":"The key topics currently being discussed on Twitter in relation to the crypto industry in Hong Kong include:\n- Hong Kong's asset management firm becoming the largest investor in BlackRock Bitcoin ETF\n- Approval of spot BTC & ETH ETFs in Hong Kong\n- Decline in bitcoin inflows for Hong Kong's spot ETFs\n- Introduction of Project Ensemble Architecture Community by the Hong Kong Monetary Authority\n- Robust investor interest in Hong Kong Bitcoin ETFs\n- Comparison of trading volumes between Hong Kong and US ETFs\n- Investment by Monolith Management in BlackRock's Bitcoin ETF\n- Insights into potential US demand for Ether ETFs based on Hong Kong's recent ETF rollout\n- Highlights of Bitcoin's 2024, including approval of spot Bitcoin ETFs in the US and Hong Kong, halving of mining rewards, new all-time high, and current trading price.","data":[7,2,7,5,2,1,7,0,5,7,2,4,6,2,1,4,8,4,2,2,1,1,0,2,7,4,2,5,6,2,1,3,1,1,5,3,1,4,1,5,3,2,5,3,0,2,2,2,4,6,1,4,2,2,0]},{"label":"SHIB","topics":"shiba,inu,shib,burn,trillion","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. Shiba Inu (#SHIB) updates and events: There is speculation about a lead stirring speculation with an unexpected location update, calls for an epic event, a cryptic message hinting at breathing new life into the ecosystem, and setting 81 million SHIB ablaze as burn rate soars.\n\n2. Comparison between Shiba Inu and Dogecoin (DOGE): Traders are discussing the potential of Shiba Inu compared to Dogecoin, with some suggesting that SHIB may outperform DOGE in the future.\n\n3. Technical analysis and trading signals for Shiba Inu: Traders are analyzing the price movements of SHIB, with discussions about a breakout from a falling wedge, signal sniper indicators, and potential long positions.\n\n4. Competitors to Dogecoin rising: Shiba Inu is mentioned as setting its sights on $0.0001, while ETFSwap kickstarts a 100X rally, positioning themselves as potential competitors to Dogecoin.\n\n5. Market news and updates: There are mentions of a large amount of SHIB mysteriously grabbed on Robinhood, Ripple's failed XRP escrow lockup, and Peter Schiff being named a new bearish target for BTC.\n\n6. Shiba Inu gaining popularity among new crypto wallets: Nansen shows that SHIB is a favorite holding among new crypto wallets, indicating growing interest in the token.\n\n7. Listings and partnerships: Shiba Inu has been listed on the Nexo trading platform, potentially leading to a price rally. Chow Chow Inu (CHOW) is also mentioned as having an ongoing IEO on the Solana blockchain.\n\nOverall, the discussions on Twitter revolve around Shiba Inu's updates, technical analysis, market competition, and partnerships, indicating a high level of interest and activity in the SHIB community.","data":[0,3,0,0,0,0,2,2,2,2,3,0,0,2,7,2,0,9,2,1,0,0,0,2,1,2,36,3,5,0,1,6,0,1,0,0,0,2,1,6,2,3,2,34,4,2,2,5,1,2,0,3,0,1,1]},{"label":"BTC 1b transactions","topics":"transactions,billion,milestone,transaction,network","description":"The key topic currently discussed in the crypto industry on social media platforms like Twitter is the milestone achievement of Bitcoin surpassing 1 billion transactions. This achievement is being celebrated as a significant milestone in the history of Bitcoin, highlighting its growing adoption and use by people around the world. Additionally, there is also discussion about the implications of this milestone on the future of cryptocurrency, particularly in terms of transaction fees and the rise of decentralized finance. Overall, the sentiment surrounding this topic is positive, with many users expressing excitement and optimism about the future of Bitcoin and the crypto industry as a whole.","data":[6,0,0,2,4,15,6,1,3,1,5,4,3,1,2,1,1,1,1,1,0,0,3,13,2,2,0,4,0,2,2,2,2,17,2,5,0,1,8,5,3,0,1,1,1,0,1,0,1,20,0,2,0,3,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-18.ts b/priv/repo/major_topics_seed/data-18.ts deleted file mode 100644 index 672f03e1a0..0000000000 --- a/priv/repo/major_topics_seed/data-18.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '02.05.24', - '03.05.24', - '03.05.24', - '03.05.24', - '03.05.24', - '03.05.24', - '03.05.24', - '03.05.24', - '04.05.24', - '04.05.24', - '04.05.24', - '04.05.24', - '04.05.24', - '04.05.24', - '04.05.24', - '04.05.24', - '05.05.24', - '05.05.24', - '05.05.24', - '05.05.24', - '05.05.24', - '05.05.24', - '05.05.24', - '05.05.24', - '06.05.24', - '06.05.24', - '06.05.24', - '06.05.24', - '06.05.24', - '06.05.24', - '06.05.24', - '06.05.24', - '07.05.24', - '07.05.24', - '07.05.24', - '07.05.24', - '07.05.24', - '07.05.24', - '07.05.24', - '07.05.24', - '08.05.24', - '08.05.24', - '08.05.24', - '08.05.24', - '08.05.24', - '08.05.24', - '08.05.24', - '08.05.24', - '09.05.24', - '09.05.24', - '09.05.24', - '09.05.24', - '09.05.24', - '09.05.24', - '09.05.24', - ], - datasets: [ - { - label: 'BTC price', - topics: 'btc,price,resistance,range,close', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin price movements and analysis\n- Potential Bitcoin short squeeze\n- MVRV 90-Day Ratio indicating Bitcoin in a prime buy zone\n- Technical analysis of Bitcoin charts and potential breakouts\n- Speculation on Bitcoin price reaching $72,000\n- Profit-taking strategies for Bitcoin trading\n- Comparison of average Bitcoin price during halving cycles\n- Discussion on lower highs and potential bounce for Bitcoin\n\nOverall, the sentiment seems to be bullish with discussions around potential price increases, technical analysis, and profit-taking strategies. Traders are closely monitoring Bitcoin's price movements and looking for opportunities to capitalize on market trends.", - data: [ - 17, 41, 10, 19, 97, 127, 32, 74, 11, 27, 10, 20, 34, 14, 12, 11, 8, 31, 21, 11, 12, 20, 9, - 28, 17, 16, 12, 16, 11, 12, 21, 24, 4, 20, 13, 16, 8, 28, 57, 26, 42, 23, 30, 21, 20, 15, - 27, 23, 18, 19, 16, 19, 13, 20, 5, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,fiat,money,world,people', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin's unstoppable rise and potential for growth\n- The importance of understanding Bitcoin's monetary policy\n- The criticism and blame directed towards Bitcoin for issues in the crypto market\n- The need to opt out of fiat currency and inflation in favor of Bitcoin\n- The potential for Bitcoin to outperform other cryptocurrencies\n- The accumulation of Bitcoin failing to keep pace with issuance\n- The belief that Bitcoin is not outside the system and can be manipulated\n\nOverall, the sentiment towards Bitcoin in the social media discussions seems positive, with a focus on its potential as a valuable asset and a way to opt out of traditional financial systems.", - data: [ - 8, 8, 16, 16, 102, 94, 13, 13, 12, 20, 10, 21, 11, 17, 11, 28, 13, 21, 25, 22, 21, 14, 28, - 17, 14, 23, 13, 23, 27, 19, 20, 10, 29, 13, 16, 24, 33, 17, 12, 23, 18, 16, 37, 20, 28, 34, - 33, 16, 20, 13, 28, 14, 25, 21, 21, - ], - }, - { - label: 'AI', - topics: 'ai,intelligence,fet,models,data', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n- Elon Musk's AI startup raising $6 billion and closing funding round at a valuation of $18 billion\n- Meta CEO Mark Zuckerberg's investments in artificial intelligence and the time it may take for Meta to profit from AI\n- AI tokens outperforming in crypto markets\n- AI dating coach built on ChatGPT making $190,000/month\n- Speculation on the future of AI computing and its potential impact on humanity\n- Microsoft reportedly planning a $100 billion supercomputer powered by nuclear plants\n- Data privacy and self-sovereignty as urgent human rights issues in the Post-AI era\n- Braintrust's new AI Recruiter \"Braintrust AIR\" aiming to reduce bias and increase diversity in hiring\n- $INNO providing AI tools for creating websites quickly\n- Meta investing $30 billion in Nvidia GPUs for AI training.", - data: [ - 39, 50, 13, 13, 0, 1, 9, 3, 8, 10, 11, 11, 14, 14, 5, 10, 6, 9, 10, 6, 15, 12, 8, 5, 9, 13, - 17, 10, 13, 9, 9, 7, 11, 16, 16, 15, 6, 12, 12, 16, 11, 10, 10, 4, 8, 12, 10, 8, 11, 8, 13, - 5, 8, 10, 10, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, meme formats, meme trading, meme card creations, meme coin battles, meme coin indexes, meme coin projects benefiting dogs and humanity, memecoin market growth, memecoin airdrops, memecoin pre-sales, memecoin farming, and memecoin community events. There is also a mention of traditional crypto projects sharing the spotlight with the booming memecoin market and the interest of institutional investors in memecoins. Overall, the discussion revolves around the popularity, potential, and impact of meme coins in the crypto industry.', - data: [ - 4, 4, 4, 10, 2, 2, 5, 7, 12, 6, 13, 10, 9, 8, 13, 7, 4, 7, 5, 0, 6, 18, 6, 7, 6, 10, 1, 12, - 8, 13, 11, 60, 62, 5, 12, 4, 9, 8, 6, 4, 2, 7, 9, 9, 4, 2, 14, 8, 14, 6, 14, 6, 7, 8, 7, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,presale,meme,memecoin', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana network and its potential for high returns\n- Trading and investing in meme coins on Solana\n- Wormhole experiencing high volume transfers between Solana and the SUI network\n- Launch of new projects like SolarXcoin and Lord Of SOL\n- Potential scams and warnings to be cautious\n- Altcoin of the week short set up on $SOL\n- Decrease in total value locked on Solana\n- Speculation on the future performance of Solana\n- Use of Solana network for transactions and purchases\n- Community-based projects and fairlaunch presales on Solana\n\nOverall, the discussions on Twitter indicate a mix of excitement, caution, and speculation surrounding the Solana network and various projects and coins within the crypto industry.', - data: [ - 5, 9, 3, 2, 0, 1, 5, 3, 3, 8, 8, 4, 9, 3, 4, 7, 5, 4, 6, 5, 5, 11, 4, 4, 5, 3, 7, 5, 10, 8, - 2, 9, 14, 6, 5, 4, 4, 3, 15, 13, 7, 1, 7, 3, 30, 1, 3, 5, 3, 7, 2, 6, 8, 2, 4, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,digital,pieces', - description: - 'Based on the messages from twitter, it seems that the key topics being discussed in the crypto industry include digital art, NFTs (non-fungible tokens), crypto assets like Cryptopunks, and the impact of technology on art. There is also a focus on the importance of supporting artists and appreciating their work. The messages highlight the intersection of art and technology, with discussions on digital paintings, minting artwork, and the use of social media platforms for showcasing and promoting art. Overall, the crypto community is actively engaged in exploring new forms of art and the potential of blockchain technology in the art world.', - data: [ - 4, 5, 63, 5, 0, 0, 3, 1, 8, 6, 7, 11, 7, 5, 9, 5, 3, 2, 8, 3, 1, 7, 11, 8, 5, 6, 7, 11, 4, - 3, 8, 3, 3, 5, 1, 5, 8, 3, 3, 5, 2, 3, 3, 5, 0, 3, 5, 5, 4, 5, 5, 3, 4, 3, 7, - ], - }, - { - label: 'Mining', - topics: 'mining,miners,miner,halving,energy', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin mining companies reporting production declines following the halving event.\n2. The impact of Bitcoin's price on miner profitability.\n3. Routine infrastructure maintenance processes in Bitcoin mining.\n4. Decreases in Bitcoin production by public mining companies.\n5. The latest mining difficulty adjustment for Bitcoin.\n6. Energy and environmental benefits of Bitcoin.\n7. Challenges and innovations in cryptocurrency mining post-2024 halving.\n8. Peak Mining, a silver partner of BTCPrague 2024, powering the future of the Bitcoin network.\n9. Liquidity mining with the MetisEDF for protocol and user value acquisition.\n10. Research supporting energy and environmental benefits of Bitcoin.\n\nThese topics reflect the current trends and discussions within the crypto community, highlighting the challenges, innovations, and opportunities in the industry.", - data: [ - 4, 4, 5, 3, 48, 6, 5, 4, 8, 3, 2, 3, 2, 5, 5, 4, 1, 6, 3, 3, 3, 4, 4, 11, 2, 1, 4, 5, 6, 6, - 4, 9, 23, 7, 0, 2, 0, 8, 4, 2, 3, 5, 2, 2, 5, 3, 3, 1, 1, 1, 2, 4, 1, 2, 3, - ], - }, - { - label: 'Inflation', - topics: 'inflation,rates,rate,fed,cut', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- The impact of inflation on the economy and financial markets\n- Central bank policies and interest rates\n- Market reactions to statements from financial officials such as Janet Yellen and Mark Spitznagel\n- Rising costs of living, particularly in housing and food prices\n- The concept of transitory inflation and its implications for investments\n- Cryptocurrency minting and trading opportunities\n\nOverall, the discussions on social media reflect a mix of concerns about inflation, government policies, and investment strategies within the crypto industry.', - data: [ - 1, 2, 5, 4, 1, 0, 5, 1, 2, 0, 5, 5, 5, 2, 2, 8, 2, 2, 7, 1, 1, 7, 1, 8, 3, 31, 5, 4, 2, 1, - 4, 32, 1, 4, 3, 5, 8, 6, 5, 6, 9, 3, 11, 4, 3, 2, 5, 1, 3, 4, 7, 2, 1, 2, 5, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,tesla,elonmusk,payment', - description: - 'Based on the messages from Twitter, it seems that the key topics currently discussed in the crypto community are related to Dogecoin ($DOGE). Some of the main points mentioned include:\n\n- Dogecoin payments being accepted by various businesses, such as @WburgPizza\n- Speculation on Dogecoin\'s price reaching $0.2 in May 2024\n- Increased network activity and wallet balances leading to a price surge\n- The potential of Dogecoin as an investment, with pros and cons being explored\n- The rise in Dogecoin\'s price on exchanges like BitMart\n- Discussions on joining the "DOGE army" and the value of being part of the community\n- Memes and jokes surrounding Dogecoin and its comparison to Bitcoin\n- New user promotions and rewards for trading Dogecoin\n\nOverall, it appears that Dogecoin continues to be a popular and trending topic within the crypto industry, with both positive and speculative discussions taking place.', - data: [ - 6, 3, 1, 0, 0, 0, 4, 5, 3, 1, 2, 3, 1, 3, 107, 2, 0, 1, 2, 4, 1, 5, 1, 6, 2, 3, 4, 4, 2, 1, - 2, 2, 1, 6, 1, 1, 4, 2, 0, 4, 2, 1, 0, 3, 0, 1, 3, 5, 4, 1, 0, 5, 2, 5, 1, - ], - }, - { - label: 'Blast Jackpot', - topics: 'blast,jackpot,gold,pacmoon,won', - description: - 'The key topics discussed in the messages from Twitter regarding Blast Jackpot and crypto industry include:\n- Discussion about winning the Blast Gold Jackpot by holding tokens and NFTs on Blast\n- Launch of Blast token called Jackpot with utility for Blast Jackpot Gold entry\n- Mention of various tokens and NFTs that reward users on Blast\n- Speculation on which project will win the next Blast Jackpot\n- Importance of adapting to changes in the Blast ecosystem to succeed\n- Introduction of on-chain GambleFi product on Blast called Flashbitxyz\n- Impact of Blast Jackpot launch on nft and token prices\n- Easy and fun farming opportunities on Blast through Pacbot\n- Support for Blast projects like Blasted Grifters by XCOPYART\n- Minting for the culture and distribution of gold to minters on Blast\n\nOverall, the messages reflect excitement and engagement with the Blast Jackpot and various projects on the Blast platform within the crypto community on Twitter.', - data: [ - 2, 1, 5, 9, 0, 18, 8, 3, 3, 3, 3, 4, 5, 4, 0, 1, 0, 2, 8, 3, 5, 9, 4, 6, 4, 2, 3, 6, 5, 3, - 6, 2, 4, 3, 4, 9, 0, 6, 1, 3, 2, 1, 3, 0, 2, 1, 2, 6, 5, 1, 1, 2, 1, 25, 5, - ], - }, - { - label: 'New listings', - topics: 'listing,utc,deposit,trading,bitmart', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n\n1. New exchange listings: Various tokens such as $PNG, $MOLLARS, $TYT, $NUB, $ZERO, $ETHFI, $MANEKI, $ATOR, $AREA, $FLUFF, $BUNNY, $TIM, $MONKE, $MICHI, $PIKA, Hank (HANK), and Hard Rock (ROCK) are being listed on different exchanges like BitunixOfficial, BitMart, LCX Exchange, BTSE, KuCoin, Poloniex, WazirX, Gateio, and VinDAX.\n\n2. Token updates: Tokens like $ATOM, $STONE, $OM, $MANTA, $ZEROLEND, and $MOCA are being discussed for their staking, borrowing, and trading functionalities.\n\n3. Memecoins: Memecoins like $NUB and $MANEKI, inspired by internet characters, are gaining attention in the crypto community.\n\n4. Pre-market trading: Zeta Markets (Z) and Mocaverse (MOCA) are launching pre-market trading on Gateio, creating opportunities for early trend-catching.\n\n5. Trading features: Perpetual swap trading, margin trading, and simple earn options are being highlighted for tokens like $ZERO and $ETHFI.\n\nOverall, the crypto industry on Twitter is buzzing with new listings, token updates, memecoins, pre-market trading opportunities, and trading features.', - data: [ - 1, 2, 4, 2, 0, 24, 1, 0, 1, 0, 1, 0, 1, 4, 0, 0, 1, 0, 2, 2, 2, 5, 2, 1, 13, 1, 1, 0, 7, 11, - 0, 3, 0, 4, 40, 5, 0, 25, 0, 0, 0, 1, 1, 0, 0, 3, 2, 1, 1, 12, 1, 14, 1, 0, 10, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frens,whale,coin,meme', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the potential for a huge pump in $PEPE, with discussions about defending support levels, price targeting a new all-time high in May 2024, and a smart money purchase of nearly 143 billion $PEPE. Other coins like $RNDR and @Polkadot are also mentioned as leading out the gates. There is also mention of a new coin called @epikduckcoin with optimism about its potential growth. Overall, there is a mix of bullish sentiment, price speculation, and excitement about various cryptocurrency projects in the community.', - data: [ - 5, 0, 3, 2, 0, 0, 4, 0, 4, 1, 6, 3, 6, 2, 1, 1, 1, 1, 5, 7, 3, 0, 1, 1, 5, 2, 1, 4, 3, 1, 1, - 1, 7, 1, 3, 5, 61, 3, 2, 2, 2, 3, 3, 2, 4, 4, 1, 1, 3, 6, 2, 2, 2, 6, 1, - ], - }, - { - label: 'Friendtech', - topics: 'friend,friendtech,club,keys,airdrop', - description: - 'Based on the messages from Twitter, it seems that the cryptocurrency $FRIEND is a hot topic of discussion. There are mixed opinions about the value and potential of $FRIEND, with some users expressing skepticism about its transferability and trading fees, while others are optimistic about its potential for a price increase. The launch of Friend Tech V2 has generated interest, with some users willing to give the project a chance despite past issues with Friend Tech V1. The number of clubs and transaction volume related to $FRIEND has been increasing since the release of Friend Tech V2. Overall, there is a mix of excitement, skepticism, and speculation surrounding $FRIEND in the crypto community.', - data: [ - 6, 3, 1, 4, 0, 1, 2, 3, 1, 2, 7, 2, 1, 4, 2, 1, 1, 4, 6, 37, 6, 4, 2, 3, 2, 3, 5, 5, 1, 3, - 5, 2, 1, 1, 4, 0, 2, 2, 5, 6, 2, 4, 4, 5, 2, 2, 3, 3, 1, 3, 4, 8, 1, 1, 4, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,collection,mint', - description: - 'The key topics currently discussed in the crypto industry on social media include NFT collections, NFT minting, top selling NFTs, NFT marketplaces, NFT projects like EGADS and MintTree, Casio NFTs, ME project for personalized NFTs, Blast_L2 NFT projects, Ultra platform for NFT collections, and various crypto-related hashtags like #Bitcoin, #cryptocurrency, #CryptoNews, #NFTCommunity, and #NFTs. The community is actively engaging in discussions about NFT portfolio management, supporting NFT projects with good intentions, and exploring new opportunities in the NFT space.', - data: [ - 4, 0, 4, 1, 1, 0, 1, 3, 9, 10, 4, 4, 2, 1, 2, 0, 2, 4, 3, 4, 1, 4, 2, 4, 2, 4, 2, 4, 6, 1, - 1, 4, 7, 3, 22, 6, 6, 2, 4, 2, 3, 2, 4, 4, 3, 0, 10, 1, 3, 2, 5, 3, 3, 1, 1, - ], - }, - { - label: 'ETH', - topics: 'ethereum,eth,ethereums,price,resistance', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Ethereum (ETH) price predictions and analysis, with mentions of potential price targets, support levels, and signals for short and long positions.\n2. Ethereum Foundation shifting $3M ETH, sparking concerns about future price dips.\n3. US House voting to overturn SEC rule preventing highly regulated financial firms from holding Bitcoin and crypto, with a significance rating of three stars.\n4. Comparison of performance between Bitcoin and Ethereum during the 2023-23 cycle, noting weaker price performance for ETH.\n5. Speculation about Ethereum being classified as a commodity, approval of an Ethereum Spot ETF, and approval of Ethereum staking by the SEC in 2024.\n6. Analysis of the coin $AEVO, stuck within a descending wedge pattern and showing potential bullish movements based on RSI signals.\n\nOverall, the discussions on Twitter revolve around price analysis, regulatory developments, and technical analysis of specific coins in the crypto industry.', - data: [ - 4, 1, 1, 5, 0, 0, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 80, 0, 1, 1, 2, 1, 2, 0, 4, 4, 0, 3, 1, 3, - 3, 3, 3, 5, 3, 6, 0, 1, 0, 2, 3, 1, 4, 5, 1, 3, 3, 5, 3, 1, 1, 6, 1, 3, 0, - ], - }, - { - label: 'ETFs', - topics: 'gbtc,inflows,inflow,net,outflows', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin ETFs experiencing inflows and outflows, with GBTC seeing its first net inflow day and buying a significant amount of Bitcoin.\n2. BlackRock's Bitcoin ETF reporting its first outflows, reflecting a drop in BTC prices.\n3. Ethereum network gas fees dropping to 4 gwei.\n4. U.S. CFTC Chairman predicting a wave of cryptocurrency enforcement cycles in the next 2 years.\n5. ETFs collectively adding 3,710 bitcoins in a single day, equivalent to approximately $236 million.\n6. AI altcoin obtaining fresh investments amidst Bitcoin ETF outflows.\n7. Updates on daily ETF flows, with GBTC having a neutral flow for the first time.\n8. Airdrop promotions for ETF traders, offering double rewards for a limited time.\n9. Analysis of outflows from US Bitcoin ETFs, with GBTC leading in outflows but BTCO seeing the highest inflow on a specific day.", - data: [ - 7, 3, 1, 4, 20, 7, 3, 0, 0, 1, 0, 3, 2, 3, 0, 1, 18, 4, 1, 7, 7, 1, 0, 2, 4, 2, 2, 0, 0, 0, - 6, 1, 0, 6, 0, 4, 1, 3, 0, 2, 1, 2, 4, 2, 1, 26, 2, 1, 2, 2, 2, 3, 0, 0, 12, - ], - }, - { - label: 'Fantasy Top', - topics: 'fantasy,fantasytop,cards,card,floor', - description: - 'The messages from Twitter suggest that there is a lot of discussion around the Fantasy Top game in the crypto industry. Some users are praising the game for being fun and exciting, while others are skeptical about its high costs and potential for being a grift. There are mentions of accumulating picks, building decks, and preparing for tournaments with different strategies. Additionally, there is talk about the number of fantasy cards in circulation and potential for profit sharing in the future. Overall, it seems like Fantasy Top is generating a mix of excitement and skepticism within the crypto community.', - data: [ - 4, 6, 3, 0, 0, 1, 2, 5, 4, 0, 1, 2, 4, 1, 1, 3, 3, 0, 31, 3, 6, 4, 2, 2, 4, 7, 0, 1, 0, 6, - 7, 1, 1, 0, 0, 4, 2, 6, 1, 3, 1, 2, 3, 3, 4, 3, 1, 4, 3, 7, 5, 3, 2, 1, 2, - ], - }, - { - label: 'Hong Kong ETF', - topics: 'hong,kong,etfs,china,spot', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry in Hong Kong include:\n- Hong Kong's asset management firm becoming the largest investor in BlackRock Bitcoin ETF\n- Approval of spot BTC & ETH ETFs in Hong Kong\n- Decline in bitcoin inflows for Hong Kong's spot ETFs\n- Introduction of Project Ensemble Architecture Community by the Hong Kong Monetary Authority\n- Robust investor interest in Hong Kong Bitcoin ETFs\n- Comparison of trading volumes between Hong Kong and US ETFs\n- Investment by Monolith Management in BlackRock's Bitcoin ETF\n- Insights into potential US demand for Ether ETFs based on Hong Kong's recent ETF rollout\n- Highlights of Bitcoin's 2024, including approval of spot Bitcoin ETFs in the US and Hong Kong, halving of mining rewards, new all-time high, and current trading price.", - data: [ - 7, 2, 7, 5, 2, 1, 7, 0, 5, 7, 2, 4, 6, 2, 1, 4, 8, 4, 2, 2, 1, 1, 0, 2, 7, 4, 2, 5, 6, 2, 1, - 3, 1, 1, 5, 3, 1, 4, 1, 5, 3, 2, 5, 3, 0, 2, 2, 2, 4, 6, 1, 4, 2, 2, 0, - ], - }, - { - label: 'SHIB', - topics: 'shiba,inu,shib,burn,trillion', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n\n1. Shiba Inu (#SHIB) updates and events: There is speculation about a lead stirring speculation with an unexpected location update, calls for an epic event, a cryptic message hinting at breathing new life into the ecosystem, and setting 81 million SHIB ablaze as burn rate soars.\n\n2. Comparison between Shiba Inu and Dogecoin (DOGE): Traders are discussing the potential of Shiba Inu compared to Dogecoin, with some suggesting that SHIB may outperform DOGE in the future.\n\n3. Technical analysis and trading signals for Shiba Inu: Traders are analyzing the price movements of SHIB, with discussions about a breakout from a falling wedge, signal sniper indicators, and potential long positions.\n\n4. Competitors to Dogecoin rising: Shiba Inu is mentioned as setting its sights on $0.0001, while ETFSwap kickstarts a 100X rally, positioning themselves as potential competitors to Dogecoin.\n\n5. Market news and updates: There are mentions of a large amount of SHIB mysteriously grabbed on Robinhood, Ripple's failed XRP escrow lockup, and Peter Schiff being named a new bearish target for BTC.\n\n6. Shiba Inu gaining popularity among new crypto wallets: Nansen shows that SHIB is a favorite holding among new crypto wallets, indicating growing interest in the token.\n\n7. Listings and partnerships: Shiba Inu has been listed on the Nexo trading platform, potentially leading to a price rally. Chow Chow Inu (CHOW) is also mentioned as having an ongoing IEO on the Solana blockchain.\n\nOverall, the discussions on Twitter revolve around Shiba Inu's updates, technical analysis, market competition, and partnerships, indicating a high level of interest and activity in the SHIB community.", - data: [ - 0, 3, 0, 0, 0, 0, 2, 2, 2, 2, 3, 0, 0, 2, 7, 2, 0, 9, 2, 1, 0, 0, 0, 2, 1, 2, 36, 3, 5, 0, - 1, 6, 0, 1, 0, 0, 0, 2, 1, 6, 2, 3, 2, 34, 4, 2, 2, 5, 1, 2, 0, 3, 0, 1, 1, - ], - }, - { - label: 'BTC 1b transactions', - topics: 'transactions,billion,milestone,transaction,network', - description: - 'The key topic currently discussed in the crypto industry on social media platforms like Twitter is the milestone achievement of Bitcoin surpassing 1 billion transactions. This achievement is being celebrated as a significant milestone in the history of Bitcoin, highlighting its growing adoption and use by people around the world. Additionally, there is also discussion about the implications of this milestone on the future of cryptocurrency, particularly in terms of transaction fees and the rise of decentralized finance. Overall, the sentiment surrounding this topic is positive, with many users expressing excitement and optimism about the future of Bitcoin and the crypto industry as a whole.', - data: [ - 6, 0, 0, 2, 4, 15, 6, 1, 3, 1, 5, 4, 3, 1, 2, 1, 1, 1, 1, 1, 0, 0, 3, 13, 2, 2, 0, 4, 0, 2, - 2, 2, 2, 17, 2, 5, 0, 1, 8, 5, 3, 0, 1, 1, 1, 0, 1, 0, 1, 20, 0, 2, 0, 3, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-19.json b/priv/repo/major_topics_seed/data-19.json deleted file mode 100644 index 7fc106d912..0000000000 --- a/priv/repo/major_topics_seed/data-19.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["09.05.24","10.05.24","10.05.24","10.05.24","10.05.24","10.05.24","10.05.24","10.05.24","11.05.24","11.05.24","11.05.24","11.05.24","11.05.24","11.05.24","11.05.24","11.05.24","12.05.24","12.05.24","12.05.24","12.05.24","12.05.24","12.05.24","12.05.24","12.05.24","13.05.24","13.05.24","13.05.24","13.05.24","13.05.24","13.05.24","13.05.24","13.05.24","14.05.24","14.05.24","14.05.24","14.05.24","14.05.24","14.05.24","14.05.24","14.05.24","15.05.24","15.05.24","15.05.24","15.05.24","15.05.24","15.05.24","15.05.24","15.05.24","16.05.24","16.05.24","16.05.24","16.05.24","16.05.24","16.05.24","16.05.24"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,currency,trust","description":"The messages from twitter suggest that #Bitcoin is a popular topic of discussion among users. Some key points mentioned include the security and decentralization of Bitcoin, its potential to liberate individuals from the traditional financial system, and the contrast between traditional venture capital and Bitcoin-backed companies in terms of value creation. Additionally, there is a mention of the importance of understanding Bitcoin in relation to fiat currency and the potential risks associated with the global financial system. Overall, the messages reflect a positive sentiment towards Bitcoin and its potential as a disruptive force in the financial industry.","data":[19,16,17,20,119,109,17,22,16,21,19,27,13,20,17,33,8,22,35,32,18,35,28,26,18,21,19,27,26,22,21,10,23,20,23,19,38,21,30,19,15,28,25,24,13,23,15,24,29,18,44,22,15,22,37]},{"label":"AI","topics":"ai,openai,chatgpt,gpt4o,google","description":"The key topics currently being discussed in the crypto industry on social media include the development of AI models such as GPT-4o for various applications, concerns about privacy and censorship related to AI technology, the use of chatbots to fight fake news, advancements in AI technology for manufacturing processes, and the impact of AI on the cost and accessibility of human-level intelligence. Additionally, there is discussion about the potential implications of GPT-4o on security measures like captchas and the shift towards paid services in the digital landscape. The SelfKey DAO is also mentioned as a platform for token holders to invite new members and increase their token stash.","data":[66,77,51,13,2,1,16,7,16,32,24,25,13,19,8,24,10,25,20,24,26,36,26,12,22,15,19,23,17,13,12,18,9,40,25,34,22,23,21,19,26,20,32,20,21,15,24,20,18,20,15,25,21,24,24]},{"label":"BTC Price","topics":"btc,price,break,range,resistance","description":"The key topics currently being discussed in the crypto industry on Twitter include the price movements of Bitcoin, potential resistance levels, bullish and bearish scenarios, market rally predictions, technical analysis indicators such as RSI and moving averages, and the impact of inflation rates and interest rate cuts on Bitcoin's price. Traders are closely monitoring support and resistance levels, as well as looking for signals of potential market trends. There is also discussion about the potential for Bitcoin to reach new highs and the importance of risk management in trading decisions. Overall, sentiment seems to be mixed with some expecting further increases in price while others are cautious about a possible decline.","data":[14,5,7,9,66,88,24,35,10,16,11,14,27,8,1,9,3,19,15,11,8,8,6,21,11,7,6,6,5,18,10,17,6,14,9,19,3,6,33,14,24,7,11,15,11,13,29,12,10,9,6,28,11,15,11]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The key topics currently discussed in the crypto industry on social media include the memecoin super cycle, with mentions of specific memecoins such as BONK, FLOKI, DOGE, PEPE, WIF, and SHIB. There is also discussion about the potential for significant repricing in the market and the emergence of new memecoins with the potential for high returns. Additionally, there is mention of influential figures in the crypto community accurately predicting meme coin trends, as well as opportunities for community engagement through meme coin voting awards. Overall, the sentiment towards memecoins appears positive, with excitement around potential profits and the growth of the meme coin market.","data":[13,7,3,11,3,2,6,5,22,7,8,11,18,6,13,13,3,14,14,13,12,22,9,4,15,9,5,15,10,11,17,168,12,17,11,6,15,12,8,11,6,6,15,8,11,11,15,6,16,12,15,12,4,10,11]},{"label":"CPI","topics":"inflation,cpi,34,expectations,fed","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Inflation and its impact on various aspects of the economy\n- Federal Reserve's potential interest rate cuts and their effect on Bitcoin's price\n- Producer Price Inflation (PPI) data and its implications for the economy\n- The Dow Jones Industrial Average hitting 40,000 for the first time and its significance for the U.S. economy\n\nOverall, the discussions revolve around the macroeconomic environment, inflation trends, and their potential impact on various financial markets, including cryptocurrencies like Bitcoin.","data":[6,4,4,5,5,0,22,4,8,5,8,31,6,7,2,9,3,19,11,4,8,6,5,12,12,75,6,2,6,2,13,14,9,8,16,4,8,6,12,10,27,6,6,7,10,7,7,5,9,11,8,5,8,16,9]},{"label":"PEPE","topics":"pepe,ath,coin,trader,memecoins","description":"The key topics currently being discussed in the crypto community on Twitter include the surge in trading volume and price of $PEPE, with some users sharing success stories of significant gains made from investing in the meme coin. There is also discussion about the potential future price movements of $PEPE, as well as comparisons to other cryptocurrencies like $UNI and #Solana. Additionally, there is speculation about the future of meme coins in the market, with some users expressing skepticism about their long-term viability. Overall, the sentiment seems to be mixed, with some users bullish on $PEPE and meme coins in general, while others are more cautious about their prospects.","data":[5,4,4,9,2,3,7,3,16,12,10,3,9,7,4,4,1,7,12,10,4,6,3,30,6,5,12,9,3,10,7,11,9,3,4,8,133,7,6,6,9,12,8,8,8,6,13,3,8,13,5,6,5,5,4]},{"label":"Art","topics":"art,artists,artist,piece,artwork","description":"The messages from Twitter are discussing various topics related to art and NFTs in the crypto industry. Some key words mentioned include NFTs, art, tokenization, creativity, minting, and artists. The messages also mention specific events such as art auctions at Sotheby's and the acquisition of artwork by the Whitney Museum. Overall, the discussion revolves around the intersection of art and technology, the value of creativity, and the growing popularity of NFTs in the art world.","data":[5,5,90,7,2,0,7,6,5,7,5,10,9,2,3,6,2,6,12,3,6,12,6,7,9,7,4,7,5,7,18,9,7,8,10,6,20,7,7,16,4,5,8,4,5,3,8,5,5,2,10,5,9,4,16]},{"label":"GameFI","topics":"gaming,games,game,web3,gamefi","description":"Based on the messages from Twitter, it is evident that there is a growing interest and excitement surrounding Web3 gaming within the crypto industry. Key topics discussed include the inevitability of Web3 gaming, the immersive experiences it offers, the involvement of influencers and projects in the space, and the potential for a takeover in the gaming industry. Additionally, there are mentions of specific games and projects within the Web3 gaming ecosystem, such as Spellborne, Cosmic Critter, and Asugea. The integration of blockchain technology, NFTs, and token launches in gaming platforms like Tezos is also highlighted. Overall, the messages reflect a vibrant and dynamic landscape within the Web3 gaming sector, with a focus on innovation, community engagement, and storytelling.","data":[5,3,9,4,1,0,7,5,7,2,5,9,3,3,2,7,1,13,5,17,29,8,7,2,2,5,11,3,4,2,4,3,10,5,5,6,9,12,3,6,2,3,3,1,5,3,8,4,1,2,3,3,4,6,7]},{"label":"Gamestop","topics":"gamestop,gme,stock,amc,halted","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- GameStop ($GME) stock being halted multiple times to protect Wall Street\n- Short sellers of meme stocks like GameStop and AMC losing $5 billion since yesterday\n- Retail investors returning to the market with a vengeance\n- Surge in options trading, particularly calls, with GameStop ($GME) being a major focus\n- Speculation and surge in GameStop ($GME) price, along with other meme tokens on Binance\n- Robinhood's actions in relation to options trading and GameStop ($GME)\n- Market euphoria and caution against making impulsive decisions with money\n- Fake head and shoulders patterns on heavily watched stocks\n- Return of Keith Gill (The Roaring Kitty) and GameStop's surge over 100%\n- Liquidation of over $1 billion of short positions in GameStop ($GME)\n- Returns of meme stocks over the last 2 trading days, including GameStop ($GME), AMC ($AMC), and others.","data":[5,12,2,5,1,0,1,1,3,1,4,2,2,3,4,1,5,3,1,2,58,4,16,4,6,3,10,2,1,1,1,12,0,1,3,4,5,5,3,4,7,6,6,7,6,9,4,0,4,8,3,3,6,2,3]},{"label":"DOGE","topics":"doge,dogecoin,dog,elonmusk,prediction","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin ($DOGE) forming an inverted head and shoulder pattern, signaling a potential rally\n- The importance of closing above 0.17 for continuation this week to avoid a bull trap\n- The positive sentiment towards Dogecoin and Shiba Inu ($SHIB) communities, with mentions of love, care, and memes\n- Speculation about a potential breakout for Dogecoin amid fierce competition in the market\n- The introduction of tipping feature in $Hunt on Warpcast, expanding the ecosystem\n- Announcement of a trading competition for Black Dog ($BDOG) tokens on LATOKEN, with distribution starting on May 23, 2024\n- Excitement around the upcoming launch of Dogmcoin, with a 1:1 exchange rate with Dogecoin\n- Mention of other cryptocurrencies like Bitcoin ($BTC), Litecoin ($LTC), and Elon Musk in the context of the discussion\n\nOverall, the sentiment seems positive and optimistic about the future potential of Dogecoin and other cryptocurrencies mentioned in the messages.","data":[3,6,2,2,0,1,1,5,0,4,2,2,3,4,109,2,1,4,3,1,4,5,3,5,3,3,3,1,3,1,1,0,4,2,4,3,2,2,4,2,0,1,3,2,3,1,4,5,4,4,2,2,1,3,4]},{"label":"ETH","topics":"eth,ethereum,ethbtc,ratio,price","description":"The current discussions on Twitter about Ethereum are mixed, with some users bullish on the cryptocurrency reaching $10,000 while others are more bearish and predicting a potential drop to $0. There is anticipation around the end-of-month volatility related to an ETF decision deadline, with some traders preparing for potential market movements. The overall sentiment seems to be cautious, with concerns about Ethereum's performance compared to other cryptocurrencies like Bitcoin and Solana. There is also speculation about the impact of an ETF decision on the market, with some expecting a denial and further downward trends for altcoins. Despite some bearish signals, there are still discussions about potential price increases and optimism surrounding Ethereum's Layer 2 solution. Overall, the market is waiting for key support levels to be defended and for potential breakout opportunities above $2,900.","data":[3,5,3,3,0,0,5,6,2,1,2,0,4,7,2,0,71,6,2,3,1,3,2,7,5,1,1,3,4,5,3,5,6,1,2,8,2,3,2,3,3,2,3,7,1,6,3,5,4,3,1,3,0,3,2]},{"label":"New listings","topics":"listing,utc,trading,deposit,pair","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Zero trading fees on $GME\n2. The launch of DRIFT token by The Drift Foundation\n3. Upcoming new listings on BitMart for #KANG, $GENAI, @thepastamouse $STUCK, $AMCONSOL/USDT, $GTAI, $BRETT, and PairedWorld\n4. New listing of $RTF on BitKan Crypto Exchange\n5. Exclusive primary listing of BTAF Token (BTAF) on BitMart\n6. Upcoming #BTRVote to list $GCOTI on Bitrue\n7. Trading live for $AMC @AMC0NSOL on BitMart\n\nThese topics indicate a high level of activity and interest in new token listings, trading opportunities, and community engagement within the crypto industry.","data":[0,1,2,0,0,22,0,7,1,0,2,0,0,3,1,11,0,3,2,2,0,0,0,0,4,7,0,4,8,6,1,0,5,53,3,1,2,0,1,1,0,0,1,0,3,1,4,0,1,17,1,10,1,1,13]},{"label":"SOL","topics":"solana,sol,ethereum,dex,ex","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- The Battle of Blockchain Explorers: Ethereum vs Solana vs Base vs Arbitrum vs Optimism\n- Solana NFT volumes rising and its impact on SOL's market performance\n- RCO Finance (RCOF) challenging Solana in scalability and speed\n- Projects launching on Solana such as $MOONAK and $ROAR\n- Comparison between Solana and Polkadot in terms of governance\n- Photon as a game changer for SOL memecoins\n- Knights of Solana event featuring projects like $BONK and $Solly\n- Technical analysis of SOL/BTC trading pair on Coinbase Advanced Trade\n- Market hangover and trading signals for Solana\n\nOverall, the discussions on Twitter indicate a high level of interest and activity surrounding Solana and its ecosystem, with various projects, technical analysis, and comparisons being discussed.","data":[3,2,1,7,1,0,0,5,1,8,8,2,3,8,3,7,4,3,2,2,5,5,2,2,3,2,4,1,4,3,3,6,4,1,3,5,1,4,1,2,3,6,4,8,28,1,7,1,3,4,1,2,1,4,2]},{"label":"Gold & Silver","topics":"gold,stocks,silver,inflation,mining","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. International stocks and the Commodity Index hitting a yearly high due to sticky inflation becoming a nightmare for the Fed.\n2. Stock market rally post CPI volatility crush, with mentions of specific stocks like $IEF, $SPY, and $VIX.\n3. Negative investor reaction to Okomu Oil Palm on the NGX due to militants wanting a stake in the business.\n4. Bullish crossover of the LMACD for silver.\n5. Upside pressure for US stocks and bonds according to Goldman, with concerns about potential trade retaliation from China.\n6. China-based EV maker Zeekr's stock soaring following its IPO.\n7. Goldman's bullish outlook on gold compared to the S&P, with year-end price targets mentioned.\n8. De Grey Mining raising significant funds from institutional investors and major shareholders.\n9. Gold trading higher in response to inflation data, with predictions for further gains.\n10. Parag Parikh ELSS Tax Saver's April Factsheet and its investment trends.\n11. Technical analysis and trading recommendations for gold, with specific price levels mentioned.","data":[1,4,3,2,0,0,5,0,4,5,6,10,1,1,2,6,0,6,3,1,4,29,1,2,0,6,4,1,0,2,2,6,13,1,1,2,2,3,2,5,3,3,2,8,0,16,3,2,0,7,1,1,1,0,3]},{"label":"Roaring kitty","topics":"roaring,kitty,cat,gme,meme","description":"The key topics currently being discussed in the crypto industry on social media include the return of Roaring Kitty, the collaboration between Ken Griffin and Keith Gill, the surge in GameStop and AMC stock prices, concerns over Tether's stability and Ethereum's SEC classification, the rise of meme coins like $MEME, and the potential impact of Roaring Kitty's actions on the market. There is also speculation about a possible buyback by a hedge fund and the involvement of Skull Kitties as digital relics on the blockchain. Overall, the market seems to be buzzing with excitement and uncertainty as various players and events unfold.","data":[3,4,2,2,0,0,1,1,14,1,2,5,0,0,0,2,1,2,0,0,3,2,4,1,3,0,2,5,1,3,3,3,2,1,2,0,3,3,1,1,2,67,0,2,4,2,2,0,1,4,2,0,1,2,5]},{"label":"Mining","topics":"mining,miners,miner,block,revenue","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry are:\n\n1. Bitcoin mining: Discussions about solo mining, mining through pools, mining profitability, and the efficiency of mining protocols.\n2. Mining equipment: Mention of specific mining equipment such as the Antminer S21 and its electricity costs.\n3. Mining companies: Updates on mining companies like Enegix Global launching a new mining brand and Miner Hut 8's capital for upcoming projects.\n4. Cryptocurrency wealth: MAR mining platform is mentioned as a way to increase cryptocurrency wealth passively.\n5. NFTs and Bitcoin mining: Exploration of how NFTs can optimize Bitcoin mining through customizing hashing power and energy efficiency.\n\nOverall, the discussions revolve around the technical aspects, profitability, and innovations in the field of cryptocurrency mining.","data":[1,1,3,3,7,30,5,2,2,2,3,3,3,0,5,3,0,1,1,3,0,2,2,2,2,1,5,1,3,0,3,1,18,3,4,0,0,0,3,1,1,0,5,3,6,2,1,0,1,2,0,2,4,2,2]},{"label":"ETF Flows","topics":"net,inflows,flows,inflow,gbtc","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are:\n\n1. Bitcoin ETF Inflows: There have been significant inflows into Bitcoin ETFs, with large amounts of money being invested in recent days. Fidelity has been mentioned as a key player in driving these inflows.\n\n2. Institutional Buying: Institutions have been accumulating spot Bitcoin ETF shares, with a total of $10.7 billion worth of shares purchased in Q1. This has led to a 6% increase in the price of Bitcoin in the last 24 hours.\n\n3. Market Sentiment: There has been some fluctuation in ETF flows, with both positive and negative flows recorded on different days. This has raised questions about market sentiment and the impact on Bitcoin prices.\n\n4. Legislative Proposals: There is discussion about a US state representative proposing a 5% Bitcoin ETF investment for a rainy day fund, highlighting the growing interest in incorporating cryptocurrencies into traditional investment strategies.\n\nOverall, the conversation on Twitter reflects a mix of excitement about the potential for Bitcoin ETFs and institutional investment, as well as some uncertainty about market trends and regulatory developments.","data":[9,0,0,3,14,0,5,1,0,1,0,0,5,1,1,0,16,1,6,0,3,5,2,0,1,5,1,3,0,3,5,1,1,4,1,0,0,1,2,0,3,0,1,0,17,8,0,2,0,1,0,4,0,2,16]},{"label":"BLAST","topics":"blast,gold,won,nfts,holding","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n- Winning jackpots and earning gold by holding tokens and NFTs on platforms like Blast\n- Launch of Blast Airdrop on June 26th\n- Excitement and anticipation for upcoming events and contests on various platforms\n- Positive feedback on games and contests, with mentions of top winners and prizes\n- Engagement in casino competitions and opportunities to win prizes like MetaQuest headsets and Blast Gold\n\nOverall, the sentiment seems to be positive and enthusiastic about the opportunities and experiences within the crypto industry.","data":[3,1,0,1,2,8,11,2,4,3,3,1,0,0,1,3,1,7,3,2,7,8,4,5,2,0,1,2,0,3,2,2,5,0,4,1,3,1,2,3,1,5,4,0,2,1,0,1,2,0,2,0,2,14,5]},{"label":"ETH ETF","topics":"etf,approved,approval,ethereum,sec","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the potential approval of an Ethereum ETF, specifically a spot Ethereum ETF. There is speculation about the approval timeline, with some suggesting it may happen in August, particularly by BlackRock. Various investment firms are awaiting SEC approval for spot Ethereum ETFs in the U.S. There is also discussion about the classification of Ethereum as a commodity and the impact of US elections on ETF approval. Additionally, there are mentions of specific firms such as VanEck and Ark21Shares in relation to Ethereum ETF approval. Overall, there is anticipation and uncertainty surrounding the approval of Ethereum ETFs, with some suggesting it may happen soon.","data":[2,2,4,4,0,0,2,0,1,1,2,2,3,4,1,2,30,1,8,4,4,1,4,0,4,1,0,1,1,2,0,0,0,3,2,2,2,2,2,4,0,3,2,4,9,4,0,5,1,1,3,0,0,3,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-19.ts b/priv/repo/major_topics_seed/data-19.ts deleted file mode 100644 index cae13f69c0..0000000000 --- a/priv/repo/major_topics_seed/data-19.ts +++ /dev/null @@ -1,255 +0,0 @@ -export const NARRATIVES = { - labels: [ - '09.05.24', - '10.05.24', - '10.05.24', - '10.05.24', - '10.05.24', - '10.05.24', - '10.05.24', - '10.05.24', - '11.05.24', - '11.05.24', - '11.05.24', - '11.05.24', - '11.05.24', - '11.05.24', - '11.05.24', - '11.05.24', - '12.05.24', - '12.05.24', - '12.05.24', - '12.05.24', - '12.05.24', - '12.05.24', - '12.05.24', - '12.05.24', - '13.05.24', - '13.05.24', - '13.05.24', - '13.05.24', - '13.05.24', - '13.05.24', - '13.05.24', - '13.05.24', - '14.05.24', - '14.05.24', - '14.05.24', - '14.05.24', - '14.05.24', - '14.05.24', - '14.05.24', - '14.05.24', - '15.05.24', - '15.05.24', - '15.05.24', - '15.05.24', - '15.05.24', - '15.05.24', - '15.05.24', - '15.05.24', - '16.05.24', - '16.05.24', - '16.05.24', - '16.05.24', - '16.05.24', - '16.05.24', - '16.05.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,currency,trust', - description: - 'The messages from twitter suggest that #Bitcoin is a popular topic of discussion among users. Some key points mentioned include the security and decentralization of Bitcoin, its potential to liberate individuals from the traditional financial system, and the contrast between traditional venture capital and Bitcoin-backed companies in terms of value creation. Additionally, there is a mention of the importance of understanding Bitcoin in relation to fiat currency and the potential risks associated with the global financial system. Overall, the messages reflect a positive sentiment towards Bitcoin and its potential as a disruptive force in the financial industry.', - data: [ - 19, 16, 17, 20, 119, 109, 17, 22, 16, 21, 19, 27, 13, 20, 17, 33, 8, 22, 35, 32, 18, 35, 28, - 26, 18, 21, 19, 27, 26, 22, 21, 10, 23, 20, 23, 19, 38, 21, 30, 19, 15, 28, 25, 24, 13, 23, - 15, 24, 29, 18, 44, 22, 15, 22, 37, - ], - }, - { - label: 'AI', - topics: 'ai,openai,chatgpt,gpt4o,google', - description: - 'The key topics currently being discussed in the crypto industry on social media include the development of AI models such as GPT-4o for various applications, concerns about privacy and censorship related to AI technology, the use of chatbots to fight fake news, advancements in AI technology for manufacturing processes, and the impact of AI on the cost and accessibility of human-level intelligence. Additionally, there is discussion about the potential implications of GPT-4o on security measures like captchas and the shift towards paid services in the digital landscape. The SelfKey DAO is also mentioned as a platform for token holders to invite new members and increase their token stash.', - data: [ - 66, 77, 51, 13, 2, 1, 16, 7, 16, 32, 24, 25, 13, 19, 8, 24, 10, 25, 20, 24, 26, 36, 26, 12, - 22, 15, 19, 23, 17, 13, 12, 18, 9, 40, 25, 34, 22, 23, 21, 19, 26, 20, 32, 20, 21, 15, 24, - 20, 18, 20, 15, 25, 21, 24, 24, - ], - }, - { - label: 'BTC Price', - topics: 'btc,price,break,range,resistance', - description: - "The key topics currently being discussed in the crypto industry on Twitter include the price movements of Bitcoin, potential resistance levels, bullish and bearish scenarios, market rally predictions, technical analysis indicators such as RSI and moving averages, and the impact of inflation rates and interest rate cuts on Bitcoin's price. Traders are closely monitoring support and resistance levels, as well as looking for signals of potential market trends. There is also discussion about the potential for Bitcoin to reach new highs and the importance of risk management in trading decisions. Overall, sentiment seems to be mixed with some expecting further increases in price while others are cautious about a possible decline.", - data: [ - 14, 5, 7, 9, 66, 88, 24, 35, 10, 16, 11, 14, 27, 8, 1, 9, 3, 19, 15, 11, 8, 8, 6, 21, 11, 7, - 6, 6, 5, 18, 10, 17, 6, 14, 9, 19, 3, 6, 33, 14, 24, 7, 11, 15, 11, 13, 29, 12, 10, 9, 6, - 28, 11, 15, 11, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - 'The key topics currently discussed in the crypto industry on social media include the memecoin super cycle, with mentions of specific memecoins such as BONK, FLOKI, DOGE, PEPE, WIF, and SHIB. There is also discussion about the potential for significant repricing in the market and the emergence of new memecoins with the potential for high returns. Additionally, there is mention of influential figures in the crypto community accurately predicting meme coin trends, as well as opportunities for community engagement through meme coin voting awards. Overall, the sentiment towards memecoins appears positive, with excitement around potential profits and the growth of the meme coin market.', - data: [ - 13, 7, 3, 11, 3, 2, 6, 5, 22, 7, 8, 11, 18, 6, 13, 13, 3, 14, 14, 13, 12, 22, 9, 4, 15, 9, - 5, 15, 10, 11, 17, 168, 12, 17, 11, 6, 15, 12, 8, 11, 6, 6, 15, 8, 11, 11, 15, 6, 16, 12, - 15, 12, 4, 10, 11, - ], - }, - { - label: 'CPI', - topics: 'inflation,cpi,34,expectations,fed', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Inflation and its impact on various aspects of the economy\n- Federal Reserve's potential interest rate cuts and their effect on Bitcoin's price\n- Producer Price Inflation (PPI) data and its implications for the economy\n- The Dow Jones Industrial Average hitting 40,000 for the first time and its significance for the U.S. economy\n\nOverall, the discussions revolve around the macroeconomic environment, inflation trends, and their potential impact on various financial markets, including cryptocurrencies like Bitcoin.", - data: [ - 6, 4, 4, 5, 5, 0, 22, 4, 8, 5, 8, 31, 6, 7, 2, 9, 3, 19, 11, 4, 8, 6, 5, 12, 12, 75, 6, 2, - 6, 2, 13, 14, 9, 8, 16, 4, 8, 6, 12, 10, 27, 6, 6, 7, 10, 7, 7, 5, 9, 11, 8, 5, 8, 16, 9, - ], - }, - { - label: 'PEPE', - topics: 'pepe,ath,coin,trader,memecoins', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the surge in trading volume and price of $PEPE, with some users sharing success stories of significant gains made from investing in the meme coin. There is also discussion about the potential future price movements of $PEPE, as well as comparisons to other cryptocurrencies like $UNI and #Solana. Additionally, there is speculation about the future of meme coins in the market, with some users expressing skepticism about their long-term viability. Overall, the sentiment seems to be mixed, with some users bullish on $PEPE and meme coins in general, while others are more cautious about their prospects.', - data: [ - 5, 4, 4, 9, 2, 3, 7, 3, 16, 12, 10, 3, 9, 7, 4, 4, 1, 7, 12, 10, 4, 6, 3, 30, 6, 5, 12, 9, - 3, 10, 7, 11, 9, 3, 4, 8, 133, 7, 6, 6, 9, 12, 8, 8, 8, 6, 13, 3, 8, 13, 5, 6, 5, 5, 4, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,artwork', - description: - "The messages from Twitter are discussing various topics related to art and NFTs in the crypto industry. Some key words mentioned include NFTs, art, tokenization, creativity, minting, and artists. The messages also mention specific events such as art auctions at Sotheby's and the acquisition of artwork by the Whitney Museum. Overall, the discussion revolves around the intersection of art and technology, the value of creativity, and the growing popularity of NFTs in the art world.", - data: [ - 5, 5, 90, 7, 2, 0, 7, 6, 5, 7, 5, 10, 9, 2, 3, 6, 2, 6, 12, 3, 6, 12, 6, 7, 9, 7, 4, 7, 5, - 7, 18, 9, 7, 8, 10, 6, 20, 7, 7, 16, 4, 5, 8, 4, 5, 3, 8, 5, 5, 2, 10, 5, 9, 4, 16, - ], - }, - { - label: 'GameFI', - topics: 'gaming,games,game,web3,gamefi', - description: - 'Based on the messages from Twitter, it is evident that there is a growing interest and excitement surrounding Web3 gaming within the crypto industry. Key topics discussed include the inevitability of Web3 gaming, the immersive experiences it offers, the involvement of influencers and projects in the space, and the potential for a takeover in the gaming industry. Additionally, there are mentions of specific games and projects within the Web3 gaming ecosystem, such as Spellborne, Cosmic Critter, and Asugea. The integration of blockchain technology, NFTs, and token launches in gaming platforms like Tezos is also highlighted. Overall, the messages reflect a vibrant and dynamic landscape within the Web3 gaming sector, with a focus on innovation, community engagement, and storytelling.', - data: [ - 5, 3, 9, 4, 1, 0, 7, 5, 7, 2, 5, 9, 3, 3, 2, 7, 1, 13, 5, 17, 29, 8, 7, 2, 2, 5, 11, 3, 4, - 2, 4, 3, 10, 5, 5, 6, 9, 12, 3, 6, 2, 3, 3, 1, 5, 3, 8, 4, 1, 2, 3, 3, 4, 6, 7, - ], - }, - { - label: 'Gamestop', - topics: 'gamestop,gme,stock,amc,halted', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- GameStop ($GME) stock being halted multiple times to protect Wall Street\n- Short sellers of meme stocks like GameStop and AMC losing $5 billion since yesterday\n- Retail investors returning to the market with a vengeance\n- Surge in options trading, particularly calls, with GameStop ($GME) being a major focus\n- Speculation and surge in GameStop ($GME) price, along with other meme tokens on Binance\n- Robinhood's actions in relation to options trading and GameStop ($GME)\n- Market euphoria and caution against making impulsive decisions with money\n- Fake head and shoulders patterns on heavily watched stocks\n- Return of Keith Gill (The Roaring Kitty) and GameStop's surge over 100%\n- Liquidation of over $1 billion of short positions in GameStop ($GME)\n- Returns of meme stocks over the last 2 trading days, including GameStop ($GME), AMC ($AMC), and others.", - data: [ - 5, 12, 2, 5, 1, 0, 1, 1, 3, 1, 4, 2, 2, 3, 4, 1, 5, 3, 1, 2, 58, 4, 16, 4, 6, 3, 10, 2, 1, - 1, 1, 12, 0, 1, 3, 4, 5, 5, 3, 4, 7, 6, 6, 7, 6, 9, 4, 0, 4, 8, 3, 3, 6, 2, 3, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dog,elonmusk,prediction', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin ($DOGE) forming an inverted head and shoulder pattern, signaling a potential rally\n- The importance of closing above 0.17 for continuation this week to avoid a bull trap\n- The positive sentiment towards Dogecoin and Shiba Inu ($SHIB) communities, with mentions of love, care, and memes\n- Speculation about a potential breakout for Dogecoin amid fierce competition in the market\n- The introduction of tipping feature in $Hunt on Warpcast, expanding the ecosystem\n- Announcement of a trading competition for Black Dog ($BDOG) tokens on LATOKEN, with distribution starting on May 23, 2024\n- Excitement around the upcoming launch of Dogmcoin, with a 1:1 exchange rate with Dogecoin\n- Mention of other cryptocurrencies like Bitcoin ($BTC), Litecoin ($LTC), and Elon Musk in the context of the discussion\n\nOverall, the sentiment seems positive and optimistic about the future potential of Dogecoin and other cryptocurrencies mentioned in the messages.', - data: [ - 3, 6, 2, 2, 0, 1, 1, 5, 0, 4, 2, 2, 3, 4, 109, 2, 1, 4, 3, 1, 4, 5, 3, 5, 3, 3, 3, 1, 3, 1, - 1, 0, 4, 2, 4, 3, 2, 2, 4, 2, 0, 1, 3, 2, 3, 1, 4, 5, 4, 4, 2, 2, 1, 3, 4, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,ethbtc,ratio,price', - description: - "The current discussions on Twitter about Ethereum are mixed, with some users bullish on the cryptocurrency reaching $10,000 while others are more bearish and predicting a potential drop to $0. There is anticipation around the end-of-month volatility related to an ETF decision deadline, with some traders preparing for potential market movements. The overall sentiment seems to be cautious, with concerns about Ethereum's performance compared to other cryptocurrencies like Bitcoin and Solana. There is also speculation about the impact of an ETF decision on the market, with some expecting a denial and further downward trends for altcoins. Despite some bearish signals, there are still discussions about potential price increases and optimism surrounding Ethereum's Layer 2 solution. Overall, the market is waiting for key support levels to be defended and for potential breakout opportunities above $2,900.", - data: [ - 3, 5, 3, 3, 0, 0, 5, 6, 2, 1, 2, 0, 4, 7, 2, 0, 71, 6, 2, 3, 1, 3, 2, 7, 5, 1, 1, 3, 4, 5, - 3, 5, 6, 1, 2, 8, 2, 3, 2, 3, 3, 2, 3, 7, 1, 6, 3, 5, 4, 3, 1, 3, 0, 3, 2, - ], - }, - { - label: 'New listings', - topics: 'listing,utc,trading,deposit,pair', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n1. Zero trading fees on $GME\n2. The launch of DRIFT token by The Drift Foundation\n3. Upcoming new listings on BitMart for #KANG, $GENAI, @thepastamouse $STUCK, $AMCONSOL/USDT, $GTAI, $BRETT, and PairedWorld\n4. New listing of $RTF on BitKan Crypto Exchange\n5. Exclusive primary listing of BTAF Token (BTAF) on BitMart\n6. Upcoming #BTRVote to list $GCOTI on Bitrue\n7. Trading live for $AMC @AMC0NSOL on BitMart\n\nThese topics indicate a high level of activity and interest in new token listings, trading opportunities, and community engagement within the crypto industry.', - data: [ - 0, 1, 2, 0, 0, 22, 0, 7, 1, 0, 2, 0, 0, 3, 1, 11, 0, 3, 2, 2, 0, 0, 0, 0, 4, 7, 0, 4, 8, 6, - 1, 0, 5, 53, 3, 1, 2, 0, 1, 1, 0, 0, 1, 0, 3, 1, 4, 0, 1, 17, 1, 10, 1, 1, 13, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,ethereum,dex,ex', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- The Battle of Blockchain Explorers: Ethereum vs Solana vs Base vs Arbitrum vs Optimism\n- Solana NFT volumes rising and its impact on SOL's market performance\n- RCO Finance (RCOF) challenging Solana in scalability and speed\n- Projects launching on Solana such as $MOONAK and $ROAR\n- Comparison between Solana and Polkadot in terms of governance\n- Photon as a game changer for SOL memecoins\n- Knights of Solana event featuring projects like $BONK and $Solly\n- Technical analysis of SOL/BTC trading pair on Coinbase Advanced Trade\n- Market hangover and trading signals for Solana\n\nOverall, the discussions on Twitter indicate a high level of interest and activity surrounding Solana and its ecosystem, with various projects, technical analysis, and comparisons being discussed.", - data: [ - 3, 2, 1, 7, 1, 0, 0, 5, 1, 8, 8, 2, 3, 8, 3, 7, 4, 3, 2, 2, 5, 5, 2, 2, 3, 2, 4, 1, 4, 3, 3, - 6, 4, 1, 3, 5, 1, 4, 1, 2, 3, 6, 4, 8, 28, 1, 7, 1, 3, 4, 1, 2, 1, 4, 2, - ], - }, - { - label: 'Gold & Silver', - topics: 'gold,stocks,silver,inflation,mining', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n1. International stocks and the Commodity Index hitting a yearly high due to sticky inflation becoming a nightmare for the Fed.\n2. Stock market rally post CPI volatility crush, with mentions of specific stocks like $IEF, $SPY, and $VIX.\n3. Negative investor reaction to Okomu Oil Palm on the NGX due to militants wanting a stake in the business.\n4. Bullish crossover of the LMACD for silver.\n5. Upside pressure for US stocks and bonds according to Goldman, with concerns about potential trade retaliation from China.\n6. China-based EV maker Zeekr's stock soaring following its IPO.\n7. Goldman's bullish outlook on gold compared to the S&P, with year-end price targets mentioned.\n8. De Grey Mining raising significant funds from institutional investors and major shareholders.\n9. Gold trading higher in response to inflation data, with predictions for further gains.\n10. Parag Parikh ELSS Tax Saver's April Factsheet and its investment trends.\n11. Technical analysis and trading recommendations for gold, with specific price levels mentioned.", - data: [ - 1, 4, 3, 2, 0, 0, 5, 0, 4, 5, 6, 10, 1, 1, 2, 6, 0, 6, 3, 1, 4, 29, 1, 2, 0, 6, 4, 1, 0, 2, - 2, 6, 13, 1, 1, 2, 2, 3, 2, 5, 3, 3, 2, 8, 0, 16, 3, 2, 0, 7, 1, 1, 1, 0, 3, - ], - }, - { - label: 'Roaring kitty', - topics: 'roaring,kitty,cat,gme,meme', - description: - "The key topics currently being discussed in the crypto industry on social media include the return of Roaring Kitty, the collaboration between Ken Griffin and Keith Gill, the surge in GameStop and AMC stock prices, concerns over Tether's stability and Ethereum's SEC classification, the rise of meme coins like $MEME, and the potential impact of Roaring Kitty's actions on the market. There is also speculation about a possible buyback by a hedge fund and the involvement of Skull Kitties as digital relics on the blockchain. Overall, the market seems to be buzzing with excitement and uncertainty as various players and events unfold.", - data: [ - 3, 4, 2, 2, 0, 0, 1, 1, 14, 1, 2, 5, 0, 0, 0, 2, 1, 2, 0, 0, 3, 2, 4, 1, 3, 0, 2, 5, 1, 3, - 3, 3, 2, 1, 2, 0, 3, 3, 1, 1, 2, 67, 0, 2, 4, 2, 2, 0, 1, 4, 2, 0, 1, 2, 5, - ], - }, - { - label: 'Mining', - topics: 'mining,miners,miner,block,revenue', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry are:\n\n1. Bitcoin mining: Discussions about solo mining, mining through pools, mining profitability, and the efficiency of mining protocols.\n2. Mining equipment: Mention of specific mining equipment such as the Antminer S21 and its electricity costs.\n3. Mining companies: Updates on mining companies like Enegix Global launching a new mining brand and Miner Hut 8's capital for upcoming projects.\n4. Cryptocurrency wealth: MAR mining platform is mentioned as a way to increase cryptocurrency wealth passively.\n5. NFTs and Bitcoin mining: Exploration of how NFTs can optimize Bitcoin mining through customizing hashing power and energy efficiency.\n\nOverall, the discussions revolve around the technical aspects, profitability, and innovations in the field of cryptocurrency mining.", - data: [ - 1, 1, 3, 3, 7, 30, 5, 2, 2, 2, 3, 3, 3, 0, 5, 3, 0, 1, 1, 3, 0, 2, 2, 2, 2, 1, 5, 1, 3, 0, - 3, 1, 18, 3, 4, 0, 0, 0, 3, 1, 1, 0, 5, 3, 6, 2, 1, 0, 1, 2, 0, 2, 4, 2, 2, - ], - }, - { - label: 'ETF Flows', - topics: 'net,inflows,flows,inflow,gbtc', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry are:\n\n1. Bitcoin ETF Inflows: There have been significant inflows into Bitcoin ETFs, with large amounts of money being invested in recent days. Fidelity has been mentioned as a key player in driving these inflows.\n\n2. Institutional Buying: Institutions have been accumulating spot Bitcoin ETF shares, with a total of $10.7 billion worth of shares purchased in Q1. This has led to a 6% increase in the price of Bitcoin in the last 24 hours.\n\n3. Market Sentiment: There has been some fluctuation in ETF flows, with both positive and negative flows recorded on different days. This has raised questions about market sentiment and the impact on Bitcoin prices.\n\n4. Legislative Proposals: There is discussion about a US state representative proposing a 5% Bitcoin ETF investment for a rainy day fund, highlighting the growing interest in incorporating cryptocurrencies into traditional investment strategies.\n\nOverall, the conversation on Twitter reflects a mix of excitement about the potential for Bitcoin ETFs and institutional investment, as well as some uncertainty about market trends and regulatory developments.', - data: [ - 9, 0, 0, 3, 14, 0, 5, 1, 0, 1, 0, 0, 5, 1, 1, 0, 16, 1, 6, 0, 3, 5, 2, 0, 1, 5, 1, 3, 0, 3, - 5, 1, 1, 4, 1, 0, 0, 1, 2, 0, 3, 0, 1, 0, 17, 8, 0, 2, 0, 1, 0, 4, 0, 2, 16, - ], - }, - { - label: 'BLAST', - topics: 'blast,gold,won,nfts,holding', - description: - 'The key topics currently being discussed on Twitter in the crypto industry include:\n- Winning jackpots and earning gold by holding tokens and NFTs on platforms like Blast\n- Launch of Blast Airdrop on June 26th\n- Excitement and anticipation for upcoming events and contests on various platforms\n- Positive feedback on games and contests, with mentions of top winners and prizes\n- Engagement in casino competitions and opportunities to win prizes like MetaQuest headsets and Blast Gold\n\nOverall, the sentiment seems to be positive and enthusiastic about the opportunities and experiences within the crypto industry.', - data: [ - 3, 1, 0, 1, 2, 8, 11, 2, 4, 3, 3, 1, 0, 0, 1, 3, 1, 7, 3, 2, 7, 8, 4, 5, 2, 0, 1, 2, 0, 3, - 2, 2, 5, 0, 4, 1, 3, 1, 2, 3, 1, 5, 4, 0, 2, 1, 0, 1, 2, 0, 2, 0, 2, 14, 5, - ], - }, - { - label: 'ETH ETF', - topics: 'etf,approved,approval,ethereum,sec', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the potential approval of an Ethereum ETF, specifically a spot Ethereum ETF. There is speculation about the approval timeline, with some suggesting it may happen in August, particularly by BlackRock. Various investment firms are awaiting SEC approval for spot Ethereum ETFs in the U.S. There is also discussion about the classification of Ethereum as a commodity and the impact of US elections on ETF approval. Additionally, there are mentions of specific firms such as VanEck and Ark21Shares in relation to Ethereum ETF approval. Overall, there is anticipation and uncertainty surrounding the approval of Ethereum ETFs, with some suggesting it may happen soon.', - data: [ - 2, 2, 4, 4, 0, 0, 2, 0, 1, 1, 2, 2, 3, 4, 1, 2, 30, 1, 8, 4, 4, 1, 4, 0, 4, 1, 0, 1, 1, 2, - 0, 0, 0, 3, 2, 2, 2, 2, 2, 4, 0, 3, 2, 4, 9, 4, 0, 5, 1, 1, 3, 0, 0, 3, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-2.json b/priv/repo/major_topics_seed/data-2.json deleted file mode 100644 index 41232f4329..0000000000 --- a/priv/repo/major_topics_seed/data-2.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["Jan 11, 23:49","Jan 12, 03:01","Jan 12, 06:02","Jan 12, 09:03","Jan 12, 12:04","Jan 12, 15:05","Jan 12, 18:06","Jan 12, 21:07","Jan 13, 00:08","Jan 13, 03:09","Jan 13, 06:10","Jan 13, 09:11","Jan 13, 12:12","Jan 13, 15:14","Jan 13, 18:15","Jan 13, 21:16","Jan 14, 00:17","Jan 14, 03:18","Jan 14, 06:19","Jan 14, 09:20","Jan 14, 12:21","Jan 14, 15:22","Jan 14, 18:23","Jan 14, 21:24","Jan 15, 00:25","Jan 15, 03:26","Jan 15, 06:28","Jan 15, 09:29","Jan 15, 12:30","Jan 15, 15:31","Jan 15, 18:32","Jan 15, 21:33","Jan 16, 00:34","Jan 16, 03:35","Jan 16, 06:36","Jan 16, 09:37","Jan 16, 12:38","Jan 16, 15:39","Jan 16, 18:40","Jan 16, 21:42","Jan 17, 00:43","Jan 17, 03:44","Jan 17, 06:45","Jan 17, 09:46","Jan 17, 12:47","Jan 17, 15:48","Jan 17, 18:49","Jan 17, 21:50","Jan 18, 00:51","Jan 18, 03:52","Jan 18, 06:53","Jan 18, 09:54","Jan 18, 12:56","Jan 18, 15:57","Jan 18, 18:58","Jan 18, 21:59"],"datasets":[{"label":"","topics":"ethereum,eth,target,prediction,beta","description":"According to the messages from twitter_crypto, there is discussion about the price of Ethereum (ETH) and its potential to go above $4,000. Some users believe that Ethereum has the potential to reach higher prices, with $2,500 being a weekly goal for the bulls. There are also mentions of Ethereum's dominance over Bitcoin (BTC) in the cryptocurrency market. However, there are contrasting opinions, with some suggesting that Ethereum is fighting a losing battle compared to Bitcoin. Additionally, there is mention of a potential Ethereum ETF and a target price of $300 for ETH in the long term. Overall, the sentiment seems to be positive towards Ethereum, with discussions about its price, dominance, and potential future developments.","data":[13,9,5,6,1,1,0,7,8,9,5,6,3,3,2,8,8,116,12,8,5,1,5,8,11,6,7,5,6,9,13,11,2,7,12,3,7,6,10,5,14,7,5,9,5,8,5,7,8,8,4,4,5,9,10,0]},{"label":"","topics":"mins,listings,buyers,floor,sales","description":"The messages from twitter_crypto indicate that NFT wash trading volumes on Ethereum marketplaces have reached the lowest level in over a year. The decline in trading volumes is attributed to dwindling incentive programs and collapsing token values. The NFT trading volume in 2023 fell by nearly $15 billion, causing those still involved in the space to shift their focus towards utility. The messages also highlight the top trending ETH NFTs in the last 10 minutes, providing information on sales, new listings, unique buyers, average price, and floor price for each NFT. The messages mention various NFTs such as TinFun, Lasogette, Genuine Undead, Rabby Desktop Genesis, BEANZ Official, The Bear and Bull NFT Phase Two, Yogapetz, FRACTIONAL UPRISING STUDIOS MEMBERSHIP, and Crypto Trading Cards (1880-1979). The messages also mention the platforms where these NFTs can be purchased, such as OS and Blur. Overall, the messages highlight the decline in NFT wash trading volumes and provide insights into the current trending ETH NFTs.","data":[0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,2,1,2,2,1,0,0,1,1,0,0,2,1,1,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,96,0,0,1,0,2]},{"label":"","topics":"shorted,btcusdt,bybit,btc,lil","description":"According to the messages from twitter_crypto, there are several discussions related to $BTC. Some key points include:\n\n- There is a mention of consolidation before potentially reaching a price of 70k.\n- The timing of closing positions was considered perfect, as it happened right before a small drop.\n- If BTC claims 42.8k, there is a possibility of rotation back to 43.2k.\n- There are multiple instances of people shorting BTC on the bybit platform, with various amounts and prices.\n- Some individuals express their opinions or make jokes about BTC and its price movements.\n\nOverall, the discussions revolve around BTC's price movements, shorting positions, and general sentiments about the cryptocurrency.","data":[2,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,97,0,0,1,1,1,0,0,0,1,0,0]},{"label":"","topics":"etfs,approved,spot,etf,approval","description":"The latest data on spot Bitcoin ETF volumes suggests that Hong Kong is likely to approve a spot Bitcoin and crypto ETF soon. This news has generated excitement in the crypto community. Traders are flocking to US crypto products after the approval of spot ETFs, indicating strong investor interest. ETFs are investment vehicles that allow investors to own various assets within a single fund, providing diversification and liquidity. Analysts believe that spot Ether ETFs are more significant than BTC ETFs for the broader crypto industry. The approval of Bitcoin spot ETFs on January 10, 2024, is seen as the start of the Second Era for Bitcoin. However, some argue that Bitcoin ETFs slow down adoption and may mislead investors into thinking they own actual Bitcoin. The impact of the ETF approval on crypto markets is discussed, and the reasons for the Bitcoin Spot ETF not reflecting more on the price are explained. Overall, the approval of spot Bitcoin ETFs has brought new investment paths for Bitcoin enthusiasts in Wall Street.","data":[4,2,25,8,34,4,2,6,9,6,3,6,11,8,5,5,42,12,5,12,9,7,5,11,5,5,8,8,5,3,3,3,3,3,8,9,7,5,4,3,8,4,5,10,1,50,5,3,6,7,5,3,8,8,7,5]},{"label":"","topics":"core,innovation,digital,possibilities,realm","description":"The CEO's thread on Twitter discusses the transformative potential of the Stellar blockchain in revolutionizing financial inclusion. The thread emphasizes the importance of Bitcoin and its bond with Core in driving digital finance forward. It also mentions the addition of Blockchain_AC to the Cointelegraph Accelerator program, aiming to bring new talents into the blockchain ecosystem. The thread highlights the enchanting and magical aspects of Core, combining the security of Bitcoin with the scalability of Ethereum. It encourages individuals to embrace the innovation and continuous milestones in digital finance. The thread also mentions Etherisc's GIFs, which explore the possibilities of crafting insurance products using blockchain technology. Additionally, it mentions the upcoming episode of Chain in Focus featuring Astar Network, an advanced blockchain. The thread concludes by mentioning the core contributions of Octopus Network to the blockchain realm, including shared security and chain interoperability. Overall, the CEO's thread focuses on the transformative power of blockchain technology and its potential to shape the financial landscape.","data":[1,1,0,0,2,0,1,1,0,2,2,35,1,0,2,3,22,4,2,1,2,1,0,1,0,3,1,0,1,1,0,1,2,1,3,0,1,0,1,0,0,2,1,1,0,0,2,1,0,1,0,4,1,0,0,0]},{"label":"","topics":"btcusdt,bybit,eat,btc,participated","description":"The key topic discussed in the given messages from twitter_crypto is the Bitcoin long-short ratio hitting a multi-month high on Binance. The messages mention various individuals who have participated in longing Bitcoin on the platform Bybit, along with the amount of Bitcoin they have longed and the price at which they entered the trade. The messages also include some quotes and statements related to the Bitcoin market and trading strategies. However, there is no mention of the words 'btcusdt', 'bybit', 'eat', 'participated', 'celebration', 'moon', 'theyve', 'fly', or 'anymore' in the given messages.","data":[1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0]},{"label":"","topics":"inflows,billion,net,volume,inflow","description":"The key topic discussed in the messages from twitter_crypto related to the given words is the trading volume and inflows of Bitcoin ETFs. The messages highlight the significant trading volume and inflows of Bitcoin ETFs, with mentions of billions of dollars and historical first-day trading. The messages also mention specific ETFs and their trading volumes, such as FTX coin, Bitwise ETF, and GBTC. Additionally, there are mentions of outflows and net inflows of digital asset investment products. Overall, the messages indicate a strong interest and activity in Bitcoin ETFs.","data":[15,2,6,4,17,8,10,5,1,0,6,3,7,26,5,2,12,3,3,2,3,4,3,0,3,5,9,2,4,2,1,1,4,1,5,8,3,0,1,3,4,5,1,6,2,39,0,3,1,5,19,1,3,7,5,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-2.ts b/priv/repo/major_topics_seed/data-2.ts deleted file mode 100644 index 94c16518ee..0000000000 --- a/priv/repo/major_topics_seed/data-2.ts +++ /dev/null @@ -1,132 +0,0 @@ -export const NARRATIVES = { - labels: [ - 'Jan 11, 23:49', - 'Jan 12, 03:01', - 'Jan 12, 06:02', - 'Jan 12, 09:03', - 'Jan 12, 12:04', - 'Jan 12, 15:05', - 'Jan 12, 18:06', - 'Jan 12, 21:07', - 'Jan 13, 00:08', - 'Jan 13, 03:09', - 'Jan 13, 06:10', - 'Jan 13, 09:11', - 'Jan 13, 12:12', - 'Jan 13, 15:14', - 'Jan 13, 18:15', - 'Jan 13, 21:16', - 'Jan 14, 00:17', - 'Jan 14, 03:18', - 'Jan 14, 06:19', - 'Jan 14, 09:20', - 'Jan 14, 12:21', - 'Jan 14, 15:22', - 'Jan 14, 18:23', - 'Jan 14, 21:24', - 'Jan 15, 00:25', - 'Jan 15, 03:26', - 'Jan 15, 06:28', - 'Jan 15, 09:29', - 'Jan 15, 12:30', - 'Jan 15, 15:31', - 'Jan 15, 18:32', - 'Jan 15, 21:33', - 'Jan 16, 00:34', - 'Jan 16, 03:35', - 'Jan 16, 06:36', - 'Jan 16, 09:37', - 'Jan 16, 12:38', - 'Jan 16, 15:39', - 'Jan 16, 18:40', - 'Jan 16, 21:42', - 'Jan 17, 00:43', - 'Jan 17, 03:44', - 'Jan 17, 06:45', - 'Jan 17, 09:46', - 'Jan 17, 12:47', - 'Jan 17, 15:48', - 'Jan 17, 18:49', - 'Jan 17, 21:50', - 'Jan 18, 00:51', - 'Jan 18, 03:52', - 'Jan 18, 06:53', - 'Jan 18, 09:54', - 'Jan 18, 12:56', - 'Jan 18, 15:57', - 'Jan 18, 18:58', - 'Jan 18, 21:59', - ], - datasets: [ - { - label: '', - topics: 'ethereum,eth,target,prediction,beta', - description: - "According to the messages from twitter_crypto, there is discussion about the price of Ethereum (ETH) and its potential to go above $4,000. Some users believe that Ethereum has the potential to reach higher prices, with $2,500 being a weekly goal for the bulls. There are also mentions of Ethereum's dominance over Bitcoin (BTC) in the cryptocurrency market. However, there are contrasting opinions, with some suggesting that Ethereum is fighting a losing battle compared to Bitcoin. Additionally, there is mention of a potential Ethereum ETF and a target price of $300 for ETH in the long term. Overall, the sentiment seems to be positive towards Ethereum, with discussions about its price, dominance, and potential future developments.", - data: [ - 13, 9, 5, 6, 1, 1, 0, 7, 8, 9, 5, 6, 3, 3, 2, 8, 8, 116, 12, 8, 5, 1, 5, 8, 11, 6, 7, 5, 6, - 9, 13, 11, 2, 7, 12, 3, 7, 6, 10, 5, 14, 7, 5, 9, 5, 8, 5, 7, 8, 8, 4, 4, 5, 9, 10, 0, - ], - }, - { - label: '', - topics: 'mins,listings,buyers,floor,sales', - description: - 'The messages from twitter_crypto indicate that NFT wash trading volumes on Ethereum marketplaces have reached the lowest level in over a year. The decline in trading volumes is attributed to dwindling incentive programs and collapsing token values. The NFT trading volume in 2023 fell by nearly $15 billion, causing those still involved in the space to shift their focus towards utility. The messages also highlight the top trending ETH NFTs in the last 10 minutes, providing information on sales, new listings, unique buyers, average price, and floor price for each NFT. The messages mention various NFTs such as TinFun, Lasogette, Genuine Undead, Rabby Desktop Genesis, BEANZ Official, The Bear and Bull NFT Phase Two, Yogapetz, FRACTIONAL UPRISING STUDIOS MEMBERSHIP, and Crypto Trading Cards (1880-1979). The messages also mention the platforms where these NFTs can be purchased, such as OS and Blur. Overall, the messages highlight the decline in NFT wash trading volumes and provide insights into the current trending ETH NFTs.', - data: [ - 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 2, 1, 2, 2, 1, 0, 0, 1, 1, 0, 0, 2, 1, 1, - 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 96, 0, 0, 1, 0, 2, - ], - }, - { - label: '', - topics: 'shorted,btcusdt,bybit,btc,lil', - description: - "According to the messages from twitter_crypto, there are several discussions related to $BTC. Some key points include:\n\n- There is a mention of consolidation before potentially reaching a price of 70k.\n- The timing of closing positions was considered perfect, as it happened right before a small drop.\n- If BTC claims 42.8k, there is a possibility of rotation back to 43.2k.\n- There are multiple instances of people shorting BTC on the bybit platform, with various amounts and prices.\n- Some individuals express their opinions or make jokes about BTC and its price movements.\n\nOverall, the discussions revolve around BTC's price movements, shorting positions, and general sentiments about the cryptocurrency.", - data: [ - 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 97, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, - ], - }, - { - label: '', - topics: 'etfs,approved,spot,etf,approval', - description: - 'The latest data on spot Bitcoin ETF volumes suggests that Hong Kong is likely to approve a spot Bitcoin and crypto ETF soon. This news has generated excitement in the crypto community. Traders are flocking to US crypto products after the approval of spot ETFs, indicating strong investor interest. ETFs are investment vehicles that allow investors to own various assets within a single fund, providing diversification and liquidity. Analysts believe that spot Ether ETFs are more significant than BTC ETFs for the broader crypto industry. The approval of Bitcoin spot ETFs on January 10, 2024, is seen as the start of the Second Era for Bitcoin. However, some argue that Bitcoin ETFs slow down adoption and may mislead investors into thinking they own actual Bitcoin. The impact of the ETF approval on crypto markets is discussed, and the reasons for the Bitcoin Spot ETF not reflecting more on the price are explained. Overall, the approval of spot Bitcoin ETFs has brought new investment paths for Bitcoin enthusiasts in Wall Street.', - data: [ - 4, 2, 25, 8, 34, 4, 2, 6, 9, 6, 3, 6, 11, 8, 5, 5, 42, 12, 5, 12, 9, 7, 5, 11, 5, 5, 8, 8, - 5, 3, 3, 3, 3, 3, 8, 9, 7, 5, 4, 3, 8, 4, 5, 10, 1, 50, 5, 3, 6, 7, 5, 3, 8, 8, 7, 5, - ], - }, - { - label: '', - topics: 'core,innovation,digital,possibilities,realm', - description: - "The CEO's thread on Twitter discusses the transformative potential of the Stellar blockchain in revolutionizing financial inclusion. The thread emphasizes the importance of Bitcoin and its bond with Core in driving digital finance forward. It also mentions the addition of Blockchain_AC to the Cointelegraph Accelerator program, aiming to bring new talents into the blockchain ecosystem. The thread highlights the enchanting and magical aspects of Core, combining the security of Bitcoin with the scalability of Ethereum. It encourages individuals to embrace the innovation and continuous milestones in digital finance. The thread also mentions Etherisc's GIFs, which explore the possibilities of crafting insurance products using blockchain technology. Additionally, it mentions the upcoming episode of Chain in Focus featuring Astar Network, an advanced blockchain. The thread concludes by mentioning the core contributions of Octopus Network to the blockchain realm, including shared security and chain interoperability. Overall, the CEO's thread focuses on the transformative power of blockchain technology and its potential to shape the financial landscape.", - data: [ - 1, 1, 0, 0, 2, 0, 1, 1, 0, 2, 2, 35, 1, 0, 2, 3, 22, 4, 2, 1, 2, 1, 0, 1, 0, 3, 1, 0, 1, 1, - 0, 1, 2, 1, 3, 0, 1, 0, 1, 0, 0, 2, 1, 1, 0, 0, 2, 1, 0, 1, 0, 4, 1, 0, 0, 0, - ], - }, - { - label: '', - topics: 'btcusdt,bybit,eat,btc,participated', - description: - "The key topic discussed in the given messages from twitter_crypto is the Bitcoin long-short ratio hitting a multi-month high on Binance. The messages mention various individuals who have participated in longing Bitcoin on the platform Bybit, along with the amount of Bitcoin they have longed and the price at which they entered the trade. The messages also include some quotes and statements related to the Bitcoin market and trading strategies. However, there is no mention of the words 'btcusdt', 'bybit', 'eat', 'participated', 'celebration', 'moon', 'theyve', 'fly', or 'anymore' in the given messages.", - data: [ - 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, - 81, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, - ], - }, - { - label: '', - topics: 'inflows,billion,net,volume,inflow', - description: - 'The key topic discussed in the messages from twitter_crypto related to the given words is the trading volume and inflows of Bitcoin ETFs. The messages highlight the significant trading volume and inflows of Bitcoin ETFs, with mentions of billions of dollars and historical first-day trading. The messages also mention specific ETFs and their trading volumes, such as FTX coin, Bitwise ETF, and GBTC. Additionally, there are mentions of outflows and net inflows of digital asset investment products. Overall, the messages indicate a strong interest and activity in Bitcoin ETFs.', - data: [ - 15, 2, 6, 4, 17, 8, 10, 5, 1, 0, 6, 3, 7, 26, 5, 2, 12, 3, 3, 2, 3, 4, 3, 0, 3, 5, 9, 2, 4, - 2, 1, 1, 4, 1, 5, 8, 3, 0, 1, 3, 4, 5, 1, 6, 2, 39, 0, 3, 1, 5, 19, 1, 3, 7, 5, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-20.json b/priv/repo/major_topics_seed/data-20.json deleted file mode 100644 index 9e1f1665d2..0000000000 --- a/priv/repo/major_topics_seed/data-20.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["16.05.24","17.05.24","17.05.24","17.05.24","17.05.24","17.05.24","17.05.24","17.05.24","18.05.24","18.05.24","18.05.24","18.05.24","18.05.24","18.05.24","18.05.24","18.05.24","19.05.24","19.05.24","19.05.24","19.05.24","19.05.24","19.05.24","19.05.24","19.05.24","20.05.24","20.05.24","20.05.24","20.05.24","20.05.24","20.05.24","20.05.24","20.05.24","21.05.24","21.05.24","21.05.24","21.05.24","21.05.24","21.05.24","21.05.24","21.05.24","22.05.24","22.05.24","22.05.24","22.05.24","22.05.24","22.05.24","22.05.24","22.05.24","23.05.24","23.05.24","23.05.24","23.05.24","23.05.24","23.05.24","23.05.24"],"datasets":[{"label":"BTC Price","topics":"resistance,btc,bitcoin,price,70k","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin reaching new all-time highs, with price projections up to $1M by 2030\n- Positive ETF inflows and cooling US inflation affecting Bitcoin's price\n- Speculation on when Bitcoin will reach the $100k milestone\n- Technical analysis indicators such as Parabolic SAR and Stochastic RSI influencing trading decisions\n- Price predictions and support levels for Bitcoin, with potential pullbacks and new all-time highs in May\n- Concerns about potential headwinds and corrections in the market\n- Updates on Bitcoin's price movements and projected timelines for future growth\n- Advice to not be fooled by current Bitcoin trends and to stay informed on technical analysis signals.","data":[10,13,5,17,87,122,35,51,10,8,15,22,16,6,14,9,1,5,11,12,6,9,11,5,22,9,11,12,9,12,10,6,5,12,7,5,12,9,35,23,24,24,5,12,11,9,26,16,11,8,10,23,3,21,5]},{"label":"BTC","topics":"bitcoin,money,fiat,trust,freedom","description":"The key topics currently discussed in the crypto industry on social media include:\n- The timing of investing in Bitcoin\n- Watching the Mempools\n- Patterns in Bitcoin\n- Building on Bitcoin Cash\n- Bitcoin's increasing value\n- Bitcoin's security budget\n- CryptoFightWeek and DYP\n- Celebrating Pizza Day in the Bitcoin community\n- Peer-to-peer electronic cash\n- Bitcoin's success in adopting successful approaches\n- Work-life balance for Bitcoin enthusiasts\n- Bitcoin as a supranational form of money\n- Trust in systems and institutions in the crypto industry\n\nOverall, the discussions on social media reflect a mix of technical analysis, investment strategies, community celebrations, and philosophical reflections on the nature of Bitcoin and the broader crypto industry.","data":[12,3,3,16,82,43,8,15,11,14,8,12,9,8,6,14,2,6,10,15,13,13,19,12,16,10,18,4,14,8,12,8,8,27,10,15,21,8,12,11,7,17,15,8,11,12,14,18,7,5,22,9,10,7,15]},{"label":"Pizza day","topics":"pizza,10000,day,happy,celebrate","description":"The key topic currently being discussed on Twitter is Bitcoin Pizza Day, which commemorates the first documented purchase made with Bitcoin back in 2010 when Laszlo Hanyecz bought two pizzas for 10,000 BTC. This event is seen as a significant milestone in the history of Bitcoin, as it demonstrated the real-world value of the cryptocurrency. Many Twitter users are reflecting on how much those pizzas would be worth in today's market, with some estimating values in the hundreds of millions of dollars. The topic has sparked discussions about the evolution of Bitcoin over the years and how times have changed in terms of the purchasing power of the cryptocurrency. Additionally, some users are celebrating Bitcoin Pizza Day by sharing their own crypto predictions and participating in giveaways related to the event. Overall, the sentiment surrounding Bitcoin Pizza Day on Twitter is one of nostalgia, reflection, and celebration of the growth of Bitcoin since its early days.","data":[4,2,1,4,42,42,1,8,46,1,7,2,6,27,2,8,0,2,6,9,6,7,5,119,37,6,5,9,14,10,1,4,4,2,4,8,5,29,3,5,7,3,5,6,6,2,3,6,8,24,4,2,3,4,34]},{"label":"GameFI","topics":"gaming,game,games,play,web3","description":"The key topics currently discussed in the crypto industry on social media platforms include gaming altcoins, the launch of Grand Theft Auto VI in fall 2025, the development of a gaming title on the Oasys Blockchain, and the release of a new tower defense game by Gotchi Guardians. Additionally, there is discussion about the gaming community's reaction to woke narratives in games, as well as the involvement of gamers in the cryptocurrency sector. Overall, the gaming industry and its intersection with cryptocurrency are hot topics of conversation among social media users.","data":[9,6,3,4,1,1,1,1,7,7,7,7,7,3,4,11,0,2,8,10,15,68,2,3,3,8,7,8,9,15,4,7,13,6,13,5,4,28,4,9,4,2,3,2,9,6,6,2,7,6,6,5,3,7,5]},{"label":"ETF Flows","topics":"inflows,inflow,net,etfs,blackrock","description":"The key topic discussed in the messages from twitter is the increasing popularity and investment in Bitcoin ETFs. Various financial institutions and wealth management funds are reported to be allocating a percentage of their assets to Bitcoin ETFs, with significant inflows of funds recorded. The involvement of major players like BlackRock and Vanguard in the Bitcoin ETF market is highlighted, indicating a growing interest and potential impact on the cryptocurrency market. The comparison with traditional assets like Gold ETFs and the potential for Bitcoin to reach new highs with increased institutional investment are also mentioned. Overall, the focus is on the current trends and developments in the Bitcoin ETF market and its implications for the cryptocurrency industry.","data":[6,4,4,5,23,21,16,3,5,2,1,5,5,5,6,3,34,1,3,11,11,4,5,7,5,12,22,5,8,2,1,8,0,1,12,3,4,0,3,3,5,8,13,2,4,36,8,5,1,13,0,5,0,1,12]},{"label":"PEPE","topics":"pepe,billion,trader,memecoin,profit","description":"The key topics currently discussed in the messages from Twitter about the crypto industry include:\n- $PEPE dominating the market and reaching all-time highs\n- Insider trading and potential gains with $PEPE\n- Bullrun predictions and price targets for $PEPE\n- Whale accumulation of $PEPE on Binance\n- Comparison of $PEPE with other popular cryptocurrencies like DOGE and SHIB\n- The power of Fibonacci in predicting price movements for $PEPE\n- Success stories of traders making significant profits with $PEPE\n- Launch of the US version of $PEPE, known as $USPEPE, on Uniswap with unique features and community ownership.","data":[5,1,0,7,0,0,1,2,11,2,8,1,2,5,3,7,1,2,4,3,6,4,5,4,12,6,4,4,6,1,3,1,13,4,3,3,79,1,5,2,6,0,1,8,2,6,5,3,5,13,3,2,4,9,6]},{"label":"Memecoins","topics":"meme,memecoin,coins,memes,coin","description":"The key topics currently discussed in the crypto industry on social media accounts and communities include:\n- Memecoins and meme communities\n- Meme contests and rewards\n- Top meme coins by market cap\n- Meme farms and VVS rewards\n- NFT communities and meme NFTs\n- Narrative shifts in the meme coin space\n- Categorization of meme bags\n- Memes as unstoppable cultural regeneration\n- Memecoins as a part of blockchain culture\n\nOverall, the discussion revolves around the popularity and potential of memecoins, meme communities, and the creative aspects of memes within the crypto industry.","data":[9,1,1,5,0,0,1,3,7,2,8,7,4,3,0,3,1,0,6,6,3,3,13,6,2,4,1,0,5,2,6,8,70,5,3,4,3,4,3,1,5,7,5,6,6,4,6,4,5,7,8,3,9,0,2]},{"label":"AI","topics":"ai,openai,model,google,future","description":"The key topics discussed in the messages from twitter about AI include:\n1. The integration strategies of Apple and Microsoft with AI\n2. Concerns about the potential negative impact of AI\n3. The development of emotionally intelligent AI\n4. The advancements in AI technology, such as the Aurora supercomputer\n5. The potential applications of AI in software engineering\n6. The ethical considerations surrounding AI, including criminal activities\n7. The impact of AI on consumer products, such as Meta's smart AI gadget and Amazon's plans for Alexa\n8. The role of AI in solving the paradox of choice\n9. The comparison between AI energy demands and bitcoin mining\n\nOverall, the discussions on twitter reflect a mix of excitement about the potential of AI technology and concerns about its ethical implications and impact on society.","data":[22,5,7,2,1,0,2,4,2,3,6,3,1,6,4,8,1,4,7,5,2,4,12,1,5,2,8,7,4,5,4,3,2,3,5,6,5,3,6,5,8,2,7,1,4,3,9,8,5,1,8,2,4,3,4]},{"label":"Art","topics":"art,artist,artists,artwork,physical","description":"The key topics discussed in the messages from Twitter are:\n1. Art Blocks\n2. Artists and their creative process\n3. Art galleries and exhibitions\n4. Collecting art, specifically photography\n5. Digital art and AI technology\n6. Art school education and skill development\n7. NFTs and displaying art at events\n8. Commissioning artwork and minting OEs\n9. Different mediums of art, such as ink on bristol board\n10. The evolving perception of digital art and its value\n\nOverall, the messages reflect a diverse range of discussions related to the crypto industry and the art world, showcasing the intersection of technology, creativity, and innovation.","data":[5,2,55,6,0,2,3,5,4,4,5,7,2,1,6,4,0,1,1,2,4,2,3,2,5,7,6,3,1,8,5,1,0,6,2,12,6,2,4,2,5,0,5,1,8,2,2,5,5,2,4,5,4,1,7]},{"label":"FIT21","topics":"house,fit21,vote,passes,act","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the passing of the FIT21 Act by the U.S. House of Representatives for the regulation of crypto assets. This bill has bipartisan support but faces opposition from President Joe Biden and SEC Chair Gary Gensler. The White House has expressed eagerness to work with Congress to develop a balanced regulatory framework for Bitcoin and crypto. There is also discussion about the Securities Act of 1933 and its relevance to securities regulation. Additionally, there are mentions of individuals and organizations supporting or opposing the FIT21 Act, with calls for action to urge members of Congress to vote in favor of the bill. The impact of the FIT21 Act on cryptocurrency markets and digital asset regulation in the United States is also being analyzed and debated. Overall, the crypto community is closely following legislative developments and their potential implications on the industry.","data":[3,1,6,3,5,1,12,1,2,2,4,10,8,10,1,5,0,1,1,2,3,2,2,1,7,11,3,4,7,4,2,7,5,2,3,9,24,3,1,2,4,4,8,4,5,1,2,2,1,3,2,3,20,7,1]},{"label":"ETH ETF expectations","topics":"approved,etf,approval,eth,gets","description":"The key topic currently being discussed on Twitter is the approval of an Ethereum ETF. Many users are excited about the approval and believe it will lead to a strong rotation in the market, with potential pumps and dumps in the price of Ethereum. Some users are surprised by the approval, as they were expecting rejection. There is speculation about the impact of the approval on other cryptocurrencies like Solana, Wrapped Finance, Fantom, and Avalanche. Overall, the sentiment is positive and users are looking forward to the potential growth in the market following the ETF approval.","data":[3,3,39,2,1,0,1,3,2,1,1,0,2,4,1,1,49,5,1,4,0,7,4,4,6,4,1,1,7,2,6,2,3,7,1,2,4,0,2,2,5,0,1,1,1,5,3,4,5,1,1,1,1,0,2]},{"label":"ETH ETF approval","topics":"sec,approves,spot,etfs,approved","description":"The key topic currently being discussed on Twitter is the approval of spot Ethereum ETFs by the SEC. This news has generated a lot of excitement within the Ethereum community and the broader crypto industry. The approval of these ETFs is seen as a significant step towards mainstream adoption of crypto and a validation of Ethereum as a commodity rather than a security. Analysts and experts are speculating on the implications of this approval, with some suggesting that it could pave the way for other projects to move forward with regulatory clarity. The approval process for these ETFs is still ongoing, with some details still to be finalized before they can begin trading. Overall, the approval of spot Ethereum ETFs by the SEC is seen as a positive development for Ethereum and the crypto market as a whole.","data":[1,6,32,1,0,1,35,0,2,0,2,1,1,2,0,0,22,6,5,5,1,4,0,1,1,0,1,3,3,1,1,0,1,1,0,10,2,3,1,0,2,7,4,3,1,9,1,5,1,0,2,1,1,1,1]},{"label":"ETH Price","topics":"ethereum,eth,price,4k,20","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Ethereum ($ETH) and its recent price movements. The price of Ethereum has been fluctuating, with some predicting it to hit $5,000 this cycle. There have been reports of Ethereum hitting $3,400 and crossing the $3,100 mark for the first time in 21 days. Additionally, there has been a significant increase in Ethereum open interest, indicating growing interest in the cryptocurrency.\n\nFurthermore, there is speculation about the approval of an Ethereum ETF and its potential impact on the price of Ethereum. Some analysts believe that a successful bullish break could lead to a major growth phase for Ethereum, with a potential 50% move to the $4,811.9 level.\n\nOverall, the sentiment surrounding Ethereum on social media seems positive, with many users expressing optimism about its future price movements and market performance.","data":[1,1,1,3,0,0,5,2,0,0,1,3,7,2,2,2,18,46,5,1,1,0,8,1,6,3,2,3,2,4,1,3,1,1,1,5,1,2,7,1,2,6,3,1,3,1,9,4,2,0,1,1,1,1,1]},{"label":"New listings","topics":"utc,listing,trading,deposit,bitmart","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n\n1. $NYAN: Trading is now live on BitMart, with discussions about claiming $NYAN and the game being described as \"lit.\"\n2. $TKO: Pre-market trading is live on Bitget, with a call to trade before it becomes available for spot trading.\n3. $LISTA: Pre-market trading is live on Bitget, with a similar call to trade before it becomes available for spot trading.\n4. $SQD: Trading is now live on KuCoin, with information about the SQD/USDT pair and details about Subsquid in the KuCoinCryptoGem card.\n5. $PEN: Penjamin Blinkerton will be listed on LBank, with emphasis on it not being merely a memecoin.\n6. $HABIBI: Poloniex has a new listing for HABIBI, with details about deposit and trading availability.\n7. $ANON: Anonymous (ANON) will have deposits, trading, and withdrawals open on a specific date, with trading pair ANON/USDT.\n8. $KAKA: Users can now swap $USDT for $KAKA on Klever Wallet, with a call to download and start trading.\n9. $SQD: Subsquid is a new listing on CoinList, with a deadline to buy SQD before a specific date to claim Subsquid Listing Karma.\n10. $NYM: Nym network metrics are discussed, including mixnodes, gateways, APR, and bonded $NYM.\n\nThese topics cover a range of new listings, trading opportunities, and updates within the crypto industry, providing valuable information for investors and enthusiasts.","data":[2,0,1,2,1,21,0,0,2,0,1,0,0,1,2,1,0,1,3,1,0,0,2,0,1,1,4,1,5,2,1,0,1,1,22,4,1,28,10,3,2,1,1,0,1,4,3,0,0,12,1,11,0,1,7]},{"label":"Blockchain","topics":"blockchain,data,technology,layer,blockchains","description":"The messages from Twitter cover a wide range of topics in the crypto industry, including discussions on blockchain technology, quantum computer attacks, multi-signature crypto wallets, the potential of blockchain as a settlement layer, clean energy solutions powered by blockchain, blockchain traceability for businesses, smart contract wallets, and partnerships in the decentralized storage space. Additionally, there are mentions of specific projects and developments such as MultiversX, Swarm, CyberNetwork_X, OneFinityChain, and Pi_Squared_Pi2. The messages also highlight upcoming events and discussions with industry experts like Gavin and RaoulGMI. Overall, the crypto community on Twitter is actively engaged in exploring innovative solutions and advancements in the industry.","data":[2,2,1,5,0,9,1,2,3,6,1,3,3,6,3,1,0,1,5,3,1,1,0,1,0,1,9,2,3,0,1,0,4,0,9,5,4,2,7,2,1,5,1,1,9,6,2,3,0,0,5,2,1,3,1]},{"label":"XRP","topics":"xrp,ripple,york,sec,coinbase","description":"The key topics currently discussed in the crypto industry on social media include:\n- XRP and its legal battles with the SEC\n- Ripple's moves and transactions related to the lawsuit\n- Pro-XRP Lawyer John Deaton's reactions and endorsements\n- SEC's regulations and decisions impacting the crypto market\n- Price predictions for Bitcoin, Ethereum, and XRP\n- Ripple's discussions on blockchain technology and quantum computing\n- Coinbase restoring support for XRP in New York\n- Potential ETF approvals for Ethereum\n- Bullish sentiments in the market\n- Regulatory updates and market challenges in the cryptocurrency space\n\nOverall, the discussions on social media reflect a mix of legal, regulatory, and market-related topics surrounding XRP, Ripple, and the broader crypto industry.","data":[1,2,0,0,0,2,4,1,1,6,5,2,3,3,2,9,1,2,3,7,4,0,0,2,1,2,1,4,5,2,1,1,0,4,2,2,1,3,11,2,4,18,1,4,1,1,4,0,3,0,2,5,0,0,1]},{"label":"DOGE","topics":"dogecoin,doge,prediction,forecast,price","description":"The key topics currently being discussed on Twitter regarding the crypto industry include Dogecoin (DOGE) and its potential for a significant bullish breakout, price predictions for DOGE and Shiba Inu (SHIB), the launch dates of various meme-inspired cryptocurrencies, such as Doge, Shib, Pepe, and Pork, as well as the listing of new meme coin ShibaDoge on ProBit Global. Additionally, there is mention of Tamadoge, a crypto pet game where players can upgrade their pets with skins and accessories, participate in arcade games to earn rewards, and compete in challenges to climb leaderboards. Overall, the sentiment towards Dogecoin appears positive, with analysts predicting a potential rally to $0.49.","data":[0,2,0,0,0,0,0,1,0,1,1,0,2,2,84,0,0,1,5,2,0,0,3,0,2,1,2,2,1,0,1,0,1,0,0,1,4,0,2,0,2,1,1,3,1,1,1,1,2,0,1,3,4,1,2]},{"label":"SOL","topics":"sol,solana,200,presale,reversal","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana ($SOL) experiencing a weekend pump and potential price targets\n- Comparison between Solana ($SOL) and Ethereum ($ETH) performance\n- The rise of meme tokens on the Solana network, such as $LOS inspired by Gollum\n- Trading strategies and price predictions for Solana ($SOL)\n- Updates on Solana-based projects like Legends of Elumia ($ELU)\n- Options trading for Solana ($SOL) on PowerTrade platform\n\nOverall, the sentiment seems to be bullish on Solana ($SOL) with discussions around price targets, trading strategies, and new projects on the network.","data":[2,3,0,5,0,0,0,1,1,4,3,3,1,1,3,4,3,1,3,0,1,1,3,2,5,1,4,4,2,3,1,0,0,2,1,1,2,3,5,3,1,3,2,4,34,0,4,1,1,2,2,1,3,3,1]},{"label":"NFT","topics":"nft,foundation,nfts,collection,metaverse","description":"The messages from twitter are mainly discussing NFTs (Non-Fungible Tokens) and their impact on the crypto industry. There is a sense of excitement and hope surrounding NFTs, with mentions of how owning a particular NFT could be life-changing and help chase dreams. The messages also touch on the concept of NFT art, with creators and collectors being highlighted. Additionally, there is a mention of a new token, NSPH, designed to facilitate profit-sharing from AI investment. The discussion also includes a platform called NFT Inspect, which specializes in NFT market analysis. Overall, the messages reflect a growing interest and enthusiasm for NFTs within the crypto community.","data":[1,1,0,1,0,0,0,0,2,3,3,2,1,2,3,1,1,0,1,1,4,3,1,1,1,3,2,0,4,4,2,3,2,6,10,2,0,0,3,3,4,0,1,2,6,1,1,1,1,1,6,3,4,2,1]},{"label":"SHIB","topics":"shiba,inu,shib,burn,trillion","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the breakout of Shiba Inu ($SHIB), the addition of BONE as a new payment option, expectations for the upcoming Blockchain Futuristic Conference, Shiba Inu breaking 11-week resistance and targeting $0.000081, reasons why Shiba Inu surpassing $0.01 is unlikely, the soaring coin burn rate of Shiba Inu, factors that can potentially take Shiba Inu to $0.0001, a surge in netflow spike for Shiba Inu, analysis on Shiba Inu potentially 4X-ing, the growth of the Shiba Inu Army despite market downturn, the listing of KNINE (K9 Finance DAO) on CoinW, and the massive growth of INSAI in a short period of time. Additionally, there are mentions of other cryptocurrencies like PAW, SOL, and Tobi wrecking the Doginaldogsx community.","data":[0,3,2,1,1,0,2,3,0,1,4,0,1,0,3,1,0,1,4,0,1,1,1,2,0,0,1,36,1,1,0,3,0,0,1,2,2,0,4,0,1,0,2,13,1,0,2,0,0,1,0,1,0,3,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-20.ts b/priv/repo/major_topics_seed/data-20.ts deleted file mode 100644 index 4667964d0f..0000000000 --- a/priv/repo/major_topics_seed/data-20.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '16.05.24', - '17.05.24', - '17.05.24', - '17.05.24', - '17.05.24', - '17.05.24', - '17.05.24', - '17.05.24', - '18.05.24', - '18.05.24', - '18.05.24', - '18.05.24', - '18.05.24', - '18.05.24', - '18.05.24', - '18.05.24', - '19.05.24', - '19.05.24', - '19.05.24', - '19.05.24', - '19.05.24', - '19.05.24', - '19.05.24', - '19.05.24', - '20.05.24', - '20.05.24', - '20.05.24', - '20.05.24', - '20.05.24', - '20.05.24', - '20.05.24', - '20.05.24', - '21.05.24', - '21.05.24', - '21.05.24', - '21.05.24', - '21.05.24', - '21.05.24', - '21.05.24', - '21.05.24', - '22.05.24', - '22.05.24', - '22.05.24', - '22.05.24', - '22.05.24', - '22.05.24', - '22.05.24', - '22.05.24', - '23.05.24', - '23.05.24', - '23.05.24', - '23.05.24', - '23.05.24', - '23.05.24', - '23.05.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'resistance,btc,bitcoin,price,70k', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin reaching new all-time highs, with price projections up to $1M by 2030\n- Positive ETF inflows and cooling US inflation affecting Bitcoin's price\n- Speculation on when Bitcoin will reach the $100k milestone\n- Technical analysis indicators such as Parabolic SAR and Stochastic RSI influencing trading decisions\n- Price predictions and support levels for Bitcoin, with potential pullbacks and new all-time highs in May\n- Concerns about potential headwinds and corrections in the market\n- Updates on Bitcoin's price movements and projected timelines for future growth\n- Advice to not be fooled by current Bitcoin trends and to stay informed on technical analysis signals.", - data: [ - 10, 13, 5, 17, 87, 122, 35, 51, 10, 8, 15, 22, 16, 6, 14, 9, 1, 5, 11, 12, 6, 9, 11, 5, 22, - 9, 11, 12, 9, 12, 10, 6, 5, 12, 7, 5, 12, 9, 35, 23, 24, 24, 5, 12, 11, 9, 26, 16, 11, 8, - 10, 23, 3, 21, 5, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,money,fiat,trust,freedom', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- The timing of investing in Bitcoin\n- Watching the Mempools\n- Patterns in Bitcoin\n- Building on Bitcoin Cash\n- Bitcoin's increasing value\n- Bitcoin's security budget\n- CryptoFightWeek and DYP\n- Celebrating Pizza Day in the Bitcoin community\n- Peer-to-peer electronic cash\n- Bitcoin's success in adopting successful approaches\n- Work-life balance for Bitcoin enthusiasts\n- Bitcoin as a supranational form of money\n- Trust in systems and institutions in the crypto industry\n\nOverall, the discussions on social media reflect a mix of technical analysis, investment strategies, community celebrations, and philosophical reflections on the nature of Bitcoin and the broader crypto industry.", - data: [ - 12, 3, 3, 16, 82, 43, 8, 15, 11, 14, 8, 12, 9, 8, 6, 14, 2, 6, 10, 15, 13, 13, 19, 12, 16, - 10, 18, 4, 14, 8, 12, 8, 8, 27, 10, 15, 21, 8, 12, 11, 7, 17, 15, 8, 11, 12, 14, 18, 7, 5, - 22, 9, 10, 7, 15, - ], - }, - { - label: 'Pizza day', - topics: 'pizza,10000,day,happy,celebrate', - description: - "The key topic currently being discussed on Twitter is Bitcoin Pizza Day, which commemorates the first documented purchase made with Bitcoin back in 2010 when Laszlo Hanyecz bought two pizzas for 10,000 BTC. This event is seen as a significant milestone in the history of Bitcoin, as it demonstrated the real-world value of the cryptocurrency. Many Twitter users are reflecting on how much those pizzas would be worth in today's market, with some estimating values in the hundreds of millions of dollars. The topic has sparked discussions about the evolution of Bitcoin over the years and how times have changed in terms of the purchasing power of the cryptocurrency. Additionally, some users are celebrating Bitcoin Pizza Day by sharing their own crypto predictions and participating in giveaways related to the event. Overall, the sentiment surrounding Bitcoin Pizza Day on Twitter is one of nostalgia, reflection, and celebration of the growth of Bitcoin since its early days.", - data: [ - 4, 2, 1, 4, 42, 42, 1, 8, 46, 1, 7, 2, 6, 27, 2, 8, 0, 2, 6, 9, 6, 7, 5, 119, 37, 6, 5, 9, - 14, 10, 1, 4, 4, 2, 4, 8, 5, 29, 3, 5, 7, 3, 5, 6, 6, 2, 3, 6, 8, 24, 4, 2, 3, 4, 34, - ], - }, - { - label: 'GameFI', - topics: 'gaming,game,games,play,web3', - description: - "The key topics currently discussed in the crypto industry on social media platforms include gaming altcoins, the launch of Grand Theft Auto VI in fall 2025, the development of a gaming title on the Oasys Blockchain, and the release of a new tower defense game by Gotchi Guardians. Additionally, there is discussion about the gaming community's reaction to woke narratives in games, as well as the involvement of gamers in the cryptocurrency sector. Overall, the gaming industry and its intersection with cryptocurrency are hot topics of conversation among social media users.", - data: [ - 9, 6, 3, 4, 1, 1, 1, 1, 7, 7, 7, 7, 7, 3, 4, 11, 0, 2, 8, 10, 15, 68, 2, 3, 3, 8, 7, 8, 9, - 15, 4, 7, 13, 6, 13, 5, 4, 28, 4, 9, 4, 2, 3, 2, 9, 6, 6, 2, 7, 6, 6, 5, 3, 7, 5, - ], - }, - { - label: 'ETF Flows', - topics: 'inflows,inflow,net,etfs,blackrock', - description: - 'The key topic discussed in the messages from twitter is the increasing popularity and investment in Bitcoin ETFs. Various financial institutions and wealth management funds are reported to be allocating a percentage of their assets to Bitcoin ETFs, with significant inflows of funds recorded. The involvement of major players like BlackRock and Vanguard in the Bitcoin ETF market is highlighted, indicating a growing interest and potential impact on the cryptocurrency market. The comparison with traditional assets like Gold ETFs and the potential for Bitcoin to reach new highs with increased institutional investment are also mentioned. Overall, the focus is on the current trends and developments in the Bitcoin ETF market and its implications for the cryptocurrency industry.', - data: [ - 6, 4, 4, 5, 23, 21, 16, 3, 5, 2, 1, 5, 5, 5, 6, 3, 34, 1, 3, 11, 11, 4, 5, 7, 5, 12, 22, 5, - 8, 2, 1, 8, 0, 1, 12, 3, 4, 0, 3, 3, 5, 8, 13, 2, 4, 36, 8, 5, 1, 13, 0, 5, 0, 1, 12, - ], - }, - { - label: 'PEPE', - topics: 'pepe,billion,trader,memecoin,profit', - description: - 'The key topics currently discussed in the messages from Twitter about the crypto industry include:\n- $PEPE dominating the market and reaching all-time highs\n- Insider trading and potential gains with $PEPE\n- Bullrun predictions and price targets for $PEPE\n- Whale accumulation of $PEPE on Binance\n- Comparison of $PEPE with other popular cryptocurrencies like DOGE and SHIB\n- The power of Fibonacci in predicting price movements for $PEPE\n- Success stories of traders making significant profits with $PEPE\n- Launch of the US version of $PEPE, known as $USPEPE, on Uniswap with unique features and community ownership.', - data: [ - 5, 1, 0, 7, 0, 0, 1, 2, 11, 2, 8, 1, 2, 5, 3, 7, 1, 2, 4, 3, 6, 4, 5, 4, 12, 6, 4, 4, 6, 1, - 3, 1, 13, 4, 3, 3, 79, 1, 5, 2, 6, 0, 1, 8, 2, 6, 5, 3, 5, 13, 3, 2, 4, 9, 6, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coins,memes,coin', - description: - 'The key topics currently discussed in the crypto industry on social media accounts and communities include:\n- Memecoins and meme communities\n- Meme contests and rewards\n- Top meme coins by market cap\n- Meme farms and VVS rewards\n- NFT communities and meme NFTs\n- Narrative shifts in the meme coin space\n- Categorization of meme bags\n- Memes as unstoppable cultural regeneration\n- Memecoins as a part of blockchain culture\n\nOverall, the discussion revolves around the popularity and potential of memecoins, meme communities, and the creative aspects of memes within the crypto industry.', - data: [ - 9, 1, 1, 5, 0, 0, 1, 3, 7, 2, 8, 7, 4, 3, 0, 3, 1, 0, 6, 6, 3, 3, 13, 6, 2, 4, 1, 0, 5, 2, - 6, 8, 70, 5, 3, 4, 3, 4, 3, 1, 5, 7, 5, 6, 6, 4, 6, 4, 5, 7, 8, 3, 9, 0, 2, - ], - }, - { - label: 'AI', - topics: 'ai,openai,model,google,future', - description: - "The key topics discussed in the messages from twitter about AI include:\n1. The integration strategies of Apple and Microsoft with AI\n2. Concerns about the potential negative impact of AI\n3. The development of emotionally intelligent AI\n4. The advancements in AI technology, such as the Aurora supercomputer\n5. The potential applications of AI in software engineering\n6. The ethical considerations surrounding AI, including criminal activities\n7. The impact of AI on consumer products, such as Meta's smart AI gadget and Amazon's plans for Alexa\n8. The role of AI in solving the paradox of choice\n9. The comparison between AI energy demands and bitcoin mining\n\nOverall, the discussions on twitter reflect a mix of excitement about the potential of AI technology and concerns about its ethical implications and impact on society.", - data: [ - 22, 5, 7, 2, 1, 0, 2, 4, 2, 3, 6, 3, 1, 6, 4, 8, 1, 4, 7, 5, 2, 4, 12, 1, 5, 2, 8, 7, 4, 5, - 4, 3, 2, 3, 5, 6, 5, 3, 6, 5, 8, 2, 7, 1, 4, 3, 9, 8, 5, 1, 8, 2, 4, 3, 4, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,artwork,physical', - description: - 'The key topics discussed in the messages from Twitter are:\n1. Art Blocks\n2. Artists and their creative process\n3. Art galleries and exhibitions\n4. Collecting art, specifically photography\n5. Digital art and AI technology\n6. Art school education and skill development\n7. NFTs and displaying art at events\n8. Commissioning artwork and minting OEs\n9. Different mediums of art, such as ink on bristol board\n10. The evolving perception of digital art and its value\n\nOverall, the messages reflect a diverse range of discussions related to the crypto industry and the art world, showcasing the intersection of technology, creativity, and innovation.', - data: [ - 5, 2, 55, 6, 0, 2, 3, 5, 4, 4, 5, 7, 2, 1, 6, 4, 0, 1, 1, 2, 4, 2, 3, 2, 5, 7, 6, 3, 1, 8, - 5, 1, 0, 6, 2, 12, 6, 2, 4, 2, 5, 0, 5, 1, 8, 2, 2, 5, 5, 2, 4, 5, 4, 1, 7, - ], - }, - { - label: 'FIT21', - topics: 'house,fit21,vote,passes,act', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the passing of the FIT21 Act by the U.S. House of Representatives for the regulation of crypto assets. This bill has bipartisan support but faces opposition from President Joe Biden and SEC Chair Gary Gensler. The White House has expressed eagerness to work with Congress to develop a balanced regulatory framework for Bitcoin and crypto. There is also discussion about the Securities Act of 1933 and its relevance to securities regulation. Additionally, there are mentions of individuals and organizations supporting or opposing the FIT21 Act, with calls for action to urge members of Congress to vote in favor of the bill. The impact of the FIT21 Act on cryptocurrency markets and digital asset regulation in the United States is also being analyzed and debated. Overall, the crypto community is closely following legislative developments and their potential implications on the industry.', - data: [ - 3, 1, 6, 3, 5, 1, 12, 1, 2, 2, 4, 10, 8, 10, 1, 5, 0, 1, 1, 2, 3, 2, 2, 1, 7, 11, 3, 4, 7, - 4, 2, 7, 5, 2, 3, 9, 24, 3, 1, 2, 4, 4, 8, 4, 5, 1, 2, 2, 1, 3, 2, 3, 20, 7, 1, - ], - }, - { - label: 'ETH ETF expectations', - topics: 'approved,etf,approval,eth,gets', - description: - 'The key topic currently being discussed on Twitter is the approval of an Ethereum ETF. Many users are excited about the approval and believe it will lead to a strong rotation in the market, with potential pumps and dumps in the price of Ethereum. Some users are surprised by the approval, as they were expecting rejection. There is speculation about the impact of the approval on other cryptocurrencies like Solana, Wrapped Finance, Fantom, and Avalanche. Overall, the sentiment is positive and users are looking forward to the potential growth in the market following the ETF approval.', - data: [ - 3, 3, 39, 2, 1, 0, 1, 3, 2, 1, 1, 0, 2, 4, 1, 1, 49, 5, 1, 4, 0, 7, 4, 4, 6, 4, 1, 1, 7, 2, - 6, 2, 3, 7, 1, 2, 4, 0, 2, 2, 5, 0, 1, 1, 1, 5, 3, 4, 5, 1, 1, 1, 1, 0, 2, - ], - }, - { - label: 'ETH ETF approval', - topics: 'sec,approves,spot,etfs,approved', - description: - 'The key topic currently being discussed on Twitter is the approval of spot Ethereum ETFs by the SEC. This news has generated a lot of excitement within the Ethereum community and the broader crypto industry. The approval of these ETFs is seen as a significant step towards mainstream adoption of crypto and a validation of Ethereum as a commodity rather than a security. Analysts and experts are speculating on the implications of this approval, with some suggesting that it could pave the way for other projects to move forward with regulatory clarity. The approval process for these ETFs is still ongoing, with some details still to be finalized before they can begin trading. Overall, the approval of spot Ethereum ETFs by the SEC is seen as a positive development for Ethereum and the crypto market as a whole.', - data: [ - 1, 6, 32, 1, 0, 1, 35, 0, 2, 0, 2, 1, 1, 2, 0, 0, 22, 6, 5, 5, 1, 4, 0, 1, 1, 0, 1, 3, 3, 1, - 1, 0, 1, 1, 0, 10, 2, 3, 1, 0, 2, 7, 4, 3, 1, 9, 1, 5, 1, 0, 2, 1, 1, 1, 1, - ], - }, - { - label: 'ETH Price', - topics: 'ethereum,eth,price,4k,20', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Ethereum ($ETH) and its recent price movements. The price of Ethereum has been fluctuating, with some predicting it to hit $5,000 this cycle. There have been reports of Ethereum hitting $3,400 and crossing the $3,100 mark for the first time in 21 days. Additionally, there has been a significant increase in Ethereum open interest, indicating growing interest in the cryptocurrency.\n\nFurthermore, there is speculation about the approval of an Ethereum ETF and its potential impact on the price of Ethereum. Some analysts believe that a successful bullish break could lead to a major growth phase for Ethereum, with a potential 50% move to the $4,811.9 level.\n\nOverall, the sentiment surrounding Ethereum on social media seems positive, with many users expressing optimism about its future price movements and market performance.', - data: [ - 1, 1, 1, 3, 0, 0, 5, 2, 0, 0, 1, 3, 7, 2, 2, 2, 18, 46, 5, 1, 1, 0, 8, 1, 6, 3, 2, 3, 2, 4, - 1, 3, 1, 1, 1, 5, 1, 2, 7, 1, 2, 6, 3, 1, 3, 1, 9, 4, 2, 0, 1, 1, 1, 1, 1, - ], - }, - { - label: 'New listings', - topics: 'utc,listing,trading,deposit,bitmart', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n\n1. $NYAN: Trading is now live on BitMart, with discussions about claiming $NYAN and the game being described as "lit."\n2. $TKO: Pre-market trading is live on Bitget, with a call to trade before it becomes available for spot trading.\n3. $LISTA: Pre-market trading is live on Bitget, with a similar call to trade before it becomes available for spot trading.\n4. $SQD: Trading is now live on KuCoin, with information about the SQD/USDT pair and details about Subsquid in the KuCoinCryptoGem card.\n5. $PEN: Penjamin Blinkerton will be listed on LBank, with emphasis on it not being merely a memecoin.\n6. $HABIBI: Poloniex has a new listing for HABIBI, with details about deposit and trading availability.\n7. $ANON: Anonymous (ANON) will have deposits, trading, and withdrawals open on a specific date, with trading pair ANON/USDT.\n8. $KAKA: Users can now swap $USDT for $KAKA on Klever Wallet, with a call to download and start trading.\n9. $SQD: Subsquid is a new listing on CoinList, with a deadline to buy SQD before a specific date to claim Subsquid Listing Karma.\n10. $NYM: Nym network metrics are discussed, including mixnodes, gateways, APR, and bonded $NYM.\n\nThese topics cover a range of new listings, trading opportunities, and updates within the crypto industry, providing valuable information for investors and enthusiasts.', - data: [ - 2, 0, 1, 2, 1, 21, 0, 0, 2, 0, 1, 0, 0, 1, 2, 1, 0, 1, 3, 1, 0, 0, 2, 0, 1, 1, 4, 1, 5, 2, - 1, 0, 1, 1, 22, 4, 1, 28, 10, 3, 2, 1, 1, 0, 1, 4, 3, 0, 0, 12, 1, 11, 0, 1, 7, - ], - }, - { - label: 'Blockchain', - topics: 'blockchain,data,technology,layer,blockchains', - description: - 'The messages from Twitter cover a wide range of topics in the crypto industry, including discussions on blockchain technology, quantum computer attacks, multi-signature crypto wallets, the potential of blockchain as a settlement layer, clean energy solutions powered by blockchain, blockchain traceability for businesses, smart contract wallets, and partnerships in the decentralized storage space. Additionally, there are mentions of specific projects and developments such as MultiversX, Swarm, CyberNetwork_X, OneFinityChain, and Pi_Squared_Pi2. The messages also highlight upcoming events and discussions with industry experts like Gavin and RaoulGMI. Overall, the crypto community on Twitter is actively engaged in exploring innovative solutions and advancements in the industry.', - data: [ - 2, 2, 1, 5, 0, 9, 1, 2, 3, 6, 1, 3, 3, 6, 3, 1, 0, 1, 5, 3, 1, 1, 0, 1, 0, 1, 9, 2, 3, 0, 1, - 0, 4, 0, 9, 5, 4, 2, 7, 2, 1, 5, 1, 1, 9, 6, 2, 3, 0, 0, 5, 2, 1, 3, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,york,sec,coinbase', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- XRP and its legal battles with the SEC\n- Ripple's moves and transactions related to the lawsuit\n- Pro-XRP Lawyer John Deaton's reactions and endorsements\n- SEC's regulations and decisions impacting the crypto market\n- Price predictions for Bitcoin, Ethereum, and XRP\n- Ripple's discussions on blockchain technology and quantum computing\n- Coinbase restoring support for XRP in New York\n- Potential ETF approvals for Ethereum\n- Bullish sentiments in the market\n- Regulatory updates and market challenges in the cryptocurrency space\n\nOverall, the discussions on social media reflect a mix of legal, regulatory, and market-related topics surrounding XRP, Ripple, and the broader crypto industry.", - data: [ - 1, 2, 0, 0, 0, 2, 4, 1, 1, 6, 5, 2, 3, 3, 2, 9, 1, 2, 3, 7, 4, 0, 0, 2, 1, 2, 1, 4, 5, 2, 1, - 1, 0, 4, 2, 2, 1, 3, 11, 2, 4, 18, 1, 4, 1, 1, 4, 0, 3, 0, 2, 5, 0, 0, 1, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,prediction,forecast,price', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry include Dogecoin (DOGE) and its potential for a significant bullish breakout, price predictions for DOGE and Shiba Inu (SHIB), the launch dates of various meme-inspired cryptocurrencies, such as Doge, Shib, Pepe, and Pork, as well as the listing of new meme coin ShibaDoge on ProBit Global. Additionally, there is mention of Tamadoge, a crypto pet game where players can upgrade their pets with skins and accessories, participate in arcade games to earn rewards, and compete in challenges to climb leaderboards. Overall, the sentiment towards Dogecoin appears positive, with analysts predicting a potential rally to $0.49.', - data: [ - 0, 2, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 2, 2, 84, 0, 0, 1, 5, 2, 0, 0, 3, 0, 2, 1, 2, 2, 1, 0, - 1, 0, 1, 0, 0, 1, 4, 0, 2, 0, 2, 1, 1, 3, 1, 1, 1, 1, 2, 0, 1, 3, 4, 1, 2, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,200,presale,reversal', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana ($SOL) experiencing a weekend pump and potential price targets\n- Comparison between Solana ($SOL) and Ethereum ($ETH) performance\n- The rise of meme tokens on the Solana network, such as $LOS inspired by Gollum\n- Trading strategies and price predictions for Solana ($SOL)\n- Updates on Solana-based projects like Legends of Elumia ($ELU)\n- Options trading for Solana ($SOL) on PowerTrade platform\n\nOverall, the sentiment seems to be bullish on Solana ($SOL) with discussions around price targets, trading strategies, and new projects on the network.', - data: [ - 2, 3, 0, 5, 0, 0, 0, 1, 1, 4, 3, 3, 1, 1, 3, 4, 3, 1, 3, 0, 1, 1, 3, 2, 5, 1, 4, 4, 2, 3, 1, - 0, 0, 2, 1, 1, 2, 3, 5, 3, 1, 3, 2, 4, 34, 0, 4, 1, 1, 2, 2, 1, 3, 3, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,foundation,nfts,collection,metaverse', - description: - 'The messages from twitter are mainly discussing NFTs (Non-Fungible Tokens) and their impact on the crypto industry. There is a sense of excitement and hope surrounding NFTs, with mentions of how owning a particular NFT could be life-changing and help chase dreams. The messages also touch on the concept of NFT art, with creators and collectors being highlighted. Additionally, there is a mention of a new token, NSPH, designed to facilitate profit-sharing from AI investment. The discussion also includes a platform called NFT Inspect, which specializes in NFT market analysis. Overall, the messages reflect a growing interest and enthusiasm for NFTs within the crypto community.', - data: [ - 1, 1, 0, 1, 0, 0, 0, 0, 2, 3, 3, 2, 1, 2, 3, 1, 1, 0, 1, 1, 4, 3, 1, 1, 1, 3, 2, 0, 4, 4, 2, - 3, 2, 6, 10, 2, 0, 0, 3, 3, 4, 0, 1, 2, 6, 1, 1, 1, 1, 1, 6, 3, 4, 2, 1, - ], - }, - { - label: 'SHIB', - topics: 'shiba,inu,shib,burn,trillion', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the breakout of Shiba Inu ($SHIB), the addition of BONE as a new payment option, expectations for the upcoming Blockchain Futuristic Conference, Shiba Inu breaking 11-week resistance and targeting $0.000081, reasons why Shiba Inu surpassing $0.01 is unlikely, the soaring coin burn rate of Shiba Inu, factors that can potentially take Shiba Inu to $0.0001, a surge in netflow spike for Shiba Inu, analysis on Shiba Inu potentially 4X-ing, the growth of the Shiba Inu Army despite market downturn, the listing of KNINE (K9 Finance DAO) on CoinW, and the massive growth of INSAI in a short period of time. Additionally, there are mentions of other cryptocurrencies like PAW, SOL, and Tobi wrecking the Doginaldogsx community.', - data: [ - 0, 3, 2, 1, 1, 0, 2, 3, 0, 1, 4, 0, 1, 0, 3, 1, 0, 1, 4, 0, 1, 1, 1, 2, 0, 0, 1, 36, 1, 1, - 0, 3, 0, 0, 1, 2, 2, 0, 4, 0, 1, 0, 2, 13, 1, 0, 2, 0, 0, 1, 0, 1, 0, 3, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-21.json b/priv/repo/major_topics_seed/data-21.json deleted file mode 100644 index f1be59bd6e..0000000000 --- a/priv/repo/major_topics_seed/data-21.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["23.05.24","24.05.24","24.05.24","24.05.24","24.05.24","24.05.24","24.05.24","24.05.24","25.05.24","25.05.24","25.05.24","25.05.24","25.05.24","25.05.24","25.05.24","25.05.24","26.05.24","26.05.24","26.05.24","26.05.24","26.05.24","26.05.24","26.05.24","26.05.24","27.05.24","27.05.24","27.05.24","27.05.24","27.05.24","27.05.24","27.05.24","27.05.24","28.05.24","28.05.24","28.05.24","28.05.24","28.05.24","28.05.24","28.05.24","28.05.24","29.05.24","29.05.24","29.05.24","29.05.24","29.05.24","29.05.24","29.05.24","29.05.24","30.05.24","30.05.24","30.05.24","30.05.24","30.05.24","30.05.24","30.05.24"],"datasets":[{"label":"BTC","topics":"bitcoin,money,fiat,dont,people","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Bitcoin (#Bitcoin, #btc)\n2. Price movements and predictions\n3. Security measures (single sig vs. multisig)\n4. Adoption and education about Bitcoin\n5. Political and social implications of Bitcoin ownership\n6. Financial empowerment through Bitcoin accumulation\n7. Updates on technology and developments in the industry\n\nOverall, the sentiment towards Bitcoin seems to be mixed, with some users expressing skepticism or criticism while others are bullish and optimistic about its future. The discussions also touch on broader themes such as financial freedom, sovereignty, and the potential for Bitcoin to change lives.","data":[17,11,9,36,116,69,12,17,13,14,25,21,13,14,17,25,6,15,25,24,21,25,25,19,22,22,14,13,24,20,29,14,22,23,12,22,26,18,20,19,13,29,27,20,25,24,22,21,7,17,20,15,17,26,19]},{"label":"BTC Price","topics":"btc,range,resistance,bitcoin,price","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- The importance of the 100DMA in Bitcoin bull markets\n- Resistance levels in the Bitcoin market\n- Predictions of Bitcoin hitting an all-time high\n- Bitcoin spot volume outflows from Coinbase affecting price decline\n- Bitcoin RSI mirroring 2017 bull run patterns\n- Aggregate Bitcoin on OTC desk balances reaching highs and lows\n- Binance Coin's price movement beyond $600\n- Bitcoin's price consolidation and potential breakout\n- The potential for Bitcoin to reach $100k in the current bull run\n- Altcoins performance compared to Bitcoin\n- Chainlink's price surge amidst Bitcoin's movement\n- Speculation on Bitcoin's price movement near its all-time high\n- Technical analysis suggesting a potential short entry for Bitcoin\n- Importance of month candle close for future price action in Bitcoin\n\nOverall, the discussions revolve around price movements, technical analysis, market trends, and predictions for Bitcoin and other cryptocurrencies in the industry.","data":[4,15,5,12,65,71,44,30,5,11,11,14,29,2,9,5,4,18,12,3,5,7,6,25,11,11,8,3,9,18,10,11,6,11,8,7,6,12,18,18,16,18,1,12,10,13,10,13,4,6,3,9,8,13,8]},{"label":"ETH ETF","topics":"approved,sec,etfs,etf,ethereum","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are the approval of Ethereum ETFs by the SEC. There is excitement and anticipation surrounding the approval of eight Ethereum ETFs, with discussions about the potential impact on Ethereum's long-term growth and the narrative surrounding ETH as digital oil, internet bond, programmable money, and tokenization platform. There are also predictions about the start of trading for ETH ETFs, as well as speculation about the potential floodgate of demand and significant buying pressure for Ether following the SEC's approval. Overall, the approval of Ethereum ETFs is seen as a significant moment for the crypto industry, with many expressing excitement and optimism about the future of Ethereum.","data":[4,8,94,6,5,1,9,2,2,5,9,9,3,8,5,44,88,5,13,7,10,1,4,3,6,7,6,6,9,5,7,6,5,6,13,4,5,9,5,10,7,12,5,3,24,8,8,12,2,7,3,10,6,5,7]},{"label":"PEPE","topics":"pepe,sol,mcap,coin,higher","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. The rise of meme coins like $PEPE, which has overtaken $MATIC in market cap and is now ranked #18 in the market.\n2. The potential for $PEPE to reach a $100 billion market cap, with a target of $220,000 by 2024.\n3. The success of smart money traders making $2.17 million from a single trade involving $PEPE.\n4. The analysis of $PEPE coin price action, with buyers scouting for accumulation zones as the holder count increases by 3X.\n5. The discussion of building a $100k Memecoin Portfolio for the current cycle, with the belief that good memes often outperform many altcoins in a bull market.\n6. The support for $PEPE on the Solana blockchain and the appreciation for the artist behind the coin.\n7. The comparison between $PEPE and other meme coins like $SHIB, with a question posed to followers on which one they would buy.\n8. The excitement around $PEPE reaching an all-time high and the anticipation for potential airdrops.\n9. The mention of $PEPE getting a bid above $0.016, with aggressive buyers coming in and the importance of confirmation above $0.01635+.\n10. The call to \"hodl\" $PEPE and other altcoins for potential gains in the future, with references to $BTC, $ETH, $BONK, and $MATH.\n\nOverall, the sentiment around $PEPE on social media appears to be positive, with discussions focusing on its market performance, potential for growth, and community support.","data":[9,2,2,6,2,2,5,13,4,4,10,6,3,5,3,4,1,1,7,5,3,8,5,18,4,4,2,10,10,6,7,8,12,4,4,5,93,6,7,7,4,6,4,8,6,4,8,15,8,7,4,7,2,7,5]},{"label":"AI","topics":"ai,intelligence,models,tools,technology","description":"The key topics discussed in the messages from twitter related to AI in the crypto industry include:\n- The advancement of AI models and their impact on various industries\n- The rise of AI-driven leadership coaching and programming focused AI models\n- The potential for AI to revolutionize content creation in Hollywood\n- The emergence of new AI technologies such as Mistral Overhauls and Cohere\n- The integration of AI in various aspects of business operations, such as marketing, travel, and cybersecurity\n- The potential for AI to automate tasks and potentially displace certain human activities\n- The excitement surrounding the HyperShareMarriage and the concept of the \"internet of AI\"\n- The anticipation of a supercycle in AI and the potential for certain cryptocurrencies to rise in value as a result\n\nOverall, the messages reflect a mix of enthusiasm, curiosity, and concern about the increasing role of AI in the crypto industry and beyond.","data":[28,33,5,3,1,1,1,0,6,2,5,5,6,3,7,8,0,5,8,5,8,10,2,2,8,5,7,10,7,2,2,2,6,6,4,4,4,6,5,7,10,6,5,3,3,3,6,11,2,10,4,5,12,5,8]},{"label":"Art","topics":"art,artist,artists,artwork,cryptoart","description":"The key topics discussed in the messages from twitter about the crypto industry and art include:\n- Contemporary art and its impact\n- Art dealing and buying trends\n- NFTs (Non-Fungible Tokens) in the art world\n- Web3 and its role in art purchasing\n- Photography and art creation\n- Tezos and its role in showcasing art\n- Tilt shift photography and its effects\n- Digital art and its unique features\n- Pop Art Cat giveaways and painting events\n- Art and music events in Lisbon powered by FerrumNetwork\n\nOverall, the messages highlight the intersection of technology, art, and community within the crypto industry.","data":[1,4,55,7,0,0,7,3,1,7,11,5,9,6,1,3,2,2,6,6,7,6,8,5,7,4,4,4,6,8,8,3,3,6,7,11,8,4,2,5,2,2,9,7,2,6,4,1,3,3,6,6,4,4,9]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The current topic being discussed on Twitter is the rise of meme coins within the crypto industry. People are talking about meme supercycles, the success of meme coins like $mog and $pepe reaching all-time highs, and the potential for meme coins to make money. There is also a focus on the cultural significance of meme coins and their ability to attract attention in unique ways. Additionally, there are mentions of specific meme coins like $CARLO and discussions about upcoming events related to meme coins and gaming. Overall, the sentiment seems to be positive towards meme coins and their potential for growth in the crypto market.","data":[8,7,2,8,1,0,3,4,2,4,4,6,2,5,4,4,6,2,7,3,7,7,4,3,6,4,5,1,4,5,1,67,11,5,8,3,8,5,3,8,2,3,5,3,5,4,8,7,6,4,5,1,2,2,4]},{"label":"ETH Price","topics":"eth,ethereum,4000,price,resistance","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- Ethereum (ETH) price hitting $3,888.62 and the potential for it to reach $4,000\n- Speculation on whether a new all-time high for Ethereum will be reached in June\n- The recent approval of an Ethereum ETF and its potential impact on the price\n- Increase in the number of Ethereum addresses holding 10,000+ ETH, indicating accumulation\n- Analyst forecasts for Ethereum's price, with some predicting a dive to $2,700 amid regulatory scrutiny\n- Technical analysis indicating resistance at the $4,000 level and potential for a breakout\n- Discussion on funding rates and longs crowding in the market\n- Monthly price levels for a bullish June and potential for a new all-time high in the coming months\n\nOverall, sentiment on Twitter seems to be bullish on Ethereum's price potential, with many users discussing the possibility of reaching new highs and the impact of recent developments on the market.","data":[3,2,3,3,1,0,5,6,0,1,4,6,4,3,3,5,78,2,2,1,2,3,2,6,3,2,2,2,5,1,5,0,5,8,3,1,2,3,19,6,1,3,5,6,3,2,8,4,2,3,4,2,2,4,0]},{"label":"SOL","topics":"solana,sol,meme,eth,memecoins","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana's xSTEP stablecoin and its high yield potential\n2. Solana's NFT market surpassing Ethereum's\n3. Solana's price potential reaching $1,000\n4. Circle minting 250,000,000 USDC on Solana\n5. Solana's spectacular surge in the crypto realm\n6. Solana leading in NFT creation in the last 30 days\n7. Solana Project Penguiana concluding a successful presale and launching on Raydium\n8. Solana's ledger size and concerns raised by the owner and CEO\n9. $Dyl musician token bridged on multiple chains including ETH and SOL\n10. The upcoming launch of JYDS on Solana with CEX listings and audits passed\n11. Solana Meme Factory adding a livestreaming feature\n\nOverall, the discussions on Twitter indicate a positive sentiment towards Solana and its various developments and achievements in the crypto industry.","data":[6,0,4,2,0,1,6,7,3,6,6,3,3,4,1,8,3,4,4,1,5,6,1,9,3,1,3,4,1,1,1,8,2,5,6,3,4,5,4,8,1,2,4,2,21,5,6,10,3,3,1,7,3,3,1]},{"label":"GameFI","topics":"gaming,games,game,web3,play","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Web3 Gaming Platforms: There is a lot of excitement and discussion around Web3 gaming platforms like Zkasino and Pavillionhub, which are enabling users to retrieve ETH tokens and protect their gaming legacy. These platforms are seen as providing a more flexible and user-centric approach compared to traditional gaming platforms like Steam.\n2. Metaverse and Interoperability: Mythical Games showcased a demo with portals between cloud-streamed games, calling it the metaverse and highlighting the importance of interoperability in the gaming industry.\n3. Gaming Guilds Evolution: There is a discussion about the evolution of gaming guilds from a thin economic layer on top of a game to becoming the most important economic players in a gaming ecosystem, involving corporations, minigames, plugins, clients, etc.\n4. GameFi Projects: Projects like MonProtocol are launching games like PixelPalsAI with a large number of active players and hours played, indicating a bullish outlook on the project.\n5. Tribalism in Web3: There is a conversation about tribalism in the Web3 space, with a call for embracing multiple communities and projects without being limited to one specific group.\n6. SKALE Games: SKALE is bridging the gap between Web2 and Web3 with games like FusyFox, HavensCompass, StrayShotGame, and WorldofDypians, offering gas-free gaming and an invisible blockchain experience.\n\nOverall, the discussions on social media indicate a growing interest and excitement around Web3 gaming platforms, metaverse concepts, evolving gaming guilds, GameFi projects, addressing tribalism in the Web3 space, and the innovative approach of platforms like SKALE in the gaming industry.","data":[1,2,2,3,4,2,3,5,1,4,6,6,0,6,4,5,0,4,2,2,32,3,6,2,3,4,0,4,1,3,2,1,3,3,4,2,3,10,1,2,3,1,3,2,1,2,8,4,2,0,0,4,2,9,4]},{"label":"BLAST","topics":"blast,gold,pacmoon,points,game","description":"The key topics discussed in the messages from twitter are:\n- Winning Gold on Blast by holding tokens and NFTs\n- Participating in events and tournaments on various platforms like KettleFinance and Fantasy Top\n- Investing in memecoins like PACMOON and $bets\n- Speculating on the potential success of projects like Blast and Wolfdotgame\n- Sharing experiences and strategies for maximizing rewards in the crypto industry\n\nOverall, the messages reflect a mix of excitement, strategy, and community engagement within the crypto industry.","data":[4,0,1,8,0,7,0,4,3,6,4,1,2,0,0,2,0,1,9,3,10,6,1,3,3,1,2,2,4,4,4,0,3,3,3,13,2,1,2,2,1,2,2,0,7,3,2,0,5,2,1,4,0,16,5]},{"label":"Mt.Gox","topics":"mtgox,moved,transferred,address,wallet","description":"Based on the messages from Twitter, it seems that there is a lot of discussion surrounding Mt. Gox and the movement of a significant amount of Bitcoin. The Mt. Gox trustee is reportedly moving Bitcoin to different wallets in preparation for distribution expected this year. This has led to speculation about potential impacts on the Bitcoin price and whether Mt. Gox dumping a large amount of BTC could lead to a crash. Additionally, there are concerns about the significant amount of BTC being moved by Mt. Gox entities, with some suggesting it could have a major impact on the market. Overall, the community is closely monitoring these developments and sharing their thoughts on the situation.","data":[4,1,2,3,4,5,4,0,1,3,8,6,1,8,2,2,1,5,1,2,2,0,0,2,1,4,2,3,1,0,0,4,0,27,4,1,2,0,0,0,6,1,1,1,0,2,0,0,3,17,2,4,2,2,2]},{"label":"Kabosu RIP","topics":"doge,dogecoin,dog,rip,inspired","description":"The crypto community on Twitter is mourning the loss of Kabosu, the iconic Shiba Inu behind the Doge meme. Many are expressing their sadness and paying tribute to Kabosu, who inspired the creation of Dogecoin. Some are speculating about foul play in Kabosu's death, while others are reminiscing about the impact Kabosu had on the crypto world. Elon Musk even tweeted a tribute to Kabosu, causing a 5% spike in the price of Dogecoin. Overall, the community is reflecting on Kabosu's legacy and the role she played in the meme and crypto revolution.","data":[1,0,1,3,0,0,2,0,0,0,0,0,0,5,38,3,0,2,2,0,2,4,0,2,6,7,2,1,2,4,1,5,1,0,3,6,1,1,0,0,11,6,1,0,1,1,0,0,4,3,1,1,2,1,1]},{"label":"DOGE","topics":"doge,dogecoin,prediction,breakout,jump","description":"The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin ($DOGE), include:\n- Speculation on what will happen when Dogecoin hits $1\n- Positive sentiment towards Dogecoin's potential for growth and profitability\n- Analysis of Dogecoin's market position and potential for a rise in value\n- Comparison of Dogecoin to other cryptocurrencies and memecoins\n- Reports on Dogecoin's recent price spikes despite a downturn in the overall crypto market\n- Discussion of whale activity and its impact on Dogecoin's price movement\n- Promotion of new cryptocurrencies like Dogby and Tamadoge as potential investment opportunities\n- Calls to action for investing in Dogecoin and other related cryptocurrencies\n- Predictions and recommendations for trading Dogecoin and other cryptocurrencies\n\nOverall, the sentiment towards Dogecoin appears to be positive, with many users expressing optimism about its future potential and profitability.","data":[2,2,1,0,0,0,2,0,0,0,1,0,1,1,67,0,0,0,2,0,3,2,1,1,0,2,1,1,1,2,3,1,4,2,0,1,0,0,4,2,2,2,0,2,2,1,2,4,1,1,0,1,2,1,1]},{"label":"Chain Abstraction","topics":"chain,blockchain,scalability,security,chains","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n- Chain Abstraction: Solving modular fragmentation and enabling interoperability between different blockchains.\n- Validators: Key players in ensuring accuracy and reliability of blockchain transactions.\n- Metagraphs: Autonomous networks for processing and validating complex data from various sources.\n- Full Nodes: Maintaining data integrity and preventing manipulation or tampering of transaction history.\n- Ethereum Layer 2: Experience benefits of Sequencer Mining and bridging to Metis for mining rewards and LSTs.\n- Wanchain: Sustainable PoS blockchain with decentralized network of bridges, showcasing uninterrupted uptime and bridging assets like USDT between different chains.","data":[3,2,1,0,0,3,0,0,9,5,2,1,2,6,1,3,0,1,1,4,1,0,4,2,3,5,1,5,0,3,2,1,7,5,1,2,3,1,3,4,1,2,0,4,2,1,6,2,2,1,2,5,3,0,3]},{"label":"BlackRock’s Bitcoin ETF","topics":"blackrock,etf,largest,holdings,billion","description":"The key topic discussed in the messages from Twitter is the competition between BlackRock's iShares Bitcoin Trust (IBIT) and Grayscale's Bitcoin Trust (GBTC) to become the largest Bitcoin ETF globally. BlackRock's IBIT has overtaken GBTC in terms of Bitcoin under management (BUM), with IBIT now holding over $19 billion worth of Bitcoin. This development highlights the growing interest and investment in Bitcoin by institutional investors like BlackRock. Additionally, there is speculation that BlackRock may also accumulate Ethereum after the approval of an Ethereum ETF. Overall, the trend suggests a bullish sentiment towards cryptocurrencies, particularly Bitcoin, in the market.","data":[3,1,0,2,2,23,2,0,0,1,3,5,1,1,2,9,9,1,4,1,1,1,6,4,8,4,1,4,0,0,0,0,1,3,2,1,0,0,0,1,0,0,1,0,1,2,5,0,1,1,0,1,0,0,7]},{"label":"SHIB","topics":"shiba,shib,inu,trader,trillion","description":"The key topics currently discussed in the crypto community on Twitter include the rivalry between $SHIB and $DOGE, with predictions that $SHIB will surpass $DOGE in popularity. There is also discussion about the burn rate of $SHIB and its potential impact on prices. Additionally, there is excitement about the upcoming bull run for $SHIB and the growing activity on the Shibarium Network. Large investors are showing interest in $SHIB, and there are comparisons being made between $SHIB and $DOGE as the original cryptocurrencies in the space. Overall, there is optimism and anticipation for the future of $SHIB in the crypto market.","data":[2,5,0,0,1,0,1,4,1,1,3,1,0,1,3,1,1,2,0,1,0,1,0,3,0,24,5,4,0,0,1,0,0,0,1,0,2,1,2,0,0,1,2,34,1,0,3,2,0,2,0,1,2,2,1]},{"label":"Whales","topics":"whales,whale,buying,sale,prices","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin whales accumulating more BTC despite market fluctuations.\n2. XRP whale offloading a significant amount of coins, causing speculation about price movement.\n3. Whales buying and selling large amounts of BTC, impacting market trends.\n4. Ethereum ETF hype fading and potential price retracement.\n5. Whales showing interest in alternative cryptocurrencies like Pepecoins and Basedai.\n6. Whales recovering funds lost to phishing scams.\n7. Surge in whale activity for altcoins like Optimism and Chiliz, signaling potential market movements.\n8. Market panic and price drops due to XRP whale dumping.\n9. Bitcoin 2024 offering exclusive VIP experiences for whale investors.\n10. Analysis of factors impacting Bitcoin supply and market dynamics.\n\nOverall, the focus is on whale behavior, market trends, price movements, and potential opportunities in the crypto industry.","data":[1,5,0,0,4,22,0,1,1,0,1,3,3,4,1,4,5,0,0,0,0,0,1,2,1,1,0,0,0,2,1,2,1,4,7,6,1,0,0,0,1,1,0,3,2,0,0,1,1,1,0,5,0,13,1]},{"label":"LINK","topics":"chainlink,link,blackrock,swift,crosschain","description":"The key topics currently being discussed in the crypto community on Twitter regarding Chainlink ($LINK) include:\n- Chainlink's potential for growth and reaching $20+\n- BlackRock burning 900 million $LINK tokens and potential interest in buying at higher prices\n- Collaboration with DTCC on bringing NAV data onchain and tokenization opportunities\n- Chainlink's rise in price and positive sentiment fueled by recent events\n- Top projects on Chainlink such as $CSWAP, $Seam, and $XSWAP\n- Chainlink's increasing momentum as tokenized asset infrastructure\n- The bullish signs in Chainlink's on-chain data and rising number of active addresses\n- Chainlink's solid AA rating, increased trading volume, and price performance\n- Discussions about potential partnerships and listings within the Chainlink ecosystem\n\nOverall, the sentiment around Chainlink on Twitter seems to be positive with a focus on its potential for growth and adoption in the crypto industry.","data":[0,2,0,1,0,1,1,9,3,22,2,2,0,1,1,0,0,2,2,1,3,0,1,2,1,0,1,3,14,0,0,2,2,0,1,3,1,0,1,0,1,5,1,1,1,2,3,0,0,1,2,4,2,1,3]},{"label":"XRP","topics":"xrp,ripple,york,coinbase,analyst","description":"Based on the messages from Twitter, it is evident that the crypto community is currently discussing the potential approval of cryptocurrency ETFs, particularly for XRP. There is speculation that an XRP ETF could be on the horizon following the approval of an Ethereum ETF. Additionally, there are discussions about XRP's price performance, trading volume, and potential price predictions. The community is also reacting to Ripple CEO's cryptic post and engaging in debates about regulatory bias and corruption allegations against the SEC. Furthermore, there are mentions of AI platforms revising their price predictions for XRP and the involvement of prominent figures like John Deaton in advocating for crypto interests. Overall, the sentiment in the crypto community seems to be a mix of optimism, anticipation, and skepticism regarding the future of XRP and cryptocurrency ETFs.","data":[1,3,2,1,1,1,2,0,3,1,1,1,1,4,2,4,1,9,1,2,1,0,0,3,0,4,2,2,0,1,1,0,0,2,0,1,0,3,5,0,9,5,3,2,2,3,6,2,0,0,0,5,1,0,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-21.ts b/priv/repo/major_topics_seed/data-21.ts deleted file mode 100644 index 29d828954b..0000000000 --- a/priv/repo/major_topics_seed/data-21.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '23.05.24', - '24.05.24', - '24.05.24', - '24.05.24', - '24.05.24', - '24.05.24', - '24.05.24', - '24.05.24', - '25.05.24', - '25.05.24', - '25.05.24', - '25.05.24', - '25.05.24', - '25.05.24', - '25.05.24', - '25.05.24', - '26.05.24', - '26.05.24', - '26.05.24', - '26.05.24', - '26.05.24', - '26.05.24', - '26.05.24', - '26.05.24', - '27.05.24', - '27.05.24', - '27.05.24', - '27.05.24', - '27.05.24', - '27.05.24', - '27.05.24', - '27.05.24', - '28.05.24', - '28.05.24', - '28.05.24', - '28.05.24', - '28.05.24', - '28.05.24', - '28.05.24', - '28.05.24', - '29.05.24', - '29.05.24', - '29.05.24', - '29.05.24', - '29.05.24', - '29.05.24', - '29.05.24', - '29.05.24', - '30.05.24', - '30.05.24', - '30.05.24', - '30.05.24', - '30.05.24', - '30.05.24', - '30.05.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,money,fiat,dont,people', - description: - 'Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Bitcoin (#Bitcoin, #btc)\n2. Price movements and predictions\n3. Security measures (single sig vs. multisig)\n4. Adoption and education about Bitcoin\n5. Political and social implications of Bitcoin ownership\n6. Financial empowerment through Bitcoin accumulation\n7. Updates on technology and developments in the industry\n\nOverall, the sentiment towards Bitcoin seems to be mixed, with some users expressing skepticism or criticism while others are bullish and optimistic about its future. The discussions also touch on broader themes such as financial freedom, sovereignty, and the potential for Bitcoin to change lives.', - data: [ - 17, 11, 9, 36, 116, 69, 12, 17, 13, 14, 25, 21, 13, 14, 17, 25, 6, 15, 25, 24, 21, 25, 25, - 19, 22, 22, 14, 13, 24, 20, 29, 14, 22, 23, 12, 22, 26, 18, 20, 19, 13, 29, 27, 20, 25, 24, - 22, 21, 7, 17, 20, 15, 17, 26, 19, - ], - }, - { - label: 'BTC Price', - topics: 'btc,range,resistance,bitcoin,price', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- The importance of the 100DMA in Bitcoin bull markets\n- Resistance levels in the Bitcoin market\n- Predictions of Bitcoin hitting an all-time high\n- Bitcoin spot volume outflows from Coinbase affecting price decline\n- Bitcoin RSI mirroring 2017 bull run patterns\n- Aggregate Bitcoin on OTC desk balances reaching highs and lows\n- Binance Coin's price movement beyond $600\n- Bitcoin's price consolidation and potential breakout\n- The potential for Bitcoin to reach $100k in the current bull run\n- Altcoins performance compared to Bitcoin\n- Chainlink's price surge amidst Bitcoin's movement\n- Speculation on Bitcoin's price movement near its all-time high\n- Technical analysis suggesting a potential short entry for Bitcoin\n- Importance of month candle close for future price action in Bitcoin\n\nOverall, the discussions revolve around price movements, technical analysis, market trends, and predictions for Bitcoin and other cryptocurrencies in the industry.", - data: [ - 4, 15, 5, 12, 65, 71, 44, 30, 5, 11, 11, 14, 29, 2, 9, 5, 4, 18, 12, 3, 5, 7, 6, 25, 11, 11, - 8, 3, 9, 18, 10, 11, 6, 11, 8, 7, 6, 12, 18, 18, 16, 18, 1, 12, 10, 13, 10, 13, 4, 6, 3, 9, - 8, 13, 8, - ], - }, - { - label: 'ETH ETF', - topics: 'approved,sec,etfs,etf,ethereum', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry are the approval of Ethereum ETFs by the SEC. There is excitement and anticipation surrounding the approval of eight Ethereum ETFs, with discussions about the potential impact on Ethereum's long-term growth and the narrative surrounding ETH as digital oil, internet bond, programmable money, and tokenization platform. There are also predictions about the start of trading for ETH ETFs, as well as speculation about the potential floodgate of demand and significant buying pressure for Ether following the SEC's approval. Overall, the approval of Ethereum ETFs is seen as a significant moment for the crypto industry, with many expressing excitement and optimism about the future of Ethereum.", - data: [ - 4, 8, 94, 6, 5, 1, 9, 2, 2, 5, 9, 9, 3, 8, 5, 44, 88, 5, 13, 7, 10, 1, 4, 3, 6, 7, 6, 6, 9, - 5, 7, 6, 5, 6, 13, 4, 5, 9, 5, 10, 7, 12, 5, 3, 24, 8, 8, 12, 2, 7, 3, 10, 6, 5, 7, - ], - }, - { - label: 'PEPE', - topics: 'pepe,sol,mcap,coin,higher', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. The rise of meme coins like $PEPE, which has overtaken $MATIC in market cap and is now ranked #18 in the market.\n2. The potential for $PEPE to reach a $100 billion market cap, with a target of $220,000 by 2024.\n3. The success of smart money traders making $2.17 million from a single trade involving $PEPE.\n4. The analysis of $PEPE coin price action, with buyers scouting for accumulation zones as the holder count increases by 3X.\n5. The discussion of building a $100k Memecoin Portfolio for the current cycle, with the belief that good memes often outperform many altcoins in a bull market.\n6. The support for $PEPE on the Solana blockchain and the appreciation for the artist behind the coin.\n7. The comparison between $PEPE and other meme coins like $SHIB, with a question posed to followers on which one they would buy.\n8. The excitement around $PEPE reaching an all-time high and the anticipation for potential airdrops.\n9. The mention of $PEPE getting a bid above $0.016, with aggressive buyers coming in and the importance of confirmation above $0.01635+.\n10. The call to "hodl" $PEPE and other altcoins for potential gains in the future, with references to $BTC, $ETH, $BONK, and $MATH.\n\nOverall, the sentiment around $PEPE on social media appears to be positive, with discussions focusing on its market performance, potential for growth, and community support.', - data: [ - 9, 2, 2, 6, 2, 2, 5, 13, 4, 4, 10, 6, 3, 5, 3, 4, 1, 1, 7, 5, 3, 8, 5, 18, 4, 4, 2, 10, 10, - 6, 7, 8, 12, 4, 4, 5, 93, 6, 7, 7, 4, 6, 4, 8, 6, 4, 8, 15, 8, 7, 4, 7, 2, 7, 5, - ], - }, - { - label: 'AI', - topics: 'ai,intelligence,models,tools,technology', - description: - 'The key topics discussed in the messages from twitter related to AI in the crypto industry include:\n- The advancement of AI models and their impact on various industries\n- The rise of AI-driven leadership coaching and programming focused AI models\n- The potential for AI to revolutionize content creation in Hollywood\n- The emergence of new AI technologies such as Mistral Overhauls and Cohere\n- The integration of AI in various aspects of business operations, such as marketing, travel, and cybersecurity\n- The potential for AI to automate tasks and potentially displace certain human activities\n- The excitement surrounding the HyperShareMarriage and the concept of the "internet of AI"\n- The anticipation of a supercycle in AI and the potential for certain cryptocurrencies to rise in value as a result\n\nOverall, the messages reflect a mix of enthusiasm, curiosity, and concern about the increasing role of AI in the crypto industry and beyond.', - data: [ - 28, 33, 5, 3, 1, 1, 1, 0, 6, 2, 5, 5, 6, 3, 7, 8, 0, 5, 8, 5, 8, 10, 2, 2, 8, 5, 7, 10, 7, - 2, 2, 2, 6, 6, 4, 4, 4, 6, 5, 7, 10, 6, 5, 3, 3, 3, 6, 11, 2, 10, 4, 5, 12, 5, 8, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,artwork,cryptoart', - description: - 'The key topics discussed in the messages from twitter about the crypto industry and art include:\n- Contemporary art and its impact\n- Art dealing and buying trends\n- NFTs (Non-Fungible Tokens) in the art world\n- Web3 and its role in art purchasing\n- Photography and art creation\n- Tezos and its role in showcasing art\n- Tilt shift photography and its effects\n- Digital art and its unique features\n- Pop Art Cat giveaways and painting events\n- Art and music events in Lisbon powered by FerrumNetwork\n\nOverall, the messages highlight the intersection of technology, art, and community within the crypto industry.', - data: [ - 1, 4, 55, 7, 0, 0, 7, 3, 1, 7, 11, 5, 9, 6, 1, 3, 2, 2, 6, 6, 7, 6, 8, 5, 7, 4, 4, 4, 6, 8, - 8, 3, 3, 6, 7, 11, 8, 4, 2, 5, 2, 2, 9, 7, 2, 6, 4, 1, 3, 3, 6, 6, 4, 4, 9, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The current topic being discussed on Twitter is the rise of meme coins within the crypto industry. People are talking about meme supercycles, the success of meme coins like $mog and $pepe reaching all-time highs, and the potential for meme coins to make money. There is also a focus on the cultural significance of meme coins and their ability to attract attention in unique ways. Additionally, there are mentions of specific meme coins like $CARLO and discussions about upcoming events related to meme coins and gaming. Overall, the sentiment seems to be positive towards meme coins and their potential for growth in the crypto market.', - data: [ - 8, 7, 2, 8, 1, 0, 3, 4, 2, 4, 4, 6, 2, 5, 4, 4, 6, 2, 7, 3, 7, 7, 4, 3, 6, 4, 5, 1, 4, 5, 1, - 67, 11, 5, 8, 3, 8, 5, 3, 8, 2, 3, 5, 3, 5, 4, 8, 7, 6, 4, 5, 1, 2, 2, 4, - ], - }, - { - label: 'ETH Price', - topics: 'eth,ethereum,4000,price,resistance', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n- Ethereum (ETH) price hitting $3,888.62 and the potential for it to reach $4,000\n- Speculation on whether a new all-time high for Ethereum will be reached in June\n- The recent approval of an Ethereum ETF and its potential impact on the price\n- Increase in the number of Ethereum addresses holding 10,000+ ETH, indicating accumulation\n- Analyst forecasts for Ethereum's price, with some predicting a dive to $2,700 amid regulatory scrutiny\n- Technical analysis indicating resistance at the $4,000 level and potential for a breakout\n- Discussion on funding rates and longs crowding in the market\n- Monthly price levels for a bullish June and potential for a new all-time high in the coming months\n\nOverall, sentiment on Twitter seems to be bullish on Ethereum's price potential, with many users discussing the possibility of reaching new highs and the impact of recent developments on the market.", - data: [ - 3, 2, 3, 3, 1, 0, 5, 6, 0, 1, 4, 6, 4, 3, 3, 5, 78, 2, 2, 1, 2, 3, 2, 6, 3, 2, 2, 2, 5, 1, - 5, 0, 5, 8, 3, 1, 2, 3, 19, 6, 1, 3, 5, 6, 3, 2, 8, 4, 2, 3, 4, 2, 2, 4, 0, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,meme,eth,memecoins', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana's xSTEP stablecoin and its high yield potential\n2. Solana's NFT market surpassing Ethereum's\n3. Solana's price potential reaching $1,000\n4. Circle minting 250,000,000 USDC on Solana\n5. Solana's spectacular surge in the crypto realm\n6. Solana leading in NFT creation in the last 30 days\n7. Solana Project Penguiana concluding a successful presale and launching on Raydium\n8. Solana's ledger size and concerns raised by the owner and CEO\n9. $Dyl musician token bridged on multiple chains including ETH and SOL\n10. The upcoming launch of JYDS on Solana with CEX listings and audits passed\n11. Solana Meme Factory adding a livestreaming feature\n\nOverall, the discussions on Twitter indicate a positive sentiment towards Solana and its various developments and achievements in the crypto industry.", - data: [ - 6, 0, 4, 2, 0, 1, 6, 7, 3, 6, 6, 3, 3, 4, 1, 8, 3, 4, 4, 1, 5, 6, 1, 9, 3, 1, 3, 4, 1, 1, 1, - 8, 2, 5, 6, 3, 4, 5, 4, 8, 1, 2, 4, 2, 21, 5, 6, 10, 3, 3, 1, 7, 3, 3, 1, - ], - }, - { - label: 'GameFI', - topics: 'gaming,games,game,web3,play', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Web3 Gaming Platforms: There is a lot of excitement and discussion around Web3 gaming platforms like Zkasino and Pavillionhub, which are enabling users to retrieve ETH tokens and protect their gaming legacy. These platforms are seen as providing a more flexible and user-centric approach compared to traditional gaming platforms like Steam.\n2. Metaverse and Interoperability: Mythical Games showcased a demo with portals between cloud-streamed games, calling it the metaverse and highlighting the importance of interoperability in the gaming industry.\n3. Gaming Guilds Evolution: There is a discussion about the evolution of gaming guilds from a thin economic layer on top of a game to becoming the most important economic players in a gaming ecosystem, involving corporations, minigames, plugins, clients, etc.\n4. GameFi Projects: Projects like MonProtocol are launching games like PixelPalsAI with a large number of active players and hours played, indicating a bullish outlook on the project.\n5. Tribalism in Web3: There is a conversation about tribalism in the Web3 space, with a call for embracing multiple communities and projects without being limited to one specific group.\n6. SKALE Games: SKALE is bridging the gap between Web2 and Web3 with games like FusyFox, HavensCompass, StrayShotGame, and WorldofDypians, offering gas-free gaming and an invisible blockchain experience.\n\nOverall, the discussions on social media indicate a growing interest and excitement around Web3 gaming platforms, metaverse concepts, evolving gaming guilds, GameFi projects, addressing tribalism in the Web3 space, and the innovative approach of platforms like SKALE in the gaming industry.', - data: [ - 1, 2, 2, 3, 4, 2, 3, 5, 1, 4, 6, 6, 0, 6, 4, 5, 0, 4, 2, 2, 32, 3, 6, 2, 3, 4, 0, 4, 1, 3, - 2, 1, 3, 3, 4, 2, 3, 10, 1, 2, 3, 1, 3, 2, 1, 2, 8, 4, 2, 0, 0, 4, 2, 9, 4, - ], - }, - { - label: 'BLAST', - topics: 'blast,gold,pacmoon,points,game', - description: - 'The key topics discussed in the messages from twitter are:\n- Winning Gold on Blast by holding tokens and NFTs\n- Participating in events and tournaments on various platforms like KettleFinance and Fantasy Top\n- Investing in memecoins like PACMOON and $bets\n- Speculating on the potential success of projects like Blast and Wolfdotgame\n- Sharing experiences and strategies for maximizing rewards in the crypto industry\n\nOverall, the messages reflect a mix of excitement, strategy, and community engagement within the crypto industry.', - data: [ - 4, 0, 1, 8, 0, 7, 0, 4, 3, 6, 4, 1, 2, 0, 0, 2, 0, 1, 9, 3, 10, 6, 1, 3, 3, 1, 2, 2, 4, 4, - 4, 0, 3, 3, 3, 13, 2, 1, 2, 2, 1, 2, 2, 0, 7, 3, 2, 0, 5, 2, 1, 4, 0, 16, 5, - ], - }, - { - label: 'Mt.Gox', - topics: 'mtgox,moved,transferred,address,wallet', - description: - 'Based on the messages from Twitter, it seems that there is a lot of discussion surrounding Mt. Gox and the movement of a significant amount of Bitcoin. The Mt. Gox trustee is reportedly moving Bitcoin to different wallets in preparation for distribution expected this year. This has led to speculation about potential impacts on the Bitcoin price and whether Mt. Gox dumping a large amount of BTC could lead to a crash. Additionally, there are concerns about the significant amount of BTC being moved by Mt. Gox entities, with some suggesting it could have a major impact on the market. Overall, the community is closely monitoring these developments and sharing their thoughts on the situation.', - data: [ - 4, 1, 2, 3, 4, 5, 4, 0, 1, 3, 8, 6, 1, 8, 2, 2, 1, 5, 1, 2, 2, 0, 0, 2, 1, 4, 2, 3, 1, 0, 0, - 4, 0, 27, 4, 1, 2, 0, 0, 0, 6, 1, 1, 1, 0, 2, 0, 0, 3, 17, 2, 4, 2, 2, 2, - ], - }, - { - label: 'Kabosu RIP', - topics: 'doge,dogecoin,dog,rip,inspired', - description: - "The crypto community on Twitter is mourning the loss of Kabosu, the iconic Shiba Inu behind the Doge meme. Many are expressing their sadness and paying tribute to Kabosu, who inspired the creation of Dogecoin. Some are speculating about foul play in Kabosu's death, while others are reminiscing about the impact Kabosu had on the crypto world. Elon Musk even tweeted a tribute to Kabosu, causing a 5% spike in the price of Dogecoin. Overall, the community is reflecting on Kabosu's legacy and the role she played in the meme and crypto revolution.", - data: [ - 1, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 5, 38, 3, 0, 2, 2, 0, 2, 4, 0, 2, 6, 7, 2, 1, 2, 4, - 1, 5, 1, 0, 3, 6, 1, 1, 0, 0, 11, 6, 1, 0, 1, 1, 0, 0, 4, 3, 1, 1, 2, 1, 1, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,prediction,breakout,jump', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin ($DOGE), include:\n- Speculation on what will happen when Dogecoin hits $1\n- Positive sentiment towards Dogecoin's potential for growth and profitability\n- Analysis of Dogecoin's market position and potential for a rise in value\n- Comparison of Dogecoin to other cryptocurrencies and memecoins\n- Reports on Dogecoin's recent price spikes despite a downturn in the overall crypto market\n- Discussion of whale activity and its impact on Dogecoin's price movement\n- Promotion of new cryptocurrencies like Dogby and Tamadoge as potential investment opportunities\n- Calls to action for investing in Dogecoin and other related cryptocurrencies\n- Predictions and recommendations for trading Dogecoin and other cryptocurrencies\n\nOverall, the sentiment towards Dogecoin appears to be positive, with many users expressing optimism about its future potential and profitability.", - data: [ - 2, 2, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 1, 67, 0, 0, 0, 2, 0, 3, 2, 1, 1, 0, 2, 1, 1, 1, 2, - 3, 1, 4, 2, 0, 1, 0, 0, 4, 2, 2, 2, 0, 2, 2, 1, 2, 4, 1, 1, 0, 1, 2, 1, 1, - ], - }, - { - label: 'Chain Abstraction', - topics: 'chain,blockchain,scalability,security,chains', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n- Chain Abstraction: Solving modular fragmentation and enabling interoperability between different blockchains.\n- Validators: Key players in ensuring accuracy and reliability of blockchain transactions.\n- Metagraphs: Autonomous networks for processing and validating complex data from various sources.\n- Full Nodes: Maintaining data integrity and preventing manipulation or tampering of transaction history.\n- Ethereum Layer 2: Experience benefits of Sequencer Mining and bridging to Metis for mining rewards and LSTs.\n- Wanchain: Sustainable PoS blockchain with decentralized network of bridges, showcasing uninterrupted uptime and bridging assets like USDT between different chains.', - data: [ - 3, 2, 1, 0, 0, 3, 0, 0, 9, 5, 2, 1, 2, 6, 1, 3, 0, 1, 1, 4, 1, 0, 4, 2, 3, 5, 1, 5, 0, 3, 2, - 1, 7, 5, 1, 2, 3, 1, 3, 4, 1, 2, 0, 4, 2, 1, 6, 2, 2, 1, 2, 5, 3, 0, 3, - ], - }, - { - label: 'BlackRock’s Bitcoin ETF', - topics: 'blackrock,etf,largest,holdings,billion', - description: - "The key topic discussed in the messages from Twitter is the competition between BlackRock's iShares Bitcoin Trust (IBIT) and Grayscale's Bitcoin Trust (GBTC) to become the largest Bitcoin ETF globally. BlackRock's IBIT has overtaken GBTC in terms of Bitcoin under management (BUM), with IBIT now holding over $19 billion worth of Bitcoin. This development highlights the growing interest and investment in Bitcoin by institutional investors like BlackRock. Additionally, there is speculation that BlackRock may also accumulate Ethereum after the approval of an Ethereum ETF. Overall, the trend suggests a bullish sentiment towards cryptocurrencies, particularly Bitcoin, in the market.", - data: [ - 3, 1, 0, 2, 2, 23, 2, 0, 0, 1, 3, 5, 1, 1, 2, 9, 9, 1, 4, 1, 1, 1, 6, 4, 8, 4, 1, 4, 0, 0, - 0, 0, 1, 3, 2, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 2, 5, 0, 1, 1, 0, 1, 0, 0, 7, - ], - }, - { - label: 'SHIB', - topics: 'shiba,shib,inu,trader,trillion', - description: - 'The key topics currently discussed in the crypto community on Twitter include the rivalry between $SHIB and $DOGE, with predictions that $SHIB will surpass $DOGE in popularity. There is also discussion about the burn rate of $SHIB and its potential impact on prices. Additionally, there is excitement about the upcoming bull run for $SHIB and the growing activity on the Shibarium Network. Large investors are showing interest in $SHIB, and there are comparisons being made between $SHIB and $DOGE as the original cryptocurrencies in the space. Overall, there is optimism and anticipation for the future of $SHIB in the crypto market.', - data: [ - 2, 5, 0, 0, 1, 0, 1, 4, 1, 1, 3, 1, 0, 1, 3, 1, 1, 2, 0, 1, 0, 1, 0, 3, 0, 24, 5, 4, 0, 0, - 1, 0, 0, 0, 1, 0, 2, 1, 2, 0, 0, 1, 2, 34, 1, 0, 3, 2, 0, 2, 0, 1, 2, 2, 1, - ], - }, - { - label: 'Whales', - topics: 'whales,whale,buying,sale,prices', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin whales accumulating more BTC despite market fluctuations.\n2. XRP whale offloading a significant amount of coins, causing speculation about price movement.\n3. Whales buying and selling large amounts of BTC, impacting market trends.\n4. Ethereum ETF hype fading and potential price retracement.\n5. Whales showing interest in alternative cryptocurrencies like Pepecoins and Basedai.\n6. Whales recovering funds lost to phishing scams.\n7. Surge in whale activity for altcoins like Optimism and Chiliz, signaling potential market movements.\n8. Market panic and price drops due to XRP whale dumping.\n9. Bitcoin 2024 offering exclusive VIP experiences for whale investors.\n10. Analysis of factors impacting Bitcoin supply and market dynamics.\n\nOverall, the focus is on whale behavior, market trends, price movements, and potential opportunities in the crypto industry.', - data: [ - 1, 5, 0, 0, 4, 22, 0, 1, 1, 0, 1, 3, 3, 4, 1, 4, 5, 0, 0, 0, 0, 0, 1, 2, 1, 1, 0, 0, 0, 2, - 1, 2, 1, 4, 7, 6, 1, 0, 0, 0, 1, 1, 0, 3, 2, 0, 0, 1, 1, 1, 0, 5, 0, 13, 1, - ], - }, - { - label: 'LINK', - topics: 'chainlink,link,blackrock,swift,crosschain', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding Chainlink ($LINK) include:\n- Chainlink's potential for growth and reaching $20+\n- BlackRock burning 900 million $LINK tokens and potential interest in buying at higher prices\n- Collaboration with DTCC on bringing NAV data onchain and tokenization opportunities\n- Chainlink's rise in price and positive sentiment fueled by recent events\n- Top projects on Chainlink such as $CSWAP, $Seam, and $XSWAP\n- Chainlink's increasing momentum as tokenized asset infrastructure\n- The bullish signs in Chainlink's on-chain data and rising number of active addresses\n- Chainlink's solid AA rating, increased trading volume, and price performance\n- Discussions about potential partnerships and listings within the Chainlink ecosystem\n\nOverall, the sentiment around Chainlink on Twitter seems to be positive with a focus on its potential for growth and adoption in the crypto industry.", - data: [ - 0, 2, 0, 1, 0, 1, 1, 9, 3, 22, 2, 2, 0, 1, 1, 0, 0, 2, 2, 1, 3, 0, 1, 2, 1, 0, 1, 3, 14, 0, - 0, 2, 2, 0, 1, 3, 1, 0, 1, 0, 1, 5, 1, 1, 1, 2, 3, 0, 0, 1, 2, 4, 2, 1, 3, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,york,coinbase,analyst', - description: - "Based on the messages from Twitter, it is evident that the crypto community is currently discussing the potential approval of cryptocurrency ETFs, particularly for XRP. There is speculation that an XRP ETF could be on the horizon following the approval of an Ethereum ETF. Additionally, there are discussions about XRP's price performance, trading volume, and potential price predictions. The community is also reacting to Ripple CEO's cryptic post and engaging in debates about regulatory bias and corruption allegations against the SEC. Furthermore, there are mentions of AI platforms revising their price predictions for XRP and the involvement of prominent figures like John Deaton in advocating for crypto interests. Overall, the sentiment in the crypto community seems to be a mix of optimism, anticipation, and skepticism regarding the future of XRP and cryptocurrency ETFs.", - data: [ - 1, 3, 2, 1, 1, 1, 2, 0, 3, 1, 1, 1, 1, 4, 2, 4, 1, 9, 1, 2, 1, 0, 0, 3, 0, 4, 2, 2, 0, 1, 1, - 0, 0, 2, 0, 1, 0, 3, 5, 0, 9, 5, 3, 2, 2, 3, 6, 2, 0, 0, 0, 5, 1, 0, 4, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-22.json b/priv/repo/major_topics_seed/data-22.json deleted file mode 100644 index eb5f2618d6..0000000000 --- a/priv/repo/major_topics_seed/data-22.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["30.05.24","31.05.24","31.05.24","31.05.24","31.05.24","31.05.24","31.05.24","31.05.24","01.06.24","01.06.24","01.06.24","01.06.24","01.06.24","01.06.24","01.06.24","01.06.24","02.06.24","02.06.24","02.06.24","02.06.24","02.06.24","02.06.24","02.06.24","02.06.24","03.06.24","03.06.24","03.06.24","03.06.24","03.06.24","03.06.24","03.06.24","03.06.24","04.06.24","04.06.24","04.06.24","04.06.24","04.06.24","04.06.24","04.06.24","04.06.24","05.06.24","05.06.24","05.06.24","05.06.24","05.06.24","05.06.24","05.06.24","05.06.24","06.06.24","06.06.24","06.06.24","06.06.24","06.06.24","06.06.24","06.06.24"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,currency,buy","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the strength of Bitcoin, security enhancements for crypto exchanges like Bitget, the difficulty of cracking a Bitcoin seed, the potential for a breakout in Bitcoin's price, the use of Bitcoin as a long-term investment and financial tool, the acceptance of Bitcoin in various industries such as cannabis stores, and the increasing support for Bitcoin on popular crypto wallets like Metamask. Additionally, there is discussion about the behavior of Bitcoin enthusiasts and the potential for Bitcoin to replace fiat currency in the future.","data":[14,8,9,9,85,74,8,16,12,12,18,10,10,10,12,18,3,11,16,16,15,17,22,19,11,11,15,14,17,4,19,4,9,11,10,15,24,11,9,13,15,12,14,17,19,16,24,12,20,8,14,19,10,16,13]},{"label":"AI","topics":"ai,software,models,future,panel","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Artificial Intelligence (#AI) and its applications in various fields such as trading, innovation, and decentralization.\n2. The intersection of artificial intelligence and cryptocurrencies, with a focus on Synth AI (SyAi) and its advanced AI algorithms for intelligent insights and automated trading.\n3. Discussions on AI policy, including whether it should be open source or closed, regulated or unfettered, and the influence of billionaire investors like Vinod Khosla, Reid Hoffman, and Marc Andreessen.\n4. The use of AI in various industries, such as finance (Ramp), technology (Apple), and observability, accountability, and usability in AI models (Hedera).\n5. Events and conferences related to AI adoption, blockchain, and technology, such as AI Apex Asia 2024 and LabWeek Field Building.\n6. New listings in the crypto market, such as Ai Save, a distributed intelligent computing network developed by a Silicon Valley technical team.\n7. Calls for decentralization in AI to prevent monopolies and promote competition.\n8. The importance of using AI wisely and the potential for AI to save the world's loneliest plant.\n9. Discussions on polytheistic AI, fractal localism, and the market place of AI Aristotles.\n10. Calls for regulators to support AI projects like $FET, $OCEAN, $AGIX, and $TAO.\n\nOverall, the discussions on social media platforms like Twitter reflect a diverse range of topics related to AI, cryptocurrencies, and their intersection in various industries and policy debates.","data":[43,27,10,6,0,0,2,1,4,5,4,10,5,9,4,7,4,8,5,11,8,3,3,5,15,12,10,8,8,2,5,6,3,7,1,6,8,2,10,5,5,9,8,3,10,3,6,10,6,6,4,5,8,12,13]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The key topics currently being discussed in the crypto industry on social media accounts include:\n- Memecoins: There is a lot of hype and discussion around various meme coins such as $WOJAK, $FLOKI, $MEME, $BOME, $NOTE, $BOB, $VOLT, $MONG, and $MEOW. People are asking for recommendations on which meme coins to buy and hold, as well as speculating on which meme coin will lead the rally.\n- Market trends: People are talking about the rise of meme coins and how they are becoming more popular in the crypto market. There is also mention of PEPE's market cap outpacing major NFT collections combined.\n- Investment strategies: There are discussions about optimal diversification of meme coin assets and which meme coins to watch for potential growth.\n- Airdrops and special perks: Participants in events like 10 Days of Coll3ctibles and Memecoin Monday #1 are being airdropped Ticket Starter Packs, which will be redeemable for Coll3ctibles Tickets in the future. Special perks are also being teased for Ticket Starter Pack holders.","data":[3,5,3,8,0,1,4,5,6,4,7,9,8,1,4,1,0,8,5,6,5,9,3,4,3,7,7,7,6,4,7,80,8,8,8,3,7,7,3,9,1,4,10,3,1,3,5,3,9,11,1,7,3,3,6]},{"label":"BTC ETF","topics":"inflows,etfs,net,etf,spot","description":"The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs. There is a focus on the amount of money flowing into Bitcoin ETFs, with mentions of large sums such as $1.4 billion over two days and $60 billion in total ETF holdings. The messages also highlight the comparison between Bitcoin ETFs and other ETFs, as well as the potential impact of physical delivery approval on institutions. Additionally, there is mention of the strong institutional demand for Bitcoin and the potential implications for Ethereum. The messages also touch on the issue of miners dumping into the inflows and the speculation on what actions U.S. ETFs will take next.","data":[2,0,3,4,27,11,12,2,1,1,4,4,8,6,3,4,22,1,4,5,2,2,3,9,9,17,6,5,0,2,11,7,6,8,5,0,1,3,2,3,3,3,6,2,3,33,4,2,3,7,3,5,3,5,9]},{"label":"Inflation","topics":"inflation,rates,cut,rate,fed","description":"The key topics currently being discussed on Twitter regarding the crypto industry include:\n- Inflation concerns, particularly in Nigeria, with mentions of high food inflation and unemployment rates\n- Foreign exchange obligations owed to foreign airlines being cleared by the Central Bank of Nigeria\n- Challenges with foreign remittances in Nigeria due to a liberalized FX market\n- ChinaAMC purchasing a significant amount of Bitcoin\n- Market impact of China allocating funds for vehicle trade-ins and discussions on interest rates and liquidity gates\n- Rising food prices in Nigeria and challenges with agricultural spending\n- Changes in leadership at IXM's refined metals trading division\n- Discussions on purchasing power in relation to bond interest rates and inflation\n- Impact of undocumented immigrant workers on employment growth in the US\n- China's central bank accumulating gold and reducing US Treasury holdings, potentially signaling a shift in global currency dominance\n- Falling US bond yields and implications for inflation, rate hikes, and risk in the market.","data":[2,5,3,6,0,0,13,3,15,3,2,7,15,5,2,17,3,4,12,1,5,2,7,5,3,16,7,5,2,0,3,29,1,2,7,5,3,4,2,10,8,5,3,1,4,7,5,2,3,0,6,2,2,3,5]},{"label":"BTC Price","topics":"100k,bitcoin,predicts,70k,hit","description":"The key topics currently discussed in the crypto industry on social media include:\n\n1. Bitcoin hitting $70,000 and nearing $71,000, with speculation on whether it will reach $100,000 this year.\n2. Predictions and discussions on Bitcoin's price potential, with mentions of $400K by 2025 and $350K by Robert Kiyosaki.\n3. Speculation on Bitcoin's future price movements, with mentions of resistance levels and potential breakouts.\n4. Raoul Pal's Bitcoin prediction and the impact of liquidity on Bitcoin's price.\n5. The impact of Bitcoin's price surge on the broader cryptocurrency market, turning major cryptocurrencies green.\n6. Discussions on the consolidation phase of Bitcoin at $69,000 and the potential for a breakout before August.\n7. Cautionary advice on what not to do when Bitcoin breaks $100,000.\n8. The influence of influential figures like Robert Kiyosaki on the crypto market and their strategic shifts in their crypto portfolios.\n9. The question of how high Bitcoin will go and the potential for significant price increases in the future.\n10. The excitement and anticipation surrounding Bitcoin's price movements and the potential for wild fluctuations once certain price levels are breached.","data":[1,3,3,5,28,24,7,4,1,0,1,1,4,0,2,1,1,7,4,3,2,5,1,17,3,3,2,4,9,3,3,1,0,2,4,1,1,16,6,10,4,4,7,1,8,3,5,3,5,5,2,1,5,2,2]},{"label":"Art","topics":"art,artist,artists,digital,work","description":"The topic discussed in the given messages from Twitter is related to digital art, NFTs, and the intersection of technology and art. The messages mention creating digital art renditions of famous logos, discussing the value and perception of art, sharing personal art projects, highlighting the work of multidisciplinary artists, and showcasing innovative projects like real-time data pigmentation processes. Additionally, there is a mention of generative art and the ability to purchase physical prints of unique digital art pieces. The overall theme revolves around the evolving landscape of art in the digital age and the various ways artists are exploring and pushing boundaries in this space.","data":[8,5,51,3,1,0,4,3,2,1,5,5,5,5,10,5,3,2,5,3,4,7,3,2,9,3,0,4,7,4,6,0,3,5,1,9,5,3,3,1,2,0,4,3,5,2,4,0,4,3,2,3,4,3,5]},{"label":"GameFI","topics":"gaming,games,game,web3,gamefi","description":"Based on the messages from twitter, the key topics currently being discussed in the crypto industry related to gaming are:\n\n1. Web3 gaming: There is a lot of excitement and discussion around the future of Web3 gaming and its potential for mass adoption. Some users are expressing their enthusiasm for games like Squad Busters and Rebel Cars, while others are highlighting the importance of focusing on revenue rather than just player counts.\n\n2. GameFi: The concept of GameFi, which involves integrating blockchain technology and cryptocurrencies into gaming, is also being discussed. Some users are pointing out that GameFi has been primarily driven by speculation, but there is anticipation for a shift in the space once certain projects launch.\n\n3. Specific games and projects: Mentioned games and projects include MagicCraft, AlturaNFT, and SymbiogenesisPR by SquareEnix. These games are being highlighted for their potential in the Web3 gaming sector.\n\n4. Giveaways and promotions: There are mentions of giveaways related to Web3 gaming, with users encouraged to participate by showing why they believe Web3 gaming is not dead.\n\nOverall, the sentiment around Web3 gaming in the crypto industry appears to be positive, with a focus on innovation, revenue generation, and the potential for mass adoption.","data":[3,1,5,3,0,0,3,5,3,2,2,7,3,3,4,0,2,3,2,34,18,2,4,4,2,2,2,8,6,1,7,0,5,7,3,2,4,14,5,4,3,6,8,1,7,1,2,4,1,2,4,2,4,4,4]},{"label":"PEPE","topics":"pepe,sol,mc,memes,cap","description":"The key topics currently discussed in the crypto industry on Twitter include the rise of $PEPE, with speculation about its potential value reaching $250 billion. There is also discussion about smart money rotating out of $PEPE into $APU, as well as the formation of a triangle pattern in $PEPE's chart. Additionally, there is mention of $PEPE's volume on DEX platforms, its listing on exchanges like Coinbase and Gemini, and the launch of a new token called $PE. Whales are said to be accumulating $PEPE, with anticipation of reaching a $5 million market cap. Overall, the conversation revolves around the potential growth and investment opportunities related to $PEPE and other related tokens.","data":[0,1,2,3,1,2,5,6,5,0,3,2,6,5,2,1,0,3,3,4,4,4,3,10,5,2,1,1,0,3,1,3,4,0,1,3,42,8,3,5,5,2,2,5,7,1,3,5,3,1,2,2,6,2,1]},{"label":"NFT","topics":"nft,nfts,pfp,sales,collection","description":"The messages from Twitter are discussing various topics related to NFTs in the crypto industry. Some key points mentioned include the popularity of 1/1 art as the best use case for ETH NFTs, the potential rewards for buyers of top NFT collections with long time horizons, the scarcity of certain NFTs like the super rare Gold $Soba NFT, and the innovation of projects like InterCellar NFTs reimagining wine ownership. Additionally, there is talk about organizing NFT events for children to create together and cement the future of cryptoart, as well as auctions like Christie's Beyond The Screen auction featuring a blend of Ordinals, NFTs, and physical pieces. Other topics include the debut of NFT-backed cask finishes by Tequila Don Julio, the listing of DadAndKidsNFT on exchgART, and a list of established NFT projects that may be considered for investment with the goal of turning a profit in 6-18 months. Overall, the messages reflect the vibrant and diverse ecosystem of NFTs within the crypto industry.","data":[1,1,2,1,1,2,2,1,3,1,7,4,1,4,3,1,1,0,3,4,3,4,4,2,0,4,2,3,3,2,2,1,6,1,13,3,6,2,2,2,5,3,3,4,4,2,3,1,4,0,2,0,2,4,1]},{"label":"SOL","topics":"solana,sol,ethereum,eth,meme","description":"The key topics currently being discussed on Twitter regarding Solana include:\n- Solana's recent price pump and its potential for further growth\n- The launch of nearly half a million tokens on the Solana ecosystem\n- The integration of Wrapped Bitcoin on Solana\n- Entangle's integration with Solana for cross-chain messaging\n- The NFT frenzy on Solana, with SOL's price jumping to $160\n- AI predictions for Solana's trajectory by the end of June\n- The sale of a domain name related to Solana for 1.5 $SOL\n- Concerns about the responsible selling of SOL by Pump dot fun devs\n- Technical analysis of SOL's price movements and potential trading strategies\n- Solana's impact on the future of cryptocurrency ETFs\n- The breakout of a memecoin on Solana, with significant gains since the signal was given.","data":[0,2,3,2,0,1,4,3,2,2,1,1,2,2,2,2,6,2,1,3,2,2,1,2,1,2,1,2,2,7,2,4,4,4,3,6,7,3,4,4,1,2,2,1,16,0,2,0,3,3,2,1,3,2,1]},{"label":"DOGE","topics":"dogecoin,doge,moon,ripple,lets","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin, meme coins, price predictions, market leaders like Worldcoin and Algotech, NFTs, blockchain technology, decentralized finance (DeFi), token presales, and community-driven projects like DOGEMOB. There is also a focus on trading strategies, chart analysis, and the overall market sentiment towards different cryptocurrencies. Additionally, there is excitement around upcoming events and potential profit opportunities in the crypto market.","data":[0,1,1,2,0,1,0,3,2,4,0,1,1,0,57,2,1,1,4,2,0,0,1,1,1,1,2,1,3,2,0,2,2,1,2,1,3,1,2,2,1,2,2,1,3,5,2,1,3,2,0,2,1,2,3]},{"label":"Bitcoin mining","topics":"mining,miners,miner,halving,revenue","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin mining and the impact of the halving on miners' production\n2. Acquisition offers in the Bitcoin mining industry\n3. Bitcoin hashrate fluctuations and the dominance of top mining pools\n4. Concerns about Bitmain's influence on Bitcoin mining\n5. Introduction of new miners for Litecoin\n6. Calls for Bitcoin mining regulations in Paraguay\n7. Challenges faced by Bitcoin miners due to shrinking margins and low hash prices\n8. Energy consumption and environmental impact of Bitcoin mining\n9. Success and profitability of mining operations, such as BIT Mining Ltd.\n10. Innovations in mining technology, such as the Bitaxe Ultra ASIC miner\n11. Russia's ambitions in Bitcoin mining, with plans for a new mining center in Tatarstan\n\nOverall, the discussions on Twitter reflect a mix of industry developments, challenges, regulatory concerns, and technological advancements in the crypto mining sector.","data":[1,2,0,1,24,8,1,1,0,0,1,4,1,1,1,4,1,2,1,2,0,1,3,2,6,3,0,2,3,0,3,0,19,1,2,4,1,2,3,0,3,3,2,2,1,1,0,2,4,3,0,0,0,2,1]},{"label":"SEC & Utah crypto case","topics":"sec,gensler,securities,court,coinbase","description":"The key topics currently being discussed on Twitter in relation to the crypto industry and the SEC include:\n1. SEC Commissioner Proposes Joint US-UK Digital Securities Sandbox\n2. SEC's Gensler on T+1 Settlement, AI, and Crypto Regulation\n3. SEC's mishandling of cases and lawsuits resulting in penalties\n4. SEC's interactions with FTX and other crypto entities\n5. SEC's decision to close their Salt Lake branch\n6. Interviews with individuals involved in SEC cases, such as DebtBox\n7. Speculation on potential changes at the SEC after elections\n8. Recent SCOTUS decisions and their implications for Bitcoin\n9. Shifts in SEC enforcement actions and classifications of cryptocurrencies\n10. Settlement in principle between Terraform Labs, Do Kwon, and the SEC in a fraud case.","data":[6,4,2,3,0,3,1,0,1,3,11,4,3,1,0,1,0,3,5,1,4,2,2,4,3,0,2,2,2,0,0,1,0,0,2,3,2,0,4,1,2,0,5,4,3,1,7,2,0,1,0,2,0,1,2]},{"label":"Gamestop","topics":"gme,roaring,kitty,gamestop,stock","description":"The key topics discussed in the messages from twitter are:\n1. Roaring Kitty making $250 million on GameStop\n2. The impact of meme stocks like GameStop on the overall market\n3. The belief that GameStop is part of an illuminati plan to destroy the financial system\n4. The influence of Roaring Kitty on stock prices and regulations\n5. Discussion about different cryptocurrencies like MEW and Giko\n6. Comparison between GameStop and MicroStrategy in terms of holding Bitcoin\n7. Keith Gill's disclosure of holding over $180 million in GME shares and call options\n8. The anticipation of Roaring Kitty updating his GME position daily on Reddit\n9. The rise of the Superstonk subreddit as a new platform for discussing stock investments.","data":[2,2,0,1,0,1,1,1,2,1,3,0,1,0,0,0,1,1,2,4,11,3,0,1,1,4,1,2,1,0,4,2,2,1,1,2,2,5,1,1,2,17,0,0,6,2,5,2,0,1,3,0,0,2,2]},{"label":"Hardware companies and AI","topics":"nvidia,nvda,apple,ai,chips","description":"The crypto industry is currently discussing key topics such as the rumored deal between Apple and OpenAI, the introduction of Intel Lunar Lake focusing on AI and battery efficiency, the launch of AMD Ryzen AI 300 Series chip with 50 TOPS AI capability, Nvidia crossing $3 trillion and overtaking Apple as the second-most valuable company, Nvidia CEO Jensen Huang revealing a new AI chip slated for 2026, and the investigation of Nvidia, Microsoft, and OpenAI in America for alleged monopoly of the AI industry. Additionally, there is bullish sentiment towards Intel as a dark horse in the chip wars with encouraging progress and new AI architectures comparable to Nvidia. Crypto miners are also highlighted as the new stars of the AI boom with stockpiles of Nvidia chips and access to power for data centers. Apple is predicted to invest in learning what products work and block out a potential 2026 Nvidia Rubin order. U.S. regulators are set to investigate Microsoft, OpenAI, and Nvidia for potential antitrust violations in the AI industry to ensure fair competition.","data":[3,4,3,2,0,0,1,0,2,0,5,1,2,3,0,3,0,3,1,1,1,0,0,4,1,6,2,3,0,1,1,0,0,1,4,3,1,1,3,1,3,4,2,2,1,2,5,0,0,0,0,4,0,0,2]},{"label":"JASMY","topics":"jasmy,altseason,altcoins,pump,whales","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- $jasmy price movements and potential for growth\n- Whales entering the market and potential for price pumps\n- Technical analysis indicators like Gann square and rising wedge patterns\n- Speculation on future price targets and support levels\n- Excitement and optimism about potential gains and becoming millionaires\n- Calls to buy the dip and hold onto investments\n- Discussion about other altcoins like $vara and $KRAZY\n- Market manipulation and programmed price movements\n- Community sentiment and participation in the market\n\nOverall, the sentiment in the crypto community on Twitter seems to be positive and optimistic about the potential for growth and profits in the market.","data":[0,1,1,2,0,0,4,5,2,1,1,0,1,0,1,7,0,0,2,1,1,1,1,3,1,0,21,1,0,1,0,0,1,1,0,0,1,2,3,2,0,1,0,1,2,1,1,2,0,2,0,3,2,3,2]},{"label":"Coinbase Smart Wallets","topics":"smart,coinbase,wallet,wallets,launches","description":"The key topics currently discussed in the messages from Twitter are:\n1. Coinbase officially launches its Smart Wallet to simplify crypto onboarding process.\n2. Wasabi Wallet dies within hours, sparking discussions about privacy and government surveillance.\n3. Users are sharing their positive experiences with onboarding to crypto through Coinbase Wallet.\n4. The importance of plausible deniability and security measures in protecting crypto assets.\n5. Discussion about the impact of Coinbase and Base in enabling seamless USDC transfers overseas with minimal fees.\n6. Mention of Beldex Official Wallet now available on uptodown for download.\n7. Donation of dust from Wasabi Wallet to OpenTimestamps calendars, with a reminder about the new version's features for privacy.","data":[1,1,0,2,0,0,0,0,2,0,3,1,1,1,0,1,0,2,2,1,1,1,1,1,1,4,3,11,1,1,3,0,0,1,1,0,3,2,1,1,0,1,0,0,13,2,1,0,1,0,2,3,5,2,1]},{"label":"Re-Staking","topics":"staking,liquid,yield,earn,leverage","description":"Focus: Crypto 're-staking' platforms boom as traders chase bigger returns\n\nKey topics discussed in the messages include:\n1. DeFi staking platforms and programs offering high APR returns\n2. Staking as a way to earn passive income during bull markets\n3. Liquid staking products like $qETH and $STONE gaining popularity\n4. Introduction of daily, weekly, and monthly stablecoin staking pools by #SOIL\n5. Staking pools for $SHA tokens with varying levels of fill rates\n6. Benefits of staking Ethereum for earning crypto in 2024\n7. Job opportunities in the crypto industry, including growth & marketing lead, content writer, and community manager positions\n8. Leveraging staking and yield farming for maximizing returns\n9. Encouraging community participation in staking and yield farming activities\n10. Explaining the concepts of staking, liquidity staking, and re-staking in the crypto industry\n\nOverall, the messages highlight the growing interest in staking and DeFi platforms as traders seek higher returns and passive income opportunities in the crypto market.","data":[0,2,2,1,0,0,0,0,1,0,0,0,2,0,3,4,0,1,1,0,1,1,0,0,3,3,3,1,4,1,3,1,0,2,4,3,0,1,1,1,0,2,1,0,2,14,2,2,0,2,3,1,1,1,3]},{"label":"DMMBitcoin hacked","topics":"exchange,japan,million,300,lost","description":"The key topic discussed in the messages from Twitter is the theft of over $300 million worth of Bitcoin from the Japanese crypto exchange DMM Bitcoin. This incident has sparked discussions about the security of centralized exchanges and the importance of holding one's own crypto keys. Additionally, there are mentions of other crypto-related scams and fraudulent activities, such as the OneCoin scam and a police officer misappropriating Bitcoin. The messages also touch upon the impact of these events on the financial markets, with Japan experiencing turbulence in its bond yields and stock market. Overall, the theme revolves around the security and regulation of the crypto industry and its implications on global financial markets.","data":[2,1,0,1,1,0,7,0,1,0,1,1,3,0,6,2,2,1,0,0,0,0,7,1,5,0,16,0,1,0,1,3,1,0,1,1,0,0,2,1,1,0,3,0,0,3,1,0,1,1,1,1,1,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-22.ts b/priv/repo/major_topics_seed/data-22.ts deleted file mode 100644 index 87c9f05e4f..0000000000 --- a/priv/repo/major_topics_seed/data-22.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '30.05.24', - '31.05.24', - '31.05.24', - '31.05.24', - '31.05.24', - '31.05.24', - '31.05.24', - '31.05.24', - '01.06.24', - '01.06.24', - '01.06.24', - '01.06.24', - '01.06.24', - '01.06.24', - '01.06.24', - '01.06.24', - '02.06.24', - '02.06.24', - '02.06.24', - '02.06.24', - '02.06.24', - '02.06.24', - '02.06.24', - '02.06.24', - '03.06.24', - '03.06.24', - '03.06.24', - '03.06.24', - '03.06.24', - '03.06.24', - '03.06.24', - '03.06.24', - '04.06.24', - '04.06.24', - '04.06.24', - '04.06.24', - '04.06.24', - '04.06.24', - '04.06.24', - '04.06.24', - '05.06.24', - '05.06.24', - '05.06.24', - '05.06.24', - '05.06.24', - '05.06.24', - '05.06.24', - '05.06.24', - '06.06.24', - '06.06.24', - '06.06.24', - '06.06.24', - '06.06.24', - '06.06.24', - '06.06.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,currency,buy', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the strength of Bitcoin, security enhancements for crypto exchanges like Bitget, the difficulty of cracking a Bitcoin seed, the potential for a breakout in Bitcoin's price, the use of Bitcoin as a long-term investment and financial tool, the acceptance of Bitcoin in various industries such as cannabis stores, and the increasing support for Bitcoin on popular crypto wallets like Metamask. Additionally, there is discussion about the behavior of Bitcoin enthusiasts and the potential for Bitcoin to replace fiat currency in the future.", - data: [ - 14, 8, 9, 9, 85, 74, 8, 16, 12, 12, 18, 10, 10, 10, 12, 18, 3, 11, 16, 16, 15, 17, 22, 19, - 11, 11, 15, 14, 17, 4, 19, 4, 9, 11, 10, 15, 24, 11, 9, 13, 15, 12, 14, 17, 19, 16, 24, 12, - 20, 8, 14, 19, 10, 16, 13, - ], - }, - { - label: 'AI', - topics: 'ai,software,models,future,panel', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Artificial Intelligence (#AI) and its applications in various fields such as trading, innovation, and decentralization.\n2. The intersection of artificial intelligence and cryptocurrencies, with a focus on Synth AI (SyAi) and its advanced AI algorithms for intelligent insights and automated trading.\n3. Discussions on AI policy, including whether it should be open source or closed, regulated or unfettered, and the influence of billionaire investors like Vinod Khosla, Reid Hoffman, and Marc Andreessen.\n4. The use of AI in various industries, such as finance (Ramp), technology (Apple), and observability, accountability, and usability in AI models (Hedera).\n5. Events and conferences related to AI adoption, blockchain, and technology, such as AI Apex Asia 2024 and LabWeek Field Building.\n6. New listings in the crypto market, such as Ai Save, a distributed intelligent computing network developed by a Silicon Valley technical team.\n7. Calls for decentralization in AI to prevent monopolies and promote competition.\n8. The importance of using AI wisely and the potential for AI to save the world's loneliest plant.\n9. Discussions on polytheistic AI, fractal localism, and the market place of AI Aristotles.\n10. Calls for regulators to support AI projects like $FET, $OCEAN, $AGIX, and $TAO.\n\nOverall, the discussions on social media platforms like Twitter reflect a diverse range of topics related to AI, cryptocurrencies, and their intersection in various industries and policy debates.", - data: [ - 43, 27, 10, 6, 0, 0, 2, 1, 4, 5, 4, 10, 5, 9, 4, 7, 4, 8, 5, 11, 8, 3, 3, 5, 15, 12, 10, 8, - 8, 2, 5, 6, 3, 7, 1, 6, 8, 2, 10, 5, 5, 9, 8, 3, 10, 3, 6, 10, 6, 6, 4, 5, 8, 12, 13, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - "The key topics currently being discussed in the crypto industry on social media accounts include:\n- Memecoins: There is a lot of hype and discussion around various meme coins such as $WOJAK, $FLOKI, $MEME, $BOME, $NOTE, $BOB, $VOLT, $MONG, and $MEOW. People are asking for recommendations on which meme coins to buy and hold, as well as speculating on which meme coin will lead the rally.\n- Market trends: People are talking about the rise of meme coins and how they are becoming more popular in the crypto market. There is also mention of PEPE's market cap outpacing major NFT collections combined.\n- Investment strategies: There are discussions about optimal diversification of meme coin assets and which meme coins to watch for potential growth.\n- Airdrops and special perks: Participants in events like 10 Days of Coll3ctibles and Memecoin Monday #1 are being airdropped Ticket Starter Packs, which will be redeemable for Coll3ctibles Tickets in the future. Special perks are also being teased for Ticket Starter Pack holders.", - data: [ - 3, 5, 3, 8, 0, 1, 4, 5, 6, 4, 7, 9, 8, 1, 4, 1, 0, 8, 5, 6, 5, 9, 3, 4, 3, 7, 7, 7, 6, 4, 7, - 80, 8, 8, 8, 3, 7, 7, 3, 9, 1, 4, 10, 3, 1, 3, 5, 3, 9, 11, 1, 7, 3, 3, 6, - ], - }, - { - label: 'BTC ETF', - topics: 'inflows,etfs,net,etf,spot', - description: - 'The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs. There is a focus on the amount of money flowing into Bitcoin ETFs, with mentions of large sums such as $1.4 billion over two days and $60 billion in total ETF holdings. The messages also highlight the comparison between Bitcoin ETFs and other ETFs, as well as the potential impact of physical delivery approval on institutions. Additionally, there is mention of the strong institutional demand for Bitcoin and the potential implications for Ethereum. The messages also touch on the issue of miners dumping into the inflows and the speculation on what actions U.S. ETFs will take next.', - data: [ - 2, 0, 3, 4, 27, 11, 12, 2, 1, 1, 4, 4, 8, 6, 3, 4, 22, 1, 4, 5, 2, 2, 3, 9, 9, 17, 6, 5, 0, - 2, 11, 7, 6, 8, 5, 0, 1, 3, 2, 3, 3, 3, 6, 2, 3, 33, 4, 2, 3, 7, 3, 5, 3, 5, 9, - ], - }, - { - label: 'Inflation', - topics: 'inflation,rates,cut,rate,fed', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry include:\n- Inflation concerns, particularly in Nigeria, with mentions of high food inflation and unemployment rates\n- Foreign exchange obligations owed to foreign airlines being cleared by the Central Bank of Nigeria\n- Challenges with foreign remittances in Nigeria due to a liberalized FX market\n- ChinaAMC purchasing a significant amount of Bitcoin\n- Market impact of China allocating funds for vehicle trade-ins and discussions on interest rates and liquidity gates\n- Rising food prices in Nigeria and challenges with agricultural spending\n- Changes in leadership at IXM's refined metals trading division\n- Discussions on purchasing power in relation to bond interest rates and inflation\n- Impact of undocumented immigrant workers on employment growth in the US\n- China's central bank accumulating gold and reducing US Treasury holdings, potentially signaling a shift in global currency dominance\n- Falling US bond yields and implications for inflation, rate hikes, and risk in the market.", - data: [ - 2, 5, 3, 6, 0, 0, 13, 3, 15, 3, 2, 7, 15, 5, 2, 17, 3, 4, 12, 1, 5, 2, 7, 5, 3, 16, 7, 5, 2, - 0, 3, 29, 1, 2, 7, 5, 3, 4, 2, 10, 8, 5, 3, 1, 4, 7, 5, 2, 3, 0, 6, 2, 2, 3, 5, - ], - }, - { - label: 'BTC Price', - topics: '100k,bitcoin,predicts,70k,hit', - description: - "The key topics currently discussed in the crypto industry on social media include:\n\n1. Bitcoin hitting $70,000 and nearing $71,000, with speculation on whether it will reach $100,000 this year.\n2. Predictions and discussions on Bitcoin's price potential, with mentions of $400K by 2025 and $350K by Robert Kiyosaki.\n3. Speculation on Bitcoin's future price movements, with mentions of resistance levels and potential breakouts.\n4. Raoul Pal's Bitcoin prediction and the impact of liquidity on Bitcoin's price.\n5. The impact of Bitcoin's price surge on the broader cryptocurrency market, turning major cryptocurrencies green.\n6. Discussions on the consolidation phase of Bitcoin at $69,000 and the potential for a breakout before August.\n7. Cautionary advice on what not to do when Bitcoin breaks $100,000.\n8. The influence of influential figures like Robert Kiyosaki on the crypto market and their strategic shifts in their crypto portfolios.\n9. The question of how high Bitcoin will go and the potential for significant price increases in the future.\n10. The excitement and anticipation surrounding Bitcoin's price movements and the potential for wild fluctuations once certain price levels are breached.", - data: [ - 1, 3, 3, 5, 28, 24, 7, 4, 1, 0, 1, 1, 4, 0, 2, 1, 1, 7, 4, 3, 2, 5, 1, 17, 3, 3, 2, 4, 9, 3, - 3, 1, 0, 2, 4, 1, 1, 16, 6, 10, 4, 4, 7, 1, 8, 3, 5, 3, 5, 5, 2, 1, 5, 2, 2, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,digital,work', - description: - 'The topic discussed in the given messages from Twitter is related to digital art, NFTs, and the intersection of technology and art. The messages mention creating digital art renditions of famous logos, discussing the value and perception of art, sharing personal art projects, highlighting the work of multidisciplinary artists, and showcasing innovative projects like real-time data pigmentation processes. Additionally, there is a mention of generative art and the ability to purchase physical prints of unique digital art pieces. The overall theme revolves around the evolving landscape of art in the digital age and the various ways artists are exploring and pushing boundaries in this space.', - data: [ - 8, 5, 51, 3, 1, 0, 4, 3, 2, 1, 5, 5, 5, 5, 10, 5, 3, 2, 5, 3, 4, 7, 3, 2, 9, 3, 0, 4, 7, 4, - 6, 0, 3, 5, 1, 9, 5, 3, 3, 1, 2, 0, 4, 3, 5, 2, 4, 0, 4, 3, 2, 3, 4, 3, 5, - ], - }, - { - label: 'GameFI', - topics: 'gaming,games,game,web3,gamefi', - description: - 'Based on the messages from twitter, the key topics currently being discussed in the crypto industry related to gaming are:\n\n1. Web3 gaming: There is a lot of excitement and discussion around the future of Web3 gaming and its potential for mass adoption. Some users are expressing their enthusiasm for games like Squad Busters and Rebel Cars, while others are highlighting the importance of focusing on revenue rather than just player counts.\n\n2. GameFi: The concept of GameFi, which involves integrating blockchain technology and cryptocurrencies into gaming, is also being discussed. Some users are pointing out that GameFi has been primarily driven by speculation, but there is anticipation for a shift in the space once certain projects launch.\n\n3. Specific games and projects: Mentioned games and projects include MagicCraft, AlturaNFT, and SymbiogenesisPR by SquareEnix. These games are being highlighted for their potential in the Web3 gaming sector.\n\n4. Giveaways and promotions: There are mentions of giveaways related to Web3 gaming, with users encouraged to participate by showing why they believe Web3 gaming is not dead.\n\nOverall, the sentiment around Web3 gaming in the crypto industry appears to be positive, with a focus on innovation, revenue generation, and the potential for mass adoption.', - data: [ - 3, 1, 5, 3, 0, 0, 3, 5, 3, 2, 2, 7, 3, 3, 4, 0, 2, 3, 2, 34, 18, 2, 4, 4, 2, 2, 2, 8, 6, 1, - 7, 0, 5, 7, 3, 2, 4, 14, 5, 4, 3, 6, 8, 1, 7, 1, 2, 4, 1, 2, 4, 2, 4, 4, 4, - ], - }, - { - label: 'PEPE', - topics: 'pepe,sol,mc,memes,cap', - description: - "The key topics currently discussed in the crypto industry on Twitter include the rise of $PEPE, with speculation about its potential value reaching $250 billion. There is also discussion about smart money rotating out of $PEPE into $APU, as well as the formation of a triangle pattern in $PEPE's chart. Additionally, there is mention of $PEPE's volume on DEX platforms, its listing on exchanges like Coinbase and Gemini, and the launch of a new token called $PE. Whales are said to be accumulating $PEPE, with anticipation of reaching a $5 million market cap. Overall, the conversation revolves around the potential growth and investment opportunities related to $PEPE and other related tokens.", - data: [ - 0, 1, 2, 3, 1, 2, 5, 6, 5, 0, 3, 2, 6, 5, 2, 1, 0, 3, 3, 4, 4, 4, 3, 10, 5, 2, 1, 1, 0, 3, - 1, 3, 4, 0, 1, 3, 42, 8, 3, 5, 5, 2, 2, 5, 7, 1, 3, 5, 3, 1, 2, 2, 6, 2, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,sales,collection', - description: - "The messages from Twitter are discussing various topics related to NFTs in the crypto industry. Some key points mentioned include the popularity of 1/1 art as the best use case for ETH NFTs, the potential rewards for buyers of top NFT collections with long time horizons, the scarcity of certain NFTs like the super rare Gold $Soba NFT, and the innovation of projects like InterCellar NFTs reimagining wine ownership. Additionally, there is talk about organizing NFT events for children to create together and cement the future of cryptoart, as well as auctions like Christie's Beyond The Screen auction featuring a blend of Ordinals, NFTs, and physical pieces. Other topics include the debut of NFT-backed cask finishes by Tequila Don Julio, the listing of DadAndKidsNFT on exchgART, and a list of established NFT projects that may be considered for investment with the goal of turning a profit in 6-18 months. Overall, the messages reflect the vibrant and diverse ecosystem of NFTs within the crypto industry.", - data: [ - 1, 1, 2, 1, 1, 2, 2, 1, 3, 1, 7, 4, 1, 4, 3, 1, 1, 0, 3, 4, 3, 4, 4, 2, 0, 4, 2, 3, 3, 2, 2, - 1, 6, 1, 13, 3, 6, 2, 2, 2, 5, 3, 3, 4, 4, 2, 3, 1, 4, 0, 2, 0, 2, 4, 1, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,ethereum,eth,meme', - description: - "The key topics currently being discussed on Twitter regarding Solana include:\n- Solana's recent price pump and its potential for further growth\n- The launch of nearly half a million tokens on the Solana ecosystem\n- The integration of Wrapped Bitcoin on Solana\n- Entangle's integration with Solana for cross-chain messaging\n- The NFT frenzy on Solana, with SOL's price jumping to $160\n- AI predictions for Solana's trajectory by the end of June\n- The sale of a domain name related to Solana for 1.5 $SOL\n- Concerns about the responsible selling of SOL by Pump dot fun devs\n- Technical analysis of SOL's price movements and potential trading strategies\n- Solana's impact on the future of cryptocurrency ETFs\n- The breakout of a memecoin on Solana, with significant gains since the signal was given.", - data: [ - 0, 2, 3, 2, 0, 1, 4, 3, 2, 2, 1, 1, 2, 2, 2, 2, 6, 2, 1, 3, 2, 2, 1, 2, 1, 2, 1, 2, 2, 7, 2, - 4, 4, 4, 3, 6, 7, 3, 4, 4, 1, 2, 2, 1, 16, 0, 2, 0, 3, 3, 2, 1, 3, 2, 1, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,moon,ripple,lets', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin, meme coins, price predictions, market leaders like Worldcoin and Algotech, NFTs, blockchain technology, decentralized finance (DeFi), token presales, and community-driven projects like DOGEMOB. There is also a focus on trading strategies, chart analysis, and the overall market sentiment towards different cryptocurrencies. Additionally, there is excitement around upcoming events and potential profit opportunities in the crypto market.', - data: [ - 0, 1, 1, 2, 0, 1, 0, 3, 2, 4, 0, 1, 1, 0, 57, 2, 1, 1, 4, 2, 0, 0, 1, 1, 1, 1, 2, 1, 3, 2, - 0, 2, 2, 1, 2, 1, 3, 1, 2, 2, 1, 2, 2, 1, 3, 5, 2, 1, 3, 2, 0, 2, 1, 2, 3, - ], - }, - { - label: 'Bitcoin mining', - topics: 'mining,miners,miner,halving,revenue', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin mining and the impact of the halving on miners' production\n2. Acquisition offers in the Bitcoin mining industry\n3. Bitcoin hashrate fluctuations and the dominance of top mining pools\n4. Concerns about Bitmain's influence on Bitcoin mining\n5. Introduction of new miners for Litecoin\n6. Calls for Bitcoin mining regulations in Paraguay\n7. Challenges faced by Bitcoin miners due to shrinking margins and low hash prices\n8. Energy consumption and environmental impact of Bitcoin mining\n9. Success and profitability of mining operations, such as BIT Mining Ltd.\n10. Innovations in mining technology, such as the Bitaxe Ultra ASIC miner\n11. Russia's ambitions in Bitcoin mining, with plans for a new mining center in Tatarstan\n\nOverall, the discussions on Twitter reflect a mix of industry developments, challenges, regulatory concerns, and technological advancements in the crypto mining sector.", - data: [ - 1, 2, 0, 1, 24, 8, 1, 1, 0, 0, 1, 4, 1, 1, 1, 4, 1, 2, 1, 2, 0, 1, 3, 2, 6, 3, 0, 2, 3, 0, - 3, 0, 19, 1, 2, 4, 1, 2, 3, 0, 3, 3, 2, 2, 1, 1, 0, 2, 4, 3, 0, 0, 0, 2, 1, - ], - }, - { - label: 'SEC & Utah crypto case', - topics: 'sec,gensler,securities,court,coinbase', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry and the SEC include:\n1. SEC Commissioner Proposes Joint US-UK Digital Securities Sandbox\n2. SEC's Gensler on T+1 Settlement, AI, and Crypto Regulation\n3. SEC's mishandling of cases and lawsuits resulting in penalties\n4. SEC's interactions with FTX and other crypto entities\n5. SEC's decision to close their Salt Lake branch\n6. Interviews with individuals involved in SEC cases, such as DebtBox\n7. Speculation on potential changes at the SEC after elections\n8. Recent SCOTUS decisions and their implications for Bitcoin\n9. Shifts in SEC enforcement actions and classifications of cryptocurrencies\n10. Settlement in principle between Terraform Labs, Do Kwon, and the SEC in a fraud case.", - data: [ - 6, 4, 2, 3, 0, 3, 1, 0, 1, 3, 11, 4, 3, 1, 0, 1, 0, 3, 5, 1, 4, 2, 2, 4, 3, 0, 2, 2, 2, 0, - 0, 1, 0, 0, 2, 3, 2, 0, 4, 1, 2, 0, 5, 4, 3, 1, 7, 2, 0, 1, 0, 2, 0, 1, 2, - ], - }, - { - label: 'Gamestop', - topics: 'gme,roaring,kitty,gamestop,stock', - description: - "The key topics discussed in the messages from twitter are:\n1. Roaring Kitty making $250 million on GameStop\n2. The impact of meme stocks like GameStop on the overall market\n3. The belief that GameStop is part of an illuminati plan to destroy the financial system\n4. The influence of Roaring Kitty on stock prices and regulations\n5. Discussion about different cryptocurrencies like MEW and Giko\n6. Comparison between GameStop and MicroStrategy in terms of holding Bitcoin\n7. Keith Gill's disclosure of holding over $180 million in GME shares and call options\n8. The anticipation of Roaring Kitty updating his GME position daily on Reddit\n9. The rise of the Superstonk subreddit as a new platform for discussing stock investments.", - data: [ - 2, 2, 0, 1, 0, 1, 1, 1, 2, 1, 3, 0, 1, 0, 0, 0, 1, 1, 2, 4, 11, 3, 0, 1, 1, 4, 1, 2, 1, 0, - 4, 2, 2, 1, 1, 2, 2, 5, 1, 1, 2, 17, 0, 0, 6, 2, 5, 2, 0, 1, 3, 0, 0, 2, 2, - ], - }, - { - label: 'Hardware companies and AI', - topics: 'nvidia,nvda,apple,ai,chips', - description: - 'The crypto industry is currently discussing key topics such as the rumored deal between Apple and OpenAI, the introduction of Intel Lunar Lake focusing on AI and battery efficiency, the launch of AMD Ryzen AI 300 Series chip with 50 TOPS AI capability, Nvidia crossing $3 trillion and overtaking Apple as the second-most valuable company, Nvidia CEO Jensen Huang revealing a new AI chip slated for 2026, and the investigation of Nvidia, Microsoft, and OpenAI in America for alleged monopoly of the AI industry. Additionally, there is bullish sentiment towards Intel as a dark horse in the chip wars with encouraging progress and new AI architectures comparable to Nvidia. Crypto miners are also highlighted as the new stars of the AI boom with stockpiles of Nvidia chips and access to power for data centers. Apple is predicted to invest in learning what products work and block out a potential 2026 Nvidia Rubin order. U.S. regulators are set to investigate Microsoft, OpenAI, and Nvidia for potential antitrust violations in the AI industry to ensure fair competition.', - data: [ - 3, 4, 3, 2, 0, 0, 1, 0, 2, 0, 5, 1, 2, 3, 0, 3, 0, 3, 1, 1, 1, 0, 0, 4, 1, 6, 2, 3, 0, 1, 1, - 0, 0, 1, 4, 3, 1, 1, 3, 1, 3, 4, 2, 2, 1, 2, 5, 0, 0, 0, 0, 4, 0, 0, 2, - ], - }, - { - label: 'JASMY', - topics: 'jasmy,altseason,altcoins,pump,whales', - description: - 'The key topics currently being discussed in the crypto community on Twitter include:\n- $jasmy price movements and potential for growth\n- Whales entering the market and potential for price pumps\n- Technical analysis indicators like Gann square and rising wedge patterns\n- Speculation on future price targets and support levels\n- Excitement and optimism about potential gains and becoming millionaires\n- Calls to buy the dip and hold onto investments\n- Discussion about other altcoins like $vara and $KRAZY\n- Market manipulation and programmed price movements\n- Community sentiment and participation in the market\n\nOverall, the sentiment in the crypto community on Twitter seems to be positive and optimistic about the potential for growth and profits in the market.', - data: [ - 0, 1, 1, 2, 0, 0, 4, 5, 2, 1, 1, 0, 1, 0, 1, 7, 0, 0, 2, 1, 1, 1, 1, 3, 1, 0, 21, 1, 0, 1, - 0, 0, 1, 1, 0, 0, 1, 2, 3, 2, 0, 1, 0, 1, 2, 1, 1, 2, 0, 2, 0, 3, 2, 3, 2, - ], - }, - { - label: 'Coinbase Smart Wallets', - topics: 'smart,coinbase,wallet,wallets,launches', - description: - "The key topics currently discussed in the messages from Twitter are:\n1. Coinbase officially launches its Smart Wallet to simplify crypto onboarding process.\n2. Wasabi Wallet dies within hours, sparking discussions about privacy and government surveillance.\n3. Users are sharing their positive experiences with onboarding to crypto through Coinbase Wallet.\n4. The importance of plausible deniability and security measures in protecting crypto assets.\n5. Discussion about the impact of Coinbase and Base in enabling seamless USDC transfers overseas with minimal fees.\n6. Mention of Beldex Official Wallet now available on uptodown for download.\n7. Donation of dust from Wasabi Wallet to OpenTimestamps calendars, with a reminder about the new version's features for privacy.", - data: [ - 1, 1, 0, 2, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 0, 1, 0, 2, 2, 1, 1, 1, 1, 1, 1, 4, 3, 11, 1, 1, - 3, 0, 0, 1, 1, 0, 3, 2, 1, 1, 0, 1, 0, 0, 13, 2, 1, 0, 1, 0, 2, 3, 5, 2, 1, - ], - }, - { - label: 'Re-Staking', - topics: 'staking,liquid,yield,earn,leverage', - description: - "Focus: Crypto 're-staking' platforms boom as traders chase bigger returns\n\nKey topics discussed in the messages include:\n1. DeFi staking platforms and programs offering high APR returns\n2. Staking as a way to earn passive income during bull markets\n3. Liquid staking products like $qETH and $STONE gaining popularity\n4. Introduction of daily, weekly, and monthly stablecoin staking pools by #SOIL\n5. Staking pools for $SHA tokens with varying levels of fill rates\n6. Benefits of staking Ethereum for earning crypto in 2024\n7. Job opportunities in the crypto industry, including growth & marketing lead, content writer, and community manager positions\n8. Leveraging staking and yield farming for maximizing returns\n9. Encouraging community participation in staking and yield farming activities\n10. Explaining the concepts of staking, liquidity staking, and re-staking in the crypto industry\n\nOverall, the messages highlight the growing interest in staking and DeFi platforms as traders seek higher returns and passive income opportunities in the crypto market.", - data: [ - 0, 2, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 3, 4, 0, 1, 1, 0, 1, 1, 0, 0, 3, 3, 3, 1, 4, 1, 3, - 1, 0, 2, 4, 3, 0, 1, 1, 1, 0, 2, 1, 0, 2, 14, 2, 2, 0, 2, 3, 1, 1, 1, 3, - ], - }, - { - label: 'DMMBitcoin hacked', - topics: 'exchange,japan,million,300,lost', - description: - "The key topic discussed in the messages from Twitter is the theft of over $300 million worth of Bitcoin from the Japanese crypto exchange DMM Bitcoin. This incident has sparked discussions about the security of centralized exchanges and the importance of holding one's own crypto keys. Additionally, there are mentions of other crypto-related scams and fraudulent activities, such as the OneCoin scam and a police officer misappropriating Bitcoin. The messages also touch upon the impact of these events on the financial markets, with Japan experiencing turbulence in its bond yields and stock market. Overall, the theme revolves around the security and regulation of the crypto industry and its implications on global financial markets.", - data: [ - 2, 1, 0, 1, 1, 0, 7, 0, 1, 0, 1, 1, 3, 0, 6, 2, 2, 1, 0, 0, 0, 0, 7, 1, 5, 0, 16, 0, 1, 0, - 1, 3, 1, 0, 1, 1, 0, 0, 2, 1, 1, 0, 3, 0, 0, 3, 1, 0, 1, 1, 1, 1, 1, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-23.json b/priv/repo/major_topics_seed/data-23.json deleted file mode 100644 index b61980cf6e..0000000000 --- a/priv/repo/major_topics_seed/data-23.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["06.06.24","07.06.24","07.06.24","07.06.24","07.06.24","07.06.24","07.06.24","07.06.24","08.06.24","08.06.24","08.06.24","08.06.24","08.06.24","08.06.24","08.06.24","08.06.24","09.06.24","09.06.24","09.06.24","09.06.24","09.06.24","09.06.24","09.06.24","09.06.24","10.06.24","10.06.24","10.06.24","10.06.24","10.06.24","10.06.24","10.06.24","10.06.24","11.06.24","11.06.24","11.06.24","11.06.24","11.06.24","11.06.24","11.06.24","11.06.24","12.06.24","12.06.24","12.06.24","12.06.24","12.06.24","12.06.24","12.06.24","12.06.24","13.06.24","13.06.24","13.06.24","13.06.24","13.06.24","13.06.24","13.06.24"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,understand,people","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin being referred to as the world's unit of account and the need for a Bitcoin company called Yours Is\n- Urging people to study Bitcoin and invest in it, with a warning that not being heavily invested in Bitcoin could be a mistake\n- The idea of Bitcoin being the only hope in the current economic climate, with criticism of capital gains taxes on Bitcoin\n- The deep complexity of Bitcoin and the need for clear explanations for all audiences\n- Criticism of the Federal Reserve and the US government's monetary policies, with a call to opt out and invest in Bitcoin\n- Recognition of the value of hard work and transparency in the crypto industry, with praise for specific individuals and organizations for their efforts.","data":[16,6,9,12,76,68,12,9,11,10,14,12,7,8,7,10,12,11,20,18,16,23,18,11,12,11,7,18,16,7,12,7,14,22,4,12,19,7,10,17,18,13,21,19,22,20,11,14,15,7,28,5,20,18,10]},{"label":"BTC Price","topics":"btc,price,range,bitcoin,support","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Bitcoin price predictions: There are discussions about the current price of Bitcoin, with some users predicting a bottom between $65,000-$66,000 and a potential reversal to reach $80,000 soon.\n\n2. Market sentiment: There are mentions of forces that do not want Bitcoin to go above $69,000 yet, indicating a potential resistance level in the market.\n\n3. Altcoin performance: Altcoins are also being discussed, with mentions of a potential bounce at the 50-day moving average and comparisons to the 2020 bull market path.\n\n4. Long-term outlook: Some users are discussing the potential for Bitcoin to reach $125,000 or even $135,000, with insights from industry experts like BitGo CEO Mike Belshe.\n\n5. Technical analysis: Users are analyzing technical indicators like the 4-hour chart, monthly open, previous lows, and market demand to predict potential price movements and trends in the market.\n\nOverall, the sentiment in the crypto community seems to be cautiously optimistic, with users closely monitoring price movements and market trends to make informed decisions about their investments.","data":[11,15,14,14,53,75,10,37,9,9,12,12,20,7,8,10,3,21,10,12,5,9,11,20,11,14,7,11,10,18,18,11,7,12,6,14,2,23,10,12,15,4,10,22,6,14,16,7,19,8,7,14,9,14,6]},{"label":"AI","topics":"ai,intelligence,future,data,content","description":"The key topics discussed in the messages from Twitter related to the crypto industry are:\n\n1. Artificial Intelligence (AI): There is a discussion about the potential impact of AI on various aspects of society, including bias, performance gains, and authenticity in media. There is also mention of AI hardware and its future.\n\n2. Web3: The concept of Web3 is highlighted as a solution to mitigate concerns about AI posing a threat to media authenticity. There is also a strategic partnership mentioned between two companies to build infrastructure for verifying digital content onchain.\n\n3. Environmentalism: Anti-AI sentiment is compared to a new form of environmentalism, focusing on aesthetics rather than reality or science.\n\n4. Technology companies: There is a mention of Microsoft's new tool, Recall, which captures screen activity every 5 seconds on Windows PCs. Additionally, there is a prediction about AMD and Intel expanding DDR-5 buses to run local AI models on laptops and PCs.\n\n5. Elon Musk's xAI: There is news about Elon Musk's artificial intelligence firm, xAI, working on image generation and web search results for chatbot Grok. This development is part of the LayerAI ecosystem, with a dashboard coming soon.\n\nOverall, the messages reflect a diverse range of discussions around AI, Web3, environmentalism, technology companies, and specific developments in the crypto industry.","data":[23,52,8,8,4,0,7,6,5,7,4,10,8,11,7,14,2,7,6,6,7,10,2,5,12,13,8,10,8,4,4,9,3,3,8,8,11,3,6,7,7,9,3,7,6,4,9,14,7,3,8,9,16,4,7]},{"label":"CPI","topics":"inflation,cpi,rate,fed,rates","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n- Federal Reserve Chairman Powell's comments on inflation numbers and interest rates\n- France-Germany 10-year yield spread reaching highest since 2020\n- Bitcoin dominance reaching a sustainable path to 60%\n- Inflation year over year hitting 3.3%\n- US Producer Price Index for April 2024\n- ECB's stance on inflation and interest rates\n- US jobs report and its impact on the crypto market\n- Americans' dislike for inflation and its implications for the Fed\n- Consumer Price Index (CPI) report for May 2024\n\nThese topics indicate a focus on inflation, interest rates, market movements, and economic indicators within the crypto industry.","data":[6,3,5,7,1,0,18,3,7,2,3,10,8,6,6,9,4,9,16,1,4,6,3,19,5,42,8,5,3,5,11,17,2,6,11,7,6,17,9,13,14,3,4,5,5,3,7,4,6,14,12,3,1,6,10]},{"label":"GameFI","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media include:\n- Play-to-earn gaming and the potential for integrating crypto into popular games like GTA 6 or indie games like Among Us\n- New gaming projects like KARRAT on Coinbase and Pixel Perfect Character Diffusion\n- Updates and features in mobile apps like private chat and Lucky Wheel in the $NAKA app\n- Virtual reality gaming experiences like Tartarus VR and RaceHubGame\n- Mini games like ToON_Nation offering crypto rewards\n- New game providers like PeterandSons offering medieval and ancient-themed games on platforms like Bitcasino\n\nOverall, the sentiment seems positive towards the future of gaming and the integration of crypto in the industry.","data":[3,8,6,5,0,1,3,5,5,9,4,6,7,4,6,6,0,7,2,51,14,5,6,1,5,4,5,4,2,2,2,4,4,9,14,9,27,3,6,17,6,6,11,4,5,8,5,5,7,2,5,4,7,6,5]},{"label":"Art","topics":"art,artists,digital,piece,love","description":"The key topics discussed in the messages from twitter about the crypto industry are:\n1. Digital Art: There is a focus on digital art and its evolution, with discussions about AI in art, digital art collections, and NFTs.\n2. Art Basel: The messages mention Art Basel, an art fair where artists and art enthusiasts gather to showcase and appreciate art.\n3. Artists and Artwork: There are mentions of various artists, their work, and events where artists come together to discuss and showcase their art.\n4. NFTs: Non-fungible tokens (NFTs) are highlighted as a part of the digital art world, with mentions of minting opportunities and evolving digital canvases.\n5. Community and Collaboration: The messages reflect a sense of community among artists, patrons of fine art, and individuals interested in the intersection of art and technology.","data":[2,5,41,3,3,0,1,5,5,3,9,4,5,1,8,7,1,3,5,4,8,7,7,6,7,6,3,4,5,8,6,7,4,9,5,15,8,1,9,5,5,1,9,4,9,3,5,3,2,1,2,1,7,4,12]},{"label":"Memecoins","topics":"meme,memecoin,coins,memes,memecoins","description":"The key topics currently discussed in the crypto industry on social media include meme coins, meme coin radar, meme coin summer, meme/culture perspective, Minion memecoin, McDonald's drive-thru supporting Memeland, anon community having fun, Sovereign Alliance, Memecoins on TON, $KGB, Miladymemecoin, altcoin picks, top 10 meme coins, $WOLF, $ANDY, $BRETT, #PEPECOIN, $MYRO, $TOKEN, $FLOKI, PlatyPerryCoin, PickleRickPrick, WifHamsterHat.","data":[6,3,1,2,2,1,4,0,4,4,8,1,3,4,4,4,0,8,10,2,7,7,1,6,7,8,7,4,1,1,3,20,58,5,8,7,9,6,5,3,2,3,2,2,1,5,3,7,5,11,3,3,3,5,2]},{"label":"ETF Flows","topics":"etfs,net,inflows,etf,spot","description":"The key topic discussed in the messages from Twitter is the inflows and outflows of funds in US spot Bitcoin ETFs. The messages highlight the recent trend of consecutive days of inflows, with some days seeing significant amounts of money flowing into the ETFs. However, there are also mentions of days where outflows were recorded, breaking the streak of inflows. The messages also touch upon the impact of institutional holdings, the potential for an ETH supply squeeze triggered by Ether ETFs, and the comparison between leveraged trading and hodling. Overall, the focus is on the movement of funds in and out of Bitcoin ETFs and the implications for the cryptocurrency market.","data":[4,2,1,0,17,8,15,2,1,0,1,2,7,2,0,4,16,2,4,1,1,0,3,4,4,7,1,2,1,0,6,4,1,7,3,2,1,2,2,3,4,0,5,1,22,8,5,1,1,11,0,2,0,4,12]},{"label":"Apple's AI","topics":"apple,intelligence,ai,privacy,integration","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Apple's integration of OpenAI into their software\n- Pressure on Apple to showcase their AI capabilities\n- OpenAI hiring a new CFO and product chief\n- Applebee's Grill + Bar joining the AI rush with Applebee's Intelligence\n- Concerns about privacy and security with OpenAI integration\n- Excitement about the annual WWDC event hosted by Apple","data":[3,10,60,4,2,0,2,1,2,1,2,5,1,1,1,2,0,2,1,2,2,3,2,3,4,6,3,3,5,4,2,1,1,2,2,8,3,2,4,4,4,4,2,1,1,2,3,4,7,1,2,4,5,5,7]},{"label":"SOL","topics":"solana,sol,foundation,attacks,chain","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana being praised as the top chain in the current cycle, with 460,000 new tokens launched on the platform in May.\n2. Solana Foundation removing certain operators from the delegation program due to malicious sandwich attacks.\n3. Criticism towards Solana Foundation for KYC-ing and propping up many validators.\n4. Discussion on the impact of CF delegation on Solana.\n5. Solana gaining attention for hosting a full day focused on creators and collectibles.\n6. The success of Solana Meme Coin SEAL, passing $4M in presale.\n7. Solana being considered as a potential candidate for a crypto ETF in the US.\n8. Analysts weighing in on Solana's future and whether it will soar or stumble.\n9. The rise of Solana-based $GME memecoin following Keith Gill's announcement of his return to YouTube.\n10. Retail traders showing interest in trading on Solana with platforms like Phantom, Backpack, and Birdeye.\n11. Upcoming Alphalaunch on Solana on June 17th by BiggestMeme2024.\n12. Launch of DINO on Solana with an experienced team.\n13. Comparison between MultiversX and Solana in terms of performance and adoption.\n14. Discussion on whether SovereignChains can increase adoption of L2s built on top of main L1s.","data":[0,2,1,8,0,0,3,4,0,6,6,2,2,5,4,4,6,5,3,3,5,4,4,2,2,3,1,5,3,6,2,2,3,6,4,3,2,7,2,3,3,4,3,4,10,5,2,4,5,2,5,8,3,3,0]},{"label":"DOGE","topics":"doge,dogecoin,dog,shib,moon","description":"The key topics currently discussed in the crypto industry on social media include:\n- #Dogecoin\n- $DOG\n- CEX listings\n- Turning human waste into Dogecoin\n- Bitcoin Memecoins\n- $PIZZA\n- Runes\n- Ordinals\n- Bitcoin\n- $DOGE\n- Supply & Demand\n- $TAMA\n- #Tamadoge\n- Passive rewards\n- #P2E\n- #CryptoGaming\n- #PlayToEarn\n- #DeFi\n- #BabyDoge\n- #ETH\n- Dogga Coin\n- Chinese cryptocurrency\n- Renounced contract\n- HODL\n\nThese topics are generating a lot of discussion and interest within the crypto community on social media platforms like Twitter.","data":[1,1,1,3,1,0,1,5,2,3,0,0,3,1,60,2,1,4,3,0,2,1,1,6,1,1,0,3,5,2,1,4,2,4,2,1,1,2,1,6,3,1,1,6,1,1,1,0,2,2,1,2,2,2,2]},{"label":"PEPE","topics":"pepe,second,chance,frens,ca","description":"The key topics currently discussed in the crypto industry on Twitter include the strength of Pepe, potential partnerships with other cryptocurrencies like Solana, price predictions for Bitcoin, Ethereum, and altcoins, trading opportunities on different platforms, technical analysis of Pepe's trading patterns, upcoming listings and trading pairs for meme coins like Pepe Wif Gun, and promotional events like flash sales and giveaways for Pepe tokens. There is also mention of meme coins like Wojak and Bobo, as well as discussions about the impact of social media on cryptocurrency markets.","data":[3,5,1,1,0,1,2,3,1,0,4,4,0,0,1,3,1,1,3,8,0,5,0,0,2,1,1,2,4,1,1,3,2,5,3,1,27,1,4,4,1,0,6,2,1,2,1,1,1,1,2,0,2,2,6]},{"label":"Market volatility","topics":"market,dont,sell,panic,youre","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Market volatility and the need for caution in trading\n- Speculation on the future of the market and whether the bull market is over\n- Strategies for successful trading, such as holding onto investments during bear markets and dollar-cost averaging\n- The difference in attitudes between stock traders and crypto traders towards market dips\n- The importance of staying informed and continuously learning about cryptocurrencies, especially during market downturns\n- The impact of tech developments in gaming, AI, and blockchain on the crypto market\n- The prevalence of hype and speculation in the industry, and the need for a more strategic approach to investing\n- The potential risks of catching a falling knife in a downtrend market\n- The behavior of traders celebrating selling at the local top and the potential consequences of such actions\n\nOverall, the sentiment in the messages is a mix of caution, optimism, and skepticism, reflecting the diverse opinions and experiences within the crypto community.","data":[2,2,2,0,0,0,0,1,5,2,0,1,6,3,2,4,0,1,2,2,3,1,0,3,0,1,2,0,2,6,1,17,2,1,2,5,5,3,2,4,0,1,5,2,0,5,1,1,6,5,1,2,3,3,3]},{"label":"JASMY","topics":"high,jasmy,altseason,altcoins,pump","description":"The key topics discussed in the messages from twitter are related to the cryptocurrency $Jasmy and $high. \n\nFor $Jasmy, the discussions revolve around its market structure, potential pump party, resistance levels, and market maker special. There is also mention of $btc breaking a new all-time high and $high following with a potential 2x or 100% pump. \n\nAs for $high, the discussions focus on its recent dump, potential for a 2x pump back to $8s, shorts paying up soon, and the possibility of a 3x pump from $2.80. There is also mention of the market manipulation surrounding $high and how it could potentially reach $4.20 - $4.40 next.\n\nOverall, the sentiment around both $Jasmy and $high seems to be positive, with expectations of potential pumps and market movements.","data":[0,0,0,2,0,0,3,0,8,1,1,1,2,0,0,2,1,0,1,1,1,1,2,41,2,1,13,2,0,3,2,4,1,1,0,3,1,2,2,0,1,1,0,3,5,2,1,2,7,2,1,1,2,0,0]},{"label":"BTC mining","topics":"mining,miners,miner,heat,bitcoin","description":"The key topics currently discussed in the messages from Twitter about Bitcoin mining include:\n1. Bitcoin mining difficulty cooling off after a parabolic rise\n2. Environmental impact of Bitcoin mining and efforts to address it\n3. Bitcoin mining farms operating in extreme conditions\n4. Hydro mining containers for Bitcoin mining\n5. Bitcoin mining stocks and potential gains in the market\n6. Participation in Bitcoin mining regardless of location or economic status\n7. Bitcoin mining protests and discussions about freedom\n8. Expert panels and discussions on Bitcoin mining\n9. Bitcoin mining companies Riot Platforms and Bitfarms\n10. Proof of work and mining capacity in maintaining information systems.","data":[1,2,1,3,1,27,0,0,3,0,4,13,1,3,1,2,1,2,1,2,0,0,3,2,2,2,3,1,1,0,1,2,10,0,7,1,1,3,0,4,2,3,2,2,0,0,0,0,2,0,0,2,2,2,4]},{"label":"Elon Musk & Tesla","topics":"tesla,elon,elonmusk,model,stock","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Elon Musk's statement that Tesla is more of a software company than a hardware company\n- Tesla's motion passing\n- Tesla's Full Self-Driving (FSD) technology\n- Tesla Insurance\n- Robotaxi\n- Optimus\n- Tesla Solar\n- Tesla reaching $2,000\n- Elon Musk's compensation package\n- Recommendations for daily driving sports/super cars\n- Elon Musk congratulating Narendra Modi on his election victory\n- Tesla shareholders approving a $56 billion pay package for Elon Musk\n- Challenges faced by Tesla as an electric vehicle-maker\n- Analysts adjusting price targets amidst the Apple-Tesla conflict\n- Price predictions for Microsoft's stock\n- Elon Musk's thoughts on AI and spam\n- Tesla's annual shareholder meeting in 2024 and the determination to bring Optimus to new levels\n- Complaints about Tesla's service and pricing for wheel balancing.","data":[3,1,2,0,0,0,1,0,2,1,1,0,0,1,0,6,1,3,0,2,3,2,0,1,0,8,2,4,1,0,3,4,3,2,2,2,3,3,2,0,2,1,2,5,5,1,2,10,1,1,6,2,1,1,1]},{"label":"BTCPrague","topics":"youtube,store,podcast,videos,video","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin Prague Conference: There are multiple mentions of the BTCPrague conference, with speakers, workshops, and booths being highlighted. Attendees are encouraged to connect and engage with various activities at the conference.\n\n2. Bitcoin Podcasts: Several messages mention Bitcoin podcasts, such as the Bitcoin Beach Podcast and the upcoming 21 Voices mini doc series. These podcasts feature discussions with industry experts and provide insights into the world of Bitcoin.\n\n3. Bitcoin Wallets and Self-Custody: There are references to Bitcoin wallets, such as the Bull Bitcoin wallet, and discussions on self-custody of Bitcoin. Keynotes and workshops at the BTCPrague conference focus on the best ways to self-custody Bitcoin and implement proper governance.\n\n4. Bitcoin DeFi and Code Changes: Talks about Bitcoin DeFi (decentralized finance) and potential code changes in the Bitcoin network are mentioned. There is a cautionary note about guests on Bitcoin podcasts advocating for code changes possibly being influenced by external parties.\n\n5. YouTube and Truth Seeking: A message reflects on the role of YouTube in sharing information and seeking the truth, with a dedication to using technical analysis (TA) to uncover market manipulation in the crypto industry.\n\nOverall, the crypto community on Twitter is actively engaged in discussions about Bitcoin events, podcasts, self-custody, DeFi, and the pursuit of truth in the industry.","data":[1,2,0,2,1,1,2,1,1,1,4,2,3,6,4,0,2,2,0,1,0,2,4,2,0,1,2,2,1,4,0,0,2,2,1,1,1,1,0,2,2,1,2,0,2,0,3,2,3,0,1,5,5,6,5]},{"label":"Hacks","topics":"okx,security,million,protocol,accounts","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Security breaches and hacks: Discussions about recent hacks on Loopring wallets and OKX accounts, as well as phishing attacks on platforms like CoinGecko and GetResponse.\n2. Scam prevention: Warnings about phishing emails, fake airdrops, and scams on platforms like Telegram and Discord.\n3. Security measures: Updates on security measures taken by platforms like OKX, such as implementing double verification via email and authenticator.\n4. Community response: Reports of community members taking action against scammers, such as wasting their time or warning others about potential scams.\n5. Market impact: Analysis of how security breaches and scams affect market trust and cryptocurrency prices, such as the drop in Loopring's market cap after the hack.","data":[10,0,2,4,0,0,2,0,1,1,1,5,0,2,0,0,3,2,0,1,0,1,3,0,3,2,1,2,7,0,3,0,0,1,0,10,0,1,0,1,7,3,6,1,0,2,2,2,0,0,1,1,2,0,1]},{"label":"XRP","topics":"xrp,ripple,stablecoin,sec,cryptocurrency","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Ripple's legal battle with the SEC and the potential outcomes of the lawsuit.\n2. The unveiling of Ripple's upcoming stablecoin RLUSD by the CEO.\n3. XRP price analysis and predictions for its potential surge.\n4. The integration of Ripple's Interledger Protocol into ApplePay for cross-ledger payments.\n5. Discussions about Reptilian Masters of Coin and their form of currency.\n6. Updates on the RKEY token listing on LBank for real estate tokenization.\n7. Speculation on the future of cryptocurrency market cap and prices.","data":[3,1,0,3,0,0,2,1,3,3,5,2,2,0,3,1,1,2,2,0,1,0,1,3,2,4,1,0,1,1,1,3,0,0,3,0,0,7,2,1,3,14,0,1,1,0,0,0,2,1,0,4,2,1,0]},{"label":"ZKsync airdrop","topics":"zksync,airdrop,zk,eligible,wallets","description":"The key topic discussed in the messages from Twitter is the ZKSync airdrop. Users are expressing disappointment with the distribution and execution of the airdrop, with some feeling that it was not well planned from a sybil perspective. There are also mentions of specific wallet segments being provided to Matter Labs for data, as well as the breakdown of the airdrop with 89% going to users and 11% to contributors. Additionally, there are announcements of other airdrops such as the SBX Airdrop and the ZEPX giveaway on LATOKEN. Overall, the crypto community is actively engaged in discussions about various airdrops and token distributions.","data":[1,9,2,2,0,0,0,1,2,4,4,1,0,1,1,3,2,3,0,1,3,1,0,2,0,1,3,1,1,0,1,1,0,3,1,4,0,2,1,3,4,0,0,0,4,2,0,1,0,3,0,0,5,0,7]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-23.ts b/priv/repo/major_topics_seed/data-23.ts deleted file mode 100644 index 032979b856..0000000000 --- a/priv/repo/major_topics_seed/data-23.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '06.06.24', - '07.06.24', - '07.06.24', - '07.06.24', - '07.06.24', - '07.06.24', - '07.06.24', - '07.06.24', - '08.06.24', - '08.06.24', - '08.06.24', - '08.06.24', - '08.06.24', - '08.06.24', - '08.06.24', - '08.06.24', - '09.06.24', - '09.06.24', - '09.06.24', - '09.06.24', - '09.06.24', - '09.06.24', - '09.06.24', - '09.06.24', - '10.06.24', - '10.06.24', - '10.06.24', - '10.06.24', - '10.06.24', - '10.06.24', - '10.06.24', - '10.06.24', - '11.06.24', - '11.06.24', - '11.06.24', - '11.06.24', - '11.06.24', - '11.06.24', - '11.06.24', - '11.06.24', - '12.06.24', - '12.06.24', - '12.06.24', - '12.06.24', - '12.06.24', - '12.06.24', - '12.06.24', - '12.06.24', - '13.06.24', - '13.06.24', - '13.06.24', - '13.06.24', - '13.06.24', - '13.06.24', - '13.06.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,understand,people', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin being referred to as the world's unit of account and the need for a Bitcoin company called Yours Is\n- Urging people to study Bitcoin and invest in it, with a warning that not being heavily invested in Bitcoin could be a mistake\n- The idea of Bitcoin being the only hope in the current economic climate, with criticism of capital gains taxes on Bitcoin\n- The deep complexity of Bitcoin and the need for clear explanations for all audiences\n- Criticism of the Federal Reserve and the US government's monetary policies, with a call to opt out and invest in Bitcoin\n- Recognition of the value of hard work and transparency in the crypto industry, with praise for specific individuals and organizations for their efforts.", - data: [ - 16, 6, 9, 12, 76, 68, 12, 9, 11, 10, 14, 12, 7, 8, 7, 10, 12, 11, 20, 18, 16, 23, 18, 11, - 12, 11, 7, 18, 16, 7, 12, 7, 14, 22, 4, 12, 19, 7, 10, 17, 18, 13, 21, 19, 22, 20, 11, 14, - 15, 7, 28, 5, 20, 18, 10, - ], - }, - { - label: 'BTC Price', - topics: 'btc,price,range,bitcoin,support', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Bitcoin price predictions: There are discussions about the current price of Bitcoin, with some users predicting a bottom between $65,000-$66,000 and a potential reversal to reach $80,000 soon.\n\n2. Market sentiment: There are mentions of forces that do not want Bitcoin to go above $69,000 yet, indicating a potential resistance level in the market.\n\n3. Altcoin performance: Altcoins are also being discussed, with mentions of a potential bounce at the 50-day moving average and comparisons to the 2020 bull market path.\n\n4. Long-term outlook: Some users are discussing the potential for Bitcoin to reach $125,000 or even $135,000, with insights from industry experts like BitGo CEO Mike Belshe.\n\n5. Technical analysis: Users are analyzing technical indicators like the 4-hour chart, monthly open, previous lows, and market demand to predict potential price movements and trends in the market.\n\nOverall, the sentiment in the crypto community seems to be cautiously optimistic, with users closely monitoring price movements and market trends to make informed decisions about their investments.', - data: [ - 11, 15, 14, 14, 53, 75, 10, 37, 9, 9, 12, 12, 20, 7, 8, 10, 3, 21, 10, 12, 5, 9, 11, 20, 11, - 14, 7, 11, 10, 18, 18, 11, 7, 12, 6, 14, 2, 23, 10, 12, 15, 4, 10, 22, 6, 14, 16, 7, 19, 8, - 7, 14, 9, 14, 6, - ], - }, - { - label: 'AI', - topics: 'ai,intelligence,future,data,content', - description: - "The key topics discussed in the messages from Twitter related to the crypto industry are:\n\n1. Artificial Intelligence (AI): There is a discussion about the potential impact of AI on various aspects of society, including bias, performance gains, and authenticity in media. There is also mention of AI hardware and its future.\n\n2. Web3: The concept of Web3 is highlighted as a solution to mitigate concerns about AI posing a threat to media authenticity. There is also a strategic partnership mentioned between two companies to build infrastructure for verifying digital content onchain.\n\n3. Environmentalism: Anti-AI sentiment is compared to a new form of environmentalism, focusing on aesthetics rather than reality or science.\n\n4. Technology companies: There is a mention of Microsoft's new tool, Recall, which captures screen activity every 5 seconds on Windows PCs. Additionally, there is a prediction about AMD and Intel expanding DDR-5 buses to run local AI models on laptops and PCs.\n\n5. Elon Musk's xAI: There is news about Elon Musk's artificial intelligence firm, xAI, working on image generation and web search results for chatbot Grok. This development is part of the LayerAI ecosystem, with a dashboard coming soon.\n\nOverall, the messages reflect a diverse range of discussions around AI, Web3, environmentalism, technology companies, and specific developments in the crypto industry.", - data: [ - 23, 52, 8, 8, 4, 0, 7, 6, 5, 7, 4, 10, 8, 11, 7, 14, 2, 7, 6, 6, 7, 10, 2, 5, 12, 13, 8, 10, - 8, 4, 4, 9, 3, 3, 8, 8, 11, 3, 6, 7, 7, 9, 3, 7, 6, 4, 9, 14, 7, 3, 8, 9, 16, 4, 7, - ], - }, - { - label: 'CPI', - topics: 'inflation,cpi,rate,fed,rates', - description: - "Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n- Federal Reserve Chairman Powell's comments on inflation numbers and interest rates\n- France-Germany 10-year yield spread reaching highest since 2020\n- Bitcoin dominance reaching a sustainable path to 60%\n- Inflation year over year hitting 3.3%\n- US Producer Price Index for April 2024\n- ECB's stance on inflation and interest rates\n- US jobs report and its impact on the crypto market\n- Americans' dislike for inflation and its implications for the Fed\n- Consumer Price Index (CPI) report for May 2024\n\nThese topics indicate a focus on inflation, interest rates, market movements, and economic indicators within the crypto industry.", - data: [ - 6, 3, 5, 7, 1, 0, 18, 3, 7, 2, 3, 10, 8, 6, 6, 9, 4, 9, 16, 1, 4, 6, 3, 19, 5, 42, 8, 5, 3, - 5, 11, 17, 2, 6, 11, 7, 6, 17, 9, 13, 14, 3, 4, 5, 5, 3, 7, 4, 6, 14, 12, 3, 1, 6, 10, - ], - }, - { - label: 'GameFI', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Play-to-earn gaming and the potential for integrating crypto into popular games like GTA 6 or indie games like Among Us\n- New gaming projects like KARRAT on Coinbase and Pixel Perfect Character Diffusion\n- Updates and features in mobile apps like private chat and Lucky Wheel in the $NAKA app\n- Virtual reality gaming experiences like Tartarus VR and RaceHubGame\n- Mini games like ToON_Nation offering crypto rewards\n- New game providers like PeterandSons offering medieval and ancient-themed games on platforms like Bitcasino\n\nOverall, the sentiment seems positive towards the future of gaming and the integration of crypto in the industry.', - data: [ - 3, 8, 6, 5, 0, 1, 3, 5, 5, 9, 4, 6, 7, 4, 6, 6, 0, 7, 2, 51, 14, 5, 6, 1, 5, 4, 5, 4, 2, 2, - 2, 4, 4, 9, 14, 9, 27, 3, 6, 17, 6, 6, 11, 4, 5, 8, 5, 5, 7, 2, 5, 4, 7, 6, 5, - ], - }, - { - label: 'Art', - topics: 'art,artists,digital,piece,love', - description: - 'The key topics discussed in the messages from twitter about the crypto industry are:\n1. Digital Art: There is a focus on digital art and its evolution, with discussions about AI in art, digital art collections, and NFTs.\n2. Art Basel: The messages mention Art Basel, an art fair where artists and art enthusiasts gather to showcase and appreciate art.\n3. Artists and Artwork: There are mentions of various artists, their work, and events where artists come together to discuss and showcase their art.\n4. NFTs: Non-fungible tokens (NFTs) are highlighted as a part of the digital art world, with mentions of minting opportunities and evolving digital canvases.\n5. Community and Collaboration: The messages reflect a sense of community among artists, patrons of fine art, and individuals interested in the intersection of art and technology.', - data: [ - 2, 5, 41, 3, 3, 0, 1, 5, 5, 3, 9, 4, 5, 1, 8, 7, 1, 3, 5, 4, 8, 7, 7, 6, 7, 6, 3, 4, 5, 8, - 6, 7, 4, 9, 5, 15, 8, 1, 9, 5, 5, 1, 9, 4, 9, 3, 5, 3, 2, 1, 2, 1, 7, 4, 12, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coins,memes,memecoins', - description: - "The key topics currently discussed in the crypto industry on social media include meme coins, meme coin radar, meme coin summer, meme/culture perspective, Minion memecoin, McDonald's drive-thru supporting Memeland, anon community having fun, Sovereign Alliance, Memecoins on TON, $KGB, Miladymemecoin, altcoin picks, top 10 meme coins, $WOLF, $ANDY, $BRETT, #PEPECOIN, $MYRO, $TOKEN, $FLOKI, PlatyPerryCoin, PickleRickPrick, WifHamsterHat.", - data: [ - 6, 3, 1, 2, 2, 1, 4, 0, 4, 4, 8, 1, 3, 4, 4, 4, 0, 8, 10, 2, 7, 7, 1, 6, 7, 8, 7, 4, 1, 1, - 3, 20, 58, 5, 8, 7, 9, 6, 5, 3, 2, 3, 2, 2, 1, 5, 3, 7, 5, 11, 3, 3, 3, 5, 2, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,net,inflows,etf,spot', - description: - 'The key topic discussed in the messages from Twitter is the inflows and outflows of funds in US spot Bitcoin ETFs. The messages highlight the recent trend of consecutive days of inflows, with some days seeing significant amounts of money flowing into the ETFs. However, there are also mentions of days where outflows were recorded, breaking the streak of inflows. The messages also touch upon the impact of institutional holdings, the potential for an ETH supply squeeze triggered by Ether ETFs, and the comparison between leveraged trading and hodling. Overall, the focus is on the movement of funds in and out of Bitcoin ETFs and the implications for the cryptocurrency market.', - data: [ - 4, 2, 1, 0, 17, 8, 15, 2, 1, 0, 1, 2, 7, 2, 0, 4, 16, 2, 4, 1, 1, 0, 3, 4, 4, 7, 1, 2, 1, 0, - 6, 4, 1, 7, 3, 2, 1, 2, 2, 3, 4, 0, 5, 1, 22, 8, 5, 1, 1, 11, 0, 2, 0, 4, 12, - ], - }, - { - label: "Apple's AI", - topics: 'apple,intelligence,ai,privacy,integration', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Apple's integration of OpenAI into their software\n- Pressure on Apple to showcase their AI capabilities\n- OpenAI hiring a new CFO and product chief\n- Applebee's Grill + Bar joining the AI rush with Applebee's Intelligence\n- Concerns about privacy and security with OpenAI integration\n- Excitement about the annual WWDC event hosted by Apple", - data: [ - 3, 10, 60, 4, 2, 0, 2, 1, 2, 1, 2, 5, 1, 1, 1, 2, 0, 2, 1, 2, 2, 3, 2, 3, 4, 6, 3, 3, 5, 4, - 2, 1, 1, 2, 2, 8, 3, 2, 4, 4, 4, 4, 2, 1, 1, 2, 3, 4, 7, 1, 2, 4, 5, 5, 7, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,foundation,attacks,chain', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana being praised as the top chain in the current cycle, with 460,000 new tokens launched on the platform in May.\n2. Solana Foundation removing certain operators from the delegation program due to malicious sandwich attacks.\n3. Criticism towards Solana Foundation for KYC-ing and propping up many validators.\n4. Discussion on the impact of CF delegation on Solana.\n5. Solana gaining attention for hosting a full day focused on creators and collectibles.\n6. The success of Solana Meme Coin SEAL, passing $4M in presale.\n7. Solana being considered as a potential candidate for a crypto ETF in the US.\n8. Analysts weighing in on Solana's future and whether it will soar or stumble.\n9. The rise of Solana-based $GME memecoin following Keith Gill's announcement of his return to YouTube.\n10. Retail traders showing interest in trading on Solana with platforms like Phantom, Backpack, and Birdeye.\n11. Upcoming Alphalaunch on Solana on June 17th by BiggestMeme2024.\n12. Launch of DINO on Solana with an experienced team.\n13. Comparison between MultiversX and Solana in terms of performance and adoption.\n14. Discussion on whether SovereignChains can increase adoption of L2s built on top of main L1s.", - data: [ - 0, 2, 1, 8, 0, 0, 3, 4, 0, 6, 6, 2, 2, 5, 4, 4, 6, 5, 3, 3, 5, 4, 4, 2, 2, 3, 1, 5, 3, 6, 2, - 2, 3, 6, 4, 3, 2, 7, 2, 3, 3, 4, 3, 4, 10, 5, 2, 4, 5, 2, 5, 8, 3, 3, 0, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dog,shib,moon', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- #Dogecoin\n- $DOG\n- CEX listings\n- Turning human waste into Dogecoin\n- Bitcoin Memecoins\n- $PIZZA\n- Runes\n- Ordinals\n- Bitcoin\n- $DOGE\n- Supply & Demand\n- $TAMA\n- #Tamadoge\n- Passive rewards\n- #P2E\n- #CryptoGaming\n- #PlayToEarn\n- #DeFi\n- #BabyDoge\n- #ETH\n- Dogga Coin\n- Chinese cryptocurrency\n- Renounced contract\n- HODL\n\nThese topics are generating a lot of discussion and interest within the crypto community on social media platforms like Twitter.', - data: [ - 1, 1, 1, 3, 1, 0, 1, 5, 2, 3, 0, 0, 3, 1, 60, 2, 1, 4, 3, 0, 2, 1, 1, 6, 1, 1, 0, 3, 5, 2, - 1, 4, 2, 4, 2, 1, 1, 2, 1, 6, 3, 1, 1, 6, 1, 1, 1, 0, 2, 2, 1, 2, 2, 2, 2, - ], - }, - { - label: 'PEPE', - topics: 'pepe,second,chance,frens,ca', - description: - "The key topics currently discussed in the crypto industry on Twitter include the strength of Pepe, potential partnerships with other cryptocurrencies like Solana, price predictions for Bitcoin, Ethereum, and altcoins, trading opportunities on different platforms, technical analysis of Pepe's trading patterns, upcoming listings and trading pairs for meme coins like Pepe Wif Gun, and promotional events like flash sales and giveaways for Pepe tokens. There is also mention of meme coins like Wojak and Bobo, as well as discussions about the impact of social media on cryptocurrency markets.", - data: [ - 3, 5, 1, 1, 0, 1, 2, 3, 1, 0, 4, 4, 0, 0, 1, 3, 1, 1, 3, 8, 0, 5, 0, 0, 2, 1, 1, 2, 4, 1, 1, - 3, 2, 5, 3, 1, 27, 1, 4, 4, 1, 0, 6, 2, 1, 2, 1, 1, 1, 1, 2, 0, 2, 2, 6, - ], - }, - { - label: 'Market volatility', - topics: 'market,dont,sell,panic,youre', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- Market volatility and the need for caution in trading\n- Speculation on the future of the market and whether the bull market is over\n- Strategies for successful trading, such as holding onto investments during bear markets and dollar-cost averaging\n- The difference in attitudes between stock traders and crypto traders towards market dips\n- The importance of staying informed and continuously learning about cryptocurrencies, especially during market downturns\n- The impact of tech developments in gaming, AI, and blockchain on the crypto market\n- The prevalence of hype and speculation in the industry, and the need for a more strategic approach to investing\n- The potential risks of catching a falling knife in a downtrend market\n- The behavior of traders celebrating selling at the local top and the potential consequences of such actions\n\nOverall, the sentiment in the messages is a mix of caution, optimism, and skepticism, reflecting the diverse opinions and experiences within the crypto community.', - data: [ - 2, 2, 2, 0, 0, 0, 0, 1, 5, 2, 0, 1, 6, 3, 2, 4, 0, 1, 2, 2, 3, 1, 0, 3, 0, 1, 2, 0, 2, 6, 1, - 17, 2, 1, 2, 5, 5, 3, 2, 4, 0, 1, 5, 2, 0, 5, 1, 1, 6, 5, 1, 2, 3, 3, 3, - ], - }, - { - label: 'JASMY', - topics: 'high,jasmy,altseason,altcoins,pump', - description: - 'The key topics discussed in the messages from twitter are related to the cryptocurrency $Jasmy and $high. \n\nFor $Jasmy, the discussions revolve around its market structure, potential pump party, resistance levels, and market maker special. There is also mention of $btc breaking a new all-time high and $high following with a potential 2x or 100% pump. \n\nAs for $high, the discussions focus on its recent dump, potential for a 2x pump back to $8s, shorts paying up soon, and the possibility of a 3x pump from $2.80. There is also mention of the market manipulation surrounding $high and how it could potentially reach $4.20 - $4.40 next.\n\nOverall, the sentiment around both $Jasmy and $high seems to be positive, with expectations of potential pumps and market movements.', - data: [ - 0, 0, 0, 2, 0, 0, 3, 0, 8, 1, 1, 1, 2, 0, 0, 2, 1, 0, 1, 1, 1, 1, 2, 41, 2, 1, 13, 2, 0, 3, - 2, 4, 1, 1, 0, 3, 1, 2, 2, 0, 1, 1, 0, 3, 5, 2, 1, 2, 7, 2, 1, 1, 2, 0, 0, - ], - }, - { - label: 'BTC mining', - topics: 'mining,miners,miner,heat,bitcoin', - description: - 'The key topics currently discussed in the messages from Twitter about Bitcoin mining include:\n1. Bitcoin mining difficulty cooling off after a parabolic rise\n2. Environmental impact of Bitcoin mining and efforts to address it\n3. Bitcoin mining farms operating in extreme conditions\n4. Hydro mining containers for Bitcoin mining\n5. Bitcoin mining stocks and potential gains in the market\n6. Participation in Bitcoin mining regardless of location or economic status\n7. Bitcoin mining protests and discussions about freedom\n8. Expert panels and discussions on Bitcoin mining\n9. Bitcoin mining companies Riot Platforms and Bitfarms\n10. Proof of work and mining capacity in maintaining information systems.', - data: [ - 1, 2, 1, 3, 1, 27, 0, 0, 3, 0, 4, 13, 1, 3, 1, 2, 1, 2, 1, 2, 0, 0, 3, 2, 2, 2, 3, 1, 1, 0, - 1, 2, 10, 0, 7, 1, 1, 3, 0, 4, 2, 3, 2, 2, 0, 0, 0, 0, 2, 0, 0, 2, 2, 2, 4, - ], - }, - { - label: 'Elon Musk & Tesla', - topics: 'tesla,elon,elonmusk,model,stock', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Elon Musk's statement that Tesla is more of a software company than a hardware company\n- Tesla's motion passing\n- Tesla's Full Self-Driving (FSD) technology\n- Tesla Insurance\n- Robotaxi\n- Optimus\n- Tesla Solar\n- Tesla reaching $2,000\n- Elon Musk's compensation package\n- Recommendations for daily driving sports/super cars\n- Elon Musk congratulating Narendra Modi on his election victory\n- Tesla shareholders approving a $56 billion pay package for Elon Musk\n- Challenges faced by Tesla as an electric vehicle-maker\n- Analysts adjusting price targets amidst the Apple-Tesla conflict\n- Price predictions for Microsoft's stock\n- Elon Musk's thoughts on AI and spam\n- Tesla's annual shareholder meeting in 2024 and the determination to bring Optimus to new levels\n- Complaints about Tesla's service and pricing for wheel balancing.", - data: [ - 3, 1, 2, 0, 0, 0, 1, 0, 2, 1, 1, 0, 0, 1, 0, 6, 1, 3, 0, 2, 3, 2, 0, 1, 0, 8, 2, 4, 1, 0, 3, - 4, 3, 2, 2, 2, 3, 3, 2, 0, 2, 1, 2, 5, 5, 1, 2, 10, 1, 1, 6, 2, 1, 1, 1, - ], - }, - { - label: 'BTCPrague', - topics: 'youtube,store,podcast,videos,video', - description: - 'Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin Prague Conference: There are multiple mentions of the BTCPrague conference, with speakers, workshops, and booths being highlighted. Attendees are encouraged to connect and engage with various activities at the conference.\n\n2. Bitcoin Podcasts: Several messages mention Bitcoin podcasts, such as the Bitcoin Beach Podcast and the upcoming 21 Voices mini doc series. These podcasts feature discussions with industry experts and provide insights into the world of Bitcoin.\n\n3. Bitcoin Wallets and Self-Custody: There are references to Bitcoin wallets, such as the Bull Bitcoin wallet, and discussions on self-custody of Bitcoin. Keynotes and workshops at the BTCPrague conference focus on the best ways to self-custody Bitcoin and implement proper governance.\n\n4. Bitcoin DeFi and Code Changes: Talks about Bitcoin DeFi (decentralized finance) and potential code changes in the Bitcoin network are mentioned. There is a cautionary note about guests on Bitcoin podcasts advocating for code changes possibly being influenced by external parties.\n\n5. YouTube and Truth Seeking: A message reflects on the role of YouTube in sharing information and seeking the truth, with a dedication to using technical analysis (TA) to uncover market manipulation in the crypto industry.\n\nOverall, the crypto community on Twitter is actively engaged in discussions about Bitcoin events, podcasts, self-custody, DeFi, and the pursuit of truth in the industry.', - data: [ - 1, 2, 0, 2, 1, 1, 2, 1, 1, 1, 4, 2, 3, 6, 4, 0, 2, 2, 0, 1, 0, 2, 4, 2, 0, 1, 2, 2, 1, 4, 0, - 0, 2, 2, 1, 1, 1, 1, 0, 2, 2, 1, 2, 0, 2, 0, 3, 2, 3, 0, 1, 5, 5, 6, 5, - ], - }, - { - label: 'Hacks', - topics: 'okx,security,million,protocol,accounts', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n1. Security breaches and hacks: Discussions about recent hacks on Loopring wallets and OKX accounts, as well as phishing attacks on platforms like CoinGecko and GetResponse.\n2. Scam prevention: Warnings about phishing emails, fake airdrops, and scams on platforms like Telegram and Discord.\n3. Security measures: Updates on security measures taken by platforms like OKX, such as implementing double verification via email and authenticator.\n4. Community response: Reports of community members taking action against scammers, such as wasting their time or warning others about potential scams.\n5. Market impact: Analysis of how security breaches and scams affect market trust and cryptocurrency prices, such as the drop in Loopring's market cap after the hack.", - data: [ - 10, 0, 2, 4, 0, 0, 2, 0, 1, 1, 1, 5, 0, 2, 0, 0, 3, 2, 0, 1, 0, 1, 3, 0, 3, 2, 1, 2, 7, 0, - 3, 0, 0, 1, 0, 10, 0, 1, 0, 1, 7, 3, 6, 1, 0, 2, 2, 2, 0, 0, 1, 1, 2, 0, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,stablecoin,sec,cryptocurrency', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Ripple's legal battle with the SEC and the potential outcomes of the lawsuit.\n2. The unveiling of Ripple's upcoming stablecoin RLUSD by the CEO.\n3. XRP price analysis and predictions for its potential surge.\n4. The integration of Ripple's Interledger Protocol into ApplePay for cross-ledger payments.\n5. Discussions about Reptilian Masters of Coin and their form of currency.\n6. Updates on the RKEY token listing on LBank for real estate tokenization.\n7. Speculation on the future of cryptocurrency market cap and prices.", - data: [ - 3, 1, 0, 3, 0, 0, 2, 1, 3, 3, 5, 2, 2, 0, 3, 1, 1, 2, 2, 0, 1, 0, 1, 3, 2, 4, 1, 0, 1, 1, 1, - 3, 0, 0, 3, 0, 0, 7, 2, 1, 3, 14, 0, 1, 1, 0, 0, 0, 2, 1, 0, 4, 2, 1, 0, - ], - }, - { - label: 'ZKsync airdrop', - topics: 'zksync,airdrop,zk,eligible,wallets', - description: - 'The key topic discussed in the messages from Twitter is the ZKSync airdrop. Users are expressing disappointment with the distribution and execution of the airdrop, with some feeling that it was not well planned from a sybil perspective. There are also mentions of specific wallet segments being provided to Matter Labs for data, as well as the breakdown of the airdrop with 89% going to users and 11% to contributors. Additionally, there are announcements of other airdrops such as the SBX Airdrop and the ZEPX giveaway on LATOKEN. Overall, the crypto community is actively engaged in discussions about various airdrops and token distributions.', - data: [ - 1, 9, 2, 2, 0, 0, 0, 1, 2, 4, 4, 1, 0, 1, 1, 3, 2, 3, 0, 1, 3, 1, 0, 2, 0, 1, 3, 1, 1, 0, 1, - 1, 0, 3, 1, 4, 0, 2, 1, 3, 4, 0, 0, 0, 4, 2, 0, 1, 0, 3, 0, 0, 5, 0, 7, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-24.json b/priv/repo/major_topics_seed/data-24.json deleted file mode 100644 index aaf84538d2..0000000000 --- a/priv/repo/major_topics_seed/data-24.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["13.06.24","14.06.24","14.06.24","14.06.24","14.06.24","14.06.24","14.06.24","14.06.24","15.06.24","15.06.24","15.06.24","15.06.24","15.06.24","15.06.24","15.06.24","15.06.24","16.06.24","16.06.24","16.06.24","16.06.24","16.06.24","16.06.24","16.06.24","16.06.24","17.06.24","17.06.24","17.06.24","17.06.24","17.06.24","17.06.24","17.06.24","17.06.24","18.06.24","18.06.24","18.06.24","18.06.24","18.06.24","18.06.24","18.06.24","18.06.24","19.06.24","19.06.24","19.06.24","19.06.24","19.06.24","19.06.24","19.06.24","19.06.24","20.06.24","20.06.24","20.06.24","20.06.24","20.06.24","20.06.24","20.06.24"],"datasets":[{"label":"BTC","topics":"bitcoin,money,understand,people,fiat","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin being the only cryptocurrency that will eliminate ICBMs\n- The importance of self-custody and not outsourcing Bitcoin holdings to third parties\n- Speculation about central banks buying Bitcoin\n- The bullish sentiment towards Bitcoin and its potential price targets\n- The need to protect private keys and use hardware wallets for security\n- Anecdotes about losing or mishandling Bitcoin\n- The empowerment of builders and creators through Bitcoin\n\nOverall, the sentiment towards Bitcoin appears to be positive, with a focus on self-custody and security measures to protect investments. There is also discussion about the potential for Bitcoin to reach new price highs and its role in empowering individuals in the crypto industry.","data":[14,8,11,11,89,84,6,19,8,11,15,18,19,10,16,19,8,18,25,15,16,16,11,23,18,15,12,21,23,14,24,17,17,22,11,22,37,19,20,19,26,23,25,25,19,18,17,17,23,3,33,10,15,15,23]},{"label":"AI","topics":"ai,nvda,intelligence,models,tech","description":"The messages from Twitter suggest a strong focus on the intersection of AI and crypto industries. There are discussions about the potential impact of AI on job automation, with predictions about Bitcoin surpassing Nvidia and Gold in the future. Additionally, there is excitement about new AI technologies such as hyper-realistic video models and Apple Intelligence. The potential for AI to enhance blockchain technology is also highlighted, with mentions of predictive analytics and smart contracts. Overall, the messages indicate a belief in the transformative power of AI and crypto industries, with predictions of significant economic growth by 2030.","data":[24,41,27,8,7,1,6,3,4,5,4,14,3,12,11,10,8,12,7,7,16,19,7,6,6,24,9,8,9,7,10,5,6,13,12,10,9,4,12,6,13,12,3,6,9,7,18,9,13,2,8,9,8,11,12]},{"label":"BTC Price","topics":"price,btc,range,bitcoin,support","description":"The key topics currently discussed on Twitter regarding the crypto industry include:\n- Bitcoin price predictions, with some analysts forecasting $200,000 next year and $1 million by 2033\n- Bitcoin's recent price movements, with fluctuations between $64,000 and $66,000 and potential support levels at $62,000 and $60,000\n- Speculation on Bitcoin's future price movements, with some experts warning of potential declines to $48,000 if key levels are breached\n- The impact of global market trends on altcoins, with discussions on the potential for a bullish trend reversal in the next few months\n\nOverall, the sentiment on Twitter seems to be a mix of optimism and caution, with users closely monitoring Bitcoin's price movements and potential market trends.","data":[6,8,3,8,45,61,8,18,3,3,11,8,11,4,6,11,1,12,5,8,8,4,6,15,2,5,4,0,7,11,7,3,3,4,0,3,3,12,14,21,19,1,3,8,14,8,9,12,5,12,8,11,2,6,5]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The messages from Twitter are discussing various meme coins in the crypto industry, such as Pacmoon, EDSE, MOTHER, DADDY, WOMBAT, and FTM. There is also mention of a platform called Meme Factory for creating digital collectibles on the blockchain. Additionally, a new meme coin called biggestmeme2024 is set to launch on SOL with a promising team and marketing campaign. Overall, the topic revolves around the popularity and potential of meme coins in the crypto market.","data":[4,4,3,5,4,0,5,4,8,1,7,6,7,4,4,7,0,4,4,0,3,9,6,4,3,6,3,14,4,6,9,66,6,6,1,9,4,5,2,9,6,7,7,3,5,4,3,5,9,3,7,6,7,8,2]},{"label":"GameFI","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media include:\n- Web3 gaming and its potential, with mentions of SKALE Network and its low gas fees\n- NFT projects and games, with excitement about early involvement and potential rewards\n- The launch of new games on platforms like Epic Games Store\n- Specific games like Škoda Bike Planet and its sequel, focusing on teaching safety and etiquette\n- Profit opportunities and signals in the crypto market, with references to specific tokens like $BYTE\n\nOverall, the sentiment seems to be positive and optimistic about the future of gaming and investments in the crypto industry.","data":[2,1,5,4,0,0,7,5,6,3,6,3,5,6,9,5,0,3,2,12,43,6,4,5,7,3,6,11,8,6,6,4,5,7,4,6,2,21,3,11,4,11,3,0,5,5,6,10,3,4,3,3,10,9,10]},{"label":"Art","topics":"art,artists,artist,nft,love","description":"The key topics discussed in the messages from twitter are:\n- Art and its appeal in the art world\n- Digital art and its evolution\n- NFT collectibles and art market trends\n- Comparison between Art NFTs and Memecoins\n- Crypto art and NFT platforms like Foundation\n- Collecting art and supporting artists\n\nOverall, the messages reflect a diverse range of discussions related to art, digital art, NFTs, and the crypto industry.","data":[1,3,52,1,0,0,0,4,6,0,11,3,3,2,5,2,1,0,11,4,2,2,1,6,4,2,2,7,1,5,4,4,0,3,4,9,7,4,4,4,4,3,1,2,5,0,1,1,3,3,4,1,6,4,4]},{"label":"BTC Mining","topics":"mining,miners,btcprague,bitcoin,energy","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. The environmental impact of cryptocurrency mining, with discussions on how mining can be bad for the environment and the need for proper cooling measures to mitigate heat.\n2. Regulatory developments, such as the Oklahoma Governor signing a bill exempting Bitcoin miners from sales tax on electricity bills.\n3. Market trends, including the recent selling of over 1,200 BTC by miners and the impact on the price correction.\n4. Challenges faced by Bitcoin miners, such as heat mitigation and the competitive nature of the industry.\n5. Updates on mining difficulty adjustments and hashrates in the Bitcoin blockchain.\n6. Collaborations and giveaways within the mining community, such as teaming up with MinersClub77 for a giveaway in the Aviatrix game.","data":[6,1,4,1,18,19,5,5,1,1,8,4,1,1,5,3,1,0,1,2,0,2,5,6,1,5,0,2,1,2,4,0,11,5,4,3,0,3,2,0,3,7,0,6,2,1,1,4,2,1,3,2,3,1,1]},{"label":"SOL","topics":"solana,sol,chain,memes,meme","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Solana's Layer 2 Sonic raising funds at a $100 million token valuation.\n2. Comparison between Solana and Bitcoin degens.\n3. Tracking on-chain transactions on Solana, specifically buys and sells of SOL.\n4. Launching meme coins on Solana or Asset Hub, with pros and cons of each.\n5. New Solana coin $BILLY flipping $DADDY in less than 36 hours.\n6. Growth of the Solana ecosystem leading to dilution of $SOL bid.\n7. Bearish sentiment towards $SOL and potential shorting if it reaches a certain level.\n8. Technical analysis of Solana hitting a key support level at $141.\n9. Popularity of $POPCAT and Solana meme coins.\n10. Speculation about BlackRock applying for a Solana ETF in July and its impact on the Solana ecosystem.\n11. Expectations for Solana Summer to be explosive.\n12. Discussion on the potential pump of Humble Tree ($HTREE) and its tokenomics.\n13. Speculation on Solana becoming the most promising crypto token to invest in.\n14. Reflection on past gains from $SOL during the 2021 bull market.\n15. Confidence in investing in Alt Layer1 chains during their depression phase.\n\nOverall, the discussions on Twitter revolve around Solana's performance, potential investments, meme coins, technical analysis, and future developments in the crypto industry.","data":[3,1,3,2,1,1,5,4,3,2,3,2,1,7,1,2,2,4,4,1,1,6,2,4,1,5,0,4,1,1,4,5,0,2,2,3,3,2,8,4,0,3,1,6,14,3,4,2,2,4,0,2,3,0,0]},{"label":"Blockchain adoption","topics":"blockchain,data,security,blockchains,decentralized","description":"The key topics currently discussed in the crypto industry on social media include:\n1. Blockchain data compression\n2. Collateral Network's ecosystem\n3. Aptos blockchain\n4. Building mainstream apps using blockchain\n5. Transparency of blockchain\n6. Blockchain adoption and data security\n7. Real-world use cases for blockchain\n8. Teaching people to use blockchain securely\n9. Enhancing security protocols in blockchain\n10. Partnerships in the blockchain industry\n11. Telos blockchain ecosystem\n12. Flux Ecosystem\n13. Casper Network\n14. Flurence Project's IPC subnet and Filecoin integration\n\nThese topics cover a wide range of discussions related to blockchain technology, security, scalability, partnerships, and real-world applications.","data":[1,2,0,1,0,0,13,1,0,4,2,1,2,4,1,7,1,8,3,0,2,2,0,1,1,5,1,4,0,0,2,1,5,3,3,4,1,2,2,2,1,2,1,0,6,0,1,3,1,2,3,4,1,1,5]},{"label":"ETFs","topics":"etfs,net,etf,saw,spot","description":"The key topic currently discussed on Twitter regarding the crypto industry is the significant outflows seen in Bitcoin ETFs. Fidelity's FBTC ETF has been leading the outflows, with millions of dollars exiting the funds in recent days. There is skepticism among finance professionals about Bitcoin ETFs, with some stating that ETFs go against the ethos of Bitcoin. The outflows have been consistent over the past few days, with net outflows reported in multiple ETFs. Overall, the trend seems to be a decrease in investments in Bitcoin ETFs, with significant amounts of money leaving the funds.","data":[3,1,0,2,4,7,0,0,0,0,1,1,1,4,6,0,8,5,3,3,1,2,0,2,2,6,1,1,0,0,0,1,1,3,1,4,0,0,0,0,1,0,3,1,17,6,0,0,2,5,0,4,1,3,5]},{"label":"SEC & ETH","topics":"sec,investigation,ethereum,securities,drops","description":"The key topic discussed in the messages from Twitter is the SEC closing its investigation into Ethereum. This news is seen as very bullish for Ethereum and has led to a surge in its price. David Hirsch, the head of crypto asset enforcement at the SEC, has also announced his departure from the agency. Overall, the community is reacting positively to the news, with many seeing it as a significant development for Ethereum and the crypto industry as a whole.","data":[0,0,4,2,0,0,11,0,4,2,12,4,0,1,0,15,7,0,0,2,1,0,2,1,3,0,4,0,1,1,5,3,1,0,0,4,8,1,1,3,2,1,3,0,1,5,2,1,0,0,3,0,0,0,0]},{"label":"APE","topics":"dao,vote,ape,voting,group","description":"The key topics currently being discussed in the crypto industry on social media include:\n- ApeCoin's presence at NFT Fest\n- Arbitrum DAO delegates and ARB holders being different groups\n- Concerns about electronic voting machines being hacked\n- Results of the Apecoin DAO election\n- Advocacy for wider Bitcoin education in the USA\n- Decentralized blockchain voting\n- Candidates supporting crypto being favored by voters\n- Interest in building on ApeChain\n- The concept of every ape having a \"demon and angel\" on their shoulders\n- Building a sustainable DAO with initiatives like Ape Express\n- Successful SIP votes on The SandboxDAO\n- APE Racing partnership with IconxWorld for competitions\n\nOverall, the discussions revolve around governance, voting systems, education, partnerships, and community involvement in the crypto industry.","data":[1,9,1,1,0,0,0,0,0,4,1,3,0,2,0,11,1,1,1,4,3,0,1,1,0,1,1,4,2,1,1,0,0,1,2,0,0,2,2,2,1,7,1,1,0,1,1,1,2,7,0,0,24,1,0]},{"label":"ETH Price","topics":"ethereum,eth,price,low,demand","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto community regarding Ethereum ($ETH) include:\n\n1. Price Predictions: There are discussions about the price of Ethereum reaching $3,400, $3,600, $3,800, and potentially even $4,000 in the near future. Some users are optimistic about the price movement, while others are more cautious and expect a sideways accumulation pattern.\n\n2. ETF Launch: There is anticipation surrounding an expected spot ETF launch on July 2nd, which is seen as a bullish signal for Ethereum. The balance of Ethereum on exchanges hitting an 8-year low is also seen as a positive indicator for supply-demand dynamics.\n\n3. Market Manipulation: There are mentions of potential market manipulation, with references to \"weekly open fuckery\" and the need to add on dips. Some users express skepticism about the organic strength of Ethereum's price movement.\n\n4. Regulatory Environment: The departure of the SEC's head of crypto enforcement and the implications for Ethereum are being discussed. There is speculation about the impact of regulatory decisions on the price of Ethereum and other cryptocurrencies.\n\n5. Community Sentiment: Users are encouraged to share their thoughts on Ethereum's recent price action and whether they believe it will hit $4,000 soon. There is a mix of optimism, skepticism, and humor in the community's reactions to Ethereum's price movements.\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, market speculation, regulatory concerns, and community sentiment regarding Ethereum and its potential price movements in the near future.","data":[0,1,3,0,0,0,3,0,0,0,1,1,1,4,0,2,36,2,1,2,2,3,0,2,0,0,3,0,0,3,1,1,0,1,1,2,2,3,5,1,1,2,1,1,3,2,2,0,3,1,0,6,1,1,0]},{"label":"ETH ETF","topics":"etf,july,spot,2nd,etfs","description":"The key topic discussed in the messages from twitter is the launch of a Spot Ethereum ETF expected on July 2nd. The messages indicate that there is anticipation and excitement surrounding the launch of the Ethereum ETF, with expectations of a price pump for Ethereum leading up to the ETF trading date. Analysts and experts are discussing the potential impact of the ETF on the price of Ethereum, with some suggesting that there may be red days initially due to outflows from Grayscale, but overall positive momentum is expected once inflows from other issuers increase. The SEC has given approval for the ETF filings, and there is speculation about the potential price movement of Ethereum before and after the launch of the ETF. Overall, the messages highlight the significance of the Ethereum ETF launch and its potential impact on the cryptocurrency market.","data":[4,5,0,6,1,0,2,0,0,1,2,0,2,2,0,0,26,1,2,0,5,5,1,2,0,0,2,2,0,4,1,1,0,0,0,1,1,2,2,2,1,0,2,2,7,2,4,0,3,0,0,1,1,2,0]},{"label":"Tether Alloy","topics":"tether,backed,gold,dollar,stablecoin","description":"The key topics discussed in the messages from twitter are:\n1. Tether launching a new stablecoin called Alloy, backed by gold\n2. Introduction of a new synthetic dollar backed by gold by Tether\n3. Bitfinex becoming the first exchange to list the new USD-denominated, gold-tethered asset\n4. Tether's initiative to boost blockchain and digital asset education in Taiwan\n5. Tether creating a new category of crypto called \"tethered assets\" starting with Alloy by Tether\n6. Gen Z and millennial investors embracing crypto, real estate, and private equity along with stocks\n7. SEC closing investigation into Ethereum 2.0 with no securities charges against ETH\n8. Usual Protocol launching a Liquid Deposit Token (LDT) backed by real-world assets such as US Treasury Bills\n9. Tether's XAUT stablecoin tied to gold physically stored in Switzerland\n10. Concerns about the stability of Tether's peg and panic premium on Bitfinex\n\nOverall, the discussions revolve around Tether's new initiatives in the crypto industry, particularly in launching stablecoins backed by gold and over-collateralized synthetic dollars. There is also a focus on the broader trends in the market, such as the interest of younger investors in various asset classes and regulatory developments in the industry.","data":[0,2,3,1,0,0,4,3,1,0,2,2,0,7,1,1,2,0,2,2,0,3,0,2,2,5,2,2,0,1,0,1,0,1,1,2,3,1,2,0,3,0,0,0,0,2,0,33,0,3,2,1,0,1,0]},{"label":"DOGE","topics":"dogecoin,doge,whales,shib,dog","description":"The key topics currently being discussed on Twitter regarding Dogecoin include:\n- Dogecoin price predictions and whether to HODL or fold\n- Whale movements and retail investors' impact on market dynamics\n- Speculation on when Dogecoin might hit the $1 mark\n- Dogecoin founder's comments on the unpredictable nature of cryptocurrency markets\n- Elon Musk's influence on Dogecoin and cryptocurrency market trends\n- End of week competition related to Tamadoge leaderboard and winning TAMA tokens in crypto gaming\n- Predictions and discussions about other cryptocurrencies such as LUNC, SHIB, BabyDoge, Floki, and their potential in the market\n\nOverall, the discussions revolve around the future of Dogecoin, market trends, price predictions, and the influence of key figures like Elon Musk.","data":[3,1,1,2,0,0,0,0,1,0,4,1,2,0,42,3,0,1,1,1,4,1,0,3,1,2,1,2,3,1,0,1,1,0,0,0,2,3,3,0,0,0,2,3,1,0,0,4,0,0,1,0,1,0,1]},{"label":"NFTs","topics":"nft,nfts,bring,collection,founders","description":"The messages from twitter suggest that there is a lot of discussion and speculation surrounding NFTs in the crypto industry. Some key points include:\n\n- There is a mix of regret and excitement about NFT investments, with some users expressing disbelief at their past purchases while others are optimistic about potential generational wealth.\n- Liquidity in the NFT market is decreasing, with blame placed on speculators who traded down prices. Pride in ownership is seen as important for market growth.\n- Many farmers who invested in NFTs are now leaving, leading to decreased liquidity and pressure on floor prices.\n- There is a belief that not everyone entering the NFT space will be willing to spend large amounts of money on NFTs.\n- There is criticism of the branding of NFTs, with suggestions for more luxurious and appealing names.\n- The potential for NFTs to succeed in the current market cycle is being discussed, with some founders of NFT funds expressing bullish sentiments.\n\nOverall, the sentiment around NFTs in the crypto community seems to be mixed, with both excitement and caution being expressed.","data":[1,1,0,3,0,0,5,3,1,0,2,1,0,0,1,0,2,0,2,2,3,1,3,3,1,0,0,3,0,2,1,2,2,0,10,2,3,2,3,1,1,1,1,2,1,1,0,4,5,0,0,2,2,1,2]},{"label":"Layer 2","topics":"ethereum,l2,layer,transactions,evm","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Solutions to fragmentation on Ethereum, with Aave expanding on Layer 2 solutions\n- Ethereum being positioned as the institutional chain, while Solana is seen as the retail/merchant chain\n- The importance of Layer 2 crypto projects in increasing scalability of Layer 1 chains\n- Ethereum's role as a key blockchain for stablecoins and global settlement layer\n- The debate around L2 fragmentation and its potential impact on Ethereum's competitiveness\n- The use of sidechains to alleviate congestion on the main blockchain and improve scalability\n- The addition of Lambda to L2BEAT as a featured scaling project\n- The Ethereum scaling ecosystem reaching a new all-time high in combined transactions per second (TPS)\n- The distinction between Ethereum as a security and Bitcoin as a commodity, with Ethereum initially launched as a proof-of-work network\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the crypto industry, particularly focusing on Ethereum's scalability, role in the market, and potential solutions to address fragmentation issues.","data":[2,2,0,1,0,0,0,0,0,3,1,0,2,0,3,2,26,0,3,2,0,2,0,0,2,0,0,3,0,4,1,0,0,6,0,0,0,1,0,2,3,2,2,1,0,1,0,1,0,0,0,6,3,2,0]},{"label":"DeFi","topics":"defi,protocols,lending,read,decentralized","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi's importance in enabling users to make money in crypto.\n2. The potential transformation of global finance by DeFi.\n3. Chainlink's role in converging Tradfi and DeFi.\n4. The launch of Pull Oracle on Solana by PythNetwork.\n5. Anticipated DeFi trends for the second half of 2024.\n6. The collaborative effort in the growth and success of BTCDeFi.\n7. Frax Share shaping the future of decentralized finance.\n8. Onomy Protocol bridging DeFi and Forex in a decentralized future.\n9. Asset Tokenisation: TradFi vs. DeFi Showdown event by the Singapore FinTech Association and KPMG.\n10. Pendle Finance unlocking the potential of yield trading in DeFi.\n11. Summer Finance powering $5B in AUM transacting in DeFi.\n12. The latest updates in the DeFiChain ecosystem.\n\nThese topics highlight the ongoing discussions and developments in the crypto industry, particularly focusing on decentralized finance (DeFi) and its impact on the financial sector.","data":[2,0,0,1,0,0,1,3,3,1,0,1,2,5,2,4,1,3,2,2,0,4,2,0,0,4,4,3,2,2,0,2,0,4,1,3,1,1,1,0,1,1,2,0,0,3,2,1,1,1,5,2,0,1,1]},{"label":"MicroStrategy","topics":"microstrategy,notes,acquired,million,offering","description":"The key topics currently discussed in the crypto industry on Twitter include MicroStrategy's recent $500 million debt sale to boost their Bitcoin stash, their purchase of $786 million worth of Bitcoin, their announcement of offering convertible senior notes, and their plans to buy $700 million worth of BTC. MicroStrategy now holds a total of 226,331 bitcoins valued at almost $15 billion. There is also discussion about the correlation between Bitcoin's value and MicroStrategy's stock price, with Wall Street analysts updating their price target for $MSTR. Additionally, MicroStrategy has received an outperform rating from Bernstein with a price target of $2,890, as Bitcoin's price is expected to hit $1 million. The company has also announced a $200 million increase in the debt offering to buy more Bitcoin. Overall, MicroStrategy is making significant moves in the crypto industry and continues to increase its Bitcoin holdings.","data":[8,0,0,1,1,2,8,3,1,0,0,4,0,0,1,0,0,0,0,1,0,1,0,1,3,3,0,0,2,0,2,1,25,0,0,2,0,1,0,5,0,0,0,0,0,1,1,0,0,2,1,4,0,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-24.ts b/priv/repo/major_topics_seed/data-24.ts deleted file mode 100644 index a3b49761d4..0000000000 --- a/priv/repo/major_topics_seed/data-24.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '13.06.24', - '14.06.24', - '14.06.24', - '14.06.24', - '14.06.24', - '14.06.24', - '14.06.24', - '14.06.24', - '15.06.24', - '15.06.24', - '15.06.24', - '15.06.24', - '15.06.24', - '15.06.24', - '15.06.24', - '15.06.24', - '16.06.24', - '16.06.24', - '16.06.24', - '16.06.24', - '16.06.24', - '16.06.24', - '16.06.24', - '16.06.24', - '17.06.24', - '17.06.24', - '17.06.24', - '17.06.24', - '17.06.24', - '17.06.24', - '17.06.24', - '17.06.24', - '18.06.24', - '18.06.24', - '18.06.24', - '18.06.24', - '18.06.24', - '18.06.24', - '18.06.24', - '18.06.24', - '19.06.24', - '19.06.24', - '19.06.24', - '19.06.24', - '19.06.24', - '19.06.24', - '19.06.24', - '19.06.24', - '20.06.24', - '20.06.24', - '20.06.24', - '20.06.24', - '20.06.24', - '20.06.24', - '20.06.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,money,understand,people,fiat', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin being the only cryptocurrency that will eliminate ICBMs\n- The importance of self-custody and not outsourcing Bitcoin holdings to third parties\n- Speculation about central banks buying Bitcoin\n- The bullish sentiment towards Bitcoin and its potential price targets\n- The need to protect private keys and use hardware wallets for security\n- Anecdotes about losing or mishandling Bitcoin\n- The empowerment of builders and creators through Bitcoin\n\nOverall, the sentiment towards Bitcoin appears to be positive, with a focus on self-custody and security measures to protect investments. There is also discussion about the potential for Bitcoin to reach new price highs and its role in empowering individuals in the crypto industry.', - data: [ - 14, 8, 11, 11, 89, 84, 6, 19, 8, 11, 15, 18, 19, 10, 16, 19, 8, 18, 25, 15, 16, 16, 11, 23, - 18, 15, 12, 21, 23, 14, 24, 17, 17, 22, 11, 22, 37, 19, 20, 19, 26, 23, 25, 25, 19, 18, 17, - 17, 23, 3, 33, 10, 15, 15, 23, - ], - }, - { - label: 'AI', - topics: 'ai,nvda,intelligence,models,tech', - description: - 'The messages from Twitter suggest a strong focus on the intersection of AI and crypto industries. There are discussions about the potential impact of AI on job automation, with predictions about Bitcoin surpassing Nvidia and Gold in the future. Additionally, there is excitement about new AI technologies such as hyper-realistic video models and Apple Intelligence. The potential for AI to enhance blockchain technology is also highlighted, with mentions of predictive analytics and smart contracts. Overall, the messages indicate a belief in the transformative power of AI and crypto industries, with predictions of significant economic growth by 2030.', - data: [ - 24, 41, 27, 8, 7, 1, 6, 3, 4, 5, 4, 14, 3, 12, 11, 10, 8, 12, 7, 7, 16, 19, 7, 6, 6, 24, 9, - 8, 9, 7, 10, 5, 6, 13, 12, 10, 9, 4, 12, 6, 13, 12, 3, 6, 9, 7, 18, 9, 13, 2, 8, 9, 8, 11, - 12, - ], - }, - { - label: 'BTC Price', - topics: 'price,btc,range,bitcoin,support', - description: - "The key topics currently discussed on Twitter regarding the crypto industry include:\n- Bitcoin price predictions, with some analysts forecasting $200,000 next year and $1 million by 2033\n- Bitcoin's recent price movements, with fluctuations between $64,000 and $66,000 and potential support levels at $62,000 and $60,000\n- Speculation on Bitcoin's future price movements, with some experts warning of potential declines to $48,000 if key levels are breached\n- The impact of global market trends on altcoins, with discussions on the potential for a bullish trend reversal in the next few months\n\nOverall, the sentiment on Twitter seems to be a mix of optimism and caution, with users closely monitoring Bitcoin's price movements and potential market trends.", - data: [ - 6, 8, 3, 8, 45, 61, 8, 18, 3, 3, 11, 8, 11, 4, 6, 11, 1, 12, 5, 8, 8, 4, 6, 15, 2, 5, 4, 0, - 7, 11, 7, 3, 3, 4, 0, 3, 3, 12, 14, 21, 19, 1, 3, 8, 14, 8, 9, 12, 5, 12, 8, 11, 2, 6, 5, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The messages from Twitter are discussing various meme coins in the crypto industry, such as Pacmoon, EDSE, MOTHER, DADDY, WOMBAT, and FTM. There is also mention of a platform called Meme Factory for creating digital collectibles on the blockchain. Additionally, a new meme coin called biggestmeme2024 is set to launch on SOL with a promising team and marketing campaign. Overall, the topic revolves around the popularity and potential of meme coins in the crypto market.', - data: [ - 4, 4, 3, 5, 4, 0, 5, 4, 8, 1, 7, 6, 7, 4, 4, 7, 0, 4, 4, 0, 3, 9, 6, 4, 3, 6, 3, 14, 4, 6, - 9, 66, 6, 6, 1, 9, 4, 5, 2, 9, 6, 7, 7, 3, 5, 4, 3, 5, 9, 3, 7, 6, 7, 8, 2, - ], - }, - { - label: 'GameFI', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Web3 gaming and its potential, with mentions of SKALE Network and its low gas fees\n- NFT projects and games, with excitement about early involvement and potential rewards\n- The launch of new games on platforms like Epic Games Store\n- Specific games like Škoda Bike Planet and its sequel, focusing on teaching safety and etiquette\n- Profit opportunities and signals in the crypto market, with references to specific tokens like $BYTE\n\nOverall, the sentiment seems to be positive and optimistic about the future of gaming and investments in the crypto industry.', - data: [ - 2, 1, 5, 4, 0, 0, 7, 5, 6, 3, 6, 3, 5, 6, 9, 5, 0, 3, 2, 12, 43, 6, 4, 5, 7, 3, 6, 11, 8, 6, - 6, 4, 5, 7, 4, 6, 2, 21, 3, 11, 4, 11, 3, 0, 5, 5, 6, 10, 3, 4, 3, 3, 10, 9, 10, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,nft,love', - description: - 'The key topics discussed in the messages from twitter are:\n- Art and its appeal in the art world\n- Digital art and its evolution\n- NFT collectibles and art market trends\n- Comparison between Art NFTs and Memecoins\n- Crypto art and NFT platforms like Foundation\n- Collecting art and supporting artists\n\nOverall, the messages reflect a diverse range of discussions related to art, digital art, NFTs, and the crypto industry.', - data: [ - 1, 3, 52, 1, 0, 0, 0, 4, 6, 0, 11, 3, 3, 2, 5, 2, 1, 0, 11, 4, 2, 2, 1, 6, 4, 2, 2, 7, 1, 5, - 4, 4, 0, 3, 4, 9, 7, 4, 4, 4, 4, 3, 1, 2, 5, 0, 1, 1, 3, 3, 4, 1, 6, 4, 4, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,btcprague,bitcoin,energy', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. The environmental impact of cryptocurrency mining, with discussions on how mining can be bad for the environment and the need for proper cooling measures to mitigate heat.\n2. Regulatory developments, such as the Oklahoma Governor signing a bill exempting Bitcoin miners from sales tax on electricity bills.\n3. Market trends, including the recent selling of over 1,200 BTC by miners and the impact on the price correction.\n4. Challenges faced by Bitcoin miners, such as heat mitigation and the competitive nature of the industry.\n5. Updates on mining difficulty adjustments and hashrates in the Bitcoin blockchain.\n6. Collaborations and giveaways within the mining community, such as teaming up with MinersClub77 for a giveaway in the Aviatrix game.', - data: [ - 6, 1, 4, 1, 18, 19, 5, 5, 1, 1, 8, 4, 1, 1, 5, 3, 1, 0, 1, 2, 0, 2, 5, 6, 1, 5, 0, 2, 1, 2, - 4, 0, 11, 5, 4, 3, 0, 3, 2, 0, 3, 7, 0, 6, 2, 1, 1, 4, 2, 1, 3, 2, 3, 1, 1, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,chain,memes,meme', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Solana's Layer 2 Sonic raising funds at a $100 million token valuation.\n2. Comparison between Solana and Bitcoin degens.\n3. Tracking on-chain transactions on Solana, specifically buys and sells of SOL.\n4. Launching meme coins on Solana or Asset Hub, with pros and cons of each.\n5. New Solana coin $BILLY flipping $DADDY in less than 36 hours.\n6. Growth of the Solana ecosystem leading to dilution of $SOL bid.\n7. Bearish sentiment towards $SOL and potential shorting if it reaches a certain level.\n8. Technical analysis of Solana hitting a key support level at $141.\n9. Popularity of $POPCAT and Solana meme coins.\n10. Speculation about BlackRock applying for a Solana ETF in July and its impact on the Solana ecosystem.\n11. Expectations for Solana Summer to be explosive.\n12. Discussion on the potential pump of Humble Tree ($HTREE) and its tokenomics.\n13. Speculation on Solana becoming the most promising crypto token to invest in.\n14. Reflection on past gains from $SOL during the 2021 bull market.\n15. Confidence in investing in Alt Layer1 chains during their depression phase.\n\nOverall, the discussions on Twitter revolve around Solana's performance, potential investments, meme coins, technical analysis, and future developments in the crypto industry.", - data: [ - 3, 1, 3, 2, 1, 1, 5, 4, 3, 2, 3, 2, 1, 7, 1, 2, 2, 4, 4, 1, 1, 6, 2, 4, 1, 5, 0, 4, 1, 1, 4, - 5, 0, 2, 2, 3, 3, 2, 8, 4, 0, 3, 1, 6, 14, 3, 4, 2, 2, 4, 0, 2, 3, 0, 0, - ], - }, - { - label: 'Blockchain adoption', - topics: 'blockchain,data,security,blockchains,decentralized', - description: - "The key topics currently discussed in the crypto industry on social media include:\n1. Blockchain data compression\n2. Collateral Network's ecosystem\n3. Aptos blockchain\n4. Building mainstream apps using blockchain\n5. Transparency of blockchain\n6. Blockchain adoption and data security\n7. Real-world use cases for blockchain\n8. Teaching people to use blockchain securely\n9. Enhancing security protocols in blockchain\n10. Partnerships in the blockchain industry\n11. Telos blockchain ecosystem\n12. Flux Ecosystem\n13. Casper Network\n14. Flurence Project's IPC subnet and Filecoin integration\n\nThese topics cover a wide range of discussions related to blockchain technology, security, scalability, partnerships, and real-world applications.", - data: [ - 1, 2, 0, 1, 0, 0, 13, 1, 0, 4, 2, 1, 2, 4, 1, 7, 1, 8, 3, 0, 2, 2, 0, 1, 1, 5, 1, 4, 0, 0, - 2, 1, 5, 3, 3, 4, 1, 2, 2, 2, 1, 2, 1, 0, 6, 0, 1, 3, 1, 2, 3, 4, 1, 1, 5, - ], - }, - { - label: 'ETFs', - topics: 'etfs,net,etf,saw,spot', - description: - "The key topic currently discussed on Twitter regarding the crypto industry is the significant outflows seen in Bitcoin ETFs. Fidelity's FBTC ETF has been leading the outflows, with millions of dollars exiting the funds in recent days. There is skepticism among finance professionals about Bitcoin ETFs, with some stating that ETFs go against the ethos of Bitcoin. The outflows have been consistent over the past few days, with net outflows reported in multiple ETFs. Overall, the trend seems to be a decrease in investments in Bitcoin ETFs, with significant amounts of money leaving the funds.", - data: [ - 3, 1, 0, 2, 4, 7, 0, 0, 0, 0, 1, 1, 1, 4, 6, 0, 8, 5, 3, 3, 1, 2, 0, 2, 2, 6, 1, 1, 0, 0, 0, - 1, 1, 3, 1, 4, 0, 0, 0, 0, 1, 0, 3, 1, 17, 6, 0, 0, 2, 5, 0, 4, 1, 3, 5, - ], - }, - { - label: 'SEC & ETH', - topics: 'sec,investigation,ethereum,securities,drops', - description: - 'The key topic discussed in the messages from Twitter is the SEC closing its investigation into Ethereum. This news is seen as very bullish for Ethereum and has led to a surge in its price. David Hirsch, the head of crypto asset enforcement at the SEC, has also announced his departure from the agency. Overall, the community is reacting positively to the news, with many seeing it as a significant development for Ethereum and the crypto industry as a whole.', - data: [ - 0, 0, 4, 2, 0, 0, 11, 0, 4, 2, 12, 4, 0, 1, 0, 15, 7, 0, 0, 2, 1, 0, 2, 1, 3, 0, 4, 0, 1, 1, - 5, 3, 1, 0, 0, 4, 8, 1, 1, 3, 2, 1, 3, 0, 1, 5, 2, 1, 0, 0, 3, 0, 0, 0, 0, - ], - }, - { - label: 'APE', - topics: 'dao,vote,ape,voting,group', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- ApeCoin\'s presence at NFT Fest\n- Arbitrum DAO delegates and ARB holders being different groups\n- Concerns about electronic voting machines being hacked\n- Results of the Apecoin DAO election\n- Advocacy for wider Bitcoin education in the USA\n- Decentralized blockchain voting\n- Candidates supporting crypto being favored by voters\n- Interest in building on ApeChain\n- The concept of every ape having a "demon and angel" on their shoulders\n- Building a sustainable DAO with initiatives like Ape Express\n- Successful SIP votes on The SandboxDAO\n- APE Racing partnership with IconxWorld for competitions\n\nOverall, the discussions revolve around governance, voting systems, education, partnerships, and community involvement in the crypto industry.', - data: [ - 1, 9, 1, 1, 0, 0, 0, 0, 0, 4, 1, 3, 0, 2, 0, 11, 1, 1, 1, 4, 3, 0, 1, 1, 0, 1, 1, 4, 2, 1, - 1, 0, 0, 1, 2, 0, 0, 2, 2, 2, 1, 7, 1, 1, 0, 1, 1, 1, 2, 7, 0, 0, 24, 1, 0, - ], - }, - { - label: 'ETH Price', - topics: 'ethereum,eth,price,low,demand', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto community regarding Ethereum ($ETH) include:\n\n1. Price Predictions: There are discussions about the price of Ethereum reaching $3,400, $3,600, $3,800, and potentially even $4,000 in the near future. Some users are optimistic about the price movement, while others are more cautious and expect a sideways accumulation pattern.\n\n2. ETF Launch: There is anticipation surrounding an expected spot ETF launch on July 2nd, which is seen as a bullish signal for Ethereum. The balance of Ethereum on exchanges hitting an 8-year low is also seen as a positive indicator for supply-demand dynamics.\n\n3. Market Manipulation: There are mentions of potential market manipulation, with references to \"weekly open fuckery\" and the need to add on dips. Some users express skepticism about the organic strength of Ethereum's price movement.\n\n4. Regulatory Environment: The departure of the SEC's head of crypto enforcement and the implications for Ethereum are being discussed. There is speculation about the impact of regulatory decisions on the price of Ethereum and other cryptocurrencies.\n\n5. Community Sentiment: Users are encouraged to share their thoughts on Ethereum's recent price action and whether they believe it will hit $4,000 soon. There is a mix of optimism, skepticism, and humor in the community's reactions to Ethereum's price movements.\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, market speculation, regulatory concerns, and community sentiment regarding Ethereum and its potential price movements in the near future.", - data: [ - 0, 1, 3, 0, 0, 0, 3, 0, 0, 0, 1, 1, 1, 4, 0, 2, 36, 2, 1, 2, 2, 3, 0, 2, 0, 0, 3, 0, 0, 3, - 1, 1, 0, 1, 1, 2, 2, 3, 5, 1, 1, 2, 1, 1, 3, 2, 2, 0, 3, 1, 0, 6, 1, 1, 0, - ], - }, - { - label: 'ETH ETF', - topics: 'etf,july,spot,2nd,etfs', - description: - 'The key topic discussed in the messages from twitter is the launch of a Spot Ethereum ETF expected on July 2nd. The messages indicate that there is anticipation and excitement surrounding the launch of the Ethereum ETF, with expectations of a price pump for Ethereum leading up to the ETF trading date. Analysts and experts are discussing the potential impact of the ETF on the price of Ethereum, with some suggesting that there may be red days initially due to outflows from Grayscale, but overall positive momentum is expected once inflows from other issuers increase. The SEC has given approval for the ETF filings, and there is speculation about the potential price movement of Ethereum before and after the launch of the ETF. Overall, the messages highlight the significance of the Ethereum ETF launch and its potential impact on the cryptocurrency market.', - data: [ - 4, 5, 0, 6, 1, 0, 2, 0, 0, 1, 2, 0, 2, 2, 0, 0, 26, 1, 2, 0, 5, 5, 1, 2, 0, 0, 2, 2, 0, 4, - 1, 1, 0, 0, 0, 1, 1, 2, 2, 2, 1, 0, 2, 2, 7, 2, 4, 0, 3, 0, 0, 1, 1, 2, 0, - ], - }, - { - label: 'Tether Alloy', - topics: 'tether,backed,gold,dollar,stablecoin', - description: - "The key topics discussed in the messages from twitter are:\n1. Tether launching a new stablecoin called Alloy, backed by gold\n2. Introduction of a new synthetic dollar backed by gold by Tether\n3. Bitfinex becoming the first exchange to list the new USD-denominated, gold-tethered asset\n4. Tether's initiative to boost blockchain and digital asset education in Taiwan\n5. Tether creating a new category of crypto called \"tethered assets\" starting with Alloy by Tether\n6. Gen Z and millennial investors embracing crypto, real estate, and private equity along with stocks\n7. SEC closing investigation into Ethereum 2.0 with no securities charges against ETH\n8. Usual Protocol launching a Liquid Deposit Token (LDT) backed by real-world assets such as US Treasury Bills\n9. Tether's XAUT stablecoin tied to gold physically stored in Switzerland\n10. Concerns about the stability of Tether's peg and panic premium on Bitfinex\n\nOverall, the discussions revolve around Tether's new initiatives in the crypto industry, particularly in launching stablecoins backed by gold and over-collateralized synthetic dollars. There is also a focus on the broader trends in the market, such as the interest of younger investors in various asset classes and regulatory developments in the industry.", - data: [ - 0, 2, 3, 1, 0, 0, 4, 3, 1, 0, 2, 2, 0, 7, 1, 1, 2, 0, 2, 2, 0, 3, 0, 2, 2, 5, 2, 2, 0, 1, 0, - 1, 0, 1, 1, 2, 3, 1, 2, 0, 3, 0, 0, 0, 0, 2, 0, 33, 0, 3, 2, 1, 0, 1, 0, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,whales,shib,dog', - description: - "The key topics currently being discussed on Twitter regarding Dogecoin include:\n- Dogecoin price predictions and whether to HODL or fold\n- Whale movements and retail investors' impact on market dynamics\n- Speculation on when Dogecoin might hit the $1 mark\n- Dogecoin founder's comments on the unpredictable nature of cryptocurrency markets\n- Elon Musk's influence on Dogecoin and cryptocurrency market trends\n- End of week competition related to Tamadoge leaderboard and winning TAMA tokens in crypto gaming\n- Predictions and discussions about other cryptocurrencies such as LUNC, SHIB, BabyDoge, Floki, and their potential in the market\n\nOverall, the discussions revolve around the future of Dogecoin, market trends, price predictions, and the influence of key figures like Elon Musk.", - data: [ - 3, 1, 1, 2, 0, 0, 0, 0, 1, 0, 4, 1, 2, 0, 42, 3, 0, 1, 1, 1, 4, 1, 0, 3, 1, 2, 1, 2, 3, 1, - 0, 1, 1, 0, 0, 0, 2, 3, 3, 0, 0, 0, 2, 3, 1, 0, 0, 4, 0, 0, 1, 0, 1, 0, 1, - ], - }, - { - label: 'NFTs', - topics: 'nft,nfts,bring,collection,founders', - description: - 'The messages from twitter suggest that there is a lot of discussion and speculation surrounding NFTs in the crypto industry. Some key points include:\n\n- There is a mix of regret and excitement about NFT investments, with some users expressing disbelief at their past purchases while others are optimistic about potential generational wealth.\n- Liquidity in the NFT market is decreasing, with blame placed on speculators who traded down prices. Pride in ownership is seen as important for market growth.\n- Many farmers who invested in NFTs are now leaving, leading to decreased liquidity and pressure on floor prices.\n- There is a belief that not everyone entering the NFT space will be willing to spend large amounts of money on NFTs.\n- There is criticism of the branding of NFTs, with suggestions for more luxurious and appealing names.\n- The potential for NFTs to succeed in the current market cycle is being discussed, with some founders of NFT funds expressing bullish sentiments.\n\nOverall, the sentiment around NFTs in the crypto community seems to be mixed, with both excitement and caution being expressed.', - data: [ - 1, 1, 0, 3, 0, 0, 5, 3, 1, 0, 2, 1, 0, 0, 1, 0, 2, 0, 2, 2, 3, 1, 3, 3, 1, 0, 0, 3, 0, 2, 1, - 2, 2, 0, 10, 2, 3, 2, 3, 1, 1, 1, 1, 2, 1, 1, 0, 4, 5, 0, 0, 2, 2, 1, 2, - ], - }, - { - label: 'Layer 2', - topics: 'ethereum,l2,layer,transactions,evm', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Solutions to fragmentation on Ethereum, with Aave expanding on Layer 2 solutions\n- Ethereum being positioned as the institutional chain, while Solana is seen as the retail/merchant chain\n- The importance of Layer 2 crypto projects in increasing scalability of Layer 1 chains\n- Ethereum's role as a key blockchain for stablecoins and global settlement layer\n- The debate around L2 fragmentation and its potential impact on Ethereum's competitiveness\n- The use of sidechains to alleviate congestion on the main blockchain and improve scalability\n- The addition of Lambda to L2BEAT as a featured scaling project\n- The Ethereum scaling ecosystem reaching a new all-time high in combined transactions per second (TPS)\n- The distinction between Ethereum as a security and Bitcoin as a commodity, with Ethereum initially launched as a proof-of-work network\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the crypto industry, particularly focusing on Ethereum's scalability, role in the market, and potential solutions to address fragmentation issues.", - data: [ - 2, 2, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 2, 0, 3, 2, 26, 0, 3, 2, 0, 2, 0, 0, 2, 0, 0, 3, 0, 4, - 1, 0, 0, 6, 0, 0, 0, 1, 0, 2, 3, 2, 2, 1, 0, 1, 0, 1, 0, 0, 0, 6, 3, 2, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,lending,read,decentralized', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi's importance in enabling users to make money in crypto.\n2. The potential transformation of global finance by DeFi.\n3. Chainlink's role in converging Tradfi and DeFi.\n4. The launch of Pull Oracle on Solana by PythNetwork.\n5. Anticipated DeFi trends for the second half of 2024.\n6. The collaborative effort in the growth and success of BTCDeFi.\n7. Frax Share shaping the future of decentralized finance.\n8. Onomy Protocol bridging DeFi and Forex in a decentralized future.\n9. Asset Tokenisation: TradFi vs. DeFi Showdown event by the Singapore FinTech Association and KPMG.\n10. Pendle Finance unlocking the potential of yield trading in DeFi.\n11. Summer Finance powering $5B in AUM transacting in DeFi.\n12. The latest updates in the DeFiChain ecosystem.\n\nThese topics highlight the ongoing discussions and developments in the crypto industry, particularly focusing on decentralized finance (DeFi) and its impact on the financial sector.", - data: [ - 2, 0, 0, 1, 0, 0, 1, 3, 3, 1, 0, 1, 2, 5, 2, 4, 1, 3, 2, 2, 0, 4, 2, 0, 0, 4, 4, 3, 2, 2, 0, - 2, 0, 4, 1, 3, 1, 1, 1, 0, 1, 1, 2, 0, 0, 3, 2, 1, 1, 1, 5, 2, 0, 1, 1, - ], - }, - { - label: 'MicroStrategy', - topics: 'microstrategy,notes,acquired,million,offering', - description: - "The key topics currently discussed in the crypto industry on Twitter include MicroStrategy's recent $500 million debt sale to boost their Bitcoin stash, their purchase of $786 million worth of Bitcoin, their announcement of offering convertible senior notes, and their plans to buy $700 million worth of BTC. MicroStrategy now holds a total of 226,331 bitcoins valued at almost $15 billion. There is also discussion about the correlation between Bitcoin's value and MicroStrategy's stock price, with Wall Street analysts updating their price target for $MSTR. Additionally, MicroStrategy has received an outperform rating from Bernstein with a price target of $2,890, as Bitcoin's price is expected to hit $1 million. The company has also announced a $200 million increase in the debt offering to buy more Bitcoin. Overall, MicroStrategy is making significant moves in the crypto industry and continues to increase its Bitcoin holdings.", - data: [ - 8, 0, 0, 1, 1, 2, 8, 3, 1, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 3, 3, 0, 0, 2, 0, 2, - 1, 25, 0, 0, 2, 0, 1, 0, 5, 0, 0, 0, 0, 0, 1, 1, 0, 0, 2, 1, 4, 0, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-25.json b/priv/repo/major_topics_seed/data-25.json deleted file mode 100644 index 7a172b5d75..0000000000 --- a/priv/repo/major_topics_seed/data-25.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["20.06.24","21.06.24","21.06.24","21.06.24","21.06.24","21.06.24","21.06.24","21.06.24","22.06.24","22.06.24","22.06.24","22.06.24","22.06.24","22.06.24","22.06.24","22.06.24","23.06.24","23.06.24","23.06.24","23.06.24","23.06.24","23.06.24","23.06.24","23.06.24","24.06.24","24.06.24","24.06.24","24.06.24","24.06.24","24.06.24","24.06.24","24.06.24","25.06.24","25.06.24","25.06.24","25.06.24","25.06.24","25.06.24","25.06.24","25.06.24","26.06.24","26.06.24","26.06.24","26.06.24","26.06.24","26.06.24","26.06.24","26.06.24","27.06.24","27.06.24","27.06.24","27.06.24","27.06.24","27.06.24","27.06.24"],"datasets":[{"label":"BTC Price","topics":"btc,range,price,60k,support","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin price movements: There is discussion about the current price of Bitcoin, with mentions of a potential Inverse Head and Shoulders pattern, a possible ABC correction, and the importance of key support levels such as $60,000 and $64,000. Analysts are also debating whether Bitcoin will bounce back or continue to show weakness.\n\n2. Market sentiment: Traders and analysts are sharing their views on the market sentiment surrounding Bitcoin, with mentions of a \"healthy reset\" of bullish sentiment, the Mayer Multiple indicator hitting a low, and the recent bearish performance of Bitcoin.\n\n3. Technical analysis: There are discussions about key technical indicators for Bitcoin, such as rejection at certain price levels, consolidation patterns, and the formation of a potential Macro Bull Flag. Traders are also predicting potential price movements and support levels for Bitcoin.\n\n4. Altcoins: There is speculation about how altcoins will respond to Bitcoin's price movements, with traders considering whether altcoins will follow Bitcoin's lead or chart their own course.\n\nOverall, the sentiment on Twitter seems to be a mix of caution, optimism, and uncertainty as traders and analysts closely monitor Bitcoin's price movements and market trends.","data":[7,5,6,11,45,80,16,39,5,7,16,15,14,14,8,16,5,20,10,9,8,11,4,18,10,13,5,9,7,14,16,7,8,6,8,8,12,28,14,21,12,11,7,16,9,11,14,11,13,13,10,13,8,17,4]},{"label":"BTC","topics":"fiat,bitcoin,money,currency,value","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin being seen as a fundamental ethical law\n- Bitcoin potentially changing the current financial system\n- Bitcoin being compared to fiat currency\n- Bitcoin's impact on the financial system and potential re-pricing in sats\n- Bitcoin as a yield-producing asset\n- Bitcoin network adapting and experiencing growing pains\n- The potential for Bitcoin to be used as collateral for loans\n- The comparison between fiat currency and Bitcoin in terms of scarcity and value\n\nOverall, the sentiment towards Bitcoin seems positive, with discussions focusing on its potential to revolutionize the financial industry and its value compared to traditional fiat currency.","data":[11,7,6,5,60,63,8,11,6,10,10,16,10,7,13,11,2,8,14,13,6,7,7,13,8,9,4,10,10,8,13,11,16,12,8,15,13,10,9,11,15,14,5,13,7,15,11,14,14,4,18,8,10,7,11]},{"label":"SOL ETF","topics":"solana,sol,etf,files,actions","description":"The key topics discussed in the messages from twitter are:\n1. Solana ETF filing by VanEck\n2. Solana-Focused Fund raising $60 million\n3. Integration of crypto payments by Solana Foundation\n4. Price predictions for various cryptocurrencies in 2024\n5. SEC approval for spot crypto ETF\n6. Technical analysis on Solana price movement\n7. Top themes of the week including BTC, ETH, and SOL performance\n8. SORA community-led network for blockchain applications\n9. Comparison of Solana with other altcoins\n10. Research on microcap cryptocurrency $SUBF and its rebranding\n\nThese topics indicate a strong interest and discussion around Solana, ETF filings, price predictions, regulatory approvals, technical analysis, and emerging cryptocurrency projects.","data":[16,12,5,6,3,1,20,9,7,6,4,2,9,5,3,9,31,5,18,7,5,6,6,12,12,6,9,9,11,7,8,8,4,11,9,2,5,10,8,8,11,12,13,4,47,7,7,10,6,6,8,37,6,3,6]},{"label":"GameFI","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Web3 gaming and the search for a killer web3 game\n- GameFi and NFT gaming\n- New developments in the crypto industry such as new defi protocols, games, and marketplaces\n- Trinity3 as a game changer in the web3 gaming space\n- Play to earn tokens like Rebel Cars $RC\n- Integration of gaming with groundbreaking technologies like nuclear fusion research\n- The upcoming playtest and partnership games in the HyperScale Alpha\n- The ZayederRevolution and the revolutionary Web3 game experience\n\nOverall, the crypto community on social media is actively discussing the latest trends and developments in the industry, with a focus on gaming, technology integration, and innovative projects.","data":[7,4,4,9,2,0,5,4,7,7,11,3,8,1,12,8,5,12,6,7,43,9,6,6,12,4,10,10,5,4,10,8,5,12,14,7,16,3,7,8,3,4,3,5,4,5,1,5,10,9,7,2,11,8,8]},{"label":"AI","topics":"ai,model,use,voice,content","description":"The key topics currently discussed in the crypto industry on social media include artificial intelligence (AI) in education, AI safety, AI inference in a Trusted Execution Environment (TEE), OpenAI's ChatGPT Voice Mode delay, enterprise AI funding, general AI principles, China-developed AI tutor apps, the importance of reliable data for AI training, and the popularity of \"I'm dating a model\" merch in the community. Additionally, there are discussions about AI benchmarks, the growth of AI, and the value stack of AI.","data":[18,45,5,6,0,0,6,5,5,8,5,7,8,7,6,3,4,10,10,5,5,5,5,5,8,7,6,12,7,2,5,3,2,4,4,10,9,7,6,8,8,12,6,6,8,2,10,10,6,5,7,10,4,3,7]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Memecoins and their potential for reaching the moon\n- Ethereum as a platform for memecoins\n- Meme contests and meme-centric digital assets\n- Token Curated Registry (TCR) for culturally relevant memes\n- Gaslighting about the value of memecoins\n- Listing of new memecoins on exchanges\n- Top performing meme coins\n- Community engagement and lessons learned from meme spaces\n- Fun and engagement on social media platforms like Blast_L2\n\nOverall, the discussion revolves around the popularity and potential profitability of memecoins, as well as the community aspect and engagement within the crypto industry.","data":[1,1,5,10,1,4,5,1,13,2,7,5,5,7,8,5,2,2,3,3,6,12,4,5,3,4,3,9,4,3,7,79,11,10,6,7,4,4,6,7,3,3,7,6,5,0,9,7,11,4,8,2,6,3,5]},{"label":"BLAST","topics":"blast,gold,blastl2,airdrop,farming","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. $BLAST: The cryptocurrency Blast (BLAST) is being actively traded on BitMart and Bitget, with mentions of claiming BLAST from airdrops and upcoming competitions related to Blast.\n\n2. NFTs: There is a discussion about Blur farming and its impact on NFTs, with a sarcastic tone questioning how Blur farming could be negative for NFTs.\n\n3. Sherbets Weekly Race: Mention of an infinite prize pool in Sherbets Weekly Race, where every bet increases the prize pool with no limit.\n\n4. Perp Dex Points Farmer: Reference to being a profitable trader by farming perp dex points.\n\n5. Bullish Sentiment: People are expressing bullish sentiment towards $BLAST, indicating optimism about its future performance.\n\n6. Gambling: Winning at gambling is described as improving one's outlook on life and making them happier.\n\n7. TGE (Token Generation Event): Congratulations to Blast (BLAST) on the TGE, with mentions of upcoming Cave Quests and partnerships with HyperlockFi.\n\n8. Aura: Mention of Aura's first franchise, HyperlockFi, as a premier place to stack yield on Blast, with details about airdrops and pool incentives.\n\n9. New Listing: Blast (BLAST) is listed on Hotcoin.com with a trading pair of BLAST/USDT starting on June 26th.\n\nOverall, the messages reflect a mix of excitement, optimism, and discussions about trading, airdrops, competitions, and partnerships within the crypto industry.","data":[4,4,6,6,2,1,51,2,4,3,5,4,3,5,2,6,7,5,14,5,5,9,4,1,3,3,2,6,8,6,7,3,3,9,2,3,7,4,0,5,4,3,4,4,2,4,3,5,3,3,2,2,10,4,3]},{"label":"Art","topics":"art,artists,artist,digital,work","description":"The key topics discussed in the messages from twitter about the crypto industry include NFT art, Tokyo art gallery, painting exhibitions, artist motivation, Isometric art, Brazilian crypto art scene, art experiments, code-based art, and leveraging atomic lore in curating art exhibitions. The messages also mention specific artists like @OriginalGoldCat and @OttisOts, as well as platforms like @lerandomart and @monkantony_tez. Overall, the discussions revolve around the creativity, innovation, and community engagement within the crypto art world.","data":[5,2,55,6,0,0,1,5,3,0,9,4,6,6,7,7,4,2,6,10,6,4,1,1,3,4,2,3,3,4,12,3,4,6,2,8,4,2,3,4,2,2,4,2,3,4,5,1,4,1,9,3,4,1,10]},{"label":"PEPE","topics":"pepe,cap,frens,market,million","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the following:\n- $PEPE coin and its potential for a price increase\n- The importance of buying and holding $PEPE\n- Speculation about $PEPE making a significant move soon\n- The potential for $PEPE to meet $KAS\n- Positive sentiment towards $PEPE and its community\n- Recommendations to follow $PEPE for investment signals\n- Discussion about other cryptocurrencies like $LTC and $PRENDY\n- Mention of Emblem Markets and potential purchases with $PEPE\n- Excitement about the crypto space waking up and choosing quality investments\n- Mention of $PEEZY as a risky investment with potential for a pump\n\nOverall, it appears that the sentiment towards $PEPE is positive, with users expressing confidence in its potential for growth and encouraging others to consider investing in it.","data":[1,0,2,4,0,0,3,1,1,0,5,1,0,3,3,4,0,2,1,13,1,2,6,4,2,2,0,3,3,1,1,7,2,3,4,6,44,3,2,6,2,1,4,3,4,3,3,4,4,1,3,2,1,2,2]},{"label":"DOGE","topics":"doge,dogecoin,dog,wif,shib","description":"The key topics currently being discussed in the crypto community on Twitter include Dogecoin, WIF, Elon Musk's potential involvement in Dogecoin, and the performance of various cryptocurrencies such as $Kai and $WULF. There is excitement and speculation surrounding the potential for Dogecoin to increase in value, with some users expressing support for the cryptocurrency. Additionally, there is discussion about the price movements of different cryptocurrencies and the potential for significant gains in the market. Overall, the sentiment appears to be optimistic and enthusiastic about the future of these digital assets.","data":[0,2,2,3,2,0,0,1,6,2,3,2,0,2,22,20,2,3,5,2,4,6,3,4,4,2,2,1,8,3,4,3,2,0,4,1,1,3,4,1,0,2,1,8,1,5,1,4,3,1,1,1,2,4,1]},{"label":"CPI","topics":"inflation,fed,rate,impact,economy","description":"The key topics discussed in the messages from twitter include:\n- Inflation and taxes\n- Federal Reserve's interest rate cuts\n- Gold futures and cryptocurrency market\n- US Treasury Secretary Yellen's housing efforts\n- US inflation drivers and policy implications\n- Market predictions on Fed interest rate cuts\n- Household sentiment on equities\n- Potential financial collapse and return to gold standard\n- National defense markets and future growth areas\n- Central banks' policy effectiveness\n- Economic outlook for the US dollar and Europe\n\nOverall, the messages reflect discussions on economic indicators, market trends, government policies, and potential impacts on various sectors.","data":[1,1,1,3,0,0,3,0,1,0,2,4,2,6,1,5,2,3,2,2,4,3,1,5,3,21,4,6,2,0,21,16,0,1,2,4,1,2,0,2,6,4,0,3,1,3,2,2,1,2,2,4,1,1,2]},{"label":"BTC Mining","topics":"mining,miners,capitulation,bitcoin,energy","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining operations and efficiency\n- Investment firms betting on AI transition in crypto-mining industry\n- Acquisitions in the Bitcoin mining sector\n- Global energy consumption for Bitcoin mining\n- Trading of Bitcoin mining rigs as assets\n- Awarding of extraction rights for minerals in Norway\n- Energy efficiency and waste conversion in Bitcoin mining\n- Launch of new Antminer S21 series for Bitcoin mining\n- Performance of mining stocks with AI exposure\n- Need for reliable energy generation in Texas to reduce price volatility\n- Impact of Bitcoin mining on energy consumption and pricing in Texas","data":[4,1,2,0,5,24,1,1,2,3,5,0,1,0,1,1,1,0,0,4,1,5,1,8,2,9,2,4,1,4,1,0,19,2,9,3,1,1,1,1,1,4,4,3,4,0,2,0,3,0,1,4,2,1,0]},{"label":"Crypto Events","topics":"register,join,reminder,hack,july","description":"The key topics currently being discussed on Twitter in the crypto industry include upcoming events such as the ALPHA Festa de São João do Porto festival, Deep Tech Week in Oakland, IVS in Japan, EthCC in Brussels, and the Bitcoin Builders Conference. There are also mentions of speaking engagements by industry leaders like Dmitry Gerasimov, Dominic Wörner, and Tony Tong. Additionally, there are announcements about community calls, meetups, and AMAs with Coinmetro and PropbaseApp. Overall, the crypto community on Twitter is actively engaged in discussing various events, speakers, and opportunities within the industry.","data":[2,0,0,2,0,0,0,0,3,1,5,2,1,1,0,0,6,5,3,3,0,3,3,3,4,1,20,2,0,5,1,3,0,0,2,0,0,2,0,2,10,1,1,5,7,1,2,1,0,8,1,2,1,3,1]},{"label":"Mt.Gox ","topics":"mt,gox,mtgox,july,cash","description":"The key topics currently being discussed on social media regarding the crypto industry are related to Mt. Gox and its upcoming Bitcoin and Bitcoin Cash repayments starting in July 2024. There is speculation about the impact of these repayments on the market, with some suggesting that the recent price dump in Bitcoin is due to the news of Mt. Gox starting its reimburse plan. There are also concerns about potential FUD (fear, uncertainty, doubt) being spread by Mt. Gox to manipulate the market. Overall, the community seems divided on whether the Mt. Gox repayments will have a positive or negative effect on Bitcoin prices.","data":[0,4,0,11,3,4,4,1,0,0,1,3,3,1,7,0,0,1,3,0,2,1,3,1,2,1,2,3,0,2,1,1,2,1,1,1,1,0,1,6,5,7,4,1,1,5,0,1,5,1,5,1,1,0,3]},{"label":"DeFi ","topics":"defi,depin,decentralized,network,infrastructure","description":"The key topics discussed in the messages from twitter are:\n1. DeFi (Decentralized Finance)\n2. Stablecoins\n3. DAO (Decentralized Autonomous Organization)\n4. Crowdfunding\n5. Institutional DeFi\n6. DEX (Decentralized Exchange)\n7. Monetization of DeFi apps\n8. Lovely Finance open-source DeFi Project\n9. UNCX Network DeFi solutions\n10. XSGD expansion to Avalanche C-Chain\n11. STRK (StrikeFinance) and DeFi Friday\n12. DeFi 2.0 and Olympus Dao collapse\n\nThese topics cover a range of subjects within the crypto industry, including new developments, projects, and challenges faced by the community.","data":[1,5,1,1,0,1,0,1,0,1,1,4,2,4,5,0,1,3,2,1,0,0,2,3,2,5,4,0,2,1,2,1,1,2,3,3,6,2,5,0,6,1,1,3,0,0,2,2,2,1,1,3,1,2,1]},{"label":"BTC ETF","topics":"net,saw,etfs,flows,inflows","description":"The key topic currently discussed on Twitter is the significant outflows from Bitcoin ETFs, particularly in the US spot market. There have been consecutive days of outflows totaling billions of dollars, with some ETFs experiencing heavy withdrawals. However, there have been recent signs of a reversal, with some ETFs seeing net inflows after a period of outflows. Analysts are closely monitoring these movements and predicting potential market rallies in the coming months. Additionally, there is a focus on BlackRock's IBIT ETF, which has shown stability and only experienced one outflow since its launch, coinciding with a local Bitcoin bottom. This has led to speculation about the ETF's potential impact on the market.","data":[1,0,0,0,12,2,0,0,0,0,0,0,1,3,2,0,6,0,2,0,0,0,0,0,3,5,0,2,1,0,0,0,2,5,0,3,0,1,0,2,1,0,8,1,23,0,1,0,0,5,1,3,0,2,5]},{"label":"NFT","topics":"nfts,nft,pfp,dead,think","description":"The key topics discussed in the messages from twitter are:\n1. The survival of projects in the NFT market during the bear market.\n2. The comparison of NFTs as \"conviction assets\" similar to Bitcoin and Ether.\n3. The disappointment in old legacy NFT collections compared to new ones.\n4. The dominance of Mutant Apes and Bored Apes over Miladys in the NFT market.\n5. The shift towards building NFTs off brand/community and rewarding holders.\n6. The observation that retail investors are struggling in the current market cycle.\n7. The diversity of NFT types, including collectibles, memberships, gaming items, and token yield.\n8. The longevity and strength of NFT traders in the market.\n9. The suggestion to do deep dives on NFT collections with low floors but consistent growth.\n10. The belief in the long-term value of NFTs as a store of value for art, music, and gaming assets.","data":[0,0,0,5,0,0,4,1,1,1,2,3,2,2,2,1,0,2,4,3,3,1,1,1,2,2,0,2,0,4,3,1,1,4,8,1,2,1,3,0,4,3,0,0,0,1,5,2,5,1,0,2,1,1,3]},{"label":"Altcoins","topics":"altseason,altcoins,hodl,crypto,cryptocurrency","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- #DePIN and #Gaming\n- $SPX\n- #Stocks, #GOLD, #BTC, #Bitcoin\n- $high\n- #crypto, #cryptocurrency, #altcoins, #altseason\n- $btc, $eth\n- #xyo\n- #HODL\n- $vara\n- $trb\n- $fet\n- Coinbase delisting\n- Whales manipulating #btc\n- UBS raising PT on XOM\n- $aero\n\nOverall, the sentiment seems to be focused on potential pumps, exits, delistings, and price predictions for various cryptocurrencies. There is also discussion about specific coins like $vara, $trb, $fet, and $xyo, as well as general market trends such as altseason and HODLing strategies.","data":[4,0,0,4,0,0,4,2,0,3,1,0,2,0,0,2,0,1,2,2,2,0,0,9,4,0,2,0,1,2,0,0,1,1,2,4,0,3,2,1,0,3,1,0,1,2,8,1,2,5,1,2,4,1,1]},{"label":"XRP","topics":"xrp,ripple,sec,ceo,price","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Ripple CEO's controversial statement about SEC Chair Gary Gensler potentially causing Biden to lose the election.\n2. XRP price glitch displaying a trading price of $62,032 on Kraken.\n3. Ripple's ongoing legal battle with the SEC and the impact on XRP's price.\n4. Speculation about XRP's future price breakout to $7.5 and potential new all-time high.\n5. Positive performance indicators for Ripple, with sales up 7% and active XRP addresses and transactions increasing significantly.\n6. Ripple community members expressing support and enthusiasm for XRP, including a humorous message from a user's father.\n7. Ripple's Chief Legal Officer criticizing the SEC's handling of legal battles.\n8. On-chain data suggesting a significant whale dump affecting XRP's price in the market.\nOverall, the discussions on Twitter reflect a mix of legal challenges, price speculation, community support, and market analysis related to Ripple and XRP.","data":[2,1,2,0,1,0,6,1,2,2,2,3,1,1,1,0,1,5,0,1,0,0,0,1,0,0,2,0,2,1,1,2,0,1,1,1,0,9,2,2,0,5,0,1,1,0,2,1,0,1,1,0,0,1,2]},{"label":"German Government BTC balance","topics":"german,government,germany,kraken,transferred","description":"The key topics currently discussed in the messages from twitter about the crypto industry are:\n1. The German government's balance sheet for Bitcoin looks bearish, with significant amounts of BTC being transferred to exchanges.\n2. Germany has been selling off large amounts of Bitcoin, causing fluctuations in the market.\n3. The US government is also selling seized Bitcoin, adding to the market dynamics.\n4. Mt. Gox is distributing BTC after a decade, impacting the market.\n5. The German government's actions in the crypto market are being compared to beginner traders, with concerns about their approach.\n6. The German government holds a significant amount of BTC, currently worth over $2.8 billion.\n7. There is increased volatility in the crypto market, leading to severe price drops.\n8. A limited documentary series about the OneCoin pseudo-crypto Ponzi scheme is premiering in Germany.\n9. The German government has been involved in various transactions involving large sums of Bitcoin, including sending BTC to exchanges and different addresses.\n10. Overall, the actions of the German government in the crypto market are closely monitored and analyzed by the community.","data":[4,2,0,1,0,1,1,0,0,0,1,1,0,1,0,4,0,1,0,1,26,1,1,2,1,3,3,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,3,1,0,2,0,1,1,2,0,1,1,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-25.ts b/priv/repo/major_topics_seed/data-25.ts deleted file mode 100644 index daff8ee557..0000000000 --- a/priv/repo/major_topics_seed/data-25.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '20.06.24', - '21.06.24', - '21.06.24', - '21.06.24', - '21.06.24', - '21.06.24', - '21.06.24', - '21.06.24', - '22.06.24', - '22.06.24', - '22.06.24', - '22.06.24', - '22.06.24', - '22.06.24', - '22.06.24', - '22.06.24', - '23.06.24', - '23.06.24', - '23.06.24', - '23.06.24', - '23.06.24', - '23.06.24', - '23.06.24', - '23.06.24', - '24.06.24', - '24.06.24', - '24.06.24', - '24.06.24', - '24.06.24', - '24.06.24', - '24.06.24', - '24.06.24', - '25.06.24', - '25.06.24', - '25.06.24', - '25.06.24', - '25.06.24', - '25.06.24', - '25.06.24', - '25.06.24', - '26.06.24', - '26.06.24', - '26.06.24', - '26.06.24', - '26.06.24', - '26.06.24', - '26.06.24', - '26.06.24', - '27.06.24', - '27.06.24', - '27.06.24', - '27.06.24', - '27.06.24', - '27.06.24', - '27.06.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,range,price,60k,support', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin price movements: There is discussion about the current price of Bitcoin, with mentions of a potential Inverse Head and Shoulders pattern, a possible ABC correction, and the importance of key support levels such as $60,000 and $64,000. Analysts are also debating whether Bitcoin will bounce back or continue to show weakness.\n\n2. Market sentiment: Traders and analysts are sharing their views on the market sentiment surrounding Bitcoin, with mentions of a \"healthy reset\" of bullish sentiment, the Mayer Multiple indicator hitting a low, and the recent bearish performance of Bitcoin.\n\n3. Technical analysis: There are discussions about key technical indicators for Bitcoin, such as rejection at certain price levels, consolidation patterns, and the formation of a potential Macro Bull Flag. Traders are also predicting potential price movements and support levels for Bitcoin.\n\n4. Altcoins: There is speculation about how altcoins will respond to Bitcoin's price movements, with traders considering whether altcoins will follow Bitcoin's lead or chart their own course.\n\nOverall, the sentiment on Twitter seems to be a mix of caution, optimism, and uncertainty as traders and analysts closely monitor Bitcoin's price movements and market trends.", - data: [ - 7, 5, 6, 11, 45, 80, 16, 39, 5, 7, 16, 15, 14, 14, 8, 16, 5, 20, 10, 9, 8, 11, 4, 18, 10, - 13, 5, 9, 7, 14, 16, 7, 8, 6, 8, 8, 12, 28, 14, 21, 12, 11, 7, 16, 9, 11, 14, 11, 13, 13, - 10, 13, 8, 17, 4, - ], - }, - { - label: 'BTC', - topics: 'fiat,bitcoin,money,currency,value', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin being seen as a fundamental ethical law\n- Bitcoin potentially changing the current financial system\n- Bitcoin being compared to fiat currency\n- Bitcoin's impact on the financial system and potential re-pricing in sats\n- Bitcoin as a yield-producing asset\n- Bitcoin network adapting and experiencing growing pains\n- The potential for Bitcoin to be used as collateral for loans\n- The comparison between fiat currency and Bitcoin in terms of scarcity and value\n\nOverall, the sentiment towards Bitcoin seems positive, with discussions focusing on its potential to revolutionize the financial industry and its value compared to traditional fiat currency.", - data: [ - 11, 7, 6, 5, 60, 63, 8, 11, 6, 10, 10, 16, 10, 7, 13, 11, 2, 8, 14, 13, 6, 7, 7, 13, 8, 9, - 4, 10, 10, 8, 13, 11, 16, 12, 8, 15, 13, 10, 9, 11, 15, 14, 5, 13, 7, 15, 11, 14, 14, 4, 18, - 8, 10, 7, 11, - ], - }, - { - label: 'SOL ETF', - topics: 'solana,sol,etf,files,actions', - description: - 'The key topics discussed in the messages from twitter are:\n1. Solana ETF filing by VanEck\n2. Solana-Focused Fund raising $60 million\n3. Integration of crypto payments by Solana Foundation\n4. Price predictions for various cryptocurrencies in 2024\n5. SEC approval for spot crypto ETF\n6. Technical analysis on Solana price movement\n7. Top themes of the week including BTC, ETH, and SOL performance\n8. SORA community-led network for blockchain applications\n9. Comparison of Solana with other altcoins\n10. Research on microcap cryptocurrency $SUBF and its rebranding\n\nThese topics indicate a strong interest and discussion around Solana, ETF filings, price predictions, regulatory approvals, technical analysis, and emerging cryptocurrency projects.', - data: [ - 16, 12, 5, 6, 3, 1, 20, 9, 7, 6, 4, 2, 9, 5, 3, 9, 31, 5, 18, 7, 5, 6, 6, 12, 12, 6, 9, 9, - 11, 7, 8, 8, 4, 11, 9, 2, 5, 10, 8, 8, 11, 12, 13, 4, 47, 7, 7, 10, 6, 6, 8, 37, 6, 3, 6, - ], - }, - { - label: 'GameFI', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Web3 gaming and the search for a killer web3 game\n- GameFi and NFT gaming\n- New developments in the crypto industry such as new defi protocols, games, and marketplaces\n- Trinity3 as a game changer in the web3 gaming space\n- Play to earn tokens like Rebel Cars $RC\n- Integration of gaming with groundbreaking technologies like nuclear fusion research\n- The upcoming playtest and partnership games in the HyperScale Alpha\n- The ZayederRevolution and the revolutionary Web3 game experience\n\nOverall, the crypto community on social media is actively discussing the latest trends and developments in the industry, with a focus on gaming, technology integration, and innovative projects.', - data: [ - 7, 4, 4, 9, 2, 0, 5, 4, 7, 7, 11, 3, 8, 1, 12, 8, 5, 12, 6, 7, 43, 9, 6, 6, 12, 4, 10, 10, - 5, 4, 10, 8, 5, 12, 14, 7, 16, 3, 7, 8, 3, 4, 3, 5, 4, 5, 1, 5, 10, 9, 7, 2, 11, 8, 8, - ], - }, - { - label: 'AI', - topics: 'ai,model,use,voice,content', - description: - 'The key topics currently discussed in the crypto industry on social media include artificial intelligence (AI) in education, AI safety, AI inference in a Trusted Execution Environment (TEE), OpenAI\'s ChatGPT Voice Mode delay, enterprise AI funding, general AI principles, China-developed AI tutor apps, the importance of reliable data for AI training, and the popularity of "I\'m dating a model" merch in the community. Additionally, there are discussions about AI benchmarks, the growth of AI, and the value stack of AI.', - data: [ - 18, 45, 5, 6, 0, 0, 6, 5, 5, 8, 5, 7, 8, 7, 6, 3, 4, 10, 10, 5, 5, 5, 5, 5, 8, 7, 6, 12, 7, - 2, 5, 3, 2, 4, 4, 10, 9, 7, 6, 8, 8, 12, 6, 6, 8, 2, 10, 10, 6, 5, 7, 10, 4, 3, 7, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Memecoins and their potential for reaching the moon\n- Ethereum as a platform for memecoins\n- Meme contests and meme-centric digital assets\n- Token Curated Registry (TCR) for culturally relevant memes\n- Gaslighting about the value of memecoins\n- Listing of new memecoins on exchanges\n- Top performing meme coins\n- Community engagement and lessons learned from meme spaces\n- Fun and engagement on social media platforms like Blast_L2\n\nOverall, the discussion revolves around the popularity and potential profitability of memecoins, as well as the community aspect and engagement within the crypto industry.', - data: [ - 1, 1, 5, 10, 1, 4, 5, 1, 13, 2, 7, 5, 5, 7, 8, 5, 2, 2, 3, 3, 6, 12, 4, 5, 3, 4, 3, 9, 4, 3, - 7, 79, 11, 10, 6, 7, 4, 4, 6, 7, 3, 3, 7, 6, 5, 0, 9, 7, 11, 4, 8, 2, 6, 3, 5, - ], - }, - { - label: 'BLAST', - topics: 'blast,gold,blastl2,airdrop,farming', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. $BLAST: The cryptocurrency Blast (BLAST) is being actively traded on BitMart and Bitget, with mentions of claiming BLAST from airdrops and upcoming competitions related to Blast.\n\n2. NFTs: There is a discussion about Blur farming and its impact on NFTs, with a sarcastic tone questioning how Blur farming could be negative for NFTs.\n\n3. Sherbets Weekly Race: Mention of an infinite prize pool in Sherbets Weekly Race, where every bet increases the prize pool with no limit.\n\n4. Perp Dex Points Farmer: Reference to being a profitable trader by farming perp dex points.\n\n5. Bullish Sentiment: People are expressing bullish sentiment towards $BLAST, indicating optimism about its future performance.\n\n6. Gambling: Winning at gambling is described as improving one's outlook on life and making them happier.\n\n7. TGE (Token Generation Event): Congratulations to Blast (BLAST) on the TGE, with mentions of upcoming Cave Quests and partnerships with HyperlockFi.\n\n8. Aura: Mention of Aura's first franchise, HyperlockFi, as a premier place to stack yield on Blast, with details about airdrops and pool incentives.\n\n9. New Listing: Blast (BLAST) is listed on Hotcoin.com with a trading pair of BLAST/USDT starting on June 26th.\n\nOverall, the messages reflect a mix of excitement, optimism, and discussions about trading, airdrops, competitions, and partnerships within the crypto industry.", - data: [ - 4, 4, 6, 6, 2, 1, 51, 2, 4, 3, 5, 4, 3, 5, 2, 6, 7, 5, 14, 5, 5, 9, 4, 1, 3, 3, 2, 6, 8, 6, - 7, 3, 3, 9, 2, 3, 7, 4, 0, 5, 4, 3, 4, 4, 2, 4, 3, 5, 3, 3, 2, 2, 10, 4, 3, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,digital,work', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include NFT art, Tokyo art gallery, painting exhibitions, artist motivation, Isometric art, Brazilian crypto art scene, art experiments, code-based art, and leveraging atomic lore in curating art exhibitions. The messages also mention specific artists like @OriginalGoldCat and @OttisOts, as well as platforms like @lerandomart and @monkantony_tez. Overall, the discussions revolve around the creativity, innovation, and community engagement within the crypto art world.', - data: [ - 5, 2, 55, 6, 0, 0, 1, 5, 3, 0, 9, 4, 6, 6, 7, 7, 4, 2, 6, 10, 6, 4, 1, 1, 3, 4, 2, 3, 3, 4, - 12, 3, 4, 6, 2, 8, 4, 2, 3, 4, 2, 2, 4, 2, 3, 4, 5, 1, 4, 1, 9, 3, 4, 1, 10, - ], - }, - { - label: 'PEPE', - topics: 'pepe,cap,frens,market,million', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the following:\n- $PEPE coin and its potential for a price increase\n- The importance of buying and holding $PEPE\n- Speculation about $PEPE making a significant move soon\n- The potential for $PEPE to meet $KAS\n- Positive sentiment towards $PEPE and its community\n- Recommendations to follow $PEPE for investment signals\n- Discussion about other cryptocurrencies like $LTC and $PRENDY\n- Mention of Emblem Markets and potential purchases with $PEPE\n- Excitement about the crypto space waking up and choosing quality investments\n- Mention of $PEEZY as a risky investment with potential for a pump\n\nOverall, it appears that the sentiment towards $PEPE is positive, with users expressing confidence in its potential for growth and encouraging others to consider investing in it.', - data: [ - 1, 0, 2, 4, 0, 0, 3, 1, 1, 0, 5, 1, 0, 3, 3, 4, 0, 2, 1, 13, 1, 2, 6, 4, 2, 2, 0, 3, 3, 1, - 1, 7, 2, 3, 4, 6, 44, 3, 2, 6, 2, 1, 4, 3, 4, 3, 3, 4, 4, 1, 3, 2, 1, 2, 2, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dog,wif,shib', - description: - "The key topics currently being discussed in the crypto community on Twitter include Dogecoin, WIF, Elon Musk's potential involvement in Dogecoin, and the performance of various cryptocurrencies such as $Kai and $WULF. There is excitement and speculation surrounding the potential for Dogecoin to increase in value, with some users expressing support for the cryptocurrency. Additionally, there is discussion about the price movements of different cryptocurrencies and the potential for significant gains in the market. Overall, the sentiment appears to be optimistic and enthusiastic about the future of these digital assets.", - data: [ - 0, 2, 2, 3, 2, 0, 0, 1, 6, 2, 3, 2, 0, 2, 22, 20, 2, 3, 5, 2, 4, 6, 3, 4, 4, 2, 2, 1, 8, 3, - 4, 3, 2, 0, 4, 1, 1, 3, 4, 1, 0, 2, 1, 8, 1, 5, 1, 4, 3, 1, 1, 1, 2, 4, 1, - ], - }, - { - label: 'CPI', - topics: 'inflation,fed,rate,impact,economy', - description: - "The key topics discussed in the messages from twitter include:\n- Inflation and taxes\n- Federal Reserve's interest rate cuts\n- Gold futures and cryptocurrency market\n- US Treasury Secretary Yellen's housing efforts\n- US inflation drivers and policy implications\n- Market predictions on Fed interest rate cuts\n- Household sentiment on equities\n- Potential financial collapse and return to gold standard\n- National defense markets and future growth areas\n- Central banks' policy effectiveness\n- Economic outlook for the US dollar and Europe\n\nOverall, the messages reflect discussions on economic indicators, market trends, government policies, and potential impacts on various sectors.", - data: [ - 1, 1, 1, 3, 0, 0, 3, 0, 1, 0, 2, 4, 2, 6, 1, 5, 2, 3, 2, 2, 4, 3, 1, 5, 3, 21, 4, 6, 2, 0, - 21, 16, 0, 1, 2, 4, 1, 2, 0, 2, 6, 4, 0, 3, 1, 3, 2, 2, 1, 2, 2, 4, 1, 1, 2, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,capitulation,bitcoin,energy', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining operations and efficiency\n- Investment firms betting on AI transition in crypto-mining industry\n- Acquisitions in the Bitcoin mining sector\n- Global energy consumption for Bitcoin mining\n- Trading of Bitcoin mining rigs as assets\n- Awarding of extraction rights for minerals in Norway\n- Energy efficiency and waste conversion in Bitcoin mining\n- Launch of new Antminer S21 series for Bitcoin mining\n- Performance of mining stocks with AI exposure\n- Need for reliable energy generation in Texas to reduce price volatility\n- Impact of Bitcoin mining on energy consumption and pricing in Texas', - data: [ - 4, 1, 2, 0, 5, 24, 1, 1, 2, 3, 5, 0, 1, 0, 1, 1, 1, 0, 0, 4, 1, 5, 1, 8, 2, 9, 2, 4, 1, 4, - 1, 0, 19, 2, 9, 3, 1, 1, 1, 1, 1, 4, 4, 3, 4, 0, 2, 0, 3, 0, 1, 4, 2, 1, 0, - ], - }, - { - label: 'Crypto Events', - topics: 'register,join,reminder,hack,july', - description: - 'The key topics currently being discussed on Twitter in the crypto industry include upcoming events such as the ALPHA Festa de São João do Porto festival, Deep Tech Week in Oakland, IVS in Japan, EthCC in Brussels, and the Bitcoin Builders Conference. There are also mentions of speaking engagements by industry leaders like Dmitry Gerasimov, Dominic Wörner, and Tony Tong. Additionally, there are announcements about community calls, meetups, and AMAs with Coinmetro and PropbaseApp. Overall, the crypto community on Twitter is actively engaged in discussing various events, speakers, and opportunities within the industry.', - data: [ - 2, 0, 0, 2, 0, 0, 0, 0, 3, 1, 5, 2, 1, 1, 0, 0, 6, 5, 3, 3, 0, 3, 3, 3, 4, 1, 20, 2, 0, 5, - 1, 3, 0, 0, 2, 0, 0, 2, 0, 2, 10, 1, 1, 5, 7, 1, 2, 1, 0, 8, 1, 2, 1, 3, 1, - ], - }, - { - label: 'Mt.Gox ', - topics: 'mt,gox,mtgox,july,cash', - description: - 'The key topics currently being discussed on social media regarding the crypto industry are related to Mt. Gox and its upcoming Bitcoin and Bitcoin Cash repayments starting in July 2024. There is speculation about the impact of these repayments on the market, with some suggesting that the recent price dump in Bitcoin is due to the news of Mt. Gox starting its reimburse plan. There are also concerns about potential FUD (fear, uncertainty, doubt) being spread by Mt. Gox to manipulate the market. Overall, the community seems divided on whether the Mt. Gox repayments will have a positive or negative effect on Bitcoin prices.', - data: [ - 0, 4, 0, 11, 3, 4, 4, 1, 0, 0, 1, 3, 3, 1, 7, 0, 0, 1, 3, 0, 2, 1, 3, 1, 2, 1, 2, 3, 0, 2, - 1, 1, 2, 1, 1, 1, 1, 0, 1, 6, 5, 7, 4, 1, 1, 5, 0, 1, 5, 1, 5, 1, 1, 0, 3, - ], - }, - { - label: 'DeFi ', - topics: 'defi,depin,decentralized,network,infrastructure', - description: - 'The key topics discussed in the messages from twitter are:\n1. DeFi (Decentralized Finance)\n2. Stablecoins\n3. DAO (Decentralized Autonomous Organization)\n4. Crowdfunding\n5. Institutional DeFi\n6. DEX (Decentralized Exchange)\n7. Monetization of DeFi apps\n8. Lovely Finance open-source DeFi Project\n9. UNCX Network DeFi solutions\n10. XSGD expansion to Avalanche C-Chain\n11. STRK (StrikeFinance) and DeFi Friday\n12. DeFi 2.0 and Olympus Dao collapse\n\nThese topics cover a range of subjects within the crypto industry, including new developments, projects, and challenges faced by the community.', - data: [ - 1, 5, 1, 1, 0, 1, 0, 1, 0, 1, 1, 4, 2, 4, 5, 0, 1, 3, 2, 1, 0, 0, 2, 3, 2, 5, 4, 0, 2, 1, 2, - 1, 1, 2, 3, 3, 6, 2, 5, 0, 6, 1, 1, 3, 0, 0, 2, 2, 2, 1, 1, 3, 1, 2, 1, - ], - }, - { - label: 'BTC ETF', - topics: 'net,saw,etfs,flows,inflows', - description: - "The key topic currently discussed on Twitter is the significant outflows from Bitcoin ETFs, particularly in the US spot market. There have been consecutive days of outflows totaling billions of dollars, with some ETFs experiencing heavy withdrawals. However, there have been recent signs of a reversal, with some ETFs seeing net inflows after a period of outflows. Analysts are closely monitoring these movements and predicting potential market rallies in the coming months. Additionally, there is a focus on BlackRock's IBIT ETF, which has shown stability and only experienced one outflow since its launch, coinciding with a local Bitcoin bottom. This has led to speculation about the ETF's potential impact on the market.", - data: [ - 1, 0, 0, 0, 12, 2, 0, 0, 0, 0, 0, 0, 1, 3, 2, 0, 6, 0, 2, 0, 0, 0, 0, 0, 3, 5, 0, 2, 1, 0, - 0, 0, 2, 5, 0, 3, 0, 1, 0, 2, 1, 0, 8, 1, 23, 0, 1, 0, 0, 5, 1, 3, 0, 2, 5, - ], - }, - { - label: 'NFT', - topics: 'nfts,nft,pfp,dead,think', - description: - 'The key topics discussed in the messages from twitter are:\n1. The survival of projects in the NFT market during the bear market.\n2. The comparison of NFTs as "conviction assets" similar to Bitcoin and Ether.\n3. The disappointment in old legacy NFT collections compared to new ones.\n4. The dominance of Mutant Apes and Bored Apes over Miladys in the NFT market.\n5. The shift towards building NFTs off brand/community and rewarding holders.\n6. The observation that retail investors are struggling in the current market cycle.\n7. The diversity of NFT types, including collectibles, memberships, gaming items, and token yield.\n8. The longevity and strength of NFT traders in the market.\n9. The suggestion to do deep dives on NFT collections with low floors but consistent growth.\n10. The belief in the long-term value of NFTs as a store of value for art, music, and gaming assets.', - data: [ - 0, 0, 0, 5, 0, 0, 4, 1, 1, 1, 2, 3, 2, 2, 2, 1, 0, 2, 4, 3, 3, 1, 1, 1, 2, 2, 0, 2, 0, 4, 3, - 1, 1, 4, 8, 1, 2, 1, 3, 0, 4, 3, 0, 0, 0, 1, 5, 2, 5, 1, 0, 2, 1, 1, 3, - ], - }, - { - label: 'Altcoins', - topics: 'altseason,altcoins,hodl,crypto,cryptocurrency', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- #DePIN and #Gaming\n- $SPX\n- #Stocks, #GOLD, #BTC, #Bitcoin\n- $high\n- #crypto, #cryptocurrency, #altcoins, #altseason\n- $btc, $eth\n- #xyo\n- #HODL\n- $vara\n- $trb\n- $fet\n- Coinbase delisting\n- Whales manipulating #btc\n- UBS raising PT on XOM\n- $aero\n\nOverall, the sentiment seems to be focused on potential pumps, exits, delistings, and price predictions for various cryptocurrencies. There is also discussion about specific coins like $vara, $trb, $fet, and $xyo, as well as general market trends such as altseason and HODLing strategies.', - data: [ - 4, 0, 0, 4, 0, 0, 4, 2, 0, 3, 1, 0, 2, 0, 0, 2, 0, 1, 2, 2, 2, 0, 0, 9, 4, 0, 2, 0, 1, 2, 0, - 0, 1, 1, 2, 4, 0, 3, 2, 1, 0, 3, 1, 0, 1, 2, 8, 1, 2, 5, 1, 2, 4, 1, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,ceo,price', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Ripple CEO's controversial statement about SEC Chair Gary Gensler potentially causing Biden to lose the election.\n2. XRP price glitch displaying a trading price of $62,032 on Kraken.\n3. Ripple's ongoing legal battle with the SEC and the impact on XRP's price.\n4. Speculation about XRP's future price breakout to $7.5 and potential new all-time high.\n5. Positive performance indicators for Ripple, with sales up 7% and active XRP addresses and transactions increasing significantly.\n6. Ripple community members expressing support and enthusiasm for XRP, including a humorous message from a user's father.\n7. Ripple's Chief Legal Officer criticizing the SEC's handling of legal battles.\n8. On-chain data suggesting a significant whale dump affecting XRP's price in the market.\nOverall, the discussions on Twitter reflect a mix of legal challenges, price speculation, community support, and market analysis related to Ripple and XRP.", - data: [ - 2, 1, 2, 0, 1, 0, 6, 1, 2, 2, 2, 3, 1, 1, 1, 0, 1, 5, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 2, 1, 1, - 2, 0, 1, 1, 1, 0, 9, 2, 2, 0, 5, 0, 1, 1, 0, 2, 1, 0, 1, 1, 0, 0, 1, 2, - ], - }, - { - label: 'German Government BTC balance', - topics: 'german,government,germany,kraken,transferred', - description: - "The key topics currently discussed in the messages from twitter about the crypto industry are:\n1. The German government's balance sheet for Bitcoin looks bearish, with significant amounts of BTC being transferred to exchanges.\n2. Germany has been selling off large amounts of Bitcoin, causing fluctuations in the market.\n3. The US government is also selling seized Bitcoin, adding to the market dynamics.\n4. Mt. Gox is distributing BTC after a decade, impacting the market.\n5. The German government's actions in the crypto market are being compared to beginner traders, with concerns about their approach.\n6. The German government holds a significant amount of BTC, currently worth over $2.8 billion.\n7. There is increased volatility in the crypto market, leading to severe price drops.\n8. A limited documentary series about the OneCoin pseudo-crypto Ponzi scheme is premiering in Germany.\n9. The German government has been involved in various transactions involving large sums of Bitcoin, including sending BTC to exchanges and different addresses.\n10. Overall, the actions of the German government in the crypto market are closely monitored and analyzed by the community.", - data: [ - 4, 2, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 4, 0, 1, 0, 1, 26, 1, 1, 2, 1, 3, 3, 1, 0, 1, - 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 3, 1, 0, 2, 0, 1, 1, 2, 0, 1, 1, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-26.json b/priv/repo/major_topics_seed/data-26.json deleted file mode 100644 index 013063c6e6..0000000000 --- a/priv/repo/major_topics_seed/data-26.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["27.06.24","28.06.24","28.06.24","28.06.24","28.06.24","28.06.24","28.06.24","28.06.24","29.06.24","29.06.24","29.06.24","29.06.24","29.06.24","29.06.24","29.06.24","29.06.24","30.06.24","30.06.24","30.06.24","30.06.24","30.06.24","30.06.24","30.06.24","30.06.24","01.07.24","01.07.24","01.07.24","01.07.24","01.07.24","01.07.24","01.07.24","01.07.24","02.07.24","02.07.24","02.07.24","02.07.24","02.07.24","02.07.24","02.07.24","02.07.24","03.07.24","03.07.24","03.07.24","03.07.24","03.07.24","03.07.24","03.07.24","03.07.24","04.07.24","04.07.24","04.07.24","04.07.24","04.07.24","04.07.24","04.07.24"],"datasets":[{"label":"BTC Price","topics":"btc,bitcoin,range,price,close","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin (BTC) price movements and analysis, with mentions of bullish divergence, support zones, downtrend breakouts, and potential price growth opportunities.\n2. Market sentiment and predictions, with discussions on whether it is time to buy the dip or if Bitcoin is falling further.\n3. Technical analysis indicators such as the 200EMA, CME Gap, order blocks, and range high/low areas.\n4. Speculation on potential price targets, including a possible pump to $66k+ and the switch to altcoins by whales.\n5. Observations on weekend movements and the impact of the end of the week, month, and quarter on price action.\n\nOverall, the sentiment appears to be mixed, with some analysts expecting upside potential for Bitcoin while others caution about further downside risks. Traders are advised to closely monitor price action and technical indicators for potential trading opportunities.","data":[9,5,7,15,94,94,19,54,8,10,22,21,14,17,12,17,3,22,6,10,4,19,4,16,20,10,7,15,13,32,24,9,6,18,12,15,11,26,14,25,26,16,5,11,8,13,16,14,13,12,10,9,9,12,8]},{"label":"BTC","topics":"bitcoin,fiat,money,freedom,rights","description":"The key topics currently being discussed on Twitter regarding the crypto industry are:\n1. Bitcoin as a reliable investment option\n2. Bitcoin's independence and ease of use\n3. The advantages of Bitcoin's immutable monetary policy compared to fiat money\n4. The historical context of President Nixon taking the US off the gold standard and how Bitcoin can potentially fix this issue\n5. The importance of self-custody and multi-sig custody for holding Bitcoin\n6. Using Bitcoin as a store of value in real estate investments to reduce dependence on regulations.","data":[15,8,10,13,61,64,6,8,8,5,11,22,14,10,15,10,8,9,17,5,8,13,21,16,8,8,9,12,14,8,11,5,12,15,10,11,9,3,9,7,5,20,9,16,6,16,17,7,15,7,30,4,5,10,14]},{"label":"Memecoins","topics":"meme,memecoin,coins,memecoins,memes","description":"Based on the messages from Twitter, it is evident that the crypto community is actively discussing meme coins and their impact on the market. Some key points highlighted include:\n\n1. The importance of meme coins in creating generational wealth and the disappointment in people selling for small profits.\n2. Criteria for successful meme coins, including viral potential, good content, and a cult-like community.\n3. The surge in popularity of AI coins and meme coins, with WienerAI Presale hitting $6.5M.\n4. Speculation about central banks lowering rates leading to a resurgence in meme coins like $PEPE.\n5. The success of $FLOKI as a top-performing memecoin, outperforming major competitors like $PEPE, $WIF, and $DOGE.\n6. The downfall of UFC star Khamzat Chimaev's SMASH token due to insider trading claims.\n7. Criticism towards mainstream influencers for shilling tech coins in 2021 and then abandoning them for meme coins.\n8. Concerns about the societal impact of memecoins and the potential for harm similar to what happened with 4chan.\n9. The competitive nature of meme coin competitions, with threats of drastic actions if certain coins do not perform well.\n\nOverall, the discussion on Twitter reflects the ongoing fascination and volatility surrounding meme coins within the crypto industry.","data":[4,4,2,6,2,0,2,4,15,2,6,6,6,2,3,6,2,13,13,5,4,13,5,5,6,5,4,6,5,7,9,82,5,8,6,4,4,10,3,5,3,11,12,6,4,3,0,8,8,2,8,7,6,2,3]},{"label":"GameFi","topics":"game,gaming,games,web3,play","description":"The key topics currently being discussed in the crypto gaming industry on Twitter include the introduction of gaming templates to customize gaming experiences, the announcement of new titles coming to Microsoft Game Pass, the potential of certain projects to revolutionize the industry, the issue of dilutive gaming tokens, and the success of Hamster Kombat reaching 200 million users. Additionally, there is excitement around the launch of NAKAFRIENDS and discussions about the future trends in GameFi. Overall, the industry is evolving rapidly with a focus on user engagement, innovative technologies, and community growth.","data":[3,1,4,5,0,0,4,6,10,5,5,5,6,3,5,3,2,9,7,2,47,6,4,2,1,7,8,6,7,3,8,4,6,4,13,2,24,1,8,3,2,6,3,3,1,1,6,7,4,4,2,6,4,3,3]},{"label":"SOL ETF","topics":"solana,sol,etf,spot,approval","description":"The key topics currently discussed in the messages from twitter about Solana ($SOL) include:\n1. The potential approval of a Solana Spot ETF by VanEck and 21Shares, leading to a significant rise in the price of $SOL.\n2. Comparisons between Solana and Ethereum ($ETH), with some predicting that Solana will overtake Ethereum in the long term.\n3. The dominance of Solana in the crypto industry, with mentions of it overtaking Ethereum in 24hr DEX volume and outperforming Ethereum meme coins by 800% YTD.\n4. Speculation about the future price of $SOL, with some suggesting it could spike up to 8.9x following a Solana Spot ETF approval.\n5. Excitement and optimism surrounding Solana, with mentions of it being a game-changing digital asset and potentially reaching $1 with SolDollar.\n6. Criticisms of Solana, including high gas fees and it being considered the worst exchange in crypto by some.\n7. Discussions about other potential altcoins that could follow Solana in getting approved for an ETF.\n8. The filing for the first spot Solana ETF with the SEC by VanEck, sparking further excitement and a rise in $SOL price.\n9. The 4-year locked Solana being sold for $96 per Sol and the desire to buy at that price on the open market.\n10. Speculation about the impact of a Solana Spot ETF approval on $SOL's price compared to spot Bitcoin ETFs on $BTC.","data":[5,6,5,7,0,0,6,1,4,3,6,5,1,1,5,4,16,4,16,6,3,6,5,5,7,3,7,1,2,0,1,5,4,3,9,3,5,8,4,7,6,6,5,8,35,6,6,6,3,7,0,10,2,3,2]},{"label":"AI","topics":"ai,intelligence,models,generative,future","description":"The key topics currently discussed in the crypto industry on social media include AI, decentralization, AI-driven apps for learning, AI-related tokens as the best-performing sector in crypto, generative AI patents race led by China, and insights on the future of AI. There is also mention of OpenAI leaving China, concerns about AI posing existential risks, and the Women in AI Breakfast Panel presented by Capital One.","data":[18,28,5,7,0,0,0,2,1,0,6,8,3,6,4,3,7,8,4,8,6,6,3,4,7,9,10,3,4,2,5,3,3,2,5,1,3,3,3,5,1,8,5,2,2,2,5,5,4,1,2,1,4,4,8]},{"label":"BTC Mining","topics":"mining,miners,bitcoin,energy,june","description":"The key topics currently discussed in the crypto industry on social media include:\n\n1. Bitcoin mining industry expansion and power capacity partnerships in Ohio.\n2. Allegations of illegal Bitcoin mining operations in Paraguay involving employees of the National Power Administration.\n3. Comparison of big tech's carbon footprint to Bitcoin mining emissions.\n4. Changes in China's top investment bank, with bankers pledging loyalty to the Communist Party.\n5. Bitcoin mining driving tech innovation and its future potential in identity verification and finance.\n6. Bitcoin miners weathering market disturbances and showing strength and adaptability.\n7. Lundin Mining considering the sale of zinc mines in Sweden and Portugal.\n8. Shift in mainstream narrative on Bitcoin and energy, with more positive coverage.\n9. Bitcoin miner reserves at an all-time low, indicating scarcity and potential price increases.\n10. Climate-friendly cold shipping innovations in the tech industry.","data":[5,4,2,4,34,17,11,1,4,1,14,3,2,4,2,5,1,1,3,0,2,2,4,3,5,2,5,7,2,0,5,1,24,6,6,6,3,4,1,7,9,7,2,3,3,1,3,1,4,6,2,0,1,2,0]},{"label":"Art","topics":"art,artist,artists,piece,digital","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Generative Art Summit at Academy of Arts in Berlin\n- Cult Crypto Art, Cultishnya, Cryptoarg_ and RC Artist Highlight\n- Art Arena exhibition at ArtverseParis curated by bygrida\n- Glif embeds and MS Paint with AI\n- Shoutout to Gr1ndhouse_art, AdamToksoz, zoe_legott, & ppkalas\n- Creative process and expertise in art\n- LoRA AI model created by eden_art_ and its use in artwork\n\nOverall, the messages highlight a variety of discussions related to art, technology, and creativity within the crypto industry.","data":[2,3,43,3,0,0,0,0,2,2,2,1,11,3,6,2,1,4,4,4,1,3,4,3,1,9,2,2,5,4,8,2,5,8,2,12,8,1,1,1,6,3,8,5,5,4,5,6,4,5,4,7,6,6,4]},{"label":"SEC","topics":"sec,securities,court,case,coinbase","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. The SEC filing a lawsuit against Silvergate Capital Corporation for allegedly facilitating fraud at FTX.\n2. Binance facing legal challenges and a US judge dismissing the SEC's charges against CZ & Binance.\n3. Coinbase intensifying its fight against the SEC and expanding into altcoin futures.\n4. The rejection of the 'predicate contract' theory of Howey in the Binance case.\n5. Ethereum scoring a big win against the SEC.\n6. The Basel Committee making significant policy decisions regarding banks' crypto exposure.\n7. The ongoing struggle between crypto innovation and regulation.\n8. The SEC dropping its investigation into Ethereum.\n9. The SEC still targeting staking in the crypto industry.\n10. The clash between crypto clients and regulatory bodies like the SEC.","data":[4,6,4,3,0,0,11,1,4,5,7,14,5,1,8,8,2,3,9,2,4,3,0,3,3,3,5,5,14,6,2,0,2,2,3,4,3,1,1,5,5,4,4,7,2,1,31,3,0,3,5,2,1,4,2]},{"label":"CPI","topics":"inflation,gold,fed,rate,impact","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Gold reaching $3,000 in the next 18 months according to Bank of America forecasts\n- US PCE inflation data and its impact on the Federal Reserve's favorite inflation gauge\n- Silver outpacing gains and potentially reaching record highs\n- Interest rate cuts and inflation moving in the right direction\n- Concerns about inflation, national debt, and interest rates\n- The correlation between the overall market, rate cuts, and the potential start of a bear market in stocks\n- Discrepancies in data regarding real disposable personal income and inflation measurement\n- Criticisms of economic policies such as promoting 2% inflation and capital gains taxation\n- The rush to buy gold across Asia and its impact on global economic trends\n\nOverall, the discussions on social media indicate a mix of optimism, caution, and skepticism regarding various economic indicators and trends in the crypto industry.","data":[0,4,3,5,0,0,3,1,3,0,5,7,1,1,3,7,3,3,4,5,3,7,3,2,3,23,10,3,2,1,4,27,4,2,2,6,3,6,2,4,5,2,6,3,7,9,2,3,4,1,3,1,4,1,3]},{"label":"Crypto Events","topics":"join,ama,excited,event,reminder","description":"The key topics discussed in the messages from Twitter are related to cryptocurrency, blockchain technology, NFTs, gaming, web3, hackathons, events such as Aggregation Day Brussels and Blockchain Builders Brunch at EthCC, as well as discussions about specific projects like Aptos Network, Chainlink, and Alien Worlds. There are also mentions of upcoming livestreams, expert sessions, and community gatherings. Overall, the conversations revolve around the latest developments, trends, and opportunities in the crypto industry.","data":[2,1,4,2,1,0,3,0,5,1,6,1,0,5,3,1,4,15,1,7,2,5,5,6,9,1,24,2,1,11,2,3,8,4,3,0,1,0,2,2,3,5,0,4,0,5,3,1,8,13,9,4,9,2,0]},{"label":"NFT","topics":"nft,nfts,pfp,mint,building","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The rise of NFTs and their increasing popularity, especially on platforms like Solana.\n2. The launch of the Foundation Nomination Program (FNP) by the Aleph Zero Foundation to move stake to community validators.\n3. The extension of the MINETTE Liquidity Campaign due to overwhelming participation and support.\n4. The development of MintTree $MINT in the MintForest by Mint_Blockchain, focusing on NFT industry.\n5. The exploration of the crypto world with inSure DeFi, highlighting the uniqueness of NFTs in representing distinct assets.\n6. The speculation around the NFT market, with discussions on whether NFTs are dead or still thriving.\n7. The history and ties of the ever-elusive NFT project, The Lost Robbies, with Christie's Inc and SuperRare.\n8. The top Ethereum NFT collections, including Pudgy Penguins, CryptoPunks, Lost Robbies, Milady, BAYC, Azuki, Fidenza, Doodles, Chromie Squiggle, and MAYC, based on overall awareness and future potential.","data":[4,2,3,2,0,0,1,2,4,1,5,2,5,2,3,1,3,2,4,5,2,3,1,1,1,3,4,4,1,0,5,6,2,4,11,1,2,1,16,4,0,8,2,0,3,3,0,1,6,2,5,3,2,3,1]},{"label":"BTC ETF","topics":"etfs,net,spot,saw,etf","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin ETF inflows reaching record highs\n- BlackRock's ETF allocation boosting Bitcoin to $47,000\n- Positive trends in Bitcoin spot ETF flows\n- Grayscale and Bitwise ETF outflows\n- US Spot Bitcoin ETFs seeing significant inflows\n- Recent milestones in the crypto industry such as the approval and trading of spot Bitcoin ETFs, Ethiopian government mining Bitcoin, BTC surpassing previous all-time high, Google adding Bitcoin indexing, BTC halving, and more\n- Specific data on ETF inflows, outflows, and holdings\n- Potential steady performance of Bitcoin due to ETF inflows\n- Daily statistics on spot ETFs including volume, net flows, and assets under management\n\nOverall, the discussion on Twitter indicates a mix of positive trends, milestones, and data analysis related to Bitcoin ETFs and the broader crypto industry.","data":[2,0,2,2,6,5,5,0,0,0,0,0,0,4,0,0,13,0,3,0,1,0,1,1,1,5,1,1,0,2,1,2,1,6,1,0,0,3,1,3,0,0,2,0,23,2,0,0,1,5,1,2,0,2,7]},{"label":"BTC & German government ","topics":"german,government,germany,transferred,exchanges","description":"The key topic discussed in the messages from twitter is the selling off of Bitcoin by the German government. The German government has been transferring large amounts of Bitcoin to various exchanges such as Bitstamp, Coinbase, and Kraken, leading to speculation about an upcoming selloff. This has caused pressure on the price of Bitcoin, with some users expressing frustration over the government's actions. Additionally, there are mentions of the German government offloading significant amounts of Bitcoin, with the total value reaching up to $175 million. The situation is likened to when the UK sold their gold reserves at a low price in the early 2000s. On a different note, there is also discussion about Mannheim, Germany becoming a 'Cryptocity' with stores accepting cryptocurrency payments, led by Nimiq.","data":[4,0,0,2,2,1,3,2,0,2,2,1,1,1,0,2,0,0,1,1,45,0,4,1,3,3,1,1,1,0,1,0,1,1,2,1,0,0,0,2,2,0,4,3,0,0,3,0,2,2,1,1,1,1,0]},{"label":"New listings","topics":"listing,utc,trading,deposit,list","description":"The key topics discussed in the messages from Twitter are new listings of various cryptocurrencies on different exchanges such as KuCoin, Bitget, Bitrue, BitMart, and Poloniex. Some of the mentioned cryptocurrencies include $MOG, $MYTH, $AVAIL, $QUBIC, $MEW, $HERO, $QUIL, $CAD, $DYSTO, $BOME, $CHWY, $SCRAT, and $FLOW. The messages also mention details about deposits being opened, trading starting soon, pre-market trading, zero trading fees, upcoming partnerships, token burns, staking platforms, and potential for high returns. Additionally, there is discussion about the trading pairs, deposit availability, and trading start times for each cryptocurrency.","data":[0,1,3,5,0,14,1,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,6,1,1,0,4,3,1,0,3,21,1,0,0,7,0,2,0,1,1,0,0,2,1,0,0,1,0,13,0,0,0]},{"label":"DOT","topics":"polkadot,dot,marketing,treasury,spent","description":"The key topics currently discussed in the messages from Twitter about Polkadot include:\n1. Marketing strategies and spending by Polkadot, including the use of influencers and marketing agencies.\n2. Concerns about the financial sustainability of Polkadot, with mentions of high spending and potential bankruptcy.\n3. Discussion about the effectiveness of marketing efforts, such as advertising on taxi cabs and using influencers.\n4. Comparison with other blockchain projects, such as Polymesh, and their focus on regulated assets.\n5. Criticism of Polkadot's marketing tactics, including leaked documents showing spending on influencers.\n6. Suggestions for budget cuts and strategic pivots to conserve funds and improve impact.\n7. Mention of Polkadot's DAO and governance structure, as well as its role in advancing AI and gaming.\n8. Reference to specific individuals, such as Richard Heart, and their views on Polkadot and Ethereum.","data":[1,1,2,2,1,0,0,2,0,1,1,0,0,0,1,5,0,2,2,3,0,0,0,1,2,4,3,2,2,0,3,0,3,2,1,6,0,18,1,0,2,0,2,2,5,1,1,0,0,1,0,0,1,2,1]},{"label":"DeFi","topics":"defi,bridge,protocols,security,decentralized","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- DeFi products and concepts such as Chain Abstracted DeFi, Enzyme, Acala Bridge, Syrup, and Polyhedra Network\n- Comparison between CeFi and DeFi, with mentions of Tom Brady promoting FTX and D-List celebrities pushing memecoins\n- Insure DeFi offering reimbursement for losses\n- DeFi 1.0 protocols and their features\n- Updates and developments in the DeFiChain ecosystem\n- Bridging of Layer2 with OmnityNetwork bridge\n\nOverall, the discussions revolve around the innovation, interoperability, and potential risks and benefits of various DeFi projects and concepts in the crypto industry.","data":[1,2,0,2,0,0,1,0,2,2,0,2,1,2,4,1,1,4,0,1,0,1,1,0,1,5,2,0,2,1,0,0,0,5,1,3,1,2,1,3,0,0,1,0,1,3,2,1,1,1,3,3,2,0,1]},{"label":"ETH ETF","topics":"etf,etfs,launch,ethereum,approval","description":"The key topics currently being discussed on Twitter regarding the crypto industry and ETFs include the potential approval of a $ETH ETF in July, delays in the launch of the ETF-ETH tool, expectations for the approval of Bitcoin ETFs by Morgan Stanley, uncertainty surrounding the SEC's timeline for approving ETFs, analysis of the bullish or bearish impact of an Ethereum ETF on ETH, and the potential outperformance of Ethereum compared to Bitcoin if an Ethereum Spot ETF is launched. Additionally, there is speculation about the reasons for the SEC's delay in approving ETFs, with some attributing it to a \"problem\" issuer or summertime slowdown. Overall, there is a mix of optimism and uncertainty surrounding the approval and launch of various crypto ETFs in the near future.","data":[2,3,4,1,0,0,3,0,0,0,0,1,1,0,3,1,14,6,0,1,2,0,1,0,0,2,1,5,1,2,0,1,0,2,1,0,1,1,1,1,2,0,0,2,6,1,0,0,0,0,0,0,0,0,0]},{"label":"DOGE","topics":"dogecoin,doge,fuck,king,analyst","description":"Based on the messages from Twitter, it is evident that Dogecoin is a popular topic of discussion within the crypto community. Some users express their love and excitement for Dogecoin, while others warn of potential price slides. Analysts are also making predictions about Dogecoin's future price movements, with some forecasting a significant bounce in price. Overall, there is a mix of emotions and opinions surrounding Dogecoin, but it remains a highly discussed and followed cryptocurrency within the community.","data":[0,0,0,2,0,0,0,0,1,1,1,0,0,0,5,16,1,1,3,4,0,2,0,4,1,0,0,2,2,3,2,0,1,0,0,1,2,3,0,0,0,0,1,1,0,3,1,2,2,1,0,2,0,1,1]},{"label":"ETH Price","topics":"eth,etf,etfs,candle,ethereum","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n1. Speculation on price movement: There are discussions about the potential for Ethereum to pump further, retrace, or reach certain price levels such as $3300 before heading down again.\n2. ETF approval: There is anticipation and analysis surrounding the impact of an ETF approval on Ethereum's price, with some mentioning that Ethereum has fully retraced the initial ETF pump.\n3. Market sentiment: There are contrasting views on market sentiment, with some expressing confidence in Ethereum as a mid-term long setup while others point out weakness across the board.\n4. Technical analysis: Traders are analyzing price structures and Fibonacci levels to predict potential price movements, with some highlighting consolidation patterns and the importance of trading closer to the origin of a move.\n5. Narrative-driven market: There is a recognition that Ethereum's price is influenced by narratives and market dynamics, with mentions of ETF flows being underestimated and the market being irrational at times.","data":[1,0,1,3,0,0,3,0,0,0,1,3,2,1,0,1,12,0,3,0,2,2,3,0,2,2,0,1,3,5,0,2,1,0,2,0,0,4,3,0,2,0,0,0,0,0,1,0,2,2,1,1,1,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-26.ts b/priv/repo/major_topics_seed/data-26.ts deleted file mode 100644 index 43d4f050c3..0000000000 --- a/priv/repo/major_topics_seed/data-26.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '27.06.24', - '28.06.24', - '28.06.24', - '28.06.24', - '28.06.24', - '28.06.24', - '28.06.24', - '28.06.24', - '29.06.24', - '29.06.24', - '29.06.24', - '29.06.24', - '29.06.24', - '29.06.24', - '29.06.24', - '29.06.24', - '30.06.24', - '30.06.24', - '30.06.24', - '30.06.24', - '30.06.24', - '30.06.24', - '30.06.24', - '30.06.24', - '01.07.24', - '01.07.24', - '01.07.24', - '01.07.24', - '01.07.24', - '01.07.24', - '01.07.24', - '01.07.24', - '02.07.24', - '02.07.24', - '02.07.24', - '02.07.24', - '02.07.24', - '02.07.24', - '02.07.24', - '02.07.24', - '03.07.24', - '03.07.24', - '03.07.24', - '03.07.24', - '03.07.24', - '03.07.24', - '03.07.24', - '03.07.24', - '04.07.24', - '04.07.24', - '04.07.24', - '04.07.24', - '04.07.24', - '04.07.24', - '04.07.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,bitcoin,range,price,close', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin (BTC) price movements and analysis, with mentions of bullish divergence, support zones, downtrend breakouts, and potential price growth opportunities.\n2. Market sentiment and predictions, with discussions on whether it is time to buy the dip or if Bitcoin is falling further.\n3. Technical analysis indicators such as the 200EMA, CME Gap, order blocks, and range high/low areas.\n4. Speculation on potential price targets, including a possible pump to $66k+ and the switch to altcoins by whales.\n5. Observations on weekend movements and the impact of the end of the week, month, and quarter on price action.\n\nOverall, the sentiment appears to be mixed, with some analysts expecting upside potential for Bitcoin while others caution about further downside risks. Traders are advised to closely monitor price action and technical indicators for potential trading opportunities.', - data: [ - 9, 5, 7, 15, 94, 94, 19, 54, 8, 10, 22, 21, 14, 17, 12, 17, 3, 22, 6, 10, 4, 19, 4, 16, 20, - 10, 7, 15, 13, 32, 24, 9, 6, 18, 12, 15, 11, 26, 14, 25, 26, 16, 5, 11, 8, 13, 16, 14, 13, - 12, 10, 9, 9, 12, 8, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,fiat,money,freedom,rights', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry are:\n1. Bitcoin as a reliable investment option\n2. Bitcoin's independence and ease of use\n3. The advantages of Bitcoin's immutable monetary policy compared to fiat money\n4. The historical context of President Nixon taking the US off the gold standard and how Bitcoin can potentially fix this issue\n5. The importance of self-custody and multi-sig custody for holding Bitcoin\n6. Using Bitcoin as a store of value in real estate investments to reduce dependence on regulations.", - data: [ - 15, 8, 10, 13, 61, 64, 6, 8, 8, 5, 11, 22, 14, 10, 15, 10, 8, 9, 17, 5, 8, 13, 21, 16, 8, 8, - 9, 12, 14, 8, 11, 5, 12, 15, 10, 11, 9, 3, 9, 7, 5, 20, 9, 16, 6, 16, 17, 7, 15, 7, 30, 4, - 5, 10, 14, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coins,memecoins,memes', - description: - "Based on the messages from Twitter, it is evident that the crypto community is actively discussing meme coins and their impact on the market. Some key points highlighted include:\n\n1. The importance of meme coins in creating generational wealth and the disappointment in people selling for small profits.\n2. Criteria for successful meme coins, including viral potential, good content, and a cult-like community.\n3. The surge in popularity of AI coins and meme coins, with WienerAI Presale hitting $6.5M.\n4. Speculation about central banks lowering rates leading to a resurgence in meme coins like $PEPE.\n5. The success of $FLOKI as a top-performing memecoin, outperforming major competitors like $PEPE, $WIF, and $DOGE.\n6. The downfall of UFC star Khamzat Chimaev's SMASH token due to insider trading claims.\n7. Criticism towards mainstream influencers for shilling tech coins in 2021 and then abandoning them for meme coins.\n8. Concerns about the societal impact of memecoins and the potential for harm similar to what happened with 4chan.\n9. The competitive nature of meme coin competitions, with threats of drastic actions if certain coins do not perform well.\n\nOverall, the discussion on Twitter reflects the ongoing fascination and volatility surrounding meme coins within the crypto industry.", - data: [ - 4, 4, 2, 6, 2, 0, 2, 4, 15, 2, 6, 6, 6, 2, 3, 6, 2, 13, 13, 5, 4, 13, 5, 5, 6, 5, 4, 6, 5, - 7, 9, 82, 5, 8, 6, 4, 4, 10, 3, 5, 3, 11, 12, 6, 4, 3, 0, 8, 8, 2, 8, 7, 6, 2, 3, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,web3,play', - description: - 'The key topics currently being discussed in the crypto gaming industry on Twitter include the introduction of gaming templates to customize gaming experiences, the announcement of new titles coming to Microsoft Game Pass, the potential of certain projects to revolutionize the industry, the issue of dilutive gaming tokens, and the success of Hamster Kombat reaching 200 million users. Additionally, there is excitement around the launch of NAKAFRIENDS and discussions about the future trends in GameFi. Overall, the industry is evolving rapidly with a focus on user engagement, innovative technologies, and community growth.', - data: [ - 3, 1, 4, 5, 0, 0, 4, 6, 10, 5, 5, 5, 6, 3, 5, 3, 2, 9, 7, 2, 47, 6, 4, 2, 1, 7, 8, 6, 7, 3, - 8, 4, 6, 4, 13, 2, 24, 1, 8, 3, 2, 6, 3, 3, 1, 1, 6, 7, 4, 4, 2, 6, 4, 3, 3, - ], - }, - { - label: 'SOL ETF', - topics: 'solana,sol,etf,spot,approval', - description: - "The key topics currently discussed in the messages from twitter about Solana ($SOL) include:\n1. The potential approval of a Solana Spot ETF by VanEck and 21Shares, leading to a significant rise in the price of $SOL.\n2. Comparisons between Solana and Ethereum ($ETH), with some predicting that Solana will overtake Ethereum in the long term.\n3. The dominance of Solana in the crypto industry, with mentions of it overtaking Ethereum in 24hr DEX volume and outperforming Ethereum meme coins by 800% YTD.\n4. Speculation about the future price of $SOL, with some suggesting it could spike up to 8.9x following a Solana Spot ETF approval.\n5. Excitement and optimism surrounding Solana, with mentions of it being a game-changing digital asset and potentially reaching $1 with SolDollar.\n6. Criticisms of Solana, including high gas fees and it being considered the worst exchange in crypto by some.\n7. Discussions about other potential altcoins that could follow Solana in getting approved for an ETF.\n8. The filing for the first spot Solana ETF with the SEC by VanEck, sparking further excitement and a rise in $SOL price.\n9. The 4-year locked Solana being sold for $96 per Sol and the desire to buy at that price on the open market.\n10. Speculation about the impact of a Solana Spot ETF approval on $SOL's price compared to spot Bitcoin ETFs on $BTC.", - data: [ - 5, 6, 5, 7, 0, 0, 6, 1, 4, 3, 6, 5, 1, 1, 5, 4, 16, 4, 16, 6, 3, 6, 5, 5, 7, 3, 7, 1, 2, 0, - 1, 5, 4, 3, 9, 3, 5, 8, 4, 7, 6, 6, 5, 8, 35, 6, 6, 6, 3, 7, 0, 10, 2, 3, 2, - ], - }, - { - label: 'AI', - topics: 'ai,intelligence,models,generative,future', - description: - 'The key topics currently discussed in the crypto industry on social media include AI, decentralization, AI-driven apps for learning, AI-related tokens as the best-performing sector in crypto, generative AI patents race led by China, and insights on the future of AI. There is also mention of OpenAI leaving China, concerns about AI posing existential risks, and the Women in AI Breakfast Panel presented by Capital One.', - data: [ - 18, 28, 5, 7, 0, 0, 0, 2, 1, 0, 6, 8, 3, 6, 4, 3, 7, 8, 4, 8, 6, 6, 3, 4, 7, 9, 10, 3, 4, 2, - 5, 3, 3, 2, 5, 1, 3, 3, 3, 5, 1, 8, 5, 2, 2, 2, 5, 5, 4, 1, 2, 1, 4, 4, 8, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,bitcoin,energy,june', - description: - "The key topics currently discussed in the crypto industry on social media include:\n\n1. Bitcoin mining industry expansion and power capacity partnerships in Ohio.\n2. Allegations of illegal Bitcoin mining operations in Paraguay involving employees of the National Power Administration.\n3. Comparison of big tech's carbon footprint to Bitcoin mining emissions.\n4. Changes in China's top investment bank, with bankers pledging loyalty to the Communist Party.\n5. Bitcoin mining driving tech innovation and its future potential in identity verification and finance.\n6. Bitcoin miners weathering market disturbances and showing strength and adaptability.\n7. Lundin Mining considering the sale of zinc mines in Sweden and Portugal.\n8. Shift in mainstream narrative on Bitcoin and energy, with more positive coverage.\n9. Bitcoin miner reserves at an all-time low, indicating scarcity and potential price increases.\n10. Climate-friendly cold shipping innovations in the tech industry.", - data: [ - 5, 4, 2, 4, 34, 17, 11, 1, 4, 1, 14, 3, 2, 4, 2, 5, 1, 1, 3, 0, 2, 2, 4, 3, 5, 2, 5, 7, 2, - 0, 5, 1, 24, 6, 6, 6, 3, 4, 1, 7, 9, 7, 2, 3, 3, 1, 3, 1, 4, 6, 2, 0, 1, 2, 0, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,digital', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Generative Art Summit at Academy of Arts in Berlin\n- Cult Crypto Art, Cultishnya, Cryptoarg_ and RC Artist Highlight\n- Art Arena exhibition at ArtverseParis curated by bygrida\n- Glif embeds and MS Paint with AI\n- Shoutout to Gr1ndhouse_art, AdamToksoz, zoe_legott, & ppkalas\n- Creative process and expertise in art\n- LoRA AI model created by eden_art_ and its use in artwork\n\nOverall, the messages highlight a variety of discussions related to art, technology, and creativity within the crypto industry.', - data: [ - 2, 3, 43, 3, 0, 0, 0, 0, 2, 2, 2, 1, 11, 3, 6, 2, 1, 4, 4, 4, 1, 3, 4, 3, 1, 9, 2, 2, 5, 4, - 8, 2, 5, 8, 2, 12, 8, 1, 1, 1, 6, 3, 8, 5, 5, 4, 5, 6, 4, 5, 4, 7, 6, 6, 4, - ], - }, - { - label: 'SEC', - topics: 'sec,securities,court,case,coinbase', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n1. The SEC filing a lawsuit against Silvergate Capital Corporation for allegedly facilitating fraud at FTX.\n2. Binance facing legal challenges and a US judge dismissing the SEC's charges against CZ & Binance.\n3. Coinbase intensifying its fight against the SEC and expanding into altcoin futures.\n4. The rejection of the 'predicate contract' theory of Howey in the Binance case.\n5. Ethereum scoring a big win against the SEC.\n6. The Basel Committee making significant policy decisions regarding banks' crypto exposure.\n7. The ongoing struggle between crypto innovation and regulation.\n8. The SEC dropping its investigation into Ethereum.\n9. The SEC still targeting staking in the crypto industry.\n10. The clash between crypto clients and regulatory bodies like the SEC.", - data: [ - 4, 6, 4, 3, 0, 0, 11, 1, 4, 5, 7, 14, 5, 1, 8, 8, 2, 3, 9, 2, 4, 3, 0, 3, 3, 3, 5, 5, 14, 6, - 2, 0, 2, 2, 3, 4, 3, 1, 1, 5, 5, 4, 4, 7, 2, 1, 31, 3, 0, 3, 5, 2, 1, 4, 2, - ], - }, - { - label: 'CPI', - topics: 'inflation,gold,fed,rate,impact', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Gold reaching $3,000 in the next 18 months according to Bank of America forecasts\n- US PCE inflation data and its impact on the Federal Reserve's favorite inflation gauge\n- Silver outpacing gains and potentially reaching record highs\n- Interest rate cuts and inflation moving in the right direction\n- Concerns about inflation, national debt, and interest rates\n- The correlation between the overall market, rate cuts, and the potential start of a bear market in stocks\n- Discrepancies in data regarding real disposable personal income and inflation measurement\n- Criticisms of economic policies such as promoting 2% inflation and capital gains taxation\n- The rush to buy gold across Asia and its impact on global economic trends\n\nOverall, the discussions on social media indicate a mix of optimism, caution, and skepticism regarding various economic indicators and trends in the crypto industry.", - data: [ - 0, 4, 3, 5, 0, 0, 3, 1, 3, 0, 5, 7, 1, 1, 3, 7, 3, 3, 4, 5, 3, 7, 3, 2, 3, 23, 10, 3, 2, 1, - 4, 27, 4, 2, 2, 6, 3, 6, 2, 4, 5, 2, 6, 3, 7, 9, 2, 3, 4, 1, 3, 1, 4, 1, 3, - ], - }, - { - label: 'Crypto Events', - topics: 'join,ama,excited,event,reminder', - description: - 'The key topics discussed in the messages from Twitter are related to cryptocurrency, blockchain technology, NFTs, gaming, web3, hackathons, events such as Aggregation Day Brussels and Blockchain Builders Brunch at EthCC, as well as discussions about specific projects like Aptos Network, Chainlink, and Alien Worlds. There are also mentions of upcoming livestreams, expert sessions, and community gatherings. Overall, the conversations revolve around the latest developments, trends, and opportunities in the crypto industry.', - data: [ - 2, 1, 4, 2, 1, 0, 3, 0, 5, 1, 6, 1, 0, 5, 3, 1, 4, 15, 1, 7, 2, 5, 5, 6, 9, 1, 24, 2, 1, 11, - 2, 3, 8, 4, 3, 0, 1, 0, 2, 2, 3, 5, 0, 4, 0, 5, 3, 1, 8, 13, 9, 4, 9, 2, 0, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,mint,building', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The rise of NFTs and their increasing popularity, especially on platforms like Solana.\n2. The launch of the Foundation Nomination Program (FNP) by the Aleph Zero Foundation to move stake to community validators.\n3. The extension of the MINETTE Liquidity Campaign due to overwhelming participation and support.\n4. The development of MintTree $MINT in the MintForest by Mint_Blockchain, focusing on NFT industry.\n5. The exploration of the crypto world with inSure DeFi, highlighting the uniqueness of NFTs in representing distinct assets.\n6. The speculation around the NFT market, with discussions on whether NFTs are dead or still thriving.\n7. The history and ties of the ever-elusive NFT project, The Lost Robbies, with Christie's Inc and SuperRare.\n8. The top Ethereum NFT collections, including Pudgy Penguins, CryptoPunks, Lost Robbies, Milady, BAYC, Azuki, Fidenza, Doodles, Chromie Squiggle, and MAYC, based on overall awareness and future potential.", - data: [ - 4, 2, 3, 2, 0, 0, 1, 2, 4, 1, 5, 2, 5, 2, 3, 1, 3, 2, 4, 5, 2, 3, 1, 1, 1, 3, 4, 4, 1, 0, 5, - 6, 2, 4, 11, 1, 2, 1, 16, 4, 0, 8, 2, 0, 3, 3, 0, 1, 6, 2, 5, 3, 2, 3, 1, - ], - }, - { - label: 'BTC ETF', - topics: 'etfs,net,spot,saw,etf', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin ETF inflows reaching record highs\n- BlackRock's ETF allocation boosting Bitcoin to $47,000\n- Positive trends in Bitcoin spot ETF flows\n- Grayscale and Bitwise ETF outflows\n- US Spot Bitcoin ETFs seeing significant inflows\n- Recent milestones in the crypto industry such as the approval and trading of spot Bitcoin ETFs, Ethiopian government mining Bitcoin, BTC surpassing previous all-time high, Google adding Bitcoin indexing, BTC halving, and more\n- Specific data on ETF inflows, outflows, and holdings\n- Potential steady performance of Bitcoin due to ETF inflows\n- Daily statistics on spot ETFs including volume, net flows, and assets under management\n\nOverall, the discussion on Twitter indicates a mix of positive trends, milestones, and data analysis related to Bitcoin ETFs and the broader crypto industry.", - data: [ - 2, 0, 2, 2, 6, 5, 5, 0, 0, 0, 0, 0, 0, 4, 0, 0, 13, 0, 3, 0, 1, 0, 1, 1, 1, 5, 1, 1, 0, 2, - 1, 2, 1, 6, 1, 0, 0, 3, 1, 3, 0, 0, 2, 0, 23, 2, 0, 0, 1, 5, 1, 2, 0, 2, 7, - ], - }, - { - label: 'BTC & German government ', - topics: 'german,government,germany,transferred,exchanges', - description: - "The key topic discussed in the messages from twitter is the selling off of Bitcoin by the German government. The German government has been transferring large amounts of Bitcoin to various exchanges such as Bitstamp, Coinbase, and Kraken, leading to speculation about an upcoming selloff. This has caused pressure on the price of Bitcoin, with some users expressing frustration over the government's actions. Additionally, there are mentions of the German government offloading significant amounts of Bitcoin, with the total value reaching up to $175 million. The situation is likened to when the UK sold their gold reserves at a low price in the early 2000s. On a different note, there is also discussion about Mannheim, Germany becoming a 'Cryptocity' with stores accepting cryptocurrency payments, led by Nimiq.", - data: [ - 4, 0, 0, 2, 2, 1, 3, 2, 0, 2, 2, 1, 1, 1, 0, 2, 0, 0, 1, 1, 45, 0, 4, 1, 3, 3, 1, 1, 1, 0, - 1, 0, 1, 1, 2, 1, 0, 0, 0, 2, 2, 0, 4, 3, 0, 0, 3, 0, 2, 2, 1, 1, 1, 1, 0, - ], - }, - { - label: 'New listings', - topics: 'listing,utc,trading,deposit,list', - description: - 'The key topics discussed in the messages from Twitter are new listings of various cryptocurrencies on different exchanges such as KuCoin, Bitget, Bitrue, BitMart, and Poloniex. Some of the mentioned cryptocurrencies include $MOG, $MYTH, $AVAIL, $QUBIC, $MEW, $HERO, $QUIL, $CAD, $DYSTO, $BOME, $CHWY, $SCRAT, and $FLOW. The messages also mention details about deposits being opened, trading starting soon, pre-market trading, zero trading fees, upcoming partnerships, token burns, staking platforms, and potential for high returns. Additionally, there is discussion about the trading pairs, deposit availability, and trading start times for each cryptocurrency.', - data: [ - 0, 1, 3, 5, 0, 14, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 1, 0, 4, 3, - 1, 0, 3, 21, 1, 0, 0, 7, 0, 2, 0, 1, 1, 0, 0, 2, 1, 0, 0, 1, 0, 13, 0, 0, 0, - ], - }, - { - label: 'DOT', - topics: 'polkadot,dot,marketing,treasury,spent', - description: - "The key topics currently discussed in the messages from Twitter about Polkadot include:\n1. Marketing strategies and spending by Polkadot, including the use of influencers and marketing agencies.\n2. Concerns about the financial sustainability of Polkadot, with mentions of high spending and potential bankruptcy.\n3. Discussion about the effectiveness of marketing efforts, such as advertising on taxi cabs and using influencers.\n4. Comparison with other blockchain projects, such as Polymesh, and their focus on regulated assets.\n5. Criticism of Polkadot's marketing tactics, including leaked documents showing spending on influencers.\n6. Suggestions for budget cuts and strategic pivots to conserve funds and improve impact.\n7. Mention of Polkadot's DAO and governance structure, as well as its role in advancing AI and gaming.\n8. Reference to specific individuals, such as Richard Heart, and their views on Polkadot and Ethereum.", - data: [ - 1, 1, 2, 2, 1, 0, 0, 2, 0, 1, 1, 0, 0, 0, 1, 5, 0, 2, 2, 3, 0, 0, 0, 1, 2, 4, 3, 2, 2, 0, 3, - 0, 3, 2, 1, 6, 0, 18, 1, 0, 2, 0, 2, 2, 5, 1, 1, 0, 0, 1, 0, 0, 1, 2, 1, - ], - }, - { - label: 'DeFi', - topics: 'defi,bridge,protocols,security,decentralized', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- DeFi products and concepts such as Chain Abstracted DeFi, Enzyme, Acala Bridge, Syrup, and Polyhedra Network\n- Comparison between CeFi and DeFi, with mentions of Tom Brady promoting FTX and D-List celebrities pushing memecoins\n- Insure DeFi offering reimbursement for losses\n- DeFi 1.0 protocols and their features\n- Updates and developments in the DeFiChain ecosystem\n- Bridging of Layer2 with OmnityNetwork bridge\n\nOverall, the discussions revolve around the innovation, interoperability, and potential risks and benefits of various DeFi projects and concepts in the crypto industry.', - data: [ - 1, 2, 0, 2, 0, 0, 1, 0, 2, 2, 0, 2, 1, 2, 4, 1, 1, 4, 0, 1, 0, 1, 1, 0, 1, 5, 2, 0, 2, 1, 0, - 0, 0, 5, 1, 3, 1, 2, 1, 3, 0, 0, 1, 0, 1, 3, 2, 1, 1, 1, 3, 3, 2, 0, 1, - ], - }, - { - label: 'ETH ETF', - topics: 'etf,etfs,launch,ethereum,approval', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry and ETFs include the potential approval of a $ETH ETF in July, delays in the launch of the ETF-ETH tool, expectations for the approval of Bitcoin ETFs by Morgan Stanley, uncertainty surrounding the SEC\'s timeline for approving ETFs, analysis of the bullish or bearish impact of an Ethereum ETF on ETH, and the potential outperformance of Ethereum compared to Bitcoin if an Ethereum Spot ETF is launched. Additionally, there is speculation about the reasons for the SEC\'s delay in approving ETFs, with some attributing it to a "problem" issuer or summertime slowdown. Overall, there is a mix of optimism and uncertainty surrounding the approval and launch of various crypto ETFs in the near future.', - data: [ - 2, 3, 4, 1, 0, 0, 3, 0, 0, 0, 0, 1, 1, 0, 3, 1, 14, 6, 0, 1, 2, 0, 1, 0, 0, 2, 1, 5, 1, 2, - 0, 1, 0, 2, 1, 0, 1, 1, 1, 1, 2, 0, 0, 2, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,fuck,king,analyst', - description: - "Based on the messages from Twitter, it is evident that Dogecoin is a popular topic of discussion within the crypto community. Some users express their love and excitement for Dogecoin, while others warn of potential price slides. Analysts are also making predictions about Dogecoin's future price movements, with some forecasting a significant bounce in price. Overall, there is a mix of emotions and opinions surrounding Dogecoin, but it remains a highly discussed and followed cryptocurrency within the community.", - data: [ - 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 5, 16, 1, 1, 3, 4, 0, 2, 0, 4, 1, 0, 0, 2, 2, 3, - 2, 0, 1, 0, 0, 1, 2, 3, 0, 0, 0, 0, 1, 1, 0, 3, 1, 2, 2, 1, 0, 2, 0, 1, 1, - ], - }, - { - label: 'ETH Price', - topics: 'eth,etf,etfs,candle,ethereum', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n1. Speculation on price movement: There are discussions about the potential for Ethereum to pump further, retrace, or reach certain price levels such as $3300 before heading down again.\n2. ETF approval: There is anticipation and analysis surrounding the impact of an ETF approval on Ethereum's price, with some mentioning that Ethereum has fully retraced the initial ETF pump.\n3. Market sentiment: There are contrasting views on market sentiment, with some expressing confidence in Ethereum as a mid-term long setup while others point out weakness across the board.\n4. Technical analysis: Traders are analyzing price structures and Fibonacci levels to predict potential price movements, with some highlighting consolidation patterns and the importance of trading closer to the origin of a move.\n5. Narrative-driven market: There is a recognition that Ethereum's price is influenced by narratives and market dynamics, with mentions of ETF flows being underestimated and the market being irrational at times.", - data: [ - 1, 0, 1, 3, 0, 0, 3, 0, 0, 0, 1, 3, 2, 1, 0, 1, 12, 0, 3, 0, 2, 2, 3, 0, 2, 2, 0, 1, 3, 5, - 0, 2, 1, 0, 2, 0, 0, 4, 3, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 2, 1, 1, 1, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-27.json b/priv/repo/major_topics_seed/data-27.json deleted file mode 100644 index c883649d0a..0000000000 --- a/priv/repo/major_topics_seed/data-27.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["04.07.24","05.07.24","05.07.24","05.07.24","05.07.24","05.07.24","05.07.24","05.07.24","06.07.24","06.07.24","06.07.24","06.07.24","06.07.24","06.07.24","06.07.24","06.07.24","07.07.24","07.07.24","07.07.24","07.07.24","07.07.24","07.07.24","07.07.24","07.07.24","08.07.24","08.07.24","08.07.24","08.07.24","08.07.24","08.07.24","08.07.24","08.07.24","09.07.24","09.07.24","09.07.24","09.07.24","09.07.24","09.07.24","09.07.24","09.07.24","10.07.24","10.07.24","10.07.24","10.07.24","10.07.24","10.07.24","10.07.24","10.07.24","11.07.24","11.07.24","11.07.24","11.07.24","11.07.24","11.07.24","11.07.24"],"datasets":[{"label":"BTC","topics":"bitcoin,money,fiat,understand,people","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin price fluctuations and market analysis\n- Criticism of \"No KYC\" mantra and delusional beliefs in the Bitcoin community\n- Faketoshi's BSV dropping out of the top 100 cryptocurrencies on CMC\n- The resilience of Bitcoin and other cryptocurrencies during market dips\n- The importance of holding onto crypto assets during market downturns\n- The concept of deflation in the free market and its implications for Bitcoin\n- Criticism of KYC, ETF, and BRC20 in relation to Satoshi's original vision for Bitcoin\n- Encouragement to HODL onto crypto assets and not panic sell\n- The potential for Bitcoin to become the standard of value in composite currency contracts\n- The need for better Bitcoin native payment systems to prevent the rise of centralized alternatives.","data":[9,9,7,9,53,59,6,19,6,7,7,22,6,6,19,8,10,10,14,17,6,14,17,17,12,21,15,9,11,12,11,18,4,27,3,13,15,12,14,12,11,20,14,18,13,19,11,19,14,7,17,11,14,13,9]},{"label":"German government & BTC","topics":"german,germany,government,selling,btc","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Germany selling off a significant amount of Bitcoin, with the government holding less than $1 billion worth.\n2. Concerns about the impact of the German government's Bitcoin sell-off on BTC prices.\n3. TRON founder Justin Sun offering to buy all Bitcoin from the German government.\n4. Venezuela potentially becoming a Bitcoin mining hub under new leadership.\n5. Calls from German MPs to stop the \"hasty\" Bitcoin sell-off and diversify treasury assets.\n6. Updates on the German government continuing to move Bitcoin, with recent transfers to Flow Traders, Coinbase, and Bitstamp.\n7. Discussions about short-term noise versus long-term opportunities in the crypto market, including Mt. Gox selling and German government selling.\n8. Bitcoin ETFs seeing significant inflows despite Germany's sell-off.\n9. Bitcoin climbing over $57K, with some suggesting that Mt. Gox sales are already \"priced in.\"\n10. Overall market buzz and updates around Bitcoin, Ethereum, and decentralized governance.","data":[18,5,6,3,10,9,17,7,9,2,5,10,6,6,4,14,8,5,8,4,114,47,11,9,11,3,7,4,13,10,5,11,1,9,7,5,3,5,4,12,4,11,27,20,9,5,5,8,5,3,8,12,13,7,10]},{"label":"BTC Price","topics":"close,daily,btc,range,level","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin's daily candle closing above or below certain levels\n- The potential for Bitcoin to reach $60,000 and the risks involved\n- Technical analysis indicators such as ascending triangles and moving averages\n- Speculation on Bitcoin's future price movements and potential for growth\n- Comparison of current market trends to past patterns\n- Support and resistance levels for Bitcoin\n- Divergence signals and bottoming signals for trading decisions\n- Advice on maintaining good relationships with bosses\n- Overall sentiment towards Bitcoin's price action and market movements","data":[3,2,3,10,19,26,8,25,3,5,15,5,4,17,4,4,2,3,7,5,1,6,5,6,12,2,4,6,1,4,14,5,1,13,4,3,3,8,10,12,17,5,1,5,2,3,3,6,9,3,2,9,3,12,8]},{"label":"AI","topics":"ai,tech,humans,data,future","description":"The key topics currently being discussed in the crypto industry on social media include decentralized AI, the potential for AI to revolutionize financial interactions, investments in AI startups, the development of AI models for mobile devices, and the role of major tech companies like Microsoft in the AI space. There is also a focus on the transformative potential of AI, with questions about the problems it can solve and the challenges and opportunities in achieving results with AI. Overall, there is a lot of excitement and interest in the intersection of AI and the crypto industry.","data":[12,33,12,3,0,0,3,1,3,5,7,7,6,8,4,8,5,5,5,4,6,3,10,9,5,6,7,9,7,5,6,6,8,5,5,2,5,2,3,11,8,3,7,3,5,2,1,10,9,5,7,4,9,4,10]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coin","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. Memecoins: There is a lot of discussion about various memecoins such as #Miladymemecoin, #Btc, $Pepe, $Apu, #GROYPER, Shiba Shootout, $MATT, and #PepeCoin. People are talking about the potential for meme coins to change their lives and the importance of strong communities in the memecoin space.\n2. Launching Memecoins: The process of launching a memecoin is highlighted, with an emphasis on creating a website for the coin. There is also mention of Radiant launching on @Base in July with isolated lending.\n3. Investment Advice: There is a conversation about safe coins to invest in, with a recommendation for #EGLD as a solid staking option for normie investors who are risk-averse.\n4. Rising Stars in Crypto: The on-chain activity of rising stars in the crypto universe such as PEPE, FET, and ENS is discussed, with a focus on their recent surges in activity.\n5. Top Meme Gainers: The top meme gainers are listed, including #BILLY, #BEER, #APU, #BONK, and #PEPE, with a call to action for traders to share which coins they are trading.\n\nOverall, the messages reflect a mix of excitement, speculation, and investment advice within the crypto industry, particularly in relation to memecoins and rising stars in the market.","data":[2,3,1,6,1,2,2,7,6,3,2,3,4,2,1,3,2,3,6,5,2,3,5,3,7,5,4,7,9,3,3,1,70,5,3,3,8,1,4,8,2,6,3,3,1,8,3,5,2,2,6,2,3,3,7]},{"label":"GameFI","topics":"game,gaming,games,web3,telegram","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Unusual options activity spotted on GameStop\n2. Bybit listing Hamster Kombat's token for pre-market trading\n3. The Yuzu Game Console shutdown and Nintendo targeting other consoles\n4. Nova Frontier Chronicles and the release of the \"Third Faction\" chapter\n5. Pet Legends game requiring ownership of a $KIN Battle Pet NFT\n6. MMORPGs on $RONIN and the need for a concentrated player base\n7. Farmer games trend on SteamDB and the Play 2 Earn concept\n8. Nakamoto Games partnering with Telegram for sign up and login\n9. Growth of the gaming market from $70 billion in 2012 to over $180 billion by 2022\n10. Alien Worlds Discord channel trivia sessions and NFT prizes\n11. StreamingArtWAX intergalactic adventure on Twitch Games with Alien Worlds NFT prizes.","data":[4,8,7,8,0,0,5,3,5,4,10,4,3,3,1,3,4,2,1,8,46,5,5,5,3,7,3,8,3,3,3,2,4,3,13,4,6,16,3,7,1,5,3,0,1,2,0,6,4,2,2,5,1,2,7]},{"label":"CPI","topics":"inflation,cpi,rate,fed,cut","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Inflation data: There is a focus on recent inflation data, with mentions of CPI (Consumer Price Index) figures coming in lower than expected. This has implications for the economy and financial markets, including potential impacts on Bitcoin prices.\n\n2. Unemployment rate: Discussions also touch on the unemployment rate, which has ticked up to 4.1% in June. This has led to revisions in job gains and is seen as having both positive and negative effects on the market and Bitcoin prices.\n\n3. Market reactions: There are observations about market reactions to economic data releases, with mentions of the TradFi (Traditional Finance) market rallying and the importance of monitoring volatility in response to economic indicators.\n\n4. Machine-to-machine economy: A concept known as the machine-to-machine (M2M) economy is introduced, highlighting the role of machines and devices as autonomous market participants. This innovation is seen as shaping the future of ecommerce.\n\nOverall, the discussions on Twitter reflect a mix of economic data analysis, market trends, and emerging technologies in the crypto industry.","data":[2,2,5,1,2,2,9,2,1,2,8,7,0,7,0,10,1,4,7,2,5,5,4,7,5,39,8,2,0,1,3,18,0,3,2,3,4,3,3,10,13,8,1,2,2,3,5,8,4,4,7,2,1,4,3]},{"label":"EthCC","topics":"brussels,ethcc,meet,chat,event","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Smart Accounts and their powerplay\n- Incidents of people getting jumped on the streets in Brussels during #ethcc\n- Excitement for #Ethcc2024 in Brussels\n- Discussions on decentralized AI, ZKPs, and blockchain tech\n- Phala Ambassadors meeting up with the core team in Brussels\n- Synthetix team looking to meet with builders at ETH CC\n- Keynote speeches at TezDev by ArthurB, co-founder of Tezos\n- OpenZeppelin's presence in Brussels and their Ecosystem Development team\n- Spaces hosted by @tastycrypto with Kwenta, @stryke_xyz, and @Panoptic_xyz\n- RWA Brussels event featuring various speakers discussing liquidity for tokenized assets\n- UniLend Finance's representation at #Ethcc2024\n- Events and speaking engagements in Brussels by various crypto projects and individuals.","data":[2,5,5,2,1,0,2,2,0,4,8,7,3,6,5,1,4,7,0,5,1,5,6,8,1,1,2,24,5,4,2,1,8,2,0,2,4,2,0,5,3,4,0,2,3,5,3,4,2,1,4,3,7,8,2]},{"label":"Art","topics":"art,artists,digital,collection,collect","description":"Based on the messages from twitter, it is evident that the crypto industry is currently discussing topics related to generative art, NFTs, blockchain art, and the intersection of art and technology. Artists are exploring new challenges and creating unique pieces that are being bought and sold as NFTs. There is a focus on creating art that provides viewers with a meaningful experience and evokes emotions. The use of technology, such as minting art on the blockchain and displaying it on different platforms, is also highlighted. Artists like Snowfro (@ArtOnBlockchain) are gaining recognition for their innovative work in the blockchain art space. Overall, the crypto community is actively engaging with and supporting the intersection of art and technology in various forms.","data":[4,4,28,2,0,1,2,1,4,0,5,3,8,4,4,8,0,2,6,0,2,3,2,0,1,0,1,1,3,3,4,5,3,0,1,5,4,4,1,4,6,0,3,1,6,2,4,0,6,6,4,1,5,1,6]},{"label":"BTC Mining","topics":"mining,miners,power,bitcoin,energy","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin mining: Discussions about the environmental impact of bitcoin mining, with concerns about its energy consumption and effects on the planet. There are also mentions of new mining projects in countries like Ethiopia and Paraguay, as well as illegal mining activities in Malaysia.\n\n2. Bitcoin miners' revenue: Reports of a significant drop in revenue for bitcoin miners, leading to the shutdown of inefficient equipment and selling of reserves. This is seen as a sign of capitulation in the mining industry.\n\n3. Bitcoin mining equipment: Updates on price drops for Avalon bitcoin miners, with mentions of specific models like A1466 and A1346 being offered at unbeatable prices.\n\n4. Regulatory issues: Lawsuits seeking to revoke environmental permits for mining projects, such as the Adventus US Curipamba copper and gold project in Ecuador, which could impact acquisition bids.\n\n5. Hashing power and security: Discussions about the high hashing power of bitcoin and the potential impact of a 50% reduction in miners on the security of the network. There are also mentions of ASICs and concerns about potential 51% attacks.\n\nOverall, the conversations on social media reflect a mix of environmental concerns, regulatory challenges, revenue fluctuations, and security considerations within the crypto mining industry.","data":[4,1,5,3,4,23,3,2,1,0,6,2,1,0,2,0,3,1,1,1,0,0,2,2,3,6,1,3,7,0,3,4,19,2,4,2,0,0,2,1,0,2,4,0,1,1,1,1,3,0,1,6,1,1,1]},{"label":"Mt.Gox","topics":"mt,gox,cash,billion,exchange","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Mt. Gox creditors facing delays in receiving their Bitcoin and Bitcoin Cash repayments, with processing times varying by exchange.\n2. Concerns about the impact of Mt. Gox selling off $9 billion in Bitcoin on the market, leading to a drop in Bitcoin's price.\n3. Speculation about the potential price impact of 95,000 BTC from Mt. Gox being sent out within 90 days, with estimates suggesting a possible 10% drop in Bitcoin's value.\n4. Analysis of the risks posed by Mt. Gox and its history of being hacked in 2014, resulting in the loss of a significant amount of BTC.\n5. Frustration among some users about Mt. Gox's ongoing presence as a cloud over Bitcoin and anticipation for it to be completely out of the picture.\n6. Updates on Mt. Gox Rehabilitation Trustee Nobuaki Kobayashi announcing repayments in Bitcoin and Bitcoin Cash to some creditors as of July 5, 2024, with further repayments pending validation of accounts and completion of necessary agreements.\n7. Reports on GBTC selling 510 Bitcoin, with observations that it was a small outflow and not a panic sell-off for GBTC holders.\n8. Analysis of the potential impact of Mt. Gox's actions on Bitcoin Cash compared to Bitcoin, with some analysts suggesting that Bitcoin Cash may be more affected.\n9. Observations about the address used by Mt. Gox creditors for payments and estimates on the amount of BTC being returned to retail investors.\n10. Reports on the timeline for Mt. Gox creditors to receive their repayments, with varying wait times depending on the exchange.","data":[5,4,2,12,3,5,9,1,0,1,2,1,4,2,2,0,1,1,2,0,1,1,2,0,0,2,4,1,1,2,1,1,1,8,0,2,0,1,0,1,10,2,5,3,0,5,1,1,1,4,4,3,5,1,1]},{"label":"BTC ETF","topics":"net,etfs,inflows,flows,saw","description":"The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs. Institutions like BlackRock and Fidelity are seen buying the dip, with inflows reaching as high as $700 million in just three days. This influx of funds into Bitcoin ETFs is seen as a positive sign for the market, indicating a potential recovery in the cryptocurrency space. The breadth of the inflows, with 8 out of 10 issuers seeing positive inflows, suggests a growing appetite for Bitcoin investments across the investor spectrum. Despite Bitcoin trading below $58,000, the resilience of ETF investors defies bearish predictions, with significant inflows reported.","data":[1,0,0,1,13,2,2,0,2,0,1,2,0,4,0,0,12,0,0,2,0,1,2,2,1,3,8,0,0,0,2,2,0,2,6,0,0,1,1,3,2,0,3,0,21,5,2,0,0,9,1,0,0,1,7]},{"label":"ETH Price","topics":"eth,ethereum,3000,price,etf","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum price movements, with mentions of price levels such as $3050, $4000, $2800, $3000, $2450, $3200, $3364, and potential future targets like $10,000 and $21,000 per coin.\n- References to technical analysis indicators like Local SL, Path to 3400, Perfect SL hunt, Year VWAP, and Q2 VWAP.\n- Speculation on the impact of ETF approval on Ethereum's price and potential opportunities for traders.\n- Analysis of market conditions such as declining exchange supply, high locked supply, steady TVL, growing layer-2 activity, and bullish derivatives sentiment.\n- Discussion of the 2022 cycle peak, interest rate hiking cycles, geopolitical conflicts, and historical returns on Ethereum.\n- Overall sentiment seems to be bullish on Ethereum, with expectations of a potential rally above $3,400 in the near future.","data":[2,0,2,2,0,0,1,1,2,6,2,1,1,1,0,2,15,17,1,1,0,4,2,0,2,2,0,1,1,2,5,0,0,1,1,2,1,0,4,3,2,1,1,5,1,1,3,2,4,3,1,2,2,2,2]},{"label":"DOGE","topics":"doge,website,volume,right,check","description":"The key topics currently discussed in the crypto community on Twitter include:\n- Dogecoin defying physics and experiencing price fluctuations\n- Speculation and excitement surrounding Dogecoin's performance\n- Price analysis and predictions for Dogecoin\n- Tips and advice on buying and accumulating Dogecoin\n- Discussion about Dogecoin's market trends and potential for growth\n- Sharing of strain of the day for cannabis enthusiasts\n- Promotions for VIP channels offering trading signals for Dogecoin\n- Technical analysis and trading recommendations for Dogecoin\n- Links to websites and platforms for trading Dogecoin and NFTs","data":[1,1,1,1,1,0,1,3,5,0,2,1,0,2,8,23,2,1,2,2,1,5,3,0,2,1,1,2,5,1,1,2,1,0,0,2,0,2,6,4,1,2,1,1,1,1,3,1,4,3,0,1,5,0,0]},{"label":"NFT","topics":"nfts,nft,mint,phase,art","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. NFTs and their investment potential in 2024\n2. Impact of NFTs beyond financial metrics\n3. Building better infrastructure for NFTs\n4. Launch of new NFT collections and platforms\n5. Cross-chain NFTs and their importance\n6. Artistic NFT collections and collaborations\n7. Issues and delays in NFT minting processes\n\nOverall, the discussions revolve around the growth and potential of NFTs, the need for better infrastructure, and the emergence of new platforms and collaborations in the crypto industry.","data":[2,2,1,1,0,1,0,3,1,5,1,0,3,1,3,0,2,2,4,2,0,1,2,0,0,1,1,1,3,4,2,1,7,2,12,0,3,3,1,3,3,0,2,2,2,4,1,1,3,3,1,1,5,2,1]},{"label":"ETH ETF","topics":"etf,ethereum,spot,etfs,sec","description":"The key topic discussed in the messages from twitter is the anticipation and potential approval of a spot Ethereum ETF by the SEC. The messages mention that the ETF approval is expected by mid-July, with analysts predicting a boost in Ethereum prices and increased interest from investors. The messages also highlight the impact of the ETF approval on potential US voters and their willingness to invest in Ethereum. Various sources suggest that the ETF launch date is approaching, with some speculating a launch date of July 18. Overall, the messages indicate a high level of excitement and anticipation surrounding the potential approval of a spot Ethereum ETF.","data":[2,4,1,2,0,0,9,0,0,0,0,1,0,0,1,0,16,7,5,0,0,1,2,1,0,2,1,0,3,1,0,2,0,4,3,1,0,3,1,0,2,1,1,0,5,1,0,0,5,1,1,1,6,0,0]},{"label":"SHIB","topics":"shib,lead,marketplace,rebound,cryptocurrecy","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the increase in addresses holding Shiba Inu for over a year, Shytoshi Kusama revealing the next destination for making a public appearance, reasons for the drop in Shiba Inu price, the resurgence of Shiba Inu whales boosting the price, the significant increase in weekly burns for Shiba Inu, the emergence of new meme coins like dogwifhat and American Shib, the upcoming launch of Shiba Shootout coin, the sharp rebound of Shiba Inu by 15% in 24 hours, comparisons between Shiba Inu and other meme coins like APU, and the launch of Tenset Infinity's 73rd airdrop and new memecoin inspired by Lion King. Additionally, there is discussion about the market cap and supply of Shiba Inu coin compared to other established companies like Coca Cola.","data":[2,2,1,0,1,0,1,1,1,0,0,0,2,1,2,2,3,0,2,2,0,0,0,1,2,0,28,0,5,0,0,4,0,0,2,0,0,0,0,3,0,1,0,16,1,0,2,1,0,1,0,1,0,1,0]},{"label":"SOL","topics":"sol,solana,etf,wave,correction","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community regarding Solana (SOL) include:\n\n1. Speculation about a potential Solana ETF being launched by the Chicago Board Options Exchange, with filings submitted by VanEck and 21Shares.\n2. Price predictions and analysis for SOL, with some users predicting a price target of $200 and new all-time highs.\n3. Discussion about SOL finding support and holding its low despite market corrections in Bitcoin (BTC) and Ethereum (ETH).\n4. Positive sentiment towards the growth of the SOL network and its trading experience, with some users still skeptical about the need for an ETF.\n5. Updates on the filing of Form 19b-4 for the 21Shares Core Solana ETF and VanEck Solana Trust, with a final deadline set for mid-March 2025.\n6. Mention of Injective Protocol (INJ) alongside SOL as altcoins showing strength despite downward pressure on Bitcoin.\n7. Excitement about the potential for Solana-based ETFs to be approved by the SEC, with implications depending on the outcome of the US presidential election.\n\nOverall, the sentiment towards Solana appears to be positive, with users discussing price movements, market dynamics, and potential ETF developments.","data":[2,3,0,2,1,0,2,0,2,0,1,1,1,1,1,0,1,0,4,0,0,0,0,1,1,0,2,1,0,0,1,0,3,1,1,2,1,2,8,4,2,3,3,0,17,0,3,2,1,2,0,0,3,1,0]},{"label":"PEPE","topics":"pepe,cap,chart,breakdown,range","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- $PEPE cryptocurrency experiencing a notable market correction and breaking key support levels\n- Launch of new Layer 2 meme coin Pepe Unchained crossing $3M in ICO\n- Speculation and concerns surrounding a massive Pepe exodus\n- Discussion about $PEPE Sensei and $PEIPEI cryptocurrencies originating from Japan and China\n- Price predictions and technical analysis of $PEPE chart\n- Debate on the launch of $PEPE futures before spot trading and its potential impact on market manipulation\n- Bullish signs and critical support levels for $PEPE\n- Mention of other related cryptocurrencies like $Apu, $Hoppy, $Marv\n- Calls for not fading the frog narrative and potential for significant growth in #Groyper\n- Updates on buying and selling $PEPE and monitoring BTC price movements\n\nOverall, the sentiment around $PEPE and related cryptocurrencies seems to be mixed, with discussions ranging from technical analysis to market speculation and potential growth opportunities.","data":[1,0,1,2,0,0,1,2,2,1,2,0,0,1,0,0,0,0,0,3,0,0,1,3,2,1,0,2,6,2,1,2,1,1,1,1,14,0,3,3,3,2,1,1,2,0,1,1,0,0,0,3,0,2,1]},{"label":"SEC","topics":"sec,stablecoin,court,notice,ends","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The ongoing legal battle between Coinbase and the SEC, with updates on whether Gary Gensler will be subpoenaed.\n2. The SEC's decision to allow exceptions to crypto accounting rule compliance, potentially impacting banks and brokerages.\n3. The SEC withdrawing enforcement action against Paxos' BUSD stablecoin.\n4. Calls for federal legislation to regulate Bitcoin and Ether as commodities.\n5. The impact of the SEC lawsuit against Consensys and how it may not hold much ground.\n6. The potential for Coinbase to become a digital securities dealer and classify all \"shitcoins\" as digital securities.\n7. Senators calling for a special counsel investigation into Clarence Thomas.\n8. CFTC Chairman's push for expanded crypto regulatory authority.\n9. Livestream series discussing recent U.S. Supreme Court opinions and their impact on the internet.\n10. Coinbase's response to the SEC's efforts to block discovery from Mr. Gensler, emphasizing the importance of due process.","data":[2,1,1,0,0,0,1,0,3,5,1,3,0,4,2,5,9,0,1,1,0,0,1,1,0,2,0,1,1,2,2,0,0,0,1,2,0,1,1,1,0,0,0,3,0,3,4,0,0,0,1,4,0,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-27.ts b/priv/repo/major_topics_seed/data-27.ts deleted file mode 100644 index d1a9c59c95..0000000000 --- a/priv/repo/major_topics_seed/data-27.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '04.07.24', - '05.07.24', - '05.07.24', - '05.07.24', - '05.07.24', - '05.07.24', - '05.07.24', - '05.07.24', - '06.07.24', - '06.07.24', - '06.07.24', - '06.07.24', - '06.07.24', - '06.07.24', - '06.07.24', - '06.07.24', - '07.07.24', - '07.07.24', - '07.07.24', - '07.07.24', - '07.07.24', - '07.07.24', - '07.07.24', - '07.07.24', - '08.07.24', - '08.07.24', - '08.07.24', - '08.07.24', - '08.07.24', - '08.07.24', - '08.07.24', - '08.07.24', - '09.07.24', - '09.07.24', - '09.07.24', - '09.07.24', - '09.07.24', - '09.07.24', - '09.07.24', - '09.07.24', - '10.07.24', - '10.07.24', - '10.07.24', - '10.07.24', - '10.07.24', - '10.07.24', - '10.07.24', - '10.07.24', - '11.07.24', - '11.07.24', - '11.07.24', - '11.07.24', - '11.07.24', - '11.07.24', - '11.07.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,money,fiat,understand,people', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin price fluctuations and market analysis\n- Criticism of "No KYC" mantra and delusional beliefs in the Bitcoin community\n- Faketoshi\'s BSV dropping out of the top 100 cryptocurrencies on CMC\n- The resilience of Bitcoin and other cryptocurrencies during market dips\n- The importance of holding onto crypto assets during market downturns\n- The concept of deflation in the free market and its implications for Bitcoin\n- Criticism of KYC, ETF, and BRC20 in relation to Satoshi\'s original vision for Bitcoin\n- Encouragement to HODL onto crypto assets and not panic sell\n- The potential for Bitcoin to become the standard of value in composite currency contracts\n- The need for better Bitcoin native payment systems to prevent the rise of centralized alternatives.', - data: [ - 9, 9, 7, 9, 53, 59, 6, 19, 6, 7, 7, 22, 6, 6, 19, 8, 10, 10, 14, 17, 6, 14, 17, 17, 12, 21, - 15, 9, 11, 12, 11, 18, 4, 27, 3, 13, 15, 12, 14, 12, 11, 20, 14, 18, 13, 19, 11, 19, 14, 7, - 17, 11, 14, 13, 9, - ], - }, - { - label: 'German government & BTC', - topics: 'german,germany,government,selling,btc', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Germany selling off a significant amount of Bitcoin, with the government holding less than $1 billion worth.\n2. Concerns about the impact of the German government\'s Bitcoin sell-off on BTC prices.\n3. TRON founder Justin Sun offering to buy all Bitcoin from the German government.\n4. Venezuela potentially becoming a Bitcoin mining hub under new leadership.\n5. Calls from German MPs to stop the "hasty" Bitcoin sell-off and diversify treasury assets.\n6. Updates on the German government continuing to move Bitcoin, with recent transfers to Flow Traders, Coinbase, and Bitstamp.\n7. Discussions about short-term noise versus long-term opportunities in the crypto market, including Mt. Gox selling and German government selling.\n8. Bitcoin ETFs seeing significant inflows despite Germany\'s sell-off.\n9. Bitcoin climbing over $57K, with some suggesting that Mt. Gox sales are already "priced in."\n10. Overall market buzz and updates around Bitcoin, Ethereum, and decentralized governance.', - data: [ - 18, 5, 6, 3, 10, 9, 17, 7, 9, 2, 5, 10, 6, 6, 4, 14, 8, 5, 8, 4, 114, 47, 11, 9, 11, 3, 7, - 4, 13, 10, 5, 11, 1, 9, 7, 5, 3, 5, 4, 12, 4, 11, 27, 20, 9, 5, 5, 8, 5, 3, 8, 12, 13, 7, - 10, - ], - }, - { - label: 'BTC Price', - topics: 'close,daily,btc,range,level', - description: - "The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin's daily candle closing above or below certain levels\n- The potential for Bitcoin to reach $60,000 and the risks involved\n- Technical analysis indicators such as ascending triangles and moving averages\n- Speculation on Bitcoin's future price movements and potential for growth\n- Comparison of current market trends to past patterns\n- Support and resistance levels for Bitcoin\n- Divergence signals and bottoming signals for trading decisions\n- Advice on maintaining good relationships with bosses\n- Overall sentiment towards Bitcoin's price action and market movements", - data: [ - 3, 2, 3, 10, 19, 26, 8, 25, 3, 5, 15, 5, 4, 17, 4, 4, 2, 3, 7, 5, 1, 6, 5, 6, 12, 2, 4, 6, - 1, 4, 14, 5, 1, 13, 4, 3, 3, 8, 10, 12, 17, 5, 1, 5, 2, 3, 3, 6, 9, 3, 2, 9, 3, 12, 8, - ], - }, - { - label: 'AI', - topics: 'ai,tech,humans,data,future', - description: - 'The key topics currently being discussed in the crypto industry on social media include decentralized AI, the potential for AI to revolutionize financial interactions, investments in AI startups, the development of AI models for mobile devices, and the role of major tech companies like Microsoft in the AI space. There is also a focus on the transformative potential of AI, with questions about the problems it can solve and the challenges and opportunities in achieving results with AI. Overall, there is a lot of excitement and interest in the intersection of AI and the crypto industry.', - data: [ - 12, 33, 12, 3, 0, 0, 3, 1, 3, 5, 7, 7, 6, 8, 4, 8, 5, 5, 5, 4, 6, 3, 10, 9, 5, 6, 7, 9, 7, - 5, 6, 6, 8, 5, 5, 2, 5, 2, 3, 11, 8, 3, 7, 3, 5, 2, 1, 10, 9, 5, 7, 4, 9, 4, 10, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coin', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n1. Memecoins: There is a lot of discussion about various memecoins such as #Miladymemecoin, #Btc, $Pepe, $Apu, #GROYPER, Shiba Shootout, $MATT, and #PepeCoin. People are talking about the potential for meme coins to change their lives and the importance of strong communities in the memecoin space.\n2. Launching Memecoins: The process of launching a memecoin is highlighted, with an emphasis on creating a website for the coin. There is also mention of Radiant launching on @Base in July with isolated lending.\n3. Investment Advice: There is a conversation about safe coins to invest in, with a recommendation for #EGLD as a solid staking option for normie investors who are risk-averse.\n4. Rising Stars in Crypto: The on-chain activity of rising stars in the crypto universe such as PEPE, FET, and ENS is discussed, with a focus on their recent surges in activity.\n5. Top Meme Gainers: The top meme gainers are listed, including #BILLY, #BEER, #APU, #BONK, and #PEPE, with a call to action for traders to share which coins they are trading.\n\nOverall, the messages reflect a mix of excitement, speculation, and investment advice within the crypto industry, particularly in relation to memecoins and rising stars in the market.', - data: [ - 2, 3, 1, 6, 1, 2, 2, 7, 6, 3, 2, 3, 4, 2, 1, 3, 2, 3, 6, 5, 2, 3, 5, 3, 7, 5, 4, 7, 9, 3, 3, - 1, 70, 5, 3, 3, 8, 1, 4, 8, 2, 6, 3, 3, 1, 8, 3, 5, 2, 2, 6, 2, 3, 3, 7, - ], - }, - { - label: 'GameFI', - topics: 'game,gaming,games,web3,telegram', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n1. Unusual options activity spotted on GameStop\n2. Bybit listing Hamster Kombat\'s token for pre-market trading\n3. The Yuzu Game Console shutdown and Nintendo targeting other consoles\n4. Nova Frontier Chronicles and the release of the "Third Faction" chapter\n5. Pet Legends game requiring ownership of a $KIN Battle Pet NFT\n6. MMORPGs on $RONIN and the need for a concentrated player base\n7. Farmer games trend on SteamDB and the Play 2 Earn concept\n8. Nakamoto Games partnering with Telegram for sign up and login\n9. Growth of the gaming market from $70 billion in 2012 to over $180 billion by 2022\n10. Alien Worlds Discord channel trivia sessions and NFT prizes\n11. StreamingArtWAX intergalactic adventure on Twitch Games with Alien Worlds NFT prizes.', - data: [ - 4, 8, 7, 8, 0, 0, 5, 3, 5, 4, 10, 4, 3, 3, 1, 3, 4, 2, 1, 8, 46, 5, 5, 5, 3, 7, 3, 8, 3, 3, - 3, 2, 4, 3, 13, 4, 6, 16, 3, 7, 1, 5, 3, 0, 1, 2, 0, 6, 4, 2, 2, 5, 1, 2, 7, - ], - }, - { - label: 'CPI', - topics: 'inflation,cpi,rate,fed,cut', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Inflation data: There is a focus on recent inflation data, with mentions of CPI (Consumer Price Index) figures coming in lower than expected. This has implications for the economy and financial markets, including potential impacts on Bitcoin prices.\n\n2. Unemployment rate: Discussions also touch on the unemployment rate, which has ticked up to 4.1% in June. This has led to revisions in job gains and is seen as having both positive and negative effects on the market and Bitcoin prices.\n\n3. Market reactions: There are observations about market reactions to economic data releases, with mentions of the TradFi (Traditional Finance) market rallying and the importance of monitoring volatility in response to economic indicators.\n\n4. Machine-to-machine economy: A concept known as the machine-to-machine (M2M) economy is introduced, highlighting the role of machines and devices as autonomous market participants. This innovation is seen as shaping the future of ecommerce.\n\nOverall, the discussions on Twitter reflect a mix of economic data analysis, market trends, and emerging technologies in the crypto industry.', - data: [ - 2, 2, 5, 1, 2, 2, 9, 2, 1, 2, 8, 7, 0, 7, 0, 10, 1, 4, 7, 2, 5, 5, 4, 7, 5, 39, 8, 2, 0, 1, - 3, 18, 0, 3, 2, 3, 4, 3, 3, 10, 13, 8, 1, 2, 2, 3, 5, 8, 4, 4, 7, 2, 1, 4, 3, - ], - }, - { - label: 'EthCC', - topics: 'brussels,ethcc,meet,chat,event', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Smart Accounts and their powerplay\n- Incidents of people getting jumped on the streets in Brussels during #ethcc\n- Excitement for #Ethcc2024 in Brussels\n- Discussions on decentralized AI, ZKPs, and blockchain tech\n- Phala Ambassadors meeting up with the core team in Brussels\n- Synthetix team looking to meet with builders at ETH CC\n- Keynote speeches at TezDev by ArthurB, co-founder of Tezos\n- OpenZeppelin's presence in Brussels and their Ecosystem Development team\n- Spaces hosted by @tastycrypto with Kwenta, @stryke_xyz, and @Panoptic_xyz\n- RWA Brussels event featuring various speakers discussing liquidity for tokenized assets\n- UniLend Finance's representation at #Ethcc2024\n- Events and speaking engagements in Brussels by various crypto projects and individuals.", - data: [ - 2, 5, 5, 2, 1, 0, 2, 2, 0, 4, 8, 7, 3, 6, 5, 1, 4, 7, 0, 5, 1, 5, 6, 8, 1, 1, 2, 24, 5, 4, - 2, 1, 8, 2, 0, 2, 4, 2, 0, 5, 3, 4, 0, 2, 3, 5, 3, 4, 2, 1, 4, 3, 7, 8, 2, - ], - }, - { - label: 'Art', - topics: 'art,artists,digital,collection,collect', - description: - 'Based on the messages from twitter, it is evident that the crypto industry is currently discussing topics related to generative art, NFTs, blockchain art, and the intersection of art and technology. Artists are exploring new challenges and creating unique pieces that are being bought and sold as NFTs. There is a focus on creating art that provides viewers with a meaningful experience and evokes emotions. The use of technology, such as minting art on the blockchain and displaying it on different platforms, is also highlighted. Artists like Snowfro (@ArtOnBlockchain) are gaining recognition for their innovative work in the blockchain art space. Overall, the crypto community is actively engaging with and supporting the intersection of art and technology in various forms.', - data: [ - 4, 4, 28, 2, 0, 1, 2, 1, 4, 0, 5, 3, 8, 4, 4, 8, 0, 2, 6, 0, 2, 3, 2, 0, 1, 0, 1, 1, 3, 3, - 4, 5, 3, 0, 1, 5, 4, 4, 1, 4, 6, 0, 3, 1, 6, 2, 4, 0, 6, 6, 4, 1, 5, 1, 6, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,power,bitcoin,energy', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin mining: Discussions about the environmental impact of bitcoin mining, with concerns about its energy consumption and effects on the planet. There are also mentions of new mining projects in countries like Ethiopia and Paraguay, as well as illegal mining activities in Malaysia.\n\n2. Bitcoin miners' revenue: Reports of a significant drop in revenue for bitcoin miners, leading to the shutdown of inefficient equipment and selling of reserves. This is seen as a sign of capitulation in the mining industry.\n\n3. Bitcoin mining equipment: Updates on price drops for Avalon bitcoin miners, with mentions of specific models like A1466 and A1346 being offered at unbeatable prices.\n\n4. Regulatory issues: Lawsuits seeking to revoke environmental permits for mining projects, such as the Adventus US Curipamba copper and gold project in Ecuador, which could impact acquisition bids.\n\n5. Hashing power and security: Discussions about the high hashing power of bitcoin and the potential impact of a 50% reduction in miners on the security of the network. There are also mentions of ASICs and concerns about potential 51% attacks.\n\nOverall, the conversations on social media reflect a mix of environmental concerns, regulatory challenges, revenue fluctuations, and security considerations within the crypto mining industry.", - data: [ - 4, 1, 5, 3, 4, 23, 3, 2, 1, 0, 6, 2, 1, 0, 2, 0, 3, 1, 1, 1, 0, 0, 2, 2, 3, 6, 1, 3, 7, 0, - 3, 4, 19, 2, 4, 2, 0, 0, 2, 1, 0, 2, 4, 0, 1, 1, 1, 1, 3, 0, 1, 6, 1, 1, 1, - ], - }, - { - label: 'Mt.Gox', - topics: 'mt,gox,cash,billion,exchange', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Mt. Gox creditors facing delays in receiving their Bitcoin and Bitcoin Cash repayments, with processing times varying by exchange.\n2. Concerns about the impact of Mt. Gox selling off $9 billion in Bitcoin on the market, leading to a drop in Bitcoin's price.\n3. Speculation about the potential price impact of 95,000 BTC from Mt. Gox being sent out within 90 days, with estimates suggesting a possible 10% drop in Bitcoin's value.\n4. Analysis of the risks posed by Mt. Gox and its history of being hacked in 2014, resulting in the loss of a significant amount of BTC.\n5. Frustration among some users about Mt. Gox's ongoing presence as a cloud over Bitcoin and anticipation for it to be completely out of the picture.\n6. Updates on Mt. Gox Rehabilitation Trustee Nobuaki Kobayashi announcing repayments in Bitcoin and Bitcoin Cash to some creditors as of July 5, 2024, with further repayments pending validation of accounts and completion of necessary agreements.\n7. Reports on GBTC selling 510 Bitcoin, with observations that it was a small outflow and not a panic sell-off for GBTC holders.\n8. Analysis of the potential impact of Mt. Gox's actions on Bitcoin Cash compared to Bitcoin, with some analysts suggesting that Bitcoin Cash may be more affected.\n9. Observations about the address used by Mt. Gox creditors for payments and estimates on the amount of BTC being returned to retail investors.\n10. Reports on the timeline for Mt. Gox creditors to receive their repayments, with varying wait times depending on the exchange.", - data: [ - 5, 4, 2, 12, 3, 5, 9, 1, 0, 1, 2, 1, 4, 2, 2, 0, 1, 1, 2, 0, 1, 1, 2, 0, 0, 2, 4, 1, 1, 2, - 1, 1, 1, 8, 0, 2, 0, 1, 0, 1, 10, 2, 5, 3, 0, 5, 1, 1, 1, 4, 4, 3, 5, 1, 1, - ], - }, - { - label: 'BTC ETF', - topics: 'net,etfs,inflows,flows,saw', - description: - 'The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs. Institutions like BlackRock and Fidelity are seen buying the dip, with inflows reaching as high as $700 million in just three days. This influx of funds into Bitcoin ETFs is seen as a positive sign for the market, indicating a potential recovery in the cryptocurrency space. The breadth of the inflows, with 8 out of 10 issuers seeing positive inflows, suggests a growing appetite for Bitcoin investments across the investor spectrum. Despite Bitcoin trading below $58,000, the resilience of ETF investors defies bearish predictions, with significant inflows reported.', - data: [ - 1, 0, 0, 1, 13, 2, 2, 0, 2, 0, 1, 2, 0, 4, 0, 0, 12, 0, 0, 2, 0, 1, 2, 2, 1, 3, 8, 0, 0, 0, - 2, 2, 0, 2, 6, 0, 0, 1, 1, 3, 2, 0, 3, 0, 21, 5, 2, 0, 0, 9, 1, 0, 0, 1, 7, - ], - }, - { - label: 'ETH Price', - topics: 'eth,ethereum,3000,price,etf', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum price movements, with mentions of price levels such as $3050, $4000, $2800, $3000, $2450, $3200, $3364, and potential future targets like $10,000 and $21,000 per coin.\n- References to technical analysis indicators like Local SL, Path to 3400, Perfect SL hunt, Year VWAP, and Q2 VWAP.\n- Speculation on the impact of ETF approval on Ethereum's price and potential opportunities for traders.\n- Analysis of market conditions such as declining exchange supply, high locked supply, steady TVL, growing layer-2 activity, and bullish derivatives sentiment.\n- Discussion of the 2022 cycle peak, interest rate hiking cycles, geopolitical conflicts, and historical returns on Ethereum.\n- Overall sentiment seems to be bullish on Ethereum, with expectations of a potential rally above $3,400 in the near future.", - data: [ - 2, 0, 2, 2, 0, 0, 1, 1, 2, 6, 2, 1, 1, 1, 0, 2, 15, 17, 1, 1, 0, 4, 2, 0, 2, 2, 0, 1, 1, 2, - 5, 0, 0, 1, 1, 2, 1, 0, 4, 3, 2, 1, 1, 5, 1, 1, 3, 2, 4, 3, 1, 2, 2, 2, 2, - ], - }, - { - label: 'DOGE', - topics: 'doge,website,volume,right,check', - description: - "The key topics currently discussed in the crypto community on Twitter include:\n- Dogecoin defying physics and experiencing price fluctuations\n- Speculation and excitement surrounding Dogecoin's performance\n- Price analysis and predictions for Dogecoin\n- Tips and advice on buying and accumulating Dogecoin\n- Discussion about Dogecoin's market trends and potential for growth\n- Sharing of strain of the day for cannabis enthusiasts\n- Promotions for VIP channels offering trading signals for Dogecoin\n- Technical analysis and trading recommendations for Dogecoin\n- Links to websites and platforms for trading Dogecoin and NFTs", - data: [ - 1, 1, 1, 1, 1, 0, 1, 3, 5, 0, 2, 1, 0, 2, 8, 23, 2, 1, 2, 2, 1, 5, 3, 0, 2, 1, 1, 2, 5, 1, - 1, 2, 1, 0, 0, 2, 0, 2, 6, 4, 1, 2, 1, 1, 1, 1, 3, 1, 4, 3, 0, 1, 5, 0, 0, - ], - }, - { - label: 'NFT', - topics: 'nfts,nft,mint,phase,art', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n1. NFTs and their investment potential in 2024\n2. Impact of NFTs beyond financial metrics\n3. Building better infrastructure for NFTs\n4. Launch of new NFT collections and platforms\n5. Cross-chain NFTs and their importance\n6. Artistic NFT collections and collaborations\n7. Issues and delays in NFT minting processes\n\nOverall, the discussions revolve around the growth and potential of NFTs, the need for better infrastructure, and the emergence of new platforms and collaborations in the crypto industry.', - data: [ - 2, 2, 1, 1, 0, 1, 0, 3, 1, 5, 1, 0, 3, 1, 3, 0, 2, 2, 4, 2, 0, 1, 2, 0, 0, 1, 1, 1, 3, 4, 2, - 1, 7, 2, 12, 0, 3, 3, 1, 3, 3, 0, 2, 2, 2, 4, 1, 1, 3, 3, 1, 1, 5, 2, 1, - ], - }, - { - label: 'ETH ETF', - topics: 'etf,ethereum,spot,etfs,sec', - description: - 'The key topic discussed in the messages from twitter is the anticipation and potential approval of a spot Ethereum ETF by the SEC. The messages mention that the ETF approval is expected by mid-July, with analysts predicting a boost in Ethereum prices and increased interest from investors. The messages also highlight the impact of the ETF approval on potential US voters and their willingness to invest in Ethereum. Various sources suggest that the ETF launch date is approaching, with some speculating a launch date of July 18. Overall, the messages indicate a high level of excitement and anticipation surrounding the potential approval of a spot Ethereum ETF.', - data: [ - 2, 4, 1, 2, 0, 0, 9, 0, 0, 0, 0, 1, 0, 0, 1, 0, 16, 7, 5, 0, 0, 1, 2, 1, 0, 2, 1, 0, 3, 1, - 0, 2, 0, 4, 3, 1, 0, 3, 1, 0, 2, 1, 1, 0, 5, 1, 0, 0, 5, 1, 1, 1, 6, 0, 0, - ], - }, - { - label: 'SHIB', - topics: 'shib,lead,marketplace,rebound,cryptocurrecy', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include the increase in addresses holding Shiba Inu for over a year, Shytoshi Kusama revealing the next destination for making a public appearance, reasons for the drop in Shiba Inu price, the resurgence of Shiba Inu whales boosting the price, the significant increase in weekly burns for Shiba Inu, the emergence of new meme coins like dogwifhat and American Shib, the upcoming launch of Shiba Shootout coin, the sharp rebound of Shiba Inu by 15% in 24 hours, comparisons between Shiba Inu and other meme coins like APU, and the launch of Tenset Infinity's 73rd airdrop and new memecoin inspired by Lion King. Additionally, there is discussion about the market cap and supply of Shiba Inu coin compared to other established companies like Coca Cola.", - data: [ - 2, 2, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 2, 1, 2, 2, 3, 0, 2, 2, 0, 0, 0, 1, 2, 0, 28, 0, 5, 0, - 0, 4, 0, 0, 2, 0, 0, 0, 0, 3, 0, 1, 0, 16, 1, 0, 2, 1, 0, 1, 0, 1, 0, 1, 0, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,etf,wave,correction', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community regarding Solana (SOL) include:\n\n1. Speculation about a potential Solana ETF being launched by the Chicago Board Options Exchange, with filings submitted by VanEck and 21Shares.\n2. Price predictions and analysis for SOL, with some users predicting a price target of $200 and new all-time highs.\n3. Discussion about SOL finding support and holding its low despite market corrections in Bitcoin (BTC) and Ethereum (ETH).\n4. Positive sentiment towards the growth of the SOL network and its trading experience, with some users still skeptical about the need for an ETF.\n5. Updates on the filing of Form 19b-4 for the 21Shares Core Solana ETF and VanEck Solana Trust, with a final deadline set for mid-March 2025.\n6. Mention of Injective Protocol (INJ) alongside SOL as altcoins showing strength despite downward pressure on Bitcoin.\n7. Excitement about the potential for Solana-based ETFs to be approved by the SEC, with implications depending on the outcome of the US presidential election.\n\nOverall, the sentiment towards Solana appears to be positive, with users discussing price movements, market dynamics, and potential ETF developments.', - data: [ - 2, 3, 0, 2, 1, 0, 2, 0, 2, 0, 1, 1, 1, 1, 1, 0, 1, 0, 4, 0, 0, 0, 0, 1, 1, 0, 2, 1, 0, 0, 1, - 0, 3, 1, 1, 2, 1, 2, 8, 4, 2, 3, 3, 0, 17, 0, 3, 2, 1, 2, 0, 0, 3, 1, 0, - ], - }, - { - label: 'PEPE', - topics: 'pepe,cap,chart,breakdown,range', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- $PEPE cryptocurrency experiencing a notable market correction and breaking key support levels\n- Launch of new Layer 2 meme coin Pepe Unchained crossing $3M in ICO\n- Speculation and concerns surrounding a massive Pepe exodus\n- Discussion about $PEPE Sensei and $PEIPEI cryptocurrencies originating from Japan and China\n- Price predictions and technical analysis of $PEPE chart\n- Debate on the launch of $PEPE futures before spot trading and its potential impact on market manipulation\n- Bullish signs and critical support levels for $PEPE\n- Mention of other related cryptocurrencies like $Apu, $Hoppy, $Marv\n- Calls for not fading the frog narrative and potential for significant growth in #Groyper\n- Updates on buying and selling $PEPE and monitoring BTC price movements\n\nOverall, the sentiment around $PEPE and related cryptocurrencies seems to be mixed, with discussions ranging from technical analysis to market speculation and potential growth opportunities.', - data: [ - 1, 0, 1, 2, 0, 0, 1, 2, 2, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 1, 3, 2, 1, 0, 2, 6, 2, 1, - 2, 1, 1, 1, 1, 14, 0, 3, 3, 3, 2, 1, 1, 2, 0, 1, 1, 0, 0, 0, 3, 0, 2, 1, - ], - }, - { - label: 'SEC', - topics: 'sec,stablecoin,court,notice,ends', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The ongoing legal battle between Coinbase and the SEC, with updates on whether Gary Gensler will be subpoenaed.\n2. The SEC's decision to allow exceptions to crypto accounting rule compliance, potentially impacting banks and brokerages.\n3. The SEC withdrawing enforcement action against Paxos' BUSD stablecoin.\n4. Calls for federal legislation to regulate Bitcoin and Ether as commodities.\n5. The impact of the SEC lawsuit against Consensys and how it may not hold much ground.\n6. The potential for Coinbase to become a digital securities dealer and classify all \"shitcoins\" as digital securities.\n7. Senators calling for a special counsel investigation into Clarence Thomas.\n8. CFTC Chairman's push for expanded crypto regulatory authority.\n9. Livestream series discussing recent U.S. Supreme Court opinions and their impact on the internet.\n10. Coinbase's response to the SEC's efforts to block discovery from Mr. Gensler, emphasizing the importance of due process.", - data: [ - 2, 1, 1, 0, 0, 0, 1, 0, 3, 5, 1, 3, 0, 4, 2, 5, 9, 0, 1, 1, 0, 0, 1, 1, 0, 2, 0, 1, 1, 2, 2, - 0, 0, 0, 1, 2, 0, 1, 1, 1, 0, 0, 0, 3, 0, 3, 4, 0, 0, 0, 1, 4, 0, 1, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-28.json b/priv/repo/major_topics_seed/data-28.json deleted file mode 100644 index 1cb18fa80f..0000000000 --- a/priv/repo/major_topics_seed/data-28.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["11.07.24","12.07.24","12.07.24","12.07.24","12.07.24","12.07.24","12.07.24","12.07.24","13.07.24","13.07.24","13.07.24","13.07.24","13.07.24","13.07.24","13.07.24","13.07.24","14.07.24","14.07.24","14.07.24","14.07.24","14.07.24","14.07.24","14.07.24","14.07.24","15.07.24","15.07.24","15.07.24","15.07.24","15.07.24","15.07.24","15.07.24","15.07.24","16.07.24","16.07.24","16.07.24","16.07.24","16.07.24","16.07.24","16.07.24","16.07.24","17.07.24","17.07.24","17.07.24","17.07.24","17.07.24","17.07.24","17.07.24","17.07.24","18.07.24","18.07.24","18.07.24","18.07.24","18.07.24","18.07.24","18.07.24"],"datasets":[{"label":"BTC Price","topics":"btc,range,price,bitcoin,60k","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are:\n\n1. Bitcoin price movements: There is excitement and optimism surrounding Bitcoin's price nearing $65,000 and potentially reaching $100,000 next. There are also discussions about Bitcoin reclaiming the $59,000 level and the potential for it to break $60,000.\n\n2. Market volatility: There are observations of indecisiveness in the market, with high volatility and price fluctuations. Traders are analyzing the market conditions and predicting potential movements.\n\n3. Technical analysis: Traders are discussing technical indicators such as candlestick patterns, support levels, and RSI levels to make predictions about Bitcoin's price movements.\n\n4. Investment strategies: There are discussions about adding positions during the weekend and the potential for a weekend pump. Traders are sharing their strategies for entering the market and making profits.\n\n5. Future price predictions: There are predictions of Bitcoin reaching $70,000 in the coming weeks, with potential rejection before a rise in September. Traders are sharing their insights on the market and advising on potential entry points.\n\nOverall, the sentiment on Twitter regarding Bitcoin and the crypto industry is positive, with traders and investors closely monitoring price movements and market conditions.","data":[8,6,7,9,54,53,10,29,3,6,10,8,5,15,3,7,1,8,8,3,5,7,3,14,2,7,7,1,7,13,7,9,6,6,7,7,4,13,8,18,11,6,3,11,3,4,13,9,3,5,6,8,2,12,2]},{"label":"BTC","topics":"bitcoin,money,currency,government,dont","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin volatility and understanding Bitcoin\n- On-chain cartoon series on the Bitcoin blockchain\n- Evolution from a crypto NOOB to a Bitcoin PRO\n- Bitcoin being rarely used in transactions with merchants\n- Altcoins and leveraged positions on Bitcoin\n- Rebranding of BSV-tards memecoin to bITCOIN\n- Bitcoin rednecks inheriting the earth\n- The true reason why Bitcoin was written and its super power\n- NGU Bitcoin as a creator of generational wealth\n- The devaluation of fiat currency over time\n- Bitget's AMA with @well3official on Bitget Discord and the $1000 WELL prize pool\n\nOverall, the messages reflect a mix of opinions and discussions about Bitcoin, altcoins, wealth accumulation, and the future of cryptocurrency.","data":[6,4,11,10,48,39,9,3,5,6,7,6,7,10,3,9,4,10,10,7,7,5,13,7,10,4,6,7,12,9,11,11,5,12,8,14,9,10,8,9,7,6,4,8,5,6,9,13,6,9,3,6,10,8,4]},{"label":"ETH ETF","topics":"ethereum,etf,eth,etfs,spot","description":"The key topics currently being discussed on Twitter in relation to Ethereum and crypto industry are:\n1. Ethereum ETF: There is anticipation and speculation about the approval and launch of Ethereum ETFs, with mentions of BlackRock, Franklin Templeton, and VanEck receiving preliminary approval from the SEC.\n2. Price Analysis: There are discussions about the current price action of Ethereum, with mentions of bullish momentum, high indecision, and potential price movements.\n3. Technical Analysis: Traders are analyzing technical indicators such as the Chaikin accumulation indicator on the daily chart, suggesting a potential strong rise in price if confirmed.\n4. Market Sentiment: There are mixed sentiments about the market, with mentions of a possible weekend pump, heavy selling pressure, and the need for caution in trading.\n5. Grayscale AI Fund: Grayscale's launch of a decentralized AI fund amid the growing AI crypto market is also being discussed.\n6. Gas Fees: There are complaints about high gas fees, with mentions of gas reaching 200+ gwei and frustration from users.\n7. Staking: Staked Ethereum is at an all-time high, leading to questions about the timing of an Ethereum ETF approval.\n8. Market Speculation: There is speculation about the potential impact of ETF approval on Ethereum's price, with some expecting a significant price increase.\nOverall, the discussions on Twitter reflect a mix of excitement, uncertainty, and caution among traders and investors in the crypto industry.","data":[6,10,3,7,0,3,17,5,5,2,4,4,2,7,4,5,89,13,9,4,6,5,12,12,5,7,6,12,7,8,6,4,2,6,3,5,2,8,6,7,11,1,5,8,21,6,4,7,8,5,2,4,7,10,5]},{"label":"German government & BTC","topics":"german,germany,government,sold,selling","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Germany selling off its Bitcoin holdings: There is a mix of reactions to Germany selling off its Bitcoin holdings, with some speculating on the impact on the market and others questioning the decision.\n\n2. Blackrock buying Bitcoin: The news of Blackrock buying 2000 Bitcoin is seen as a positive sign for the market, with some expressing optimism about the future.\n\n3. El Salvador's adoption of Bitcoin: There is mention of El Salvador's progress in adopting Bitcoin as legal tender, with some praising the decision and others questioning its implications.\n\n4. Market trends and analysis: There are updates on the price movements of Bitcoin, with mentions of fear and greed index, European market performance, and US stock market trends.\n\n5. Regulatory developments: There is discussion about Germany's decision to ban equipment from Chinese tech giants Huawei and ZTE in its 5G networks, as well as updates on the European Central Bank's interest rates.\n\nOverall, the sentiment seems to be a mix of optimism, skepticism, and analysis of market trends and regulatory developments in the crypto industry.","data":[2,4,3,6,6,8,12,2,5,2,2,6,8,4,6,13,3,2,11,2,76,3,6,7,9,6,6,3,3,1,5,4,4,1,4,4,4,0,6,3,7,3,41,6,0,1,3,6,5,3,0,5,1,7,2]},{"label":"AI","topics":"ai,data,model,build,future","description":"The key topics currently discussed in the messages from twitter are:\n1. AI in various industries, including finance, software engineering, and medical field\n2. The impact of AI on job roles, such as the potential reduction of female office jobs and the role of AI in financial advising\n3. Regulatory challenges for AI models in the EU\n4. The future of AI development and innovation, including the launch of a $100 million fund for AI innovation\n5. The potential for AI to outperform humans in tasks like technical analysis\n6. The role of AI in government decision-making, such as the idea of an AI-run Federal Reserve\n7. The need for modern policy frameworks to advance medical AI\n8. The intersection of AI, blockchain, and Fully Homomorphic Encryption (FHE) technologies\n\nOverall, the discussions revolve around the advancements, challenges, and implications of AI technology in various sectors.","data":[27,33,8,7,0,0,3,8,1,6,4,11,5,3,5,4,3,7,5,6,5,5,6,4,7,7,8,4,6,4,2,6,4,3,8,10,3,6,8,3,4,11,1,1,3,4,3,6,4,4,3,3,7,5,4]},{"label":"ETF Flows","topics":"inflows,etfs,net,etf,blackrock","description":"In case you missed it, the key topics currently discussed in the crypto industry on Twitter include:\n- Australia's largest stock exchange, ASX, approving its second spot Bitcoin ETF\n- Spot Bitcoin ETFs seeing significant inflows, with over $310 million on July 12\n- Institutional custodians and ETFs becoming major players in the market\n- Predictions of Ethereum ETFs triggering a 50% surge to a new all-time high over $5k\n- BlackRock and Fidelity increasing their Spot Bitcoin ETF holdings to a combined total of 489,209 Bitcoin worth $28 billion\n- US Spot Bitcoin ETFs recording over $300 million in net inflows on Friday, reaching a record $15.81 billion\n- A nine-day streak of inflows for US Spot Bitcoin ETFs totaling around $1.97 billion\n\nOverall, the sentiment on Twitter seems to be bullish towards Bitcoin ETFs and institutional demand for Bitcoin.","data":[6,1,2,3,15,12,13,1,5,1,0,4,3,4,4,2,13,1,4,2,1,3,3,3,5,9,1,4,0,0,11,1,3,12,3,4,1,3,2,9,0,3,5,1,31,2,1,0,2,5,1,2,0,2,10]},{"label":"Memecoins","topics":"meme,memecoin,coin,memes,memecoins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Memecoins: There is a lot of discussion around meme coins, with users looking for the next big meme coin that will pump the hardest and potentially provide a 1000x return. Some specific meme coins mentioned include $SKITTY and $YOM.\n2. Memecoin Summer: There is anticipation for a \"Memecoin summer\" with expectations of significant gains, although some users are noting that the reality may be a \"Stablecoin summer\" instead.\n3. Meme Coins Recovery: Data shows that meme coins are recovering the strongest out of all narratives in the crypto market, positioning them as a strong contender against expensive VC tech coins.\n4. Tokens vs. Memecoins: There is a discussion about the fundamental differences between tokens and memecoins, highlighting that memecoins do not necessarily need to be based on ERC20 or have a dex, as trading can happen through bonding curves on the memecoin itself.\n5. MungdiX Season 2: An upcoming event called MungdiX Season 2 - Meme Coin/NFT Ideathon is being promoted, inviting participants to explore unique meme coin and NFT ideas and support creative endeavors. The event is scheduled for July 16 at 1:00 PM.\n\nOverall, the crypto community on Twitter is actively engaged in discussions around meme coins, their potential for growth, and upcoming events related to meme coins and NFTs.","data":[4,2,2,2,0,1,3,2,6,5,3,1,2,5,2,3,1,3,6,3,4,7,2,2,2,2,1,6,4,7,2,47,5,3,0,6,2,1,4,1,3,3,1,0,1,1,2,3,3,2,3,2,4,5,8]},{"label":"CPI","topics":"inflation,fed,cut,rate,rates","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- The impact of the World Bank disbursing a $752 million loan\n- The Federal Reserve's potential rate cut and its impact on inflation\n- Consumer spending trends and signs of inflation slowing down\n- Wall Street economists urging the Fed to cut rates amid tame inflation and rising unemployment\n- Speculation on the potential impact of a bullrun without interruption\n- Rachel Reeves pushing for a Brexit reset to boost the British economy\n- Annualized interest payments on US federal debt reaching an all-time high\n- Labour's gains in London leading to private equity looking to exit the country\n- The new British Government's aim to achieve sustained economic growth among G7 nations\n- The G7's economic influence compared to emerging nations\n- Speculation on whether the Fed will start cutting rates in September to address inflation concerns\n\nOverall, the discussions on Twitter indicate a focus on economic policies, inflation, interest rates, and global economic trends in relation to the crypto industry.","data":[2,1,2,2,2,1,5,1,0,2,2,2,2,3,2,2,0,9,2,1,1,0,2,6,0,11,4,2,3,3,20,0,2,2,4,2,1,5,1,6,1,3,1,3,1,4,5,4,0,2,2,0,5,4,10]},{"label":"GameFi","topics":"game,gaming,games,play,web3","description":"Based on the messages from twitter, it is evident that the crypto gaming industry is a hot topic of discussion. Key words such as \"gamefi\", \"web3 gaming ecosystem\", \"crypto gaming\", \"cloud gaming industry\", and specific gaming projects like @KuroroWilds and @GaiminIo are being mentioned. There is also a focus on the future of gaming products, with mentions of building products for the years 2025, 2026, and 2027. Additionally, there are discussions about the success and growth of the cloud gaming industry, with projected revenues reaching $25.3B by 2029. Overall, it seems that the crypto gaming industry is rapidly evolving and gaining traction among social media users.","data":[1,1,0,4,0,0,1,4,0,1,5,3,3,4,3,2,1,2,2,26,3,2,1,4,0,3,0,3,1,5,1,1,0,2,6,1,14,2,2,3,1,1,0,1,2,2,2,4,5,2,2,4,0,0,2]},{"label":"SEC","topics":"sec,gary,binance,case,federal","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. The SEC ending a years-long probe into Stacks without recommending further enforcement, reshaping crypto regulation framework, and calling for stronger crypto regulation.\n2. US Congress urging for the release of a Binance executive detained in Nigeria.\n3. A judge appointed by Trump dismissing federal document charges based on a newer immunity ruling by SCOTUS.\n4. Calls for new government regulation of property agents in the UK.\n5. Criticism of the SEC for dropping investigations into certain projects and accusations of corruption.\n6. Mockery of SEC Chairman Gary Gensler for asking people to report suspicious market activities.\n7. Introduction of a resolution in the US Congress urging consideration of the detained Binance executive as a hostage.\n8. Discussion on the SEC's use of taxpayers' money and actions in the crypto industry.\n9. Analysis of the SEC dropping an investigation into Hiro Systems (formerly Blockstack) and its implications for other projects.\n10. Debate on the classification of Stacks as a side chain masquerading as an L2 in the context of Bitcoin's Layer 2 solutions.","data":[2,0,5,0,0,3,3,1,5,1,3,3,3,0,0,10,2,2,6,0,1,0,1,1,0,1,2,4,0,1,0,0,0,0,4,3,3,0,1,1,5,3,1,1,1,4,3,0,1,0,2,0,1,0,1]},{"label":"Mt.Gox","topics":"gox,mt,mtgox,received,transferred","description":"The key topic discussed in the messages from Twitter is the ongoing situation with Mt. Gox, a bankrupt exchange that lost a significant amount of Bitcoin in a theft. The messages mention that Mt. Gox is distributing Bitcoin to creditors through Kraken, with potential repayments expected before August. There are concerns about potential market impact as Mt. Gox moves large amounts of Bitcoin, with recent transfers causing price fluctuations. Some users are reporting attempts to access their Mt. Gox accounts, possibly through brute force methods. Overall, the community is closely monitoring the developments related to Mt. Gox and its impact on the crypto market.","data":[7,1,1,1,2,1,3,2,0,1,3,2,1,2,4,1,0,0,1,1,2,0,0,2,4,2,0,4,1,1,2,0,6,0,0,0,0,2,0,3,5,6,0,0,1,2,3,0,1,7,3,0,0,1,1]},{"label":"BTC Mining","topics":"mining,energy,increase,bitcoin,data","description":"The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin mining and the percentage of Bitcoin that has been mined\n- Energy usage and sustainability in cryptocurrency mining\n- Noise pollution concerns related to Bitcoin mining\n- Calls for considering Bitcoin mining to bolster renewable energy\n- Miner capitulation and its impact on profitability\n- Emissions schedule and its effect on mining profitability\n- Texas emerging as a Bitcoin mining hub and health concerns\n- Joint bids for copper mining companies\n- Sustainable energy usage in Bitcoin mining reaching new highs\n\nOverall, the discussions revolve around the environmental impact, profitability, and regulatory concerns related to cryptocurrency mining, particularly Bitcoin mining.","data":[1,2,1,0,11,0,3,1,1,1,3,4,0,0,0,1,1,1,1,0,0,0,2,2,0,3,2,1,2,0,2,13,9,2,3,0,0,1,1,2,2,0,0,0,1,2,1,1,2,2,0,1,0,0,0]},{"label":"SOL","topics":"solana,sol,meme,bullish,eth","description":"The key topics discussed in the messages from Twitter about the crypto industry, specifically focusing on Solana, include:\n\n1. Comparison between Solana and Ethereum (ETH) in terms of market cap, cost to run, and potential for growth.\n2. Speculation on the future value of Solana ($SOL) and its potential to reach $200.\n3. Discussion about Solana being the fastest horse in the race to deliver a seamless user experience.\n4. Mention of successful memecoin calls related to Solana, such as $BRO and $MIA.\n5. Updates on Solana's price recovery and potential rally to $200, with comparisons to Ethereum's DEX volume.\n6. Introduction of a new memecoin on Solana called Oumuamua ($OUMU) with risk-free presale and scarcity-optimized tokenomics.\n7. Announcement of Rome raising $9M to use Solana as an auxiliary network to power Ethereum L2s.\n\nOverall, the messages reflect a mix of speculation, analysis, and updates related to Solana and its position in the crypto industry.","data":[1,0,0,2,1,0,2,2,4,2,6,2,1,1,1,1,2,2,1,1,0,1,0,0,3,0,2,1,1,1,0,0,1,2,3,2,2,5,2,1,0,2,1,2,12,1,2,1,2,2,0,0,2,0,1]},{"label":"XRP","topics":"xrp,sec,price,altcoins,cryptocurrency","description":"The key topics currently being discussed on Twitter in relation to the crypto industry, specifically XRP, include:\n\n1. Gemini fueling XRP price to new heights, with XRP trending at #2 on CoinMarketCap and growing by 45%.\n2. XRP surpassing Bitcoin in trading volume in South Korea, with a surge of 31% while the overall crypto market rose 11.7%.\n3. XRP whales accumulating over 100 million coins, sparking market speculations amid rumors of a potential settlement in the Ripple vs. SEC lawsuit.\n4. Market turbulence after a whale dumped 52 million XRP coins.\n5. XRP price performance above $0.50 with a 38% increase.\n6. Potential surge to $30 if market cap hits projected $1.7 trillion.\n7. Speculations over the next price target as XRP continues to pump, with whales accumulating nearly 139 million coins.\n8. XRP back at $0.60 with exciting news of XRP staking pools now live on Bitrue, offering users 7% APY.\n\nOverall, the discussions on Twitter indicate a positive sentiment towards XRP, with price surges, whale activity, and new staking opportunities generating excitement among the XRP community.","data":[1,2,0,3,0,0,1,0,2,2,1,1,1,2,0,2,0,5,2,2,1,2,0,1,0,1,1,3,1,1,1,1,2,0,0,2,0,11,2,2,1,5,1,5,4,0,0,1,0,2,0,2,2,2,2]},{"label":"Larry Fink","topics":"fink,larry,ceo,blackrock,financial","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Larry Fink, CEO of BlackRock, endorsing Bitcoin as 'digital gold' and expressing strong confidence in it after studying and learning about it.\n- Michael Dell, CEO of Dell Technologies, showing interest in Bitcoin and potentially focusing on it.\n- The potential for Dell Technologies to acquire a percentage of MicroStrategy ($MSTR) rather than directly holding Bitcoin as a treasury asset.\n- The importance of accumulating Bitcoin while it is still cheap.\n- Ben Gagnon, CEO of Bitfarms, giving his first interview and being praised for his leadership in the Bitcoin mining space.","data":[3,0,0,2,3,4,4,1,3,3,1,2,0,0,0,2,1,2,6,1,4,1,1,1,2,0,0,1,1,2,0,0,0,1,1,0,0,1,0,0,5,6,1,2,0,0,4,3,3,1,0,1,0,0,3]},{"label":"WazirX Hack","topics":"exchange,wallet,safe,shib,wallets","description":"The key topics discussed in the messages from Twitter are:\n1. The $235 million hack at WazirX, a major Indian crypto exchange, where assets like $SHIB, $MATIC, $GALA, and $PEPE dropped sharply.\n2. The compromised Safe Multisig Wallet on Ethereum, with $234.9 million moved to a new address funded by TornadoCash.\n3. Concerns over the security breach at WazirX and the safety of user funds.\n4. The impact on various tokens such as $ETH, $MATIC, $SHIB, and $PEPE, with a focus on the Shiba Inu community.\n5. The involvement of hackers claiming to have stolen internal documents from Disney and a sequel to Aliens.\n6. The arrest of an Indian-origin man in Canada for inappropriate behavior at a water park.\n7. The rescue of individuals from an oil tanker that capsized near the Oman coast.\n8. The anticipation of the Union Budget 2024-25 in India and the expectations for measures to curb inflation and boost job creation.\n9. The deletion of a post by Karnataka CM Siddaramaiah regarding 100% quota for Kannadigas for certain jobs.\n10. The involvement of individuals like ZachXBT in investigating the WazirX hack and submitting evidence for a bounty.\n\nOverall, the messages highlight significant security breaches, financial losses, and legal actions in the crypto industry, as well as broader geopolitical and economic developments in India and globally.","data":[1,2,1,1,0,0,4,1,0,0,0,1,0,2,2,3,3,1,0,1,0,0,3,1,0,3,3,0,1,1,2,0,1,3,1,0,1,1,2,2,2,2,1,1,1,1,2,1,1,2,0,1,1,13,2]},{"label":"DOGE","topics":"doge,website,view,price,collection","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include Dogecoin, Litecoin, Elon Musk's Mars project, NFTs, price analysis of Dogecoin, potential price breakout of Dogecoin, and giveaways related to MarsLander NFTs. The community seems to be excited about Dogecoin's potential price increase and its role in financing Elon Musk's Mars project. There is also a focus on technical analysis of Dogecoin's price movements and discussions about its performance compared to Litecoin. Additionally, NFTs related to MarsLander are being promoted and given away as part of a social media engagement campaign.","data":[2,1,0,1,0,0,0,1,0,0,1,5,1,0,24,3,1,0,0,2,0,0,1,2,1,1,0,2,3,2,1,0,1,2,1,0,1,4,2,0,1,0,1,2,0,1,1,0,1,0,0,0,2,2,1]},{"label":"NFT","topics":"nft,nfts,mint,collection,floor","description":"The key topics discussed in the messages from twitter are NFTs, crypto industry, Bitcoin, Ethereum, Flow Network, Ubisoft's free NFT mint, Chiliz Chain, Drakulaapp, Lumenswap's Lucy NFTs, and Non-Fungible Torrents by Limewire. The messages also mention specific NFT collections such as DobutsuNFTs, Avatar Trekki, Frozen With Desire Bitcoin Ordinals, Relay NFT, Champions Tactics, Lusi NFTs on Solana, BSC Young Boys NFT collections, and Ybees collection. Additionally, there is a mention of the future of Flow Network in the NFT sector after a decline in peak sales, as well as the termination of the Trekki NFT series incubated by Ctrip. The messages also highlight the use of NFTs for hardware redemption and the upcoming features on Drakulaapp.","data":[1,3,1,2,0,3,0,0,1,1,2,2,4,1,0,2,0,1,4,6,2,1,1,1,1,3,1,0,1,1,0,2,3,1,7,3,0,0,2,0,2,0,2,1,1,0,1,0,0,1,2,0,0,0,1]},{"label":"PEPE","topics":"pepe,cap,million,maga,100x","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Morning Star Pattern on $PEPE\n- Cloud Catcher indicator predicting a pump on $PEPE\n- Long position on #Pepe\n- Next target of $PEPE at 1300\n- ETH ETF launch potentially fueling $PEPE growth\n- $Groyper being a mispriced asset\n- $PEAS looking spicy and breaking out of falling wedge\n- $PEIPEI dominating the memecoin market\n- Pepe Price Prediction surging 36% in a week\n- Pepe Mog $POG ready to launch\n- Major crypto whale swapping MKR for PEPE and LDO\n- $PEPE experiencing a 19.35% price increase in the past 24 hours\n- Bridgers allowing for easy swapping of $PEPE with over 400 other cryptocurrencies\n- Daily numbers and statistics for $PEPE\n- Market green and $PEPE hitting $5B market cap\n- Live event for $PEPE and $MOG meta\n\nOverall, the discussion on Twitter revolves around price movements, technical analysis, market predictions, and upcoming events related to $PEPE and other cryptocurrencies.","data":[0,0,2,1,0,0,3,0,1,0,0,1,0,2,1,1,0,2,1,2,0,1,2,0,1,3,1,3,0,0,3,0,3,1,0,23,0,2,0,2,1,0,0,3,1,0,1,0,3,2,0,0,0,0,2]},{"label":"SHIB","topics":"shib,lead,exclusive,gaming,developer","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Shiba Inu (#shiba) and Elon Musk potentially meeting soon\n- Shiba Inu's Shibarium experiencing a 450% increase in new users\n- Hashai's recent success and potential for a 100 million reclaim\n- Shiba Inu revealing a rare pattern in 2024\n- Shiba Inu spiking 5% with on-chain data signaling a test ahead\n- Niobium sparking new tech advances with ASX juniors on the hunt\n- Slick back or Jubi slide dance move tutorial\n- Shytoshi Kusama wrapping up a meet and greet in Japan and eyeing Mumbai next\n- Bitcoin maximalists advocating for SHIB ETF approval\n- A Shib Army member recounting a surprise meeting with Shytoshi Kusama in Japan\n- Shiba Inu chart flashing 'super bullish' signals with a potential 'giga pump' predicted by a crypto trader.","data":[1,0,1,0,0,0,2,4,0,2,1,2,1,0,1,0,3,7,0,0,0,0,0,0,0,0,9,1,0,1,0,1,0,0,2,0,0,0,0,0,1,0,0,7,2,1,2,1,0,1,1,0,0,2,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-28.ts b/priv/repo/major_topics_seed/data-28.ts deleted file mode 100644 index cf8be02be7..0000000000 --- a/priv/repo/major_topics_seed/data-28.ts +++ /dev/null @@ -1,261 +0,0 @@ -export const NARRATIVES = { - labels: [ - '11.07.24', - '12.07.24', - '12.07.24', - '12.07.24', - '12.07.24', - '12.07.24', - '12.07.24', - '12.07.24', - '13.07.24', - '13.07.24', - '13.07.24', - '13.07.24', - '13.07.24', - '13.07.24', - '13.07.24', - '13.07.24', - '14.07.24', - '14.07.24', - '14.07.24', - '14.07.24', - '14.07.24', - '14.07.24', - '14.07.24', - '14.07.24', - '15.07.24', - '15.07.24', - '15.07.24', - '15.07.24', - '15.07.24', - '15.07.24', - '15.07.24', - '15.07.24', - '16.07.24', - '16.07.24', - '16.07.24', - '16.07.24', - '16.07.24', - '16.07.24', - '16.07.24', - '16.07.24', - '17.07.24', - '17.07.24', - '17.07.24', - '17.07.24', - '17.07.24', - '17.07.24', - '17.07.24', - '17.07.24', - '18.07.24', - '18.07.24', - '18.07.24', - '18.07.24', - '18.07.24', - '18.07.24', - '18.07.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,range,price,bitcoin,60k', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry are:\n\n1. Bitcoin price movements: There is excitement and optimism surrounding Bitcoin's price nearing $65,000 and potentially reaching $100,000 next. There are also discussions about Bitcoin reclaiming the $59,000 level and the potential for it to break $60,000.\n\n2. Market volatility: There are observations of indecisiveness in the market, with high volatility and price fluctuations. Traders are analyzing the market conditions and predicting potential movements.\n\n3. Technical analysis: Traders are discussing technical indicators such as candlestick patterns, support levels, and RSI levels to make predictions about Bitcoin's price movements.\n\n4. Investment strategies: There are discussions about adding positions during the weekend and the potential for a weekend pump. Traders are sharing their strategies for entering the market and making profits.\n\n5. Future price predictions: There are predictions of Bitcoin reaching $70,000 in the coming weeks, with potential rejection before a rise in September. Traders are sharing their insights on the market and advising on potential entry points.\n\nOverall, the sentiment on Twitter regarding Bitcoin and the crypto industry is positive, with traders and investors closely monitoring price movements and market conditions.", - data: [ - 8, 6, 7, 9, 54, 53, 10, 29, 3, 6, 10, 8, 5, 15, 3, 7, 1, 8, 8, 3, 5, 7, 3, 14, 2, 7, 7, 1, - 7, 13, 7, 9, 6, 6, 7, 7, 4, 13, 8, 18, 11, 6, 3, 11, 3, 4, 13, 9, 3, 5, 6, 8, 2, 12, 2, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,money,currency,government,dont', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin volatility and understanding Bitcoin\n- On-chain cartoon series on the Bitcoin blockchain\n- Evolution from a crypto NOOB to a Bitcoin PRO\n- Bitcoin being rarely used in transactions with merchants\n- Altcoins and leveraged positions on Bitcoin\n- Rebranding of BSV-tards memecoin to bITCOIN\n- Bitcoin rednecks inheriting the earth\n- The true reason why Bitcoin was written and its super power\n- NGU Bitcoin as a creator of generational wealth\n- The devaluation of fiat currency over time\n- Bitget's AMA with @well3official on Bitget Discord and the $1000 WELL prize pool\n\nOverall, the messages reflect a mix of opinions and discussions about Bitcoin, altcoins, wealth accumulation, and the future of cryptocurrency.", - data: [ - 6, 4, 11, 10, 48, 39, 9, 3, 5, 6, 7, 6, 7, 10, 3, 9, 4, 10, 10, 7, 7, 5, 13, 7, 10, 4, 6, 7, - 12, 9, 11, 11, 5, 12, 8, 14, 9, 10, 8, 9, 7, 6, 4, 8, 5, 6, 9, 13, 6, 9, 3, 6, 10, 8, 4, - ], - }, - { - label: 'ETH ETF', - topics: 'ethereum,etf,eth,etfs,spot', - description: - "The key topics currently being discussed on Twitter in relation to Ethereum and crypto industry are:\n1. Ethereum ETF: There is anticipation and speculation about the approval and launch of Ethereum ETFs, with mentions of BlackRock, Franklin Templeton, and VanEck receiving preliminary approval from the SEC.\n2. Price Analysis: There are discussions about the current price action of Ethereum, with mentions of bullish momentum, high indecision, and potential price movements.\n3. Technical Analysis: Traders are analyzing technical indicators such as the Chaikin accumulation indicator on the daily chart, suggesting a potential strong rise in price if confirmed.\n4. Market Sentiment: There are mixed sentiments about the market, with mentions of a possible weekend pump, heavy selling pressure, and the need for caution in trading.\n5. Grayscale AI Fund: Grayscale's launch of a decentralized AI fund amid the growing AI crypto market is also being discussed.\n6. Gas Fees: There are complaints about high gas fees, with mentions of gas reaching 200+ gwei and frustration from users.\n7. Staking: Staked Ethereum is at an all-time high, leading to questions about the timing of an Ethereum ETF approval.\n8. Market Speculation: There is speculation about the potential impact of ETF approval on Ethereum's price, with some expecting a significant price increase.\nOverall, the discussions on Twitter reflect a mix of excitement, uncertainty, and caution among traders and investors in the crypto industry.", - data: [ - 6, 10, 3, 7, 0, 3, 17, 5, 5, 2, 4, 4, 2, 7, 4, 5, 89, 13, 9, 4, 6, 5, 12, 12, 5, 7, 6, 12, - 7, 8, 6, 4, 2, 6, 3, 5, 2, 8, 6, 7, 11, 1, 5, 8, 21, 6, 4, 7, 8, 5, 2, 4, 7, 10, 5, - ], - }, - { - label: 'German government & BTC', - topics: 'german,germany,government,sold,selling', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Germany selling off its Bitcoin holdings: There is a mix of reactions to Germany selling off its Bitcoin holdings, with some speculating on the impact on the market and others questioning the decision.\n\n2. Blackrock buying Bitcoin: The news of Blackrock buying 2000 Bitcoin is seen as a positive sign for the market, with some expressing optimism about the future.\n\n3. El Salvador's adoption of Bitcoin: There is mention of El Salvador's progress in adopting Bitcoin as legal tender, with some praising the decision and others questioning its implications.\n\n4. Market trends and analysis: There are updates on the price movements of Bitcoin, with mentions of fear and greed index, European market performance, and US stock market trends.\n\n5. Regulatory developments: There is discussion about Germany's decision to ban equipment from Chinese tech giants Huawei and ZTE in its 5G networks, as well as updates on the European Central Bank's interest rates.\n\nOverall, the sentiment seems to be a mix of optimism, skepticism, and analysis of market trends and regulatory developments in the crypto industry.", - data: [ - 2, 4, 3, 6, 6, 8, 12, 2, 5, 2, 2, 6, 8, 4, 6, 13, 3, 2, 11, 2, 76, 3, 6, 7, 9, 6, 6, 3, 3, - 1, 5, 4, 4, 1, 4, 4, 4, 0, 6, 3, 7, 3, 41, 6, 0, 1, 3, 6, 5, 3, 0, 5, 1, 7, 2, - ], - }, - { - label: 'AI', - topics: 'ai,data,model,build,future', - description: - 'The key topics currently discussed in the messages from twitter are:\n1. AI in various industries, including finance, software engineering, and medical field\n2. The impact of AI on job roles, such as the potential reduction of female office jobs and the role of AI in financial advising\n3. Regulatory challenges for AI models in the EU\n4. The future of AI development and innovation, including the launch of a $100 million fund for AI innovation\n5. The potential for AI to outperform humans in tasks like technical analysis\n6. The role of AI in government decision-making, such as the idea of an AI-run Federal Reserve\n7. The need for modern policy frameworks to advance medical AI\n8. The intersection of AI, blockchain, and Fully Homomorphic Encryption (FHE) technologies\n\nOverall, the discussions revolve around the advancements, challenges, and implications of AI technology in various sectors.', - data: [ - 27, 33, 8, 7, 0, 0, 3, 8, 1, 6, 4, 11, 5, 3, 5, 4, 3, 7, 5, 6, 5, 5, 6, 4, 7, 7, 8, 4, 6, 4, - 2, 6, 4, 3, 8, 10, 3, 6, 8, 3, 4, 11, 1, 1, 3, 4, 3, 6, 4, 4, 3, 3, 7, 5, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'inflows,etfs,net,etf,blackrock', - description: - "In case you missed it, the key topics currently discussed in the crypto industry on Twitter include:\n- Australia's largest stock exchange, ASX, approving its second spot Bitcoin ETF\n- Spot Bitcoin ETFs seeing significant inflows, with over $310 million on July 12\n- Institutional custodians and ETFs becoming major players in the market\n- Predictions of Ethereum ETFs triggering a 50% surge to a new all-time high over $5k\n- BlackRock and Fidelity increasing their Spot Bitcoin ETF holdings to a combined total of 489,209 Bitcoin worth $28 billion\n- US Spot Bitcoin ETFs recording over $300 million in net inflows on Friday, reaching a record $15.81 billion\n- A nine-day streak of inflows for US Spot Bitcoin ETFs totaling around $1.97 billion\n\nOverall, the sentiment on Twitter seems to be bullish towards Bitcoin ETFs and institutional demand for Bitcoin.", - data: [ - 6, 1, 2, 3, 15, 12, 13, 1, 5, 1, 0, 4, 3, 4, 4, 2, 13, 1, 4, 2, 1, 3, 3, 3, 5, 9, 1, 4, 0, - 0, 11, 1, 3, 12, 3, 4, 1, 3, 2, 9, 0, 3, 5, 1, 31, 2, 1, 0, 2, 5, 1, 2, 0, 2, 10, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coin,memes,memecoins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Memecoins: There is a lot of discussion around meme coins, with users looking for the next big meme coin that will pump the hardest and potentially provide a 1000x return. Some specific meme coins mentioned include $SKITTY and $YOM.\n2. Memecoin Summer: There is anticipation for a "Memecoin summer" with expectations of significant gains, although some users are noting that the reality may be a "Stablecoin summer" instead.\n3. Meme Coins Recovery: Data shows that meme coins are recovering the strongest out of all narratives in the crypto market, positioning them as a strong contender against expensive VC tech coins.\n4. Tokens vs. Memecoins: There is a discussion about the fundamental differences between tokens and memecoins, highlighting that memecoins do not necessarily need to be based on ERC20 or have a dex, as trading can happen through bonding curves on the memecoin itself.\n5. MungdiX Season 2: An upcoming event called MungdiX Season 2 - Meme Coin/NFT Ideathon is being promoted, inviting participants to explore unique meme coin and NFT ideas and support creative endeavors. The event is scheduled for July 16 at 1:00 PM.\n\nOverall, the crypto community on Twitter is actively engaged in discussions around meme coins, their potential for growth, and upcoming events related to meme coins and NFTs.', - data: [ - 4, 2, 2, 2, 0, 1, 3, 2, 6, 5, 3, 1, 2, 5, 2, 3, 1, 3, 6, 3, 4, 7, 2, 2, 2, 2, 1, 6, 4, 7, 2, - 47, 5, 3, 0, 6, 2, 1, 4, 1, 3, 3, 1, 0, 1, 1, 2, 3, 3, 2, 3, 2, 4, 5, 8, - ], - }, - { - label: 'CPI', - topics: 'inflation,fed,cut,rate,rates', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- The impact of the World Bank disbursing a $752 million loan\n- The Federal Reserve's potential rate cut and its impact on inflation\n- Consumer spending trends and signs of inflation slowing down\n- Wall Street economists urging the Fed to cut rates amid tame inflation and rising unemployment\n- Speculation on the potential impact of a bullrun without interruption\n- Rachel Reeves pushing for a Brexit reset to boost the British economy\n- Annualized interest payments on US federal debt reaching an all-time high\n- Labour's gains in London leading to private equity looking to exit the country\n- The new British Government's aim to achieve sustained economic growth among G7 nations\n- The G7's economic influence compared to emerging nations\n- Speculation on whether the Fed will start cutting rates in September to address inflation concerns\n\nOverall, the discussions on Twitter indicate a focus on economic policies, inflation, interest rates, and global economic trends in relation to the crypto industry.", - data: [ - 2, 1, 2, 2, 2, 1, 5, 1, 0, 2, 2, 2, 2, 3, 2, 2, 0, 9, 2, 1, 1, 0, 2, 6, 0, 11, 4, 2, 3, 3, - 20, 0, 2, 2, 4, 2, 1, 5, 1, 6, 1, 3, 1, 3, 1, 4, 5, 4, 0, 2, 2, 0, 5, 4, 10, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,web3', - description: - 'Based on the messages from twitter, it is evident that the crypto gaming industry is a hot topic of discussion. Key words such as "gamefi", "web3 gaming ecosystem", "crypto gaming", "cloud gaming industry", and specific gaming projects like @KuroroWilds and @GaiminIo are being mentioned. There is also a focus on the future of gaming products, with mentions of building products for the years 2025, 2026, and 2027. Additionally, there are discussions about the success and growth of the cloud gaming industry, with projected revenues reaching $25.3B by 2029. Overall, it seems that the crypto gaming industry is rapidly evolving and gaining traction among social media users.', - data: [ - 1, 1, 0, 4, 0, 0, 1, 4, 0, 1, 5, 3, 3, 4, 3, 2, 1, 2, 2, 26, 3, 2, 1, 4, 0, 3, 0, 3, 1, 5, - 1, 1, 0, 2, 6, 1, 14, 2, 2, 3, 1, 1, 0, 1, 2, 2, 2, 4, 5, 2, 2, 4, 0, 0, 2, - ], - }, - { - label: 'SEC', - topics: 'sec,gary,binance,case,federal', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. The SEC ending a years-long probe into Stacks without recommending further enforcement, reshaping crypto regulation framework, and calling for stronger crypto regulation.\n2. US Congress urging for the release of a Binance executive detained in Nigeria.\n3. A judge appointed by Trump dismissing federal document charges based on a newer immunity ruling by SCOTUS.\n4. Calls for new government regulation of property agents in the UK.\n5. Criticism of the SEC for dropping investigations into certain projects and accusations of corruption.\n6. Mockery of SEC Chairman Gary Gensler for asking people to report suspicious market activities.\n7. Introduction of a resolution in the US Congress urging consideration of the detained Binance executive as a hostage.\n8. Discussion on the SEC's use of taxpayers' money and actions in the crypto industry.\n9. Analysis of the SEC dropping an investigation into Hiro Systems (formerly Blockstack) and its implications for other projects.\n10. Debate on the classification of Stacks as a side chain masquerading as an L2 in the context of Bitcoin's Layer 2 solutions.", - data: [ - 2, 0, 5, 0, 0, 3, 3, 1, 5, 1, 3, 3, 3, 0, 0, 10, 2, 2, 6, 0, 1, 0, 1, 1, 0, 1, 2, 4, 0, 1, - 0, 0, 0, 0, 4, 3, 3, 0, 1, 1, 5, 3, 1, 1, 1, 4, 3, 0, 1, 0, 2, 0, 1, 0, 1, - ], - }, - { - label: 'Mt.Gox', - topics: 'gox,mt,mtgox,received,transferred', - description: - 'The key topic discussed in the messages from Twitter is the ongoing situation with Mt. Gox, a bankrupt exchange that lost a significant amount of Bitcoin in a theft. The messages mention that Mt. Gox is distributing Bitcoin to creditors through Kraken, with potential repayments expected before August. There are concerns about potential market impact as Mt. Gox moves large amounts of Bitcoin, with recent transfers causing price fluctuations. Some users are reporting attempts to access their Mt. Gox accounts, possibly through brute force methods. Overall, the community is closely monitoring the developments related to Mt. Gox and its impact on the crypto market.', - data: [ - 7, 1, 1, 1, 2, 1, 3, 2, 0, 1, 3, 2, 1, 2, 4, 1, 0, 0, 1, 1, 2, 0, 0, 2, 4, 2, 0, 4, 1, 1, 2, - 0, 6, 0, 0, 0, 0, 2, 0, 3, 5, 6, 0, 0, 1, 2, 3, 0, 1, 7, 3, 0, 0, 1, 1, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,energy,increase,bitcoin,data', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin mining and the percentage of Bitcoin that has been mined\n- Energy usage and sustainability in cryptocurrency mining\n- Noise pollution concerns related to Bitcoin mining\n- Calls for considering Bitcoin mining to bolster renewable energy\n- Miner capitulation and its impact on profitability\n- Emissions schedule and its effect on mining profitability\n- Texas emerging as a Bitcoin mining hub and health concerns\n- Joint bids for copper mining companies\n- Sustainable energy usage in Bitcoin mining reaching new highs\n\nOverall, the discussions revolve around the environmental impact, profitability, and regulatory concerns related to cryptocurrency mining, particularly Bitcoin mining.', - data: [ - 1, 2, 1, 0, 11, 0, 3, 1, 1, 1, 3, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 2, 2, 0, 3, 2, 1, 2, 0, - 2, 13, 9, 2, 3, 0, 0, 1, 1, 2, 2, 0, 0, 0, 1, 2, 1, 1, 2, 2, 0, 1, 0, 0, 0, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,meme,bullish,eth', - description: - "The key topics discussed in the messages from Twitter about the crypto industry, specifically focusing on Solana, include:\n\n1. Comparison between Solana and Ethereum (ETH) in terms of market cap, cost to run, and potential for growth.\n2. Speculation on the future value of Solana ($SOL) and its potential to reach $200.\n3. Discussion about Solana being the fastest horse in the race to deliver a seamless user experience.\n4. Mention of successful memecoin calls related to Solana, such as $BRO and $MIA.\n5. Updates on Solana's price recovery and potential rally to $200, with comparisons to Ethereum's DEX volume.\n6. Introduction of a new memecoin on Solana called Oumuamua ($OUMU) with risk-free presale and scarcity-optimized tokenomics.\n7. Announcement of Rome raising $9M to use Solana as an auxiliary network to power Ethereum L2s.\n\nOverall, the messages reflect a mix of speculation, analysis, and updates related to Solana and its position in the crypto industry.", - data: [ - 1, 0, 0, 2, 1, 0, 2, 2, 4, 2, 6, 2, 1, 1, 1, 1, 2, 2, 1, 1, 0, 1, 0, 0, 3, 0, 2, 1, 1, 1, 0, - 0, 1, 2, 3, 2, 2, 5, 2, 1, 0, 2, 1, 2, 12, 1, 2, 1, 2, 2, 0, 0, 2, 0, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,sec,price,altcoins,cryptocurrency', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry, specifically XRP, include:\n\n1. Gemini fueling XRP price to new heights, with XRP trending at #2 on CoinMarketCap and growing by 45%.\n2. XRP surpassing Bitcoin in trading volume in South Korea, with a surge of 31% while the overall crypto market rose 11.7%.\n3. XRP whales accumulating over 100 million coins, sparking market speculations amid rumors of a potential settlement in the Ripple vs. SEC lawsuit.\n4. Market turbulence after a whale dumped 52 million XRP coins.\n5. XRP price performance above $0.50 with a 38% increase.\n6. Potential surge to $30 if market cap hits projected $1.7 trillion.\n7. Speculations over the next price target as XRP continues to pump, with whales accumulating nearly 139 million coins.\n8. XRP back at $0.60 with exciting news of XRP staking pools now live on Bitrue, offering users 7% APY.\n\nOverall, the discussions on Twitter indicate a positive sentiment towards XRP, with price surges, whale activity, and new staking opportunities generating excitement among the XRP community.', - data: [ - 1, 2, 0, 3, 0, 0, 1, 0, 2, 2, 1, 1, 1, 2, 0, 2, 0, 5, 2, 2, 1, 2, 0, 1, 0, 1, 1, 3, 1, 1, 1, - 1, 2, 0, 0, 2, 0, 11, 2, 2, 1, 5, 1, 5, 4, 0, 0, 1, 0, 2, 0, 2, 2, 2, 2, - ], - }, - { - label: 'Larry Fink', - topics: 'fink,larry,ceo,blackrock,financial', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Larry Fink, CEO of BlackRock, endorsing Bitcoin as 'digital gold' and expressing strong confidence in it after studying and learning about it.\n- Michael Dell, CEO of Dell Technologies, showing interest in Bitcoin and potentially focusing on it.\n- The potential for Dell Technologies to acquire a percentage of MicroStrategy ($MSTR) rather than directly holding Bitcoin as a treasury asset.\n- The importance of accumulating Bitcoin while it is still cheap.\n- Ben Gagnon, CEO of Bitfarms, giving his first interview and being praised for his leadership in the Bitcoin mining space.", - data: [ - 3, 0, 0, 2, 3, 4, 4, 1, 3, 3, 1, 2, 0, 0, 0, 2, 1, 2, 6, 1, 4, 1, 1, 1, 2, 0, 0, 1, 1, 2, 0, - 0, 0, 1, 1, 0, 0, 1, 0, 0, 5, 6, 1, 2, 0, 0, 4, 3, 3, 1, 0, 1, 0, 0, 3, - ], - }, - { - label: 'WazirX Hack', - topics: 'exchange,wallet,safe,shib,wallets', - description: - 'The key topics discussed in the messages from Twitter are:\n1. The $235 million hack at WazirX, a major Indian crypto exchange, where assets like $SHIB, $MATIC, $GALA, and $PEPE dropped sharply.\n2. The compromised Safe Multisig Wallet on Ethereum, with $234.9 million moved to a new address funded by TornadoCash.\n3. Concerns over the security breach at WazirX and the safety of user funds.\n4. The impact on various tokens such as $ETH, $MATIC, $SHIB, and $PEPE, with a focus on the Shiba Inu community.\n5. The involvement of hackers claiming to have stolen internal documents from Disney and a sequel to Aliens.\n6. The arrest of an Indian-origin man in Canada for inappropriate behavior at a water park.\n7. The rescue of individuals from an oil tanker that capsized near the Oman coast.\n8. The anticipation of the Union Budget 2024-25 in India and the expectations for measures to curb inflation and boost job creation.\n9. The deletion of a post by Karnataka CM Siddaramaiah regarding 100% quota for Kannadigas for certain jobs.\n10. The involvement of individuals like ZachXBT in investigating the WazirX hack and submitting evidence for a bounty.\n\nOverall, the messages highlight significant security breaches, financial losses, and legal actions in the crypto industry, as well as broader geopolitical and economic developments in India and globally.', - data: [ - 1, 2, 1, 1, 0, 0, 4, 1, 0, 0, 0, 1, 0, 2, 2, 3, 3, 1, 0, 1, 0, 0, 3, 1, 0, 3, 3, 0, 1, 1, 2, - 0, 1, 3, 1, 0, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 2, 1, 1, 2, 0, 1, 1, 13, 2, - ], - }, - { - label: 'DOGE', - topics: 'doge,website,view,price,collection', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include Dogecoin, Litecoin, Elon Musk's Mars project, NFTs, price analysis of Dogecoin, potential price breakout of Dogecoin, and giveaways related to MarsLander NFTs. The community seems to be excited about Dogecoin's potential price increase and its role in financing Elon Musk's Mars project. There is also a focus on technical analysis of Dogecoin's price movements and discussions about its performance compared to Litecoin. Additionally, NFTs related to MarsLander are being promoted and given away as part of a social media engagement campaign.", - data: [ - 2, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 5, 1, 0, 24, 3, 1, 0, 0, 2, 0, 0, 1, 2, 1, 1, 0, 2, 3, 2, - 1, 0, 1, 2, 1, 0, 1, 4, 2, 0, 1, 0, 1, 2, 0, 1, 1, 0, 1, 0, 0, 0, 2, 2, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,mint,collection,floor', - description: - "The key topics discussed in the messages from twitter are NFTs, crypto industry, Bitcoin, Ethereum, Flow Network, Ubisoft's free NFT mint, Chiliz Chain, Drakulaapp, Lumenswap's Lucy NFTs, and Non-Fungible Torrents by Limewire. The messages also mention specific NFT collections such as DobutsuNFTs, Avatar Trekki, Frozen With Desire Bitcoin Ordinals, Relay NFT, Champions Tactics, Lusi NFTs on Solana, BSC Young Boys NFT collections, and Ybees collection. Additionally, there is a mention of the future of Flow Network in the NFT sector after a decline in peak sales, as well as the termination of the Trekki NFT series incubated by Ctrip. The messages also highlight the use of NFTs for hardware redemption and the upcoming features on Drakulaapp.", - data: [ - 1, 3, 1, 2, 0, 3, 0, 0, 1, 1, 2, 2, 4, 1, 0, 2, 0, 1, 4, 6, 2, 1, 1, 1, 1, 3, 1, 0, 1, 1, 0, - 2, 3, 1, 7, 3, 0, 0, 2, 0, 2, 0, 2, 1, 1, 0, 1, 0, 0, 1, 2, 0, 0, 0, 1, - ], - }, - { - label: 'PEPE', - topics: 'pepe,cap,million,maga,100x', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Morning Star Pattern on $PEPE\n- Cloud Catcher indicator predicting a pump on $PEPE\n- Long position on #Pepe\n- Next target of $PEPE at 1300\n- ETH ETF launch potentially fueling $PEPE growth\n- $Groyper being a mispriced asset\n- $PEAS looking spicy and breaking out of falling wedge\n- $PEIPEI dominating the memecoin market\n- Pepe Price Prediction surging 36% in a week\n- Pepe Mog $POG ready to launch\n- Major crypto whale swapping MKR for PEPE and LDO\n- $PEPE experiencing a 19.35% price increase in the past 24 hours\n- Bridgers allowing for easy swapping of $PEPE with over 400 other cryptocurrencies\n- Daily numbers and statistics for $PEPE\n- Market green and $PEPE hitting $5B market cap\n- Live event for $PEPE and $MOG meta\n\nOverall, the discussion on Twitter revolves around price movements, technical analysis, market predictions, and upcoming events related to $PEPE and other cryptocurrencies.', - data: [ - 0, 0, 2, 1, 0, 0, 3, 0, 1, 0, 0, 1, 0, 2, 1, 1, 0, 2, 1, 2, 0, 1, 2, 0, 1, 3, 1, 3, 0, 0, 3, - 0, 3, 1, 0, 23, 0, 2, 0, 2, 1, 0, 0, 3, 1, 0, 1, 0, 3, 2, 0, 0, 0, 0, 2, - ], - }, - { - label: 'SHIB', - topics: 'shib,lead,exclusive,gaming,developer', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Shiba Inu (#shiba) and Elon Musk potentially meeting soon\n- Shiba Inu's Shibarium experiencing a 450% increase in new users\n- Hashai's recent success and potential for a 100 million reclaim\n- Shiba Inu revealing a rare pattern in 2024\n- Shiba Inu spiking 5% with on-chain data signaling a test ahead\n- Niobium sparking new tech advances with ASX juniors on the hunt\n- Slick back or Jubi slide dance move tutorial\n- Shytoshi Kusama wrapping up a meet and greet in Japan and eyeing Mumbai next\n- Bitcoin maximalists advocating for SHIB ETF approval\n- A Shib Army member recounting a surprise meeting with Shytoshi Kusama in Japan\n- Shiba Inu chart flashing 'super bullish' signals with a potential 'giga pump' predicted by a crypto trader.", - data: [ - 1, 0, 1, 0, 0, 0, 2, 4, 0, 2, 1, 2, 1, 0, 1, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, 1, 0, - 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 7, 2, 1, 2, 1, 0, 1, 1, 0, 0, 2, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-29.json b/priv/repo/major_topics_seed/data-29.json deleted file mode 100644 index 30bcec6416..0000000000 --- a/priv/repo/major_topics_seed/data-29.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["18.07.24","19.07.24","19.07.24","19.07.24","19.07.24","19.07.24","19.07.24","19.07.24","20.07.24","20.07.24","20.07.24","20.07.24","20.07.24","20.07.24","20.07.24","20.07.24","21.07.24","21.07.24","21.07.24","21.07.24","21.07.24","21.07.24","21.07.24","21.07.24","22.07.24","22.07.24","22.07.24","22.07.24","22.07.24","22.07.24","22.07.24","22.07.24","23.07.24","23.07.24","23.07.24","23.07.24","23.07.24","23.07.24","23.07.24","23.07.24","24.07.24","24.07.24","24.07.24","24.07.24","24.07.24","24.07.24","24.07.24","24.07.24","25.07.24","25.07.24","25.07.24","25.07.24","25.07.24","25.07.24","25.07.24"],"datasets":[{"label":"ETH ETF.","topics":"etf,eth,etfs,ethereum,spot","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The launch of Ethereum spot ETFs for trading, with a focus on the approval and trading volume.\n2. Speculation on the impact of ETFs on the price of Ethereum and Bitcoin, with mentions of price movements and comparisons between the two.\n3. Analysis of recent net outflows and inflows in ETH spot ETFs, including figures for Grayscale ETH Trust ETF ETHE, Grayscale Mini ETF ETH, and Fidelity ETF FETH.\n4. Discussion on the potential for significant price pumps in certain cryptocurrencies, such as $HOLD, and the behavior of traders during these pumps.\n5. Observations on the printing of fiat currency and its impact on the crypto market, with a focus on Bitcoin and Ethereum as alternatives.\n6. Mention of specific companies and organizations involved in the ETF market, such as 21Shares, BitwiseInvest, BlackRock, Fidelity, Franklin, VanEck, InvescoUS, and Grayscale.\n7. Speculation on future price movements and market trends, including references to falling wedges on the RSI and the potential for a major move in Ethereum's price.\n8. Calls to action for celebrating the approval of ETH ETFs and participating in events or promotions related to them.\n9. Humorous commentary on past predictions and advice given by anonymous sources in the crypto community.\n10. Questions about the future performance of certain cryptocurrencies, such as $DMTR and $DOGE, and comparisons to previous price movements.","data":[17,11,22,29,11,24,28,24,9,16,12,8,30,11,13,44,185,18,26,20,19,19,33,24,18,23,7,21,15,28,22,13,9,18,27,28,9,28,16,21,16,15,22,23,57,11,11,17,22,26,8,16,19,12,21]},{"label":"BTC Price","topics":"btc,price,bitcoin,bullish,chart","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin price predictions and analysis, with mentions of potential scenarios such as reaching $100k or $150k\n- Speculation on the impact of major events like the Bitcoin conference on the price of BTC\n- Analysis of technical indicators like candlestick patterns and chart formations\n- Discussion of altcoins like Binance Coin (BNB) and their price movements\n- News about significant events in the crypto market, such as Binance burning 1.6 million BNB tokens\n- Concerns about market corrections and liquidations wiping out millions in value\n- Anticipation for the launch of an ETH Spot ETF and its potential impact on the market\n\nOverall, the sentiment on Twitter seems to be a mix of excitement, speculation, and caution as traders and analysts navigate the volatile crypto market.","data":[13,9,3,14,81,33,35,32,3,24,5,18,11,6,13,4,0,11,13,5,7,11,2,23,11,11,4,8,16,14,13,11,10,4,7,9,10,21,13,16,9,9,8,15,10,4,10,17,9,9,5,9,7,8,4]},{"label":"Bitcoin","topics":"bitcoin,money,fiat,world,best","description":"The key topics currently discussed in the crypto industry on social media accounts include #Bitcoin ownership distribution, timestamping capabilities, sentiment analysis, the understanding of billionaires towards Bitcoin, the potential destruction of dollar value, the adoption of Bitcoin by the state, the impact of Bitcoin on the internet beany craze, and the competition between different Bitcoin wallets like Zeus. There is also mention of #Bitcoin being a preferred choice over fiat currency and the criticism of Bitcoin deviating from its original white paper description.","data":[8,4,3,7,59,34,9,6,5,6,3,2,6,10,4,6,0,4,9,9,4,3,8,9,5,3,8,6,3,7,5,1,7,7,5,6,8,4,6,4,10,9,10,10,4,7,7,6,6,4,5,4,4,8,4]},{"label":"AI","topics":"ai,model,search,meta,data","description":"The topic discussed in the messages from twitter is the integration of AI (Artificial Intelligence) in various industries and applications. The messages mention the use of AI in social media platforms like Facebook, video editing, creating convincing AI videos of public figures, decentralized AI revolution, AI-powered proof of individuality in digital identity management, AI in gaming, AI in entertainment industry, and AI in optimizing data for businesses like Salesforce and Workday. The messages also touch upon the potential of AI in making tasks more efficient and the advancements in AI technology.","data":[28,14,7,3,0,1,4,4,2,9,6,8,6,7,4,6,0,2,4,9,8,5,6,2,8,11,10,8,6,2,4,1,9,8,6,7,4,3,7,7,12,4,10,5,4,9,4,4,4,4,6,2,7,0,2]},{"label":"Memecoins","topics":"meme,memecoin,memes,coin,memecoins","description":"The key topics currently discussed in the crypto industry on social media accounts include meme coins, new meme coin launches, meme coin competitions, presales, market cap movements, Solana meme coins, Andy coin updates, meme coin team battles, and upcoming presales for meme tokens like $PCORN. There is also discussion about the importance of simplicity in meme coins to attract retail investors, successful meme coin launches, and the potential for meme coins to make significant market cap gains. Additionally, there is mention of a new Andy video game release and a reminder about an upcoming $PCORN presale.","data":[3,1,4,8,1,1,0,6,5,6,3,3,3,10,8,3,0,2,4,2,2,3,3,6,7,4,3,4,6,7,5,52,6,4,6,2,2,11,2,2,2,3,6,5,0,5,5,7,3,4,3,2,5,7,3]},{"label":"Art","topics":"art,collection,able,im,thank","description":"The key topics discussed in the messages from twitter include:\n- Tokenized art and its value\n- Appreciation for art curators and artists\n- Quarterly report by a CEO\n- Collaboration with Tether for real use cases of USDT\n- Generative art mania hype\n- Expressive styles of artist David Popa\n- Public art as propaganda\n- Appreciation for Meta4Farms and their deals\n- Excitement for Darkfarms' solo show\n- NFTs and ETH in the art world\n- Documentary on Hayao Miyazaki and animator Eiji Yamamori's interaction.","data":[1,3,27,2,0,0,4,1,0,5,5,2,2,2,0,4,1,5,1,5,4,0,3,5,13,5,0,1,4,3,8,0,4,2,3,8,7,5,5,7,6,0,3,6,2,1,2,11,3,1,1,2,4,2,10]},{"label":"SOL ETF","topics":"solana,sol,eth,ethereum,etf","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Solana (SOL) showing strong performance with a 31%+ increase in the past 30 days\n- Solana breaking out above its long-term downtrend line on the weekly chart, driving strong price momentum\n- Solana's potential for a rally after a 17% surge in the past week, with traders spotting a bullish pattern on the price chart\n- Solana ETF approval odds rising amid potential political shifts\n- Solend rebranding as 'Save' and launching a new stablecoin and token\n- Discussion about the path to $0 for Ethereum (ETH) and Solana's potential as an alternative\n- Use of Bonkbot_io for trading on Solana\n- Mention of NorbertHegedus3 and YouHodler for Solana yield opportunities\n- Humorous comments about XRP and long-term holding strategies\n\nOverall, the sentiment around Solana appears to be positive, with discussions focusing on its recent price performance, technical analysis, and potential future developments.","data":[1,2,2,5,0,0,2,3,2,1,3,3,2,1,0,6,1,3,2,2,2,3,5,2,0,6,3,2,2,3,1,6,3,3,2,4,5,6,7,3,0,2,2,19,0,3,3,0,1,5,1,5,3,3,4]},{"label":"Bitcoin Nashville","topics":"nashville,conference,thebitcoinconf,bitcoin,2024","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin Nashville conference and events happening there\n- Bitcoin community members sharing experiences and information about the conference\n- Participation in upcoming blockchain events such as KBW2024 and European Blockchain Convention\n- Discussions about the future of Bitcoin and potential developments in the industry\n- Promotion of podcasts and live-streams related to Bitcoin and crypto\n- Sharing of promo codes for discounts at blockchain events\n- Mention of specific companies and projects involved in the industry, such as Bitcoin Offices and Nvirworld\n- Plans for future collaborations and partnerships within the crypto community","data":[1,3,4,3,5,4,3,2,3,1,6,2,3,2,1,1,2,4,2,0,1,3,5,7,5,2,5,4,3,5,1,2,5,10,3,3,3,1,2,1,1,3,1,0,2,2,1,4,2,2,1,2,4,3,6]},{"label":"GameFi","topics":"game,gaming,games,earn,play","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n\n1. GameFi and NFT Gaming: Discussions about various gaming projects such as Illuvium, Hamster Combat, Legion, OGCommunity_X, Cosmic Bomber, AtariX, PlayDapp, and Rebel Cars. These projects offer opportunities for gamers to earn tokens, compete in tournaments, trade NFTs, and participate in game development.\n\n2. Community Engagement: Projects like Splinterlands are inviting community members to become ambassadors and share alpha versions of upcoming reward cards. This shows a focus on community involvement and collaboration.\n\n3. New Game Development: Excitement around new game development projects, with hints about upcoming genres and adventures. Projects like OffTheGrid are generating buzz with leaked cinematic content and discussions about NFT validators.\n\n4. Crypto Integration in Gaming: Discussions about how projects like GunzillaGames are bridging the gap between traditional gaming and crypto, attracting both non-gamers and traditional gamers to the world of crypto gaming.\n\nOverall, the crypto industry is buzzing with excitement about the intersection of gaming, NFTs, and blockchain technology, with a focus on community engagement, new game development, and innovative projects that are pushing the boundaries of the industry.","data":[0,3,3,2,0,0,3,0,3,3,4,2,0,1,0,3,0,4,1,1,19,2,0,2,1,3,6,2,1,1,3,2,3,9,6,0,8,1,0,4,2,4,1,3,3,0,2,4,3,1,1,2,2,6,1]},{"label":"BTC Mining","topics":"mining,block,bitcoin,digital,hodl","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining operations expanding with acquisitions and new locations like Malta and Paraguay\n- Significant Bitcoin transactions and block mining rewards\n- Concerns about health issues related to Bitcoin mining in Texas\n- Criticisms of altcoin ASIC mining and solo mining practices\n- Updates on Bitcoin holdings by US and Hong Kong ETFs\n- Limited supply of newly mined Bitcoins and implications for investors\n\nOverall, the messages reflect a mix of positive developments in the Bitcoin mining industry, concerns about environmental and health impacts, and discussions about investment trends in the crypto market.","data":[6,4,2,2,10,6,3,4,2,2,2,1,0,2,0,2,0,5,1,3,0,4,2,4,0,6,0,2,2,1,2,4,12,4,1,2,2,0,5,2,0,4,2,2,0,0,2,2,5,6,0,2,0,1,0]},{"label":"CPI","topics":"banks,inflation,bank,economy,rate","description":"The key topics currently discussed in the crypto industry on social media include:\n- The impact of recession on full-time jobs and the stability of the dollar\n- The launch of a licensed UK bank offering crypto trading\n- Survey results showing that the majority of Americans believe the US is in a recession\n- Updates on Mercury Bank CEO and affected customers' deposits\n- Access Bank Plc advancing loans and digital loan launches\n- Interest rates and potential signs of an imminent recession\n- Criticisms of the Fed's inflation target and monetary policy framework\n- Growth and inflation exceeding expectations in the 2nd quarter\n- Issues with home insurance providers delaying claims processing\n- Banks entering the Bitcoin market and offering custody services\n- Community discussions on reducing inflation and revenue in the treasury\n- The relevance and usefulness of banks in today's society, as questioned by Fungura.","data":[1,0,8,3,1,0,1,2,4,0,2,0,2,4,2,2,0,3,3,1,5,4,2,3,4,4,1,4,2,3,4,3,0,3,1,3,1,6,2,7,3,2,1,1,2,3,1,2,3,2,0,0,1,1,2]},{"label":"Mt. Gox","topics":"gox,btc,address,worth,billion","description":"The key topics currently being discussed in the crypto community on Twitter are related to Mt. Gox transferring large amounts of Bitcoin to new addresses. The total amount transferred is around $2.85 billion, with some transfers being as high as 42,587 BTC. This movement of funds is linked to creditor repayments, with over 40% of repayments already made. There is speculation about the impact of these transfers on the market, as well as discussions about the positive impact of the launch of ETH ETFs. Overall, the community is closely following the developments surrounding Mt. Gox and its Bitcoin transfers.","data":[5,1,0,1,3,5,5,0,0,2,3,4,3,2,5,0,0,2,3,2,0,1,1,1,1,1,0,6,0,1,0,0,0,8,1,3,1,0,1,7,6,0,2,3,4,0,0,1,1,13,1,2,1,1,0]},{"label":"DOGE","topics":"doge,nfts,price,red,website","description":"The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin, include:\n- Speculation on more upside potential for Dogecoin\n- Whales withdrawing millions from Robinhood\n- Holding Dogecoin as a status symbol\n- Potential for a Dogecoin ETF\n- Price analysis and predictions for Dogecoin\n- Comparisons to other cryptocurrencies like Bitcoin\n- Market trends and volatility for Dogecoin\n- Potential gains and price targets for Dogecoin\n- AI-driven insights and analysis for Dogecoin\n- Technical analysis and chart patterns for Dogecoin\n\nOverall, the sentiment on Twitter seems to be bullish and optimistic about the future of Dogecoin, with discussions focusing on potential price increases and investment opportunities.","data":[0,2,2,0,0,0,2,3,2,0,2,0,1,0,27,0,0,1,1,1,0,1,0,6,0,1,1,1,3,3,1,0,2,0,0,2,2,0,3,0,0,2,2,0,0,1,1,1,2,3,0,1,1,0,0]},{"label":"NFT","topics":"nft,nfts,dead,claim,art","description":"Based on the messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. NFT Collections: There is excitement around upcoming NFT drops and discussions about top NFT projects. Some projects have seen significant inflow of funds in the past week. There is also mention of NFT trends to watch in 2024, including NFT gaming expansion.\n\n2. NFT Market Trends: There are debates about the current state of the NFT market, with some suggesting that NFTs are dead while others believe there is still potential for growth. There is a focus on tokenization for the sake of art and creativity rather than just monetization.\n\n3. New NFT Projects: There is anticipation around new NFT projects, with mentions of potential groundbreaking projects that could make history. For example, the announcement of official Pokemon NFTs by The Pokemon Company has generated excitement.\n\n4. NFT Ownership and Security: Discussions also revolve around the ownership and security of NFTs, with questions about the best practices for transferring NFTs securely without compromising their integrity.\n\nOverall, the crypto community on Twitter is actively engaged in discussions about NFTs, their market trends, upcoming projects, and best practices for ownership and security.","data":[0,0,3,1,0,0,0,0,1,3,1,2,0,0,0,0,0,2,3,1,2,1,0,1,2,0,3,1,2,3,0,1,0,0,3,1,1,1,1,0,3,1,0,0,1,0,0,0,1,3,1,1,2,2,1]},{"label":"Lightning Network","topics":"layer,network,assets,mainnet,release","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Lightning network\n- QR code\n- Non-custodial BTC\n- Liquid staking\n- Cross-chain DeFi markets\n- Decentralized bridges\n- OmniZK\n- Cross-chain interoperability\n- Persistence One\n- Ethereum L2 ecosystem\n- Base\n- AI-Insights\n- Layer 2 solutions\n- Bitcoin super apps\n- Automated conversions\n- Super QR codes\n- Sovereign Chains\n- MultiversX\n- Bitcoin Layer 2's\n- Restaking/Native Yield Primitives\n- Ordinals\n- DeFi/Runes\n- OP Cat\n- Bitcoin Lightning Network\n- Taproot Assets\n- Stablecoins\n- BitlayerLabs\n- Franklin Templeton\n\nThese topics highlight the advancements and developments in the crypto industry, particularly focusing on scalability, interoperability, and the integration of layer 2 solutions to enhance the efficiency and usability of cryptocurrencies like Bitcoin.","data":[1,1,0,2,3,3,0,1,0,0,2,1,0,1,0,1,2,2,0,0,0,1,0,2,2,2,1,5,6,0,0,1,0,2,1,0,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,2,1,0,0]},{"label":"PEPE","topics":"pepe,meme,cap,numbers,perfect","description":"The messages from Twitter are discussing various cryptocurrencies such as $PEPE, $SOL, $ETH, $Apu, $Hoppy, and #Groyper. There is a focus on the performance and market cap of these cryptocurrencies, with $PEPE being highlighted as a potential investment opportunity with a strong market performance and potential for growth. Additionally, there are mentions of upcoming events such as the launch of an ETH ETF and a crypto competition involving $PEPE. Overall, the sentiment in the messages is bullish towards $PEPE and other mentioned cryptocurrencies.","data":[1,0,0,3,0,0,0,1,0,1,0,0,2,0,0,0,0,0,2,0,1,0,2,0,0,0,1,0,1,1,1,1,2,0,0,2,15,0,1,2,0,0,0,0,1,0,2,0,0,2,0,0,2,0,1]},{"label":"Whales","topics":"whales,buying,alert,moved,activity","description":"The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin whales accumulating large amounts of BTC\n- Movement of significant amounts of BTC by whales\n- Potential pump in Ethereum due to ETFs\n- Whale activity in altcoins such as $MPL and $LRDS\n- Environmental initiatives such as river cleaning in Indonesia\n- Collisions on the Marikina River in the Philippines\n- Trading upgrades on Matcha x 0x v2 for better trade pricing\n- Discussion on $wiggy token and its features, including whale holders and coin burning.","data":[0,2,0,0,0,5,0,0,2,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,0,1,2,1,0,2,0,0,2,0,0,0,0,0,0,0,2,0,1,0,1,0,0,2,1,0,1,0,10,0]},{"label":"SHIB","topics":"shib,doge,trillion,moon,tokens","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- World-renowned wrestler John Cena joining the Shiba Inu Army\n- Crucial Shibarium game warning issued by the SHIB team\n- Shiba Inu staying ahead with a 482% burn rate surge\n- Whale comeback with 1.56 trillion Shiba Inu in 24 hours\n- Shiba Inu lead developer Shytoshi Kusama's belief in the memecoin ecosystem\n- Hacker selling off all their Shiba Inu tokens from the WazirX exchange attack\n- Shiba Inu burn rate spike and army petitioning Binance for a burn mechanism\n- Shiba Inu and Aave price movements on the charts\n- Alpha Sei with Moon trading opportunities on WolfSwap with airdrops, trading contests, and more.","data":[1,0,0,0,0,0,0,2,1,0,2,2,1,2,0,0,0,0,2,0,0,0,0,0,0,0,9,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,1]},{"label":"Altseason","topics":"altseason,altcoins,green,candle,btc","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- $pirate train\n- $gods\n- $lrds\n- $hopr\n- $dyp\n- ZoidPay\n- SaitaChain\n- $Hopr\n- Proof of Stake (POS)\n- Coinbase\n\nThese topics are generating a lot of buzz and discussion among crypto enthusiasts on Twitter, with mentions of price movements, buying opportunities, and potential future growth. It seems like there is a mix of excitement, speculation, and analysis surrounding these topics within the crypto community.","data":[0,0,0,1,0,0,1,0,1,0,1,2,0,0,1,0,0,0,1,0,2,1,1,1,0,0,0,1,0,1,9,0,0,0,0,0,0,2,0,0,0,1,0,1,0,1,0,0,2,0,0,0,0,0,3]},{"label":"XRP","topics":"xrp,sec,cryptocurrency,altcoins,news","description":"The key topics discussed in the messages from twitter about the crypto industry include updates on various cryptocurrencies such as $ROSE, $BTC, $ETH, $SOL, $XRP, and $RAKE. There is a focus on price movements, legal uncertainties, predictions, and potential for new all-time highs. The messages also mention the ongoing legal battle between Ripple (XRP) and the SEC, with discussions on settlements, Judge Torres ruling, and valuation of XRP. Additionally, there is mention of Arbitrum price analysis and prediction, as well as the dominance of XRP in the market. Overall, the messages highlight the volatility and potential opportunities in the crypto industry.","data":[1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,0,4,2,1,2,5,1,0,0,0,2,0,1,2,0,1,0,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-29.ts b/priv/repo/major_topics_seed/data-29.ts deleted file mode 100644 index b64285f034..0000000000 --- a/priv/repo/major_topics_seed/data-29.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '18.07.24', - '19.07.24', - '19.07.24', - '19.07.24', - '19.07.24', - '19.07.24', - '19.07.24', - '19.07.24', - '20.07.24', - '20.07.24', - '20.07.24', - '20.07.24', - '20.07.24', - '20.07.24', - '20.07.24', - '20.07.24', - '21.07.24', - '21.07.24', - '21.07.24', - '21.07.24', - '21.07.24', - '21.07.24', - '21.07.24', - '21.07.24', - '22.07.24', - '22.07.24', - '22.07.24', - '22.07.24', - '22.07.24', - '22.07.24', - '22.07.24', - '22.07.24', - '23.07.24', - '23.07.24', - '23.07.24', - '23.07.24', - '23.07.24', - '23.07.24', - '23.07.24', - '23.07.24', - '24.07.24', - '24.07.24', - '24.07.24', - '24.07.24', - '24.07.24', - '24.07.24', - '24.07.24', - '24.07.24', - '25.07.24', - '25.07.24', - '25.07.24', - '25.07.24', - '25.07.24', - '25.07.24', - '25.07.24', - ], - datasets: [ - { - label: 'ETH ETF.', - topics: 'etf,eth,etfs,ethereum,spot', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The launch of Ethereum spot ETFs for trading, with a focus on the approval and trading volume.\n2. Speculation on the impact of ETFs on the price of Ethereum and Bitcoin, with mentions of price movements and comparisons between the two.\n3. Analysis of recent net outflows and inflows in ETH spot ETFs, including figures for Grayscale ETH Trust ETF ETHE, Grayscale Mini ETF ETH, and Fidelity ETF FETH.\n4. Discussion on the potential for significant price pumps in certain cryptocurrencies, such as $HOLD, and the behavior of traders during these pumps.\n5. Observations on the printing of fiat currency and its impact on the crypto market, with a focus on Bitcoin and Ethereum as alternatives.\n6. Mention of specific companies and organizations involved in the ETF market, such as 21Shares, BitwiseInvest, BlackRock, Fidelity, Franklin, VanEck, InvescoUS, and Grayscale.\n7. Speculation on future price movements and market trends, including references to falling wedges on the RSI and the potential for a major move in Ethereum's price.\n8. Calls to action for celebrating the approval of ETH ETFs and participating in events or promotions related to them.\n9. Humorous commentary on past predictions and advice given by anonymous sources in the crypto community.\n10. Questions about the future performance of certain cryptocurrencies, such as $DMTR and $DOGE, and comparisons to previous price movements.", - data: [ - 17, 11, 22, 29, 11, 24, 28, 24, 9, 16, 12, 8, 30, 11, 13, 44, 185, 18, 26, 20, 19, 19, 33, - 24, 18, 23, 7, 21, 15, 28, 22, 13, 9, 18, 27, 28, 9, 28, 16, 21, 16, 15, 22, 23, 57, 11, 11, - 17, 22, 26, 8, 16, 19, 12, 21, - ], - }, - { - label: 'BTC Price', - topics: 'btc,price,bitcoin,bullish,chart', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin price predictions and analysis, with mentions of potential scenarios such as reaching $100k or $150k\n- Speculation on the impact of major events like the Bitcoin conference on the price of BTC\n- Analysis of technical indicators like candlestick patterns and chart formations\n- Discussion of altcoins like Binance Coin (BNB) and their price movements\n- News about significant events in the crypto market, such as Binance burning 1.6 million BNB tokens\n- Concerns about market corrections and liquidations wiping out millions in value\n- Anticipation for the launch of an ETH Spot ETF and its potential impact on the market\n\nOverall, the sentiment on Twitter seems to be a mix of excitement, speculation, and caution as traders and analysts navigate the volatile crypto market.', - data: [ - 13, 9, 3, 14, 81, 33, 35, 32, 3, 24, 5, 18, 11, 6, 13, 4, 0, 11, 13, 5, 7, 11, 2, 23, 11, - 11, 4, 8, 16, 14, 13, 11, 10, 4, 7, 9, 10, 21, 13, 16, 9, 9, 8, 15, 10, 4, 10, 17, 9, 9, 5, - 9, 7, 8, 4, - ], - }, - { - label: 'Bitcoin', - topics: 'bitcoin,money,fiat,world,best', - description: - 'The key topics currently discussed in the crypto industry on social media accounts include #Bitcoin ownership distribution, timestamping capabilities, sentiment analysis, the understanding of billionaires towards Bitcoin, the potential destruction of dollar value, the adoption of Bitcoin by the state, the impact of Bitcoin on the internet beany craze, and the competition between different Bitcoin wallets like Zeus. There is also mention of #Bitcoin being a preferred choice over fiat currency and the criticism of Bitcoin deviating from its original white paper description.', - data: [ - 8, 4, 3, 7, 59, 34, 9, 6, 5, 6, 3, 2, 6, 10, 4, 6, 0, 4, 9, 9, 4, 3, 8, 9, 5, 3, 8, 6, 3, 7, - 5, 1, 7, 7, 5, 6, 8, 4, 6, 4, 10, 9, 10, 10, 4, 7, 7, 6, 6, 4, 5, 4, 4, 8, 4, - ], - }, - { - label: 'AI', - topics: 'ai,model,search,meta,data', - description: - 'The topic discussed in the messages from twitter is the integration of AI (Artificial Intelligence) in various industries and applications. The messages mention the use of AI in social media platforms like Facebook, video editing, creating convincing AI videos of public figures, decentralized AI revolution, AI-powered proof of individuality in digital identity management, AI in gaming, AI in entertainment industry, and AI in optimizing data for businesses like Salesforce and Workday. The messages also touch upon the potential of AI in making tasks more efficient and the advancements in AI technology.', - data: [ - 28, 14, 7, 3, 0, 1, 4, 4, 2, 9, 6, 8, 6, 7, 4, 6, 0, 2, 4, 9, 8, 5, 6, 2, 8, 11, 10, 8, 6, - 2, 4, 1, 9, 8, 6, 7, 4, 3, 7, 7, 12, 4, 10, 5, 4, 9, 4, 4, 4, 4, 6, 2, 7, 0, 2, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coin,memecoins', - description: - 'The key topics currently discussed in the crypto industry on social media accounts include meme coins, new meme coin launches, meme coin competitions, presales, market cap movements, Solana meme coins, Andy coin updates, meme coin team battles, and upcoming presales for meme tokens like $PCORN. There is also discussion about the importance of simplicity in meme coins to attract retail investors, successful meme coin launches, and the potential for meme coins to make significant market cap gains. Additionally, there is mention of a new Andy video game release and a reminder about an upcoming $PCORN presale.', - data: [ - 3, 1, 4, 8, 1, 1, 0, 6, 5, 6, 3, 3, 3, 10, 8, 3, 0, 2, 4, 2, 2, 3, 3, 6, 7, 4, 3, 4, 6, 7, - 5, 52, 6, 4, 6, 2, 2, 11, 2, 2, 2, 3, 6, 5, 0, 5, 5, 7, 3, 4, 3, 2, 5, 7, 3, - ], - }, - { - label: 'Art', - topics: 'art,collection,able,im,thank', - description: - "The key topics discussed in the messages from twitter include:\n- Tokenized art and its value\n- Appreciation for art curators and artists\n- Quarterly report by a CEO\n- Collaboration with Tether for real use cases of USDT\n- Generative art mania hype\n- Expressive styles of artist David Popa\n- Public art as propaganda\n- Appreciation for Meta4Farms and their deals\n- Excitement for Darkfarms' solo show\n- NFTs and ETH in the art world\n- Documentary on Hayao Miyazaki and animator Eiji Yamamori's interaction.", - data: [ - 1, 3, 27, 2, 0, 0, 4, 1, 0, 5, 5, 2, 2, 2, 0, 4, 1, 5, 1, 5, 4, 0, 3, 5, 13, 5, 0, 1, 4, 3, - 8, 0, 4, 2, 3, 8, 7, 5, 5, 7, 6, 0, 3, 6, 2, 1, 2, 11, 3, 1, 1, 2, 4, 2, 10, - ], - }, - { - label: 'SOL ETF', - topics: 'solana,sol,eth,ethereum,etf', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Solana (SOL) showing strong performance with a 31%+ increase in the past 30 days\n- Solana breaking out above its long-term downtrend line on the weekly chart, driving strong price momentum\n- Solana's potential for a rally after a 17% surge in the past week, with traders spotting a bullish pattern on the price chart\n- Solana ETF approval odds rising amid potential political shifts\n- Solend rebranding as 'Save' and launching a new stablecoin and token\n- Discussion about the path to $0 for Ethereum (ETH) and Solana's potential as an alternative\n- Use of Bonkbot_io for trading on Solana\n- Mention of NorbertHegedus3 and YouHodler for Solana yield opportunities\n- Humorous comments about XRP and long-term holding strategies\n\nOverall, the sentiment around Solana appears to be positive, with discussions focusing on its recent price performance, technical analysis, and potential future developments.", - data: [ - 1, 2, 2, 5, 0, 0, 2, 3, 2, 1, 3, 3, 2, 1, 0, 6, 1, 3, 2, 2, 2, 3, 5, 2, 0, 6, 3, 2, 2, 3, 1, - 6, 3, 3, 2, 4, 5, 6, 7, 3, 0, 2, 2, 19, 0, 3, 3, 0, 1, 5, 1, 5, 3, 3, 4, - ], - }, - { - label: 'Bitcoin Nashville', - topics: 'nashville,conference,thebitcoinconf,bitcoin,2024', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin Nashville conference and events happening there\n- Bitcoin community members sharing experiences and information about the conference\n- Participation in upcoming blockchain events such as KBW2024 and European Blockchain Convention\n- Discussions about the future of Bitcoin and potential developments in the industry\n- Promotion of podcasts and live-streams related to Bitcoin and crypto\n- Sharing of promo codes for discounts at blockchain events\n- Mention of specific companies and projects involved in the industry, such as Bitcoin Offices and Nvirworld\n- Plans for future collaborations and partnerships within the crypto community', - data: [ - 1, 3, 4, 3, 5, 4, 3, 2, 3, 1, 6, 2, 3, 2, 1, 1, 2, 4, 2, 0, 1, 3, 5, 7, 5, 2, 5, 4, 3, 5, 1, - 2, 5, 10, 3, 3, 3, 1, 2, 1, 1, 3, 1, 0, 2, 2, 1, 4, 2, 2, 1, 2, 4, 3, 6, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,earn,play', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n\n1. GameFi and NFT Gaming: Discussions about various gaming projects such as Illuvium, Hamster Combat, Legion, OGCommunity_X, Cosmic Bomber, AtariX, PlayDapp, and Rebel Cars. These projects offer opportunities for gamers to earn tokens, compete in tournaments, trade NFTs, and participate in game development.\n\n2. Community Engagement: Projects like Splinterlands are inviting community members to become ambassadors and share alpha versions of upcoming reward cards. This shows a focus on community involvement and collaboration.\n\n3. New Game Development: Excitement around new game development projects, with hints about upcoming genres and adventures. Projects like OffTheGrid are generating buzz with leaked cinematic content and discussions about NFT validators.\n\n4. Crypto Integration in Gaming: Discussions about how projects like GunzillaGames are bridging the gap between traditional gaming and crypto, attracting both non-gamers and traditional gamers to the world of crypto gaming.\n\nOverall, the crypto industry is buzzing with excitement about the intersection of gaming, NFTs, and blockchain technology, with a focus on community engagement, new game development, and innovative projects that are pushing the boundaries of the industry.', - data: [ - 0, 3, 3, 2, 0, 0, 3, 0, 3, 3, 4, 2, 0, 1, 0, 3, 0, 4, 1, 1, 19, 2, 0, 2, 1, 3, 6, 2, 1, 1, - 3, 2, 3, 9, 6, 0, 8, 1, 0, 4, 2, 4, 1, 3, 3, 0, 2, 4, 3, 1, 1, 2, 2, 6, 1, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,block,bitcoin,digital,hodl', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining operations expanding with acquisitions and new locations like Malta and Paraguay\n- Significant Bitcoin transactions and block mining rewards\n- Concerns about health issues related to Bitcoin mining in Texas\n- Criticisms of altcoin ASIC mining and solo mining practices\n- Updates on Bitcoin holdings by US and Hong Kong ETFs\n- Limited supply of newly mined Bitcoins and implications for investors\n\nOverall, the messages reflect a mix of positive developments in the Bitcoin mining industry, concerns about environmental and health impacts, and discussions about investment trends in the crypto market.', - data: [ - 6, 4, 2, 2, 10, 6, 3, 4, 2, 2, 2, 1, 0, 2, 0, 2, 0, 5, 1, 3, 0, 4, 2, 4, 0, 6, 0, 2, 2, 1, - 2, 4, 12, 4, 1, 2, 2, 0, 5, 2, 0, 4, 2, 2, 0, 0, 2, 2, 5, 6, 0, 2, 0, 1, 0, - ], - }, - { - label: 'CPI', - topics: 'banks,inflation,bank,economy,rate', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- The impact of recession on full-time jobs and the stability of the dollar\n- The launch of a licensed UK bank offering crypto trading\n- Survey results showing that the majority of Americans believe the US is in a recession\n- Updates on Mercury Bank CEO and affected customers' deposits\n- Access Bank Plc advancing loans and digital loan launches\n- Interest rates and potential signs of an imminent recession\n- Criticisms of the Fed's inflation target and monetary policy framework\n- Growth and inflation exceeding expectations in the 2nd quarter\n- Issues with home insurance providers delaying claims processing\n- Banks entering the Bitcoin market and offering custody services\n- Community discussions on reducing inflation and revenue in the treasury\n- The relevance and usefulness of banks in today's society, as questioned by Fungura.", - data: [ - 1, 0, 8, 3, 1, 0, 1, 2, 4, 0, 2, 0, 2, 4, 2, 2, 0, 3, 3, 1, 5, 4, 2, 3, 4, 4, 1, 4, 2, 3, 4, - 3, 0, 3, 1, 3, 1, 6, 2, 7, 3, 2, 1, 1, 2, 3, 1, 2, 3, 2, 0, 0, 1, 1, 2, - ], - }, - { - label: 'Mt. Gox', - topics: 'gox,btc,address,worth,billion', - description: - 'The key topics currently being discussed in the crypto community on Twitter are related to Mt. Gox transferring large amounts of Bitcoin to new addresses. The total amount transferred is around $2.85 billion, with some transfers being as high as 42,587 BTC. This movement of funds is linked to creditor repayments, with over 40% of repayments already made. There is speculation about the impact of these transfers on the market, as well as discussions about the positive impact of the launch of ETH ETFs. Overall, the community is closely following the developments surrounding Mt. Gox and its Bitcoin transfers.', - data: [ - 5, 1, 0, 1, 3, 5, 5, 0, 0, 2, 3, 4, 3, 2, 5, 0, 0, 2, 3, 2, 0, 1, 1, 1, 1, 1, 0, 6, 0, 1, 0, - 0, 0, 8, 1, 3, 1, 0, 1, 7, 6, 0, 2, 3, 4, 0, 0, 1, 1, 13, 1, 2, 1, 1, 0, - ], - }, - { - label: 'DOGE', - topics: 'doge,nfts,price,red,website', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin, include:\n- Speculation on more upside potential for Dogecoin\n- Whales withdrawing millions from Robinhood\n- Holding Dogecoin as a status symbol\n- Potential for a Dogecoin ETF\n- Price analysis and predictions for Dogecoin\n- Comparisons to other cryptocurrencies like Bitcoin\n- Market trends and volatility for Dogecoin\n- Potential gains and price targets for Dogecoin\n- AI-driven insights and analysis for Dogecoin\n- Technical analysis and chart patterns for Dogecoin\n\nOverall, the sentiment on Twitter seems to be bullish and optimistic about the future of Dogecoin, with discussions focusing on potential price increases and investment opportunities.', - data: [ - 0, 2, 2, 0, 0, 0, 2, 3, 2, 0, 2, 0, 1, 0, 27, 0, 0, 1, 1, 1, 0, 1, 0, 6, 0, 1, 1, 1, 3, 3, - 1, 0, 2, 0, 0, 2, 2, 0, 3, 0, 0, 2, 2, 0, 0, 1, 1, 1, 2, 3, 0, 1, 1, 0, 0, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,dead,claim,art', - description: - 'Based on the messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. NFT Collections: There is excitement around upcoming NFT drops and discussions about top NFT projects. Some projects have seen significant inflow of funds in the past week. There is also mention of NFT trends to watch in 2024, including NFT gaming expansion.\n\n2. NFT Market Trends: There are debates about the current state of the NFT market, with some suggesting that NFTs are dead while others believe there is still potential for growth. There is a focus on tokenization for the sake of art and creativity rather than just monetization.\n\n3. New NFT Projects: There is anticipation around new NFT projects, with mentions of potential groundbreaking projects that could make history. For example, the announcement of official Pokemon NFTs by The Pokemon Company has generated excitement.\n\n4. NFT Ownership and Security: Discussions also revolve around the ownership and security of NFTs, with questions about the best practices for transferring NFTs securely without compromising their integrity.\n\nOverall, the crypto community on Twitter is actively engaged in discussions about NFTs, their market trends, upcoming projects, and best practices for ownership and security.', - data: [ - 0, 0, 3, 1, 0, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 0, 0, 2, 3, 1, 2, 1, 0, 1, 2, 0, 3, 1, 2, 3, 0, - 1, 0, 0, 3, 1, 1, 1, 1, 0, 3, 1, 0, 0, 1, 0, 0, 0, 1, 3, 1, 1, 2, 2, 1, - ], - }, - { - label: 'Lightning Network', - topics: 'layer,network,assets,mainnet,release', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Lightning network\n- QR code\n- Non-custodial BTC\n- Liquid staking\n- Cross-chain DeFi markets\n- Decentralized bridges\n- OmniZK\n- Cross-chain interoperability\n- Persistence One\n- Ethereum L2 ecosystem\n- Base\n- AI-Insights\n- Layer 2 solutions\n- Bitcoin super apps\n- Automated conversions\n- Super QR codes\n- Sovereign Chains\n- MultiversX\n- Bitcoin Layer 2's\n- Restaking/Native Yield Primitives\n- Ordinals\n- DeFi/Runes\n- OP Cat\n- Bitcoin Lightning Network\n- Taproot Assets\n- Stablecoins\n- BitlayerLabs\n- Franklin Templeton\n\nThese topics highlight the advancements and developments in the crypto industry, particularly focusing on scalability, interoperability, and the integration of layer 2 solutions to enhance the efficiency and usability of cryptocurrencies like Bitcoin.", - data: [ - 1, 1, 0, 2, 3, 3, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 2, 0, 0, 0, 1, 0, 2, 2, 2, 1, 5, 6, 0, 0, - 1, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 2, 1, 0, 0, - ], - }, - { - label: 'PEPE', - topics: 'pepe,meme,cap,numbers,perfect', - description: - 'The messages from Twitter are discussing various cryptocurrencies such as $PEPE, $SOL, $ETH, $Apu, $Hoppy, and #Groyper. There is a focus on the performance and market cap of these cryptocurrencies, with $PEPE being highlighted as a potential investment opportunity with a strong market performance and potential for growth. Additionally, there are mentions of upcoming events such as the launch of an ETH ETF and a crypto competition involving $PEPE. Overall, the sentiment in the messages is bullish towards $PEPE and other mentioned cryptocurrencies.', - data: [ - 1, 0, 0, 3, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 2, 0, 0, 0, 1, 0, 1, 1, 1, - 1, 2, 0, 0, 2, 15, 0, 1, 2, 0, 0, 0, 0, 1, 0, 2, 0, 0, 2, 0, 0, 2, 0, 1, - ], - }, - { - label: 'Whales', - topics: 'whales,buying,alert,moved,activity', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin whales accumulating large amounts of BTC\n- Movement of significant amounts of BTC by whales\n- Potential pump in Ethereum due to ETFs\n- Whale activity in altcoins such as $MPL and $LRDS\n- Environmental initiatives such as river cleaning in Indonesia\n- Collisions on the Marikina River in the Philippines\n- Trading upgrades on Matcha x 0x v2 for better trade pricing\n- Discussion on $wiggy token and its features, including whale holders and coin burning.', - data: [ - 0, 2, 0, 0, 0, 5, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 2, 1, 0, 2, - 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 0, 2, 1, 0, 1, 0, 10, 0, - ], - }, - { - label: 'SHIB', - topics: 'shib,doge,trillion,moon,tokens', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- World-renowned wrestler John Cena joining the Shiba Inu Army\n- Crucial Shibarium game warning issued by the SHIB team\n- Shiba Inu staying ahead with a 482% burn rate surge\n- Whale comeback with 1.56 trillion Shiba Inu in 24 hours\n- Shiba Inu lead developer Shytoshi Kusama's belief in the memecoin ecosystem\n- Hacker selling off all their Shiba Inu tokens from the WazirX exchange attack\n- Shiba Inu burn rate spike and army petitioning Binance for a burn mechanism\n- Shiba Inu and Aave price movements on the charts\n- Alpha Sei with Moon trading opportunities on WolfSwap with airdrops, trading contests, and more.", - data: [ - 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 2, 1, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 9, 0, 1, 1, 1, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, - ], - }, - { - label: 'Altseason', - topics: 'altseason,altcoins,green,candle,btc', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- $pirate train\n- $gods\n- $lrds\n- $hopr\n- $dyp\n- ZoidPay\n- SaitaChain\n- $Hopr\n- Proof of Stake (POS)\n- Coinbase\n\nThese topics are generating a lot of buzz and discussion among crypto enthusiasts on Twitter, with mentions of price movements, buying opportunities, and potential future growth. It seems like there is a mix of excitement, speculation, and analysis surrounding these topics within the crypto community.', - data: [ - 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 2, 0, 0, 1, 0, 0, 0, 1, 0, 2, 1, 1, 1, 0, 0, 0, 1, 0, 1, 9, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 3, - ], - }, - { - label: 'XRP', - topics: 'xrp,sec,cryptocurrency,altcoins,news', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include updates on various cryptocurrencies such as $ROSE, $BTC, $ETH, $SOL, $XRP, and $RAKE. There is a focus on price movements, legal uncertainties, predictions, and potential for new all-time highs. The messages also mention the ongoing legal battle between Ripple (XRP) and the SEC, with discussions on settlements, Judge Torres ruling, and valuation of XRP. Additionally, there is mention of Arbitrum price analysis and prediction, as well as the dominance of XRP in the market. Overall, the messages highlight the volatility and potential opportunities in the crypto industry.', - data: [ - 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, - 0, 0, 0, 1, 0, 0, 4, 2, 1, 2, 5, 1, 0, 0, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-3.json b/priv/repo/major_topics_seed/data-3.json deleted file mode 100644 index 6007e37d9a..0000000000 --- a/priv/repo/major_topics_seed/data-3.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["18.01.24","19.01.24","19.01.24","19.01.24","19.01.24","19.01.24","19.01.24","19.01.24","20.01.24","20.01.24","20.01.24","20.01.24","20.01.24","20.01.24","20.01.24","20.01.24","21.01.24","21.01.24","21.01.24","21.01.24","21.01.24","21.01.24","21.01.24","21.01.24","22.01.24","22.01.24","22.01.24","22.01.24","22.01.24","22.01.24","22.01.24","22.01.24","23.01.24","23.01.24","23.01.24","23.01.24","23.01.24","23.01.24","23.01.24","23.01.24","24.01.24","24.01.24","24.01.24","24.01.24","24.01.24","24.01.24","24.01.24","24.01.24","25.01.24","25.01.24","25.01.24","25.01.24","25.01.24","25.01.24","25.01.24","25.01.24"],"datasets":[{"label":"GameFi and Web3","topics":"gaming,game,games,gamefi,play","description":"The messages from twitter_crypto mention several key topics related to gaming and GameFi projects. Some of the mentioned projects include Palworld, Treeverse, Capsule Heroes, and the One Piece Card Game. There is also a mention of the AI and GameFi combination, which promises next-level gameplay where NPCs can predict players' moves. Additionally, the messages discuss the launch of the @web3war_game IDO on @DaoMaker, enabling the activation of the #Skill2Earn system. Another game mentioned is the free-to-play FPS @exverse_io, which has received incubation from @SeedifyFund and has VC backing from multiple firms. There is also a discussion about a potential Pokemon ripoff mod for Palworld and the possibility of legal action or interoperability being the future. Lastly, there is a mention of the cooperation between @ElfinGames and DEGO in the Bitcoin ecosystem for gaming and the metaverse. Overall, these messages highlight various GameFi projects and the excitement surrounding the gaming industry.","data":[4,1,7,2,0,1,6,6,4,6,6,6,6,2,6,4,3,12,5,6,56,6,8,9,2,7,10,13,13,2,8,5,4,5,6,8,17,7,1,8,5,6,8,4,6,5,5,6,11,9,4,4,6,4,4,5]},{"label":"Bitcoin general","topics":"bitcoin,bitcoiner,does,screenshot,explanation","description":"The key topics discussed in the messages from twitter_crypto related to the given set of words are:\n\n1. #Bitcoin: The messages mention the hashtag #Bitcoin multiple times, indicating that the topic of Bitcoin is being discussed.\n\n2. #BTC: The hashtag #BTC is not explicitly mentioned in the messages, but since it is related to Bitcoin, it can be inferred that the discussions are also about BTC.\n\n3. Send it!: The phrase \"Send it!\" is mentioned in the messages, which could be related to sending Bitcoin or making transactions.\n\n4. Bitcoiner: The term \"Bitcoiner\" is not mentioned in the messages.\n\n5. Does: The word \"Does\" is mentioned in one of the messages, but it is not clear what it refers to without further context.\n\n6. Screenshot: The word \"screenshot\" is mentioned in one of the messages, asking people to comment with a screenshot if they have it. It is unclear what the screenshot is related to.\n\n7. Explanation: The messages mention a \"really good explanation of Bittensor\" but do not provide further details about it.\n\n8. Fix: The word \"fix\" is not mentioned in the messages.\n\n9. Simple: The messages mention that the user experience for Bitcoin should be better than any banking app and that the on-chain peer-to-peer function of Bitcoin is simple and easy to explain.\n\n10. Best: The messages mention a \"preferred business\" related to Bitcoin, but it is not clear what it refers to.\n\n11. Adoption: The messages mention that mass adoption of Bitcoin requires simplicity.\n\n12. Scale: The messages do not mention anything about scaling Bitcoin.\n\nOverall, the key topics discussed in the messages from twitter_crypto related to the given set of words are Bitcoin, sending transactions, simplicity, and adoption.","data":[2,1,2,8,0,0,4,0,0,2,5,2,1,4,0,2,0,1,3,4,4,6,5,11,1,2,2,4,3,9,2,5,2,5,1,2,8,2,2,6,2,1,5,1,2,2,5,1,4,7,5,8,0,6,14,6]},{"label":"Grayscale Bitcoin Trust","topics":"grayscale,grayscales,coinbase,sent,prime","description":"According to messages from twitter_crypto, it has been reported that Grayscale Bitcoin Trust (GBTC) has been experiencing daily outflows of around $1 billion. The official Bitcoin held by Grayscale is currently at 566,973, with approximately 15% of Grayscale BTC leaving. Grayscale has transferred significant amounts of BTC to Coinbase Prime Deposit, with recent transfers totaling 19,260 BTC and another 15,560 BTC. The balance of Grayscale Bitcoin Trust has seen a 12% reduction, possibly due to the FTX bankruptcy, resulting in a $3.5 billion outflow. It is unclear how much of this BTC is being sold on the market or through over-the-counter (OTC) transactions. There are rumors of $600 million worth of Bitcoin being dumped through Grayscale, and some whales are reportedly buying large amounts of BTC. It is suggested that once Grayscale is done selling, Bitcoin may experience a significant price increase. Grayscale's BTC sell-off is attributed to the end of a 40% discount and a high 1.5% management fee, causing investors to leave GBTC. Today, 950 BTC worth $36 million has been sent out by GBTC, which could potentially impact market sentiment and movements. There is a call for Grayscale to lower its fees, as the current 1.5% fee is deemed unsustainable and unfair. Other institutions, such as iShares (BlackRock), Fidelity, Bitwise, ARK21, Invesco Galaxy, VanEck, and Valkyrie, also hold significant amounts of BTC.","data":[3,3,3,3,46,3,3,0,3,2,2,7,12,6,3,4,1,1,3,1,1,1,2,14,4,1,0,5,4,0,0,3,2,3,3,1,3,3,1,0,4,5,1,3,3,1,3,1,0,0,0,1,0,6,2,1]},{"label":"Bitcoin prices","topics":"range,low,correction,wave,level","description":"Based on the messages from twitter_crypto and the set of words provided, here is a summary of the key topics being discussed about $BTC:\n\n- The price of $BTC is currently testing the same price area for the third time, with very low volume.\n- There is speculation about whether there will be volatility or if bears are hesitant.\n- There is a mention of a potential bullish divergence in the 4-hour chart of Bitcoin.\n- The GBTC sell pressure is being monitored, and there are specific zones of interest for $BTC.\n- The recent pullback in price is around 20%, similar to previous corrections in this cycle.\n- Some analysts believe that the bottom is in and expect a strong close for the day.\n- The 2022 yearly open is seen as an interesting spot where $BTC is bouncing off.\n- There is a question about whether the price of Bitcoin may drop to around or under thirty thousand Federal Reserve notes by February 7th.\n- The relationship between BTC and ETH charts is being discussed, with some noting similarities and BTC being forced to follow ETH's direction.\n- Technical analysis suggests the possibility of breaking a down channel and potentially moving up to the bottom of the cloud.\n- Alts (alternative cryptocurrencies) are expected to perform well if BTC's price increases.\n- The dominance of BTC is gaining strength again, and the ETH/BTC chart closed under TRN ADXVMA on the daily timeframe.\n- There is a mention of sweeps and the importance of being defensive in trading.\n- The weekly chart of BTC shows potential support levels at 39,329, 37,000, and 36,000, with the latter being considered a whale buys zone.\n- The ongoing correction in BTC is noted, which is currently around 21%.\n- There are speculations about the potential price movements, including a reversal from 40k, an impulsive drop to the CME gap, or a loss of the current range.\n- The offloading of BTC by Grayscale is being monitored, with speculation about its impact on price.\n- There is anticipation about whether BTC will hit a low and be bearish or bounce back and be bullish.","data":[3,1,4,3,0,0,1,1,2,2,6,4,1,2,1,4,1,3,2,3,5,2,1,1,7,3,5,4,1,2,1,7,12,3,7,2,2,1,4,6,2,3,4,9,4,3,5,5,5,4,2,4,3,6,4,1]},{"label":"AI and ML","topics":"ai,aipowered,davos,machine,intelligence","description":"The messages from twitter_crypto mention various topics related to AI and the crypto industry. Some key points include:\n\n- The discussion about AI being the new matrix and the idea that AI is integrating with humans in the near future.\n- The introduction of a new AI derivative by @shrimpgangsol.\n- Mention of different coding AI assistants such as chatGPT, replit, cursor, and copilot.\n- The AI trend involving multitasking that is important to follow.\n- ChainGPT introducing an AI-powered crypto trading platform.\n- OpenAI's pledge to combat election disinformation with ChatGPT.\n- The claim by researchers at MIT that AI can currently only replace 23% of workers in computer vision tasks.\n- The debut of an AI that can answer multi-step questions.\n- The use of AI to benefit from trading cryptocurrencies like Solana, SEI, MYRO, and Bitcoin.\n- A conversation about AI taking over and its potential to be stopped.\n- The mention of @ParallelTCG, a game related to AI.\n- The perspective that AI is a powerful tool for the ruling class and can be used without explanation.\n\nOverall, the messages highlight the intersection of AI and the crypto industry, discussing its potential, applications, and implications.","data":[6,2,0,0,0,0,0,2,1,0,2,1,3,0,79,3,0,0,3,1,0,5,4,2,3,1,0,1,4,1,2,4,3,3,2,1,3,0,1,2,2,4,0,2,3,2,2,1,3,4,1,4,4,1,3,1]},{"label":"Tesla","topics":"tesla,tsla,earnings,q4,cloud","description":"The messages from twitter_crypto discuss various topics related to the crypto industry. One message mentions that Barry isn't selling any ETH, which could be significant information for the market. Another message highlights the strong performance of $ASML. There is also news about Tesla's cybertruck production and deliveries ramping up throughout the year. Additionally, it is mentioned that Tesla maintains its holdings of Bitcoin at $184 million for the fifth consecutive quarter. \n\nThere is a sentiment view on $PLTR (Palantir) that the author agrees with, as seen on their pinned post. The author also discusses a bearish scenario for $TSLA (Tesla) based on sentiment, volume, and global liquidity, although they find it less likely. They mention that they don't see any sales and that it's a hunt for liquidity in Bitcoin. \n\nThe message also touches on the topic of fewer cars on the road and the benefits of using public transportation. It is noted that Tesla didn't sell any Bitcoin in Q4 and currently holds 9,720 Bitcoin worth over $389 million. \n\nThere is a quote from TSLA regarding their expectations of hardware-related profits being accompanied by an acceleration of AI, software, and fleet-based profits. The author recommends reading an article about Walmart's dominant logistics operation and why its trucks make more than other drivers. \n\nThere is a mention of $PROPC potentially having a bullish Gartley 1D chart and the anticipation of three more major CEX (Centralized Exchanges) in Q1. The author highlights the importance of a working product, low market cap, and burning mechanism for $PROPC. \n\nThe author expresses their emotions and plans regarding $TSLA, stating that they will stop getting emotional about it and stick to their plan. They mention having exposure to $TSLA and being prepared to increase exposure if it drops further. \n\nLastly, there is a discussion about the price of #Ethereum, with the author expressing happiness about being able to buy it for less than $3,000 for another 2 months. They mention the Tenken🔴crossing stream with Kijun🔵and crossing above the monthly Ichimoku cloud as potential future events.","data":[2,4,0,1,0,1,0,2,2,9,3,2,2,6,4,2,1,1,1,1,2,3,1,2,2,0,1,2,5,4,2,3,4,5,5,1,2,5,8,1,0,2,3,3,22,3,2,1,2,1,3,3,2,3,6,2]},{"label":"Manta and other alt coins","topics":"manta,tia,myro,trending,coins","description":"The messages from twitter_crypto mention several key topics related to the crypto industry. Here is a summary of the information:\n\n1. Top 20 #CMC #Crypto #SaitaChain #STC: The messages mention a list of the most influential accounts on a platform called X. It is unclear what platform X refers to.\n\n2. Top 5 Altcoins Under $0.00001 to Watch: The messages highlight a list of altcoins with low prices that are worth keeping an eye on.\n\n3. Top Token's Unlocking Status This Week: The messages ask about popular tokens that will be unlocked during the current week.\n\n4. Top 5 Gainers on #BiKingToday: The messages mention the top-performing tokens on the BiKing platform.\n\n5. Bottom 3 on Lumenswap: The messages provide information about the three worst-performing tokens on the Lumenswap platform.\n\n6. Project performance listed on a website: The messages encourage readers to check the performance of various projects listed on a specific website.\n\n7. Top 5 Gainers on WazirX: The messages highlight the top-performing tokens on the WazirX platform.\n\n8. Top Trending Coins (Today): The messages list several coins that are currently trending.\n\n9. Top 10 Daily Gainers: The messages mention the top-performing coins based on their price increase in the last 24 hours.\n\n10. Top 5 Coins by AltRank™: The messages list the top coins based on their AltRank™ score on LunarCrush.\n\n11. Top Gainers in #Inscription Tokens on #BitMart: The messages highlight the top-performing tokens in the Inscriptions market on BitMart.\n\n12. Alt Coin Switch: The messages mention several altcoins, including XRP, VRA, Dogecoin, and Quant.\n\n13. Accumulating for 2024: The messages ask readers which altcoin industries they are accumulating for in 2024, mentioning AI & ML, DeFi, Infra, Ad-fraud, and Computing.\n\n14. Best Altcoins set to DOMINATE diff. sector in 2024: The messages list several altcoins categorized by different sectors, including RWA, AI, Privacy, and Layer 1.\n\nOverall, the messages cover a range of topics related to popular tokens, top gainers, trending coins, and altcoin industries.","data":[4,1,4,4,2,1,25,4,1,0,1,3,1,1,3,0,13,2,0,1,1,1,1,2,11,7,5,0,4,1,1,2,1,1,1,3,5,0,0,6,2,1,8,5,1,1,0,3,1,0,1,2,0,0,1,0]},{"label":"Bitcoin halving","topics":"halving,april,days,event,rate","description":"The key topics discussed in the messages from twitter_crypto related to the given set of words are:\n\n1. Bitcoin Halving: The messages mention the upcoming Bitcoin Halving event, which is expected to occur in about 87 days. It is highlighted that the mining rewards will be halved from 6.25 to 3.125, reducing the inflation rate to sub 1% for the first time in history. The significance and impact of the halving on Bitcoin's price and market are discussed.\n\n2. Bitcoin Dumping: The messages mention the dumping of Bitcoin and discuss the reasons behind it. It is suggested that institutions and whales are booking profits after accumulating Bitcoin at a cheap price. Additionally, investors of Grayscale's Bitcoin ETF are said to be dumping their Bitcoin for high fees. The selling of Bitcoins by miners is also mentioned as a contributing factor.\n\n3. Bitcoin Price and Performance: The messages highlight the current performance of Bitcoin and compare it to previous halving cycles. It is mentioned that Bitcoin is moving faster this cycle and that the previous all-time high after the 2016 halving was $19,497.40. The price of Bitcoin is also discussed in relation to its ATH (All-Time High) and its percentage below ATH during different halving cycles.\n\nOverall, the messages provide insights into the upcoming Bitcoin Halving event, its potential impact on Bitcoin's price and market, and the factors influencing Bitcoin's current performance and dumping.","data":[6,5,10,13,22,25,4,2,1,10,5,4,5,5,5,9,3,7,10,9,5,5,5,4,3,9,5,9,3,3,4,2,5,10,2,10,13,8,5,7,5,10,6,8,9,5,6,5,3,3,4,7,5,5,6,4]},{"label":"NFT","topics":"nft,nfts,collection,sei,mint","description":"Based on the given messages from twitter_crypto and the set of words related to NFTs, it is evident that NFTs are being discussed in the crypto community. However, there is no specific mention of the year when the financial analyst bought their first NFT. The messages mainly focus on the value and potential of NFTs, as well as the activities happening in the NFT marketplace and communities.","data":[0,2,0,0,0,0,1,1,6,3,1,1,1,0,2,1,38,2,2,0,0,1,0,1,5,2,0,2,1,1,4,0,1,1,5,1,5,1,4,1,4,3,0,4,5,3,2,2,2,1,2,2,2,1,1,1]},{"label":"DOGE Musk and X","topics":"doge,dogecoin,xpayments,payments,elon","description":"The messages from twitter_crypto suggest that there is a lot of excitement and discussion about Dogecoin (#Dogecoin) and its potential integration into X payments. Many users believe that Dogecoin is heading towards success and refer to it as a \"life time opportunity.\" Elon Musk's involvement is also mentioned, with speculation about whether he will integrate Bitcoin or Dogecoin into X payments first. The recent announcement of X payments has caused a 10% jump in Dogecoin's price. Some users are urging others to buy the dip in Dogecoin and remain bullish on its future. However, there are also critics who believe that Elon Musk's influence on Dogecoin has negatively impacted its value and that it will never return to its previous levels. Overall, the integration of Dogecoin into X payments is seen as a potential game-changer for the cryptocurrency and could further boost its prominence in the market.","data":[6,1,1,7,9,2,5,5,0,0,2,0,3,5,0,0,7,3,1,1,0,2,2,0,5,1,0,1,0,0,0,1,0,4,4,3,0,1,0,5,6,1,2,0,0,21,1,1,1,0,7,1,0,2,0,0]},{"label":"Memecoins","topics":"meme,memes,memecoin,memecoins,coins","description":"The messages from twitter_crypto discuss various topics related to memes and memecoins in the crypto industry. The users express their excitement and interest in meme coins, sharing their favorite ones and even offering to share early contract addresses. They also mention specific meme coin collections, such as the $trolleyproblem meme collection. The users highlight the creativity and entertainment value of memecoins, emphasizing their popularity and trading activity. Additionally, there is a mention of a new memecoin called HUG, which has captured the interest of top crypto influencers. The users compare the success of meme coins to the potential of utility-based cryptocurrencies like Cardano. Finally, there is a link to an article recommending the best meme coins to buy for potential gains. Overall, the messages reflect the enthusiasm and engagement surrounding memecoins in the crypto community.","data":[0,1,2,1,17,2,0,2,2,3,3,1,0,1,0,1,18,4,3,1,3,0,0,2,2,0,4,1,1,1,1,0,0,4,1,2,1,2,2,1,2,4,8,1,1,1,1,2,3,2,3,2,2,3,1,3]},{"label":"Solana","topics":"solana,sol,degen,tg,surge","description":"The messages from twitter_crypto suggest that there is a downside scenario in play for $SOL. There is also a discussion about the price prediction of $SOL and its potential to outperform $ETH amid the current crypto market doldrums. One user mentions closing a $SOL long position with a loss of $50, while another user mentions a profitable $ETH long position. There is a suggestion to reset the $SOL long position at $88.2 if there is a re-test, in order to mitigate risk. \n\nThe messages also highlight the steady growth of Solana, which is challenging Ethereum in the stablecoin market share. There are mentions of other projects on Solana, such as $SRM and #BigBenisClub, with users expressing excitement about their potential for growth. \n\nHowever, there is also negative sentiment towards $SOL, with a mention of $102 million in losses going towards paying lawyers and validators. The messages also discuss a recent market downturn that led to over $100 million being liquidated in just 24 hours. \n\nDespite these challenges, there is a positive development mentioned from the Solana Foundation, which has led to an 11% increase in the price of $SOL. There is also a mention of a new crypto prop related to $SOL on the @BundlesBets site, where users can predict whether $SOL will close February above or below $82. \n\nLastly, there are mentions of a new miner on Solana called @MilkParadiseSOL, with users expressing interest in their upcoming token and NFTs. There is also a mention of the significant price increase of $SOL from its all-time low, as well as a discussion about other cryptocurrencies like $HBAR. \n\nOverall, the messages indicate a mix of positive and negative sentiment towards $SOL, with discussions about its price performance, potential projects on Solana, and recent market events.","data":[1,7,1,7,1,15,0,0,1,2,1,0,8,4,2,0,6,2,2,2,0,0,1,4,1,2,1,1,0,1,1,4,1,4,1,1,1,1,0,3,5,0,0,0,0,3,2,3,1,1,1,1,1,2,17,0]},{"label":"Shiba Inu","topics":"shiba,inu,shib,burn,rate","description":"The messages from twitter_crypto discuss various topics related to the crypto industry, particularly focusing on Shiba Inu. Some key points mentioned in the messages include:\n\n1. Shiba Inu becoming the third-largest holding on Robinhood Crypto.\n2. Shibarium experiencing a significant increase of 140% in transaction activity.\n3. Speculation about the possibility of Shiba Inu reaching a price of $0.00005 soon.\n4. Whales' activity strengthening the bullish case for Shiba Inu.\n5. Kaspa and InQubeta eyeing exponential profit potential in Shiba Inu.\n6. Jump Trading, the crypto arm of Robinhood exchange, being a market maker for Dogecoin.\n7. Dogecoin being listed on a major Indian crypto exchange.\n8. Robinhood accumulating 371 billion Shiba Inu and dropping $19 million worth of Bitcoin.\n9. Shiba Inu forming a falling wedge bullish pattern on the weekly chart.\n10. Shiba Inu's burn rate skyrocketing by 543% in the past 24 hours.\n11. A giveaway of AI Shiba (AISHIBA) tokens on LATOKEN.\n\nOverall, the messages highlight the popularity and activity surrounding Shiba Inu, as well as its potential for growth and investment opportunities.","data":[2,1,3,1,0,0,3,0,1,6,2,10,3,2,2,1,0,2,7,1,0,2,0,8,1,1,1,3,6,1,0,1,0,0,2,1,0,0,0,1,1,5,3,0,0,0,0,1,0,4,0,2,4,2,0,0]},{"label":"Policy and regulations","topics":"law,government,political,criminal,american","description":"The message from twitter_crypto discusses various topics related to law, government, politics, and criminal activities. It mentions the non-negotiable nature of women's human rights and criticizes law enforcement for being above the law and causing havoc on society. The message also highlights the broken system and the cancellation of the debt limit in the US, which limits politicians' ability to force compromise. It mentions the principle of local autonomy and questions if law enforcement will ever get involved in certain situations. The message also touches on corruption, criminal organizations, and the role of tech innovation and social media in bringing about change. Additionally, it mentions libertarians, the American experiment in self-sovereignty, and the current state of participatory fascism. The message concludes with a mention of the US government's debt and the declaration of the US and UK governments as \"global terrorist\" networks by the Parliament of Yemen.","data":[4,3,3,3,15,13,6,20,2,5,1,5,8,0,4,6,1,2,7,3,1,3,4,6,5,5,3,3,6,5,11,3,8,6,1,2,6,5,4,5,6,6,3,8,4,2,6,11,3,5,0,5,5,4,8,2]},{"label":"Coinbase & SEC","topics":"sec,judge,vs,court,securities","description":"The messages from twitter_crypto discuss various updates and developments related to the ongoing legal battle between Coinbase and the SEC. The messages mention that Binance has attempted to argue for the dismissal of charges during a court hearing. The judge in the Coinbase/SEC lawsuit is expected to make a decision within the next three months, according to an analyst. Attorney John Deaton criticizes the SEC's legal representatives in the Coinbase lawsuit. The judge also criticized both Binance and the SEC during a recent court hearing. The messages highlight that the case between Coinbase and the SEC is significant in defining the classification of cryptocurrencies as securities. Coinbase compared buying cryptocurrencies to collecting Beanie Babies during a recent hearing, raising questions in the legal battle. The messages also mention a recent hearing between Binance and the SEC, where the Binance lawyer criticized the SEC's approach to crypto tokens. The fallout from the Binance vs SEC hearing resulted in a plunge in Bitcoin and Cardano prices. The messages also mention that the analyst believes Coinbase will win the case and that the US will eventually implement a regulatory regime for virtual asset service providers. The long-awaited hearing between the SEC and Coinbase concluded without a ruling from the judge, with no significant highlights during the five-hour hearing.","data":[2,6,1,1,0,0,0,2,7,3,4,4,0,1,1,1,5,3,4,7,1,5,1,4,2,1,12,36,4,1,3,1,10,6,6,2,3,5,2,4,4,2,1,3,4,5,3,0,2,10,1,4,0,4,1,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-3.ts b/priv/repo/major_topics_seed/data-3.ts deleted file mode 100644 index 0ddfd9cd79..0000000000 --- a/priv/repo/major_topics_seed/data-3.ts +++ /dev/null @@ -1,212 +0,0 @@ -export const NARRATIVES = { - labels: [ - '18.01.24', - '19.01.24', - '19.01.24', - '19.01.24', - '19.01.24', - '19.01.24', - '19.01.24', - '19.01.24', - '20.01.24', - '20.01.24', - '20.01.24', - '20.01.24', - '20.01.24', - '20.01.24', - '20.01.24', - '20.01.24', - '21.01.24', - '21.01.24', - '21.01.24', - '21.01.24', - '21.01.24', - '21.01.24', - '21.01.24', - '21.01.24', - '22.01.24', - '22.01.24', - '22.01.24', - '22.01.24', - '22.01.24', - '22.01.24', - '22.01.24', - '22.01.24', - '23.01.24', - '23.01.24', - '23.01.24', - '23.01.24', - '23.01.24', - '23.01.24', - '23.01.24', - '23.01.24', - '24.01.24', - '24.01.24', - '24.01.24', - '24.01.24', - '24.01.24', - '24.01.24', - '24.01.24', - '24.01.24', - '25.01.24', - '25.01.24', - '25.01.24', - '25.01.24', - '25.01.24', - '25.01.24', - '25.01.24', - '25.01.24', - ], - datasets: [ - { - label: 'GameFi and Web3', - topics: 'gaming,game,games,gamefi,play', - description: - "The messages from twitter_crypto mention several key topics related to gaming and GameFi projects. Some of the mentioned projects include Palworld, Treeverse, Capsule Heroes, and the One Piece Card Game. There is also a mention of the AI and GameFi combination, which promises next-level gameplay where NPCs can predict players' moves. Additionally, the messages discuss the launch of the @web3war_game IDO on @DaoMaker, enabling the activation of the #Skill2Earn system. Another game mentioned is the free-to-play FPS @exverse_io, which has received incubation from @SeedifyFund and has VC backing from multiple firms. There is also a discussion about a potential Pokemon ripoff mod for Palworld and the possibility of legal action or interoperability being the future. Lastly, there is a mention of the cooperation between @ElfinGames and DEGO in the Bitcoin ecosystem for gaming and the metaverse. Overall, these messages highlight various GameFi projects and the excitement surrounding the gaming industry.", - data: [ - 4, 1, 7, 2, 0, 1, 6, 6, 4, 6, 6, 6, 6, 2, 6, 4, 3, 12, 5, 6, 56, 6, 8, 9, 2, 7, 10, 13, 13, - 2, 8, 5, 4, 5, 6, 8, 17, 7, 1, 8, 5, 6, 8, 4, 6, 5, 5, 6, 11, 9, 4, 4, 6, 4, 4, 5, - ], - }, - { - label: 'Bitcoin general', - topics: 'bitcoin,bitcoiner,does,screenshot,explanation', - description: - 'The key topics discussed in the messages from twitter_crypto related to the given set of words are:\n\n1. #Bitcoin: The messages mention the hashtag #Bitcoin multiple times, indicating that the topic of Bitcoin is being discussed.\n\n2. #BTC: The hashtag #BTC is not explicitly mentioned in the messages, but since it is related to Bitcoin, it can be inferred that the discussions are also about BTC.\n\n3. Send it!: The phrase "Send it!" is mentioned in the messages, which could be related to sending Bitcoin or making transactions.\n\n4. Bitcoiner: The term "Bitcoiner" is not mentioned in the messages.\n\n5. Does: The word "Does" is mentioned in one of the messages, but it is not clear what it refers to without further context.\n\n6. Screenshot: The word "screenshot" is mentioned in one of the messages, asking people to comment with a screenshot if they have it. It is unclear what the screenshot is related to.\n\n7. Explanation: The messages mention a "really good explanation of Bittensor" but do not provide further details about it.\n\n8. Fix: The word "fix" is not mentioned in the messages.\n\n9. Simple: The messages mention that the user experience for Bitcoin should be better than any banking app and that the on-chain peer-to-peer function of Bitcoin is simple and easy to explain.\n\n10. Best: The messages mention a "preferred business" related to Bitcoin, but it is not clear what it refers to.\n\n11. Adoption: The messages mention that mass adoption of Bitcoin requires simplicity.\n\n12. Scale: The messages do not mention anything about scaling Bitcoin.\n\nOverall, the key topics discussed in the messages from twitter_crypto related to the given set of words are Bitcoin, sending transactions, simplicity, and adoption.', - data: [ - 2, 1, 2, 8, 0, 0, 4, 0, 0, 2, 5, 2, 1, 4, 0, 2, 0, 1, 3, 4, 4, 6, 5, 11, 1, 2, 2, 4, 3, 9, - 2, 5, 2, 5, 1, 2, 8, 2, 2, 6, 2, 1, 5, 1, 2, 2, 5, 1, 4, 7, 5, 8, 0, 6, 14, 6, - ], - }, - { - label: 'Grayscale Bitcoin Trust', - topics: 'grayscale,grayscales,coinbase,sent,prime', - description: - "According to messages from twitter_crypto, it has been reported that Grayscale Bitcoin Trust (GBTC) has been experiencing daily outflows of around $1 billion. The official Bitcoin held by Grayscale is currently at 566,973, with approximately 15% of Grayscale BTC leaving. Grayscale has transferred significant amounts of BTC to Coinbase Prime Deposit, with recent transfers totaling 19,260 BTC and another 15,560 BTC. The balance of Grayscale Bitcoin Trust has seen a 12% reduction, possibly due to the FTX bankruptcy, resulting in a $3.5 billion outflow. It is unclear how much of this BTC is being sold on the market or through over-the-counter (OTC) transactions. There are rumors of $600 million worth of Bitcoin being dumped through Grayscale, and some whales are reportedly buying large amounts of BTC. It is suggested that once Grayscale is done selling, Bitcoin may experience a significant price increase. Grayscale's BTC sell-off is attributed to the end of a 40% discount and a high 1.5% management fee, causing investors to leave GBTC. Today, 950 BTC worth $36 million has been sent out by GBTC, which could potentially impact market sentiment and movements. There is a call for Grayscale to lower its fees, as the current 1.5% fee is deemed unsustainable and unfair. Other institutions, such as iShares (BlackRock), Fidelity, Bitwise, ARK21, Invesco Galaxy, VanEck, and Valkyrie, also hold significant amounts of BTC.", - data: [ - 3, 3, 3, 3, 46, 3, 3, 0, 3, 2, 2, 7, 12, 6, 3, 4, 1, 1, 3, 1, 1, 1, 2, 14, 4, 1, 0, 5, 4, 0, - 0, 3, 2, 3, 3, 1, 3, 3, 1, 0, 4, 5, 1, 3, 3, 1, 3, 1, 0, 0, 0, 1, 0, 6, 2, 1, - ], - }, - { - label: 'Bitcoin prices', - topics: 'range,low,correction,wave,level', - description: - "Based on the messages from twitter_crypto and the set of words provided, here is a summary of the key topics being discussed about $BTC:\n\n- The price of $BTC is currently testing the same price area for the third time, with very low volume.\n- There is speculation about whether there will be volatility or if bears are hesitant.\n- There is a mention of a potential bullish divergence in the 4-hour chart of Bitcoin.\n- The GBTC sell pressure is being monitored, and there are specific zones of interest for $BTC.\n- The recent pullback in price is around 20%, similar to previous corrections in this cycle.\n- Some analysts believe that the bottom is in and expect a strong close for the day.\n- The 2022 yearly open is seen as an interesting spot where $BTC is bouncing off.\n- There is a question about whether the price of Bitcoin may drop to around or under thirty thousand Federal Reserve notes by February 7th.\n- The relationship between BTC and ETH charts is being discussed, with some noting similarities and BTC being forced to follow ETH's direction.\n- Technical analysis suggests the possibility of breaking a down channel and potentially moving up to the bottom of the cloud.\n- Alts (alternative cryptocurrencies) are expected to perform well if BTC's price increases.\n- The dominance of BTC is gaining strength again, and the ETH/BTC chart closed under TRN ADXVMA on the daily timeframe.\n- There is a mention of sweeps and the importance of being defensive in trading.\n- The weekly chart of BTC shows potential support levels at 39,329, 37,000, and 36,000, with the latter being considered a whale buys zone.\n- The ongoing correction in BTC is noted, which is currently around 21%.\n- There are speculations about the potential price movements, including a reversal from 40k, an impulsive drop to the CME gap, or a loss of the current range.\n- The offloading of BTC by Grayscale is being monitored, with speculation about its impact on price.\n- There is anticipation about whether BTC will hit a low and be bearish or bounce back and be bullish.", - data: [ - 3, 1, 4, 3, 0, 0, 1, 1, 2, 2, 6, 4, 1, 2, 1, 4, 1, 3, 2, 3, 5, 2, 1, 1, 7, 3, 5, 4, 1, 2, 1, - 7, 12, 3, 7, 2, 2, 1, 4, 6, 2, 3, 4, 9, 4, 3, 5, 5, 5, 4, 2, 4, 3, 6, 4, 1, - ], - }, - { - label: 'AI and ML', - topics: 'ai,aipowered,davos,machine,intelligence', - description: - "The messages from twitter_crypto mention various topics related to AI and the crypto industry. Some key points include:\n\n- The discussion about AI being the new matrix and the idea that AI is integrating with humans in the near future.\n- The introduction of a new AI derivative by @shrimpgangsol.\n- Mention of different coding AI assistants such as chatGPT, replit, cursor, and copilot.\n- The AI trend involving multitasking that is important to follow.\n- ChainGPT introducing an AI-powered crypto trading platform.\n- OpenAI's pledge to combat election disinformation with ChatGPT.\n- The claim by researchers at MIT that AI can currently only replace 23% of workers in computer vision tasks.\n- The debut of an AI that can answer multi-step questions.\n- The use of AI to benefit from trading cryptocurrencies like Solana, SEI, MYRO, and Bitcoin.\n- A conversation about AI taking over and its potential to be stopped.\n- The mention of @ParallelTCG, a game related to AI.\n- The perspective that AI is a powerful tool for the ruling class and can be used without explanation.\n\nOverall, the messages highlight the intersection of AI and the crypto industry, discussing its potential, applications, and implications.", - data: [ - 6, 2, 0, 0, 0, 0, 0, 2, 1, 0, 2, 1, 3, 0, 79, 3, 0, 0, 3, 1, 0, 5, 4, 2, 3, 1, 0, 1, 4, 1, - 2, 4, 3, 3, 2, 1, 3, 0, 1, 2, 2, 4, 0, 2, 3, 2, 2, 1, 3, 4, 1, 4, 4, 1, 3, 1, - ], - }, - { - label: 'Tesla', - topics: 'tesla,tsla,earnings,q4,cloud', - description: - "The messages from twitter_crypto discuss various topics related to the crypto industry. One message mentions that Barry isn't selling any ETH, which could be significant information for the market. Another message highlights the strong performance of $ASML. There is also news about Tesla's cybertruck production and deliveries ramping up throughout the year. Additionally, it is mentioned that Tesla maintains its holdings of Bitcoin at $184 million for the fifth consecutive quarter. \n\nThere is a sentiment view on $PLTR (Palantir) that the author agrees with, as seen on their pinned post. The author also discusses a bearish scenario for $TSLA (Tesla) based on sentiment, volume, and global liquidity, although they find it less likely. They mention that they don't see any sales and that it's a hunt for liquidity in Bitcoin. \n\nThe message also touches on the topic of fewer cars on the road and the benefits of using public transportation. It is noted that Tesla didn't sell any Bitcoin in Q4 and currently holds 9,720 Bitcoin worth over $389 million. \n\nThere is a quote from TSLA regarding their expectations of hardware-related profits being accompanied by an acceleration of AI, software, and fleet-based profits. The author recommends reading an article about Walmart's dominant logistics operation and why its trucks make more than other drivers. \n\nThere is a mention of $PROPC potentially having a bullish Gartley 1D chart and the anticipation of three more major CEX (Centralized Exchanges) in Q1. The author highlights the importance of a working product, low market cap, and burning mechanism for $PROPC. \n\nThe author expresses their emotions and plans regarding $TSLA, stating that they will stop getting emotional about it and stick to their plan. They mention having exposure to $TSLA and being prepared to increase exposure if it drops further. \n\nLastly, there is a discussion about the price of #Ethereum, with the author expressing happiness about being able to buy it for less than $3,000 for another 2 months. They mention the Tenken🔴crossing stream with Kijun🔵and crossing above the monthly Ichimoku cloud as potential future events.", - data: [ - 2, 4, 0, 1, 0, 1, 0, 2, 2, 9, 3, 2, 2, 6, 4, 2, 1, 1, 1, 1, 2, 3, 1, 2, 2, 0, 1, 2, 5, 4, 2, - 3, 4, 5, 5, 1, 2, 5, 8, 1, 0, 2, 3, 3, 22, 3, 2, 1, 2, 1, 3, 3, 2, 3, 6, 2, - ], - }, - { - label: 'Manta and other alt coins', - topics: 'manta,tia,myro,trending,coins', - description: - "The messages from twitter_crypto mention several key topics related to the crypto industry. Here is a summary of the information:\n\n1. Top 20 #CMC #Crypto #SaitaChain #STC: The messages mention a list of the most influential accounts on a platform called X. It is unclear what platform X refers to.\n\n2. Top 5 Altcoins Under $0.00001 to Watch: The messages highlight a list of altcoins with low prices that are worth keeping an eye on.\n\n3. Top Token's Unlocking Status This Week: The messages ask about popular tokens that will be unlocked during the current week.\n\n4. Top 5 Gainers on #BiKingToday: The messages mention the top-performing tokens on the BiKing platform.\n\n5. Bottom 3 on Lumenswap: The messages provide information about the three worst-performing tokens on the Lumenswap platform.\n\n6. Project performance listed on a website: The messages encourage readers to check the performance of various projects listed on a specific website.\n\n7. Top 5 Gainers on WazirX: The messages highlight the top-performing tokens on the WazirX platform.\n\n8. Top Trending Coins (Today): The messages list several coins that are currently trending.\n\n9. Top 10 Daily Gainers: The messages mention the top-performing coins based on their price increase in the last 24 hours.\n\n10. Top 5 Coins by AltRank™: The messages list the top coins based on their AltRank™ score on LunarCrush.\n\n11. Top Gainers in #Inscription Tokens on #BitMart: The messages highlight the top-performing tokens in the Inscriptions market on BitMart.\n\n12. Alt Coin Switch: The messages mention several altcoins, including XRP, VRA, Dogecoin, and Quant.\n\n13. Accumulating for 2024: The messages ask readers which altcoin industries they are accumulating for in 2024, mentioning AI & ML, DeFi, Infra, Ad-fraud, and Computing.\n\n14. Best Altcoins set to DOMINATE diff. sector in 2024: The messages list several altcoins categorized by different sectors, including RWA, AI, Privacy, and Layer 1.\n\nOverall, the messages cover a range of topics related to popular tokens, top gainers, trending coins, and altcoin industries.", - data: [ - 4, 1, 4, 4, 2, 1, 25, 4, 1, 0, 1, 3, 1, 1, 3, 0, 13, 2, 0, 1, 1, 1, 1, 2, 11, 7, 5, 0, 4, 1, - 1, 2, 1, 1, 1, 3, 5, 0, 0, 6, 2, 1, 8, 5, 1, 1, 0, 3, 1, 0, 1, 2, 0, 0, 1, 0, - ], - }, - { - label: 'Bitcoin halving', - topics: 'halving,april,days,event,rate', - description: - "The key topics discussed in the messages from twitter_crypto related to the given set of words are:\n\n1. Bitcoin Halving: The messages mention the upcoming Bitcoin Halving event, which is expected to occur in about 87 days. It is highlighted that the mining rewards will be halved from 6.25 to 3.125, reducing the inflation rate to sub 1% for the first time in history. The significance and impact of the halving on Bitcoin's price and market are discussed.\n\n2. Bitcoin Dumping: The messages mention the dumping of Bitcoin and discuss the reasons behind it. It is suggested that institutions and whales are booking profits after accumulating Bitcoin at a cheap price. Additionally, investors of Grayscale's Bitcoin ETF are said to be dumping their Bitcoin for high fees. The selling of Bitcoins by miners is also mentioned as a contributing factor.\n\n3. Bitcoin Price and Performance: The messages highlight the current performance of Bitcoin and compare it to previous halving cycles. It is mentioned that Bitcoin is moving faster this cycle and that the previous all-time high after the 2016 halving was $19,497.40. The price of Bitcoin is also discussed in relation to its ATH (All-Time High) and its percentage below ATH during different halving cycles.\n\nOverall, the messages provide insights into the upcoming Bitcoin Halving event, its potential impact on Bitcoin's price and market, and the factors influencing Bitcoin's current performance and dumping.", - data: [ - 6, 5, 10, 13, 22, 25, 4, 2, 1, 10, 5, 4, 5, 5, 5, 9, 3, 7, 10, 9, 5, 5, 5, 4, 3, 9, 5, 9, 3, - 3, 4, 2, 5, 10, 2, 10, 13, 8, 5, 7, 5, 10, 6, 8, 9, 5, 6, 5, 3, 3, 4, 7, 5, 5, 6, 4, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collection,sei,mint', - description: - 'Based on the given messages from twitter_crypto and the set of words related to NFTs, it is evident that NFTs are being discussed in the crypto community. However, there is no specific mention of the year when the financial analyst bought their first NFT. The messages mainly focus on the value and potential of NFTs, as well as the activities happening in the NFT marketplace and communities.', - data: [ - 0, 2, 0, 0, 0, 0, 1, 1, 6, 3, 1, 1, 1, 0, 2, 1, 38, 2, 2, 0, 0, 1, 0, 1, 5, 2, 0, 2, 1, 1, - 4, 0, 1, 1, 5, 1, 5, 1, 4, 1, 4, 3, 0, 4, 5, 3, 2, 2, 2, 1, 2, 2, 2, 1, 1, 1, - ], - }, - { - label: 'DOGE Musk and X', - topics: 'doge,dogecoin,xpayments,payments,elon', - description: - "The messages from twitter_crypto suggest that there is a lot of excitement and discussion about Dogecoin (#Dogecoin) and its potential integration into X payments. Many users believe that Dogecoin is heading towards success and refer to it as a \"life time opportunity.\" Elon Musk's involvement is also mentioned, with speculation about whether he will integrate Bitcoin or Dogecoin into X payments first. The recent announcement of X payments has caused a 10% jump in Dogecoin's price. Some users are urging others to buy the dip in Dogecoin and remain bullish on its future. However, there are also critics who believe that Elon Musk's influence on Dogecoin has negatively impacted its value and that it will never return to its previous levels. Overall, the integration of Dogecoin into X payments is seen as a potential game-changer for the cryptocurrency and could further boost its prominence in the market.", - data: [ - 6, 1, 1, 7, 9, 2, 5, 5, 0, 0, 2, 0, 3, 5, 0, 0, 7, 3, 1, 1, 0, 2, 2, 0, 5, 1, 0, 1, 0, 0, 0, - 1, 0, 4, 4, 3, 0, 1, 0, 5, 6, 1, 2, 0, 0, 21, 1, 1, 1, 0, 7, 1, 0, 2, 0, 0, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memes,memecoin,memecoins,coins', - description: - 'The messages from twitter_crypto discuss various topics related to memes and memecoins in the crypto industry. The users express their excitement and interest in meme coins, sharing their favorite ones and even offering to share early contract addresses. They also mention specific meme coin collections, such as the $trolleyproblem meme collection. The users highlight the creativity and entertainment value of memecoins, emphasizing their popularity and trading activity. Additionally, there is a mention of a new memecoin called HUG, which has captured the interest of top crypto influencers. The users compare the success of meme coins to the potential of utility-based cryptocurrencies like Cardano. Finally, there is a link to an article recommending the best meme coins to buy for potential gains. Overall, the messages reflect the enthusiasm and engagement surrounding memecoins in the crypto community.', - data: [ - 0, 1, 2, 1, 17, 2, 0, 2, 2, 3, 3, 1, 0, 1, 0, 1, 18, 4, 3, 1, 3, 0, 0, 2, 2, 0, 4, 1, 1, 1, - 1, 0, 0, 4, 1, 2, 1, 2, 2, 1, 2, 4, 8, 1, 1, 1, 1, 2, 3, 2, 3, 2, 2, 3, 1, 3, - ], - }, - { - label: 'Solana', - topics: 'solana,sol,degen,tg,surge', - description: - 'The messages from twitter_crypto suggest that there is a downside scenario in play for $SOL. There is also a discussion about the price prediction of $SOL and its potential to outperform $ETH amid the current crypto market doldrums. One user mentions closing a $SOL long position with a loss of $50, while another user mentions a profitable $ETH long position. There is a suggestion to reset the $SOL long position at $88.2 if there is a re-test, in order to mitigate risk. \n\nThe messages also highlight the steady growth of Solana, which is challenging Ethereum in the stablecoin market share. There are mentions of other projects on Solana, such as $SRM and #BigBenisClub, with users expressing excitement about their potential for growth. \n\nHowever, there is also negative sentiment towards $SOL, with a mention of $102 million in losses going towards paying lawyers and validators. The messages also discuss a recent market downturn that led to over $100 million being liquidated in just 24 hours. \n\nDespite these challenges, there is a positive development mentioned from the Solana Foundation, which has led to an 11% increase in the price of $SOL. There is also a mention of a new crypto prop related to $SOL on the @BundlesBets site, where users can predict whether $SOL will close February above or below $82. \n\nLastly, there are mentions of a new miner on Solana called @MilkParadiseSOL, with users expressing interest in their upcoming token and NFTs. There is also a mention of the significant price increase of $SOL from its all-time low, as well as a discussion about other cryptocurrencies like $HBAR. \n\nOverall, the messages indicate a mix of positive and negative sentiment towards $SOL, with discussions about its price performance, potential projects on Solana, and recent market events.', - data: [ - 1, 7, 1, 7, 1, 15, 0, 0, 1, 2, 1, 0, 8, 4, 2, 0, 6, 2, 2, 2, 0, 0, 1, 4, 1, 2, 1, 1, 0, 1, - 1, 4, 1, 4, 1, 1, 1, 1, 0, 3, 5, 0, 0, 0, 0, 3, 2, 3, 1, 1, 1, 1, 1, 2, 17, 0, - ], - }, - { - label: 'Shiba Inu', - topics: 'shiba,inu,shib,burn,rate', - description: - "The messages from twitter_crypto discuss various topics related to the crypto industry, particularly focusing on Shiba Inu. Some key points mentioned in the messages include:\n\n1. Shiba Inu becoming the third-largest holding on Robinhood Crypto.\n2. Shibarium experiencing a significant increase of 140% in transaction activity.\n3. Speculation about the possibility of Shiba Inu reaching a price of $0.00005 soon.\n4. Whales' activity strengthening the bullish case for Shiba Inu.\n5. Kaspa and InQubeta eyeing exponential profit potential in Shiba Inu.\n6. Jump Trading, the crypto arm of Robinhood exchange, being a market maker for Dogecoin.\n7. Dogecoin being listed on a major Indian crypto exchange.\n8. Robinhood accumulating 371 billion Shiba Inu and dropping $19 million worth of Bitcoin.\n9. Shiba Inu forming a falling wedge bullish pattern on the weekly chart.\n10. Shiba Inu's burn rate skyrocketing by 543% in the past 24 hours.\n11. A giveaway of AI Shiba (AISHIBA) tokens on LATOKEN.\n\nOverall, the messages highlight the popularity and activity surrounding Shiba Inu, as well as its potential for growth and investment opportunities.", - data: [ - 2, 1, 3, 1, 0, 0, 3, 0, 1, 6, 2, 10, 3, 2, 2, 1, 0, 2, 7, 1, 0, 2, 0, 8, 1, 1, 1, 3, 6, 1, - 0, 1, 0, 0, 2, 1, 0, 0, 0, 1, 1, 5, 3, 0, 0, 0, 0, 1, 0, 4, 0, 2, 4, 2, 0, 0, - ], - }, - { - label: 'Policy and regulations', - topics: 'law,government,political,criminal,american', - description: - "The message from twitter_crypto discusses various topics related to law, government, politics, and criminal activities. It mentions the non-negotiable nature of women's human rights and criticizes law enforcement for being above the law and causing havoc on society. The message also highlights the broken system and the cancellation of the debt limit in the US, which limits politicians' ability to force compromise. It mentions the principle of local autonomy and questions if law enforcement will ever get involved in certain situations. The message also touches on corruption, criminal organizations, and the role of tech innovation and social media in bringing about change. Additionally, it mentions libertarians, the American experiment in self-sovereignty, and the current state of participatory fascism. The message concludes with a mention of the US government's debt and the declaration of the US and UK governments as \"global terrorist\" networks by the Parliament of Yemen.", - data: [ - 4, 3, 3, 3, 15, 13, 6, 20, 2, 5, 1, 5, 8, 0, 4, 6, 1, 2, 7, 3, 1, 3, 4, 6, 5, 5, 3, 3, 6, 5, - 11, 3, 8, 6, 1, 2, 6, 5, 4, 5, 6, 6, 3, 8, 4, 2, 6, 11, 3, 5, 0, 5, 5, 4, 8, 2, - ], - }, - { - label: 'Coinbase & SEC', - topics: 'sec,judge,vs,court,securities', - description: - "The messages from twitter_crypto discuss various updates and developments related to the ongoing legal battle between Coinbase and the SEC. The messages mention that Binance has attempted to argue for the dismissal of charges during a court hearing. The judge in the Coinbase/SEC lawsuit is expected to make a decision within the next three months, according to an analyst. Attorney John Deaton criticizes the SEC's legal representatives in the Coinbase lawsuit. The judge also criticized both Binance and the SEC during a recent court hearing. The messages highlight that the case between Coinbase and the SEC is significant in defining the classification of cryptocurrencies as securities. Coinbase compared buying cryptocurrencies to collecting Beanie Babies during a recent hearing, raising questions in the legal battle. The messages also mention a recent hearing between Binance and the SEC, where the Binance lawyer criticized the SEC's approach to crypto tokens. The fallout from the Binance vs SEC hearing resulted in a plunge in Bitcoin and Cardano prices. The messages also mention that the analyst believes Coinbase will win the case and that the US will eventually implement a regulatory regime for virtual asset service providers. The long-awaited hearing between the SEC and Coinbase concluded without a ruling from the judge, with no significant highlights during the five-hour hearing.", - data: [ - 2, 6, 1, 1, 0, 0, 0, 2, 7, 3, 4, 4, 0, 1, 1, 1, 5, 3, 4, 7, 1, 5, 1, 4, 2, 1, 12, 36, 4, 1, - 3, 1, 10, 6, 6, 2, 3, 5, 2, 4, 4, 2, 1, 3, 4, 5, 3, 0, 2, 10, 1, 4, 0, 4, 1, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-30.json b/priv/repo/major_topics_seed/data-30.json deleted file mode 100644 index 8bb8360fe1..0000000000 --- a/priv/repo/major_topics_seed/data-30.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["25.07.24","26.07.24","26.07.24","26.07.24","26.07.24","26.07.24","26.07.24","26.07.24","27.07.24","27.07.24","27.07.24","27.07.24","27.07.24","27.07.24","27.07.24","27.07.24","28.07.24","28.07.24","28.07.24","28.07.24","28.07.24","28.07.24","28.07.24","28.07.24","29.07.24","29.07.24","29.07.24","29.07.24","29.07.24","29.07.24","29.07.24","29.07.24","30.07.24","30.07.24","30.07.24","30.07.24","30.07.24","30.07.24","30.07.24","30.07.24","31.07.24","31.07.24","31.07.24","31.07.24","31.07.24","31.07.24","31.07.24","31.07.24","01.08.24","01.08.24","01.08.24","01.08.24","01.08.24","01.08.24","01.08.24"],"datasets":[{"label":"BTC Price","topics":"btc,price,close,range,70k","description":"Based on the messages from Twitter, it seems that there is a lot of discussion about the price movements of Bitcoin ($BTC). Analysts are predicting massive growth for Bitcoin, with some suggesting that it could reach $70,000 or even higher. There is also talk about the monthly closing of Bitcoin above $60,000 for the 6th consecutive month, indicating strength in the market.\n\nAdditionally, there are mentions of technical analysis indicators such as EMAs and Bollinger Bands, as well as discussions about market manipulation and institutional involvement in the market. Some users are expressing confidence in the upward movement of Bitcoin, while others are cautioning about potential downside risks.\n\nOverall, the sentiment in the crypto community on Twitter seems to be bullish on Bitcoin, with expectations of further price increases in the near future.","data":[13,10,10,30,98,95,32,49,7,23,10,14,24,9,16,12,4,27,13,15,17,7,11,53,20,11,6,11,18,35,12,13,16,15,12,8,34,29,28,20,22,22,20,20,11,22,18,16,30,13,7,21,16,30,13]},{"label":"AI","topics":"ai,google,intelligence,meta,models","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- The impact of AI on water usage and the need for abbreviating generative AI\n- The usefulness of Brave's AI assistant Leo\n- The potential of AI agents to close skill gaps and promote equality\n- The importance of style references and personalization in AI\n- The market demand for open-source AI and the speed of the OpenAI API\n- The naming of AI assistants like Amazon's \"Rufus\"\n- The features of decentralized chat applications like OpenChat on the Internet Computer blockchain\n- The use of AI in measuring return on investment\n- The development of AI assistants in the crypto world, such as Crush AI\n- The listing and trading of the $CHAT token on Bitrue and its connection to OpenChat on the Internet Computer blockchain.","data":[52,22,9,10,0,0,4,5,6,12,6,10,3,9,8,6,5,9,9,12,8,9,6,4,6,14,10,8,6,6,7,19,12,11,17,12,8,12,9,8,14,12,6,7,10,5,17,8,4,6,8,13,11,7,6]},{"label":"Bitcoin","topics":"bitcoin,money,freedom,fiat,world","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- The importance of self-custody of digital private property and the fundamental right it represents.\n- The potential for corporations and sovereign nations to buy and hold Bitcoin as a hedge against economic storms.\n- The belief that Bitcoin will break the backs of central bankers and provide a better world of peace, truth, freedom, hope, and abundance.\n- The idea that the current financial system is unsustainable and needs to collapse for a better future to emerge.\n- The debate about whether government buying Bitcoin will actually increase the value of the network or just the unit of account.\n- The concept of physical Bitcoins and their comparison to bronze coins.\n- The panic selling behavior of individuals during their first cycle of Bitcoin ownership.\n- The need for individuals and big groups alike to be able to carry value across time through Bitcoin.\n- The potential for Bitcoin to resist the control of banks and provide financial freedom.\n- The call for individuals to opt out of the traditional financial system with Bitcoin.","data":[6,2,6,8,48,19,3,7,7,5,6,9,5,11,2,5,2,6,13,8,3,11,4,4,6,10,2,9,5,9,9,10,8,3,11,8,7,6,7,7,11,7,14,11,11,9,2,6,8,2,12,4,9,9,8]},{"label":"CPI","topics":"rate,inflation,cut,fed,rates","description":"Based on the messages from twitter, the key topics currently being discussed in the crypto industry are:\n\n1. Federal Reserve issues FOMC statement: The Fed is considering a rate cut in September if inflation moves down, growth remains strong, and employment is good. There are downside risks to employment that need to be weighed.\n\n2. India's export ban on rice: India has implemented duties and tax-free importation of rice and other essential food items to help reduce high food inflation, threatening food security in markets like Nigeria.\n\n3. Euro zone inflation edges up: Euro zone inflation has increased to 2.6% year-on-year, posing a \"difficult print\" for the ECB.\n\n4. Bank of Japan hikes interest rates: The Bank of Japan has raised interest rates to 0.25%, causing jitters across the crypto market, equities, and the Yen.\n\n5. Bank of England interest rate decision: The BoE is facing a dilemma as headline inflation fell to 2%, and will make its interest rate decision soon.\n\nOverall, the discussions revolve around central bank decisions, inflation rates, and their impact on the global economy and crypto market.","data":[7,5,11,2,1,0,16,1,6,4,5,9,21,6,6,15,6,16,12,4,5,2,6,23,24,10,7,4,9,6,38,2,4,5,6,8,9,5,17,16,7,5,5,9,5,8,4,3,6,5,2,4,2,4,10]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics currently discussed in the crypto community on social media include meme tokens, meme coins, influencers earning low income, upcoming meme coin launches, potential meme coin investments, and partnerships between animated cat brands and meme coins. The community is excited about the potential of meme coins and the opportunity to make fast money. Some specific meme tokens mentioned are $AIOZ, $WELSH, $STX, $BTC, $bober, $BRETT, $PEPE, $WOLF, $FLOKI, $SPURDO, $SHIB, $PEIPEI, $NPC, and $FROG. There is also discussion about the new META token $FROGGY and the partnership between Simonscat and RealFlokiInu for a memecoin launch. Overall, the community is enthusiastic about the meme coin market and the potential for significant gains.","data":[7,6,7,3,2,2,1,13,8,6,4,6,5,8,9,3,2,11,4,14,6,10,8,10,6,6,7,9,2,6,37,29,5,10,5,11,6,1,3,2,6,5,5,5,2,6,7,8,4,5,9,2,3,8,8]},{"label":"ETFs","topics":"etfs,etf,net,grayscale,spot","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are Ethereum ETFs, Bitcoin ETFs, capital rotation from BTC to ETH in ETFs, Grayscale Ethereum Trust, spot Ethereum ETF outflows, complexity of Ethereum and the SEC, Ethereum ETF launch driving inflows, Grayscale offloading BTC, FOMC meeting impact on ETF approval, ETF trading volume comparison between Ethereum and Bitcoin, Grayscale burning through their ETH stack, Mt. Gox supply hitting the market, and Crypto ETF flow analysis.","data":[6,2,5,6,13,11,7,5,3,1,4,1,14,6,3,32,48,4,12,0,3,9,3,7,13,9,2,9,1,2,2,3,9,5,8,1,5,1,3,3,3,3,12,6,38,4,3,2,9,1,0,1,3,6,6]},{"label":"Kamala Harris","topics":"kamala,harris,election,party,vote","description":"The messages from Twitter suggest that there is a lot of discussion surrounding the crypto industry and its relationship with political figures, particularly Kamala Harris. There are mentions of potential shifts in Silicon Valley due to the change from Biden to Harris, as well as calls for Harris to distance herself from certain organizations. Additionally, there are discussions about the Democratic Party's stance on Bitcoin and cryptocurrency, with some suggesting that there is a growing wing within the party that wants to be more pro-crypto. Overall, it seems that there is a lot of interest and debate within the crypto community about political figures and their impact on the industry.","data":[5,6,2,5,5,2,2,2,10,5,4,7,7,11,2,20,1,2,5,5,14,7,5,2,4,4,8,6,9,8,5,2,11,1,13,7,20,8,6,9,8,6,4,1,4,8,8,16,5,5,12,5,15,7,4]},{"label":"SOL","topics":"solana,sol,ethereum,eth,fees","description":"The key topics currently being discussed on Twitter regarding Solana include:\n- Solana's recent price dip and investors buying more during the dip\n- Comparison between Solana and Ethereum, with Solana outshining Ethereum in terms of trading volume\n- Solana's market cap being 1/5th of Ethereum's\n- Analyst predictions on Solana's future price trajectory\n- Solana ecosystem funding rebounding after a bear market\n- Solana's performance in 2024, with over 166% gains from the yearly low\n- Solana's meme token launch platform surpassing Ethereum in daily revenue\n- Solana's potential for growth and future market cap increase\n- Solana ETF spot filing potentially leading to a price increase\n- Solana projects raising significant funding in Q2, reaching a two-year high\n\nOverall, the sentiment on Twitter seems to be bullish on Solana, with many investors optimistic about its future potential and growth.","data":[5,8,7,6,1,4,1,5,3,4,2,9,3,3,4,8,5,3,4,3,1,10,4,4,6,8,4,8,3,3,4,4,5,3,15,10,6,13,2,5,7,7,6,28,5,3,10,8,8,5,2,3,2,10,2]},{"label":"DOGE","topics":"dogecoin,doge,nfts,baby,floor","description":"The key topics currently discussed in the messages from Twitter about the crypto industry, specifically Dogecoin, include:\n- Dogecoin holders being deep thinkers and passionate about the cryptocurrency\n- Dogecoin being referred to as a religion by some individuals\n- Speculation about Dogecoin's price dropping below ten cents for potential investment opportunities\n- Excitement about the potential for Dogecoin to increase in value\n- Mention of NASA's Perseverance rover potentially finding evidence of ancient microbial activity on Mars\n- Promotion of a pet-related product with a discount code\n- Reference to the number 69 in relation to Dogecoin volume on a trading platform\n\nOverall, the messages reflect a mix of humor, speculation, excitement, and promotion within the crypto community, particularly focused on Dogecoin and potential developments in the industry.","data":[2,2,4,2,0,0,2,6,1,4,4,0,1,1,37,5,3,5,8,4,9,3,2,1,2,5,5,11,3,4,8,4,4,3,1,7,4,1,3,2,3,3,9,5,3,3,2,5,1,0,3,0,1,2,3]},{"label":"GameFi","topics":"game,gaming,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media include gaming meta, Forgotten Runes Spritesheets, Wanderers game launch on Epic games, Hollywood video game performers planning to strike, investing in gaming, AI and Blockchain convergence in gaming, Otherworld Official metaverse, Skullish game, and Little Lemons x Nifty Game Night. There is also a mention of playing K-K more aggressively than A-A in poker. The community is encouraged to check out various gaming-related events, launches, and opportunities for investment in the gaming industry.","data":[6,1,5,5,0,0,4,3,5,1,2,2,3,4,2,4,3,4,2,37,5,4,0,3,5,1,4,9,3,2,0,4,0,3,9,1,12,1,8,2,3,1,2,3,2,3,5,1,1,0,2,2,8,5,5]},{"label":"US Government 2B BTC movement","topics":"government,reserve,strategic,governments,govt","description":"The key topic currently being discussed on Twitter is the US government's movement of a large amount of Bitcoin, totaling $2 billion, to an unknown wallet. This has sparked speculation and debate among users, with some suggesting that Bitcoin is the only option for the US to pay off its national debt. Others are questioning the motives behind the government's actions and the implications for the cryptocurrency market. Overall, there is a mix of excitement, skepticism, and curiosity surrounding the US government's involvement with Bitcoin.","data":[4,1,2,1,4,9,7,1,2,1,3,1,0,0,2,0,0,5,3,2,2,41,3,5,3,0,3,1,1,1,2,2,7,7,2,1,2,1,0,0,2,5,8,1,1,12,1,3,0,2,1,0,1,1,6]},{"label":"Art","topics":"art,artists,making,life,thread","description":"The key topic discussed in the messages from twitter is art, specifically different forms of art such as tulle art, digital art, wood burning art, and the process of art. The messages also mention artists such as Benjamin Shine, Ngo Van Sac, and dy_yifanzhang. Additionally, there is a mention of a meme contest related to art and a specific art exhibition called \"Tranquil Resilience\" for ArtgumiDAO. The messages also touch upon the theme of art as a career and the success of an eBay business compared to an art career.","data":[0,3,35,4,0,1,4,3,1,1,2,6,1,5,2,4,1,11,4,7,2,2,3,1,1,2,3,1,2,4,4,0,6,3,5,7,1,1,4,0,4,1,3,2,2,2,1,2,1,0,2,1,2,2,3]},{"label":"Dip","topics":"dip,short,long,bull,buy","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n1. Market sentiment and price action analysis\n2. Strategies for trading in the crypto market, such as identifying momentum and setting targets\n3. The importance of risk management and staying in the game after selling a stock\n4. The volatility of the Bitcoin bull market and the need to hodl through it\n5. Long positions in Bitcoin and potential target levels\n6. The use of technical analysis and chart patterns in trading\n7. The impact of macroeconomic factors on crypto trading\n8. The role of market makers in influencing price movements\n9. The need for patience and discipline in trading\n10. The potential risks and rewards of investing in cryptocurrencies.","data":[2,1,2,3,3,0,0,18,2,3,4,3,1,8,3,2,2,4,2,7,5,6,3,4,0,0,5,0,2,3,5,2,2,2,0,2,3,1,4,4,2,4,7,6,1,6,9,4,2,4,0,0,3,0,1]},{"label":"ETH 9th birthday","topics":"happy,ethereum,9th,years,decade","description":"The key topics discussed in the messages from twitter about Ethereum include:\n- Celebrating Ethereum's birthday\n- Recognition of Ethereum's achievements and growth\n- Mention of key figures like Vitalik Buterin\n- Discussion of Ethereum's future and focus on building applications\n- Comparison with other blockchain projects like Ergo Platform\n- Personal experiences and career growth related to Ethereum\n- Mention of specific Ethereum-related projects like Polymarket and Ethverse\n- Mention of events like EDCON2024 and BitwiseInvest NYSE closing bell event\n- Mention of Ethereum-related artwork and community activities\n\nOverall, the messages reflect a positive sentiment towards Ethereum and its impact on the crypto industry.","data":[4,0,0,3,0,1,0,0,10,4,6,0,3,4,2,4,15,2,2,2,0,0,43,1,1,0,5,4,2,1,0,1,1,0,1,0,0,2,2,0,1,0,2,1,0,1,2,2,13,1,1,0,0,1,11]},{"label":"NEIRO","topics":"neiro,doge,dog,shib,listing","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- Discussion about the cryptocurrency $NEIRO and its potential for growth\n- Comparison of $NEIRO to other popular cryptocurrencies like $DOGE\n- Speculation about $NEIRO reaching a market cap of $500m-$1b\n- Announcement of $NEIRO being listed on a new exchange\n- Mention of $NEIRO draining liquidity from other memecoins\n- Introduction of new cryptocurrencies like $COLON and their relation to existing ones like $DOGE\n- Launch of new meme coins like Poo Chi (SIR) and their upcoming listing on LATOKEN\n\nOverall, the messages reflect a mix of excitement, speculation, and analysis surrounding various cryptocurrencies in the market.","data":[1,2,1,1,0,2,0,3,4,1,5,0,0,1,2,0,1,2,2,3,3,1,2,3,0,2,1,1,6,5,3,3,2,7,1,0,2,1,0,2,0,1,2,3,2,1,4,1,4,5,1,2,3,2,3]},{"label":"Senator Lummis & Bitcoin strategic reserve","topics":"lummis,reserve,strategic,purchase,debt","description":"The key topic being discussed on Twitter is the proposal by US Senator Cynthia Lummis to establish a strategic Bitcoin reserve for the United States. The proposal involves buying 1 million bitcoins over 5 years to potentially reduce the nation's debt. The initiative would not create new debt and would be funded by reallocating existing funds within the Federal Reserve System and Treasury Department. The announcement has generated both support and criticism, with some seeing it as a game-changer and others questioning the motives behind it. Senator Lummis' plan has sparked conversations about the potential impact on the crypto industry and the broader financial landscape.","data":[0,7,1,0,2,2,8,1,1,0,2,2,0,0,3,3,0,0,0,0,0,0,1,2,3,9,2,1,3,2,0,0,1,2,3,0,2,20,2,0,1,2,1,0,2,1,0,1,0,0,0,0,1,1,2]},{"label":"Bitcoin Nashville","topics":"nashville,conference,speakers,bitcoin,bitcoin2024","description":"The messages from twitter are discussing the Bitcoin Nashville conference, with mentions of influencers, speeches, security measures, and future conferences. There is also mention of BlackRock's interest in Bitcoin and the importance of hard money backing for long duration bond issuance. Overall, the tone seems to be skeptical about the conference and its use of the Bitcoin brand.","data":[0,0,2,1,3,3,1,1,0,2,4,0,1,1,1,0,1,2,3,0,4,2,5,1,1,2,2,0,2,3,2,2,7,3,1,3,4,1,2,1,2,2,2,2,4,3,0,0,0,0,4,0,1,0,1]},{"label":"Russia's crypto regulation","topics":"russia,international,payments,passed,law","description":"The key topics discussed in the messages from twitter related to the crypto industry are:\n1. Kidnapping and murder of a Bitcoiner in Kyiv, Ukraine for BTC\n2. Russia's acceleration of crypto regulation amidst international sanctions\n3. Legalization of cryptocurrency for cross-border payments in Russia\n4. Adoption of a law legalizing Bitcoin mining in Russia to bypass sanctions\n5. Biggest prisoner exchange between the U.S. and Russia since the Cold War\n\nThese topics highlight the intersection of crime, regulation, and international relations in the crypto industry.","data":[4,1,1,1,0,1,5,1,0,1,1,1,0,0,2,4,1,2,0,1,4,0,0,0,1,1,2,6,2,0,4,0,3,2,1,3,1,2,1,1,2,10,1,1,2,0,1,1,0,1,2,0,1,2,3]},{"label":"RFK Jr BTC pledge","topics":"jr,robert,rfk,candidate,order","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- US Presidential candidate RFK Jr pledging to buy 550 Bitcoin daily to build a reserve of 4 million BTC if elected president\n- RFK Jr putting most of his wealth into Bitcoin and expressing full commitment to the cryptocurrency\n- RFK Jr proposing an executive order for the US Treasury to purchase 550 Bitcoin daily until a reserve of at least 4 million Bitcoins is built\n- Speculation about the impact of RFK Jr's Bitcoin strategy on the US economy and American life\n- Comparisons between RFK Jr's Bitcoin stance and that of other political figures, such as Trump\n- Discussion about the potential implications of the US government owning 4 million Bitcoins\n- RFK Jr's proposal for unreportable transactions between the dollar and Bitcoin, not subject to tax\n- The excitement and speculation surrounding the potential adoption of Bitcoin by the next US President, whether it be Trump, Harris, or Kennedy\n\nOverall, the messages reflect a mix of enthusiasm, speculation, and analysis regarding the intersection of politics and the crypto industry, particularly in relation to Bitcoin.","data":[1,2,0,0,0,1,6,5,1,1,0,3,0,0,3,2,3,2,0,1,1,1,0,1,4,1,0,0,0,0,0,0,0,1,1,1,2,17,1,0,1,7,1,1,1,1,0,1,0,0,0,0,7,4,1]},{"label":"XRP","topics":"xrp,ripple,sec,amid,altcoins","description":"The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- $XRP predictions and price movements\n- Ripple vs SEC lawsuit updates\n- XRP price analysis and potential surge predictions\n- Introduction of new indicators for trading\n- XRP whale selling spree and resistance levels\n- Relationship between XRP and XLM price movements\n- Speculation about regulatory impacts on XRP\n- Top trade of the day involving XRP on Coinbase\n- Overall market volatility and speculation about future trends in the crypto industry.","data":[0,2,0,0,0,0,2,0,1,1,1,1,1,2,1,4,0,1,1,0,3,3,0,4,0,2,1,3,0,1,1,2,1,0,2,2,4,13,2,0,4,0,1,6,0,0,1,1,2,0,0,1,4,0,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-30.ts b/priv/repo/major_topics_seed/data-30.ts deleted file mode 100644 index 53813c43d9..0000000000 --- a/priv/repo/major_topics_seed/data-30.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '25.07.24', - '26.07.24', - '26.07.24', - '26.07.24', - '26.07.24', - '26.07.24', - '26.07.24', - '26.07.24', - '27.07.24', - '27.07.24', - '27.07.24', - '27.07.24', - '27.07.24', - '27.07.24', - '27.07.24', - '27.07.24', - '28.07.24', - '28.07.24', - '28.07.24', - '28.07.24', - '28.07.24', - '28.07.24', - '28.07.24', - '28.07.24', - '29.07.24', - '29.07.24', - '29.07.24', - '29.07.24', - '29.07.24', - '29.07.24', - '29.07.24', - '29.07.24', - '30.07.24', - '30.07.24', - '30.07.24', - '30.07.24', - '30.07.24', - '30.07.24', - '30.07.24', - '30.07.24', - '31.07.24', - '31.07.24', - '31.07.24', - '31.07.24', - '31.07.24', - '31.07.24', - '31.07.24', - '31.07.24', - '01.08.24', - '01.08.24', - '01.08.24', - '01.08.24', - '01.08.24', - '01.08.24', - '01.08.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,price,close,range,70k', - description: - 'Based on the messages from Twitter, it seems that there is a lot of discussion about the price movements of Bitcoin ($BTC). Analysts are predicting massive growth for Bitcoin, with some suggesting that it could reach $70,000 or even higher. There is also talk about the monthly closing of Bitcoin above $60,000 for the 6th consecutive month, indicating strength in the market.\n\nAdditionally, there are mentions of technical analysis indicators such as EMAs and Bollinger Bands, as well as discussions about market manipulation and institutional involvement in the market. Some users are expressing confidence in the upward movement of Bitcoin, while others are cautioning about potential downside risks.\n\nOverall, the sentiment in the crypto community on Twitter seems to be bullish on Bitcoin, with expectations of further price increases in the near future.', - data: [ - 13, 10, 10, 30, 98, 95, 32, 49, 7, 23, 10, 14, 24, 9, 16, 12, 4, 27, 13, 15, 17, 7, 11, 53, - 20, 11, 6, 11, 18, 35, 12, 13, 16, 15, 12, 8, 34, 29, 28, 20, 22, 22, 20, 20, 11, 22, 18, - 16, 30, 13, 7, 21, 16, 30, 13, - ], - }, - { - label: 'AI', - topics: 'ai,google,intelligence,meta,models', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n- The impact of AI on water usage and the need for abbreviating generative AI\n- The usefulness of Brave\'s AI assistant Leo\n- The potential of AI agents to close skill gaps and promote equality\n- The importance of style references and personalization in AI\n- The market demand for open-source AI and the speed of the OpenAI API\n- The naming of AI assistants like Amazon\'s "Rufus"\n- The features of decentralized chat applications like OpenChat on the Internet Computer blockchain\n- The use of AI in measuring return on investment\n- The development of AI assistants in the crypto world, such as Crush AI\n- The listing and trading of the $CHAT token on Bitrue and its connection to OpenChat on the Internet Computer blockchain.', - data: [ - 52, 22, 9, 10, 0, 0, 4, 5, 6, 12, 6, 10, 3, 9, 8, 6, 5, 9, 9, 12, 8, 9, 6, 4, 6, 14, 10, 8, - 6, 6, 7, 19, 12, 11, 17, 12, 8, 12, 9, 8, 14, 12, 6, 7, 10, 5, 17, 8, 4, 6, 8, 13, 11, 7, 6, - ], - }, - { - label: 'Bitcoin', - topics: 'bitcoin,money,freedom,fiat,world', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- The importance of self-custody of digital private property and the fundamental right it represents.\n- The potential for corporations and sovereign nations to buy and hold Bitcoin as a hedge against economic storms.\n- The belief that Bitcoin will break the backs of central bankers and provide a better world of peace, truth, freedom, hope, and abundance.\n- The idea that the current financial system is unsustainable and needs to collapse for a better future to emerge.\n- The debate about whether government buying Bitcoin will actually increase the value of the network or just the unit of account.\n- The concept of physical Bitcoins and their comparison to bronze coins.\n- The panic selling behavior of individuals during their first cycle of Bitcoin ownership.\n- The need for individuals and big groups alike to be able to carry value across time through Bitcoin.\n- The potential for Bitcoin to resist the control of banks and provide financial freedom.\n- The call for individuals to opt out of the traditional financial system with Bitcoin.', - data: [ - 6, 2, 6, 8, 48, 19, 3, 7, 7, 5, 6, 9, 5, 11, 2, 5, 2, 6, 13, 8, 3, 11, 4, 4, 6, 10, 2, 9, 5, - 9, 9, 10, 8, 3, 11, 8, 7, 6, 7, 7, 11, 7, 14, 11, 11, 9, 2, 6, 8, 2, 12, 4, 9, 9, 8, - ], - }, - { - label: 'CPI', - topics: 'rate,inflation,cut,fed,rates', - description: - 'Based on the messages from twitter, the key topics currently being discussed in the crypto industry are:\n\n1. Federal Reserve issues FOMC statement: The Fed is considering a rate cut in September if inflation moves down, growth remains strong, and employment is good. There are downside risks to employment that need to be weighed.\n\n2. India\'s export ban on rice: India has implemented duties and tax-free importation of rice and other essential food items to help reduce high food inflation, threatening food security in markets like Nigeria.\n\n3. Euro zone inflation edges up: Euro zone inflation has increased to 2.6% year-on-year, posing a "difficult print" for the ECB.\n\n4. Bank of Japan hikes interest rates: The Bank of Japan has raised interest rates to 0.25%, causing jitters across the crypto market, equities, and the Yen.\n\n5. Bank of England interest rate decision: The BoE is facing a dilemma as headline inflation fell to 2%, and will make its interest rate decision soon.\n\nOverall, the discussions revolve around central bank decisions, inflation rates, and their impact on the global economy and crypto market.', - data: [ - 7, 5, 11, 2, 1, 0, 16, 1, 6, 4, 5, 9, 21, 6, 6, 15, 6, 16, 12, 4, 5, 2, 6, 23, 24, 10, 7, 4, - 9, 6, 38, 2, 4, 5, 6, 8, 9, 5, 17, 16, 7, 5, 5, 9, 5, 8, 4, 3, 6, 5, 2, 4, 2, 4, 10, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The key topics currently discussed in the crypto community on social media include meme tokens, meme coins, influencers earning low income, upcoming meme coin launches, potential meme coin investments, and partnerships between animated cat brands and meme coins. The community is excited about the potential of meme coins and the opportunity to make fast money. Some specific meme tokens mentioned are $AIOZ, $WELSH, $STX, $BTC, $bober, $BRETT, $PEPE, $WOLF, $FLOKI, $SPURDO, $SHIB, $PEIPEI, $NPC, and $FROG. There is also discussion about the new META token $FROGGY and the partnership between Simonscat and RealFlokiInu for a memecoin launch. Overall, the community is enthusiastic about the meme coin market and the potential for significant gains.', - data: [ - 7, 6, 7, 3, 2, 2, 1, 13, 8, 6, 4, 6, 5, 8, 9, 3, 2, 11, 4, 14, 6, 10, 8, 10, 6, 6, 7, 9, 2, - 6, 37, 29, 5, 10, 5, 11, 6, 1, 3, 2, 6, 5, 5, 5, 2, 6, 7, 8, 4, 5, 9, 2, 3, 8, 8, - ], - }, - { - label: 'ETFs', - topics: 'etfs,etf,net,grayscale,spot', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry are Ethereum ETFs, Bitcoin ETFs, capital rotation from BTC to ETH in ETFs, Grayscale Ethereum Trust, spot Ethereum ETF outflows, complexity of Ethereum and the SEC, Ethereum ETF launch driving inflows, Grayscale offloading BTC, FOMC meeting impact on ETF approval, ETF trading volume comparison between Ethereum and Bitcoin, Grayscale burning through their ETH stack, Mt. Gox supply hitting the market, and Crypto ETF flow analysis.', - data: [ - 6, 2, 5, 6, 13, 11, 7, 5, 3, 1, 4, 1, 14, 6, 3, 32, 48, 4, 12, 0, 3, 9, 3, 7, 13, 9, 2, 9, - 1, 2, 2, 3, 9, 5, 8, 1, 5, 1, 3, 3, 3, 3, 12, 6, 38, 4, 3, 2, 9, 1, 0, 1, 3, 6, 6, - ], - }, - { - label: 'Kamala Harris', - topics: 'kamala,harris,election,party,vote', - description: - "The messages from Twitter suggest that there is a lot of discussion surrounding the crypto industry and its relationship with political figures, particularly Kamala Harris. There are mentions of potential shifts in Silicon Valley due to the change from Biden to Harris, as well as calls for Harris to distance herself from certain organizations. Additionally, there are discussions about the Democratic Party's stance on Bitcoin and cryptocurrency, with some suggesting that there is a growing wing within the party that wants to be more pro-crypto. Overall, it seems that there is a lot of interest and debate within the crypto community about political figures and their impact on the industry.", - data: [ - 5, 6, 2, 5, 5, 2, 2, 2, 10, 5, 4, 7, 7, 11, 2, 20, 1, 2, 5, 5, 14, 7, 5, 2, 4, 4, 8, 6, 9, - 8, 5, 2, 11, 1, 13, 7, 20, 8, 6, 9, 8, 6, 4, 1, 4, 8, 8, 16, 5, 5, 12, 5, 15, 7, 4, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,ethereum,eth,fees', - description: - "The key topics currently being discussed on Twitter regarding Solana include:\n- Solana's recent price dip and investors buying more during the dip\n- Comparison between Solana and Ethereum, with Solana outshining Ethereum in terms of trading volume\n- Solana's market cap being 1/5th of Ethereum's\n- Analyst predictions on Solana's future price trajectory\n- Solana ecosystem funding rebounding after a bear market\n- Solana's performance in 2024, with over 166% gains from the yearly low\n- Solana's meme token launch platform surpassing Ethereum in daily revenue\n- Solana's potential for growth and future market cap increase\n- Solana ETF spot filing potentially leading to a price increase\n- Solana projects raising significant funding in Q2, reaching a two-year high\n\nOverall, the sentiment on Twitter seems to be bullish on Solana, with many investors optimistic about its future potential and growth.", - data: [ - 5, 8, 7, 6, 1, 4, 1, 5, 3, 4, 2, 9, 3, 3, 4, 8, 5, 3, 4, 3, 1, 10, 4, 4, 6, 8, 4, 8, 3, 3, - 4, 4, 5, 3, 15, 10, 6, 13, 2, 5, 7, 7, 6, 28, 5, 3, 10, 8, 8, 5, 2, 3, 2, 10, 2, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,nfts,baby,floor', - description: - "The key topics currently discussed in the messages from Twitter about the crypto industry, specifically Dogecoin, include:\n- Dogecoin holders being deep thinkers and passionate about the cryptocurrency\n- Dogecoin being referred to as a religion by some individuals\n- Speculation about Dogecoin's price dropping below ten cents for potential investment opportunities\n- Excitement about the potential for Dogecoin to increase in value\n- Mention of NASA's Perseverance rover potentially finding evidence of ancient microbial activity on Mars\n- Promotion of a pet-related product with a discount code\n- Reference to the number 69 in relation to Dogecoin volume on a trading platform\n\nOverall, the messages reflect a mix of humor, speculation, excitement, and promotion within the crypto community, particularly focused on Dogecoin and potential developments in the industry.", - data: [ - 2, 2, 4, 2, 0, 0, 2, 6, 1, 4, 4, 0, 1, 1, 37, 5, 3, 5, 8, 4, 9, 3, 2, 1, 2, 5, 5, 11, 3, 4, - 8, 4, 4, 3, 1, 7, 4, 1, 3, 2, 3, 3, 9, 5, 3, 3, 2, 5, 1, 0, 3, 0, 1, 2, 3, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media include gaming meta, Forgotten Runes Spritesheets, Wanderers game launch on Epic games, Hollywood video game performers planning to strike, investing in gaming, AI and Blockchain convergence in gaming, Otherworld Official metaverse, Skullish game, and Little Lemons x Nifty Game Night. There is also a mention of playing K-K more aggressively than A-A in poker. The community is encouraged to check out various gaming-related events, launches, and opportunities for investment in the gaming industry.', - data: [ - 6, 1, 5, 5, 0, 0, 4, 3, 5, 1, 2, 2, 3, 4, 2, 4, 3, 4, 2, 37, 5, 4, 0, 3, 5, 1, 4, 9, 3, 2, - 0, 4, 0, 3, 9, 1, 12, 1, 8, 2, 3, 1, 2, 3, 2, 3, 5, 1, 1, 0, 2, 2, 8, 5, 5, - ], - }, - { - label: 'US Government 2B BTC movement', - topics: 'government,reserve,strategic,governments,govt', - description: - "The key topic currently being discussed on Twitter is the US government's movement of a large amount of Bitcoin, totaling $2 billion, to an unknown wallet. This has sparked speculation and debate among users, with some suggesting that Bitcoin is the only option for the US to pay off its national debt. Others are questioning the motives behind the government's actions and the implications for the cryptocurrency market. Overall, there is a mix of excitement, skepticism, and curiosity surrounding the US government's involvement with Bitcoin.", - data: [ - 4, 1, 2, 1, 4, 9, 7, 1, 2, 1, 3, 1, 0, 0, 2, 0, 0, 5, 3, 2, 2, 41, 3, 5, 3, 0, 3, 1, 1, 1, - 2, 2, 7, 7, 2, 1, 2, 1, 0, 0, 2, 5, 8, 1, 1, 12, 1, 3, 0, 2, 1, 0, 1, 1, 6, - ], - }, - { - label: 'Art', - topics: 'art,artists,making,life,thread', - description: - 'The key topic discussed in the messages from twitter is art, specifically different forms of art such as tulle art, digital art, wood burning art, and the process of art. The messages also mention artists such as Benjamin Shine, Ngo Van Sac, and dy_yifanzhang. Additionally, there is a mention of a meme contest related to art and a specific art exhibition called "Tranquil Resilience" for ArtgumiDAO. The messages also touch upon the theme of art as a career and the success of an eBay business compared to an art career.', - data: [ - 0, 3, 35, 4, 0, 1, 4, 3, 1, 1, 2, 6, 1, 5, 2, 4, 1, 11, 4, 7, 2, 2, 3, 1, 1, 2, 3, 1, 2, 4, - 4, 0, 6, 3, 5, 7, 1, 1, 4, 0, 4, 1, 3, 2, 2, 2, 1, 2, 1, 0, 2, 1, 2, 2, 3, - ], - }, - { - label: 'Dip', - topics: 'dip,short,long,bull,buy', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n1. Market sentiment and price action analysis\n2. Strategies for trading in the crypto market, such as identifying momentum and setting targets\n3. The importance of risk management and staying in the game after selling a stock\n4. The volatility of the Bitcoin bull market and the need to hodl through it\n5. Long positions in Bitcoin and potential target levels\n6. The use of technical analysis and chart patterns in trading\n7. The impact of macroeconomic factors on crypto trading\n8. The role of market makers in influencing price movements\n9. The need for patience and discipline in trading\n10. The potential risks and rewards of investing in cryptocurrencies.', - data: [ - 2, 1, 2, 3, 3, 0, 0, 18, 2, 3, 4, 3, 1, 8, 3, 2, 2, 4, 2, 7, 5, 6, 3, 4, 0, 0, 5, 0, 2, 3, - 5, 2, 2, 2, 0, 2, 3, 1, 4, 4, 2, 4, 7, 6, 1, 6, 9, 4, 2, 4, 0, 0, 3, 0, 1, - ], - }, - { - label: 'ETH 9th birthday', - topics: 'happy,ethereum,9th,years,decade', - description: - "The key topics discussed in the messages from twitter about Ethereum include:\n- Celebrating Ethereum's birthday\n- Recognition of Ethereum's achievements and growth\n- Mention of key figures like Vitalik Buterin\n- Discussion of Ethereum's future and focus on building applications\n- Comparison with other blockchain projects like Ergo Platform\n- Personal experiences and career growth related to Ethereum\n- Mention of specific Ethereum-related projects like Polymarket and Ethverse\n- Mention of events like EDCON2024 and BitwiseInvest NYSE closing bell event\n- Mention of Ethereum-related artwork and community activities\n\nOverall, the messages reflect a positive sentiment towards Ethereum and its impact on the crypto industry.", - data: [ - 4, 0, 0, 3, 0, 1, 0, 0, 10, 4, 6, 0, 3, 4, 2, 4, 15, 2, 2, 2, 0, 0, 43, 1, 1, 0, 5, 4, 2, 1, - 0, 1, 1, 0, 1, 0, 0, 2, 2, 0, 1, 0, 2, 1, 0, 1, 2, 2, 13, 1, 1, 0, 0, 1, 11, - ], - }, - { - label: 'NEIRO', - topics: 'neiro,doge,dog,shib,listing', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n- Discussion about the cryptocurrency $NEIRO and its potential for growth\n- Comparison of $NEIRO to other popular cryptocurrencies like $DOGE\n- Speculation about $NEIRO reaching a market cap of $500m-$1b\n- Announcement of $NEIRO being listed on a new exchange\n- Mention of $NEIRO draining liquidity from other memecoins\n- Introduction of new cryptocurrencies like $COLON and their relation to existing ones like $DOGE\n- Launch of new meme coins like Poo Chi (SIR) and their upcoming listing on LATOKEN\n\nOverall, the messages reflect a mix of excitement, speculation, and analysis surrounding various cryptocurrencies in the market.', - data: [ - 1, 2, 1, 1, 0, 2, 0, 3, 4, 1, 5, 0, 0, 1, 2, 0, 1, 2, 2, 3, 3, 1, 2, 3, 0, 2, 1, 1, 6, 5, 3, - 3, 2, 7, 1, 0, 2, 1, 0, 2, 0, 1, 2, 3, 2, 1, 4, 1, 4, 5, 1, 2, 3, 2, 3, - ], - }, - { - label: 'Senator Lummis & Bitcoin strategic reserve', - topics: 'lummis,reserve,strategic,purchase,debt', - description: - "The key topic being discussed on Twitter is the proposal by US Senator Cynthia Lummis to establish a strategic Bitcoin reserve for the United States. The proposal involves buying 1 million bitcoins over 5 years to potentially reduce the nation's debt. The initiative would not create new debt and would be funded by reallocating existing funds within the Federal Reserve System and Treasury Department. The announcement has generated both support and criticism, with some seeing it as a game-changer and others questioning the motives behind it. Senator Lummis' plan has sparked conversations about the potential impact on the crypto industry and the broader financial landscape.", - data: [ - 0, 7, 1, 0, 2, 2, 8, 1, 1, 0, 2, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 1, 2, 3, 9, 2, 1, 3, 2, 0, - 0, 1, 2, 3, 0, 2, 20, 2, 0, 1, 2, 1, 0, 2, 1, 0, 1, 0, 0, 0, 0, 1, 1, 2, - ], - }, - { - label: 'Bitcoin Nashville', - topics: 'nashville,conference,speakers,bitcoin,bitcoin2024', - description: - "The messages from twitter are discussing the Bitcoin Nashville conference, with mentions of influencers, speeches, security measures, and future conferences. There is also mention of BlackRock's interest in Bitcoin and the importance of hard money backing for long duration bond issuance. Overall, the tone seems to be skeptical about the conference and its use of the Bitcoin brand.", - data: [ - 0, 0, 2, 1, 3, 3, 1, 1, 0, 2, 4, 0, 1, 1, 1, 0, 1, 2, 3, 0, 4, 2, 5, 1, 1, 2, 2, 0, 2, 3, 2, - 2, 7, 3, 1, 3, 4, 1, 2, 1, 2, 2, 2, 2, 4, 3, 0, 0, 0, 0, 4, 0, 1, 0, 1, - ], - }, - { - label: "Russia's crypto regulation", - topics: 'russia,international,payments,passed,law', - description: - "The key topics discussed in the messages from twitter related to the crypto industry are:\n1. Kidnapping and murder of a Bitcoiner in Kyiv, Ukraine for BTC\n2. Russia's acceleration of crypto regulation amidst international sanctions\n3. Legalization of cryptocurrency for cross-border payments in Russia\n4. Adoption of a law legalizing Bitcoin mining in Russia to bypass sanctions\n5. Biggest prisoner exchange between the U.S. and Russia since the Cold War\n\nThese topics highlight the intersection of crime, regulation, and international relations in the crypto industry.", - data: [ - 4, 1, 1, 1, 0, 1, 5, 1, 0, 1, 1, 1, 0, 0, 2, 4, 1, 2, 0, 1, 4, 0, 0, 0, 1, 1, 2, 6, 2, 0, 4, - 0, 3, 2, 1, 3, 1, 2, 1, 1, 2, 10, 1, 1, 2, 0, 1, 1, 0, 1, 2, 0, 1, 2, 3, - ], - }, - { - label: 'RFK Jr BTC pledge', - topics: 'jr,robert,rfk,candidate,order', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n- US Presidential candidate RFK Jr pledging to buy 550 Bitcoin daily to build a reserve of 4 million BTC if elected president\n- RFK Jr putting most of his wealth into Bitcoin and expressing full commitment to the cryptocurrency\n- RFK Jr proposing an executive order for the US Treasury to purchase 550 Bitcoin daily until a reserve of at least 4 million Bitcoins is built\n- Speculation about the impact of RFK Jr's Bitcoin strategy on the US economy and American life\n- Comparisons between RFK Jr's Bitcoin stance and that of other political figures, such as Trump\n- Discussion about the potential implications of the US government owning 4 million Bitcoins\n- RFK Jr's proposal for unreportable transactions between the dollar and Bitcoin, not subject to tax\n- The excitement and speculation surrounding the potential adoption of Bitcoin by the next US President, whether it be Trump, Harris, or Kennedy\n\nOverall, the messages reflect a mix of enthusiasm, speculation, and analysis regarding the intersection of politics and the crypto industry, particularly in relation to Bitcoin.", - data: [ - 1, 2, 0, 0, 0, 1, 6, 5, 1, 1, 0, 3, 0, 0, 3, 2, 3, 2, 0, 1, 1, 1, 0, 1, 4, 1, 0, 0, 0, 0, 0, - 0, 0, 1, 1, 1, 2, 17, 1, 0, 1, 7, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 7, 4, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,amid,altcoins', - description: - 'The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- $XRP predictions and price movements\n- Ripple vs SEC lawsuit updates\n- XRP price analysis and potential surge predictions\n- Introduction of new indicators for trading\n- XRP whale selling spree and resistance levels\n- Relationship between XRP and XLM price movements\n- Speculation about regulatory impacts on XRP\n- Top trade of the day involving XRP on Coinbase\n- Overall market volatility and speculation about future trends in the crypto industry.', - data: [ - 0, 2, 0, 0, 0, 0, 2, 0, 1, 1, 1, 1, 1, 2, 1, 4, 0, 1, 1, 0, 3, 3, 0, 4, 0, 2, 1, 3, 0, 1, 1, - 2, 1, 0, 2, 2, 4, 13, 2, 0, 4, 0, 1, 6, 0, 0, 1, 1, 2, 0, 0, 1, 4, 0, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-31.json b/priv/repo/major_topics_seed/data-31.json deleted file mode 100644 index 241051a583..0000000000 --- a/priv/repo/major_topics_seed/data-31.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["01.08.24","02.08.24","02.08.24","02.08.24","02.08.24","02.08.24","02.08.24","02.08.24","03.08.24","03.08.24","03.08.24","03.08.24","03.08.24","03.08.24","03.08.24","03.08.24","04.08.24","04.08.24","04.08.24","04.08.24","04.08.24","04.08.24","04.08.24","04.08.24","05.08.24","05.08.24","05.08.24","05.08.24","05.08.24","05.08.24","05.08.24","05.08.24","06.08.24","06.08.24","06.08.24","06.08.24","06.08.24","06.08.24","06.08.24","06.08.24","07.08.24","07.08.24","07.08.24","07.08.24","07.08.24","07.08.24","07.08.24","07.08.24","08.08.24","08.08.24","08.08.24","08.08.24","08.08.24","08.08.24","08.08.24"],"datasets":[{"label":"BTC","topics":"fiat,bitcoin,money,value,asset","description":"The messages from Twitter discuss various aspects of the crypto industry, particularly focusing on Bitcoin. Some key topics mentioned include:\n\n1. Volatility: The message highlights the volatility of fiat currency compared to Bitcoin, suggesting that Bitcoin is a more stable investment option.\n2. Flight to safety: There is speculation about whether people are buying Bitcoin as a safe haven asset during uncertain times.\n3. Funding and competition: The message mentions a battle between different camps within the Bitcoin community, suggesting internal competition.\n4. Integration into finance system: The difficulty of integrating Bitcoin into the traditional finance system is discussed, with mention of monopolies keeping out competitors.\n5. Maturity as a safe haven asset: There is a debate about whether Bitcoin, despite being 15 years old, is still too immature to be considered a safe haven asset.\n6. Loyalty and education: The importance of staying informed and committed to Bitcoin as an investment is emphasized, with a warning against being a \"tourist\" in the market.\n7. Establishment support: The message suggests that the establishment is endorsing Bitcoin as a store of value but remaining silent on its use as a medium of exchange.\n8. Privacy and scalability: The discussion touches on the importance of optional privacy and scalability features in cryptocurrencies like Litecoin and Bitcoin.\n9. Michael Saylor's strategy: The message references Michael Saylor's approach to investing in Bitcoin as a long-term strategy, comparing it to buying real estate in Manhattan.\n10. Cold storage capital: There is mention of using Bitcoin as a way to store value and protect against the devaluation of fiat currency.\n\nOverall, the messages reflect a diverse range of opinions and discussions within the crypto community, with a focus on Bitcoin's role in the financial landscape.","data":[22,7,25,48,75,78,10,25,13,26,17,21,20,19,8,11,6,19,33,20,23,21,22,25,10,28,11,25,27,24,21,14,15,16,16,27,29,13,29,19,27,38,26,24,25,28,21,33,13,18,27,20,12,23,22]},{"label":"ETH Price","topics":"eth,ethereum,price,ethereums,level","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum's price fluctuations, with mentions of ETH dropping below $3k and speculation on whether it will go even lower\n- Bullish projections for Ethereum, with some users predicting a price of $50,000 and others celebrating Ethereum's journey over the past decade\n- Analysis of Ethereum's technical charts, including potential trend reversals and rejection of key moving averages\n- Criticism of Ethereum's value accrual and comparisons to other cryptocurrencies like Solana\n- Recent price movements for Ethereum, including a bounce back from a crash and a 10% price surge\n- Mention of Ethereum Name Service (ENS) as a top performer and the potential for Wall Street to get involved with ETH ETFs\n\nOverall, sentiment on Ethereum appears mixed, with some users optimistic about its future potential while others express skepticism about its value proposition.","data":[8,13,8,6,0,1,9,11,15,9,13,8,11,13,7,13,155,16,14,9,10,11,9,11,15,5,2,9,10,18,8,7,5,6,10,8,9,17,9,7,4,7,19,14,5,11,12,20,12,9,6,11,12,7,12]},{"label":"SOL","topics":"sol,solana,eth,alltime,ethereum","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the performance of different cryptocurrencies like Solana ($SOL) and Ethereum (ETH), the potential for a Trump pump-and-dump token launch on Solana, the comparison between Solana and Ethereum in terms of market performance, the bullish outlook on Solana by crypto expert Chris Burniske, and the trading opportunities and strategies for Solana. Additionally, there is discussion about meme coins and their impact on the market, as well as the potential for new projects like Boden to gain traction in the crypto space. Overall, the sentiment towards Solana appears to be positive, with many users expressing confidence in its long-term potential and performance compared to other cryptocurrencies.","data":[6,11,9,3,0,1,5,3,12,9,10,13,9,11,2,12,12,4,4,8,7,7,9,12,7,9,4,14,9,13,18,7,7,7,4,16,7,11,9,16,7,6,9,12,64,10,12,16,9,9,2,5,7,11,3]},{"label":"Japan Market Crash ","topics":"japan,yen,japanese,carry,nikkei","description":"The messages from Twitter discuss the recent market crash in Japan, with the Nikkei surging and then crashing, causing chaos in the markets. The Bank of Japan's decision to hike interest rates is highlighted as a key event triggering the crash. The messages also mention the impact on crypto markets, with Bitcoin and Ethereum sinking to six-month lows. There is speculation about the reasons behind the crash, including concerns about the Federal Reserve's policy decisions and bad market technicals. Despite the crash, there is optimism about a potential rebound, with the Topix index rebounding and Bitcoin eyeing $60k. The messages also touch on the larger economic implications of the crash, comparing it to Black Monday in 1987 and discussing key economic events for the week. Overall, the messages reflect a mix of concern, speculation, and optimism about the market situation in Japan and its impact on the global economy.","data":[12,4,6,11,2,0,27,5,13,1,3,2,8,6,3,10,6,5,10,6,5,12,7,8,2,4,20,4,4,5,12,29,2,5,7,6,7,3,5,8,11,7,7,3,8,16,2,4,7,6,7,10,7,13,18]},{"label":"GameFi","topics":"game,gaming,games,play,web3","description":"The key topics discussed in the messages from twitter are related to gaming in the crypto industry, specifically focusing on Web3 gaming, investment opportunities in gaming studios, the growth of the gaming industry, and the integration of web2 gamers into the web3 world. Other topics include the launch of new games, such as Champions and PuzzleCrusher, and the promotion of gaming communities and events. Additionally, there is mention of a gaming marketplace offering credits and a summer sale for poker coaching. The messages also highlight the success of certain gaming brands and the excitement surrounding upcoming game releases.","data":[5,5,7,3,0,2,2,4,9,8,6,8,6,5,7,7,3,7,7,5,46,1,6,5,11,3,9,9,9,5,3,2,6,17,2,3,15,1,3,7,5,1,1,4,5,5,9,3,16,3,5,4,4,6,8]},{"label":"Art","topics":"art,artist,artists,piece,work","description":"The key topics currently discussed in the crypto industry on social media include:\n1. Art and creativity: Discussions about different art forms, artists, and the importance of creating art for oneself or a higher purpose.\n2. NFTs (Non-Fungible Tokens): Mention of NFT NYC event in 2023 and the creation of unique digital art pieces like \"Flamebourne Genome\" by Joe Mangrum.\n3. AI technology: Use of AI to generate antique maps for role play, fantasy books, and wallpapers.\n4. Innovative designs: Mention of a transparent toilet design that showcases the efficiency of modern design.\n5. Courage and vulnerability in art: Belief that art, in its purest form, is an act of courage and vulnerability leading to emotional freedom.\n6. Artist features: Profiles of polyhedric artists like Eduardi Tsokolakyan who perform thread art, multiple simultaneous drawings, and cut up portraits.\n7. Art sales and self-sustainability: Discussion on the importance of sales for self-sustainability in art, but also the different metrics for measuring artistic progression.","data":[4,19,48,6,0,1,3,2,4,5,6,10,3,11,5,2,3,5,7,2,5,6,10,3,8,4,3,4,1,2,7,2,4,6,5,12,10,9,6,4,1,2,4,5,5,5,7,9,7,4,6,1,5,4,4]},{"label":"Memecoins","topics":"meme,memecoin,memes,coin,memecoins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Memecoin Millionaires and favorite memecoins for potential 100X gains\n- Speculation on which memecoin will pump the most if the 25th amendment happens\n- The rise of meme stocks in the stock market\n- Different types of traders in the market\n- The influence of meta figures like Matt Furie and Doge on the memecoin market\n- Guides on how to trade memecoins in 2024 and what to look out for\n- Specific memecoins like $POPCAT and their cult-like following\n- The success and rise of projects like HOGE Finance in the meme coin space\n- MemeCoin Season on WAX and discussions on launching new memecoins\n- Updates on the OXFUN MEME DEV BATTLE and the upcoming prize distribution\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and community engagement within the memecoin and crypto industry.","data":[3,3,2,4,2,0,2,3,8,4,6,1,5,6,2,3,3,2,6,11,4,11,12,5,5,1,0,5,7,6,2,83,10,3,3,4,6,2,5,4,0,3,6,2,3,5,6,5,5,8,6,3,2,7,8]},{"label":"AI","topics":"ai,models,startup,model,data","description":"The key topics discussed in the messages from twitter related to AI in the crypto industry include:\n1. The potential gains and risks of AI in the industry.\n2. The advancements in AI technology, such as predicting Alzheimer's disease onset and making objects feel alive.\n3. The impact of generative AI on mental health and ways to support each other.\n4. The democratization of AI and opportunities for online communities.\n5. Elon Musk's plans to develop his own AI chip.\n6. The development of video generation tools by companies like Alibaba.\n7. The release of Perception AI, a desktop AI chat client.\n8. The role of AI in optimizing the Web3 journey.\nOverall, the discussions highlight the growing importance and impact of AI in the crypto industry.","data":[27,19,2,5,0,0,4,4,3,6,7,7,2,8,1,8,3,12,7,5,14,6,6,7,8,9,6,0,7,7,0,4,6,3,7,5,10,4,9,5,7,7,2,4,0,5,5,7,0,8,6,5,3,3,5]},{"label":"XRP","topics":"xrp,ripple,sec,case,125","description":"The key topics discussed in the messages from twitter are:\n1. Settlement of the SEC lawsuit against Ripple and XRP.\n2. Speculation on the future price and potential bull run targets for XRP.\n3. Expectation of major exchange listings for XRP.\n4. Calls for integration of XRP into payment systems by influential figures like Elon Musk.\n5. Legal victory for Ripple against the SEC.\n6. Positive sentiment towards XRP and Ripple's future prospects.\n7. Use of AI and machine learning algorithms to predict XRP's price.\n8. Launch of a stablecoin page by Ripple.\n9. Announcement of a livestream focusing on XRP, Bitcoin, and altcoins.\n10. Positive market performance of XRP compared to Bitcoin.","data":[4,5,5,3,1,0,9,1,9,5,4,7,3,3,2,3,4,6,15,2,5,4,2,5,5,4,11,4,9,2,11,3,2,3,3,8,3,12,3,7,3,25,5,16,5,2,12,7,6,9,3,1,3,4,4]},{"label":"DOGE","topics":"dogecoin,doge,lol,shit,everybody","description":"The key topics currently discussed in the messages from twitter about Dogecoin are:\n1. Dogecoin turning someone into a superhero\n2. Dogecoin price movement and potential rally\n3. Dogecoin Core getting a major security update\n4. Speculation about Dogecoin's role as a memecoin leader\n5. Discussion about other cryptocurrencies like NEIRO on Ethereum\n6. National Dog Month giveaway for memecoins\n7. Elliott Wave Technical Analysis for Dogecoin\n8. Analyst predicting a massive Dogecoin rally by the end of the year.","data":[5,5,0,6,0,1,4,1,6,2,3,3,3,2,87,3,2,2,3,2,5,7,1,4,2,0,4,4,7,2,4,4,1,8,8,5,4,2,4,2,3,4,5,4,4,5,6,5,2,0,6,4,6,6,3]},{"label":"Crypto Conferences","topics":"join,live,chat,ama,reminder","description":"The key topics currently discussed on Twitter in the crypto industry include:\n- Live events and conferences such as Devcon\n- LP rewards on Orca for OREsupply\n- Competitions and rewards offered by OKX\n- Traveling the world through crypto\n- Special guests and discussions on platforms like DashBO UGC\n- Exciting AMAs with partners like Node.sys\n- CLMs and trading pairs on SeiNetwork\n- Subscribing to creators on Rodeo.club\n- Collecting and exploring NFTs from projects like FLAMINGODAO and Deca","data":[4,3,2,0,0,1,0,0,7,12,8,0,2,1,0,1,1,3,3,7,1,2,3,4,4,1,39,7,3,30,3,0,3,5,5,1,1,0,2,5,6,1,0,10,3,15,3,1,12,12,2,4,9,3,1]},{"label":"BTC Mining","topics":"mining,miners,miner,revenue,production","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Bitcoin mining operations and challenges faced by miners\n2. Environmental concerns related to Bitcoin mining\n3. Changes in hash rate and mining difficulty\n4. Support for new technologies like OP_CAT among Bitcoin miners\n5. Companies like Alliance Resource Partners monetizing electricity load through Bitcoin mining\n6. Interest-earning Bitcoin wallets and regulated mining operations\n7. Bitcoin mining cost efficiency and financial engineering\n8. Adoption of new accounting rules for Bitcoin by companies like Alliance Resource Partners\n9. Potential impact of high mining difficulty on Bitcoin price in the future\n10. Historical trends showing significant gains for Bitcoin following periods of high mining activity.","data":[2,1,4,0,34,7,2,1,3,6,0,4,3,3,6,6,2,3,2,1,2,2,5,9,4,4,2,0,1,1,4,0,30,6,1,3,0,1,5,1,6,1,3,2,0,0,0,0,4,0,0,3,0,1,2]},{"label":"Buy the Dip","topics":"dip,buy,buying,bought,dog","description":"The key topics currently being discussed in the crypto community on Twitter include buying the dip, fear of missing out on opportunities, investing in specific cryptocurrencies like $CSPR, $MSTR, $FTM, and $AEVO, and taking advantage of promotional offers for crypto loans with discounted interest rates. There is also mention of flash crashes, moon missions, and the importance of not getting scared out of positions during market volatility. Overall, the sentiment seems to be focused on strategic buying and holding strategies in the crypto market.","data":[2,0,2,1,0,0,0,40,19,1,6,3,1,4,20,3,0,1,2,2,2,2,5,1,1,3,2,6,2,6,1,0,3,1,2,1,4,1,3,3,2,3,9,0,2,3,0,7,2,2,3,0,1,0,2]},{"label":"ETF Flows","topics":"net,etfs,etf,million,inflows","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. ETF Flows: There have been significant outflows from Bitcoin ETFs, with a total net outflow of $237 million on August 2nd. On the other hand, Ethereum ETFs have seen a total net outflow of $54 million. Despite this, there has been a positive net inflow of nearly $49 million into U.S.-listed spot ETH ETFs on Monday.\n\n2. BlackRock's ETH ETF: BlackRock's iShares Ethereum Trust has seen inflows close to $900 million in just 11 days, making it one of the top-performing ETFs of 2024. This indicates strong demand for Ethereum despite market dips.\n\n3. Grayscale ETHE Outflows: Grayscale's ETHE has experienced a significant drop in outflows by about 80% this week. Additionally, the U.S. Ethereum spot ETF has recorded a cumulative net outflow of $169.4 million this week.\n\n4. Bitcoin ETF Update: Grayscale's ETF $GBTC saw a net outflow of $45.9 million, Fidelity's ETF $FBTC had a net outflow of $104 million, while BlackRock's ETF $IBIT recorded a net inflow of $42.8142 million on August 2nd.\n\n5. Ethereum ETF Update: Grayscale's ETF $ETHE had a single-day outflow of $61.43 million, while Fidelity's ETF $FETH and Franklin's ETF $EZET recorded inflows of $6.02 million and $1.14 million, respectively on the same day.\n\nOverall, the discussion on Twitter revolves around the flows of Bitcoin and Ethereum ETFs, particularly focusing on the significant outflows from Bitcoin ETFs and the strong demand for Ethereum ETFs.","data":[1,1,1,3,8,2,0,0,0,0,1,2,6,3,2,1,39,4,3,3,0,3,5,2,4,6,2,0,0,0,3,1,0,5,1,6,0,4,0,0,1,0,6,1,35,1,1,0,3,9,2,1,2,2,3]},{"label":"BTC Price","topics":"60k,60000,100000,prediction,58k","description":"The key topics currently being discussed on Twitter regarding Bitcoin include:\n- Bitcoin surpassing the $56k mark\n- Predictions of Bitcoin reaching $100k by the end of the year\n- Speculation on Bitcoin's price movements, with mentions of $50k, $60k, and $80k\n- Technical analysis suggesting Bitcoin could reach $58-$59k before moving to $75k+\n- Debate on whether Bitcoin will break above $80,000 by Monday\n- Comments on the volatility and potential gains in the crypto market\n- Reference to a previous prediction about Bitcoin's price\n- Mention of economic and geopolitical factors influencing Bitcoin's price movements\n- Humorous comments about Bitcoin's price levels and predictions\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin's price potential, with excitement and speculation about future price movements.","data":[1,0,2,6,11,18,6,2,0,1,4,1,1,2,1,3,1,2,3,0,0,4,0,5,2,3,1,1,3,1,4,0,1,1,2,1,2,13,2,9,2,2,4,2,1,3,8,5,2,2,1,2,4,0,2]},{"label":"DeFi","topics":"defi,lending,protocols,protocol,decentralized","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- DeFi disrupting traditional finance\n- Yield farming strategies in DeFi\n- Challenges and solutions for institutional capital in DeFi\n- Wrapped Bitcoin (WBTC) bridging Bitcoin with Ethereum's blockchain\n- Impact of liquidations on chains with the most DeFi Total Value Locked (TVL)\n- Growth of the Flare DeFi ecosystem\n- Integration of DeFi protocols with Artemis\n- MEV (Miner Extractable Value) in DeFi and its impact on retail users\n- Verus solving MEV\n- Current liquidation price of DeFi\n- Dominance of Hydration Network in Polkadot's DeFi sector\n\nOverall, the discussions on Twitter highlight the rapid growth and evolving landscape of decentralized finance (DeFi) and its impact on traditional finance systems.","data":[2,4,2,3,0,1,2,2,1,4,4,4,1,10,1,1,1,3,3,2,4,1,0,6,2,3,0,2,5,2,2,1,2,3,3,4,2,3,4,1,2,3,3,0,2,1,4,2,1,5,1,3,1,2,3]},{"label":"CPI","topics":"cut,fed,rates,cuts,rate","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Speculation about potential rate cuts and liquidity injections by central banks, particularly the Federal Reserve\n- Impact of recent rate cuts by other countries on the US market liquidity\n- Calls for emergency rate cuts by the Federal Reserve due to recession fears\n- Market expectations for a 50 basis point rate cut at the September FOMC meeting\n- Mixed opinions on the necessity and timing of rate cuts by the Federal Reserve\n- The Bank of England's recent interest rate cut and future expectations for further cuts\n- Historical data suggesting caution in predicting intermeeting rate cuts by the Federal Reserve\n- Speculation and analysis on the potential outcomes of the September FOMC meeting and interest rate cut decision.","data":[1,1,3,1,0,0,3,0,2,3,0,2,6,4,0,3,0,6,2,1,0,4,4,3,0,3,2,1,1,1,1,7,4,2,2,2,1,1,2,7,3,6,1,2,0,1,3,4,3,2,3,0,1,1,1]},{"label":"Recession","topics":"recession,economic,economy,indicators,indicator","description":"The key topics currently being discussed on Twitter regarding the crypto industry include the possibility of a recession, with some users debating whether or not one is imminent. Some are analyzing economic data points and discussing the potential impact on prices and market conditions. Others are speculating on the timing and duration of a recession, with some expressing confidence in the current economic outlook. Additionally, there is mention of quantitative easing measures by the Federal Reserve and the potential for increased liquidity in the system. Overall, there is a mix of opinions and analysis on the topic of a potential recession and its implications for the economy.","data":[0,1,2,0,0,0,0,0,3,1,1,0,2,0,0,3,3,1,4,2,0,2,2,0,0,3,1,5,1,1,1,1,1,3,0,1,4,3,1,40,2,1,1,3,0,1,3,3,1,0,0,3,2,1,2]},{"label":"Whales","topics":"whales,whale,accumulating,accumulation,accumulated","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Whale activity sparking a Bitcoin rally with over 30k BTC purchased in two days.\n2. Whale capitulation presenting an opportunity for investors as whales are about to fill Bitcoin gaps.\n3. Bitcoin whales buying the dip, leading to speculation on whether the price will rally higher.\n4. Ethereum price overshadowing whale buying to break $3000 support, prompting discussions on what's next for the cryptocurrency.\n5. Bitcoin whale accumulation signaling long-term confidence amid short-term volatility.\n6. Ethereum whales facing liquidations amid a sharp price decline.\n7. Selling pressure on Bitcoin from new whales as BTC hovers at $57,000.\n8. Intriguing movements in the top 50 holders of certain cryptocurrencies as new whales enter the market.\n9. Speculation on whale moves triggering price speculation and potential gains in the market.\n10. Withdrawals of large sums by Ethereum whales ahead of ETF approval, raising questions about the impact on investors.","data":[1,2,2,0,3,15,0,2,1,1,1,0,3,1,0,0,1,4,0,0,0,1,1,3,0,2,2,1,2,3,1,2,0,3,1,4,0,0,2,1,2,0,7,1,1,1,0,0,0,0,3,0,1,30,0]},{"label":"Morgan Stanley BTC ETF","topics":"morgan,advisors,clients,etfs,offer","description":"The key topic discussed in the messages from twitter is about Morgan Stanley offering spot Bitcoin ETFs to select clients through their financial advisors. This move by Morgan Stanley marks a significant milestone as they become the first major Wall Street bank to allow their advisors to advise on Bitcoin ETF investments. The news has generated excitement within the crypto community, with discussions about other major banks like Wells Fargo and UBS potentially following suit. The messages also highlight the long process of getting approval for such products on client platforms and the changing attitudes towards Bitcoin within financial institutions. Overall, the focus is on the increasing acceptance and adoption of Bitcoin and crypto assets within traditional financial institutions.","data":[17,12,5,3,2,0,3,0,0,0,2,0,0,0,0,2,4,3,1,1,3,0,1,0,3,0,1,2,0,0,0,1,0,1,9,1,3,0,0,1,2,1,0,2,4,4,1,1,3,1,1,0,0,7,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-31.ts b/priv/repo/major_topics_seed/data-31.ts deleted file mode 100644 index ea2d3e6219..0000000000 --- a/priv/repo/major_topics_seed/data-31.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '01.08.24', - '02.08.24', - '02.08.24', - '02.08.24', - '02.08.24', - '02.08.24', - '02.08.24', - '02.08.24', - '03.08.24', - '03.08.24', - '03.08.24', - '03.08.24', - '03.08.24', - '03.08.24', - '03.08.24', - '03.08.24', - '04.08.24', - '04.08.24', - '04.08.24', - '04.08.24', - '04.08.24', - '04.08.24', - '04.08.24', - '04.08.24', - '05.08.24', - '05.08.24', - '05.08.24', - '05.08.24', - '05.08.24', - '05.08.24', - '05.08.24', - '05.08.24', - '06.08.24', - '06.08.24', - '06.08.24', - '06.08.24', - '06.08.24', - '06.08.24', - '06.08.24', - '06.08.24', - '07.08.24', - '07.08.24', - '07.08.24', - '07.08.24', - '07.08.24', - '07.08.24', - '07.08.24', - '07.08.24', - '08.08.24', - '08.08.24', - '08.08.24', - '08.08.24', - '08.08.24', - '08.08.24', - '08.08.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'fiat,bitcoin,money,value,asset', - description: - "The messages from Twitter discuss various aspects of the crypto industry, particularly focusing on Bitcoin. Some key topics mentioned include:\n\n1. Volatility: The message highlights the volatility of fiat currency compared to Bitcoin, suggesting that Bitcoin is a more stable investment option.\n2. Flight to safety: There is speculation about whether people are buying Bitcoin as a safe haven asset during uncertain times.\n3. Funding and competition: The message mentions a battle between different camps within the Bitcoin community, suggesting internal competition.\n4. Integration into finance system: The difficulty of integrating Bitcoin into the traditional finance system is discussed, with mention of monopolies keeping out competitors.\n5. Maturity as a safe haven asset: There is a debate about whether Bitcoin, despite being 15 years old, is still too immature to be considered a safe haven asset.\n6. Loyalty and education: The importance of staying informed and committed to Bitcoin as an investment is emphasized, with a warning against being a \"tourist\" in the market.\n7. Establishment support: The message suggests that the establishment is endorsing Bitcoin as a store of value but remaining silent on its use as a medium of exchange.\n8. Privacy and scalability: The discussion touches on the importance of optional privacy and scalability features in cryptocurrencies like Litecoin and Bitcoin.\n9. Michael Saylor's strategy: The message references Michael Saylor's approach to investing in Bitcoin as a long-term strategy, comparing it to buying real estate in Manhattan.\n10. Cold storage capital: There is mention of using Bitcoin as a way to store value and protect against the devaluation of fiat currency.\n\nOverall, the messages reflect a diverse range of opinions and discussions within the crypto community, with a focus on Bitcoin's role in the financial landscape.", - data: [ - 22, 7, 25, 48, 75, 78, 10, 25, 13, 26, 17, 21, 20, 19, 8, 11, 6, 19, 33, 20, 23, 21, 22, 25, - 10, 28, 11, 25, 27, 24, 21, 14, 15, 16, 16, 27, 29, 13, 29, 19, 27, 38, 26, 24, 25, 28, 21, - 33, 13, 18, 27, 20, 12, 23, 22, - ], - }, - { - label: 'ETH Price', - topics: 'eth,ethereum,price,ethereums,level', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum's price fluctuations, with mentions of ETH dropping below $3k and speculation on whether it will go even lower\n- Bullish projections for Ethereum, with some users predicting a price of $50,000 and others celebrating Ethereum's journey over the past decade\n- Analysis of Ethereum's technical charts, including potential trend reversals and rejection of key moving averages\n- Criticism of Ethereum's value accrual and comparisons to other cryptocurrencies like Solana\n- Recent price movements for Ethereum, including a bounce back from a crash and a 10% price surge\n- Mention of Ethereum Name Service (ENS) as a top performer and the potential for Wall Street to get involved with ETH ETFs\n\nOverall, sentiment on Ethereum appears mixed, with some users optimistic about its future potential while others express skepticism about its value proposition.", - data: [ - 8, 13, 8, 6, 0, 1, 9, 11, 15, 9, 13, 8, 11, 13, 7, 13, 155, 16, 14, 9, 10, 11, 9, 11, 15, 5, - 2, 9, 10, 18, 8, 7, 5, 6, 10, 8, 9, 17, 9, 7, 4, 7, 19, 14, 5, 11, 12, 20, 12, 9, 6, 11, 12, - 7, 12, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,eth,alltime,ethereum', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the performance of different cryptocurrencies like Solana ($SOL) and Ethereum (ETH), the potential for a Trump pump-and-dump token launch on Solana, the comparison between Solana and Ethereum in terms of market performance, the bullish outlook on Solana by crypto expert Chris Burniske, and the trading opportunities and strategies for Solana. Additionally, there is discussion about meme coins and their impact on the market, as well as the potential for new projects like Boden to gain traction in the crypto space. Overall, the sentiment towards Solana appears to be positive, with many users expressing confidence in its long-term potential and performance compared to other cryptocurrencies.', - data: [ - 6, 11, 9, 3, 0, 1, 5, 3, 12, 9, 10, 13, 9, 11, 2, 12, 12, 4, 4, 8, 7, 7, 9, 12, 7, 9, 4, 14, - 9, 13, 18, 7, 7, 7, 4, 16, 7, 11, 9, 16, 7, 6, 9, 12, 64, 10, 12, 16, 9, 9, 2, 5, 7, 11, 3, - ], - }, - { - label: 'Japan Market Crash ', - topics: 'japan,yen,japanese,carry,nikkei', - description: - "The messages from Twitter discuss the recent market crash in Japan, with the Nikkei surging and then crashing, causing chaos in the markets. The Bank of Japan's decision to hike interest rates is highlighted as a key event triggering the crash. The messages also mention the impact on crypto markets, with Bitcoin and Ethereum sinking to six-month lows. There is speculation about the reasons behind the crash, including concerns about the Federal Reserve's policy decisions and bad market technicals. Despite the crash, there is optimism about a potential rebound, with the Topix index rebounding and Bitcoin eyeing $60k. The messages also touch on the larger economic implications of the crash, comparing it to Black Monday in 1987 and discussing key economic events for the week. Overall, the messages reflect a mix of concern, speculation, and optimism about the market situation in Japan and its impact on the global economy.", - data: [ - 12, 4, 6, 11, 2, 0, 27, 5, 13, 1, 3, 2, 8, 6, 3, 10, 6, 5, 10, 6, 5, 12, 7, 8, 2, 4, 20, 4, - 4, 5, 12, 29, 2, 5, 7, 6, 7, 3, 5, 8, 11, 7, 7, 3, 8, 16, 2, 4, 7, 6, 7, 10, 7, 13, 18, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,web3', - description: - 'The key topics discussed in the messages from twitter are related to gaming in the crypto industry, specifically focusing on Web3 gaming, investment opportunities in gaming studios, the growth of the gaming industry, and the integration of web2 gamers into the web3 world. Other topics include the launch of new games, such as Champions and PuzzleCrusher, and the promotion of gaming communities and events. Additionally, there is mention of a gaming marketplace offering credits and a summer sale for poker coaching. The messages also highlight the success of certain gaming brands and the excitement surrounding upcoming game releases.', - data: [ - 5, 5, 7, 3, 0, 2, 2, 4, 9, 8, 6, 8, 6, 5, 7, 7, 3, 7, 7, 5, 46, 1, 6, 5, 11, 3, 9, 9, 9, 5, - 3, 2, 6, 17, 2, 3, 15, 1, 3, 7, 5, 1, 1, 4, 5, 5, 9, 3, 16, 3, 5, 4, 4, 6, 8, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,work', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n1. Art and creativity: Discussions about different art forms, artists, and the importance of creating art for oneself or a higher purpose.\n2. NFTs (Non-Fungible Tokens): Mention of NFT NYC event in 2023 and the creation of unique digital art pieces like "Flamebourne Genome" by Joe Mangrum.\n3. AI technology: Use of AI to generate antique maps for role play, fantasy books, and wallpapers.\n4. Innovative designs: Mention of a transparent toilet design that showcases the efficiency of modern design.\n5. Courage and vulnerability in art: Belief that art, in its purest form, is an act of courage and vulnerability leading to emotional freedom.\n6. Artist features: Profiles of polyhedric artists like Eduardi Tsokolakyan who perform thread art, multiple simultaneous drawings, and cut up portraits.\n7. Art sales and self-sustainability: Discussion on the importance of sales for self-sustainability in art, but also the different metrics for measuring artistic progression.', - data: [ - 4, 19, 48, 6, 0, 1, 3, 2, 4, 5, 6, 10, 3, 11, 5, 2, 3, 5, 7, 2, 5, 6, 10, 3, 8, 4, 3, 4, 1, - 2, 7, 2, 4, 6, 5, 12, 10, 9, 6, 4, 1, 2, 4, 5, 5, 5, 7, 9, 7, 4, 6, 1, 5, 4, 4, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coin,memecoins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Memecoin Millionaires and favorite memecoins for potential 100X gains\n- Speculation on which memecoin will pump the most if the 25th amendment happens\n- The rise of meme stocks in the stock market\n- Different types of traders in the market\n- The influence of meta figures like Matt Furie and Doge on the memecoin market\n- Guides on how to trade memecoins in 2024 and what to look out for\n- Specific memecoins like $POPCAT and their cult-like following\n- The success and rise of projects like HOGE Finance in the meme coin space\n- MemeCoin Season on WAX and discussions on launching new memecoins\n- Updates on the OXFUN MEME DEV BATTLE and the upcoming prize distribution\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and community engagement within the memecoin and crypto industry.', - data: [ - 3, 3, 2, 4, 2, 0, 2, 3, 8, 4, 6, 1, 5, 6, 2, 3, 3, 2, 6, 11, 4, 11, 12, 5, 5, 1, 0, 5, 7, 6, - 2, 83, 10, 3, 3, 4, 6, 2, 5, 4, 0, 3, 6, 2, 3, 5, 6, 5, 5, 8, 6, 3, 2, 7, 8, - ], - }, - { - label: 'AI', - topics: 'ai,models,startup,model,data', - description: - "The key topics discussed in the messages from twitter related to AI in the crypto industry include:\n1. The potential gains and risks of AI in the industry.\n2. The advancements in AI technology, such as predicting Alzheimer's disease onset and making objects feel alive.\n3. The impact of generative AI on mental health and ways to support each other.\n4. The democratization of AI and opportunities for online communities.\n5. Elon Musk's plans to develop his own AI chip.\n6. The development of video generation tools by companies like Alibaba.\n7. The release of Perception AI, a desktop AI chat client.\n8. The role of AI in optimizing the Web3 journey.\nOverall, the discussions highlight the growing importance and impact of AI in the crypto industry.", - data: [ - 27, 19, 2, 5, 0, 0, 4, 4, 3, 6, 7, 7, 2, 8, 1, 8, 3, 12, 7, 5, 14, 6, 6, 7, 8, 9, 6, 0, 7, - 7, 0, 4, 6, 3, 7, 5, 10, 4, 9, 5, 7, 7, 2, 4, 0, 5, 5, 7, 0, 8, 6, 5, 3, 3, 5, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,case,125', - description: - "The key topics discussed in the messages from twitter are:\n1. Settlement of the SEC lawsuit against Ripple and XRP.\n2. Speculation on the future price and potential bull run targets for XRP.\n3. Expectation of major exchange listings for XRP.\n4. Calls for integration of XRP into payment systems by influential figures like Elon Musk.\n5. Legal victory for Ripple against the SEC.\n6. Positive sentiment towards XRP and Ripple's future prospects.\n7. Use of AI and machine learning algorithms to predict XRP's price.\n8. Launch of a stablecoin page by Ripple.\n9. Announcement of a livestream focusing on XRP, Bitcoin, and altcoins.\n10. Positive market performance of XRP compared to Bitcoin.", - data: [ - 4, 5, 5, 3, 1, 0, 9, 1, 9, 5, 4, 7, 3, 3, 2, 3, 4, 6, 15, 2, 5, 4, 2, 5, 5, 4, 11, 4, 9, 2, - 11, 3, 2, 3, 3, 8, 3, 12, 3, 7, 3, 25, 5, 16, 5, 2, 12, 7, 6, 9, 3, 1, 3, 4, 4, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,lol,shit,everybody', - description: - "The key topics currently discussed in the messages from twitter about Dogecoin are:\n1. Dogecoin turning someone into a superhero\n2. Dogecoin price movement and potential rally\n3. Dogecoin Core getting a major security update\n4. Speculation about Dogecoin's role as a memecoin leader\n5. Discussion about other cryptocurrencies like NEIRO on Ethereum\n6. National Dog Month giveaway for memecoins\n7. Elliott Wave Technical Analysis for Dogecoin\n8. Analyst predicting a massive Dogecoin rally by the end of the year.", - data: [ - 5, 5, 0, 6, 0, 1, 4, 1, 6, 2, 3, 3, 3, 2, 87, 3, 2, 2, 3, 2, 5, 7, 1, 4, 2, 0, 4, 4, 7, 2, - 4, 4, 1, 8, 8, 5, 4, 2, 4, 2, 3, 4, 5, 4, 4, 5, 6, 5, 2, 0, 6, 4, 6, 6, 3, - ], - }, - { - label: 'Crypto Conferences', - topics: 'join,live,chat,ama,reminder', - description: - 'The key topics currently discussed on Twitter in the crypto industry include:\n- Live events and conferences such as Devcon\n- LP rewards on Orca for OREsupply\n- Competitions and rewards offered by OKX\n- Traveling the world through crypto\n- Special guests and discussions on platforms like DashBO UGC\n- Exciting AMAs with partners like Node.sys\n- CLMs and trading pairs on SeiNetwork\n- Subscribing to creators on Rodeo.club\n- Collecting and exploring NFTs from projects like FLAMINGODAO and Deca', - data: [ - 4, 3, 2, 0, 0, 1, 0, 0, 7, 12, 8, 0, 2, 1, 0, 1, 1, 3, 3, 7, 1, 2, 3, 4, 4, 1, 39, 7, 3, 30, - 3, 0, 3, 5, 5, 1, 1, 0, 2, 5, 6, 1, 0, 10, 3, 15, 3, 1, 12, 12, 2, 4, 9, 3, 1, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,revenue,production', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Bitcoin mining operations and challenges faced by miners\n2. Environmental concerns related to Bitcoin mining\n3. Changes in hash rate and mining difficulty\n4. Support for new technologies like OP_CAT among Bitcoin miners\n5. Companies like Alliance Resource Partners monetizing electricity load through Bitcoin mining\n6. Interest-earning Bitcoin wallets and regulated mining operations\n7. Bitcoin mining cost efficiency and financial engineering\n8. Adoption of new accounting rules for Bitcoin by companies like Alliance Resource Partners\n9. Potential impact of high mining difficulty on Bitcoin price in the future\n10. Historical trends showing significant gains for Bitcoin following periods of high mining activity.', - data: [ - 2, 1, 4, 0, 34, 7, 2, 1, 3, 6, 0, 4, 3, 3, 6, 6, 2, 3, 2, 1, 2, 2, 5, 9, 4, 4, 2, 0, 1, 1, - 4, 0, 30, 6, 1, 3, 0, 1, 5, 1, 6, 1, 3, 2, 0, 0, 0, 0, 4, 0, 0, 3, 0, 1, 2, - ], - }, - { - label: 'Buy the Dip', - topics: 'dip,buy,buying,bought,dog', - description: - 'The key topics currently being discussed in the crypto community on Twitter include buying the dip, fear of missing out on opportunities, investing in specific cryptocurrencies like $CSPR, $MSTR, $FTM, and $AEVO, and taking advantage of promotional offers for crypto loans with discounted interest rates. There is also mention of flash crashes, moon missions, and the importance of not getting scared out of positions during market volatility. Overall, the sentiment seems to be focused on strategic buying and holding strategies in the crypto market.', - data: [ - 2, 0, 2, 1, 0, 0, 0, 40, 19, 1, 6, 3, 1, 4, 20, 3, 0, 1, 2, 2, 2, 2, 5, 1, 1, 3, 2, 6, 2, 6, - 1, 0, 3, 1, 2, 1, 4, 1, 3, 3, 2, 3, 9, 0, 2, 3, 0, 7, 2, 2, 3, 0, 1, 0, 2, - ], - }, - { - label: 'ETF Flows', - topics: 'net,etfs,etf,million,inflows', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n\n1. ETF Flows: There have been significant outflows from Bitcoin ETFs, with a total net outflow of $237 million on August 2nd. On the other hand, Ethereum ETFs have seen a total net outflow of $54 million. Despite this, there has been a positive net inflow of nearly $49 million into U.S.-listed spot ETH ETFs on Monday.\n\n2. BlackRock's ETH ETF: BlackRock's iShares Ethereum Trust has seen inflows close to $900 million in just 11 days, making it one of the top-performing ETFs of 2024. This indicates strong demand for Ethereum despite market dips.\n\n3. Grayscale ETHE Outflows: Grayscale's ETHE has experienced a significant drop in outflows by about 80% this week. Additionally, the U.S. Ethereum spot ETF has recorded a cumulative net outflow of $169.4 million this week.\n\n4. Bitcoin ETF Update: Grayscale's ETF $GBTC saw a net outflow of $45.9 million, Fidelity's ETF $FBTC had a net outflow of $104 million, while BlackRock's ETF $IBIT recorded a net inflow of $42.8142 million on August 2nd.\n\n5. Ethereum ETF Update: Grayscale's ETF $ETHE had a single-day outflow of $61.43 million, while Fidelity's ETF $FETH and Franklin's ETF $EZET recorded inflows of $6.02 million and $1.14 million, respectively on the same day.\n\nOverall, the discussion on Twitter revolves around the flows of Bitcoin and Ethereum ETFs, particularly focusing on the significant outflows from Bitcoin ETFs and the strong demand for Ethereum ETFs.", - data: [ - 1, 1, 1, 3, 8, 2, 0, 0, 0, 0, 1, 2, 6, 3, 2, 1, 39, 4, 3, 3, 0, 3, 5, 2, 4, 6, 2, 0, 0, 0, - 3, 1, 0, 5, 1, 6, 0, 4, 0, 0, 1, 0, 6, 1, 35, 1, 1, 0, 3, 9, 2, 1, 2, 2, 3, - ], - }, - { - label: 'BTC Price', - topics: '60k,60000,100000,prediction,58k', - description: - "The key topics currently being discussed on Twitter regarding Bitcoin include:\n- Bitcoin surpassing the $56k mark\n- Predictions of Bitcoin reaching $100k by the end of the year\n- Speculation on Bitcoin's price movements, with mentions of $50k, $60k, and $80k\n- Technical analysis suggesting Bitcoin could reach $58-$59k before moving to $75k+\n- Debate on whether Bitcoin will break above $80,000 by Monday\n- Comments on the volatility and potential gains in the crypto market\n- Reference to a previous prediction about Bitcoin's price\n- Mention of economic and geopolitical factors influencing Bitcoin's price movements\n- Humorous comments about Bitcoin's price levels and predictions\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin's price potential, with excitement and speculation about future price movements.", - data: [ - 1, 0, 2, 6, 11, 18, 6, 2, 0, 1, 4, 1, 1, 2, 1, 3, 1, 2, 3, 0, 0, 4, 0, 5, 2, 3, 1, 1, 3, 1, - 4, 0, 1, 1, 2, 1, 2, 13, 2, 9, 2, 2, 4, 2, 1, 3, 8, 5, 2, 2, 1, 2, 4, 0, 2, - ], - }, - { - label: 'DeFi', - topics: 'defi,lending,protocols,protocol,decentralized', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- DeFi disrupting traditional finance\n- Yield farming strategies in DeFi\n- Challenges and solutions for institutional capital in DeFi\n- Wrapped Bitcoin (WBTC) bridging Bitcoin with Ethereum's blockchain\n- Impact of liquidations on chains with the most DeFi Total Value Locked (TVL)\n- Growth of the Flare DeFi ecosystem\n- Integration of DeFi protocols with Artemis\n- MEV (Miner Extractable Value) in DeFi and its impact on retail users\n- Verus solving MEV\n- Current liquidation price of DeFi\n- Dominance of Hydration Network in Polkadot's DeFi sector\n\nOverall, the discussions on Twitter highlight the rapid growth and evolving landscape of decentralized finance (DeFi) and its impact on traditional finance systems.", - data: [ - 2, 4, 2, 3, 0, 1, 2, 2, 1, 4, 4, 4, 1, 10, 1, 1, 1, 3, 3, 2, 4, 1, 0, 6, 2, 3, 0, 2, 5, 2, - 2, 1, 2, 3, 3, 4, 2, 3, 4, 1, 2, 3, 3, 0, 2, 1, 4, 2, 1, 5, 1, 3, 1, 2, 3, - ], - }, - { - label: 'CPI', - topics: 'cut,fed,rates,cuts,rate', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Speculation about potential rate cuts and liquidity injections by central banks, particularly the Federal Reserve\n- Impact of recent rate cuts by other countries on the US market liquidity\n- Calls for emergency rate cuts by the Federal Reserve due to recession fears\n- Market expectations for a 50 basis point rate cut at the September FOMC meeting\n- Mixed opinions on the necessity and timing of rate cuts by the Federal Reserve\n- The Bank of England's recent interest rate cut and future expectations for further cuts\n- Historical data suggesting caution in predicting intermeeting rate cuts by the Federal Reserve\n- Speculation and analysis on the potential outcomes of the September FOMC meeting and interest rate cut decision.", - data: [ - 1, 1, 3, 1, 0, 0, 3, 0, 2, 3, 0, 2, 6, 4, 0, 3, 0, 6, 2, 1, 0, 4, 4, 3, 0, 3, 2, 1, 1, 1, 1, - 7, 4, 2, 2, 2, 1, 1, 2, 7, 3, 6, 1, 2, 0, 1, 3, 4, 3, 2, 3, 0, 1, 1, 1, - ], - }, - { - label: 'Recession', - topics: 'recession,economic,economy,indicators,indicator', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry include the possibility of a recession, with some users debating whether or not one is imminent. Some are analyzing economic data points and discussing the potential impact on prices and market conditions. Others are speculating on the timing and duration of a recession, with some expressing confidence in the current economic outlook. Additionally, there is mention of quantitative easing measures by the Federal Reserve and the potential for increased liquidity in the system. Overall, there is a mix of opinions and analysis on the topic of a potential recession and its implications for the economy.', - data: [ - 0, 1, 2, 0, 0, 0, 0, 0, 3, 1, 1, 0, 2, 0, 0, 3, 3, 1, 4, 2, 0, 2, 2, 0, 0, 3, 1, 5, 1, 1, 1, - 1, 1, 3, 0, 1, 4, 3, 1, 40, 2, 1, 1, 3, 0, 1, 3, 3, 1, 0, 0, 3, 2, 1, 2, - ], - }, - { - label: 'Whales', - topics: 'whales,whale,accumulating,accumulation,accumulated', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Whale activity sparking a Bitcoin rally with over 30k BTC purchased in two days.\n2. Whale capitulation presenting an opportunity for investors as whales are about to fill Bitcoin gaps.\n3. Bitcoin whales buying the dip, leading to speculation on whether the price will rally higher.\n4. Ethereum price overshadowing whale buying to break $3000 support, prompting discussions on what's next for the cryptocurrency.\n5. Bitcoin whale accumulation signaling long-term confidence amid short-term volatility.\n6. Ethereum whales facing liquidations amid a sharp price decline.\n7. Selling pressure on Bitcoin from new whales as BTC hovers at $57,000.\n8. Intriguing movements in the top 50 holders of certain cryptocurrencies as new whales enter the market.\n9. Speculation on whale moves triggering price speculation and potential gains in the market.\n10. Withdrawals of large sums by Ethereum whales ahead of ETF approval, raising questions about the impact on investors.", - data: [ - 1, 2, 2, 0, 3, 15, 0, 2, 1, 1, 1, 0, 3, 1, 0, 0, 1, 4, 0, 0, 0, 1, 1, 3, 0, 2, 2, 1, 2, 3, - 1, 2, 0, 3, 1, 4, 0, 0, 2, 1, 2, 0, 7, 1, 1, 1, 0, 0, 0, 0, 3, 0, 1, 30, 0, - ], - }, - { - label: 'Morgan Stanley BTC ETF', - topics: 'morgan,advisors,clients,etfs,offer', - description: - 'The key topic discussed in the messages from twitter is about Morgan Stanley offering spot Bitcoin ETFs to select clients through their financial advisors. This move by Morgan Stanley marks a significant milestone as they become the first major Wall Street bank to allow their advisors to advise on Bitcoin ETF investments. The news has generated excitement within the crypto community, with discussions about other major banks like Wells Fargo and UBS potentially following suit. The messages also highlight the long process of getting approval for such products on client platforms and the changing attitudes towards Bitcoin within financial institutions. Overall, the focus is on the increasing acceptance and adoption of Bitcoin and crypto assets within traditional financial institutions.', - data: [ - 17, 12, 5, 3, 2, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 4, 3, 1, 1, 3, 0, 1, 0, 3, 0, 1, 2, 0, 0, - 0, 1, 0, 1, 9, 1, 3, 0, 0, 1, 2, 1, 0, 2, 4, 4, 1, 1, 3, 1, 1, 0, 0, 7, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-32.json b/priv/repo/major_topics_seed/data-32.json deleted file mode 100644 index 181c045d07..0000000000 --- a/priv/repo/major_topics_seed/data-32.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["08.08.24","09.08.24","09.08.24","09.08.24","09.08.24","09.08.24","09.08.24","09.08.24","10.08.24","10.08.24","10.08.24","10.08.24","10.08.24","10.08.24","10.08.24","10.08.24","11.08.24","11.08.24","11.08.24","11.08.24","11.08.24","11.08.24","11.08.24","11.08.24","12.08.24","12.08.24","12.08.24","12.08.24","12.08.24","12.08.24","12.08.24","12.08.24","13.08.24","13.08.24","13.08.24","13.08.24","13.08.24","13.08.24","13.08.24","13.08.24","14.08.24","14.08.24","14.08.24","14.08.24","14.08.24","14.08.24","14.08.24","14.08.24","15.08.24","15.08.24","15.08.24","15.08.24","15.08.24","15.08.24","15.08.24"],"datasets":[{"label":"BTC","topics":"fiat,bitcoin,dont,money,understand","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin's price fluctuations and its impact on governments and society\n- Criticisms of Bitcoin maximalists and their behavior\n- Skepticism towards Bitcoin ETFs and their control by institutions like Blackrock\n- Debate over the importance of altcoin features in relation to Bitcoin scalability and privacy\n- Criticisms of those who overly invest emotions in Bitcoin\n- General disdain towards fiat currency and civilization\n\nOverall, the sentiment in these messages seems to be a mix of skepticism, criticism, and frustration towards various aspects of the crypto industry, particularly Bitcoin and its community.","data":[15,9,12,18,65,59,6,9,12,10,9,10,8,13,15,11,4,13,28,15,9,10,16,9,10,13,8,19,16,10,23,13,18,15,12,19,21,7,20,21,15,22,10,16,15,20,15,22,11,11,22,7,9,11,31]},{"label":"BTC Price","topics":"btc,candle,60k,resistance,weekly","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n\n1. Bitcoin price movements: There is discussion about Bitcoin's price jumping to $58,350 - $59,700, dropping 5% from yesterday's high, retesting the channel bottom as support, and potential resistances at $65k and $67k.\n\n2. Market analysis: Institutions are buying Bitcoin, there are concerns about global economic slowdown and inflation, and technical analysis shows improving charts with a focus on weekly closes above $60k.\n\n3. Altcoins performance: Altcoins are bouncing nicely, with potential upward moves if certain resistance levels are lost.\n\n4. Wave projection for Bitcoin: There is a method discussed for projecting a wave 5 target for Bitcoin using fibs, with a focus on macro wave 4 depth and smaller degree waves 1+3.\n\nOverall, the sentiment seems to be cautiously optimistic with a focus on technical analysis, market trends, and potential price movements in the crypto industry.","data":[4,9,4,8,65,76,28,29,10,10,12,18,14,9,6,13,2,12,18,9,9,12,7,30,7,7,4,11,9,15,8,9,9,11,5,6,10,28,5,23,17,10,8,18,10,10,19,8,13,12,6,14,8,22,9]},{"label":"CPI","topics":"inflation,cpi,fed,rates,cut","description":"The key topics currently being discussed on social media regarding the crypto industry include:\n\n1. Inflation rates in various countries such as the UK and the US, and how they impact the economy and cryptocurrency prices.\n2. Speculation about potential interest rate cuts by the Federal Reserve and how it could affect the market.\n3. The stability of digital currencies like USDC as an alternative to local fiat currencies in the face of high currency inflation.\n4. Jerome Powell's statement about inflation being transitory and its implications on the Federal Reserve's policies.\n5. The impact of US CPI inflation easing to 2.9% on Bitcoin prices and the likelihood of rate cuts by the US Fed.\n6. Concerns about potential price controls on food and groceries proposed by Kamala Harris and its potential impact on the market.\n7. Analysis of July US CPI data showing a dip to 2.9% YoY and core inflation at 3.2% YoY, and how it relates to Bitcoin prices remaining stable around $61K.\n\nOverall, the discussions on social media highlight the interconnectedness of inflation rates, interest rate policies, and cryptocurrency prices in the current economic landscape.","data":[9,4,3,7,0,0,23,0,2,3,9,15,7,12,1,11,3,9,9,3,7,10,11,8,6,82,6,6,3,3,16,23,14,6,7,5,4,16,14,27,17,12,3,12,4,6,2,3,7,6,4,2,4,6,14]},{"label":"GameFi","topics":"gaming,game,games,play,gamefi","description":"The key topics currently being discussed in the crypto industry on Twitter include gaming, old-school games like Wolfenstein 3D, anime experiences on platforms like Roblox, Web3 growth and adoption, AI-powered games like Code Caching, online gaming communities like Pixelton Arena, upcoming events like the LaLiga season kickoff with GameOn, engagement challenges on platforms like Steemit, and gaming challenges like the Rainbow Rumble Challenge on XAI_GAMES. Overall, the crypto community on Twitter seems to be actively engaged in discussions related to gaming, technology, and community events.","data":[7,2,12,8,1,0,7,6,12,9,8,9,5,7,7,6,2,13,9,7,50,13,12,5,14,3,13,5,16,8,6,2,5,9,18,9,33,6,5,14,11,5,10,6,4,7,11,6,9,5,9,7,7,6,5]},{"label":"AI","topics":"ai,models,human,intelligence,model","description":"The key topics currently discussed in the crypto industry on social media include the integration of artificial intelligence into platforms, the impact of AI on various industries such as health and well-being, the use of AI in cryptocurrency and blockchain technology, the potential for AI to revolutionize various aspects of society, and the role of AI in creating efficiencies and streamlining processes. There is also discussion about the future of AI models and their potential impact on society, as well as the skills and insights needed to succeed in the field of AI product management. Additionally, there is mention of the use of AI in creating art and visual content, as well as debunking myths about AI jobs and the importance of real businesses serving local communities.","data":[34,40,25,9,4,3,2,4,5,4,8,9,0,5,7,5,3,8,8,9,15,8,6,6,7,8,13,11,8,8,8,6,7,5,7,10,10,8,7,15,11,9,5,5,7,8,14,10,5,7,8,8,8,4,14]},{"label":"Memecoins","topics":"meme,memecoin,coin,memes,memecoins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Memecoins: There is a lot of discussion about buying and investing in various memecoins, with users looking for the next big pump and potential 1000x or 1000000x gains.\n- Specific Memecoins: Some specific memecoins like $WIF, $POPCAT, $Giga, $CHAD, $COOL, and $Miladymemecoin are mentioned as potential investment opportunities.\n- Market Manipulation: There are concerns about market manipulation, with mentions of platforms like pumpfun using their treasury to pump random coins and calls to support developers who are actively working on their projects.\n- NFTs and Blockchain Launches: There is anticipation around the launch of L3 blockchain and the potential for NFTs to pump in value.\n- Solana Memecoins: Discussion about which Solana memecoin is the next to go parabolic and comparisons between different coins like $Giga and $CHAD.\n- Market Trends: Users are analyzing market trends, such as the relative strength of meme stocks like $GME and the performance of specific coins in different quarters.\n- Investment Strategies: Users are sharing their investment strategies, such as holding onto certain coins throughout the bull market and looking for versatile meme coins with active developers.\n- Potential Rallies: There is speculation about potential rallies in the market, with mentions of coins like $Miladymemecoin rallying 50% or higher.\n- Community Engagement: Calls to support developers and projects that are actively engaging with the community and working towards long-term value creation.","data":[8,7,6,5,3,0,1,5,8,8,8,6,5,3,5,7,9,3,9,9,2,9,2,13,9,2,3,5,6,12,11,91,5,9,4,14,6,8,7,6,2,4,6,7,4,2,2,10,8,5,9,2,4,10,4]},{"label":"BTC ETF","topics":"etfs,etf,net,spot,million","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Inflows and outflows of funds in Ethereum and Bitcoin ETFs: There have been significant inflows in Ethereum ETFs, with Grayscale's ETHE halting outflows and seeing a $5,000,000 inflow. On the other hand, Bitcoin ETFs have also seen a surge in net inflows, with BlackRock buying a substantial amount.\n\n2. Institutional interest in Bitcoin ETFs: Investors are showing strong interest in Bitcoin ETFs amid market fluctuations, with BlackRock holding over $21 billion worth of Bitcoin and experiencing minimal outflows.\n\n3. Market dynamics of Bitcoin and Ethereum: Analysis shows that there is prolonged selling pressure in the Bitcoin spot market, while Ethereum spot ETFs have seen inflows for the third consecutive day.\n\n4. Importance of holding one's own keys: The discussion also touches on the importance of holding one's own keys in the crypto market to avoid potential issues.\n\nOverall, the sentiment seems positive towards both Bitcoin and Ethereum, with a focus on institutional investments and market dynamics.","data":[5,6,8,4,18,11,8,5,3,0,1,0,5,13,4,0,46,9,5,2,2,6,4,8,9,19,2,3,6,4,5,3,5,11,3,5,2,5,5,2,5,0,7,3,46,0,3,0,4,20,0,4,0,8,20]},{"label":"DOGE","topics":"dogecoin,doge,shit,type,neiro","description":"The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin, include:\n- Dogecoin price movement and potential for growth\n- Comparison between Ethereum and Dogecoin performance\n- Community takeover of a dog coin on Ethereum\n- NFTs related to Dogecoin\n- Investment strategies and opportunities with Dogecoin and other cryptocurrencies\n\nOverall, the sentiment seems to be positive and optimistic about the future of Dogecoin and other related cryptocurrencies.","data":[2,1,5,2,0,0,0,4,2,4,5,4,3,4,61,6,0,2,2,12,11,8,2,4,7,3,2,11,10,6,6,3,3,4,2,6,8,4,5,7,2,4,5,8,2,8,2,8,1,1,6,0,4,5,6]},{"label":"Art","topics":"art,artist,artists,pieces,physical","description":"The key topics discussed in the messages from twitter are:\n- NFT art\n- Digital Art Day Sale Auction\n- AI art\n- Pixel art\n- BaseCamp 001\n- New technology and its impact on art\n- Sustainable art\n- Commissioned artwork\n- Damien Hirst's 'Civilisation' prints\n- Redefining culture through art\n\nThese topics indicate a strong interest and engagement in the crypto art industry, with discussions ranging from traditional art forms to digital and NFT art, as well as the intersection of art with technology and sustainability.","data":[3,5,41,6,1,1,3,1,4,3,3,6,4,0,5,4,2,4,4,4,2,6,4,2,4,4,4,4,6,4,4,2,2,7,3,2,10,6,4,2,2,2,4,3,5,5,6,2,6,1,3,2,4,0,1]},{"label":"SOL","topics":"solana,sol,stablecoin,ethereum,network","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana Super Tokyo event on 18th August and the listing of JSOL in the Main Pool\n2. Speculation about Solana reaching $1,000 in value\n3. Comparison of PayPal's PYUSD stablecoin supply on Solana and Ethereum\n4. Building on Solana as a strong investment strategy\n5. Bearish signals for Solana and potential price targets like $90 and $190\n6. Challenges faced by SOL projects in maintaining long-term success\n7. Speculation on Solana's price reaching $200 by September 15th, 2024\n8. Comparison between Solana and Ethereum in terms of trading performance\n9. New listings and developments related to Solana on platforms like Mango Markets and YieldFan\n10. Excitement around the potential of stepSOL and its impact on the crypto market\n11. The involvement of trading expert Raoul Pal in the Solana ecosystem\n12. The influence of developers like Bubba on the Ethereum and Solana chains\n13. Overall sentiment towards Solana as a promising blockchain platform in the crypto industry.","data":[3,5,4,2,0,0,5,3,2,5,5,4,4,1,4,4,8,3,5,6,1,4,2,1,1,2,6,1,3,7,2,2,3,6,5,3,0,15,7,1,7,2,4,4,31,3,6,2,8,8,1,3,2,5,0]},{"label":"NFT","topics":"nft,nfts,mint,collection,minted","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Transition from meme coins to NFTs: There is speculation about whether people are moving from meme coins to NFTs, with mentions of early traction in NFT liquidity migration to Uniswap.\n\n2. NFT market trends: Discussions about the NFT market, including the potential for a bull run in 2021 and the impact of Blur farming on NFT prices.\n\n3. Sotheby's auctioning NFTs: Sotheby's, a renowned auction house, is auctioning off Beeple and Cryptopunk NFTs at its Digital Art Day Sale.\n\n4. SuperRare updates: Updates on SuperRare's mint flow and product enhancements for artists on the platform.\n\n5. DraftKings lawsuit and NFT scams: Mention of DraftKings being sued for scamming people via NFTs, highlighting concerns about affinity scams in the DeFi/NFT space.\n\n6. Unique NFTs and collectibles: Discussions about rare NFTs like \"Little Pink Dude\" and unique collectibles available for purchase.\n\n7. ELYS Network Airdrop: Information about the NFT minting process for the ELYS Network Testnet Phase 1, including links for minting different tiers of collections.","data":[5,4,3,5,0,0,2,1,5,2,3,3,4,3,0,4,0,5,4,8,5,6,3,1,4,1,2,5,1,5,3,4,13,6,16,7,6,4,5,3,3,5,5,2,2,3,6,2,0,2,3,3,2,5,6]},{"label":"ETH Price","topics":"eth,ethereum,ethereums,rally,3000","description":"The key topics currently being discussed on Twitter regarding Ethereum (ETH) include:\n1. Price analysis and predictions: Discussions about ETH's current price levels, potential resistance and support levels, as well as predictions for future price movements.\n2. Technical analysis: Analysis of ETH's price movements based on technical indicators such as Elliott Wave theory, death crosses, and trendlines.\n3. Staking ETH: Discussion about the all-time high in staking ETH, indicating bullish sentiment among investors and their willingness to stake ETH for a 3.3% yield.\n4. Comparison with other cryptocurrencies: Comparison of ETH with other cryptocurrencies like Solana, and discussions about why ETH has been struggling in 2024.\n5. Investment strategies: Recommendations for accumulating ETH at certain price levels, with a target of $10,000 or higher, and key support and resistance levels to watch.\n6. Market sentiment: Mixed sentiment with some analysts predicting a major crash for ETH while others are bullish on its potential for a strong upward move.\n7. News and updates: Links to articles and podcasts providing further insights and analysis on ETH and the broader crypto industry.","data":[1,4,3,5,0,1,2,2,2,4,5,4,4,1,0,5,58,5,3,5,2,2,1,2,1,7,0,3,3,4,2,1,2,4,1,2,2,7,3,7,3,1,2,1,2,5,4,0,2,2,1,2,0,1,3]},{"label":"DeFi","topics":"defi,depin,protocol,finance,decentralized","description":"The messages from Twitter suggest that the DeFi (Decentralized Finance) industry is experiencing a potential revival, with projects like Aave seeing record growth in onchain crypto loans. There is discussion about the future of DeFi being decentralized, accessible, and community-driven. Additionally, there are mentions of innovative projects such as RCO Finance with AI features in crypto, workshops with API3DAO on Oracle Extractable Value, and partnerships with ICN Protocol for a decentralized cloud operating system. The industry is also facing challenges such as backlash over new SEC rules and a decrease in DeFi dominance. However, there are positive developments like Solana's soaring DeFi volume and discussions about transformative platforms. Overall, the DeFi industry is evolving with new projects and partnerships, showcasing the potential for growth and innovation in the space.","data":[5,1,2,3,2,2,5,0,2,3,1,4,2,14,6,2,2,3,3,4,3,0,5,6,4,5,7,2,7,3,6,0,5,7,1,7,1,1,6,6,7,5,5,4,5,3,3,0,3,5,3,1,1,2,3]},{"label":"BTC Mining","topics":"miners,mining,revenue,q2,block","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin mining and its impact on the grid\n2. Decentralization in Bitcoin mining\n3. Financial performance of Bitcoin mining companies such as Hut 8 and Bitfarms\n4. The future of Bitcoin mining and the importance of transaction fees\n5. Decrease in Bitcoin reserves on centralized exchanges\n6. Net losses faced by Bitcoin mining firms like Bitfarms and Cipher Mining\n7. Decline in Bitcoin miners' revenues\n8. Performance of Bitcoin miner stocks like $MIGI\n9. The time it would take for the entire world's population to mine 1 Bitcoin block by hand\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the Bitcoin mining industry, as well as the broader implications for the crypto market.","data":[2,3,3,2,9,32,6,5,0,3,5,3,0,2,1,2,0,2,2,0,1,0,4,7,4,3,0,1,2,0,3,1,16,3,1,0,0,0,9,2,6,0,4,3,5,2,0,3,3,0,0,1,0,4,1]},{"label":"SHIB","topics":"shiba,shib,burn,surge,presale","description":"The key topics currently discussed on Twitter regarding the crypto industry include:\n1. Shiba Inu (SHIB) updates and developments, such as burns, price impact, ecosystem updates, and fiat-on-ramp service.\n2. Shiba Inu's lead in the crypto market, including potential price surges and market patterns.\n3. Introduction of new meme coins like Shiba Shootout (SHIBASHOOT) with unique Play-to-Earn (P2E) games.\n4. Market signals indicating a potential 129% surge for Shiba Inu (SHIB).\n5. Shiba Inu whales offloading holdings amidst price decline and stagnant adoption.\n6. The impact of the 1 CENT DREAM Project on SHIB's token supply and price target.\n7. Shiba Inu price stagnation amid declining futures open interest.\n8. Market trends and updates related to other cryptocurrencies like Kai (KAI) and Swagger.\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and analysis surrounding Shiba Inu and other cryptocurrencies in the market.","data":[0,4,0,0,0,0,1,2,0,0,4,1,1,1,3,2,1,1,0,1,1,0,0,2,0,0,35,1,6,0,2,0,3,2,2,1,0,1,1,2,2,1,2,24,1,0,0,0,0,0,0,0,0,2,0]},{"label":"TON","topics":"ton,binance,ventures,earn,super","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the addition of Toncoin to Binance's spot market, the launch of TON Ventures, the potential price increase of Toncoin to over $15 by the end of the year, the impact of Binance's listing on Toncoin's price, the rise in Toncoin's value, Binance's new 'Super Earn' feature, the integration of TON with Telegram, the successful listing of Toncoin on Bitrue, the auction of the luxury name Richi for TON, the benefits of Boson ecosystem growth, and the listing of Toncoin on Binance's launchpool. These topics reflect the excitement and speculation surrounding Toncoin and its potential for growth in the crypto market.","data":[2,7,2,3,1,0,1,0,0,0,1,2,0,1,0,2,1,4,3,1,0,1,1,2,1,1,5,1,2,2,1,1,2,2,4,0,0,1,0,3,0,0,0,0,1,1,5,0,0,32,0,2,0,0,2]},{"label":"Whales","topics":"whale,whales,ico,okx,eth","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include whale activity, large transactions, potential market manipulation by whales, Ethereum price fluctuations, whale deposits to exchanges, whale dumping of tokens, and the impact of whale activity on various cryptocurrencies such as Bitcoin, Ethereum, Solana, and Maker. The community is closely monitoring whale movements, trading volumes on decentralized exchanges, and potential catalysts for market volatility. Additionally, there is speculation about the motives behind whale actions and their potential impact on the overall market.","data":[2,2,0,2,3,3,1,0,2,0,0,5,0,3,3,2,3,1,0,1,0,2,0,0,0,2,0,2,1,0,4,6,5,2,1,4,0,0,2,2,2,1,3,0,1,0,0,1,2,1,1,1,0,16,1]},{"label":"Buy the dip ","topics":"dip,market,bull,buy,markets","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Buying the dip: There is a lot of discussion about buying the dip in the crypto market, with some mentioning that institutions are buying the dip and others emphasizing the importance of timing and strategy in buying low and selling high.\n\n2. Market resilience: Despite global selloffs and market fluctuations, the crypto markets are showing resilience, with OTC transactions surging.\n\n3. Exit liquidity crunch: There is mention of an exit liquidity crunch looming since March, indicating potential challenges for investors in the market.\n\n4. Friendtech pump and dump: There is discussion about the downfall of $friend, which was initially pumped but has since seen a significant decrease in value.\n\n5. Market analysis and predictions: Some users are sharing their market analysis and predictions, highlighting the importance of understanding market trends and making informed decisions.\n\nOverall, the sentiment in the crypto community seems to be a mix of caution, optimism, and strategic thinking when it comes to navigating the volatile crypto market.","data":[1,0,0,2,0,0,0,15,1,1,0,2,3,0,5,3,1,0,2,0,4,0,1,0,1,3,0,0,2,1,5,7,4,0,1,1,2,1,1,1,0,1,1,0,1,1,1,6,4,0,1,0,4,2,2]},{"label":"The US Government 10k BTC","topics":"road,government,10000,coinbase,prime","description":"The key topic currently discussed on Twitter is the US government transferring large amounts of Bitcoin to Coinbase. This has raised speculation about the government's intentions and potential impact on the market. Additionally, there is discussion about Iran offering rewards for information on illegal crypto miners, as well as the Philippine central bank lifting a digital banking ban. Overall, the crypto community is closely monitoring these developments and their potential implications.","data":[1,1,4,1,0,1,9,0,1,0,1,1,1,0,0,1,0,0,0,0,0,15,21,0,1,1,3,0,1,2,0,1,5,2,2,0,1,0,1,0,0,2,2,5,0,1,3,0,1,0,0,0,1,0,1]},{"label":"LINK","topics":"chainlink,crosschain,optimism,bridge,interoperability","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include the integration of Chainlink's Data Streams and VRF on Base, the potential benefits of a bridge supporting bridging stables between Tron and ETH L2s, the use of Cross-Chain Swap in Mint Club, the integration of Chainlink CCIP by DefiNft for secure cross-chain transfers, Synthetix's upcoming integration of Chainlink Data Streams on Arbitrum, the approval of a new canonical bridge bringing wstETH to BNBCHAIN powered by Axelar and Wormhole, and the essential functions of Chainlink's Proof of Reserve in boosting DeFi and RWAs. Additionally, there is discussion about the recent integration of Chainlink CCIP unlocking powerful cross-chain use cases such as DEXs with multi-chain liquidity, seamless token transfers, and cross-chain lending and borrowing. Furthermore, Puffer Finance's multichain expansion using the xERC20 standard for pufETH is also a topic of interest, highlighting features such as zero slippage, improved security controls, and no vendor lock-ins.","data":[3,0,2,0,0,0,8,1,5,13,0,4,1,0,4,0,2,2,0,1,2,1,0,3,1,4,0,0,5,1,1,0,0,1,1,3,0,1,0,1,0,2,2,0,0,2,1,0,1,2,0,1,3,0,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-32.ts b/priv/repo/major_topics_seed/data-32.ts deleted file mode 100644 index 8878c93734..0000000000 --- a/priv/repo/major_topics_seed/data-32.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '08.08.24', - '09.08.24', - '09.08.24', - '09.08.24', - '09.08.24', - '09.08.24', - '09.08.24', - '09.08.24', - '10.08.24', - '10.08.24', - '10.08.24', - '10.08.24', - '10.08.24', - '10.08.24', - '10.08.24', - '10.08.24', - '11.08.24', - '11.08.24', - '11.08.24', - '11.08.24', - '11.08.24', - '11.08.24', - '11.08.24', - '11.08.24', - '12.08.24', - '12.08.24', - '12.08.24', - '12.08.24', - '12.08.24', - '12.08.24', - '12.08.24', - '12.08.24', - '13.08.24', - '13.08.24', - '13.08.24', - '13.08.24', - '13.08.24', - '13.08.24', - '13.08.24', - '13.08.24', - '14.08.24', - '14.08.24', - '14.08.24', - '14.08.24', - '14.08.24', - '14.08.24', - '14.08.24', - '14.08.24', - '15.08.24', - '15.08.24', - '15.08.24', - '15.08.24', - '15.08.24', - '15.08.24', - '15.08.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'fiat,bitcoin,dont,money,understand', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin's price fluctuations and its impact on governments and society\n- Criticisms of Bitcoin maximalists and their behavior\n- Skepticism towards Bitcoin ETFs and their control by institutions like Blackrock\n- Debate over the importance of altcoin features in relation to Bitcoin scalability and privacy\n- Criticisms of those who overly invest emotions in Bitcoin\n- General disdain towards fiat currency and civilization\n\nOverall, the sentiment in these messages seems to be a mix of skepticism, criticism, and frustration towards various aspects of the crypto industry, particularly Bitcoin and its community.", - data: [ - 15, 9, 12, 18, 65, 59, 6, 9, 12, 10, 9, 10, 8, 13, 15, 11, 4, 13, 28, 15, 9, 10, 16, 9, 10, - 13, 8, 19, 16, 10, 23, 13, 18, 15, 12, 19, 21, 7, 20, 21, 15, 22, 10, 16, 15, 20, 15, 22, - 11, 11, 22, 7, 9, 11, 31, - ], - }, - { - label: 'BTC Price', - topics: 'btc,candle,60k,resistance,weekly', - description: - "Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n\n1. Bitcoin price movements: There is discussion about Bitcoin's price jumping to $58,350 - $59,700, dropping 5% from yesterday's high, retesting the channel bottom as support, and potential resistances at $65k and $67k.\n\n2. Market analysis: Institutions are buying Bitcoin, there are concerns about global economic slowdown and inflation, and technical analysis shows improving charts with a focus on weekly closes above $60k.\n\n3. Altcoins performance: Altcoins are bouncing nicely, with potential upward moves if certain resistance levels are lost.\n\n4. Wave projection for Bitcoin: There is a method discussed for projecting a wave 5 target for Bitcoin using fibs, with a focus on macro wave 4 depth and smaller degree waves 1+3.\n\nOverall, the sentiment seems to be cautiously optimistic with a focus on technical analysis, market trends, and potential price movements in the crypto industry.", - data: [ - 4, 9, 4, 8, 65, 76, 28, 29, 10, 10, 12, 18, 14, 9, 6, 13, 2, 12, 18, 9, 9, 12, 7, 30, 7, 7, - 4, 11, 9, 15, 8, 9, 9, 11, 5, 6, 10, 28, 5, 23, 17, 10, 8, 18, 10, 10, 19, 8, 13, 12, 6, 14, - 8, 22, 9, - ], - }, - { - label: 'CPI', - topics: 'inflation,cpi,fed,rates,cut', - description: - "The key topics currently being discussed on social media regarding the crypto industry include:\n\n1. Inflation rates in various countries such as the UK and the US, and how they impact the economy and cryptocurrency prices.\n2. Speculation about potential interest rate cuts by the Federal Reserve and how it could affect the market.\n3. The stability of digital currencies like USDC as an alternative to local fiat currencies in the face of high currency inflation.\n4. Jerome Powell's statement about inflation being transitory and its implications on the Federal Reserve's policies.\n5. The impact of US CPI inflation easing to 2.9% on Bitcoin prices and the likelihood of rate cuts by the US Fed.\n6. Concerns about potential price controls on food and groceries proposed by Kamala Harris and its potential impact on the market.\n7. Analysis of July US CPI data showing a dip to 2.9% YoY and core inflation at 3.2% YoY, and how it relates to Bitcoin prices remaining stable around $61K.\n\nOverall, the discussions on social media highlight the interconnectedness of inflation rates, interest rate policies, and cryptocurrency prices in the current economic landscape.", - data: [ - 9, 4, 3, 7, 0, 0, 23, 0, 2, 3, 9, 15, 7, 12, 1, 11, 3, 9, 9, 3, 7, 10, 11, 8, 6, 82, 6, 6, - 3, 3, 16, 23, 14, 6, 7, 5, 4, 16, 14, 27, 17, 12, 3, 12, 4, 6, 2, 3, 7, 6, 4, 2, 4, 6, 14, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,gamefi', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include gaming, old-school games like Wolfenstein 3D, anime experiences on platforms like Roblox, Web3 growth and adoption, AI-powered games like Code Caching, online gaming communities like Pixelton Arena, upcoming events like the LaLiga season kickoff with GameOn, engagement challenges on platforms like Steemit, and gaming challenges like the Rainbow Rumble Challenge on XAI_GAMES. Overall, the crypto community on Twitter seems to be actively engaged in discussions related to gaming, technology, and community events.', - data: [ - 7, 2, 12, 8, 1, 0, 7, 6, 12, 9, 8, 9, 5, 7, 7, 6, 2, 13, 9, 7, 50, 13, 12, 5, 14, 3, 13, 5, - 16, 8, 6, 2, 5, 9, 18, 9, 33, 6, 5, 14, 11, 5, 10, 6, 4, 7, 11, 6, 9, 5, 9, 7, 7, 6, 5, - ], - }, - { - label: 'AI', - topics: 'ai,models,human,intelligence,model', - description: - 'The key topics currently discussed in the crypto industry on social media include the integration of artificial intelligence into platforms, the impact of AI on various industries such as health and well-being, the use of AI in cryptocurrency and blockchain technology, the potential for AI to revolutionize various aspects of society, and the role of AI in creating efficiencies and streamlining processes. There is also discussion about the future of AI models and their potential impact on society, as well as the skills and insights needed to succeed in the field of AI product management. Additionally, there is mention of the use of AI in creating art and visual content, as well as debunking myths about AI jobs and the importance of real businesses serving local communities.', - data: [ - 34, 40, 25, 9, 4, 3, 2, 4, 5, 4, 8, 9, 0, 5, 7, 5, 3, 8, 8, 9, 15, 8, 6, 6, 7, 8, 13, 11, 8, - 8, 8, 6, 7, 5, 7, 10, 10, 8, 7, 15, 11, 9, 5, 5, 7, 8, 14, 10, 5, 7, 8, 8, 8, 4, 14, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coin,memes,memecoins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Memecoins: There is a lot of discussion about buying and investing in various memecoins, with users looking for the next big pump and potential 1000x or 1000000x gains.\n- Specific Memecoins: Some specific memecoins like $WIF, $POPCAT, $Giga, $CHAD, $COOL, and $Miladymemecoin are mentioned as potential investment opportunities.\n- Market Manipulation: There are concerns about market manipulation, with mentions of platforms like pumpfun using their treasury to pump random coins and calls to support developers who are actively working on their projects.\n- NFTs and Blockchain Launches: There is anticipation around the launch of L3 blockchain and the potential for NFTs to pump in value.\n- Solana Memecoins: Discussion about which Solana memecoin is the next to go parabolic and comparisons between different coins like $Giga and $CHAD.\n- Market Trends: Users are analyzing market trends, such as the relative strength of meme stocks like $GME and the performance of specific coins in different quarters.\n- Investment Strategies: Users are sharing their investment strategies, such as holding onto certain coins throughout the bull market and looking for versatile meme coins with active developers.\n- Potential Rallies: There is speculation about potential rallies in the market, with mentions of coins like $Miladymemecoin rallying 50% or higher.\n- Community Engagement: Calls to support developers and projects that are actively engaging with the community and working towards long-term value creation.', - data: [ - 8, 7, 6, 5, 3, 0, 1, 5, 8, 8, 8, 6, 5, 3, 5, 7, 9, 3, 9, 9, 2, 9, 2, 13, 9, 2, 3, 5, 6, 12, - 11, 91, 5, 9, 4, 14, 6, 8, 7, 6, 2, 4, 6, 7, 4, 2, 2, 10, 8, 5, 9, 2, 4, 10, 4, - ], - }, - { - label: 'BTC ETF', - topics: 'etfs,etf,net,spot,million', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Inflows and outflows of funds in Ethereum and Bitcoin ETFs: There have been significant inflows in Ethereum ETFs, with Grayscale's ETHE halting outflows and seeing a $5,000,000 inflow. On the other hand, Bitcoin ETFs have also seen a surge in net inflows, with BlackRock buying a substantial amount.\n\n2. Institutional interest in Bitcoin ETFs: Investors are showing strong interest in Bitcoin ETFs amid market fluctuations, with BlackRock holding over $21 billion worth of Bitcoin and experiencing minimal outflows.\n\n3. Market dynamics of Bitcoin and Ethereum: Analysis shows that there is prolonged selling pressure in the Bitcoin spot market, while Ethereum spot ETFs have seen inflows for the third consecutive day.\n\n4. Importance of holding one's own keys: The discussion also touches on the importance of holding one's own keys in the crypto market to avoid potential issues.\n\nOverall, the sentiment seems positive towards both Bitcoin and Ethereum, with a focus on institutional investments and market dynamics.", - data: [ - 5, 6, 8, 4, 18, 11, 8, 5, 3, 0, 1, 0, 5, 13, 4, 0, 46, 9, 5, 2, 2, 6, 4, 8, 9, 19, 2, 3, 6, - 4, 5, 3, 5, 11, 3, 5, 2, 5, 5, 2, 5, 0, 7, 3, 46, 0, 3, 0, 4, 20, 0, 4, 0, 8, 20, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,shit,type,neiro', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin, include:\n- Dogecoin price movement and potential for growth\n- Comparison between Ethereum and Dogecoin performance\n- Community takeover of a dog coin on Ethereum\n- NFTs related to Dogecoin\n- Investment strategies and opportunities with Dogecoin and other cryptocurrencies\n\nOverall, the sentiment seems to be positive and optimistic about the future of Dogecoin and other related cryptocurrencies.', - data: [ - 2, 1, 5, 2, 0, 0, 0, 4, 2, 4, 5, 4, 3, 4, 61, 6, 0, 2, 2, 12, 11, 8, 2, 4, 7, 3, 2, 11, 10, - 6, 6, 3, 3, 4, 2, 6, 8, 4, 5, 7, 2, 4, 5, 8, 2, 8, 2, 8, 1, 1, 6, 0, 4, 5, 6, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,pieces,physical', - description: - "The key topics discussed in the messages from twitter are:\n- NFT art\n- Digital Art Day Sale Auction\n- AI art\n- Pixel art\n- BaseCamp 001\n- New technology and its impact on art\n- Sustainable art\n- Commissioned artwork\n- Damien Hirst's 'Civilisation' prints\n- Redefining culture through art\n\nThese topics indicate a strong interest and engagement in the crypto art industry, with discussions ranging from traditional art forms to digital and NFT art, as well as the intersection of art with technology and sustainability.", - data: [ - 3, 5, 41, 6, 1, 1, 3, 1, 4, 3, 3, 6, 4, 0, 5, 4, 2, 4, 4, 4, 2, 6, 4, 2, 4, 4, 4, 4, 6, 4, - 4, 2, 2, 7, 3, 2, 10, 6, 4, 2, 2, 2, 4, 3, 5, 5, 6, 2, 6, 1, 3, 2, 4, 0, 1, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,stablecoin,ethereum,network', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana Super Tokyo event on 18th August and the listing of JSOL in the Main Pool\n2. Speculation about Solana reaching $1,000 in value\n3. Comparison of PayPal's PYUSD stablecoin supply on Solana and Ethereum\n4. Building on Solana as a strong investment strategy\n5. Bearish signals for Solana and potential price targets like $90 and $190\n6. Challenges faced by SOL projects in maintaining long-term success\n7. Speculation on Solana's price reaching $200 by September 15th, 2024\n8. Comparison between Solana and Ethereum in terms of trading performance\n9. New listings and developments related to Solana on platforms like Mango Markets and YieldFan\n10. Excitement around the potential of stepSOL and its impact on the crypto market\n11. The involvement of trading expert Raoul Pal in the Solana ecosystem\n12. The influence of developers like Bubba on the Ethereum and Solana chains\n13. Overall sentiment towards Solana as a promising blockchain platform in the crypto industry.", - data: [ - 3, 5, 4, 2, 0, 0, 5, 3, 2, 5, 5, 4, 4, 1, 4, 4, 8, 3, 5, 6, 1, 4, 2, 1, 1, 2, 6, 1, 3, 7, 2, - 2, 3, 6, 5, 3, 0, 15, 7, 1, 7, 2, 4, 4, 31, 3, 6, 2, 8, 8, 1, 3, 2, 5, 0, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,mint,collection,minted', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Transition from meme coins to NFTs: There is speculation about whether people are moving from meme coins to NFTs, with mentions of early traction in NFT liquidity migration to Uniswap.\n\n2. NFT market trends: Discussions about the NFT market, including the potential for a bull run in 2021 and the impact of Blur farming on NFT prices.\n\n3. Sotheby's auctioning NFTs: Sotheby's, a renowned auction house, is auctioning off Beeple and Cryptopunk NFTs at its Digital Art Day Sale.\n\n4. SuperRare updates: Updates on SuperRare's mint flow and product enhancements for artists on the platform.\n\n5. DraftKings lawsuit and NFT scams: Mention of DraftKings being sued for scamming people via NFTs, highlighting concerns about affinity scams in the DeFi/NFT space.\n\n6. Unique NFTs and collectibles: Discussions about rare NFTs like \"Little Pink Dude\" and unique collectibles available for purchase.\n\n7. ELYS Network Airdrop: Information about the NFT minting process for the ELYS Network Testnet Phase 1, including links for minting different tiers of collections.", - data: [ - 5, 4, 3, 5, 0, 0, 2, 1, 5, 2, 3, 3, 4, 3, 0, 4, 0, 5, 4, 8, 5, 6, 3, 1, 4, 1, 2, 5, 1, 5, 3, - 4, 13, 6, 16, 7, 6, 4, 5, 3, 3, 5, 5, 2, 2, 3, 6, 2, 0, 2, 3, 3, 2, 5, 6, - ], - }, - { - label: 'ETH Price', - topics: 'eth,ethereum,ethereums,rally,3000', - description: - "The key topics currently being discussed on Twitter regarding Ethereum (ETH) include:\n1. Price analysis and predictions: Discussions about ETH's current price levels, potential resistance and support levels, as well as predictions for future price movements.\n2. Technical analysis: Analysis of ETH's price movements based on technical indicators such as Elliott Wave theory, death crosses, and trendlines.\n3. Staking ETH: Discussion about the all-time high in staking ETH, indicating bullish sentiment among investors and their willingness to stake ETH for a 3.3% yield.\n4. Comparison with other cryptocurrencies: Comparison of ETH with other cryptocurrencies like Solana, and discussions about why ETH has been struggling in 2024.\n5. Investment strategies: Recommendations for accumulating ETH at certain price levels, with a target of $10,000 or higher, and key support and resistance levels to watch.\n6. Market sentiment: Mixed sentiment with some analysts predicting a major crash for ETH while others are bullish on its potential for a strong upward move.\n7. News and updates: Links to articles and podcasts providing further insights and analysis on ETH and the broader crypto industry.", - data: [ - 1, 4, 3, 5, 0, 1, 2, 2, 2, 4, 5, 4, 4, 1, 0, 5, 58, 5, 3, 5, 2, 2, 1, 2, 1, 7, 0, 3, 3, 4, - 2, 1, 2, 4, 1, 2, 2, 7, 3, 7, 3, 1, 2, 1, 2, 5, 4, 0, 2, 2, 1, 2, 0, 1, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,depin,protocol,finance,decentralized', - description: - "The messages from Twitter suggest that the DeFi (Decentralized Finance) industry is experiencing a potential revival, with projects like Aave seeing record growth in onchain crypto loans. There is discussion about the future of DeFi being decentralized, accessible, and community-driven. Additionally, there are mentions of innovative projects such as RCO Finance with AI features in crypto, workshops with API3DAO on Oracle Extractable Value, and partnerships with ICN Protocol for a decentralized cloud operating system. The industry is also facing challenges such as backlash over new SEC rules and a decrease in DeFi dominance. However, there are positive developments like Solana's soaring DeFi volume and discussions about transformative platforms. Overall, the DeFi industry is evolving with new projects and partnerships, showcasing the potential for growth and innovation in the space.", - data: [ - 5, 1, 2, 3, 2, 2, 5, 0, 2, 3, 1, 4, 2, 14, 6, 2, 2, 3, 3, 4, 3, 0, 5, 6, 4, 5, 7, 2, 7, 3, - 6, 0, 5, 7, 1, 7, 1, 1, 6, 6, 7, 5, 5, 4, 5, 3, 3, 0, 3, 5, 3, 1, 1, 2, 3, - ], - }, - { - label: 'BTC Mining', - topics: 'miners,mining,revenue,q2,block', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin mining and its impact on the grid\n2. Decentralization in Bitcoin mining\n3. Financial performance of Bitcoin mining companies such as Hut 8 and Bitfarms\n4. The future of Bitcoin mining and the importance of transaction fees\n5. Decrease in Bitcoin reserves on centralized exchanges\n6. Net losses faced by Bitcoin mining firms like Bitfarms and Cipher Mining\n7. Decline in Bitcoin miners' revenues\n8. Performance of Bitcoin miner stocks like $MIGI\n9. The time it would take for the entire world's population to mine 1 Bitcoin block by hand\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the Bitcoin mining industry, as well as the broader implications for the crypto market.", - data: [ - 2, 3, 3, 2, 9, 32, 6, 5, 0, 3, 5, 3, 0, 2, 1, 2, 0, 2, 2, 0, 1, 0, 4, 7, 4, 3, 0, 1, 2, 0, - 3, 1, 16, 3, 1, 0, 0, 0, 9, 2, 6, 0, 4, 3, 5, 2, 0, 3, 3, 0, 0, 1, 0, 4, 1, - ], - }, - { - label: 'SHIB', - topics: 'shiba,shib,burn,surge,presale', - description: - "The key topics currently discussed on Twitter regarding the crypto industry include:\n1. Shiba Inu (SHIB) updates and developments, such as burns, price impact, ecosystem updates, and fiat-on-ramp service.\n2. Shiba Inu's lead in the crypto market, including potential price surges and market patterns.\n3. Introduction of new meme coins like Shiba Shootout (SHIBASHOOT) with unique Play-to-Earn (P2E) games.\n4. Market signals indicating a potential 129% surge for Shiba Inu (SHIB).\n5. Shiba Inu whales offloading holdings amidst price decline and stagnant adoption.\n6. The impact of the 1 CENT DREAM Project on SHIB's token supply and price target.\n7. Shiba Inu price stagnation amid declining futures open interest.\n8. Market trends and updates related to other cryptocurrencies like Kai (KAI) and Swagger.\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and analysis surrounding Shiba Inu and other cryptocurrencies in the market.", - data: [ - 0, 4, 0, 0, 0, 0, 1, 2, 0, 0, 4, 1, 1, 1, 3, 2, 1, 1, 0, 1, 1, 0, 0, 2, 0, 0, 35, 1, 6, 0, - 2, 0, 3, 2, 2, 1, 0, 1, 1, 2, 2, 1, 2, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, - ], - }, - { - label: 'TON', - topics: 'ton,binance,ventures,earn,super', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the addition of Toncoin to Binance's spot market, the launch of TON Ventures, the potential price increase of Toncoin to over $15 by the end of the year, the impact of Binance's listing on Toncoin's price, the rise in Toncoin's value, Binance's new 'Super Earn' feature, the integration of TON with Telegram, the successful listing of Toncoin on Bitrue, the auction of the luxury name Richi for TON, the benefits of Boson ecosystem growth, and the listing of Toncoin on Binance's launchpool. These topics reflect the excitement and speculation surrounding Toncoin and its potential for growth in the crypto market.", - data: [ - 2, 7, 2, 3, 1, 0, 1, 0, 0, 0, 1, 2, 0, 1, 0, 2, 1, 4, 3, 1, 0, 1, 1, 2, 1, 1, 5, 1, 2, 2, 1, - 1, 2, 2, 4, 0, 0, 1, 0, 3, 0, 0, 0, 0, 1, 1, 5, 0, 0, 32, 0, 2, 0, 0, 2, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,ico,okx,eth', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include whale activity, large transactions, potential market manipulation by whales, Ethereum price fluctuations, whale deposits to exchanges, whale dumping of tokens, and the impact of whale activity on various cryptocurrencies such as Bitcoin, Ethereum, Solana, and Maker. The community is closely monitoring whale movements, trading volumes on decentralized exchanges, and potential catalysts for market volatility. Additionally, there is speculation about the motives behind whale actions and their potential impact on the overall market.', - data: [ - 2, 2, 0, 2, 3, 3, 1, 0, 2, 0, 0, 5, 0, 3, 3, 2, 3, 1, 0, 1, 0, 2, 0, 0, 0, 2, 0, 2, 1, 0, 4, - 6, 5, 2, 1, 4, 0, 0, 2, 2, 2, 1, 3, 0, 1, 0, 0, 1, 2, 1, 1, 1, 0, 16, 1, - ], - }, - { - label: 'Buy the dip ', - topics: 'dip,market,bull,buy,markets', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Buying the dip: There is a lot of discussion about buying the dip in the crypto market, with some mentioning that institutions are buying the dip and others emphasizing the importance of timing and strategy in buying low and selling high.\n\n2. Market resilience: Despite global selloffs and market fluctuations, the crypto markets are showing resilience, with OTC transactions surging.\n\n3. Exit liquidity crunch: There is mention of an exit liquidity crunch looming since March, indicating potential challenges for investors in the market.\n\n4. Friendtech pump and dump: There is discussion about the downfall of $friend, which was initially pumped but has since seen a significant decrease in value.\n\n5. Market analysis and predictions: Some users are sharing their market analysis and predictions, highlighting the importance of understanding market trends and making informed decisions.\n\nOverall, the sentiment in the crypto community seems to be a mix of caution, optimism, and strategic thinking when it comes to navigating the volatile crypto market.', - data: [ - 1, 0, 0, 2, 0, 0, 0, 15, 1, 1, 0, 2, 3, 0, 5, 3, 1, 0, 2, 0, 4, 0, 1, 0, 1, 3, 0, 0, 2, 1, - 5, 7, 4, 0, 1, 1, 2, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 6, 4, 0, 1, 0, 4, 2, 2, - ], - }, - { - label: 'The US Government 10k BTC', - topics: 'road,government,10000,coinbase,prime', - description: - "The key topic currently discussed on Twitter is the US government transferring large amounts of Bitcoin to Coinbase. This has raised speculation about the government's intentions and potential impact on the market. Additionally, there is discussion about Iran offering rewards for information on illegal crypto miners, as well as the Philippine central bank lifting a digital banking ban. Overall, the crypto community is closely monitoring these developments and their potential implications.", - data: [ - 1, 1, 4, 1, 0, 1, 9, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 15, 21, 0, 1, 1, 3, 0, 1, 2, - 0, 1, 5, 2, 2, 0, 1, 0, 1, 0, 0, 2, 2, 5, 0, 1, 3, 0, 1, 0, 0, 0, 1, 0, 1, - ], - }, - { - label: 'LINK', - topics: 'chainlink,crosschain,optimism,bridge,interoperability', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include the integration of Chainlink's Data Streams and VRF on Base, the potential benefits of a bridge supporting bridging stables between Tron and ETH L2s, the use of Cross-Chain Swap in Mint Club, the integration of Chainlink CCIP by DefiNft for secure cross-chain transfers, Synthetix's upcoming integration of Chainlink Data Streams on Arbitrum, the approval of a new canonical bridge bringing wstETH to BNBCHAIN powered by Axelar and Wormhole, and the essential functions of Chainlink's Proof of Reserve in boosting DeFi and RWAs. Additionally, there is discussion about the recent integration of Chainlink CCIP unlocking powerful cross-chain use cases such as DEXs with multi-chain liquidity, seamless token transfers, and cross-chain lending and borrowing. Furthermore, Puffer Finance's multichain expansion using the xERC20 standard for pufETH is also a topic of interest, highlighting features such as zero slippage, improved security controls, and no vendor lock-ins.", - data: [ - 3, 0, 2, 0, 0, 0, 8, 1, 5, 13, 0, 4, 1, 0, 4, 0, 2, 2, 0, 1, 2, 1, 0, 3, 1, 4, 0, 0, 5, 1, - 1, 0, 0, 1, 1, 3, 0, 1, 0, 1, 0, 2, 2, 0, 0, 2, 1, 0, 1, 2, 0, 1, 3, 0, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-33.json b/priv/repo/major_topics_seed/data-33.json deleted file mode 100644 index c2df8b229f..0000000000 --- a/priv/repo/major_topics_seed/data-33.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["15.08.24","16.08.24","16.08.24","16.08.24","16.08.24","16.08.24","16.08.24","16.08.24","17.08.24","17.08.24","17.08.24","17.08.24","17.08.24","17.08.24","17.08.24","17.08.24","18.08.24","18.08.24","18.08.24","18.08.24","18.08.24","18.08.24","18.08.24","18.08.24","19.08.24","19.08.24","19.08.24","19.08.24","19.08.24","19.08.24","19.08.24","19.08.24","20.08.24","20.08.24","20.08.24","20.08.24","20.08.24","20.08.24","20.08.24","20.08.24","21.08.24","21.08.24","21.08.24","21.08.24","21.08.24","21.08.24","21.08.24","21.08.24","22.08.24","22.08.24","22.08.24","22.08.24","22.08.24","22.08.24","22.08.24"],"datasets":[{"label":"Bitcoin","topics":"bitcoin,fiat,money,freedom,understand","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- The importance of Bitcoin adoption over price volatility\n- Fiat money being seen as evil and Bitcoin as ethical\n- Stock market crashes being controlled demolitions\n- Accumulating Bitcoin for financial freedom\n- Scaling censorship resistance and monetary policy\n- Complexity of crypto turning into fun for financial freedom\n- BitApes collection on the blockchain\n- The transformative nature of understanding Bitcoin as a scarce, decentralized asset\n- Criticism of Bitcoin maximalists who don't understand how money or Bitcoin works\n- Concerns over privacy and L1 scaling in the crypto community\n\nOverall, the messages reflect a mix of perspectives on Bitcoin, fiat money, financial freedom, and the future of the crypto industry.","data":[9,8,14,12,93,63,7,13,14,13,11,11,10,22,9,9,9,17,28,10,5,23,21,9,13,14,6,17,14,13,8,17,19,16,7,14,14,23,17,15,16,25,13,16,13,12,11,17,10,10,26,8,10,16,19]},{"label":"BTC Price","topics":"btc,resistance,close,range,break","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin's price movement, with discussions about reaching new all-time highs and potential price targets such as $70k\n- Analysis of Bitcoin liquidity and price levels, with mentions of support and resistance levels\n- Speculation on Bitcoin's future price movements, with predictions ranging from a drop to $44k to a potential surge to $60k\n- Comparison of Bitcoin to traditional assets like Gold, with references to Bitcoin as \"Digital Gold\"\n- Analysis of on-chain metrics and signals indicating bullish trends in the market\n- Mention of specific cryptocurrencies like LINK and their price analysis and roadmap\n- Discussion of upcoming volatility in the market and potential price movements for Bitcoin and other cryptocurrencies\n\nOverall, the sentiment in the messages seems to be positive, with many users expressing optimism about Bitcoin's price potential and market trends.","data":[6,16,8,14,85,87,40,46,6,19,6,20,11,5,5,11,3,18,10,3,8,8,8,27,15,17,5,6,12,15,11,6,13,12,8,10,12,35,15,15,22,6,7,13,8,10,8,11,16,11,9,17,11,23,8]},{"label":"TRX","topics":"tron,sun,sundog,trx,meme","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are meme coins on the Tron blockchain. Specifically, there is a lot of buzz around meme coins such as $SUNCAT, $SUNDOG, and $SUNPUMP. These meme coins are experiencing significant price surges and are being actively traded on various platforms. Additionally, there is excitement around the launch of new meme coin creation platforms on the Tron blockchain, such as @sunpumpmeme. Users are encouraged to participate in airdrop events and trading competitions to earn rewards in TRX. Overall, the Tron community is actively engaged in creating and trading meme coins, with a focus on building the TRON Meme World together.","data":[15,10,4,15,0,7,14,8,14,11,3,11,13,11,1,9,5,4,5,11,10,11,2,7,15,11,14,17,15,14,7,34,8,16,8,8,8,8,9,4,13,10,16,12,8,84,7,9,13,54,30,10,3,8,4]},{"label":"DOGE","topics":"dogecoin,doge,shit,elon,floor","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include Dogecoin, NFTs, BabyDoge Robot Week, Beppy the Doge, cryptocurrency as the \"Star Currency\", and various cryptocurrencies like Bitcoin, Litecoin, and Infinitecoin. There is also mention of finding valuable gems or \"💎's\" at certain Doge price ranges, as well as discussions about humor, viral content, and standing out as an individual in the crypto community. Additionally, there are references to specific Twitter accounts like @MarslandersDoge and calls to join Discord groups related to cryptocurrencies. Overall, the conversations on Twitter seem to revolve around the excitement and potential opportunities within the crypto industry.","data":[7,4,9,13,0,1,13,10,2,6,8,3,8,9,114,9,2,7,14,10,23,5,13,13,10,4,4,10,22,21,9,6,5,8,3,17,8,8,10,6,10,7,10,12,7,13,15,9,10,1,13,8,15,4,8]},{"label":"AI","topics":"ai,google,use,models,data","description":"The messages from twitter discuss a variety of topics related to artificial intelligence (AI), including the use of AI in personal information training, the potential risks and benefits of AI, new features from companies like Microsoft, and the impact of AI on various industries. Additionally, there is mention of AI companies facing challenges in product development and the role of GPUs in powering deep learning. Overall, the messages highlight the ongoing advancements and debates surrounding AI technology.","data":[23,43,14,4,0,1,7,5,4,5,7,8,10,12,3,5,3,8,6,6,12,5,5,5,6,7,9,8,9,7,1,4,3,3,8,8,5,7,7,14,7,6,6,7,2,5,17,12,7,6,5,5,4,7,8]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and its potential for mass adoption\n- Play-to-earn models and the concept of GameFi\n- Integration of blockchain technology in gaming\n- Launch of new games on blockchain platforms like Solana\n- Collaboration between gaming companies and blockchain projects\n- Community engagement and rewards in gaming ecosystems\n- Emerging blue-chip gaming projects\n- NFTs and their role in gaming\n- Web2/Web3 hybrid strategies in gaming\n- Events and conferences focused on Web3 gaming and NFTs\n\nOverall, the discussions revolve around the intersection of gaming and blockchain technology, with a focus on innovation, accessibility, and rewards for users.","data":[4,1,7,4,0,0,4,0,3,8,7,2,5,4,6,4,4,8,8,34,22,6,9,6,8,7,4,3,5,9,8,3,4,11,7,4,27,4,7,12,6,4,4,8,7,3,8,3,4,4,2,4,4,11,10]},{"label":"Art","topics":"art,artists,artist,work,piece","description":"The key topics discussed in the messages from twitter are NFT art, tokenization of art and collectibles, the art market, historical art value, and creating art. The messages also mention specific artists and their work, as well as the process of creating art and turning ideas into art. The significance of original art and the value of historical art are highlighted, along with the idea of tokenizing art to unlock more value. The messages also touch on the attention economy in social media and the impact it has on the art market. Overall, the messages reflect a strong interest in art, creativity, and the intersection of art and technology.","data":[4,4,53,5,0,0,7,7,2,6,6,8,2,3,4,9,2,3,7,6,7,5,7,3,6,6,2,7,6,3,10,2,4,5,5,13,8,4,6,1,3,0,6,9,2,4,5,6,7,2,2,4,5,5,8]},{"label":"DOGS, BONE","topics":"dogs,dog,bitget,listing,deposit","description":"The key topics currently discussed in the crypto industry on Twitter include the listing of $DOGS on Binance, the anticipation of a run on meme coins, the influence of Binance as an exchange, the listing of $BONE on Raydium Protocol, the support for $DOGS deposits on Bitrue, the upcoming airdrop for $DOGS token, the launch of DOTphin NFT at Decoded 2024, the listing of $ORDER on Bybit Pre-Market, the community and airdrop for $DOGS token, the listing of $CAT on KuCoin, and the rewards and promotions related to $DOGS on Bitget. There is also discussion about the excitement surrounding the listing of $DOGS on Binance and the opportunity for users to claim tokens by completing certain tasks.","data":[7,10,2,8,5,8,8,2,5,8,3,1,1,9,92,5,3,3,2,3,8,0,3,1,1,2,6,7,10,2,3,3,0,20,6,8,1,3,2,4,1,3,1,1,5,4,0,2,6,0,2,1,1,6,6]},{"label":"BTC Mining","topics":"mining,miners,miner,energy,bitcoin","description":"The key topics currently discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining stocks being considered as the best BTC proxy bets\n- Comparison of Microstrategy's Bitcoin holdings to theoretical Ether returns\n- U.S.-listed Bitcoin miners having an advantage over unlisted peers\n- The use of transformer oil to cool rigs in Bitcoin mining\n- Peru's copper output falling short of goals\n- CrytocoinMiner cloud mining business launched by top Bitcoin miners\n- DeMi making Bitcoin mining as simple as a few clicks\n- Bitcoin companies using flared methane from natural gas operations to power their operations\n- BTC mining profitability at an all-time low\n- Bernstein rating multiple Bitcoin mining stocks as 'outperform'\n- Potential major market changes in 2024 for Bitcoin miners\n- Top 5 news highlights including potential gains for Bitcoin miners from AI and HPC shift, doubts on BTC dominance, and bullish signals aligning with BTC price\n- Ranking of 26 publicly traded Bitcoin miners based on BTC HODL\n\nThese topics cover a range of discussions related to Bitcoin mining, stocks, profitability, market changes, and industry trends.","data":[5,5,1,5,50,10,2,4,3,4,10,5,0,0,0,6,1,4,3,6,3,2,5,6,14,4,9,1,1,0,1,3,24,6,4,4,4,5,2,4,10,13,4,7,6,1,2,3,3,2,2,2,3,1,2]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics discussed in the messages from Twitter are meme coins, memecoins, AI learning from memes, popular memecoins with market cap below $10M, favorite meme coins, strong community support for meme coins, meme art, the future of memecoins, insider control in memecoins, speculation on meme coins with good intentions and real teams, avoiding pump and dump schemes, and potential liquidity issues with TRX memes. The messages also mention specific meme coins such as $PEIPEI, $GIGA, $APU, $BYTE, and TRX. Overall, the discussion revolves around the growing popularity and potential risks associated with meme coins in the crypto industry.","data":[2,5,6,4,0,0,2,9,4,3,5,2,6,5,1,5,1,10,5,4,4,6,4,7,6,8,1,2,2,2,3,68,4,6,1,2,1,4,3,2,2,1,5,2,4,6,6,6,6,5,2,1,5,6,4]},{"label":"SOL","topics":"solana,sol,memecoin,outflows,solanas","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- Solana (SOL) and potential investment opportunities\n- Memecoins and their impact on the market\n- Speculation on the launch of different tokens on various chains\n- Price predictions and technical analysis for Solana\n- Community-driven projects like NEIRO/SOL\n- Trading competitions and rewards on platforms like BitMEX\n- New token launches on the Solana chain, such as SOLBO\n\nOverall, the discussions range from investment strategies and market analysis to community-driven projects and trading competitions within the Solana ecosystem.","data":[5,3,3,6,0,1,2,6,4,4,7,4,1,6,2,5,6,7,8,1,0,3,2,3,3,7,2,3,3,7,5,6,2,5,2,6,1,8,3,6,3,5,6,34,5,1,5,3,2,4,4,2,1,3,4]},{"label":"CPI","topics":"inflation,prices,government,spending,caused","description":"The key topics discussed in the messages from twitter include:\n- Inflation and its impact on the economy\n- Government policies and their effects on food prices\n- Healthcare costs and prescription drug prices\n- The role of the Federal Reserve in currency value\n- Taxation and tax appeals in the consumer goods industry\n\nOverall, the messages highlight concerns about inflation, government policies, and economic issues affecting everyday Americans.","data":[4,0,3,6,1,3,2,0,5,1,5,6,1,6,1,7,2,5,7,3,0,13,10,3,1,40,0,3,3,2,4,0,6,1,1,2,3,9,5,9,2,5,2,6,2,1,4,8,1,3,1,2,2,1,7]},{"label":"Recession","topics":"recession,fed,cut,jobs,rate","description":"The key topics discussed in the messages from twitter are:\n1. US employment rising by 1.3% in the year through March 2024\n2. Market impact of Fed's Daly backing gradual interest rate cuts\n3. Market reaction to BLS revision numbers\n4. Potential downward revision of up to a million US jobs\n5. Political uncertainty following Kishida's exit and its impact on BOJ's rate hike strategy\n6. Discussion on global crypto news\n7. Speculation on rate cuts during a known recession\n8. US inflation rate falling from over 9% to just under 3%\n9. Waiting for the next round of quantitative easing\n10. Sahm Rule creator discussing the state of the labor market and recession possibility\n11. Significant downward job revisions from March 2023-March 2024\n12. Predicting stock market crashes and economists' track record with recessions.","data":[2,2,5,5,0,0,10,0,5,4,3,2,2,1,6,6,0,6,4,1,3,15,6,2,3,10,6,2,4,5,25,3,5,1,2,8,1,2,4,16,5,4,2,1,3,5,3,3,4,2,0,1,1,0,6]},{"label":"NFT","topics":"nfts,nft,floor,sales,fun","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the resurgence of NFTs, the comparison of OG NFT projects like @pudgypenguins to newer teams, the debate over legacy IPs versus innovation and quality in NFT projects, the top NFT marketplaces of 2024, the ongoing success of NFT collections like @artblocks_io and @AxieInfinity, and the development of collector tools for NFT collections like the PUNK Armada. Additionally, there is a focus on personal experiences with minting NFTs, such as the first NFT minted and the excitement of owning a unique digital asset. Overall, the crypto community is actively engaging in discussions about the evolution and future of NFTs and the broader blockchain industry.","data":[5,3,3,2,0,0,0,3,5,4,8,4,5,3,1,2,4,6,5,6,2,3,5,6,3,2,1,7,4,2,9,4,3,4,30,2,3,2,6,2,5,8,4,4,4,3,1,5,3,1,4,1,4,5,4]},{"label":"DeFi","topics":"defi,protocols,dex,lending,crosschain","description":"Based on the messages from twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. DeFi (Decentralized Finance) adoption across different regions, such as Europe, Asia, Latin America, and Africa.\n2. The role of Autopilot in simplifying complex decisions in DeFi.\n3. Privacy concerns and the importance of privacy in DeFi growth.\n4. Decentralized Exchanges (DEXs) and their role in secure and innovative crypto trading.\n5. RWAs (Real-World Assets) as a solution to DeFi's boom-bust cycles.\n6. Building DeFi projects in the Sui ecosystem.\n7. Smart contract audits for DEXs like ociswap on the Radix Network.\n8. Liquid restaking on Solana with the RenzoProtocol.\n9. Exploring the ALEX ecosystem for precise trading and token launching.\n10. DeFi Risk Guidelines and the importance of compliance and licensing.\n11. Recent developments in DeFi, such as Binance Labs backing Solayer and Renzo launching ezSOL.\n\nOverall, the discussions on social media indicate a growing interest and innovation in the DeFi space, with a focus on regional adoption, simplifying processes, enhancing security, and exploring new opportunities for growth and development.","data":[2,2,2,3,0,0,2,4,4,4,6,4,1,17,4,7,4,6,4,3,1,4,5,5,5,1,8,5,5,3,3,4,2,6,12,3,2,5,4,3,3,6,2,3,3,3,3,5,3,1,2,2,3,3,4]},{"label":"ETF Flows","topics":"etfs,net,inflows,spot,etf","description":"The key topics currently discussed in the crypto industry on Twitter are:\n- Ethereum Spot ETF Net Inflow\n- Bitcoin ETFs trading volume\n- Arbitrum farms\n- Inflows and outflows of Bitcoin and Ethereum funds\n- Institutional demand for Bitcoin ETFs\n- Longest withdrawal streak for US Spot Ethereum ETFs\n- Market expectations for spot Ethereum ETFs\n- Comparison of Bitcoin and Ethereum ETF investments\n\nOverall, there is a mix of positive and negative sentiment surrounding the ETFs for both Bitcoin and Ethereum, with Bitcoin ETFs attracting more investments compared to Ethereum ETFs.","data":[1,0,1,2,10,3,0,0,0,0,0,0,8,2,0,0,13,0,1,2,2,3,1,1,2,5,2,0,0,1,2,1,3,10,0,2,0,0,0,2,2,2,6,3,43,0,3,1,0,16,0,4,0,4,2]},{"label":"U.S. Taxes","topics":"tax,gains,capital,25,proposal","description":"The key topics discussed in the messages from twitter include:\n- Opposition to taxing unrealized gains, with arguments that it is unfair and un-American\n- Criticism of tipping culture and arguments against mandatory tipping\n- Support for not taxing Bitcoin tips and person-to-person payments\n- Criticism of corporate taxes and calls for corporations to pay their fair share\n- Discussion of Kamala Harris's proposed tax on unrealized capital gains and corporate tax rate increase if elected\n\nOverall, the messages reflect a mix of opinions on taxation policies, tipping practices, and corporate responsibility.","data":[3,0,4,1,0,0,0,0,5,2,0,5,1,3,0,4,2,1,1,2,2,5,2,2,6,5,2,2,4,0,1,0,0,1,2,5,5,2,7,4,2,1,0,2,1,6,29,6,3,1,8,0,6,1,1]},{"label":"SHIB","topics":"shib,burn,presale,lead,doge","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Shiba Inu (SHIB) reaching $0.01 before 2050\n- Shiba Inu Lead expressing concerns about the surge in Shadowcats as ShibaCon nears\n- Shiba Inu Lead stating there is no need for his face to become a public figure\n- Kusama's cryptic tweet hinting at Shiba Inu's remarkable success\n- Shiba Inu's open interest spiking 13%, with analysts foreseeing a 500% rally\n- Shiba Inu price potentially providing a buying opportunity before it skyrockets by 50%\n- Analysts expecting Shiba Inu (SHIB) to bounce hard after a dip, with Ethereum Classic (ETC) holders hedging bets with 100x potential star\n- Shytoshi Kusama, Shiba Inu's lead developer, sharing vital insights on ShibHub, 'The Heart of the Shiba Inu ecosystem'\n- The rise to stardom of Kabosu, the dog that inspired the first memecoin known as Dogecoin\n- Discussion about various cryptocurrencies like Kagura, Ken, Doge, and Kabosu\n- Encouragement to hold Shiba Inu responsibly for potential generational wealth\n- Big buys coming in for Kabosu on Uniswap, with a new holder joining the community with a $13k buy\n\nOverall, the discussions revolve around price predictions, developer insights, cryptocurrency projects, and potential investment opportunities within the crypto industry.","data":[0,4,0,2,0,0,2,3,1,1,1,4,1,1,4,1,3,5,0,0,1,3,0,4,0,2,27,7,5,2,1,1,0,3,2,0,3,0,2,3,2,2,21,7,0,1,2,0,0,0,3,4,0,2,1]},{"label":"ETH Price","topics":"ethereum,eth,ether,price,ethereums","description":"The key topics currently discussed on Twitter regarding Ethereum and the crypto industry include:\n\n1. Ethereum reaching an all-time high of $5200 and discussions about its future price action.\n2. Speculation on Ethereum's potential for expansion and market trends.\n3. Comparisons between Ethereum and other altcoins like Solana.\n4. Updates on Ethereum Name Service (ENS) domain prices.\n5. Analysis on Ethereum's price movements and potential resistance levels.\n6. Debate on whether Ethereum can bounce back after a price dip.\n7. Predictions on Ethereum's price outlook and potential for a breakout.\n8. Skepticism about Ethereum reaching $10k due to low user activity and inflation concerns.\n9. Technical analysis of Ethereum price levels and trading ranges.\n\nOverall, the sentiment on Twitter seems to be mixed with some users bullish on Ethereum's future while others express doubts about its long-term prospects.","data":[1,1,4,1,0,0,3,1,0,0,2,1,0,1,1,2,65,4,2,0,1,1,0,3,0,3,0,1,3,2,2,0,1,2,0,0,0,5,2,2,0,0,2,0,2,0,3,2,2,1,0,1,0,1,2]},{"label":"XRP","topics":"xrp,ripple,sec,appeal,altcoins","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. SEC v. Ripple: The SEC is pushing back against Hex founder Richard Heart's efforts to dismiss the case. Ripple's legal chief anticipates a possible SEC appeal in the XRP case despite the court's 10% reversal rate.\n\n2. XRP Price Prediction: Analysts are predicting a 25% rally for XRP, with optimism growing amid potential ETF approval and Wells Fargo adoption.\n\n3. Radix (XRD): There is anticipation for institutional growth for Radix (XRD) as the team focuses on providing liquidity for institutions to join the ecosystem.\n\n4. XRP Price Movement: XRP is on fire, reclaiming the $0.60 mark, with bullish signals in play and potential for reaching new heights.\n\n5. RippleNet Committee: Lawyer Bill Morgan reveals that Bank of America and Standard Chartered were on the RippleNet committee, sparking speculation about their relationship.\n\n6. Ripple Swell 2024: The speaker lineup for Ripple Swell 2024 includes influential voices in blockchain, fintech, and payments, such as Brad Garlinghouse, CEO of Ripple, and Superintendent Adrienne Harris.","data":[2,5,1,1,0,0,0,1,1,6,0,2,2,3,1,1,1,7,3,1,3,0,1,2,0,3,2,0,3,1,0,0,0,1,1,1,2,9,1,4,13,4,5,3,1,0,1,1,3,0,0,3,2,3,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-33.ts b/priv/repo/major_topics_seed/data-33.ts deleted file mode 100644 index 6a2fe1fdd4..0000000000 --- a/priv/repo/major_topics_seed/data-33.ts +++ /dev/null @@ -1,265 +0,0 @@ -export const NARRATIVES = { - labels: [ - '15.08.24', - '16.08.24', - '16.08.24', - '16.08.24', - '16.08.24', - '16.08.24', - '16.08.24', - '16.08.24', - '17.08.24', - '17.08.24', - '17.08.24', - '17.08.24', - '17.08.24', - '17.08.24', - '17.08.24', - '17.08.24', - '18.08.24', - '18.08.24', - '18.08.24', - '18.08.24', - '18.08.24', - '18.08.24', - '18.08.24', - '18.08.24', - '19.08.24', - '19.08.24', - '19.08.24', - '19.08.24', - '19.08.24', - '19.08.24', - '19.08.24', - '19.08.24', - '20.08.24', - '20.08.24', - '20.08.24', - '20.08.24', - '20.08.24', - '20.08.24', - '20.08.24', - '20.08.24', - '21.08.24', - '21.08.24', - '21.08.24', - '21.08.24', - '21.08.24', - '21.08.24', - '21.08.24', - '21.08.24', - '22.08.24', - '22.08.24', - '22.08.24', - '22.08.24', - '22.08.24', - '22.08.24', - '22.08.24', - ], - datasets: [ - { - label: 'Bitcoin', - topics: 'bitcoin,fiat,money,freedom,understand', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- The importance of Bitcoin adoption over price volatility\n- Fiat money being seen as evil and Bitcoin as ethical\n- Stock market crashes being controlled demolitions\n- Accumulating Bitcoin for financial freedom\n- Scaling censorship resistance and monetary policy\n- Complexity of crypto turning into fun for financial freedom\n- BitApes collection on the blockchain\n- The transformative nature of understanding Bitcoin as a scarce, decentralized asset\n- Criticism of Bitcoin maximalists who don't understand how money or Bitcoin works\n- Concerns over privacy and L1 scaling in the crypto community\n\nOverall, the messages reflect a mix of perspectives on Bitcoin, fiat money, financial freedom, and the future of the crypto industry.", - data: [ - 9, 8, 14, 12, 93, 63, 7, 13, 14, 13, 11, 11, 10, 22, 9, 9, 9, 17, 28, 10, 5, 23, 21, 9, 13, - 14, 6, 17, 14, 13, 8, 17, 19, 16, 7, 14, 14, 23, 17, 15, 16, 25, 13, 16, 13, 12, 11, 17, 10, - 10, 26, 8, 10, 16, 19, - ], - }, - { - label: 'BTC Price', - topics: 'btc,resistance,close,range,break', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin's price movement, with discussions about reaching new all-time highs and potential price targets such as $70k\n- Analysis of Bitcoin liquidity and price levels, with mentions of support and resistance levels\n- Speculation on Bitcoin's future price movements, with predictions ranging from a drop to $44k to a potential surge to $60k\n- Comparison of Bitcoin to traditional assets like Gold, with references to Bitcoin as \"Digital Gold\"\n- Analysis of on-chain metrics and signals indicating bullish trends in the market\n- Mention of specific cryptocurrencies like LINK and their price analysis and roadmap\n- Discussion of upcoming volatility in the market and potential price movements for Bitcoin and other cryptocurrencies\n\nOverall, the sentiment in the messages seems to be positive, with many users expressing optimism about Bitcoin's price potential and market trends.", - data: [ - 6, 16, 8, 14, 85, 87, 40, 46, 6, 19, 6, 20, 11, 5, 5, 11, 3, 18, 10, 3, 8, 8, 8, 27, 15, 17, - 5, 6, 12, 15, 11, 6, 13, 12, 8, 10, 12, 35, 15, 15, 22, 6, 7, 13, 8, 10, 8, 11, 16, 11, 9, - 17, 11, 23, 8, - ], - }, - { - label: 'TRX', - topics: 'tron,sun,sundog,trx,meme', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry are meme coins on the Tron blockchain. Specifically, there is a lot of buzz around meme coins such as $SUNCAT, $SUNDOG, and $SUNPUMP. These meme coins are experiencing significant price surges and are being actively traded on various platforms. Additionally, there is excitement around the launch of new meme coin creation platforms on the Tron blockchain, such as @sunpumpmeme. Users are encouraged to participate in airdrop events and trading competitions to earn rewards in TRX. Overall, the Tron community is actively engaged in creating and trading meme coins, with a focus on building the TRON Meme World together.', - data: [ - 15, 10, 4, 15, 0, 7, 14, 8, 14, 11, 3, 11, 13, 11, 1, 9, 5, 4, 5, 11, 10, 11, 2, 7, 15, 11, - 14, 17, 15, 14, 7, 34, 8, 16, 8, 8, 8, 8, 9, 4, 13, 10, 16, 12, 8, 84, 7, 9, 13, 54, 30, 10, - 3, 8, 4, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,shit,elon,floor', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include Dogecoin, NFTs, BabyDoge Robot Week, Beppy the Doge, cryptocurrency as the "Star Currency", and various cryptocurrencies like Bitcoin, Litecoin, and Infinitecoin. There is also mention of finding valuable gems or "💎\'s" at certain Doge price ranges, as well as discussions about humor, viral content, and standing out as an individual in the crypto community. Additionally, there are references to specific Twitter accounts like @MarslandersDoge and calls to join Discord groups related to cryptocurrencies. Overall, the conversations on Twitter seem to revolve around the excitement and potential opportunities within the crypto industry.', - data: [ - 7, 4, 9, 13, 0, 1, 13, 10, 2, 6, 8, 3, 8, 9, 114, 9, 2, 7, 14, 10, 23, 5, 13, 13, 10, 4, 4, - 10, 22, 21, 9, 6, 5, 8, 3, 17, 8, 8, 10, 6, 10, 7, 10, 12, 7, 13, 15, 9, 10, 1, 13, 8, 15, - 4, 8, - ], - }, - { - label: 'AI', - topics: 'ai,google,use,models,data', - description: - 'The messages from twitter discuss a variety of topics related to artificial intelligence (AI), including the use of AI in personal information training, the potential risks and benefits of AI, new features from companies like Microsoft, and the impact of AI on various industries. Additionally, there is mention of AI companies facing challenges in product development and the role of GPUs in powering deep learning. Overall, the messages highlight the ongoing advancements and debates surrounding AI technology.', - data: [ - 23, 43, 14, 4, 0, 1, 7, 5, 4, 5, 7, 8, 10, 12, 3, 5, 3, 8, 6, 6, 12, 5, 5, 5, 6, 7, 9, 8, 9, - 7, 1, 4, 3, 3, 8, 8, 5, 7, 7, 14, 7, 6, 6, 7, 2, 5, 17, 12, 7, 6, 5, 5, 4, 7, 8, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and its potential for mass adoption\n- Play-to-earn models and the concept of GameFi\n- Integration of blockchain technology in gaming\n- Launch of new games on blockchain platforms like Solana\n- Collaboration between gaming companies and blockchain projects\n- Community engagement and rewards in gaming ecosystems\n- Emerging blue-chip gaming projects\n- NFTs and their role in gaming\n- Web2/Web3 hybrid strategies in gaming\n- Events and conferences focused on Web3 gaming and NFTs\n\nOverall, the discussions revolve around the intersection of gaming and blockchain technology, with a focus on innovation, accessibility, and rewards for users.', - data: [ - 4, 1, 7, 4, 0, 0, 4, 0, 3, 8, 7, 2, 5, 4, 6, 4, 4, 8, 8, 34, 22, 6, 9, 6, 8, 7, 4, 3, 5, 9, - 8, 3, 4, 11, 7, 4, 27, 4, 7, 12, 6, 4, 4, 8, 7, 3, 8, 3, 4, 4, 2, 4, 4, 11, 10, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,work,piece', - description: - 'The key topics discussed in the messages from twitter are NFT art, tokenization of art and collectibles, the art market, historical art value, and creating art. The messages also mention specific artists and their work, as well as the process of creating art and turning ideas into art. The significance of original art and the value of historical art are highlighted, along with the idea of tokenizing art to unlock more value. The messages also touch on the attention economy in social media and the impact it has on the art market. Overall, the messages reflect a strong interest in art, creativity, and the intersection of art and technology.', - data: [ - 4, 4, 53, 5, 0, 0, 7, 7, 2, 6, 6, 8, 2, 3, 4, 9, 2, 3, 7, 6, 7, 5, 7, 3, 6, 6, 2, 7, 6, 3, - 10, 2, 4, 5, 5, 13, 8, 4, 6, 1, 3, 0, 6, 9, 2, 4, 5, 6, 7, 2, 2, 4, 5, 5, 8, - ], - }, - { - label: 'DOGS, BONE', - topics: 'dogs,dog,bitget,listing,deposit', - description: - 'The key topics currently discussed in the crypto industry on Twitter include the listing of $DOGS on Binance, the anticipation of a run on meme coins, the influence of Binance as an exchange, the listing of $BONE on Raydium Protocol, the support for $DOGS deposits on Bitrue, the upcoming airdrop for $DOGS token, the launch of DOTphin NFT at Decoded 2024, the listing of $ORDER on Bybit Pre-Market, the community and airdrop for $DOGS token, the listing of $CAT on KuCoin, and the rewards and promotions related to $DOGS on Bitget. There is also discussion about the excitement surrounding the listing of $DOGS on Binance and the opportunity for users to claim tokens by completing certain tasks.', - data: [ - 7, 10, 2, 8, 5, 8, 8, 2, 5, 8, 3, 1, 1, 9, 92, 5, 3, 3, 2, 3, 8, 0, 3, 1, 1, 2, 6, 7, 10, 2, - 3, 3, 0, 20, 6, 8, 1, 3, 2, 4, 1, 3, 1, 1, 5, 4, 0, 2, 6, 0, 2, 1, 1, 6, 6, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,energy,bitcoin', - description: - "The key topics currently discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining stocks being considered as the best BTC proxy bets\n- Comparison of Microstrategy's Bitcoin holdings to theoretical Ether returns\n- U.S.-listed Bitcoin miners having an advantage over unlisted peers\n- The use of transformer oil to cool rigs in Bitcoin mining\n- Peru's copper output falling short of goals\n- CrytocoinMiner cloud mining business launched by top Bitcoin miners\n- DeMi making Bitcoin mining as simple as a few clicks\n- Bitcoin companies using flared methane from natural gas operations to power their operations\n- BTC mining profitability at an all-time low\n- Bernstein rating multiple Bitcoin mining stocks as 'outperform'\n- Potential major market changes in 2024 for Bitcoin miners\n- Top 5 news highlights including potential gains for Bitcoin miners from AI and HPC shift, doubts on BTC dominance, and bullish signals aligning with BTC price\n- Ranking of 26 publicly traded Bitcoin miners based on BTC HODL\n\nThese topics cover a range of discussions related to Bitcoin mining, stocks, profitability, market changes, and industry trends.", - data: [ - 5, 5, 1, 5, 50, 10, 2, 4, 3, 4, 10, 5, 0, 0, 0, 6, 1, 4, 3, 6, 3, 2, 5, 6, 14, 4, 9, 1, 1, - 0, 1, 3, 24, 6, 4, 4, 4, 5, 2, 4, 10, 13, 4, 7, 6, 1, 2, 3, 3, 2, 2, 2, 3, 1, 2, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The key topics discussed in the messages from Twitter are meme coins, memecoins, AI learning from memes, popular memecoins with market cap below $10M, favorite meme coins, strong community support for meme coins, meme art, the future of memecoins, insider control in memecoins, speculation on meme coins with good intentions and real teams, avoiding pump and dump schemes, and potential liquidity issues with TRX memes. The messages also mention specific meme coins such as $PEIPEI, $GIGA, $APU, $BYTE, and TRX. Overall, the discussion revolves around the growing popularity and potential risks associated with meme coins in the crypto industry.', - data: [ - 2, 5, 6, 4, 0, 0, 2, 9, 4, 3, 5, 2, 6, 5, 1, 5, 1, 10, 5, 4, 4, 6, 4, 7, 6, 8, 1, 2, 2, 2, - 3, 68, 4, 6, 1, 2, 1, 4, 3, 2, 2, 1, 5, 2, 4, 6, 6, 6, 6, 5, 2, 1, 5, 6, 4, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,memecoin,outflows,solanas', - description: - 'The key topics currently being discussed in the crypto community on Twitter include:\n- Solana (SOL) and potential investment opportunities\n- Memecoins and their impact on the market\n- Speculation on the launch of different tokens on various chains\n- Price predictions and technical analysis for Solana\n- Community-driven projects like NEIRO/SOL\n- Trading competitions and rewards on platforms like BitMEX\n- New token launches on the Solana chain, such as SOLBO\n\nOverall, the discussions range from investment strategies and market analysis to community-driven projects and trading competitions within the Solana ecosystem.', - data: [ - 5, 3, 3, 6, 0, 1, 2, 6, 4, 4, 7, 4, 1, 6, 2, 5, 6, 7, 8, 1, 0, 3, 2, 3, 3, 7, 2, 3, 3, 7, 5, - 6, 2, 5, 2, 6, 1, 8, 3, 6, 3, 5, 6, 34, 5, 1, 5, 3, 2, 4, 4, 2, 1, 3, 4, - ], - }, - { - label: 'CPI', - topics: 'inflation,prices,government,spending,caused', - description: - 'The key topics discussed in the messages from twitter include:\n- Inflation and its impact on the economy\n- Government policies and their effects on food prices\n- Healthcare costs and prescription drug prices\n- The role of the Federal Reserve in currency value\n- Taxation and tax appeals in the consumer goods industry\n\nOverall, the messages highlight concerns about inflation, government policies, and economic issues affecting everyday Americans.', - data: [ - 4, 0, 3, 6, 1, 3, 2, 0, 5, 1, 5, 6, 1, 6, 1, 7, 2, 5, 7, 3, 0, 13, 10, 3, 1, 40, 0, 3, 3, 2, - 4, 0, 6, 1, 1, 2, 3, 9, 5, 9, 2, 5, 2, 6, 2, 1, 4, 8, 1, 3, 1, 2, 2, 1, 7, - ], - }, - { - label: 'Recession', - topics: 'recession,fed,cut,jobs,rate', - description: - "The key topics discussed in the messages from twitter are:\n1. US employment rising by 1.3% in the year through March 2024\n2. Market impact of Fed's Daly backing gradual interest rate cuts\n3. Market reaction to BLS revision numbers\n4. Potential downward revision of up to a million US jobs\n5. Political uncertainty following Kishida's exit and its impact on BOJ's rate hike strategy\n6. Discussion on global crypto news\n7. Speculation on rate cuts during a known recession\n8. US inflation rate falling from over 9% to just under 3%\n9. Waiting for the next round of quantitative easing\n10. Sahm Rule creator discussing the state of the labor market and recession possibility\n11. Significant downward job revisions from March 2023-March 2024\n12. Predicting stock market crashes and economists' track record with recessions.", - data: [ - 2, 2, 5, 5, 0, 0, 10, 0, 5, 4, 3, 2, 2, 1, 6, 6, 0, 6, 4, 1, 3, 15, 6, 2, 3, 10, 6, 2, 4, 5, - 25, 3, 5, 1, 2, 8, 1, 2, 4, 16, 5, 4, 2, 1, 3, 5, 3, 3, 4, 2, 0, 1, 1, 0, 6, - ], - }, - { - label: 'NFT', - topics: 'nfts,nft,floor,sales,fun', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the resurgence of NFTs, the comparison of OG NFT projects like @pudgypenguins to newer teams, the debate over legacy IPs versus innovation and quality in NFT projects, the top NFT marketplaces of 2024, the ongoing success of NFT collections like @artblocks_io and @AxieInfinity, and the development of collector tools for NFT collections like the PUNK Armada. Additionally, there is a focus on personal experiences with minting NFTs, such as the first NFT minted and the excitement of owning a unique digital asset. Overall, the crypto community is actively engaging in discussions about the evolution and future of NFTs and the broader blockchain industry.', - data: [ - 5, 3, 3, 2, 0, 0, 0, 3, 5, 4, 8, 4, 5, 3, 1, 2, 4, 6, 5, 6, 2, 3, 5, 6, 3, 2, 1, 7, 4, 2, 9, - 4, 3, 4, 30, 2, 3, 2, 6, 2, 5, 8, 4, 4, 4, 3, 1, 5, 3, 1, 4, 1, 4, 5, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,dex,lending,crosschain', - description: - "Based on the messages from twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. DeFi (Decentralized Finance) adoption across different regions, such as Europe, Asia, Latin America, and Africa.\n2. The role of Autopilot in simplifying complex decisions in DeFi.\n3. Privacy concerns and the importance of privacy in DeFi growth.\n4. Decentralized Exchanges (DEXs) and their role in secure and innovative crypto trading.\n5. RWAs (Real-World Assets) as a solution to DeFi's boom-bust cycles.\n6. Building DeFi projects in the Sui ecosystem.\n7. Smart contract audits for DEXs like ociswap on the Radix Network.\n8. Liquid restaking on Solana with the RenzoProtocol.\n9. Exploring the ALEX ecosystem for precise trading and token launching.\n10. DeFi Risk Guidelines and the importance of compliance and licensing.\n11. Recent developments in DeFi, such as Binance Labs backing Solayer and Renzo launching ezSOL.\n\nOverall, the discussions on social media indicate a growing interest and innovation in the DeFi space, with a focus on regional adoption, simplifying processes, enhancing security, and exploring new opportunities for growth and development.", - data: [ - 2, 2, 2, 3, 0, 0, 2, 4, 4, 4, 6, 4, 1, 17, 4, 7, 4, 6, 4, 3, 1, 4, 5, 5, 5, 1, 8, 5, 5, 3, - 3, 4, 2, 6, 12, 3, 2, 5, 4, 3, 3, 6, 2, 3, 3, 3, 3, 5, 3, 1, 2, 2, 3, 3, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,net,inflows,spot,etf', - description: - 'The key topics currently discussed in the crypto industry on Twitter are:\n- Ethereum Spot ETF Net Inflow\n- Bitcoin ETFs trading volume\n- Arbitrum farms\n- Inflows and outflows of Bitcoin and Ethereum funds\n- Institutional demand for Bitcoin ETFs\n- Longest withdrawal streak for US Spot Ethereum ETFs\n- Market expectations for spot Ethereum ETFs\n- Comparison of Bitcoin and Ethereum ETF investments\n\nOverall, there is a mix of positive and negative sentiment surrounding the ETFs for both Bitcoin and Ethereum, with Bitcoin ETFs attracting more investments compared to Ethereum ETFs.', - data: [ - 1, 0, 1, 2, 10, 3, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 13, 0, 1, 2, 2, 3, 1, 1, 2, 5, 2, 0, 0, 1, - 2, 1, 3, 10, 0, 2, 0, 0, 0, 2, 2, 2, 6, 3, 43, 0, 3, 1, 0, 16, 0, 4, 0, 4, 2, - ], - }, - { - label: 'U.S. Taxes', - topics: 'tax,gains,capital,25,proposal', - description: - "The key topics discussed in the messages from twitter include:\n- Opposition to taxing unrealized gains, with arguments that it is unfair and un-American\n- Criticism of tipping culture and arguments against mandatory tipping\n- Support for not taxing Bitcoin tips and person-to-person payments\n- Criticism of corporate taxes and calls for corporations to pay their fair share\n- Discussion of Kamala Harris's proposed tax on unrealized capital gains and corporate tax rate increase if elected\n\nOverall, the messages reflect a mix of opinions on taxation policies, tipping practices, and corporate responsibility.", - data: [ - 3, 0, 4, 1, 0, 0, 0, 0, 5, 2, 0, 5, 1, 3, 0, 4, 2, 1, 1, 2, 2, 5, 2, 2, 6, 5, 2, 2, 4, 0, 1, - 0, 0, 1, 2, 5, 5, 2, 7, 4, 2, 1, 0, 2, 1, 6, 29, 6, 3, 1, 8, 0, 6, 1, 1, - ], - }, - { - label: 'SHIB', - topics: 'shib,burn,presale,lead,doge', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Shiba Inu (SHIB) reaching $0.01 before 2050\n- Shiba Inu Lead expressing concerns about the surge in Shadowcats as ShibaCon nears\n- Shiba Inu Lead stating there is no need for his face to become a public figure\n- Kusama's cryptic tweet hinting at Shiba Inu's remarkable success\n- Shiba Inu's open interest spiking 13%, with analysts foreseeing a 500% rally\n- Shiba Inu price potentially providing a buying opportunity before it skyrockets by 50%\n- Analysts expecting Shiba Inu (SHIB) to bounce hard after a dip, with Ethereum Classic (ETC) holders hedging bets with 100x potential star\n- Shytoshi Kusama, Shiba Inu's lead developer, sharing vital insights on ShibHub, 'The Heart of the Shiba Inu ecosystem'\n- The rise to stardom of Kabosu, the dog that inspired the first memecoin known as Dogecoin\n- Discussion about various cryptocurrencies like Kagura, Ken, Doge, and Kabosu\n- Encouragement to hold Shiba Inu responsibly for potential generational wealth\n- Big buys coming in for Kabosu on Uniswap, with a new holder joining the community with a $13k buy\n\nOverall, the discussions revolve around price predictions, developer insights, cryptocurrency projects, and potential investment opportunities within the crypto industry.", - data: [ - 0, 4, 0, 2, 0, 0, 2, 3, 1, 1, 1, 4, 1, 1, 4, 1, 3, 5, 0, 0, 1, 3, 0, 4, 0, 2, 27, 7, 5, 2, - 1, 1, 0, 3, 2, 0, 3, 0, 2, 3, 2, 2, 21, 7, 0, 1, 2, 0, 0, 0, 3, 4, 0, 2, 1, - ], - }, - { - label: 'ETH Price', - topics: 'ethereum,eth,ether,price,ethereums', - description: - "The key topics currently discussed on Twitter regarding Ethereum and the crypto industry include:\n\n1. Ethereum reaching an all-time high of $5200 and discussions about its future price action.\n2. Speculation on Ethereum's potential for expansion and market trends.\n3. Comparisons between Ethereum and other altcoins like Solana.\n4. Updates on Ethereum Name Service (ENS) domain prices.\n5. Analysis on Ethereum's price movements and potential resistance levels.\n6. Debate on whether Ethereum can bounce back after a price dip.\n7. Predictions on Ethereum's price outlook and potential for a breakout.\n8. Skepticism about Ethereum reaching $10k due to low user activity and inflation concerns.\n9. Technical analysis of Ethereum price levels and trading ranges.\n\nOverall, the sentiment on Twitter seems to be mixed with some users bullish on Ethereum's future while others express doubts about its long-term prospects.", - data: [ - 1, 1, 4, 1, 0, 0, 3, 1, 0, 0, 2, 1, 0, 1, 1, 2, 65, 4, 2, 0, 1, 1, 0, 3, 0, 3, 0, 1, 3, 2, - 2, 0, 1, 2, 0, 0, 0, 5, 2, 2, 0, 0, 2, 0, 2, 0, 3, 2, 2, 1, 0, 1, 0, 1, 2, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,appeal,altcoins', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. SEC v. Ripple: The SEC is pushing back against Hex founder Richard Heart's efforts to dismiss the case. Ripple's legal chief anticipates a possible SEC appeal in the XRP case despite the court's 10% reversal rate.\n\n2. XRP Price Prediction: Analysts are predicting a 25% rally for XRP, with optimism growing amid potential ETF approval and Wells Fargo adoption.\n\n3. Radix (XRD): There is anticipation for institutional growth for Radix (XRD) as the team focuses on providing liquidity for institutions to join the ecosystem.\n\n4. XRP Price Movement: XRP is on fire, reclaiming the $0.60 mark, with bullish signals in play and potential for reaching new heights.\n\n5. RippleNet Committee: Lawyer Bill Morgan reveals that Bank of America and Standard Chartered were on the RippleNet committee, sparking speculation about their relationship.\n\n6. Ripple Swell 2024: The speaker lineup for Ripple Swell 2024 includes influential voices in blockchain, fintech, and payments, such as Brad Garlinghouse, CEO of Ripple, and Superintendent Adrienne Harris.", - data: [ - 2, 5, 1, 1, 0, 0, 0, 1, 1, 6, 0, 2, 2, 3, 1, 1, 1, 7, 3, 1, 3, 0, 1, 2, 0, 3, 2, 0, 3, 1, 0, - 0, 0, 1, 1, 1, 2, 9, 1, 4, 13, 4, 5, 3, 1, 0, 1, 1, 3, 0, 0, 3, 2, 3, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-34.json b/priv/repo/major_topics_seed/data-34.json deleted file mode 100644 index 13eff6e71e..0000000000 --- a/priv/repo/major_topics_seed/data-34.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["22.08.24","23.08.24","23.08.24","23.08.24","23.08.24","23.08.24","23.08.24","23.08.24","24.08.24","24.08.24","24.08.24","24.08.24","24.08.24","24.08.24","24.08.24","24.08.24","25.08.24","25.08.24","25.08.24","25.08.24","25.08.24","25.08.24","25.08.24","25.08.24","26.08.24","26.08.24","26.08.24","26.08.24","26.08.24","26.08.24","26.08.24","26.08.24","27.08.24","27.08.24","27.08.24","27.08.24","27.08.24","27.08.24","27.08.24","27.08.24","28.08.24","28.08.24","28.08.24","28.08.24","28.08.24","28.08.24","28.08.24","28.08.24","29.08.24","29.08.24","29.08.24","29.08.24","29.08.24","29.08.24","29.08.24"],"datasets":[{"label":"BTC","topics":"bitcoin,money,fiat,bitcoiners,understand","description":"The key topics currently discussed on Twitter regarding Bitcoin include:\n1. Bitcoin as the foundational cryptocurrency\n2. Speculation on Bitcoin's price movement\n3. Bitcoin adoption and its potential impact on the financial system\n4. Bitcoin maximalism and its proponents\n5. Education and advocacy for Bitcoin\n6. Bitcoin as a solution to fiat-based monetary systems\n7. Community engagement and support for Bitcoin\n8. Comparison of Bitcoin to other cryptocurrencies\n9. Humorous takes on Bitcoin culture\n10. Encouragement for long-term holding of Bitcoin","data":[11,8,8,12,83,66,5,10,10,10,5,16,14,10,10,15,13,12,19,19,12,12,25,12,19,7,15,12,16,14,13,12,20,3,7,10,10,14,10,11,5,25,10,14,18,17,9,24,9,13,31,10,11,11,10]},{"label":"ETF Inflows","topics":"etfs,etf,inflows,net,blackrock","description":"The key topic discussed in the Twitter messages is the performance and impact of Bitcoin and Ethereum ETFs. The messages mention positive inflows and outflows, as well as the overall market impact of these ETFs. There is also discussion about the potential approval of Bitcoin ETFs and how it could bring more institutional money into the crypto market. Additionally, there are mentions of specific ETFs such as Grayscale and Vaneck, as well as the total net asset value of Ethereum ETFs. Overall, the messages highlight the ongoing interest and activity surrounding ETFs in the crypto industry.","data":[13,2,9,10,25,22,7,7,8,2,2,10,7,2,2,0,69,6,10,1,0,8,5,9,9,19,11,1,3,2,6,2,13,9,6,6,2,2,8,2,2,7,22,6,53,8,7,1,3,16,0,2,1,11,12]},{"label":"Durov's arrest","topics":"durov,pavel,telegram,france,arrest","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The arrest of Telegram founder Pavel Durov on 12 criminal counts, leading to a loss for crypto gamblers and speculation about his motives and actions.\n2. The implications of Durov's arrest on the future of Telegram and the potential censorship of information on the platform.\n3. Speculation about Durov's French citizenship and his interactions with French authorities, including his detention and bail conditions.\n4. Concerns about government censorship and authoritarianism, with references to Bitcoin as censorship-resistant money and the need to protect free speech and privacy.\n5. The arrest of influencer Andrew Tate on trafficking and rape charges, and the confiscation of luxury cars from his residence by Romanian authorities.\n6. The impact of Durov's arrest on the cryptocurrency market, including a liquidity provider removing $2 million dollars of LP and dumping tokens.\n7. Rumors and speculation about the charges against Durov, including complicity in illegal transactions and refusal to cooperate with authorities.\n8. The broader implications of Durov's arrest on the crypto industry, including a decline in Toncoin value and the SEC charging Abra for unregistered crypto offerings.","data":[8,4,30,12,0,0,16,3,9,12,2,6,8,14,2,11,0,9,6,59,4,4,11,5,4,5,10,9,6,7,4,4,5,1,8,55,5,10,14,5,6,9,8,2,2,4,8,16,9,4,8,7,6,5,4]},{"label":"AI","topics":"ai,models,data,future,intelligence","description":"The messages from twitter discuss various topics related to AI, crypto, and technology. Some key points mentioned include the use of AI tools for designing user interfaces, the importance of AI in revolutionizing research, the performance of AI tools in coding, the collaboration for fair AI development, the unveiling of a new image generation model by Google, the regulation of AI, and the dominance of Silicon Valley in tech innovation. Additionally, there is a mention of a project called Nodepay that allows users to earn points through AI farming. The overall tone of the messages is positive towards AI advancements and the potential for regulation in the industry.","data":[13,53,16,10,0,1,4,3,4,9,5,13,7,11,7,6,4,13,8,3,17,6,5,8,12,12,3,6,6,4,4,4,12,6,10,8,6,10,1,9,17,8,3,8,2,5,14,8,10,7,9,8,10,6,5]},{"label":"GameFi","topics":"gaming,game,games,web3,metaverse","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- GameFi and the excitement around finding a GameFi gem\n- Speculation about Elon Musk trying out BlackMythGame\n- Web3 gaming and its potential impact on the industry\n- Criticism of certain games like Warzone for unfair advantages\n- Public Playtest 3 and anticipation for the event\n- Bitget launchpool and the opportunity to win USDT\n- Partnerships between different metaverses for game nights\n- Enjin Gaming Multiverse and its upcoming launch\n\nOverall, the crypto community on social media is actively engaged in discussions about various aspects of the gaming and crypto industries, including new games, partnerships, and technological advancements.","data":[5,2,10,9,0,1,6,3,3,7,6,6,5,6,7,11,4,5,10,6,62,9,5,6,5,10,9,3,14,5,3,14,9,12,6,16,31,6,3,9,4,4,5,7,4,5,6,7,2,1,5,4,4,14,9]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coin","description":"The messages from Twitter discuss various topics related to meme coins in the crypto industry. Some key points mentioned include:\n- The importance of differentiating between real and fake meme coins\n- The potential for meme coins to outperform traditional investments\n- The risks associated with investing in meme coins, as they can experience significant volatility\n- The cultural significance of meme art and its evolution over time\n- The launch of a new meme coin launchpad with innovative features\n- The perception of meme coins as a pump-and-dump scheme by some individuals\n\nOverall, the messages highlight the growing popularity and potential opportunities in the meme coin market, while also emphasizing the need for caution and due diligence when investing in these assets.","data":[8,9,3,9,0,3,6,2,12,6,5,15,6,2,7,9,1,4,12,2,4,6,9,4,10,10,10,9,2,9,8,87,9,5,5,6,8,6,4,5,6,8,3,9,4,4,4,8,7,6,4,1,4,5,3]},{"label":"Tron Memecoins ","topics":"tron,sun,trx,sundog,meme","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Memecoins on Tron gaining attention and popularity\n- Specific memecoins like $TURBO, $FOFAR, $PONKE, $BUTT, $TBEER, and $SUNWUKONG being highlighted for their performance and potential\n- Tronkey being mentioned as one of the top memes on TRON\n- Speculation about TRONKEY being listed on a centralized exchange (CEX)\n- Use of GIFs related to Ponke being widely viewed and shared\n- Interest in Solana memecoins, particularly $BUTT and $TBEER\n- Discussion about the potential value and growth of $SUN as a dex token\n- Excitement about the revenue potential and buyback plans of SunPump and its impact on $SUN token value\n\nOverall, the sentiment on Twitter seems to be positive and enthusiastic about various memecoins and their potential for growth in the crypto industry.","data":[2,6,3,4,0,1,2,3,13,1,7,6,7,6,7,8,2,8,6,1,5,7,6,5,3,0,7,8,3,4,6,24,4,9,4,3,5,7,8,5,5,4,9,5,2,20,22,3,3,27,10,1,4,3,2]},{"label":"DOGE","topics":"dogecoin,doge,presale,floor,coin","description":"The key topics currently discussed in the crypto industry on Twitter include Dogecoin, MoonBag, TapDaDoge, BabyDoge PAWS, potential rivals to Dogecoin such as SHIB, PEPE, FLOKI, WIF, and BONK, as well as a scam alert regarding $digi. There is also mention of a potential 500% gain with MoonBag, a Tap-To-Earn Game called TapDaDoge, and the milestone of 5,000,000 users playing BabyDoge PAWS. Additionally, there is speculation about the strength of Dogecoin's monopoly and moats compared to Bitcoin, as well as the potential for significant rallies in the meme coin market.","data":[4,1,3,5,0,1,2,5,0,2,1,0,1,10,106,5,1,4,10,7,1,7,8,6,2,3,3,4,6,5,8,3,5,0,1,2,5,4,8,4,3,5,3,3,9,7,8,7,2,3,3,2,4,1,7]},{"label":"DOGS listing","topics":"dogs,dog,deposit,listing,airdrop","description":"The key topics discussed in the messages from Twitter are related to the cryptocurrency meme coin $DOGS, including its price analysis, trading competitions, deposit contests, giveaways, and upcoming events. The messages also mention trading strategies on platforms like Binance and Bybit, as well as the concept of narratives in the crypto industry. Additionally, there are references to community engagement activities such as sharing memes, participating in bounty hunting, and inviting friends to join in on the rewards. Overall, the focus is on the popularity and potential profitability of $DOGS within the crypto community.","data":[6,3,0,3,1,5,3,5,10,1,5,4,0,2,97,4,0,5,1,2,3,6,7,2,0,3,8,10,7,3,2,6,3,11,5,4,3,9,4,3,4,1,4,2,4,2,4,3,7,6,1,2,4,4,4]},{"label":"Art","topics":"art,artist,artists,piece,collection","description":"The key topics currently discussed in the crypto industry on social media include the debate on whether human-made art is considered real art, the rise of digital art on the blockchain, the popularity of NFTs (non-fungible tokens) in the art world, and the emergence of new artists utilizing technology such as 3D scanning tools. Artists like XCOPY are gaining recognition for their unique and innovative approach to creating art, while events like the Tezos art event #redcollage are showcasing the intersection of art and technology. Additionally, the mainstream potential of collaborations between artists like Pharrell, Lil Wayne, Lil Yachty, and Kyle Richh in the world of digital art is being highlighted. Overall, the crypto industry is witnessing a shift towards embracing digital art and exploring new ways of creating and collecting art through blockchain technology.","data":[7,3,52,5,1,1,4,3,1,4,6,5,3,1,1,5,2,5,7,4,6,4,3,2,6,3,1,4,7,9,4,2,3,5,3,7,2,3,7,5,2,5,4,6,3,6,4,4,6,1,2,1,4,3,10]},{"label":"DeFi","topics":"defi,finance,protocols,safe,yield","description":"The key topics currently discussed in the crypto industry on social media platforms include DeFi (Decentralized Finance), the convergence of traditional finance (TradFi) and DeFi, tokenization of Real-World Assets (RWAs), the importance of transparency and accountability in the financial system, the integration of diverse participants and assets in DeFi and Wall Street, the potential slippage in DeFi trading, the partnership between projects like PERI Finance and NendFi to expand DeFi possibilities, the need for non-speculative DeFi loan use cases, the acceleration of the dyad flywheel in DeFi projects, the launch of decentralized order book exchanges like DeXter on Radix, and the introduction of stablecoins like USDz with high APY rewards. Overall, the discussions highlight the innovation, growth, and challenges within the DeFi space and its impact on the future of finance.","data":[4,6,3,5,0,0,1,2,1,3,12,7,3,19,5,3,8,4,10,4,4,3,4,1,6,10,7,2,4,3,2,4,3,6,1,4,1,2,14,9,4,11,8,4,4,12,2,5,3,5,2,4,0,6,1]},{"label":"NFT","topics":"nft,nfts,pfp,art,projects","description":"The key topics currently discussed in the crypto industry on social media include NFTs, NFT sales bots, new NFT strategies, NFT art, hybrid versions of NFTs x memecoins, NFT standards, NFT documentation, specific NFT information, NFT collections, bidding on NFTs, and the impact of NFTs on the art world. There is also mention of specific NFT projects such as creature cubes and Fidenzas, as well as discussions about using NFTs for building and developing tools. Overall, the sentiment seems positive with excitement for the fall season and experimentation with new NFT designs.","data":[3,1,6,6,0,1,2,5,4,3,7,1,3,4,7,3,4,3,9,9,2,5,1,7,6,5,0,2,1,6,3,7,5,22,5,1,4,5,9,4,3,5,3,4,2,5,0,5,5,5,3,1,2,3,6]},{"label":"BTC Mining","topics":"mining,miners,energy,pools,power","description":"The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin mining and the impact on energy consumption\n- Sentiment around Bitcoin mining post-halving\n- Accessibility of Bitcoin mining to hobbyists through USB miners\n- Amanda Fabiano's role in the crypto industry\n- Rhodium Bitcoin miner going bust and implications for the industry\n- TeraWulf launching a new Bitcoin mining facility and potential tech partnerships\n- Concerns about potential price drops due to high Bitcoin miners' reserves\n- Importance of working with nature for optimal Bitcoin mining operations\n- Use of small USB mining devices for Bitcoin mining\n- Nation State mining and advances in waste management for mining facilities\n- Electricity costs and profitability of Bitcoin mining\n- Staking rewards and strategies for maximizing returns in the crypto market.","data":[6,7,2,2,23,8,5,2,4,1,3,3,4,4,3,0,17,3,3,3,2,5,0,5,0,2,2,5,2,4,4,15,4,4,3,6,8,3,3,5,9,3,2,3,11,3,5,1,1,1,1,1,2,2,2]},{"label":"OpenSea & SEC","topics":"opensea,wells,sec,notice,nfts","description":"The key topic discussed in the messages from twitter is the SEC issuing a Wells notice to OpenSea, a popular NFT marketplace, regarding the classification of NFTs as securities. The community is divided on whether NFTs should be regulated by the SEC, with some criticizing the move as unnecessary government intervention, while others see it as a necessary step to protect investors. OpenSea's CEO has responded to the notice by pledging $5 million to defend creators against the SEC. Overall, there is a mix of support and criticism towards OpenSea and the SEC's actions in the crypto industry.","data":[4,3,2,1,0,2,13,0,2,6,4,5,0,4,2,3,0,9,1,2,4,7,3,6,3,3,7,4,0,1,6,5,3,3,14,3,4,3,4,23,1,5,8,2,3,4,3,6,2,0,3,1,9,1,1]},{"label":"Soneium","topics":"sony,layer2,labs,blockchain,l2","description":"The key topic discussed in the messages from Twitter is the launch of Sony's new blockchain called Soneium, which is an Ethereum Layer 2 focused on mainstream adoption. Sony has partnered with Startale Labs to create this blockchain, using Optimism technology on top of Ethereum. The goal is to bring entertainment, gaming, and finance content into the world of web3 applications. This move by Sony signifies a significant step towards mainstream adoption of blockchain technology and the development of the metaverse. Additionally, there is mention of Apple releasing a blockchain and partnering with Chainlink, indicating a growing trend of tech giants entering the blockchain space.","data":[0,3,3,3,0,2,15,3,3,4,5,3,0,0,3,0,6,8,0,0,4,1,5,1,2,2,4,19,0,1,1,0,2,6,1,2,2,1,1,0,0,1,0,0,10,1,2,4,3,1,3,0,0,4,0]},{"label":"PEPE","topics":"pepe,mcap,frens,render,presale","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. The rise in price of $PEPE by 25% in a week, with the Pepe Unchained Presale passing the $10.5M mark.\n2. The potential price predictions for $PEPE in 2025, with discussions on whether holding 100 million tokens could make someone a millionaire.\n3. The movement of Klaytn Pepe (KEPE) and the excitement around its return.\n4. The comparison of an AI-powered token set to surpass PEPE and Polygon (MATIC) in market dominance by 2025.\n5. The contemplative Pepe artwork by @ApolloDoge at Lake Como as a tribute to @CozomoMedici's purchase of another 1/1 from the same collection.\n6. The discussion around bullish and bearish breakout scenarios for the #PEPE coin price.\n7. The trading strategies involving $PEPE, such as longing at a specific price and setting stop loss and take profit levels.\n8. The mention of other meme coins like $apu and the preference for a quiet $pepe town.\n9. The significant exit of 1.48 trillion #PEPE from Binance in an epic whale shift.\n10. The general sentiment and excitement around $PEPE within the crypto community.\n\nOverall, it appears that $PEPE is a popular topic of discussion on Twitter within the crypto industry, with various aspects of its price, trading strategies, artwork, and future potential being highlighted.","data":[1,1,6,2,0,0,1,3,4,3,5,0,3,2,2,2,0,4,4,9,7,2,3,2,5,1,3,2,2,3,3,1,2,1,3,23,0,1,1,1,4,1,1,2,1,1,1,1,1,1,3,1,4,4,1]},{"label":"TON","topics":"ton,tonblockchain,production,network,toncoin","description":"The key topics discussed in the messages from Twitter regarding the TON blockchain include:\n1. The TON blockchain experiencing downtime and block production halts.\n2. The TON community expressing solidarity with Pavel Durov in the fight for free speech and decentralization.\n3. The TON blockchain being back online after outages caused by a DOGS memecoin airdrop.\n4. Assurance from the TON Foundation that all crypto transactions would be processed and no assets lost during block production disruptions.\n5. Telegram Wallet developers stating that the TON network has been restored after failures in block production due to heavy load of minting DOGS tokens.\n6. The TON community reaffirming its support for decentralization and freedom of speech.\n7. Speculation and concerns about the stability and speculation on the TON blockchain.\n8. Clarification on the reasons behind the block production halts and the possibility of bugs causing the issues.\n\nOverall, the messages reflect a mix of technical issues, community support, and speculation surrounding the TON blockchain and its operations.","data":[1,1,1,2,0,0,6,1,0,4,5,1,2,0,1,2,0,2,2,2,0,2,1,1,4,1,0,2,4,0,3,0,2,3,13,1,0,2,0,2,0,0,1,1,0,1,0,0,30,32,0,2,2,0,1]},{"label":"CAT","topics":"cat,cats,bnb,win,dog","description":"The messages from Twitter are discussing various topics related to cryptocurrency, specifically focusing on the $CAT token. Users are sharing their opinions on different cat-themed tokens, such as TronCat and Simons Cat, and discussing potential milestones for $CAT to reach by September 29th. Additionally, there is a mention of a bounty program for the $CAT token, where users can earn rewards by trading and depositing the token. Overall, the conversation revolves around the trading and potential growth of cat-themed cryptocurrencies in the market.","data":[1,1,1,1,1,1,0,0,31,2,2,0,2,2,0,0,1,6,0,1,3,3,0,1,1,1,4,4,1,1,1,6,3,3,1,3,1,6,1,4,0,1,1,2,1,1,7,1,1,0,1,2,2,2,0]},{"label":"Whales","topics":"whale,whales,wif,loss,million","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Whales accumulating Bitcoin and Ethereum: There are mentions of large investors, known as whales, actively buying and selling significant amounts of Bitcoin and Ethereum. This activity is closely monitored by the community.\n\n2. Altcoins and investment strategies: Discussions about various altcoins, including Toncoin, Uniswap, and Lido, are taking place. There are also mentions of investment strategies, such as Fibonacci levels, and predictions about price movements.\n\n3. Impact of whales on the market: The role of whales in influencing the market sentiment and prices of cryptocurrencies like Bitcoin, Ethereum, and XRP is being analyzed. There are also mentions of bearish sentiments and their potential impact on certain stocks like Palantir.\n\n4. Subscription price changes and promotions: Updates on subscription price changes for services like Unusual Whales are being shared, along with promotions and sales to attract new users.\n\n5. Trading options and bonuses: Information about trading options, bonuses, and deposit bonuses for platforms like tastytrade are being shared, encouraging users to start trading various stocks and options contracts.\n\nOverall, the discussions on social media platforms reflect a mix of market analysis, investment strategies, whale activity, and promotional offers in the crypto industry.","data":[5,7,0,5,1,11,0,4,1,1,0,0,1,1,0,1,9,1,1,1,0,0,0,1,0,2,2,0,0,1,2,1,2,2,1,1,1,2,0,2,1,4,5,4,2,1,0,0,2,4,2,1,1,21,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-34.ts b/priv/repo/major_topics_seed/data-34.ts deleted file mode 100644 index 34dafa841c..0000000000 --- a/priv/repo/major_topics_seed/data-34.ts +++ /dev/null @@ -1,252 +0,0 @@ -export const NARRATIVES = { - labels: [ - '22.08.24', - '23.08.24', - '23.08.24', - '23.08.24', - '23.08.24', - '23.08.24', - '23.08.24', - '23.08.24', - '24.08.24', - '24.08.24', - '24.08.24', - '24.08.24', - '24.08.24', - '24.08.24', - '24.08.24', - '24.08.24', - '25.08.24', - '25.08.24', - '25.08.24', - '25.08.24', - '25.08.24', - '25.08.24', - '25.08.24', - '25.08.24', - '26.08.24', - '26.08.24', - '26.08.24', - '26.08.24', - '26.08.24', - '26.08.24', - '26.08.24', - '26.08.24', - '27.08.24', - '27.08.24', - '27.08.24', - '27.08.24', - '27.08.24', - '27.08.24', - '27.08.24', - '27.08.24', - '28.08.24', - '28.08.24', - '28.08.24', - '28.08.24', - '28.08.24', - '28.08.24', - '28.08.24', - '28.08.24', - '29.08.24', - '29.08.24', - '29.08.24', - '29.08.24', - '29.08.24', - '29.08.24', - '29.08.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,money,fiat,bitcoiners,understand', - description: - "The key topics currently discussed on Twitter regarding Bitcoin include:\n1. Bitcoin as the foundational cryptocurrency\n2. Speculation on Bitcoin's price movement\n3. Bitcoin adoption and its potential impact on the financial system\n4. Bitcoin maximalism and its proponents\n5. Education and advocacy for Bitcoin\n6. Bitcoin as a solution to fiat-based monetary systems\n7. Community engagement and support for Bitcoin\n8. Comparison of Bitcoin to other cryptocurrencies\n9. Humorous takes on Bitcoin culture\n10. Encouragement for long-term holding of Bitcoin", - data: [ - 11, 8, 8, 12, 83, 66, 5, 10, 10, 10, 5, 16, 14, 10, 10, 15, 13, 12, 19, 19, 12, 12, 25, 12, - 19, 7, 15, 12, 16, 14, 13, 12, 20, 3, 7, 10, 10, 14, 10, 11, 5, 25, 10, 14, 18, 17, 9, 24, - 9, 13, 31, 10, 11, 11, 10, - ], - }, - { - label: 'ETF Inflows', - topics: 'etfs,etf,inflows,net,blackrock', - description: - 'The key topic discussed in the Twitter messages is the performance and impact of Bitcoin and Ethereum ETFs. The messages mention positive inflows and outflows, as well as the overall market impact of these ETFs. There is also discussion about the potential approval of Bitcoin ETFs and how it could bring more institutional money into the crypto market. Additionally, there are mentions of specific ETFs such as Grayscale and Vaneck, as well as the total net asset value of Ethereum ETFs. Overall, the messages highlight the ongoing interest and activity surrounding ETFs in the crypto industry.', - data: [ - 13, 2, 9, 10, 25, 22, 7, 7, 8, 2, 2, 10, 7, 2, 2, 0, 69, 6, 10, 1, 0, 8, 5, 9, 9, 19, 11, 1, - 3, 2, 6, 2, 13, 9, 6, 6, 2, 2, 8, 2, 2, 7, 22, 6, 53, 8, 7, 1, 3, 16, 0, 2, 1, 11, 12, - ], - }, - { - label: "Durov's arrest", - topics: 'durov,pavel,telegram,france,arrest', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The arrest of Telegram founder Pavel Durov on 12 criminal counts, leading to a loss for crypto gamblers and speculation about his motives and actions.\n2. The implications of Durov's arrest on the future of Telegram and the potential censorship of information on the platform.\n3. Speculation about Durov's French citizenship and his interactions with French authorities, including his detention and bail conditions.\n4. Concerns about government censorship and authoritarianism, with references to Bitcoin as censorship-resistant money and the need to protect free speech and privacy.\n5. The arrest of influencer Andrew Tate on trafficking and rape charges, and the confiscation of luxury cars from his residence by Romanian authorities.\n6. The impact of Durov's arrest on the cryptocurrency market, including a liquidity provider removing $2 million dollars of LP and dumping tokens.\n7. Rumors and speculation about the charges against Durov, including complicity in illegal transactions and refusal to cooperate with authorities.\n8. The broader implications of Durov's arrest on the crypto industry, including a decline in Toncoin value and the SEC charging Abra for unregistered crypto offerings.", - data: [ - 8, 4, 30, 12, 0, 0, 16, 3, 9, 12, 2, 6, 8, 14, 2, 11, 0, 9, 6, 59, 4, 4, 11, 5, 4, 5, 10, 9, - 6, 7, 4, 4, 5, 1, 8, 55, 5, 10, 14, 5, 6, 9, 8, 2, 2, 4, 8, 16, 9, 4, 8, 7, 6, 5, 4, - ], - }, - { - label: 'AI', - topics: 'ai,models,data,future,intelligence', - description: - 'The messages from twitter discuss various topics related to AI, crypto, and technology. Some key points mentioned include the use of AI tools for designing user interfaces, the importance of AI in revolutionizing research, the performance of AI tools in coding, the collaboration for fair AI development, the unveiling of a new image generation model by Google, the regulation of AI, and the dominance of Silicon Valley in tech innovation. Additionally, there is a mention of a project called Nodepay that allows users to earn points through AI farming. The overall tone of the messages is positive towards AI advancements and the potential for regulation in the industry.', - data: [ - 13, 53, 16, 10, 0, 1, 4, 3, 4, 9, 5, 13, 7, 11, 7, 6, 4, 13, 8, 3, 17, 6, 5, 8, 12, 12, 3, - 6, 6, 4, 4, 4, 12, 6, 10, 8, 6, 10, 1, 9, 17, 8, 3, 8, 2, 5, 14, 8, 10, 7, 9, 8, 10, 6, 5, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,metaverse', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- GameFi and the excitement around finding a GameFi gem\n- Speculation about Elon Musk trying out BlackMythGame\n- Web3 gaming and its potential impact on the industry\n- Criticism of certain games like Warzone for unfair advantages\n- Public Playtest 3 and anticipation for the event\n- Bitget launchpool and the opportunity to win USDT\n- Partnerships between different metaverses for game nights\n- Enjin Gaming Multiverse and its upcoming launch\n\nOverall, the crypto community on social media is actively engaged in discussions about various aspects of the gaming and crypto industries, including new games, partnerships, and technological advancements.', - data: [ - 5, 2, 10, 9, 0, 1, 6, 3, 3, 7, 6, 6, 5, 6, 7, 11, 4, 5, 10, 6, 62, 9, 5, 6, 5, 10, 9, 3, 14, - 5, 3, 14, 9, 12, 6, 16, 31, 6, 3, 9, 4, 4, 5, 7, 4, 5, 6, 7, 2, 1, 5, 4, 4, 14, 9, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coin', - description: - 'The messages from Twitter discuss various topics related to meme coins in the crypto industry. Some key points mentioned include:\n- The importance of differentiating between real and fake meme coins\n- The potential for meme coins to outperform traditional investments\n- The risks associated with investing in meme coins, as they can experience significant volatility\n- The cultural significance of meme art and its evolution over time\n- The launch of a new meme coin launchpad with innovative features\n- The perception of meme coins as a pump-and-dump scheme by some individuals\n\nOverall, the messages highlight the growing popularity and potential opportunities in the meme coin market, while also emphasizing the need for caution and due diligence when investing in these assets.', - data: [ - 8, 9, 3, 9, 0, 3, 6, 2, 12, 6, 5, 15, 6, 2, 7, 9, 1, 4, 12, 2, 4, 6, 9, 4, 10, 10, 10, 9, 2, - 9, 8, 87, 9, 5, 5, 6, 8, 6, 4, 5, 6, 8, 3, 9, 4, 4, 4, 8, 7, 6, 4, 1, 4, 5, 3, - ], - }, - { - label: 'Tron Memecoins ', - topics: 'tron,sun,trx,sundog,meme', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Memecoins on Tron gaining attention and popularity\n- Specific memecoins like $TURBO, $FOFAR, $PONKE, $BUTT, $TBEER, and $SUNWUKONG being highlighted for their performance and potential\n- Tronkey being mentioned as one of the top memes on TRON\n- Speculation about TRONKEY being listed on a centralized exchange (CEX)\n- Use of GIFs related to Ponke being widely viewed and shared\n- Interest in Solana memecoins, particularly $BUTT and $TBEER\n- Discussion about the potential value and growth of $SUN as a dex token\n- Excitement about the revenue potential and buyback plans of SunPump and its impact on $SUN token value\n\nOverall, the sentiment on Twitter seems to be positive and enthusiastic about various memecoins and their potential for growth in the crypto industry.', - data: [ - 2, 6, 3, 4, 0, 1, 2, 3, 13, 1, 7, 6, 7, 6, 7, 8, 2, 8, 6, 1, 5, 7, 6, 5, 3, 0, 7, 8, 3, 4, - 6, 24, 4, 9, 4, 3, 5, 7, 8, 5, 5, 4, 9, 5, 2, 20, 22, 3, 3, 27, 10, 1, 4, 3, 2, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,presale,floor,coin', - description: - "The key topics currently discussed in the crypto industry on Twitter include Dogecoin, MoonBag, TapDaDoge, BabyDoge PAWS, potential rivals to Dogecoin such as SHIB, PEPE, FLOKI, WIF, and BONK, as well as a scam alert regarding $digi. There is also mention of a potential 500% gain with MoonBag, a Tap-To-Earn Game called TapDaDoge, and the milestone of 5,000,000 users playing BabyDoge PAWS. Additionally, there is speculation about the strength of Dogecoin's monopoly and moats compared to Bitcoin, as well as the potential for significant rallies in the meme coin market.", - data: [ - 4, 1, 3, 5, 0, 1, 2, 5, 0, 2, 1, 0, 1, 10, 106, 5, 1, 4, 10, 7, 1, 7, 8, 6, 2, 3, 3, 4, 6, - 5, 8, 3, 5, 0, 1, 2, 5, 4, 8, 4, 3, 5, 3, 3, 9, 7, 8, 7, 2, 3, 3, 2, 4, 1, 7, - ], - }, - { - label: 'DOGS listing', - topics: 'dogs,dog,deposit,listing,airdrop', - description: - 'The key topics discussed in the messages from Twitter are related to the cryptocurrency meme coin $DOGS, including its price analysis, trading competitions, deposit contests, giveaways, and upcoming events. The messages also mention trading strategies on platforms like Binance and Bybit, as well as the concept of narratives in the crypto industry. Additionally, there are references to community engagement activities such as sharing memes, participating in bounty hunting, and inviting friends to join in on the rewards. Overall, the focus is on the popularity and potential profitability of $DOGS within the crypto community.', - data: [ - 6, 3, 0, 3, 1, 5, 3, 5, 10, 1, 5, 4, 0, 2, 97, 4, 0, 5, 1, 2, 3, 6, 7, 2, 0, 3, 8, 10, 7, 3, - 2, 6, 3, 11, 5, 4, 3, 9, 4, 3, 4, 1, 4, 2, 4, 2, 4, 3, 7, 6, 1, 2, 4, 4, 4, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,collection', - description: - 'The key topics currently discussed in the crypto industry on social media include the debate on whether human-made art is considered real art, the rise of digital art on the blockchain, the popularity of NFTs (non-fungible tokens) in the art world, and the emergence of new artists utilizing technology such as 3D scanning tools. Artists like XCOPY are gaining recognition for their unique and innovative approach to creating art, while events like the Tezos art event #redcollage are showcasing the intersection of art and technology. Additionally, the mainstream potential of collaborations between artists like Pharrell, Lil Wayne, Lil Yachty, and Kyle Richh in the world of digital art is being highlighted. Overall, the crypto industry is witnessing a shift towards embracing digital art and exploring new ways of creating and collecting art through blockchain technology.', - data: [ - 7, 3, 52, 5, 1, 1, 4, 3, 1, 4, 6, 5, 3, 1, 1, 5, 2, 5, 7, 4, 6, 4, 3, 2, 6, 3, 1, 4, 7, 9, - 4, 2, 3, 5, 3, 7, 2, 3, 7, 5, 2, 5, 4, 6, 3, 6, 4, 4, 6, 1, 2, 1, 4, 3, 10, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,protocols,safe,yield', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include DeFi (Decentralized Finance), the convergence of traditional finance (TradFi) and DeFi, tokenization of Real-World Assets (RWAs), the importance of transparency and accountability in the financial system, the integration of diverse participants and assets in DeFi and Wall Street, the potential slippage in DeFi trading, the partnership between projects like PERI Finance and NendFi to expand DeFi possibilities, the need for non-speculative DeFi loan use cases, the acceleration of the dyad flywheel in DeFi projects, the launch of decentralized order book exchanges like DeXter on Radix, and the introduction of stablecoins like USDz with high APY rewards. Overall, the discussions highlight the innovation, growth, and challenges within the DeFi space and its impact on the future of finance.', - data: [ - 4, 6, 3, 5, 0, 0, 1, 2, 1, 3, 12, 7, 3, 19, 5, 3, 8, 4, 10, 4, 4, 3, 4, 1, 6, 10, 7, 2, 4, - 3, 2, 4, 3, 6, 1, 4, 1, 2, 14, 9, 4, 11, 8, 4, 4, 12, 2, 5, 3, 5, 2, 4, 0, 6, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,art,projects', - description: - 'The key topics currently discussed in the crypto industry on social media include NFTs, NFT sales bots, new NFT strategies, NFT art, hybrid versions of NFTs x memecoins, NFT standards, NFT documentation, specific NFT information, NFT collections, bidding on NFTs, and the impact of NFTs on the art world. There is also mention of specific NFT projects such as creature cubes and Fidenzas, as well as discussions about using NFTs for building and developing tools. Overall, the sentiment seems positive with excitement for the fall season and experimentation with new NFT designs.', - data: [ - 3, 1, 6, 6, 0, 1, 2, 5, 4, 3, 7, 1, 3, 4, 7, 3, 4, 3, 9, 9, 2, 5, 1, 7, 6, 5, 0, 2, 1, 6, 3, - 7, 5, 22, 5, 1, 4, 5, 9, 4, 3, 5, 3, 4, 2, 5, 0, 5, 5, 5, 3, 1, 2, 3, 6, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,energy,pools,power', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin mining and the impact on energy consumption\n- Sentiment around Bitcoin mining post-halving\n- Accessibility of Bitcoin mining to hobbyists through USB miners\n- Amanda Fabiano's role in the crypto industry\n- Rhodium Bitcoin miner going bust and implications for the industry\n- TeraWulf launching a new Bitcoin mining facility and potential tech partnerships\n- Concerns about potential price drops due to high Bitcoin miners' reserves\n- Importance of working with nature for optimal Bitcoin mining operations\n- Use of small USB mining devices for Bitcoin mining\n- Nation State mining and advances in waste management for mining facilities\n- Electricity costs and profitability of Bitcoin mining\n- Staking rewards and strategies for maximizing returns in the crypto market.", - data: [ - 6, 7, 2, 2, 23, 8, 5, 2, 4, 1, 3, 3, 4, 4, 3, 0, 17, 3, 3, 3, 2, 5, 0, 5, 0, 2, 2, 5, 2, 4, - 4, 15, 4, 4, 3, 6, 8, 3, 3, 5, 9, 3, 2, 3, 11, 3, 5, 1, 1, 1, 1, 1, 2, 2, 2, - ], - }, - { - label: 'OpenSea & SEC', - topics: 'opensea,wells,sec,notice,nfts', - description: - "The key topic discussed in the messages from twitter is the SEC issuing a Wells notice to OpenSea, a popular NFT marketplace, regarding the classification of NFTs as securities. The community is divided on whether NFTs should be regulated by the SEC, with some criticizing the move as unnecessary government intervention, while others see it as a necessary step to protect investors. OpenSea's CEO has responded to the notice by pledging $5 million to defend creators against the SEC. Overall, there is a mix of support and criticism towards OpenSea and the SEC's actions in the crypto industry.", - data: [ - 4, 3, 2, 1, 0, 2, 13, 0, 2, 6, 4, 5, 0, 4, 2, 3, 0, 9, 1, 2, 4, 7, 3, 6, 3, 3, 7, 4, 0, 1, - 6, 5, 3, 3, 14, 3, 4, 3, 4, 23, 1, 5, 8, 2, 3, 4, 3, 6, 2, 0, 3, 1, 9, 1, 1, - ], - }, - { - label: 'Soneium', - topics: 'sony,layer2,labs,blockchain,l2', - description: - "The key topic discussed in the messages from Twitter is the launch of Sony's new blockchain called Soneium, which is an Ethereum Layer 2 focused on mainstream adoption. Sony has partnered with Startale Labs to create this blockchain, using Optimism technology on top of Ethereum. The goal is to bring entertainment, gaming, and finance content into the world of web3 applications. This move by Sony signifies a significant step towards mainstream adoption of blockchain technology and the development of the metaverse. Additionally, there is mention of Apple releasing a blockchain and partnering with Chainlink, indicating a growing trend of tech giants entering the blockchain space.", - data: [ - 0, 3, 3, 3, 0, 2, 15, 3, 3, 4, 5, 3, 0, 0, 3, 0, 6, 8, 0, 0, 4, 1, 5, 1, 2, 2, 4, 19, 0, 1, - 1, 0, 2, 6, 1, 2, 2, 1, 1, 0, 0, 1, 0, 0, 10, 1, 2, 4, 3, 1, 3, 0, 0, 4, 0, - ], - }, - { - label: 'PEPE', - topics: 'pepe,mcap,frens,render,presale', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. The rise in price of $PEPE by 25% in a week, with the Pepe Unchained Presale passing the $10.5M mark.\n2. The potential price predictions for $PEPE in 2025, with discussions on whether holding 100 million tokens could make someone a millionaire.\n3. The movement of Klaytn Pepe (KEPE) and the excitement around its return.\n4. The comparison of an AI-powered token set to surpass PEPE and Polygon (MATIC) in market dominance by 2025.\n5. The contemplative Pepe artwork by @ApolloDoge at Lake Como as a tribute to @CozomoMedici's purchase of another 1/1 from the same collection.\n6. The discussion around bullish and bearish breakout scenarios for the #PEPE coin price.\n7. The trading strategies involving $PEPE, such as longing at a specific price and setting stop loss and take profit levels.\n8. The mention of other meme coins like $apu and the preference for a quiet $pepe town.\n9. The significant exit of 1.48 trillion #PEPE from Binance in an epic whale shift.\n10. The general sentiment and excitement around $PEPE within the crypto community.\n\nOverall, it appears that $PEPE is a popular topic of discussion on Twitter within the crypto industry, with various aspects of its price, trading strategies, artwork, and future potential being highlighted.", - data: [ - 1, 1, 6, 2, 0, 0, 1, 3, 4, 3, 5, 0, 3, 2, 2, 2, 0, 4, 4, 9, 7, 2, 3, 2, 5, 1, 3, 2, 2, 3, 3, - 1, 2, 1, 3, 23, 0, 1, 1, 1, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 3, 1, 4, 4, 1, - ], - }, - { - label: 'TON', - topics: 'ton,tonblockchain,production,network,toncoin', - description: - 'The key topics discussed in the messages from Twitter regarding the TON blockchain include:\n1. The TON blockchain experiencing downtime and block production halts.\n2. The TON community expressing solidarity with Pavel Durov in the fight for free speech and decentralization.\n3. The TON blockchain being back online after outages caused by a DOGS memecoin airdrop.\n4. Assurance from the TON Foundation that all crypto transactions would be processed and no assets lost during block production disruptions.\n5. Telegram Wallet developers stating that the TON network has been restored after failures in block production due to heavy load of minting DOGS tokens.\n6. The TON community reaffirming its support for decentralization and freedom of speech.\n7. Speculation and concerns about the stability and speculation on the TON blockchain.\n8. Clarification on the reasons behind the block production halts and the possibility of bugs causing the issues.\n\nOverall, the messages reflect a mix of technical issues, community support, and speculation surrounding the TON blockchain and its operations.', - data: [ - 1, 1, 1, 2, 0, 0, 6, 1, 0, 4, 5, 1, 2, 0, 1, 2, 0, 2, 2, 2, 0, 2, 1, 1, 4, 1, 0, 2, 4, 0, 3, - 0, 2, 3, 13, 1, 0, 2, 0, 2, 0, 0, 1, 1, 0, 1, 0, 0, 30, 32, 0, 2, 2, 0, 1, - ], - }, - { - label: 'CAT', - topics: 'cat,cats,bnb,win,dog', - description: - 'The messages from Twitter are discussing various topics related to cryptocurrency, specifically focusing on the $CAT token. Users are sharing their opinions on different cat-themed tokens, such as TronCat and Simons Cat, and discussing potential milestones for $CAT to reach by September 29th. Additionally, there is a mention of a bounty program for the $CAT token, where users can earn rewards by trading and depositing the token. Overall, the conversation revolves around the trading and potential growth of cat-themed cryptocurrencies in the market.', - data: [ - 1, 1, 1, 1, 1, 1, 0, 0, 31, 2, 2, 0, 2, 2, 0, 0, 1, 6, 0, 1, 3, 3, 0, 1, 1, 1, 4, 4, 1, 1, - 1, 6, 3, 3, 1, 3, 1, 6, 1, 4, 0, 1, 1, 2, 1, 1, 7, 1, 1, 0, 1, 2, 2, 2, 0, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,wif,loss,million', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Whales accumulating Bitcoin and Ethereum: There are mentions of large investors, known as whales, actively buying and selling significant amounts of Bitcoin and Ethereum. This activity is closely monitored by the community.\n\n2. Altcoins and investment strategies: Discussions about various altcoins, including Toncoin, Uniswap, and Lido, are taking place. There are also mentions of investment strategies, such as Fibonacci levels, and predictions about price movements.\n\n3. Impact of whales on the market: The role of whales in influencing the market sentiment and prices of cryptocurrencies like Bitcoin, Ethereum, and XRP is being analyzed. There are also mentions of bearish sentiments and their potential impact on certain stocks like Palantir.\n\n4. Subscription price changes and promotions: Updates on subscription price changes for services like Unusual Whales are being shared, along with promotions and sales to attract new users.\n\n5. Trading options and bonuses: Information about trading options, bonuses, and deposit bonuses for platforms like tastytrade are being shared, encouraging users to start trading various stocks and options contracts.\n\nOverall, the discussions on social media platforms reflect a mix of market analysis, investment strategies, whale activity, and promotional offers in the crypto industry.', - data: [ - 5, 7, 0, 5, 1, 11, 0, 4, 1, 1, 0, 0, 1, 1, 0, 1, 9, 1, 1, 1, 0, 0, 0, 1, 0, 2, 2, 0, 0, 1, - 2, 1, 2, 2, 1, 1, 1, 2, 0, 2, 1, 4, 5, 4, 2, 1, 0, 0, 2, 4, 2, 1, 1, 21, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-35.json b/priv/repo/major_topics_seed/data-35.json deleted file mode 100644 index 89d155ed6a..0000000000 --- a/priv/repo/major_topics_seed/data-35.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["29.08.24","30.08.24","30.08.24","30.08.24","30.08.24","30.08.24","30.08.24","30.08.24","31.08.24","31.08.24","31.08.24","31.08.24","31.08.24","31.08.24","31.08.24","31.08.24","01.09.24","01.09.24","01.09.24","01.09.24","01.09.24","01.09.24","01.09.24","01.09.24","02.09.24","02.09.24","02.09.24","02.09.24","02.09.24","02.09.24","02.09.24","02.09.24","03.09.24","03.09.24","03.09.24","03.09.24","03.09.24","03.09.24","03.09.24","03.09.24","04.09.24","04.09.24","04.09.24","04.09.24","04.09.24","04.09.24","04.09.24","04.09.24","05.09.24","05.09.24","05.09.24","05.09.24","05.09.24","05.09.24","05.09.24"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,understand,world","description":"The key topics discussed in the messages from twitter about Bitcoin include:\n- Real world adoption of Bitcoin\n- Bitcoin's strength compared to traditional markets like the S&P and NDX\n- Bitcoin as a technology for awakening and expanding consciousness\n- Comparison of Bitcoin dominance chart against other cryptocurrencies\n- Criticism of Cardano and promotion of Bitcoin\n- Importance of doing your own research (DYOR) when it comes to understanding Bitcoin\n- Skepticism towards experts who claim to understand Bitcoin but lack basic knowledge\n\nOverall, the messages reflect a mix of positive sentiment towards Bitcoin's potential and skepticism towards other cryptocurrencies and supposed experts in the field.","data":[15,7,13,16,84,77,6,15,16,13,10,12,13,12,18,12,11,16,19,22,19,16,21,17,14,12,16,18,21,13,12,11,22,6,4,15,11,10,17,12,14,16,15,15,14,16,20,20,17,15,25,13,11,10,17]},{"label":"AI","topics":"ai,models,coinbase,human,intelligence","description":"The key topics discussed in the messages from Twitter related to the crypto industry include:\n1. The use of AI in the crypto world, with discussions on AI tools for generating images and animating them, as well as the importance of UX designers in an AI-forward future.\n2. The concept of AI-to-AI crypto transactions, where AI bots use crypto tokens to purchase AI tokens from each other.\n3. The debate on choosing between a forever human and an AI humanoid programmable robot, with considerations on the capabilities and downsides of each.\n4. The need for a stronger consumer product narrative and campaign for AI, to inspire and demonstrate its potential.\n5. The idea of agentic AI on the blockchain, where bots have the same rights and abilities as humans to own, buy, and sell without human intervention.\n6. The importance of access to high-quality data for AI models, as discussed by Henry, CTO of RSS3.\n7. The challenges and limitations faced by non-coders when using AI tools like Cursor + Claude, including the need for debugging and babysitting the process.\n\nOverall, the messages reflect a diverse range of discussions on AI, crypto transactions, consumer narratives, and the potential of AI in various industries.","data":[16,77,9,14,0,1,12,8,13,12,14,19,3,10,6,11,4,11,15,16,23,6,13,16,9,23,11,23,12,14,13,22,10,11,13,8,13,15,16,17,14,11,12,9,9,13,13,12,11,9,7,13,7,11,14]},{"label":"Art","topics":"art,artists,artist,piece,collection","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Crypto Punks and artists collecting them\n- Art in the crypto industry, including S3XY CAR art, 3D art, AI artwork, and generative art\n- Value of human-produced artwork with proof of work compared to AI artwork\n- Eye drops to reduce dependency on reading glasses hitting the Indian market\n- Image to image generation on heyglif\n- Highlight of women artists in generative art\n- Crypto art and NFTs\n- Generative art timeline and events shaping the industry\n- On-chain era in generative art\n- Digital expression and collaborations in the crypto industry\n\nOverall, the messages reflect a strong interest in art, technology, and innovation within the crypto industry, with a focus on inclusivity and the value of human creativity.","data":[10,13,63,6,1,0,3,9,11,5,12,4,12,5,8,8,9,6,6,8,5,9,8,5,8,10,8,6,5,12,18,3,8,0,8,11,9,6,5,8,1,4,15,9,6,10,4,10,2,1,6,5,4,8,12]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics currently discussed in the crypto industry on social media include meme coins, meme coin super cycles, new meme coin launches, potential meme coin leaders, comparison of meme coins to other cryptocurrencies, market updates on meme coins, and the performance of the top 10 meme coins by market cap over the past year. There is also discussion about the potential for meme coins to bounce back and the average drop in value of meme coins from their peak. Overall, meme coins continue to be a popular and volatile topic in the crypto community.","data":[3,4,3,4,1,0,4,4,7,8,9,4,13,6,8,4,1,4,8,3,4,11,3,7,6,1,3,6,6,8,8,86,10,4,9,7,9,12,6,4,4,2,8,11,6,6,4,6,7,7,4,1,3,3,4]},{"label":"ETF Flows","topics":"etfs,net,etf,spot,flows","description":"CONTEXT:\n\nThe discussion on Twitter revolves around the recent outflows in Bitcoin ETFs, with a total of $767.6 million in outflows over the past 5 trading days. Despite the approval of SEC spot Ether ETFs, Ethereum has been described as a flop compared to Bitcoin, which has maintained a high preference among the global elite. The market continues to struggle with liquidity post-ETFs, with U.S. spot Bitcoin ETFs experiencing their largest outflows since May 1. Additionally, digital asset investment products saw $305 million in outflows, with Bitcoin leading with $319 million and Ethereum seeing $5.7 million in outflows. Grayscale ETF GBTC had a net outflow of $34.2471 million, contributing to the overall historical net outflow of $19.936 billion. The outflows were impacted by strong US economic data dampening hopes for a Fed rate cut.","data":[8,0,1,2,12,20,5,4,3,1,1,2,16,8,5,6,53,3,3,7,1,4,4,5,10,8,1,2,4,8,3,0,1,10,2,6,1,1,3,4,2,0,15,3,37,5,0,0,3,14,0,1,1,8,10]},{"label":"Inflation","topics":"inflation,fed,recession,rate,cut","description":"The key topics currently discussed in the crypto industry on social media include:\n- Inflation and its impact on the Federal Reserve's interest rate decisions\n- Bitcoin price fluctuations in response to Fed rate cuts\n- Economic data indicating a mix of resilience and challenges in the U.S. economy\n- Concerns about a potential recession and its effects on the market\n- ISM data showing weakness in manufacturing and construction sectors\n- Speculation on the impact of Fed policies, government spending, and politics on market volatility\n- Debate on whether rate cuts still mean \"buy the dip\" in today's inflationary era","data":[10,8,4,2,3,1,6,4,2,2,0,5,7,5,8,8,3,4,9,3,9,5,5,4,4,27,15,0,3,2,15,1,9,0,3,2,10,7,7,35,6,8,7,5,3,2,2,10,5,4,1,2,3,3,17]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Web3 gaming and its potential for growth in the industry\n- The benefits of Web3 gaming compared to traditional Web2 gaming\n- New developments and partnerships in the crypto gaming space\n- The integration of crypto payments and Mini Apps in gaming platforms\n- The concept of \"player founder\" enabled by Web3 technology\n- Regional differences in the narrative around Web3 gaming, particularly in Asia\n- Opportunities for users to earn rewards and prizes through gaming campaigns\n- The launch of new gaming projects and platforms, such as Nitro Leaguegame and Tribally\n- The impact of Web3 technology on the gaming industry and the role of players as partners in the ecosystem.","data":[4,5,5,2,0,2,7,5,6,8,4,3,0,5,8,4,9,10,6,2,57,3,4,1,8,3,5,10,5,4,1,3,4,2,8,10,22,3,5,8,7,8,2,4,5,6,6,5,6,3,4,4,2,4,6]},{"label":"BTC Mining","topics":"mining,miners,miner,revenue,block","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin miners selling a large amount of BTC over the weekend\n- Bitcoin miner revenue dropping significantly in August\n- Riot Platforms holding over 10,000 Bitcoin\n- Monetizing stranded/waste gas in the oilfield by mining Bitcoin\n- Immersion mining and its benefits\n- Sustainable Bitcoin mining and its impact on renewable energy\n- Dragonball A11 ASIC miner for Radiant\n- Gucci $HIVE and its performance in the mining industry\n\nOverall, the messages highlight the current trends and developments in the crypto industry, focusing on Bitcoin mining, revenue fluctuations, new mining technologies, and the potential for sustainable practices in the industry.","data":[6,2,1,4,48,8,9,1,3,2,2,6,2,0,2,4,4,3,2,5,4,3,0,9,6,8,2,8,6,5,1,20,7,4,7,4,4,1,4,6,10,5,9,5,15,4,4,4,2,4,3,5,1,4,2]},{"label":"BTC in the month of September","topics":"september,month,historically,october,returns","description":"Based on the messages from Twitter, it seems that there is a lot of discussion about the historical performance of Bitcoin in the month of September. Some users believe that September is typically a volatile month for Bitcoin, with potential for both gains and losses. Others point out that historically, September has been a bearish month for Bitcoin, with more losses than gains.\n\nThere is also mention of the pattern where August and September have alternated in price movements, with one month being bearish and the other bullish. Some users are predicting that September will continue to be a sideways month for Bitcoin, with little movement in either direction.\n\nOverall, the sentiment seems to be mixed about the potential performance of Bitcoin in September, with some users expecting volatility and others expecting a continuation of the current sideways trend. Additionally, there is mention of the upcoming month of October, which historically has shown more bullish seasonality for Bitcoin.","data":[5,2,4,13,8,8,6,9,2,2,4,3,2,4,0,3,3,5,4,3,5,6,2,26,1,4,1,2,1,5,0,0,6,2,0,2,3,5,4,1,2,3,8,6,5,4,5,1,3,4,2,4,3,3,2]},{"label":"DOGE","topics":"dogecoin,doge,floor,wedge,dog","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding both $SHIB and $DOGE in the crypto community. The messages mention various aspects of Dogecoin, including its potential for growth, the push to change it to proof of stake, and the comparison with other altcoins like Cardano. Additionally, there is a focus on the community-driven nature of $DOG and the upcoming utility launch for Retro Phones. Overall, the sentiment seems to be positive towards both $SHIB and $DOGE, with investors closely monitoring their performance and potential for future gains.","data":[5,1,1,4,0,0,1,1,0,6,2,0,2,2,74,1,3,3,3,2,2,3,4,4,3,1,3,3,6,3,1,1,6,0,3,5,3,4,3,1,9,1,5,5,0,3,4,6,4,1,0,1,3,4,2]},{"label":"SOL","topics":"solana,sol,ethereum,liquid,level","description":"The key topic discussed in the messages from Twitter is Solana. Users are excited about the growth and potential of the Solana blockchain, with mentions of launching new exchanges, trading activities, and the introduction of new tokens like BNSOL for liquid staking. There is also discussion about the high validator requirements for Solana and the success of the world's first Solana ETF. Overall, the sentiment towards Solana appears to be positive and optimistic.","data":[2,1,2,6,1,1,3,4,4,3,4,5,2,5,4,3,7,4,1,2,3,2,1,2,4,4,0,2,2,2,3,1,1,1,1,3,1,7,6,10,4,7,7,4,19,6,5,1,3,6,4,6,5,5,3]},{"label":"BTC Price","topics":"58k,gang,100k,bitcoin,hit","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- Bitcoin price predictions, with targets ranging from $14,000 to $200,000 by 2025\n- Speculation on whether Bitcoin will surpass $80,000 by the end of 2024\n- Potential market cap of Bitcoin surpassing Gold in the future\n- Benefits of Bitcoin for small economies and businesses, such as reducing risk for medical practices and unpaid invoices\n- Caution against relying too heavily on forecasts and the potential for Bitcoin to stabilize at $58,000\n- Exciting projections for Bitcoin's future value, with one asset manager suggesting a potential price of $2.9 million per coin by 2050\n- References to the concept of Satoshi and the potential future value of 1 Satoshi reaching $1 USD\n- Personal investment strategies, such as buying more Bitcoin at specific price points like $35,000\n\nOverall, the messages reflect a mix of price speculation, optimism about Bitcoin's future potential, caution against over-reliance on forecasts, and personal investment strategies.","data":[5,2,0,2,15,17,3,1,0,3,3,4,0,1,0,0,4,5,2,2,9,6,1,12,4,2,3,2,2,2,1,0,1,1,0,5,3,12,1,5,2,5,4,9,5,8,1,10,1,0,2,0,1,3,4]},{"label":"NFT","topics":"nft,nfts,mint,sales,dead","description":"The key topics currently discussed in the crypto industry on Twitter include fractionalized ownership of NFTs, the importance of promotion for individual NFT creators, the anticipation of new NFT collections to kick off the next bull run, the evolution and challenges of the NFT market, giveaways and new features in the NFT space. There is also a mention of a free NFT that has skyrocketed in value and the need for a better name for NFTs. Overall, the sentiment seems to be a mix of excitement, concern, and anticipation for the future of NFTs.","data":[1,3,2,2,0,0,0,0,3,0,4,3,5,5,2,1,1,4,4,7,4,0,4,2,4,6,5,3,3,3,6,2,6,3,11,4,4,2,4,2,3,8,4,3,1,4,1,4,4,1,1,4,3,3,1]},{"label":"SUNDOG","topics":"tron,sun,justin,trx,htx","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. SunPump MemeCoin competition on HTX\n2. SunPump's revenue surpassing Pumpfun\n3. Listing of $SUNDOG on Kucoin\n4. Tron's potential for NFT projects\n5. Potential millionaire opportunities with Tron and Mpeppe in 2024\n6. SunPump's on-chain buyback & burn strategy\n7. Justin Sun's influence on the meme war\n8. Partnership between $SUNDOG and $MUNCAT\n9. HTX Affiliates Exclusive Trading Challenge\n10. Governance proposal for a 100% QUICK token burn\n11. Launch of SUN Boost feature\n12. Staking pool for $SUNDOG on Tron ecosystem\n13. Discussion about $SOB token and digital collectibles\n\nThese topics reflect the current trends and discussions within the crypto community on Twitter.","data":[4,4,0,1,1,1,3,3,2,3,2,0,3,3,0,3,1,1,2,4,4,3,4,0,9,3,3,2,3,4,1,6,5,4,2,3,0,0,5,6,2,7,1,0,2,22,1,0,2,11,2,2,6,1,0]},{"label":"DeFi","topics":"defi,finance,strategies,v2,alex","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. DeFi (Decentralized Finance): Discussions about various DeFi protocols, projects, and advancements in the DeFi space.\n2. Tokenization: Conversations around asset tokenization on-chain and its impact on decentralized finance infrastructure.\n3. Regulatory Landscape: Exploration of the regulatory environment and its implications for the crypto journey, particularly in the DeFi sector.\n4. Bitcoin DeFi: Events and discussions related to Bitcoin DeFi, including the upcoming Bitcoin DeFi Show and the integration of Bitcoin in decentralized finance.\n5. Partnerships and Integrations: Announcements of partnerships between different projects in the DeFi space to enhance liquidity sources and trading experiences.\n6. Layoffs in DeFi: Speculation about the need for a large workforce in the DeFi industry due to advancements in technology like artificial intelligence, potentially leading to an increase in layoffs.\n7. Critiques and Evaluations: Critiques of DeFi projects and protocols, emphasizing the importance of designing products that fulfill real needs for success.\n8. Community Identity: Discussions about sovereign communities and digital nations in the DeFi space, highlighting the importance of top-level identities and community engagement.\n9. dYdX Unlimited: Teasers about the upcoming launch of dYdX Unlimited, a new era of decentralized finance trading.\n10. deBridge on Rubic: Updates on the performance of deBridge on Rubic, showcasing its leading position among integrated cross-chain providers with a high monthly trading volume.","data":[3,4,1,3,0,0,3,3,1,2,3,1,0,8,2,4,2,5,6,5,7,0,3,5,4,6,2,6,2,2,1,0,6,3,1,1,1,2,4,2,2,4,1,3,7,1,5,3,3,1,8,1,0,0,3]},{"label":"Vitalik","topics":"vitalik,buterin,vitalikbuterin,eth,800","description":"The key topic discussed in the messages from Twitter is the actions of Ethereum co-founder Vitalik Buterin, specifically regarding his transactions involving ETH and other cryptocurrencies. There are mentions of Vitalik selling ETH, transferring large amounts of ETH to different wallets, and sparking discussions within the crypto community. Some users speculate about Vitalik's motives and criticize his actions, while others question the impact of his transactions on the market. Overall, the messages highlight the attention and scrutiny that Vitalik Buterin's activities receive within the crypto industry.","data":[3,2,1,1,0,0,3,5,2,3,2,3,0,3,4,6,7,3,1,11,3,2,0,4,4,4,1,2,1,3,4,0,5,0,0,0,2,0,3,0,5,6,6,1,2,3,1,1,0,13,3,2,2,0,4]},{"label":"Whales","topics":"whale,whales,wallets,bought,million","description":"The key topics discussed in the messages from Twitter are:\n1. Whale movements in the crypto market, including large transactions of Bitcoin and Ethereum by whales to exchanges like Binance and Coinbase.\n2. The impact of whale activity on the market, such as influencing prices and market trends.\n3. Whales accumulating specific tokens like NULS and WIF, potentially affecting their value.\n4. Alerts about whale activity, such as whales dumping tokens and taking losses.\n5. Opportunities for tracking whale activity and making informed decisions in the market.\n6. Updates on exchanges listing new tokens like ME and the trading volume on different platforms.\n7. Reports on specific whale transactions, such as a whale buying Aave tokens and the growth of BNB Smart Chain.\n8. Promotions and sales related to tracking whale activity and market insights.\nOverall, the messages highlight the significance of whale activity in the crypto industry and its implications for market participants.","data":[1,0,1,2,5,6,3,5,3,2,0,5,5,1,3,0,5,0,1,1,1,1,2,0,2,1,2,0,2,2,0,2,3,0,9,2,0,0,0,1,3,2,3,2,0,1,1,0,1,1,1,2,3,24,1]},{"label":"TON","topics":"ton,telegram,tonblockchain,transactions,arrest","description":"The key topics currently discussed on Twitter regarding the crypto industry include:\n\n1. The launch date of the Telegram game \"Catizen\" and its token, $CATI, as pre-market trading expands.\n2. The growth and development of the TON Blockchain, including the decentralized stablecoin protocol TonStable and the record number of transactions.\n3. The partnership between Binance and TON Blockchain, despite Telegram's troubles.\n4. The price fluctuations of TON coin, including a recent plummet to $0.31 due to technical issues.\n5. The increasing popularity and activity on the TON Blockchain, with active addresses surpassing Bitcoin and Ethereum.\n6. The launch of new projects on the TON Blockchain, such as Gaspump TV and the TON Cook restaurant management game.\n7. Price predictions and market analysis for TON coin, as well as comparisons to other meme coins and cryptocurrencies.\n8. The implementation of a cryptonative legal system on the TON Blockchain, including issues with network outages and airdrops causing disruptions.\n\nOverall, the discussions on Twitter reflect a mix of excitement, challenges, and developments within the crypto industry, particularly related to the TON Blockchain and associated projects.","data":[2,1,1,0,0,0,3,0,0,2,3,0,0,3,3,1,1,2,0,3,4,0,0,5,2,0,1,1,2,2,1,0,1,1,5,4,2,0,1,1,1,0,0,1,2,1,0,1,53,4,0,1,2,0,0]},{"label":"ADA","topics":"cardano,fork,ada,governance,hard","description":"The key topic currently discussed on Twitter is the Chang hard fork on the Cardano blockchain. This upgrade introduces decentralized governance and marks a significant transition for Cardano. Charles Hoskinson, the founder of Cardano, has spoken about the ADA burn mechanism and the move towards full decentralization. The Chang hard fork has been completed, and the Voltaire era has begun, allowing ADA holders to vote directly or delegate. The crypto community is closely following these developments and the impact they will have on Cardano's future.","data":[5,4,0,0,0,2,4,0,0,1,7,3,1,3,0,0,2,3,1,3,0,3,7,1,1,6,2,2,0,2,0,2,1,2,0,1,4,4,1,4,3,1,0,4,2,3,4,2,2,1,1,3,1,1,0]},{"label":"AAVE","topics":"aave,founder,holds,use,worth","description":"The key topics currently discussed on Twitter regarding the crypto industry, specifically $AAVE, include:\n- AAVE's recovery and potential price movement\n- Speculation on whether AAVE will surpass the $150 barrier\n- Whale activity affecting AAVE's price\n- Technical analysis of AAVE's price chart\n- Potential trading opportunities and targets for AAVE\n- Comparison of AAVE's performance to other assets in the market\n- Importance of driving use cases for AVSs in the industry\n- Analysis of AAVE's monthly and daily price charts\n- Discussion on indicators for trading AAVE\n\nOverall, the sentiment on Twitter seems to be positive towards AAVE, with discussions focusing on potential price movements, trading opportunities, and technical analysis.","data":[25,0,2,1,0,0,0,2,0,1,1,1,2,1,0,1,0,3,2,4,1,0,1,1,1,2,1,2,1,1,0,1,1,0,2,2,0,8,2,2,1,1,2,2,0,1,0,0,1,0,0,3,0,4,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-35.ts b/priv/repo/major_topics_seed/data-35.ts deleted file mode 100644 index 05d0a35761..0000000000 --- a/priv/repo/major_topics_seed/data-35.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '29.08.24', - '30.08.24', - '30.08.24', - '30.08.24', - '30.08.24', - '30.08.24', - '30.08.24', - '30.08.24', - '31.08.24', - '31.08.24', - '31.08.24', - '31.08.24', - '31.08.24', - '31.08.24', - '31.08.24', - '31.08.24', - '01.09.24', - '01.09.24', - '01.09.24', - '01.09.24', - '01.09.24', - '01.09.24', - '01.09.24', - '01.09.24', - '02.09.24', - '02.09.24', - '02.09.24', - '02.09.24', - '02.09.24', - '02.09.24', - '02.09.24', - '02.09.24', - '03.09.24', - '03.09.24', - '03.09.24', - '03.09.24', - '03.09.24', - '03.09.24', - '03.09.24', - '03.09.24', - '04.09.24', - '04.09.24', - '04.09.24', - '04.09.24', - '04.09.24', - '04.09.24', - '04.09.24', - '04.09.24', - '05.09.24', - '05.09.24', - '05.09.24', - '05.09.24', - '05.09.24', - '05.09.24', - '05.09.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,understand,world', - description: - "The key topics discussed in the messages from twitter about Bitcoin include:\n- Real world adoption of Bitcoin\n- Bitcoin's strength compared to traditional markets like the S&P and NDX\n- Bitcoin as a technology for awakening and expanding consciousness\n- Comparison of Bitcoin dominance chart against other cryptocurrencies\n- Criticism of Cardano and promotion of Bitcoin\n- Importance of doing your own research (DYOR) when it comes to understanding Bitcoin\n- Skepticism towards experts who claim to understand Bitcoin but lack basic knowledge\n\nOverall, the messages reflect a mix of positive sentiment towards Bitcoin's potential and skepticism towards other cryptocurrencies and supposed experts in the field.", - data: [ - 15, 7, 13, 16, 84, 77, 6, 15, 16, 13, 10, 12, 13, 12, 18, 12, 11, 16, 19, 22, 19, 16, 21, - 17, 14, 12, 16, 18, 21, 13, 12, 11, 22, 6, 4, 15, 11, 10, 17, 12, 14, 16, 15, 15, 14, 16, - 20, 20, 17, 15, 25, 13, 11, 10, 17, - ], - }, - { - label: 'AI', - topics: 'ai,models,coinbase,human,intelligence', - description: - 'The key topics discussed in the messages from Twitter related to the crypto industry include:\n1. The use of AI in the crypto world, with discussions on AI tools for generating images and animating them, as well as the importance of UX designers in an AI-forward future.\n2. The concept of AI-to-AI crypto transactions, where AI bots use crypto tokens to purchase AI tokens from each other.\n3. The debate on choosing between a forever human and an AI humanoid programmable robot, with considerations on the capabilities and downsides of each.\n4. The need for a stronger consumer product narrative and campaign for AI, to inspire and demonstrate its potential.\n5. The idea of agentic AI on the blockchain, where bots have the same rights and abilities as humans to own, buy, and sell without human intervention.\n6. The importance of access to high-quality data for AI models, as discussed by Henry, CTO of RSS3.\n7. The challenges and limitations faced by non-coders when using AI tools like Cursor + Claude, including the need for debugging and babysitting the process.\n\nOverall, the messages reflect a diverse range of discussions on AI, crypto transactions, consumer narratives, and the potential of AI in various industries.', - data: [ - 16, 77, 9, 14, 0, 1, 12, 8, 13, 12, 14, 19, 3, 10, 6, 11, 4, 11, 15, 16, 23, 6, 13, 16, 9, - 23, 11, 23, 12, 14, 13, 22, 10, 11, 13, 8, 13, 15, 16, 17, 14, 11, 12, 9, 9, 13, 13, 12, 11, - 9, 7, 13, 7, 11, 14, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,collection', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Crypto Punks and artists collecting them\n- Art in the crypto industry, including S3XY CAR art, 3D art, AI artwork, and generative art\n- Value of human-produced artwork with proof of work compared to AI artwork\n- Eye drops to reduce dependency on reading glasses hitting the Indian market\n- Image to image generation on heyglif\n- Highlight of women artists in generative art\n- Crypto art and NFTs\n- Generative art timeline and events shaping the industry\n- On-chain era in generative art\n- Digital expression and collaborations in the crypto industry\n\nOverall, the messages reflect a strong interest in art, technology, and innovation within the crypto industry, with a focus on inclusivity and the value of human creativity.', - data: [ - 10, 13, 63, 6, 1, 0, 3, 9, 11, 5, 12, 4, 12, 5, 8, 8, 9, 6, 6, 8, 5, 9, 8, 5, 8, 10, 8, 6, - 5, 12, 18, 3, 8, 0, 8, 11, 9, 6, 5, 8, 1, 4, 15, 9, 6, 10, 4, 10, 2, 1, 6, 5, 4, 8, 12, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The key topics currently discussed in the crypto industry on social media include meme coins, meme coin super cycles, new meme coin launches, potential meme coin leaders, comparison of meme coins to other cryptocurrencies, market updates on meme coins, and the performance of the top 10 meme coins by market cap over the past year. There is also discussion about the potential for meme coins to bounce back and the average drop in value of meme coins from their peak. Overall, meme coins continue to be a popular and volatile topic in the crypto community.', - data: [ - 3, 4, 3, 4, 1, 0, 4, 4, 7, 8, 9, 4, 13, 6, 8, 4, 1, 4, 8, 3, 4, 11, 3, 7, 6, 1, 3, 6, 6, 8, - 8, 86, 10, 4, 9, 7, 9, 12, 6, 4, 4, 2, 8, 11, 6, 6, 4, 6, 7, 7, 4, 1, 3, 3, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,net,etf,spot,flows', - description: - 'CONTEXT:\n\nThe discussion on Twitter revolves around the recent outflows in Bitcoin ETFs, with a total of $767.6 million in outflows over the past 5 trading days. Despite the approval of SEC spot Ether ETFs, Ethereum has been described as a flop compared to Bitcoin, which has maintained a high preference among the global elite. The market continues to struggle with liquidity post-ETFs, with U.S. spot Bitcoin ETFs experiencing their largest outflows since May 1. Additionally, digital asset investment products saw $305 million in outflows, with Bitcoin leading with $319 million and Ethereum seeing $5.7 million in outflows. Grayscale ETF GBTC had a net outflow of $34.2471 million, contributing to the overall historical net outflow of $19.936 billion. The outflows were impacted by strong US economic data dampening hopes for a Fed rate cut.', - data: [ - 8, 0, 1, 2, 12, 20, 5, 4, 3, 1, 1, 2, 16, 8, 5, 6, 53, 3, 3, 7, 1, 4, 4, 5, 10, 8, 1, 2, 4, - 8, 3, 0, 1, 10, 2, 6, 1, 1, 3, 4, 2, 0, 15, 3, 37, 5, 0, 0, 3, 14, 0, 1, 1, 8, 10, - ], - }, - { - label: 'Inflation', - topics: 'inflation,fed,recession,rate,cut', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Inflation and its impact on the Federal Reserve\'s interest rate decisions\n- Bitcoin price fluctuations in response to Fed rate cuts\n- Economic data indicating a mix of resilience and challenges in the U.S. economy\n- Concerns about a potential recession and its effects on the market\n- ISM data showing weakness in manufacturing and construction sectors\n- Speculation on the impact of Fed policies, government spending, and politics on market volatility\n- Debate on whether rate cuts still mean "buy the dip" in today\'s inflationary era', - data: [ - 10, 8, 4, 2, 3, 1, 6, 4, 2, 2, 0, 5, 7, 5, 8, 8, 3, 4, 9, 3, 9, 5, 5, 4, 4, 27, 15, 0, 3, 2, - 15, 1, 9, 0, 3, 2, 10, 7, 7, 35, 6, 8, 7, 5, 3, 2, 2, 10, 5, 4, 1, 2, 3, 3, 17, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Web3 gaming and its potential for growth in the industry\n- The benefits of Web3 gaming compared to traditional Web2 gaming\n- New developments and partnerships in the crypto gaming space\n- The integration of crypto payments and Mini Apps in gaming platforms\n- The concept of "player founder" enabled by Web3 technology\n- Regional differences in the narrative around Web3 gaming, particularly in Asia\n- Opportunities for users to earn rewards and prizes through gaming campaigns\n- The launch of new gaming projects and platforms, such as Nitro Leaguegame and Tribally\n- The impact of Web3 technology on the gaming industry and the role of players as partners in the ecosystem.', - data: [ - 4, 5, 5, 2, 0, 2, 7, 5, 6, 8, 4, 3, 0, 5, 8, 4, 9, 10, 6, 2, 57, 3, 4, 1, 8, 3, 5, 10, 5, 4, - 1, 3, 4, 2, 8, 10, 22, 3, 5, 8, 7, 8, 2, 4, 5, 6, 6, 5, 6, 3, 4, 4, 2, 4, 6, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,revenue,block', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin miners selling a large amount of BTC over the weekend\n- Bitcoin miner revenue dropping significantly in August\n- Riot Platforms holding over 10,000 Bitcoin\n- Monetizing stranded/waste gas in the oilfield by mining Bitcoin\n- Immersion mining and its benefits\n- Sustainable Bitcoin mining and its impact on renewable energy\n- Dragonball A11 ASIC miner for Radiant\n- Gucci $HIVE and its performance in the mining industry\n\nOverall, the messages highlight the current trends and developments in the crypto industry, focusing on Bitcoin mining, revenue fluctuations, new mining technologies, and the potential for sustainable practices in the industry.', - data: [ - 6, 2, 1, 4, 48, 8, 9, 1, 3, 2, 2, 6, 2, 0, 2, 4, 4, 3, 2, 5, 4, 3, 0, 9, 6, 8, 2, 8, 6, 5, - 1, 20, 7, 4, 7, 4, 4, 1, 4, 6, 10, 5, 9, 5, 15, 4, 4, 4, 2, 4, 3, 5, 1, 4, 2, - ], - }, - { - label: 'BTC in the month of September', - topics: 'september,month,historically,october,returns', - description: - 'Based on the messages from Twitter, it seems that there is a lot of discussion about the historical performance of Bitcoin in the month of September. Some users believe that September is typically a volatile month for Bitcoin, with potential for both gains and losses. Others point out that historically, September has been a bearish month for Bitcoin, with more losses than gains.\n\nThere is also mention of the pattern where August and September have alternated in price movements, with one month being bearish and the other bullish. Some users are predicting that September will continue to be a sideways month for Bitcoin, with little movement in either direction.\n\nOverall, the sentiment seems to be mixed about the potential performance of Bitcoin in September, with some users expecting volatility and others expecting a continuation of the current sideways trend. Additionally, there is mention of the upcoming month of October, which historically has shown more bullish seasonality for Bitcoin.', - data: [ - 5, 2, 4, 13, 8, 8, 6, 9, 2, 2, 4, 3, 2, 4, 0, 3, 3, 5, 4, 3, 5, 6, 2, 26, 1, 4, 1, 2, 1, 5, - 0, 0, 6, 2, 0, 2, 3, 5, 4, 1, 2, 3, 8, 6, 5, 4, 5, 1, 3, 4, 2, 4, 3, 3, 2, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,floor,wedge,dog', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding both $SHIB and $DOGE in the crypto community. The messages mention various aspects of Dogecoin, including its potential for growth, the push to change it to proof of stake, and the comparison with other altcoins like Cardano. Additionally, there is a focus on the community-driven nature of $DOG and the upcoming utility launch for Retro Phones. Overall, the sentiment seems to be positive towards both $SHIB and $DOGE, with investors closely monitoring their performance and potential for future gains.', - data: [ - 5, 1, 1, 4, 0, 0, 1, 1, 0, 6, 2, 0, 2, 2, 74, 1, 3, 3, 3, 2, 2, 3, 4, 4, 3, 1, 3, 3, 6, 3, - 1, 1, 6, 0, 3, 5, 3, 4, 3, 1, 9, 1, 5, 5, 0, 3, 4, 6, 4, 1, 0, 1, 3, 4, 2, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,ethereum,liquid,level', - description: - "The key topic discussed in the messages from Twitter is Solana. Users are excited about the growth and potential of the Solana blockchain, with mentions of launching new exchanges, trading activities, and the introduction of new tokens like BNSOL for liquid staking. There is also discussion about the high validator requirements for Solana and the success of the world's first Solana ETF. Overall, the sentiment towards Solana appears to be positive and optimistic.", - data: [ - 2, 1, 2, 6, 1, 1, 3, 4, 4, 3, 4, 5, 2, 5, 4, 3, 7, 4, 1, 2, 3, 2, 1, 2, 4, 4, 0, 2, 2, 2, 3, - 1, 1, 1, 1, 3, 1, 7, 6, 10, 4, 7, 7, 4, 19, 6, 5, 1, 3, 6, 4, 6, 5, 5, 3, - ], - }, - { - label: 'BTC Price', - topics: '58k,gang,100k,bitcoin,hit', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n- Bitcoin price predictions, with targets ranging from $14,000 to $200,000 by 2025\n- Speculation on whether Bitcoin will surpass $80,000 by the end of 2024\n- Potential market cap of Bitcoin surpassing Gold in the future\n- Benefits of Bitcoin for small economies and businesses, such as reducing risk for medical practices and unpaid invoices\n- Caution against relying too heavily on forecasts and the potential for Bitcoin to stabilize at $58,000\n- Exciting projections for Bitcoin's future value, with one asset manager suggesting a potential price of $2.9 million per coin by 2050\n- References to the concept of Satoshi and the potential future value of 1 Satoshi reaching $1 USD\n- Personal investment strategies, such as buying more Bitcoin at specific price points like $35,000\n\nOverall, the messages reflect a mix of price speculation, optimism about Bitcoin's future potential, caution against over-reliance on forecasts, and personal investment strategies.", - data: [ - 5, 2, 0, 2, 15, 17, 3, 1, 0, 3, 3, 4, 0, 1, 0, 0, 4, 5, 2, 2, 9, 6, 1, 12, 4, 2, 3, 2, 2, 2, - 1, 0, 1, 1, 0, 5, 3, 12, 1, 5, 2, 5, 4, 9, 5, 8, 1, 10, 1, 0, 2, 0, 1, 3, 4, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,mint,sales,dead', - description: - 'The key topics currently discussed in the crypto industry on Twitter include fractionalized ownership of NFTs, the importance of promotion for individual NFT creators, the anticipation of new NFT collections to kick off the next bull run, the evolution and challenges of the NFT market, giveaways and new features in the NFT space. There is also a mention of a free NFT that has skyrocketed in value and the need for a better name for NFTs. Overall, the sentiment seems to be a mix of excitement, concern, and anticipation for the future of NFTs.', - data: [ - 1, 3, 2, 2, 0, 0, 0, 0, 3, 0, 4, 3, 5, 5, 2, 1, 1, 4, 4, 7, 4, 0, 4, 2, 4, 6, 5, 3, 3, 3, 6, - 2, 6, 3, 11, 4, 4, 2, 4, 2, 3, 8, 4, 3, 1, 4, 1, 4, 4, 1, 1, 4, 3, 3, 1, - ], - }, - { - label: 'SUNDOG', - topics: 'tron,sun,justin,trx,htx', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. SunPump MemeCoin competition on HTX\n2. SunPump's revenue surpassing Pumpfun\n3. Listing of $SUNDOG on Kucoin\n4. Tron's potential for NFT projects\n5. Potential millionaire opportunities with Tron and Mpeppe in 2024\n6. SunPump's on-chain buyback & burn strategy\n7. Justin Sun's influence on the meme war\n8. Partnership between $SUNDOG and $MUNCAT\n9. HTX Affiliates Exclusive Trading Challenge\n10. Governance proposal for a 100% QUICK token burn\n11. Launch of SUN Boost feature\n12. Staking pool for $SUNDOG on Tron ecosystem\n13. Discussion about $SOB token and digital collectibles\n\nThese topics reflect the current trends and discussions within the crypto community on Twitter.", - data: [ - 4, 4, 0, 1, 1, 1, 3, 3, 2, 3, 2, 0, 3, 3, 0, 3, 1, 1, 2, 4, 4, 3, 4, 0, 9, 3, 3, 2, 3, 4, 1, - 6, 5, 4, 2, 3, 0, 0, 5, 6, 2, 7, 1, 0, 2, 22, 1, 0, 2, 11, 2, 2, 6, 1, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,strategies,v2,alex', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n1. DeFi (Decentralized Finance): Discussions about various DeFi protocols, projects, and advancements in the DeFi space.\n2. Tokenization: Conversations around asset tokenization on-chain and its impact on decentralized finance infrastructure.\n3. Regulatory Landscape: Exploration of the regulatory environment and its implications for the crypto journey, particularly in the DeFi sector.\n4. Bitcoin DeFi: Events and discussions related to Bitcoin DeFi, including the upcoming Bitcoin DeFi Show and the integration of Bitcoin in decentralized finance.\n5. Partnerships and Integrations: Announcements of partnerships between different projects in the DeFi space to enhance liquidity sources and trading experiences.\n6. Layoffs in DeFi: Speculation about the need for a large workforce in the DeFi industry due to advancements in technology like artificial intelligence, potentially leading to an increase in layoffs.\n7. Critiques and Evaluations: Critiques of DeFi projects and protocols, emphasizing the importance of designing products that fulfill real needs for success.\n8. Community Identity: Discussions about sovereign communities and digital nations in the DeFi space, highlighting the importance of top-level identities and community engagement.\n9. dYdX Unlimited: Teasers about the upcoming launch of dYdX Unlimited, a new era of decentralized finance trading.\n10. deBridge on Rubic: Updates on the performance of deBridge on Rubic, showcasing its leading position among integrated cross-chain providers with a high monthly trading volume.', - data: [ - 3, 4, 1, 3, 0, 0, 3, 3, 1, 2, 3, 1, 0, 8, 2, 4, 2, 5, 6, 5, 7, 0, 3, 5, 4, 6, 2, 6, 2, 2, 1, - 0, 6, 3, 1, 1, 1, 2, 4, 2, 2, 4, 1, 3, 7, 1, 5, 3, 3, 1, 8, 1, 0, 0, 3, - ], - }, - { - label: 'Vitalik', - topics: 'vitalik,buterin,vitalikbuterin,eth,800', - description: - "The key topic discussed in the messages from Twitter is the actions of Ethereum co-founder Vitalik Buterin, specifically regarding his transactions involving ETH and other cryptocurrencies. There are mentions of Vitalik selling ETH, transferring large amounts of ETH to different wallets, and sparking discussions within the crypto community. Some users speculate about Vitalik's motives and criticize his actions, while others question the impact of his transactions on the market. Overall, the messages highlight the attention and scrutiny that Vitalik Buterin's activities receive within the crypto industry.", - data: [ - 3, 2, 1, 1, 0, 0, 3, 5, 2, 3, 2, 3, 0, 3, 4, 6, 7, 3, 1, 11, 3, 2, 0, 4, 4, 4, 1, 2, 1, 3, - 4, 0, 5, 0, 0, 0, 2, 0, 3, 0, 5, 6, 6, 1, 2, 3, 1, 1, 0, 13, 3, 2, 2, 0, 4, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,wallets,bought,million', - description: - 'The key topics discussed in the messages from Twitter are:\n1. Whale movements in the crypto market, including large transactions of Bitcoin and Ethereum by whales to exchanges like Binance and Coinbase.\n2. The impact of whale activity on the market, such as influencing prices and market trends.\n3. Whales accumulating specific tokens like NULS and WIF, potentially affecting their value.\n4. Alerts about whale activity, such as whales dumping tokens and taking losses.\n5. Opportunities for tracking whale activity and making informed decisions in the market.\n6. Updates on exchanges listing new tokens like ME and the trading volume on different platforms.\n7. Reports on specific whale transactions, such as a whale buying Aave tokens and the growth of BNB Smart Chain.\n8. Promotions and sales related to tracking whale activity and market insights.\nOverall, the messages highlight the significance of whale activity in the crypto industry and its implications for market participants.', - data: [ - 1, 0, 1, 2, 5, 6, 3, 5, 3, 2, 0, 5, 5, 1, 3, 0, 5, 0, 1, 1, 1, 1, 2, 0, 2, 1, 2, 0, 2, 2, 0, - 2, 3, 0, 9, 2, 0, 0, 0, 1, 3, 2, 3, 2, 0, 1, 1, 0, 1, 1, 1, 2, 3, 24, 1, - ], - }, - { - label: 'TON', - topics: 'ton,telegram,tonblockchain,transactions,arrest', - description: - 'The key topics currently discussed on Twitter regarding the crypto industry include:\n\n1. The launch date of the Telegram game "Catizen" and its token, $CATI, as pre-market trading expands.\n2. The growth and development of the TON Blockchain, including the decentralized stablecoin protocol TonStable and the record number of transactions.\n3. The partnership between Binance and TON Blockchain, despite Telegram\'s troubles.\n4. The price fluctuations of TON coin, including a recent plummet to $0.31 due to technical issues.\n5. The increasing popularity and activity on the TON Blockchain, with active addresses surpassing Bitcoin and Ethereum.\n6. The launch of new projects on the TON Blockchain, such as Gaspump TV and the TON Cook restaurant management game.\n7. Price predictions and market analysis for TON coin, as well as comparisons to other meme coins and cryptocurrencies.\n8. The implementation of a cryptonative legal system on the TON Blockchain, including issues with network outages and airdrops causing disruptions.\n\nOverall, the discussions on Twitter reflect a mix of excitement, challenges, and developments within the crypto industry, particularly related to the TON Blockchain and associated projects.', - data: [ - 2, 1, 1, 0, 0, 0, 3, 0, 0, 2, 3, 0, 0, 3, 3, 1, 1, 2, 0, 3, 4, 0, 0, 5, 2, 0, 1, 1, 2, 2, 1, - 0, 1, 1, 5, 4, 2, 0, 1, 1, 1, 0, 0, 1, 2, 1, 0, 1, 53, 4, 0, 1, 2, 0, 0, - ], - }, - { - label: 'ADA', - topics: 'cardano,fork,ada,governance,hard', - description: - "The key topic currently discussed on Twitter is the Chang hard fork on the Cardano blockchain. This upgrade introduces decentralized governance and marks a significant transition for Cardano. Charles Hoskinson, the founder of Cardano, has spoken about the ADA burn mechanism and the move towards full decentralization. The Chang hard fork has been completed, and the Voltaire era has begun, allowing ADA holders to vote directly or delegate. The crypto community is closely following these developments and the impact they will have on Cardano's future.", - data: [ - 5, 4, 0, 0, 0, 2, 4, 0, 0, 1, 7, 3, 1, 3, 0, 0, 2, 3, 1, 3, 0, 3, 7, 1, 1, 6, 2, 2, 0, 2, 0, - 2, 1, 2, 0, 1, 4, 4, 1, 4, 3, 1, 0, 4, 2, 3, 4, 2, 2, 1, 1, 3, 1, 1, 0, - ], - }, - { - label: 'AAVE', - topics: 'aave,founder,holds,use,worth', - description: - "The key topics currently discussed on Twitter regarding the crypto industry, specifically $AAVE, include:\n- AAVE's recovery and potential price movement\n- Speculation on whether AAVE will surpass the $150 barrier\n- Whale activity affecting AAVE's price\n- Technical analysis of AAVE's price chart\n- Potential trading opportunities and targets for AAVE\n- Comparison of AAVE's performance to other assets in the market\n- Importance of driving use cases for AVSs in the industry\n- Analysis of AAVE's monthly and daily price charts\n- Discussion on indicators for trading AAVE\n\nOverall, the sentiment on Twitter seems to be positive towards AAVE, with discussions focusing on potential price movements, trading opportunities, and technical analysis.", - data: [ - 25, 0, 2, 1, 0, 0, 0, 2, 0, 1, 1, 1, 2, 1, 0, 1, 0, 3, 2, 4, 1, 0, 1, 1, 1, 2, 1, 2, 1, 1, - 0, 1, 1, 0, 2, 2, 0, 8, 2, 2, 1, 1, 2, 2, 0, 1, 0, 0, 1, 0, 0, 3, 0, 4, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-36.json b/priv/repo/major_topics_seed/data-36.json deleted file mode 100644 index 1862d99cb2..0000000000 --- a/priv/repo/major_topics_seed/data-36.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["05.09.24","06.09.24","06.09.24","06.09.24","06.09.24","06.09.24","06.09.24","06.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","12.09.24","12.09.24","12.09.24","12.09.24","12.09.24","12.09.24","12.09.24"],"datasets":[{"label":"BTC Price","topics":"btc,resistance,bounce,bitcoin,58k","description":"The key topics currently being discussed on Twitter regarding Bitcoin include price predictions, market volatility, potential breakouts, support and resistance levels, and technical analysis. Some users are predicting Bitcoin to reach $53,900, $55,000, or even $69,000 by the end of 2024. There is also discussion about potential price drops to $45,000 or $50,000 before a possible uptrend in Q4. Traders are analyzing charts and looking for key levels such as the D1200 - D34 Pinch area to determine potential market movements. Overall, sentiment seems to be mixed with some users bullish on Bitcoin's future while others are cautious about potential downside risks.","data":[17,7,10,17,94,111,34,55,10,13,15,23,13,21,12,18,6,5,27,12,12,11,8,21,21,13,4,17,13,26,18,14,21,16,7,15,14,31,18,19,17,16,22,23,9,11,26,11,10,11,7,23,15,21,20]},{"label":"AI","topics":"ai,chatgpt,model,models,agents","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The integration of AI in various industries and the potential for collaboration between humans and AI.\n2. The role of blockchain in shaping the future of decentralized AI and Web3.\n3. The importance of democratizing AI development through decentralized AI on blockchain.\n4. The use of AI technology to enhance digital security and prevent cybercriminal activities.\n5. The impact of the AI boom on different industries and the emergence of AI-powered cryptocurrency payments.\n6. The future of decentralized AI and its transformative potential.\n7. Events and discussions related to AI and crypto, such as the DeAI Summit at TOKEN2049 and Agents Unleashed at Token2049.\n8. The potential for AI-powered projects and cryptocurrencies, such as SkillfulAI and PundiXPay.\nOverall, the conversations on social media platforms reflect a growing interest in the intersection of AI and blockchain technologies within the crypto industry.","data":[13,84,18,7,2,1,10,6,10,23,12,26,9,14,10,7,11,17,8,13,28,17,10,13,15,14,27,12,15,10,13,5,13,13,15,10,15,13,12,10,19,12,18,11,10,10,11,6,12,9,13,10,6,6,12]},{"label":"BTC","topics":"bitcoin,money,fiat,world,understand","description":"Based on the messages from twitter, it seems that the key topics being discussed in the crypto industry include:\n- The mysterious origins of Bitcoin and whether its story will be believed in the future\n- The value of Bitcoin and its utility as a form of money\n- The importance of understanding Bitcoin and its technology\n- The use of leverage to invest in Bitcoin\n- The potential impact of Bitcoin on businesses and the digital age\n\nOverall, the messages reflect a mix of skepticism, curiosity, and optimism about Bitcoin and its role in the future of finance.","data":[7,3,9,8,53,47,4,8,9,9,5,6,4,2,12,8,9,6,14,15,7,11,6,11,9,14,7,6,13,10,9,12,13,11,4,11,17,8,11,13,6,11,17,9,7,24,3,5,2,8,20,6,6,5,12]},{"label":"ETFs","topics":"etfs,etf,net,spot,saw","description":"The key topics discussed in the messages from Twitter related to the crypto industry include:\n- ETF net flows for both Bitcoin and Ethereum\n- Fidelity selling significant amounts of Bitcoin\n- Blackrock selling Bitcoin unexpectedly\n- Outflows from Bitcoin ETFs and inflows into Ethereum funds\n- Grayscale's Bitcoin holdings decreasing\n- Speculation on potential price surges or regulatory concerns in the market\n- Adoption of spot Bitcoin ETFs by investment advisors\n\nOverall, the messages indicate a mix of positive and negative movements in the crypto market, with a focus on institutional activity and potential market trends.","data":[5,3,4,3,26,8,7,4,3,2,4,3,14,9,9,0,45,10,2,2,3,6,7,7,12,11,4,1,0,4,6,3,3,14,4,5,1,2,1,2,9,2,17,4,55,8,2,2,6,7,0,3,1,10,10]},{"label":"ETH Price","topics":"eth,ethereum,ethereums,merge,price","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community regarding Ethereum (ETH) include:\n\n1. ETH value accrual thesis and the simplicity of understanding it\n2. Calls for the Ethereum Foundation to make cost-cutting announcements instead of hiring announcements\n3. Analysis of ETH/BTC forming a falling wedge pattern with possible seller exhaustion\n4. Moral obligations of ETH holders to deploy capital to new apps and engage in ethervista memes\n5. Speculation on ETH scaling via Layer 2 solutions in the future\n6. Impact of L2 scaling upgrades on ETH fee revenue and supply\n7. Price analysis predicting over 111% upside potential for Ethereum, with a target price of $4,811.6\n\nOverall, the sentiment towards Ethereum in the crypto community seems to be a mix of optimism, skepticism, and technical analysis.","data":[4,3,6,7,3,0,3,10,3,3,3,5,3,5,6,3,108,2,13,3,5,1,4,8,4,5,2,4,2,6,5,4,4,2,4,3,0,7,8,7,6,7,3,12,3,4,2,8,6,8,6,5,3,3,6]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Excitement over new gaming platforms and partnerships, such as Roblox Party and Portal x Immutable\n- The surge in popularity of Aptos gaming and indie games\n- The profitability of GameSquare after acquiring FaZe Clan\n- The potential for earning and owning in the gaming world with platforms like $GFAL\n- Special events and promotions in the gaming industry, such as up to 25% bonus offers\n- Discussions about mobile gaming, strategy, and bridging the gap between virtual and real worlds with Web3 gaming\n- Flashback events like Genesis, offering unique gameplay opportunities and rewards\n\nOverall, the sentiment in the crypto industry regarding gaming appears to be positive and optimistic, with a focus on innovation, partnerships, and exciting opportunities for players.","data":[5,1,5,4,1,1,1,5,6,8,5,3,2,1,4,5,4,5,4,7,60,9,8,8,3,7,7,6,11,4,5,3,7,7,7,4,13,4,4,12,6,6,1,1,6,5,4,2,14,2,5,3,4,6,5]},{"label":"Art","topics":"art,artists,artist,work,piece","description":"The key topics discussed in the messages from twitter are:\n1. Art and creativity: Discussions about art stunts, new platforms for showcasing art, sharing and appreciating artwork, and the intersection of art with technology like AI and blockchain.\n2. NFTs and CryptoArt: Mention of NFTs, crypto art, and digital art, including buying and selling art as NFTs, unique art pieces, and the impact of blockchain technology on the art world.\n3. Advocacy and expression: Art as a form of advocacy, supporting marginalized voices, challenging norms, and expressing strong emotions through art.\n4. Web3 and democratization of art: The role of web3 in providing opportunities for artists to exhibit their work without traditional gatekeepers, validating art through transactions, and empowering artists.\n5. Fashion, identity, and pop culture: Exploration of the intersection of fashion, identity, and pop culture with crypto, as well as the release of a photographic collection on a sovereign contract.\n6. Art appreciation and collection: Sharing top art steals of the day, including historic collections, new releases, hidden gems, and unique art pieces.\n7. Digital art evolution: Exploring the history and evolution of digital art, its impact on the art world today, and its significance in the crypto industry.","data":[6,5,50,3,1,0,3,4,2,3,9,7,8,7,5,6,1,5,9,5,5,2,2,9,1,6,1,8,6,2,8,2,7,4,4,13,9,4,8,4,4,4,7,3,6,6,5,6,3,1,2,3,2,6,7]},{"label":"BTC Mining","topics":"mining,miners,miner,block,alltime","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include Bitcoin mining, Bitcoin price predictions, adoption of Bitcoin mining by utilities, Blockstream Mining issuing a security token for fundraising, the potential use of \"zero-point energy\" for Bitcoin mining in the future, and the comparison of Bitcoin's CAGR with other investment strategies. Other topics mentioned include the interaction of magnets with copper, the potential risks and benefits of mining, and the use of Search Funds in combination with Bitcoin for investment purposes. Overall, the discussions revolve around the technical aspects, financial implications, and future possibilities of Bitcoin mining within the crypto industry.","data":[9,2,4,3,17,31,11,0,3,5,2,11,3,1,2,3,10,3,1,1,1,4,4,9,8,11,4,1,2,3,3,2,24,6,10,2,2,5,10,4,3,2,3,5,17,2,2,2,3,5,0,8,1,3,6]},{"label":"DOGE","topics":"doge,dogecoin,floor,wow,lets","description":"The key topics currently discussed on Twitter regarding the crypto industry are Dogecoin, BabyDoge, Solana bridge, trading volume, price fluctuations, and potential utility products. There is excitement around Dogecoin with mentions of price movements, trading volume surges, and community engagement. Additionally, there is anticipation around utility products for BabyDoge and speculation about potential developments in the market. The discussion also includes comparisons between different cryptocurrencies like Dogecoin and DAR, highlighting similarities in price movements and potential for growth. Overall, the sentiment seems positive and optimistic about the future of these cryptocurrencies.","data":[0,1,3,4,0,0,1,9,2,0,4,3,2,2,50,21,3,1,0,4,6,1,4,2,4,4,3,6,13,13,5,4,4,7,0,2,6,2,0,6,3,2,4,3,4,1,3,2,6,2,3,0,3,7,4]},{"label":"Crypto conferences","topics":"token2049,singapore,excited,event,september","description":"The key topics currently being discussed in the crypto industry on social media include:\n\n1. MEMECON Singapore and Rarible\n2. Bitcoin as the future world reserve currency\n3. ReactiveHackathon\n4. CRYPTO BASH event cohosted by BingX, Bing Ventures, and Followin\n5. Karate Combat 49 in Singapore\n6. Abstract Summit co-hosted by EverclearOrg and 1kxnetwork\n7. ETHDenver and the decentralized future\n8. ChimpersCollectibles Genesis Glitch drop\n9. Zuzalu Brooklyn pop-up city event\n10. Saigon Sunset party in Ho Chi Minh City\n11. Berlin show by Joshsavagemusic with onchain tickets\n12. Frax Loops and Restaking event covering L2 Fraxtal developments\n13. Partnership between Cyberport_HK, alibaba_cloud, and Conflux_Network for Web3 adoption in Hong Kong\n\nThese topics cover a range of events, partnerships, and discussions within the crypto industry, showcasing the diverse and dynamic nature of the space.","data":[6,6,6,2,0,0,1,0,5,2,10,2,0,3,4,1,0,55,1,6,1,9,0,12,2,3,14,3,2,9,0,1,1,2,3,1,6,0,5,7,2,0,4,2,2,4,2,0,9,3,1,0,1,5,1]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coin","description":"Based on the messages from Twitter, it is evident that there is a significant amount of discussion surrounding meme coins in the crypto industry. Dogecoin, PEPE, and Shiba Inu are leading the meme coin market in terms of social activity, with Dogecoin having the highest number of interactions. There is also a focus on funding memecoin portfolios, with giveaways and promotions being used to attract investors.\n\nAdditionally, there is a comparison between different meme coins in terms of trading volume and valuation gaps. PEPE has overtaken Dogecoin and Shiba Inu in daily trading volume, while Dogecoin is highlighted for its valuation gaps and Shiba Inu faces lower trading activity and bearish sentiment.\n\nOverall, the discussion on Twitter indicates a strong interest in meme coins and their potential for investment and trading opportunities within the crypto industry.","data":[4,2,2,1,0,1,2,0,5,3,6,0,4,3,5,4,3,2,5,1,3,1,9,6,2,2,6,3,7,5,5,64,2,0,2,2,4,4,2,2,1,7,1,4,1,1,2,3,7,4,2,1,6,1,0]},{"label":"DeFi","topics":"defi,hearing,congress,finance,house","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. DeFi (Decentralized Finance) - discussions about the future, power, and impact of DeFi in the crypto community.\n2. API3 - sponsorship and participation in events related to transforming DeFi with next-generation Oracle Stack.\n3. Ethereum's DeFi Rivals - discussion on potential competitors to Ethereum in the DeFi space.\n4. U.S. House of Representatives DeFi Hearing - the first-ever hearing on DeFi in Congress and its significance.\n5. KyberSwap and PancakeSwap Integration - announcement of KyberZap API integration with PancakeSwap for easier liquidity providing.\n6. DeFi World 2024 Event - upcoming event in Bangkok featuring blockchain and crypto experts.\n7. Top 10 DeFi Platforms for 2024 - exploration of key features of top DeFi platforms for decision-making.\n8. Sky Aave Force AMA - Q&A session with Rune Kek, Stani Kulechov, and Lemiscate on DeFi club.\n9. XoxnoNetwork - discussion on a coin with potential success in the DeFi space.\n10. Music Festivals - mention of various music festivals in relation to DeFi education and adoption.","data":[1,2,3,2,2,2,4,3,1,3,8,8,2,2,15,3,1,5,2,3,1,2,3,6,7,3,5,3,12,6,3,3,2,4,0,7,3,2,2,6,3,2,2,1,3,5,5,2,8,5,4,1,1,1,1]},{"label":"SOL","topics":"sol,solana,ftx,wallet,accuracy","description":"The key topics currently being discussed in the crypto industry on Twitter include Solana (SOL), Ethereum (ETH), staking, trading, price predictions, upcoming events like Solana Breakpoint, potential growth opportunities, and new projects like Cyberfrogs on Solana. There is also mention of technical analysis indicators like MACD crossover and squeeze shading, as well as discussions about market sentiment and potential bounce in prices for SOL, ETH, and Binance Coin (BNB). Additionally, there is a focus on high throughput blockchains like Solana and the importance of liquidity in the crypto space. Overall, the sentiment seems to be positive with a lot of excitement and anticipation for future developments in the industry.","data":[2,1,4,6,0,0,2,2,5,5,12,3,1,6,4,2,3,3,3,5,3,1,2,1,1,2,1,6,4,1,0,3,2,2,2,4,0,2,3,6,4,2,3,3,26,4,4,2,3,4,1,1,8,2,2]},{"label":"CPI","topics":"inflation,cpi,25,core,02","description":"The key topic currently discussed on Twitter is inflation, specifically related to the US economy. Messages mention the latest CPI data, with the inflation rate at 2.5%. There are discussions about the Federal Reserve potentially cutting rates due to higher than expected core inflation. Additionally, there are proposals to lower inflation rates, with different formulas being suggested. The impact of inflation on various sectors such as medical care, apparel, and transportation is also highlighted. Overall, the focus is on understanding and addressing inflation in the current economic climate.","data":[3,3,1,5,0,0,23,1,2,2,5,7,1,5,1,5,1,3,2,1,0,1,0,3,3,40,1,2,1,2,6,2,6,0,5,0,2,2,3,1,6,3,3,6,0,0,2,1,2,0,2,0,1,2,2]},{"label":"iPhone 16","topics":"apple,16,pro,intelligence,features","description":"The key topics discussed in the messages from twitter are:\n- iPhone 16 introduction and features\n- Comparison between buying iPhone 16 or Bitcoin\n- iOS 18 update availability\n- Lockdown mode on iPhone\n- Investing in $sol memecoin\n- Bloomberg's report on iPhone super cycle\n- Google's block on ENEL's app and leaked Disney data\n- Preference between Red L2 and Blue L2 correlated pairs\n- Hackers hacking Apple's YouTube channel for cryptocurrency giveaway scam\n- Announcement of iPhone 16 series with new features and chips\n- Waivly+ subscription for business, finance, and tech content.","data":[0,4,33,3,0,0,0,3,5,3,1,4,3,0,0,2,0,0,1,2,2,1,0,2,1,2,18,3,1,0,1,1,0,5,1,0,1,2,7,3,3,2,2,2,3,1,6,2,8,2,1,1,5,2,5]},{"label":"Whales","topics":"whale,whales,unusual,accumulating,amid","description":"The key topics discussed in the messages from Twitter are:\n\n1. Whale activity in the crypto industry, including accumulation and selling of assets such as ETH, BTC, and other cryptocurrencies.\n2. Market volatility and price fluctuations caused by whale activity and liquidity runs.\n3. Insider information about whales in the Bitcoin industry stopping trimming and trying to add back coins sold at lower prices.\n4. Launch of new crypto project $WHALE with plans for NFT collection, staking, and partnerships.\n5. Allegations of corruption and untraced BTC from Mt. Gox Silk Road Baltimore Task Force becoming Ethereum's largest whale.\n6. Liquidation of ETH whale for $4.5M, highlighting market volatility.\n7. Updates on whale activity on Base and Trondao chains added to OKXExplorer Large Transfer Monitor feature.\n8. Giant BTC whale facing heavy losses amidst Bitcoin's bearish trend.\n\nOverall, the messages highlight the significant impact that whale activity can have on the crypto market, as well as the potential risks and opportunities associated with it.","data":[3,4,0,1,2,15,1,1,2,0,1,2,6,2,0,1,6,0,1,0,1,3,0,1,0,0,0,0,1,2,3,3,4,0,1,1,1,2,0,0,1,1,1,1,3,1,2,0,0,2,1,1,0,17,0]},{"label":"SUNDOG","topics":"sundog,tron,sun,meme,trx","description":"Based on the messages from Twitter, it is evident that the cryptocurrency community is currently discussing the meme coin $SUNDOG. $SUNDOG has recently been listed on Bybit Spot Market, which has led to a surge in trading volume and price action. The partnership with SunPump and OKX Wallet allows for seamless trading of meme tokens. Additionally, $SUNDOG is leading the way on TRON and has garnered a significant number of holders and market cap.\n\nDespite the initial hype surrounding meme coins, there has been a decline in activity on SunPump, indicating a fading interest in memecoins. However, $SUNDOG remains a top pick for many traders due to its first mover advantage on TRON, large holder base, and market cap.\n\nOverall, the sentiment towards $SUNDOG is positive, with expectations of a bullish breakout and potential for further growth in the cryptocurrency market.","data":[1,4,0,1,0,0,1,2,2,1,0,0,0,1,0,2,1,1,2,2,1,3,1,3,3,0,0,1,3,1,2,6,1,1,3,2,2,1,2,0,0,0,2,2,1,1,25,2,1,4,2,0,2,2,0]},{"label":"NFT","topics":"nft,nfts,collection,collections,create","description":"The messages from Twitter are discussing various topics related to NFTs (Non-Fungible Tokens) in the crypto industry. Some key points mentioned include:\n- The rise of NFTs as a form of digital art that can unite people globally.\n- The potential for NFTs to have another run in the market.\n- The importance of creating innovative NFT designs and standards.\n- The success of certain NFT collections and marketplaces.\n- The launch of new NFT projects and their impact on the market.\n- The high yield potential of NFT staking.\n- The ongoing mining event for NFTs in the crypto space.\n\nOverall, the messages reflect a growing interest and excitement surrounding NFTs in the crypto community, with a focus on creativity, innovation, and potential financial gains.","data":[1,0,3,1,0,0,0,1,2,4,3,0,1,1,0,2,2,1,1,2,2,3,4,4,2,1,1,2,3,0,3,3,3,2,4,1,2,2,4,3,2,1,1,2,1,1,0,0,0,0,1,1,1,2,4]},{"label":"cbBTC by Coinbase","topics":"coinbase,base,wbtc,backed,token","description":"The key topics currently being discussed on Twitter in the crypto industry include the launch of cbBTC by Coinbase, a wrapped Bitcoin asset available on Ethereum and Base networks. This launch is seen as a significant step towards offering users a trust-minimized alternative to wrapped Bitcoin. Additionally, there is discussion about Babylon Staking, a BTC staking project founded by Stanford University Professor David Tse and Dolby Laboratories Senior Engineer Mingchao Yu, which allows users to stake their BTC on PoS chains to earn rewards. Other topics include the launch of CBPAY, a community-driven payment token on XDB CHAIN, and BitGo launching WrappedBTC on Avalanche and BNB Chain using LayerZero's Omnichain Fungible Token standard.","data":[0,1,3,4,1,3,2,4,3,2,9,1,2,2,0,0,0,2,0,2,1,1,0,1,3,1,0,1,7,0,2,1,2,2,3,1,0,0,2,3,1,3,1,2,0,0,2,1,5,0,0,1,1,0,0]},{"label":"SHIB","topics":"inu,shiba,shib,presale,burn","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Shiba Inu experiencing a significant burn rate increase\n- Reasons for the drop in Shiba Inu and Dogecoin prices\n- Speculation on whether SushiSwap price can hit $1\n- Shiba Inu's price surges and potential future predictions\n- Concerns about potential price drops for Shiba Inu amid market downturn\n- News about a $90K Ethereum heist involving SHIB DAO funds\n- FUD surrounding Shiba Inu reaching a 22-month low\n- Discussion about potential profitable investments in memecoins like Husky Inu and Pepe\n\nOverall, the discussions on Twitter revolve around price movements, potential future predictions, security concerns, and investment opportunities within the crypto industry, particularly focusing on Shiba Inu and other memecoins.","data":[0,2,0,1,0,1,3,4,0,0,0,0,1,0,3,0,0,6,2,0,0,0,0,3,0,1,19,0,0,0,1,0,1,1,1,3,0,4,1,2,0,1,2,12,0,0,1,1,2,1,1,0,0,2,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-36.ts b/priv/repo/major_topics_seed/data-36.ts deleted file mode 100644 index 6c7e5a5c57..0000000000 --- a/priv/repo/major_topics_seed/data-36.ts +++ /dev/null @@ -1 +0,0 @@ -export const NARRATIVES = {"labels":["05.09.24","06.09.24","06.09.24","06.09.24","06.09.24","06.09.24","06.09.24","06.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","07.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","08.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","09.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","10.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","11.09.24","12.09.24","12.09.24","12.09.24","12.09.24","12.09.24","12.09.24","12.09.24"],"datasets":[{"label":"BTC Price","topics":"btc,resistance,bounce,bitcoin,58k","description":"The key topics currently being discussed on Twitter regarding Bitcoin include price predictions, market volatility, potential breakouts, support and resistance levels, and technical analysis. Some users are predicting Bitcoin to reach $53,900, $55,000, or even $69,000 by the end of 2024. There is also discussion about potential price drops to $45,000 or $50,000 before a possible uptrend in Q4. Traders are analyzing charts and looking for key levels such as the D1200 - D34 Pinch area to determine potential market movements. Overall, sentiment seems to be mixed with some users bullish on Bitcoin's future while others are cautious about potential downside risks.","data":[17,7,10,17,94,111,34,55,10,13,15,23,13,21,12,18,6,5,27,12,12,11,8,21,21,13,4,17,13,26,18,14,21,16,7,15,14,31,18,19,17,16,22,23,9,11,26,11,10,11,7,23,15,21,20]},{"label":"AI","topics":"ai,chatgpt,model,models,agents","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. The integration of AI in various industries and the potential for collaboration between humans and AI.\n2. The role of blockchain in shaping the future of decentralized AI and Web3.\n3. The importance of democratizing AI development through decentralized AI on blockchain.\n4. The use of AI technology to enhance digital security and prevent cybercriminal activities.\n5. The impact of the AI boom on different industries and the emergence of AI-powered cryptocurrency payments.\n6. The future of decentralized AI and its transformative potential.\n7. Events and discussions related to AI and crypto, such as the DeAI Summit at TOKEN2049 and Agents Unleashed at Token2049.\n8. The potential for AI-powered projects and cryptocurrencies, such as SkillfulAI and PundiXPay.\nOverall, the conversations on social media platforms reflect a growing interest in the intersection of AI and blockchain technologies within the crypto industry.","data":[13,84,18,7,2,1,10,6,10,23,12,26,9,14,10,7,11,17,8,13,28,17,10,13,15,14,27,12,15,10,13,5,13,13,15,10,15,13,12,10,19,12,18,11,10,10,11,6,12,9,13,10,6,6,12]},{"label":"BTC","topics":"bitcoin,money,fiat,world,understand","description":"Based on the messages from twitter, it seems that the key topics being discussed in the crypto industry include:\n- The mysterious origins of Bitcoin and whether its story will be believed in the future\n- The value of Bitcoin and its utility as a form of money\n- The importance of understanding Bitcoin and its technology\n- The use of leverage to invest in Bitcoin\n- The potential impact of Bitcoin on businesses and the digital age\n\nOverall, the messages reflect a mix of skepticism, curiosity, and optimism about Bitcoin and its role in the future of finance.","data":[7,3,9,8,53,47,4,8,9,9,5,6,4,2,12,8,9,6,14,15,7,11,6,11,9,14,7,6,13,10,9,12,13,11,4,11,17,8,11,13,6,11,17,9,7,24,3,5,2,8,20,6,6,5,12]},{"label":"ETFs","topics":"etfs,etf,net,spot,saw","description":"The key topics discussed in the messages from Twitter related to the crypto industry include:\n- ETF net flows for both Bitcoin and Ethereum\n- Fidelity selling significant amounts of Bitcoin\n- Blackrock selling Bitcoin unexpectedly\n- Outflows from Bitcoin ETFs and inflows into Ethereum funds\n- Grayscale's Bitcoin holdings decreasing\n- Speculation on potential price surges or regulatory concerns in the market\n- Adoption of spot Bitcoin ETFs by investment advisors\n\nOverall, the messages indicate a mix of positive and negative movements in the crypto market, with a focus on institutional activity and potential market trends.","data":[5,3,4,3,26,8,7,4,3,2,4,3,14,9,9,0,45,10,2,2,3,6,7,7,12,11,4,1,0,4,6,3,3,14,4,5,1,2,1,2,9,2,17,4,55,8,2,2,6,7,0,3,1,10,10]},{"label":"ETH Price","topics":"eth,ethereum,ethereums,merge,price","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community regarding Ethereum (ETH) include:\n\n1. ETH value accrual thesis and the simplicity of understanding it\n2. Calls for the Ethereum Foundation to make cost-cutting announcements instead of hiring announcements\n3. Analysis of ETH/BTC forming a falling wedge pattern with possible seller exhaustion\n4. Moral obligations of ETH holders to deploy capital to new apps and engage in ethervista memes\n5. Speculation on ETH scaling via Layer 2 solutions in the future\n6. Impact of L2 scaling upgrades on ETH fee revenue and supply\n7. Price analysis predicting over 111% upside potential for Ethereum, with a target price of $4,811.6\n\nOverall, the sentiment towards Ethereum in the crypto community seems to be a mix of optimism, skepticism, and technical analysis.","data":[4,3,6,7,3,0,3,10,3,3,3,5,3,5,6,3,108,2,13,3,5,1,4,8,4,5,2,4,2,6,5,4,4,2,4,3,0,7,8,7,6,7,3,12,3,4,2,8,6,8,6,5,3,3,6]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Excitement over new gaming platforms and partnerships, such as Roblox Party and Portal x Immutable\n- The surge in popularity of Aptos gaming and indie games\n- The profitability of GameSquare after acquiring FaZe Clan\n- The potential for earning and owning in the gaming world with platforms like $GFAL\n- Special events and promotions in the gaming industry, such as up to 25% bonus offers\n- Discussions about mobile gaming, strategy, and bridging the gap between virtual and real worlds with Web3 gaming\n- Flashback events like Genesis, offering unique gameplay opportunities and rewards\n\nOverall, the sentiment in the crypto industry regarding gaming appears to be positive and optimistic, with a focus on innovation, partnerships, and exciting opportunities for players.","data":[5,1,5,4,1,1,1,5,6,8,5,3,2,1,4,5,4,5,4,7,60,9,8,8,3,7,7,6,11,4,5,3,7,7,7,4,13,4,4,12,6,6,1,1,6,5,4,2,14,2,5,3,4,6,5]},{"label":"Art","topics":"art,artists,artist,work,piece","description":"The key topics discussed in the messages from twitter are:\n1. Art and creativity: Discussions about art stunts, new platforms for showcasing art, sharing and appreciating artwork, and the intersection of art with technology like AI and blockchain.\n2. NFTs and CryptoArt: Mention of NFTs, crypto art, and digital art, including buying and selling art as NFTs, unique art pieces, and the impact of blockchain technology on the art world.\n3. Advocacy and expression: Art as a form of advocacy, supporting marginalized voices, challenging norms, and expressing strong emotions through art.\n4. Web3 and democratization of art: The role of web3 in providing opportunities for artists to exhibit their work without traditional gatekeepers, validating art through transactions, and empowering artists.\n5. Fashion, identity, and pop culture: Exploration of the intersection of fashion, identity, and pop culture with crypto, as well as the release of a photographic collection on a sovereign contract.\n6. Art appreciation and collection: Sharing top art steals of the day, including historic collections, new releases, hidden gems, and unique art pieces.\n7. Digital art evolution: Exploring the history and evolution of digital art, its impact on the art world today, and its significance in the crypto industry.","data":[6,5,50,3,1,0,3,4,2,3,9,7,8,7,5,6,1,5,9,5,5,2,2,9,1,6,1,8,6,2,8,2,7,4,4,13,9,4,8,4,4,4,7,3,6,6,5,6,3,1,2,3,2,6,7]},{"label":"BTC Mining","topics":"mining,miners,miner,block,alltime","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include Bitcoin mining, Bitcoin price predictions, adoption of Bitcoin mining by utilities, Blockstream Mining issuing a security token for fundraising, the potential use of \"zero-point energy\" for Bitcoin mining in the future, and the comparison of Bitcoin's CAGR with other investment strategies. Other topics mentioned include the interaction of magnets with copper, the potential risks and benefits of mining, and the use of Search Funds in combination with Bitcoin for investment purposes. Overall, the discussions revolve around the technical aspects, financial implications, and future possibilities of Bitcoin mining within the crypto industry.","data":[9,2,4,3,17,31,11,0,3,5,2,11,3,1,2,3,10,3,1,1,1,4,4,9,8,11,4,1,2,3,3,2,24,6,10,2,2,5,10,4,3,2,3,5,17,2,2,2,3,5,0,8,1,3,6]},{"label":"DOGE","topics":"doge,dogecoin,floor,wow,lets","description":"The key topics currently discussed on Twitter regarding the crypto industry are Dogecoin, BabyDoge, Solana bridge, trading volume, price fluctuations, and potential utility products. There is excitement around Dogecoin with mentions of price movements, trading volume surges, and community engagement. Additionally, there is anticipation around utility products for BabyDoge and speculation about potential developments in the market. The discussion also includes comparisons between different cryptocurrencies like Dogecoin and DAR, highlighting similarities in price movements and potential for growth. Overall, the sentiment seems positive and optimistic about the future of these cryptocurrencies.","data":[0,1,3,4,0,0,1,9,2,0,4,3,2,2,50,21,3,1,0,4,6,1,4,2,4,4,3,6,13,13,5,4,4,7,0,2,6,2,0,6,3,2,4,3,4,1,3,2,6,2,3,0,3,7,4]},{"label":"Crypto conferences","topics":"token2049,singapore,excited,event,september","description":"The key topics currently being discussed in the crypto industry on social media include:\n\n1. MEMECON Singapore and Rarible\n2. Bitcoin as the future world reserve currency\n3. ReactiveHackathon\n4. CRYPTO BASH event cohosted by BingX, Bing Ventures, and Followin\n5. Karate Combat 49 in Singapore\n6. Abstract Summit co-hosted by EverclearOrg and 1kxnetwork\n7. ETHDenver and the decentralized future\n8. ChimpersCollectibles Genesis Glitch drop\n9. Zuzalu Brooklyn pop-up city event\n10. Saigon Sunset party in Ho Chi Minh City\n11. Berlin show by Joshsavagemusic with onchain tickets\n12. Frax Loops and Restaking event covering L2 Fraxtal developments\n13. Partnership between Cyberport_HK, alibaba_cloud, and Conflux_Network for Web3 adoption in Hong Kong\n\nThese topics cover a range of events, partnerships, and discussions within the crypto industry, showcasing the diverse and dynamic nature of the space.","data":[6,6,6,2,0,0,1,0,5,2,10,2,0,3,4,1,0,55,1,6,1,9,0,12,2,3,14,3,2,9,0,1,1,2,3,1,6,0,5,7,2,0,4,2,2,4,2,0,9,3,1,0,1,5,1]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coin","description":"Based on the messages from Twitter, it is evident that there is a significant amount of discussion surrounding meme coins in the crypto industry. Dogecoin, PEPE, and Shiba Inu are leading the meme coin market in terms of social activity, with Dogecoin having the highest number of interactions. There is also a focus on funding memecoin portfolios, with giveaways and promotions being used to attract investors.\n\nAdditionally, there is a comparison between different meme coins in terms of trading volume and valuation gaps. PEPE has overtaken Dogecoin and Shiba Inu in daily trading volume, while Dogecoin is highlighted for its valuation gaps and Shiba Inu faces lower trading activity and bearish sentiment.\n\nOverall, the discussion on Twitter indicates a strong interest in meme coins and their potential for investment and trading opportunities within the crypto industry.","data":[4,2,2,1,0,1,2,0,5,3,6,0,4,3,5,4,3,2,5,1,3,1,9,6,2,2,6,3,7,5,5,64,2,0,2,2,4,4,2,2,1,7,1,4,1,1,2,3,7,4,2,1,6,1,0]},{"label":"DeFi","topics":"defi,hearing,congress,finance,house","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. DeFi (Decentralized Finance) - discussions about the future, power, and impact of DeFi in the crypto community.\n2. API3 - sponsorship and participation in events related to transforming DeFi with next-generation Oracle Stack.\n3. Ethereum's DeFi Rivals - discussion on potential competitors to Ethereum in the DeFi space.\n4. U.S. House of Representatives DeFi Hearing - the first-ever hearing on DeFi in Congress and its significance.\n5. KyberSwap and PancakeSwap Integration - announcement of KyberZap API integration with PancakeSwap for easier liquidity providing.\n6. DeFi World 2024 Event - upcoming event in Bangkok featuring blockchain and crypto experts.\n7. Top 10 DeFi Platforms for 2024 - exploration of key features of top DeFi platforms for decision-making.\n8. Sky Aave Force AMA - Q&A session with Rune Kek, Stani Kulechov, and Lemiscate on DeFi club.\n9. XoxnoNetwork - discussion on a coin with potential success in the DeFi space.\n10. Music Festivals - mention of various music festivals in relation to DeFi education and adoption.","data":[1,2,3,2,2,2,4,3,1,3,8,8,2,2,15,3,1,5,2,3,1,2,3,6,7,3,5,3,12,6,3,3,2,4,0,7,3,2,2,6,3,2,2,1,3,5,5,2,8,5,4,1,1,1,1]},{"label":"SOL","topics":"sol,solana,ftx,wallet,accuracy","description":"The key topics currently being discussed in the crypto industry on Twitter include Solana (SOL), Ethereum (ETH), staking, trading, price predictions, upcoming events like Solana Breakpoint, potential growth opportunities, and new projects like Cyberfrogs on Solana. There is also mention of technical analysis indicators like MACD crossover and squeeze shading, as well as discussions about market sentiment and potential bounce in prices for SOL, ETH, and Binance Coin (BNB). Additionally, there is a focus on high throughput blockchains like Solana and the importance of liquidity in the crypto space. Overall, the sentiment seems to be positive with a lot of excitement and anticipation for future developments in the industry.","data":[2,1,4,6,0,0,2,2,5,5,12,3,1,6,4,2,3,3,3,5,3,1,2,1,1,2,1,6,4,1,0,3,2,2,2,4,0,2,3,6,4,2,3,3,26,4,4,2,3,4,1,1,8,2,2]},{"label":"CPI","topics":"inflation,cpi,25,core,02","description":"The key topic currently discussed on Twitter is inflation, specifically related to the US economy. Messages mention the latest CPI data, with the inflation rate at 2.5%. There are discussions about the Federal Reserve potentially cutting rates due to higher than expected core inflation. Additionally, there are proposals to lower inflation rates, with different formulas being suggested. The impact of inflation on various sectors such as medical care, apparel, and transportation is also highlighted. Overall, the focus is on understanding and addressing inflation in the current economic climate.","data":[3,3,1,5,0,0,23,1,2,2,5,7,1,5,1,5,1,3,2,1,0,1,0,3,3,40,1,2,1,2,6,2,6,0,5,0,2,2,3,1,6,3,3,6,0,0,2,1,2,0,2,0,1,2,2]},{"label":"iPhone 16","topics":"apple,16,pro,intelligence,features","description":"The key topics discussed in the messages from twitter are:\n- iPhone 16 introduction and features\n- Comparison between buying iPhone 16 or Bitcoin\n- iOS 18 update availability\n- Lockdown mode on iPhone\n- Investing in $sol memecoin\n- Bloomberg's report on iPhone super cycle\n- Google's block on ENEL's app and leaked Disney data\n- Preference between Red L2 and Blue L2 correlated pairs\n- Hackers hacking Apple's YouTube channel for cryptocurrency giveaway scam\n- Announcement of iPhone 16 series with new features and chips\n- Waivly+ subscription for business, finance, and tech content.","data":[0,4,33,3,0,0,0,3,5,3,1,4,3,0,0,2,0,0,1,2,2,1,0,2,1,2,18,3,1,0,1,1,0,5,1,0,1,2,7,3,3,2,2,2,3,1,6,2,8,2,1,1,5,2,5]},{"label":"Whales","topics":"whale,whales,unusual,accumulating,amid","description":"The key topics discussed in the messages from Twitter are:\n\n1. Whale activity in the crypto industry, including accumulation and selling of assets such as ETH, BTC, and other cryptocurrencies.\n2. Market volatility and price fluctuations caused by whale activity and liquidity runs.\n3. Insider information about whales in the Bitcoin industry stopping trimming and trying to add back coins sold at lower prices.\n4. Launch of new crypto project $WHALE with plans for NFT collection, staking, and partnerships.\n5. Allegations of corruption and untraced BTC from Mt. Gox Silk Road Baltimore Task Force becoming Ethereum's largest whale.\n6. Liquidation of ETH whale for $4.5M, highlighting market volatility.\n7. Updates on whale activity on Base and Trondao chains added to OKXExplorer Large Transfer Monitor feature.\n8. Giant BTC whale facing heavy losses amidst Bitcoin's bearish trend.\n\nOverall, the messages highlight the significant impact that whale activity can have on the crypto market, as well as the potential risks and opportunities associated with it.","data":[3,4,0,1,2,15,1,1,2,0,1,2,6,2,0,1,6,0,1,0,1,3,0,1,0,0,0,0,1,2,3,3,4,0,1,1,1,2,0,0,1,1,1,1,3,1,2,0,0,2,1,1,0,17,0]},{"label":"SUNDOG","topics":"sundog,tron,sun,meme,trx","description":"Based on the messages from Twitter, it is evident that the cryptocurrency community is currently discussing the meme coin $SUNDOG. $SUNDOG has recently been listed on Bybit Spot Market, which has led to a surge in trading volume and price action. The partnership with SunPump and OKX Wallet allows for seamless trading of meme tokens. Additionally, $SUNDOG is leading the way on TRON and has garnered a significant number of holders and market cap.\n\nDespite the initial hype surrounding meme coins, there has been a decline in activity on SunPump, indicating a fading interest in memecoins. However, $SUNDOG remains a top pick for many traders due to its first mover advantage on TRON, large holder base, and market cap.\n\nOverall, the sentiment towards $SUNDOG is positive, with expectations of a bullish breakout and potential for further growth in the cryptocurrency market.","data":[1,4,0,1,0,0,1,2,2,1,0,0,0,1,0,2,1,1,2,2,1,3,1,3,3,0,0,1,3,1,2,6,1,1,3,2,2,1,2,0,0,0,2,2,1,1,25,2,1,4,2,0,2,2,0]},{"label":"NFT","topics":"nft,nfts,collection,collections,create","description":"The messages from Twitter are discussing various topics related to NFTs (Non-Fungible Tokens) in the crypto industry. Some key points mentioned include:\n- The rise of NFTs as a form of digital art that can unite people globally.\n- The potential for NFTs to have another run in the market.\n- The importance of creating innovative NFT designs and standards.\n- The success of certain NFT collections and marketplaces.\n- The launch of new NFT projects and their impact on the market.\n- The high yield potential of NFT staking.\n- The ongoing mining event for NFTs in the crypto space.\n\nOverall, the messages reflect a growing interest and excitement surrounding NFTs in the crypto community, with a focus on creativity, innovation, and potential financial gains.","data":[1,0,3,1,0,0,0,1,2,4,3,0,1,1,0,2,2,1,1,2,2,3,4,4,2,1,1,2,3,0,3,3,3,2,4,1,2,2,4,3,2,1,1,2,1,1,0,0,0,0,1,1,1,2,4]},{"label":"cbBTC by Coinbase","topics":"coinbase,base,wbtc,backed,token","description":"The key topics currently being discussed on Twitter in the crypto industry include the launch of cbBTC by Coinbase, a wrapped Bitcoin asset available on Ethereum and Base networks. This launch is seen as a significant step towards offering users a trust-minimized alternative to wrapped Bitcoin. Additionally, there is discussion about Babylon Staking, a BTC staking project founded by Stanford University Professor David Tse and Dolby Laboratories Senior Engineer Mingchao Yu, which allows users to stake their BTC on PoS chains to earn rewards. Other topics include the launch of CBPAY, a community-driven payment token on XDB CHAIN, and BitGo launching WrappedBTC on Avalanche and BNB Chain using LayerZero's Omnichain Fungible Token standard.","data":[0,1,3,4,1,3,2,4,3,2,9,1,2,2,0,0,0,2,0,2,1,1,0,1,3,1,0,1,7,0,2,1,2,2,3,1,0,0,2,3,1,3,1,2,0,0,2,1,5,0,0,1,1,0,0]},{"label":"SHIB","topics":"inu,shiba,shib,presale,burn","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Shiba Inu experiencing a significant burn rate increase\n- Reasons for the drop in Shiba Inu and Dogecoin prices\n- Speculation on whether SushiSwap price can hit $1\n- Shiba Inu's price surges and potential future predictions\n- Concerns about potential price drops for Shiba Inu amid market downturn\n- News about a $90K Ethereum heist involving SHIB DAO funds\n- FUD surrounding Shiba Inu reaching a 22-month low\n- Discussion about potential profitable investments in memecoins like Husky Inu and Pepe\n\nOverall, the discussions on Twitter revolve around price movements, potential future predictions, security concerns, and investment opportunities within the crypto industry, particularly focusing on Shiba Inu and other memecoins.","data":[0,2,0,1,0,1,3,4,0,0,0,0,1,0,3,0,0,6,2,0,0,0,0,3,0,1,19,0,0,0,1,0,1,1,1,3,0,4,1,2,0,1,2,12,0,0,1,1,2,1,1,0,0,2,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-37.json b/priv/repo/major_topics_seed/data-37.json deleted file mode 100644 index b696517971..0000000000 --- a/priv/repo/major_topics_seed/data-37.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["12.09.24","13.09.24","13.09.24","13.09.24","13.09.24","13.09.24","13.09.24","13.09.24","14.09.24","14.09.24","14.09.24","14.09.24","14.09.24","14.09.24","14.09.24","14.09.24","15.09.24","15.09.24","15.09.24","15.09.24","15.09.24","15.09.24","15.09.24","15.09.24","16.09.24","16.09.24","16.09.24","16.09.24","16.09.24","16.09.24","16.09.24","16.09.24","17.09.24","17.09.24","17.09.24","17.09.24","17.09.24","17.09.24","17.09.24","17.09.24","18.09.24","18.09.24","18.09.24","18.09.24","18.09.24","18.09.24","18.09.24","18.09.24","19.09.24","19.09.24","19.09.24","19.09.24","19.09.24","19.09.24","19.09.24"],"datasets":[{"label":"Interest Rates cut","topics":"cut,fed,rate,rates,cuts","description":"The key topics currently being discussed on social media regarding the crypto industry are the Federal Reserve's decision to lower interest rates, the impact on Bitcoin's price, and the speculation surrounding the rate cut. Traders are closely monitoring the Fed's actions and how they will affect the crypto markets. There is debate over whether the rate cut will be 25 or 50 basis points and how it will impact various sectors such as small caps, Bitcoin, and biotech. Additionally, there is discussion about the potential for a \"SELL THE NEWS\" scenario and the market volatility surrounding the rate cut announcement. Overall, the focus is on how the Fed's decision will shape the future of the economy and the crypto industry.","data":[11,9,5,15,7,13,26,16,4,11,5,8,12,62,15,3,11,20,22,36,8,20,11,16,21,27,13,7,10,9,9,23,6,5,12,11,3,23,14,90,31,13,12,11,13,9,11,19,8,8,9,3,14,7,10]},{"label":"ETH","topics":"eth,ethereum,vitalik,ethbtc,buterin","description":"The key topics currently discussed on Twitter regarding Ethereum include:\n1. Sentiment at an all-time low for Ethereum\n2. Speculation on the price of Ethereum potentially never dropping below $2K again\n3. Ethereum facing its worst Q3 in 5 years with a 33.21% decline\n4. Potential breakout ahead for Ethereum to reach $2,500\n5. Discussion on Ethereum's key support level and the possibility of going all-in\n6. Defending layer 2 solutions like Arbitrum as Ethereum falters\n7. Jump Trading selling $30 million in Ethereum and its implications for the future of ETH\n8. Ethereum's roadmap for 2025 being revealed\n9. Ethereum consolidating in a narrow range with signs of a potential breakout\n10. Listing alert for AethirCloud on CoinW with a bounty program and rewards.","data":[13,6,10,18,6,2,9,9,5,6,8,18,8,10,8,13,106,44,15,18,16,16,5,20,18,14,4,17,7,10,15,9,2,8,3,10,15,14,11,16,15,9,16,17,10,10,7,17,7,9,6,7,4,5,10]},{"label":"BTC","topics":"bitcoin,money,fiat,understand,world","description":"The key topics discussed in the messages from twitter are:\n- Adoption of Bitcoin by nation states\n- Bitcoin as a solution for financial problems\n- Potential AB=CD pattern in Bitcoin price\n- Bitcoin as a hedge against CBDCs and totalitarianism\n- Bitcoin's correlation with M2 money supply\n- Changes in the Bitcoin market\n- Gambling on cryptocurrency\n- Endurance and patience required in Bitcoin investment\n- Comedy and truth in Bitcoin-related content\n- Misunderstanding of Bitcoin's role as a settlement layer vs. a payments network","data":[9,5,10,14,56,58,5,11,13,10,8,10,8,3,13,8,7,5,17,14,16,11,17,13,8,22,9,12,6,9,10,15,7,19,5,12,19,10,15,6,8,20,11,11,10,17,18,17,13,12,12,5,10,5,10]},{"label":"Art","topics":"art,artists,artist,collection,work","description":"The messages from Twitter suggest a strong interest and engagement in crypto art within the community. The discussions revolve around the intersection of art and technology, with a focus on AI-generated art and NFTs. There is a sense of excitement and optimism about the future of digital art and its potential to revolutionize the art world. The community is actively participating in buying and selling crypto art, with specific artworks being highlighted and sold for significant amounts. Overall, the conversations reflect a belief in the transformative power of crypto art and its ability to redefine traditional notions of art and creativity.","data":[4,2,66,10,1,0,4,1,6,2,11,7,4,3,5,2,5,4,5,2,5,5,5,4,9,11,4,7,6,2,14,5,5,6,9,10,11,3,6,4,5,1,5,11,10,9,9,13,9,5,6,3,10,5,5]},{"label":"Token2049","topics":"token2049,singapore,2049,event,events","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- TOKEN2049 event in Singapore\n- Fireside chat between @tarunchitra and @yangl1996 at OMEGA\n- Interview with @realDonaldTrump\n- Decentralized internet\n- On-chain data and integration with Dune\n- Panel discussion with @Gotbit_io, @Animocabrands, @Mumu_Bull & @MonkeDAO\n- Unmarshal's presence at TOKEN2049\n- AlchemyPay's booth at TOKEN2049\n- CrimeFic4Harris livestream\n- Mantle's events during TOKEN2049 week\n- Launch of @theworldlabs\n- dYdX Unlimited launch\n- Portfolio discussions at TOKEN2049\n- CARV Labs and events at TOKEN2049\n- Binance Wallet x CARV USDC distribution\n\nOverall, the crypto community on Twitter is actively engaged in discussions about various events, partnerships, and developments within the industry, particularly focusing on the TOKEN2049 event in Singapore.","data":[8,2,8,6,3,1,4,2,13,5,5,2,1,25,3,2,2,25,4,7,5,10,1,18,4,1,4,22,6,4,9,8,6,2,4,9,1,1,3,12,2,4,3,4,6,8,8,0,47,5,4,0,7,12,5]},{"label":"Kraken vs SEC","topics":"sec,securities,gensler,kraken,gary","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Kraken denying SEC claims and arguing that digital assets aren't securities\n- Ex-SEC officials speaking at a hearing on the politicized approach to crypto\n- Hindenburg Research's latest attack on the Adani Group and SEBI Chief Madhabi Puri Buch\n- Coinbase launching a $6M legal defense fund to support NFT creators facing SEC scrutiny\n- Ripple CEO expressing frustration over the SEC lawsuit and wasted time and money\n- SEC filing a proposed amended complaint against Binance and SBF appealing his fraud conviction\n- Discussion on punishing SEC Chair Gary Gensler for the ongoing legal battles with Ripple and the XRP community.","data":[12,3,8,7,0,0,18,2,10,16,15,15,8,2,10,1,4,10,10,14,1,2,2,5,7,2,9,14,17,1,3,1,1,2,3,5,6,1,9,7,19,10,17,18,1,7,11,3,5,3,1,5,0,3,2]},{"label":"AI","topics":"ai,data,humans,models,model","description":"The key topics discussed in the messages from twitter about AI in the crypto industry include:\n- The use of AI in SaaS and web3 governance\n- Building AI-powered cybersec tools and firewalls\n- The cost of building conversational AI\n- The deployment of data centers powered by nuclear energy in the AI sector\n- AI companions and digital relationships\n- MailTime AI powered by GPT-4o\n- AI interior design\n- Breakthroughs in AI technology and the increasing costs associated with it\n- Experimenting with AI in writing and editing, including discussions with OpenAI's writer engagement team.","data":[5,30,9,5,1,0,3,4,1,4,11,4,1,3,10,4,3,6,7,3,8,11,4,4,9,7,6,5,5,2,4,4,4,7,4,5,7,7,7,3,5,2,7,6,5,6,5,13,5,4,8,3,4,8,2]},{"label":"MicroStrategy has acquired 18,300 BTC","topics":"microstrategy,mstr,billion,acquired,notes","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. MicroStrategy's massive $1.1 billion Bitcoin purchase, bringing their total Bitcoin assets to an impressive $14 billion.\n2. Marathon Digital Holdings adding 5,000+ BTC to its holdings, reaching a total of 26,200 BTC worth $1.5 billion.\n3. Metaplanet securing a $6.8 million loan to expand its Bitcoin holdings amid market turmoil.\n4. The increasing number of publicly traded companies with Bitcoin on their balance sheets, with over 128 companies now holding Bitcoin.\n5. The upsizing of MicroStrategy's offering to $875 million from $700 million, indicating a strong appetite for their convertible notes.\n6. Michael Saylor's influence in creating FOMO among public companies globally to invest in Bitcoin.\n7. The Bitcoin bull run continuing, with companies like Marathon Digital Holdings consistently buying Bitcoin.\n8. MicroStrategy's acquisition of 18,300 BTC at an average price of $60,408 per Bitcoin, with a BTC yield of 4.4% QTD and 17.0% YTD.\n\nOverall, the discussions on social media reflect a positive sentiment towards Bitcoin investments and the growing interest of companies in holding Bitcoin as part of their assets.","data":[19,9,3,3,3,2,21,3,11,1,1,7,2,5,1,1,1,2,0,4,2,2,0,1,8,5,6,1,4,2,2,3,91,7,2,5,2,2,8,5,5,2,6,10,4,4,0,1,4,1,1,1,1,2,6]},{"label":"BTC Price: break resistance","topics":"resistance,btc,close,break,higher","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin breaking past resistance at $59.5k and potentially reaching $92,000 in a rally.\n2. Bitcoin challenging Lower High resistance for a breakout and positioning for a Weekly Close above the 21-week EMA.\n3. Technical analysis showing early signs of life for BTC with higher lows and reclaiming its 200dma.\n4. Bitcoin's correlation with the Nasdaq-100 index and potential upside as rate cuts set in.\n5. Price action analysis for Bitcoin, including breakout above resistance and holding as long as green dots print.\n6. Discussion about the Bitcoin bull market being back on, potential triple top formation, and price targets.\n7. Analysis of a new 1D candle opening up for Bitcoin with a Golden Cross and buying volume.\n\nOverall, the sentiment on Twitter seems to be positive towards Bitcoin's price action and potential for a bullish breakout.","data":[2,1,3,6,21,24,8,34,1,3,4,4,4,7,4,3,0,0,7,9,4,5,0,2,5,3,1,2,1,4,5,5,5,6,1,4,4,7,7,5,18,2,2,5,0,9,2,7,4,1,4,13,3,8,3]},{"label":"BTC Price: 60k","topics":"60k,60000,58k,bitcoin,61k","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin reaching new price levels such as $65k, $95k, and potentially even $100k\n- Speculation on whether Bitcoin can reach $1,000,000 by 2025\n- Market dynamics with bulls turning into bears and the impact of market markers\n- Bitcoin's recent price movements, climbing back above $63,000\n- Analysis and predictions on Bitcoin's price, including a recent drop below $60k\n- The impact of certain amounts of Bitcoin being out of circulation for a long time\n- References to specific individuals such as Michael Saylor and Diddy in relation to Bitcoin's price movements\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin's price potential, with excitement and speculation about future price levels and market dynamics.","data":[2,1,2,4,20,41,17,7,3,4,5,3,3,2,1,0,4,2,1,4,5,13,0,3,11,6,6,2,2,3,7,1,3,4,2,7,3,12,4,4,5,5,1,1,3,9,8,8,2,2,5,9,3,1,2]},{"label":"DOGE","topics":"dogecoin,doge,babydoge,elon,coin","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin (#Dogecoin, #doge): There is excitement and optimism surrounding Dogecoin, with mentions of its potential for growth and acceptance in various markets. There are also references to popular culture, such as the Green Ranger and his dino, as well as partnerships with other tokens like BabyDogeCoin.\n- Altcoins: There is speculation about an altcoin that has surpassed Dogecoin and ShibaInu with a 100x gain, generating interest and discussion among traders and investors.\n- Market trends: There are observations about Dogecoin consolidating in the 10 cents range after a breakout, with a decrease in volume indicating a wait-and-see approach from traders.\n- Partnerships and collaborations: There are announcements of partnerships between different tokens and projects, such as Dogecoin with BabyDogeCoin, indicating a collaborative effort to enhance meme mastery and market presence.\n- TON Blockchain: There is data suggesting that traders on the TON Blockchain are accumulating dog-themed memecoins like $DOGS and $REDO, with $DOGS leading in volume but $REDO also gaining traction among users.","data":[0,1,5,4,0,0,0,3,1,2,2,2,2,1,2,86,0,3,0,1,1,4,4,0,4,8,4,3,6,16,7,1,2,6,4,5,4,2,3,2,0,3,3,3,2,1,4,4,5,2,4,3,3,4,2]},{"label":"ETF Flows","topics":"etfs,inflows,etf,net,million","description":"The key topic discussed in the messages from Twitter is the significant net inflows and outflows in Bitcoin and Ethereum ETFs. There is a focus on the movement of funds in various ETFs, such as Grayscale ETF GBTC, Fidelity ETF FBTC, Bitwise ETF BITB, and ARKB ETF. The messages also highlight the total net inflow of Bitcoin spot ETFs on specific dates, indicating a renewed interest in Bitcoin as an investment vehicle. Additionally, there is mention of the smart money buying Bitcoin and the implications of these movements on the cryptocurrency market. Overall, the messages suggest a dynamic and active trading environment in the crypto industry, with a particular emphasis on Bitcoin ETFs.","data":[5,0,2,0,18,4,6,2,9,1,2,3,5,4,6,0,20,5,2,4,1,2,6,2,4,10,3,2,2,0,2,3,0,7,6,2,0,2,3,1,1,1,8,1,34,3,3,0,3,9,0,4,0,2,7]},{"label":"GameFi","topics":"gaming,games,game,gamefi,web3","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include blockchain gaming, onchain gaming events, the intersection of fine art, tech, and gaming, the popularity of MMORPGs like World of Warcraft, upcoming game releases in the metaverse, and collaborations between gaming companies to deliver unparalleled Web3 experiences. There is also a focus on immersive VR experiences, play-to-earn mechanics, and strategic NFT integration in blockchain-based MMORPGs. Additionally, there is excitement around the potential for blockchain technology to reach billions of users through gaming and the potential for Ethereum-based games to expand their universes with new projects. Overall, the sentiment seems to be very bullish on the future of blockchain gaming and its potential to revolutionize the gaming industry.","data":[2,0,3,2,0,0,1,4,1,1,2,6,1,1,5,1,5,1,9,3,32,2,8,4,3,3,6,4,3,0,2,5,4,2,9,6,4,2,4,4,4,8,1,3,2,3,7,2,1,2,1,3,3,11,9]},{"label":"BTC Mining","topics":"mining,miners,miner,energy,bitcoin","description":"The key topics currently discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining pools\n- Litecoin network hash rate\n- ASIC mining\n- Bitcoin mining heat use case\n- GPU mining motherboards\n- Cloud mining contracts\n- Bitcoin miners adopting MicroStrategy's BTC buying strategy\n- Bitcoin block rewards and network security\n- BTCfi as a solution for long-term stability\n- Defense of Bitcoin mining and energy industry in Wyoming\n- Negative power prices in France\n- Satoshi Action research cited in papers about Bitcoin mining and green energy integration","data":[4,3,3,3,7,22,6,1,0,5,3,7,1,2,4,4,11,6,0,2,0,0,3,12,3,9,0,2,2,2,1,3,20,7,8,5,5,1,6,3,1,5,1,4,2,1,2,2,1,1,2,2,1,2,1]},{"label":"SOL","topics":"solana,sol,phone,liquid,staking","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Solana ($SOL) price analysis and potential breakout towards $200 amid growing NFT adoption.\n2. The rivalry between different blockchains, such as Solana and Cardano ($ADA), and the potential for both to succeed.\n3. The announcement of enhanced support for Solana by The Graph, leading to increased interest in querying Solana data.\n4. Speculation on the future price of Solana, with predictions ranging from $130 to $155.\n5. Whale purchases of $1.37 million worth of SOL, sparking discussions about the potential for Solana's value to soar.\n6. The launch of Solana's first atomic SVM chain node sale by Sonic SVM, aiming to enhance the Solana Virtual Machine.\n7. The trending of PandaSwapSol on CoinMarketCap, with the team building a fast token swap platform on Solana.\n8. Updates on Sonic Labs (previously Fantom) and their high-throughput layer-1 blockchain with a native layer-2 bridge to Ethereum.\n9. Insights into the SORA ecosystem, including network upgrades and on-ramp guides for the SORA token.\n10. FTX/Alameda associated wallet unstaking over $1 billion worth of SOL, leading to speculation about their intentions.\n\nOverall, the discussions on Twitter indicate a mix of price analysis, technological developments, ecosystem updates, and market activities related to Solana and other cryptocurrencies in the industry.","data":[0,7,1,3,1,0,3,3,5,1,9,4,3,1,5,3,4,3,2,3,4,1,5,2,3,1,3,0,8,5,3,3,1,7,2,2,2,8,4,3,6,3,3,5,29,2,3,3,4,3,8,4,4,2,6]},{"label":"Gold","topics":"gold,silver,record,highs,ath","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Gold hitting record highs due to rate cut bets and global liquidity reaching all-time highs\n- Bitcoin's negative correlation with gold, signaling a risk-averse environment\n- Saudi Central Bank not yet caught secretly buying tons of Bitcoin\n- Major global bank shifting commodity holdings to gold as demand soars\n- Saudi Minister hinting at 86 million tonnes of Petroyuan adoption\n- Speculation about trading the gold/silver ratio and the potential for silver to outperform\n- Expectations of a 50 basis points cut in the short-term Fed Funds interest rate\n- Bitcoin critic happy about gold's price hitting all-time high, but BTC outperforming gold by 6583% in the past 10 years\n- Bitcoin and gold sharing the top performance spots in the same year\n- Market preference for Bitcoin and gold over U.S. Treasuries due to zero returns\n- Gold price setting new records on Fed's first rate cut since 2020, followed by a decline in spot gold and futures prices.","data":[1,1,1,1,17,7,2,1,1,1,0,1,1,1,4,0,1,1,3,1,0,1,85,2,0,2,5,0,2,0,2,5,2,6,2,0,0,7,2,3,8,5,6,7,2,3,2,2,1,1,0,0,1,0,2]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coin","description":"The messages from Twitter suggest a growing interest and excitement around meme coins in the crypto industry. Key topics being discussed include the potential for meme coins to reach $1 million market cap, the popularity of animal-themed meme coins, the importance of community support, and the unique characteristics of different meme coins. There is also mention of the meme coin craze reaching new highs and lows, with debates about whether it is the next big wave or a ticking time bomb. Additionally, there are discussions about the utility of crypto and the emergence of new meme coin projects like MemeVault. Overall, the sentiment seems to be positive and optimistic about the future of meme coins in the crypto market.","data":[1,2,4,3,1,0,1,1,9,1,1,1,3,1,1,4,0,0,7,2,1,5,5,3,2,3,2,2,2,1,4,1,61,1,6,1,3,1,1,2,3,6,2,4,2,2,4,2,3,2,8,2,3,2,1]},{"label":"NFT","topics":"nft,nfts,degods,collection,pfp","description":"The key topics discussed in the messages from twitter are NFTs (Non-Fungible Tokens), DeFi (Decentralized Finance), cryptocurrency, blockchain, NFT marketplaces, and the intersection of NFTs with real-world assets like diamonds. There is also mention of specific NFT projects such as bozo and DeGodsNFT, as well as the growth and potential of NFT collections on the Solana blockchain. Additionally, there is a focus on community building within the NFT space and the unique ways in which NFTs are being utilized beyond just financial transactions.","data":[2,1,4,9,0,0,1,1,3,2,2,3,5,4,16,4,1,2,3,2,2,3,4,5,1,8,5,3,2,0,3,3,4,0,20,2,3,5,15,2,3,2,6,0,3,3,1,6,4,3,0,3,2,0,4]},{"label":"NEIRO","topics":"neiro,binance,turbo,listing,listed","description":"The messages from Twitter are discussing the cryptocurrency $NEIRO and its recent listing on Binance. There are mixed opinions about the project, with some users accusing it of being an insider scam and others expressing excitement about potential profits. The community seems divided on whether to buy or sell $NEIRO, with some users predicting a short squeeze and others warning about high liquidity. Additionally, there is mention of a trading carnival for $NEIROCTO futures and a comparison to the success of $KABOSU on Ethereum. Overall, the sentiment around $NEIRO on Twitter is volatile and uncertain, with users eagerly awaiting the outcome of its listing on Binance.","data":[4,1,5,3,1,0,6,3,3,0,4,1,4,2,0,2,1,5,2,2,3,4,1,1,5,0,2,1,2,19,0,1,3,3,9,2,3,2,4,4,0,3,1,4,2,1,6,1,5,4,2,1,2,3,4]},{"label":"DeFi","topics":"defi,lending,finance,yield,financial","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- DeFi Mixology: A series of 1-click strategies curated for users\n- Discount fee exploit discovered in DeFi protocol DittoETH\n- Smart $M: A DeFi-native version of $M with innovative wrapper technology\n- Beam Wallet: A non-custodial crypto wallet with built-in dApps and DeFi products\n- Simplifying DeFi for everyday users\n- Integration of Real World Assets into AI-powered DynaVaults by SingularityDAO and Cogito Finance\n- Derive's Angel Round with 33 leaders from the DeFi ecosystem\n- Crescendo upgrade for $FLOW with faster transactions and lower fees\n- Future of finance with BABB and ReDeFi\n- Listings on Tier1 exchanges and airdrop event by DeepLinkGlobal\n- NEOPIN: A platform for discovering various DeFi products\n- Euphoria phase in DeFi with potential for growth and opportunities\n\nThese topics highlight the latest developments, innovations, and collaborations within the crypto industry, particularly focusing on DeFi projects and advancements.","data":[0,1,4,2,0,0,2,5,1,2,1,2,3,1,14,1,5,8,8,6,2,2,0,3,0,1,6,4,5,1,1,4,0,4,3,2,1,3,5,5,0,1,1,2,4,2,1,6,3,5,1,3,2,4,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-37.ts b/priv/repo/major_topics_seed/data-37.ts deleted file mode 100644 index 63d1589a6f..0000000000 --- a/priv/repo/major_topics_seed/data-37.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '12.09.24', - '13.09.24', - '13.09.24', - '13.09.24', - '13.09.24', - '13.09.24', - '13.09.24', - '13.09.24', - '14.09.24', - '14.09.24', - '14.09.24', - '14.09.24', - '14.09.24', - '14.09.24', - '14.09.24', - '14.09.24', - '15.09.24', - '15.09.24', - '15.09.24', - '15.09.24', - '15.09.24', - '15.09.24', - '15.09.24', - '15.09.24', - '16.09.24', - '16.09.24', - '16.09.24', - '16.09.24', - '16.09.24', - '16.09.24', - '16.09.24', - '16.09.24', - '17.09.24', - '17.09.24', - '17.09.24', - '17.09.24', - '17.09.24', - '17.09.24', - '17.09.24', - '17.09.24', - '18.09.24', - '18.09.24', - '18.09.24', - '18.09.24', - '18.09.24', - '18.09.24', - '18.09.24', - '18.09.24', - '19.09.24', - '19.09.24', - '19.09.24', - '19.09.24', - '19.09.24', - '19.09.24', - '19.09.24', - ], - datasets: [ - { - label: 'Interest Rates cut', - topics: 'cut,fed,rate,rates,cuts', - description: - "The key topics currently being discussed on social media regarding the crypto industry are the Federal Reserve's decision to lower interest rates, the impact on Bitcoin's price, and the speculation surrounding the rate cut. Traders are closely monitoring the Fed's actions and how they will affect the crypto markets. There is debate over whether the rate cut will be 25 or 50 basis points and how it will impact various sectors such as small caps, Bitcoin, and biotech. Additionally, there is discussion about the potential for a \"SELL THE NEWS\" scenario and the market volatility surrounding the rate cut announcement. Overall, the focus is on how the Fed's decision will shape the future of the economy and the crypto industry.", - data: [ - 11, 9, 5, 15, 7, 13, 26, 16, 4, 11, 5, 8, 12, 62, 15, 3, 11, 20, 22, 36, 8, 20, 11, 16, 21, - 27, 13, 7, 10, 9, 9, 23, 6, 5, 12, 11, 3, 23, 14, 90, 31, 13, 12, 11, 13, 9, 11, 19, 8, 8, - 9, 3, 14, 7, 10, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,vitalik,ethbtc,buterin', - description: - "The key topics currently discussed on Twitter regarding Ethereum include:\n1. Sentiment at an all-time low for Ethereum\n2. Speculation on the price of Ethereum potentially never dropping below $2K again\n3. Ethereum facing its worst Q3 in 5 years with a 33.21% decline\n4. Potential breakout ahead for Ethereum to reach $2,500\n5. Discussion on Ethereum's key support level and the possibility of going all-in\n6. Defending layer 2 solutions like Arbitrum as Ethereum falters\n7. Jump Trading selling $30 million in Ethereum and its implications for the future of ETH\n8. Ethereum's roadmap for 2025 being revealed\n9. Ethereum consolidating in a narrow range with signs of a potential breakout\n10. Listing alert for AethirCloud on CoinW with a bounty program and rewards.", - data: [ - 13, 6, 10, 18, 6, 2, 9, 9, 5, 6, 8, 18, 8, 10, 8, 13, 106, 44, 15, 18, 16, 16, 5, 20, 18, - 14, 4, 17, 7, 10, 15, 9, 2, 8, 3, 10, 15, 14, 11, 16, 15, 9, 16, 17, 10, 10, 7, 17, 7, 9, 6, - 7, 4, 5, 10, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,money,fiat,understand,world', - description: - "The key topics discussed in the messages from twitter are:\n- Adoption of Bitcoin by nation states\n- Bitcoin as a solution for financial problems\n- Potential AB=CD pattern in Bitcoin price\n- Bitcoin as a hedge against CBDCs and totalitarianism\n- Bitcoin's correlation with M2 money supply\n- Changes in the Bitcoin market\n- Gambling on cryptocurrency\n- Endurance and patience required in Bitcoin investment\n- Comedy and truth in Bitcoin-related content\n- Misunderstanding of Bitcoin's role as a settlement layer vs. a payments network", - data: [ - 9, 5, 10, 14, 56, 58, 5, 11, 13, 10, 8, 10, 8, 3, 13, 8, 7, 5, 17, 14, 16, 11, 17, 13, 8, - 22, 9, 12, 6, 9, 10, 15, 7, 19, 5, 12, 19, 10, 15, 6, 8, 20, 11, 11, 10, 17, 18, 17, 13, 12, - 12, 5, 10, 5, 10, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,collection,work', - description: - 'The messages from Twitter suggest a strong interest and engagement in crypto art within the community. The discussions revolve around the intersection of art and technology, with a focus on AI-generated art and NFTs. There is a sense of excitement and optimism about the future of digital art and its potential to revolutionize the art world. The community is actively participating in buying and selling crypto art, with specific artworks being highlighted and sold for significant amounts. Overall, the conversations reflect a belief in the transformative power of crypto art and its ability to redefine traditional notions of art and creativity.', - data: [ - 4, 2, 66, 10, 1, 0, 4, 1, 6, 2, 11, 7, 4, 3, 5, 2, 5, 4, 5, 2, 5, 5, 5, 4, 9, 11, 4, 7, 6, - 2, 14, 5, 5, 6, 9, 10, 11, 3, 6, 4, 5, 1, 5, 11, 10, 9, 9, 13, 9, 5, 6, 3, 10, 5, 5, - ], - }, - { - label: 'Token2049', - topics: 'token2049,singapore,2049,event,events', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- TOKEN2049 event in Singapore\n- Fireside chat between @tarunchitra and @yangl1996 at OMEGA\n- Interview with @realDonaldTrump\n- Decentralized internet\n- On-chain data and integration with Dune\n- Panel discussion with @Gotbit_io, @Animocabrands, @Mumu_Bull & @MonkeDAO\n- Unmarshal's presence at TOKEN2049\n- AlchemyPay's booth at TOKEN2049\n- CrimeFic4Harris livestream\n- Mantle's events during TOKEN2049 week\n- Launch of @theworldlabs\n- dYdX Unlimited launch\n- Portfolio discussions at TOKEN2049\n- CARV Labs and events at TOKEN2049\n- Binance Wallet x CARV USDC distribution\n\nOverall, the crypto community on Twitter is actively engaged in discussions about various events, partnerships, and developments within the industry, particularly focusing on the TOKEN2049 event in Singapore.", - data: [ - 8, 2, 8, 6, 3, 1, 4, 2, 13, 5, 5, 2, 1, 25, 3, 2, 2, 25, 4, 7, 5, 10, 1, 18, 4, 1, 4, 22, 6, - 4, 9, 8, 6, 2, 4, 9, 1, 1, 3, 12, 2, 4, 3, 4, 6, 8, 8, 0, 47, 5, 4, 0, 7, 12, 5, - ], - }, - { - label: 'Kraken vs SEC', - topics: 'sec,securities,gensler,kraken,gary', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Kraken denying SEC claims and arguing that digital assets aren't securities\n- Ex-SEC officials speaking at a hearing on the politicized approach to crypto\n- Hindenburg Research's latest attack on the Adani Group and SEBI Chief Madhabi Puri Buch\n- Coinbase launching a $6M legal defense fund to support NFT creators facing SEC scrutiny\n- Ripple CEO expressing frustration over the SEC lawsuit and wasted time and money\n- SEC filing a proposed amended complaint against Binance and SBF appealing his fraud conviction\n- Discussion on punishing SEC Chair Gary Gensler for the ongoing legal battles with Ripple and the XRP community.", - data: [ - 12, 3, 8, 7, 0, 0, 18, 2, 10, 16, 15, 15, 8, 2, 10, 1, 4, 10, 10, 14, 1, 2, 2, 5, 7, 2, 9, - 14, 17, 1, 3, 1, 1, 2, 3, 5, 6, 1, 9, 7, 19, 10, 17, 18, 1, 7, 11, 3, 5, 3, 1, 5, 0, 3, 2, - ], - }, - { - label: 'AI', - topics: 'ai,data,humans,models,model', - description: - "The key topics discussed in the messages from twitter about AI in the crypto industry include:\n- The use of AI in SaaS and web3 governance\n- Building AI-powered cybersec tools and firewalls\n- The cost of building conversational AI\n- The deployment of data centers powered by nuclear energy in the AI sector\n- AI companions and digital relationships\n- MailTime AI powered by GPT-4o\n- AI interior design\n- Breakthroughs in AI technology and the increasing costs associated with it\n- Experimenting with AI in writing and editing, including discussions with OpenAI's writer engagement team.", - data: [ - 5, 30, 9, 5, 1, 0, 3, 4, 1, 4, 11, 4, 1, 3, 10, 4, 3, 6, 7, 3, 8, 11, 4, 4, 9, 7, 6, 5, 5, - 2, 4, 4, 4, 7, 4, 5, 7, 7, 7, 3, 5, 2, 7, 6, 5, 6, 5, 13, 5, 4, 8, 3, 4, 8, 2, - ], - }, - { - label: 'MicroStrategy has acquired 18,300 BTC', - topics: 'microstrategy,mstr,billion,acquired,notes', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. MicroStrategy's massive $1.1 billion Bitcoin purchase, bringing their total Bitcoin assets to an impressive $14 billion.\n2. Marathon Digital Holdings adding 5,000+ BTC to its holdings, reaching a total of 26,200 BTC worth $1.5 billion.\n3. Metaplanet securing a $6.8 million loan to expand its Bitcoin holdings amid market turmoil.\n4. The increasing number of publicly traded companies with Bitcoin on their balance sheets, with over 128 companies now holding Bitcoin.\n5. The upsizing of MicroStrategy's offering to $875 million from $700 million, indicating a strong appetite for their convertible notes.\n6. Michael Saylor's influence in creating FOMO among public companies globally to invest in Bitcoin.\n7. The Bitcoin bull run continuing, with companies like Marathon Digital Holdings consistently buying Bitcoin.\n8. MicroStrategy's acquisition of 18,300 BTC at an average price of $60,408 per Bitcoin, with a BTC yield of 4.4% QTD and 17.0% YTD.\n\nOverall, the discussions on social media reflect a positive sentiment towards Bitcoin investments and the growing interest of companies in holding Bitcoin as part of their assets.", - data: [ - 19, 9, 3, 3, 3, 2, 21, 3, 11, 1, 1, 7, 2, 5, 1, 1, 1, 2, 0, 4, 2, 2, 0, 1, 8, 5, 6, 1, 4, 2, - 2, 3, 91, 7, 2, 5, 2, 2, 8, 5, 5, 2, 6, 10, 4, 4, 0, 1, 4, 1, 1, 1, 1, 2, 6, - ], - }, - { - label: 'BTC Price: break resistance', - topics: 'resistance,btc,close,break,higher', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin breaking past resistance at $59.5k and potentially reaching $92,000 in a rally.\n2. Bitcoin challenging Lower High resistance for a breakout and positioning for a Weekly Close above the 21-week EMA.\n3. Technical analysis showing early signs of life for BTC with higher lows and reclaiming its 200dma.\n4. Bitcoin's correlation with the Nasdaq-100 index and potential upside as rate cuts set in.\n5. Price action analysis for Bitcoin, including breakout above resistance and holding as long as green dots print.\n6. Discussion about the Bitcoin bull market being back on, potential triple top formation, and price targets.\n7. Analysis of a new 1D candle opening up for Bitcoin with a Golden Cross and buying volume.\n\nOverall, the sentiment on Twitter seems to be positive towards Bitcoin's price action and potential for a bullish breakout.", - data: [ - 2, 1, 3, 6, 21, 24, 8, 34, 1, 3, 4, 4, 4, 7, 4, 3, 0, 0, 7, 9, 4, 5, 0, 2, 5, 3, 1, 2, 1, 4, - 5, 5, 5, 6, 1, 4, 4, 7, 7, 5, 18, 2, 2, 5, 0, 9, 2, 7, 4, 1, 4, 13, 3, 8, 3, - ], - }, - { - label: 'BTC Price: 60k', - topics: '60k,60000,58k,bitcoin,61k', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin reaching new price levels such as $65k, $95k, and potentially even $100k\n- Speculation on whether Bitcoin can reach $1,000,000 by 2025\n- Market dynamics with bulls turning into bears and the impact of market markers\n- Bitcoin's recent price movements, climbing back above $63,000\n- Analysis and predictions on Bitcoin's price, including a recent drop below $60k\n- The impact of certain amounts of Bitcoin being out of circulation for a long time\n- References to specific individuals such as Michael Saylor and Diddy in relation to Bitcoin's price movements\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin's price potential, with excitement and speculation about future price levels and market dynamics.", - data: [ - 2, 1, 2, 4, 20, 41, 17, 7, 3, 4, 5, 3, 3, 2, 1, 0, 4, 2, 1, 4, 5, 13, 0, 3, 11, 6, 6, 2, 2, - 3, 7, 1, 3, 4, 2, 7, 3, 12, 4, 4, 5, 5, 1, 1, 3, 9, 8, 8, 2, 2, 5, 9, 3, 1, 2, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,babydoge,elon,coin', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin (#Dogecoin, #doge): There is excitement and optimism surrounding Dogecoin, with mentions of its potential for growth and acceptance in various markets. There are also references to popular culture, such as the Green Ranger and his dino, as well as partnerships with other tokens like BabyDogeCoin.\n- Altcoins: There is speculation about an altcoin that has surpassed Dogecoin and ShibaInu with a 100x gain, generating interest and discussion among traders and investors.\n- Market trends: There are observations about Dogecoin consolidating in the 10 cents range after a breakout, with a decrease in volume indicating a wait-and-see approach from traders.\n- Partnerships and collaborations: There are announcements of partnerships between different tokens and projects, such as Dogecoin with BabyDogeCoin, indicating a collaborative effort to enhance meme mastery and market presence.\n- TON Blockchain: There is data suggesting that traders on the TON Blockchain are accumulating dog-themed memecoins like $DOGS and $REDO, with $DOGS leading in volume but $REDO also gaining traction among users.', - data: [ - 0, 1, 5, 4, 0, 0, 0, 3, 1, 2, 2, 2, 2, 1, 2, 86, 0, 3, 0, 1, 1, 4, 4, 0, 4, 8, 4, 3, 6, 16, - 7, 1, 2, 6, 4, 5, 4, 2, 3, 2, 0, 3, 3, 3, 2, 1, 4, 4, 5, 2, 4, 3, 3, 4, 2, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,etf,net,million', - description: - 'The key topic discussed in the messages from Twitter is the significant net inflows and outflows in Bitcoin and Ethereum ETFs. There is a focus on the movement of funds in various ETFs, such as Grayscale ETF GBTC, Fidelity ETF FBTC, Bitwise ETF BITB, and ARKB ETF. The messages also highlight the total net inflow of Bitcoin spot ETFs on specific dates, indicating a renewed interest in Bitcoin as an investment vehicle. Additionally, there is mention of the smart money buying Bitcoin and the implications of these movements on the cryptocurrency market. Overall, the messages suggest a dynamic and active trading environment in the crypto industry, with a particular emphasis on Bitcoin ETFs.', - data: [ - 5, 0, 2, 0, 18, 4, 6, 2, 9, 1, 2, 3, 5, 4, 6, 0, 20, 5, 2, 4, 1, 2, 6, 2, 4, 10, 3, 2, 2, 0, - 2, 3, 0, 7, 6, 2, 0, 2, 3, 1, 1, 1, 8, 1, 34, 3, 3, 0, 3, 9, 0, 4, 0, 2, 7, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,gamefi,web3', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include blockchain gaming, onchain gaming events, the intersection of fine art, tech, and gaming, the popularity of MMORPGs like World of Warcraft, upcoming game releases in the metaverse, and collaborations between gaming companies to deliver unparalleled Web3 experiences. There is also a focus on immersive VR experiences, play-to-earn mechanics, and strategic NFT integration in blockchain-based MMORPGs. Additionally, there is excitement around the potential for blockchain technology to reach billions of users through gaming and the potential for Ethereum-based games to expand their universes with new projects. Overall, the sentiment seems to be very bullish on the future of blockchain gaming and its potential to revolutionize the gaming industry.', - data: [ - 2, 0, 3, 2, 0, 0, 1, 4, 1, 1, 2, 6, 1, 1, 5, 1, 5, 1, 9, 3, 32, 2, 8, 4, 3, 3, 6, 4, 3, 0, - 2, 5, 4, 2, 9, 6, 4, 2, 4, 4, 4, 8, 1, 3, 2, 3, 7, 2, 1, 2, 1, 3, 3, 11, 9, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,energy,bitcoin', - description: - "The key topics currently discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining pools\n- Litecoin network hash rate\n- ASIC mining\n- Bitcoin mining heat use case\n- GPU mining motherboards\n- Cloud mining contracts\n- Bitcoin miners adopting MicroStrategy's BTC buying strategy\n- Bitcoin block rewards and network security\n- BTCfi as a solution for long-term stability\n- Defense of Bitcoin mining and energy industry in Wyoming\n- Negative power prices in France\n- Satoshi Action research cited in papers about Bitcoin mining and green energy integration", - data: [ - 4, 3, 3, 3, 7, 22, 6, 1, 0, 5, 3, 7, 1, 2, 4, 4, 11, 6, 0, 2, 0, 0, 3, 12, 3, 9, 0, 2, 2, 2, - 1, 3, 20, 7, 8, 5, 5, 1, 6, 3, 1, 5, 1, 4, 2, 1, 2, 2, 1, 1, 2, 2, 1, 2, 1, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,phone,liquid,staking', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Solana ($SOL) price analysis and potential breakout towards $200 amid growing NFT adoption.\n2. The rivalry between different blockchains, such as Solana and Cardano ($ADA), and the potential for both to succeed.\n3. The announcement of enhanced support for Solana by The Graph, leading to increased interest in querying Solana data.\n4. Speculation on the future price of Solana, with predictions ranging from $130 to $155.\n5. Whale purchases of $1.37 million worth of SOL, sparking discussions about the potential for Solana's value to soar.\n6. The launch of Solana's first atomic SVM chain node sale by Sonic SVM, aiming to enhance the Solana Virtual Machine.\n7. The trending of PandaSwapSol on CoinMarketCap, with the team building a fast token swap platform on Solana.\n8. Updates on Sonic Labs (previously Fantom) and their high-throughput layer-1 blockchain with a native layer-2 bridge to Ethereum.\n9. Insights into the SORA ecosystem, including network upgrades and on-ramp guides for the SORA token.\n10. FTX/Alameda associated wallet unstaking over $1 billion worth of SOL, leading to speculation about their intentions.\n\nOverall, the discussions on Twitter indicate a mix of price analysis, technological developments, ecosystem updates, and market activities related to Solana and other cryptocurrencies in the industry.", - data: [ - 0, 7, 1, 3, 1, 0, 3, 3, 5, 1, 9, 4, 3, 1, 5, 3, 4, 3, 2, 3, 4, 1, 5, 2, 3, 1, 3, 0, 8, 5, 3, - 3, 1, 7, 2, 2, 2, 8, 4, 3, 6, 3, 3, 5, 29, 2, 3, 3, 4, 3, 8, 4, 4, 2, 6, - ], - }, - { - label: 'Gold', - topics: 'gold,silver,record,highs,ath', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Gold hitting record highs due to rate cut bets and global liquidity reaching all-time highs\n- Bitcoin's negative correlation with gold, signaling a risk-averse environment\n- Saudi Central Bank not yet caught secretly buying tons of Bitcoin\n- Major global bank shifting commodity holdings to gold as demand soars\n- Saudi Minister hinting at 86 million tonnes of Petroyuan adoption\n- Speculation about trading the gold/silver ratio and the potential for silver to outperform\n- Expectations of a 50 basis points cut in the short-term Fed Funds interest rate\n- Bitcoin critic happy about gold's price hitting all-time high, but BTC outperforming gold by 6583% in the past 10 years\n- Bitcoin and gold sharing the top performance spots in the same year\n- Market preference for Bitcoin and gold over U.S. Treasuries due to zero returns\n- Gold price setting new records on Fed's first rate cut since 2020, followed by a decline in spot gold and futures prices.", - data: [ - 1, 1, 1, 1, 17, 7, 2, 1, 1, 1, 0, 1, 1, 1, 4, 0, 1, 1, 3, 1, 0, 1, 85, 2, 0, 2, 5, 0, 2, 0, - 2, 5, 2, 6, 2, 0, 0, 7, 2, 3, 8, 5, 6, 7, 2, 3, 2, 2, 1, 1, 0, 0, 1, 0, 2, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coin', - description: - 'The messages from Twitter suggest a growing interest and excitement around meme coins in the crypto industry. Key topics being discussed include the potential for meme coins to reach $1 million market cap, the popularity of animal-themed meme coins, the importance of community support, and the unique characteristics of different meme coins. There is also mention of the meme coin craze reaching new highs and lows, with debates about whether it is the next big wave or a ticking time bomb. Additionally, there are discussions about the utility of crypto and the emergence of new meme coin projects like MemeVault. Overall, the sentiment seems to be positive and optimistic about the future of meme coins in the crypto market.', - data: [ - 1, 2, 4, 3, 1, 0, 1, 1, 9, 1, 1, 1, 3, 1, 1, 4, 0, 0, 7, 2, 1, 5, 5, 3, 2, 3, 2, 2, 2, 1, 4, - 1, 61, 1, 6, 1, 3, 1, 1, 2, 3, 6, 2, 4, 2, 2, 4, 2, 3, 2, 8, 2, 3, 2, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,degods,collection,pfp', - description: - 'The key topics discussed in the messages from twitter are NFTs (Non-Fungible Tokens), DeFi (Decentralized Finance), cryptocurrency, blockchain, NFT marketplaces, and the intersection of NFTs with real-world assets like diamonds. There is also mention of specific NFT projects such as bozo and DeGodsNFT, as well as the growth and potential of NFT collections on the Solana blockchain. Additionally, there is a focus on community building within the NFT space and the unique ways in which NFTs are being utilized beyond just financial transactions.', - data: [ - 2, 1, 4, 9, 0, 0, 1, 1, 3, 2, 2, 3, 5, 4, 16, 4, 1, 2, 3, 2, 2, 3, 4, 5, 1, 8, 5, 3, 2, 0, - 3, 3, 4, 0, 20, 2, 3, 5, 15, 2, 3, 2, 6, 0, 3, 3, 1, 6, 4, 3, 0, 3, 2, 0, 4, - ], - }, - { - label: 'NEIRO', - topics: 'neiro,binance,turbo,listing,listed', - description: - 'The messages from Twitter are discussing the cryptocurrency $NEIRO and its recent listing on Binance. There are mixed opinions about the project, with some users accusing it of being an insider scam and others expressing excitement about potential profits. The community seems divided on whether to buy or sell $NEIRO, with some users predicting a short squeeze and others warning about high liquidity. Additionally, there is mention of a trading carnival for $NEIROCTO futures and a comparison to the success of $KABOSU on Ethereum. Overall, the sentiment around $NEIRO on Twitter is volatile and uncertain, with users eagerly awaiting the outcome of its listing on Binance.', - data: [ - 4, 1, 5, 3, 1, 0, 6, 3, 3, 0, 4, 1, 4, 2, 0, 2, 1, 5, 2, 2, 3, 4, 1, 1, 5, 0, 2, 1, 2, 19, - 0, 1, 3, 3, 9, 2, 3, 2, 4, 4, 0, 3, 1, 4, 2, 1, 6, 1, 5, 4, 2, 1, 2, 3, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,lending,finance,yield,financial', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- DeFi Mixology: A series of 1-click strategies curated for users\n- Discount fee exploit discovered in DeFi protocol DittoETH\n- Smart $M: A DeFi-native version of $M with innovative wrapper technology\n- Beam Wallet: A non-custodial crypto wallet with built-in dApps and DeFi products\n- Simplifying DeFi for everyday users\n- Integration of Real World Assets into AI-powered DynaVaults by SingularityDAO and Cogito Finance\n- Derive's Angel Round with 33 leaders from the DeFi ecosystem\n- Crescendo upgrade for $FLOW with faster transactions and lower fees\n- Future of finance with BABB and ReDeFi\n- Listings on Tier1 exchanges and airdrop event by DeepLinkGlobal\n- NEOPIN: A platform for discovering various DeFi products\n- Euphoria phase in DeFi with potential for growth and opportunities\n\nThese topics highlight the latest developments, innovations, and collaborations within the crypto industry, particularly focusing on DeFi projects and advancements.", - data: [ - 0, 1, 4, 2, 0, 0, 2, 5, 1, 2, 1, 2, 3, 1, 14, 1, 5, 8, 8, 6, 2, 2, 0, 3, 0, 1, 6, 4, 5, 1, - 1, 4, 0, 4, 3, 2, 1, 3, 5, 5, 0, 1, 1, 2, 4, 2, 1, 6, 3, 5, 1, 3, 2, 4, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-38.json b/priv/repo/major_topics_seed/data-38.json deleted file mode 100644 index 1e68000003..0000000000 --- a/priv/repo/major_topics_seed/data-38.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["19.09.24","20.09.24","20.09.24","20.09.24","20.09.24","20.09.24","20.09.24","20.09.24","21.09.24","21.09.24","21.09.24","21.09.24","21.09.24","21.09.24","21.09.24","21.09.24","22.09.24","22.09.24","22.09.24","22.09.24","22.09.24","22.09.24","22.09.24","22.09.24","23.09.24","23.09.24","23.09.24","23.09.24","23.09.24","23.09.24","23.09.24","23.09.24","24.09.24","24.09.24","24.09.24","24.09.24","24.09.24","24.09.24","24.09.24","24.09.24","25.09.24","25.09.24","25.09.24","25.09.24","25.09.24","25.09.24","25.09.24","25.09.24","26.09.24","26.09.24","26.09.24","26.09.24","26.09.24","26.09.24","26.09.24"],"datasets":[{"label":"BTC Price","topics":"65k,btc,resistance,break,64k","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin's price reaching $65,000 and potentially heading towards $70,000.\n2. Analysis of Bitcoin's dominance chart ($BTC.D) indicating a breakout, retest, and rebound.\n3. Factors influencing Bitcoin's price, such as China stimulus and a speech by Fed Chair Jerome Powell.\n4. Speculation on Bitcoin's future price, with predictions ranging from $1 million to $200,000.\n5. Technical analysis indicators suggesting a potential extreme move in Bitcoin's price.\n6. Discussion on Bitcoin's hashrate and its correlation with price movements.\n7. Overall bullish sentiment towards Bitcoin despite challenging macroeconomic conditions.\n\nOverall, the sentiment on Twitter seems to be optimistic about Bitcoin's price potential and future trajectory.","data":[10,9,12,22,103,120,27,76,9,10,30,10,19,31,5,22,7,14,22,10,13,16,13,23,43,13,10,14,16,20,24,13,11,30,4,17,12,26,24,26,20,31,7,24,14,7,25,7,38,13,13,21,7,35,13]},{"label":"GameFi","topics":"gaming,game,games,gamefi,web3","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and the excitement surrounding new games and platforms like $CREO, $MCRT, ERCCnft, Fluffy Town Lmeow, Dookey Dash, RavenQuest, and GameShift.\n- The increasing popularity of gaming coins and the potential for growth in the fall and winter seasons.\n- Revolutionary technology and tools being released for game developers, such as the GAIMIN Game Developer Portal.\n- Partnerships between companies like Solana Labs, Google Cloud, and GameShift to simplify blockchain integration for game developers.\n- Updates on crypto projects like Gold Eagle #Tap2Earn and Monster Tycoon Launch X Spaces.\n- Influencers and content creators like Bankii showcasing their love for gaming and crypto-related activities.\nOverall, the sentiment in the crypto community seems to be positive and optimistic about the future of Web3 gaming and the potential for growth in the industry.","data":[9,6,4,11,3,0,10,6,7,9,7,5,10,4,5,9,3,8,12,8,69,12,15,11,5,8,7,8,17,8,11,7,10,7,4,12,5,20,10,19,7,5,2,2,4,6,9,8,7,5,5,2,14,12,8]},{"label":"BTC","topics":"bitcoin,money,world,fiat,realize","description":"The key topics discussed in the messages from twitter are:\n1. Bitcoin basics and its importance in the financial world.\n2. The potential of Bitcoin to disrupt the traditional monetary system.\n3. The divisibility of Bitcoin and the importance of writing it as 1.0 bitcoin.\n4. The upcoming upgrades for Bitcoin Cash in May 2025.\n5. Discussions about adding a field to Bitcoin layer-1 transactions called \"asset type\" and its impact on fungibility.\n6. The comparison of Bitcoin to time travel and its potential impact on future generations.\n7. The skepticism and eventual acceptance of Bitcoin in society.\n8. The role of Bitcoin in creating economic incentives for war.\n9. The comparison of Bitcoin to a lifeboat that cannot be ignored.\n10. The involvement of prominent figures like Conor McGregor and Simon Dixon in promoting Bitcoin.","data":[6,5,3,5,49,48,4,3,9,4,3,8,4,5,7,7,4,1,13,6,5,4,10,10,3,8,7,6,7,8,5,8,7,8,6,8,9,7,9,6,5,5,9,7,6,9,11,5,10,2,9,5,8,12,11]},{"label":"AI","topics":"ai,data,models,tech,future","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- AI and its impact on enterprise data operations\n- Democratizing AI for the masses\n- AGI (Artificial General Intelligence) development\n- Governments using AI to scan the blockchain and catch cryptocriminals\n- Centralized nature of AI training and inference\n- AI humanoid robots and their potential proliferation\n- LayerAI Mainnet Growth Campaign\n- AI in crypto trading, security, and risk management\n- Opportunities for AI developers in creating trading agents\n- BasedAi as a potential investment opportunity in the AI space","data":[16,59,6,5,2,0,5,4,3,6,6,11,3,9,6,4,7,8,8,5,9,10,10,8,1,7,11,5,8,4,8,8,6,7,13,10,6,6,7,8,6,6,4,5,10,3,5,9,15,11,11,3,2,3,8]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics currently discussed in the crypto industry on social media accounts and communities include the excitement around meme coins, the potential for new meme coins to go viral and reach billion-dollar market caps, the anticipation for listing new meme tokens on trading platforms, and the speculation on which meme coins will be successful in the future. Additionally, there is a focus on identifying cult meme coins based on their ability to evoke strong emotions, become part of people's identities, inspire a global movement, and sustain attention over time. Some specific meme coins mentioned in the messages include $POPCAT, $MOG, $PEPE, $WIF, $MAGA, and $MEMEFI. Overall, the sentiment towards meme coins seems to be bullish, with excitement building around potential opportunities for traders and investors in the meme coin space.","data":[9,3,4,11,2,0,1,4,10,2,5,2,9,3,4,4,2,4,8,5,4,7,12,12,9,7,7,3,13,7,13,33,60,5,7,3,13,5,6,10,3,9,9,8,5,4,5,8,8,4,13,1,3,8,5]},{"label":"SOL","topics":"solana,sol,breakpoint,client,mainnet","description":"The key topics currently being discussed on Twitter in relation to the crypto industry include:\n- The potential of swapping Ethereum for Solana due to its perceived undervaluation\n- The emergence of Numéraire and Panda as new projects on Solana\n- The upcoming $SONIC and $SODA event and the potential investment opportunities\n- Solana's performance and development compared to other blockchains\n- The introduction of Metaplex Aura for decentralized data indexing and availability on Solana\n- The overall growth and potential of Solana as a high-performance blockchain for decentralized applications.","data":[7,6,3,12,2,1,3,17,3,2,5,6,2,17,2,15,5,5,9,12,5,6,6,4,7,6,5,8,5,3,5,13,6,8,9,3,5,3,12,6,6,8,11,6,26,8,9,10,7,9,3,7,4,1,5]},{"label":"Art","topics":"art,artists,artist,piece,digital","description":"The key topics currently being discussed in the crypto industry on social media include NFTs (besides art), digital art collecting, the intersection of art and technology, and the importance of preserving the context of digital art through blockchain technology. There is also a focus on unique art pieces inscribed on Bitcoin and the potential for growth in the NFT market. Additionally, there is mention of a new art market called \"The State of Digital Humanism\" available on Foundation. Overall, the conversation revolves around the evolving landscape of art in the digital age and the opportunities it presents for artists and collectors.","data":[6,3,54,6,0,0,2,0,8,4,8,5,3,9,4,4,3,3,10,9,3,5,6,4,6,5,7,7,4,11,20,7,3,4,5,15,17,5,4,6,5,2,6,2,8,2,5,5,11,5,3,5,4,4,8]},{"label":"ETF Flows","topics":"etfs,inflows,net,etf,spot","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Significant inflows and outflows in Bitcoin and Ethereum ETFs\n- Potential for new all-time highs in Bitcoin ETF cumulative flow\n- Bullish momentum building in the market\n- Growing interest and trust in Bitcoin ETFs, particularly from providers like BlackRock and Fidelity\n- Supply shock incoming in Bitcoin due to high ETF inflows\n- Net inflow of $397 million in Bitcoin spot ETF last week, with Fidelity and ARK 21Shares contributing the most\n- Net outflow of $26.26 million in Ethereum spot ETF\n- Crypto market seeing $321 million in inflows post-Fed rate cut\n- Bitcoin gaining while Ethereum struggles\n- Crypto no longer being associated with shady dealings, but with people wanting to change their lives\n\nOverall, the sentiment in the crypto industry seems positive, with potential for further upside in Bitcoin and cautious optimism in Ethereum. Investors are closely monitoring ETF flows and market trends to make informed decisions.","data":[2,1,3,1,21,5,3,8,11,0,1,1,6,7,7,3,30,8,3,5,1,1,6,1,5,10,4,2,7,3,7,3,3,8,5,2,1,3,0,3,6,1,15,1,6,52,7,1,2,9,0,8,0,4,9]},{"label":"DOGE","topics":"doge,dogecoin,breakout,channel,bullish","description":"The messages from Twitter about Dogecoin are overwhelmingly positive and bullish. There is excitement about potential price movements, with mentions of reaching new all-time highs and potential breakouts. Analysts are suggesting a potential rally on the horizon. The community is also discussing the resilience of Dogecoin and its chart structure, with some users expressing confidence in the coin's future performance. Overall, the sentiment around Dogecoin in these messages is optimistic and hopeful for continued growth.","data":[1,2,2,2,0,0,5,0,2,2,1,0,2,2,55,49,0,1,4,4,0,4,0,4,2,2,2,5,4,6,5,0,4,2,2,3,1,2,4,1,3,4,4,2,1,0,2,3,4,0,0,2,0,6,1]},{"label":"HMSTR","topics":"hmstr,hamster,airdrop,26,listing","description":"The key topics currently being discussed in the crypto industry on Twitter include the launch of the Hamster Kombat token for trading with a massive airdrop to 131 million user accounts. There is excitement surrounding the arrival of $HMSTR on ChangeNOW and Coinbase, as well as the listing of Hamster Kombat Perp Futures. Additionally, there are discussions about a fake TON mini-game scamming users and the upcoming Trade & Earn campaign with an 80M $HMSTR prize pool. The TON blockchain's capacity will be tested with over 100 million monthly users minting tokens. Other topics include the trading of Hamster Kombat on major exchanges, a new futures pair alert, and Binance locking 14 billion USDT for the Hamster Kombat airdrop. The traction of Hamster Kombat is revealed with over 300 million users joining since March 26, 2024, and 131 million qualifying for the airdrop. There are also updates on Rubic's integration with HoldstationW and upcoming integration with eywaprotocol, as well as promotions and lotteries involving $HMSTR.","data":[2,4,1,6,1,1,4,0,6,2,1,2,3,4,5,5,1,9,2,3,6,2,2,15,4,1,1,2,9,13,1,3,1,1,7,2,1,4,7,4,2,5,4,2,0,7,1,5,3,9,1,4,2,1,0]},{"label":"Gold","topics":"gold,record,high,stocks,inflation","description":"Based on the messages from Twitter, it is evident that there is a significant amount of discussion surrounding gold and Bitcoin in the crypto industry. Gold has been reaching new all-time highs, with experts predicting further increases in its value. The comparison between gold and Bitcoin as investment options is also a popular topic, with some suggesting that Bitcoin may be a better hedge against monetary policy changes. Overall, the sentiment towards gold remains positive, with many investors viewing it as a reliable asset during economic crises.","data":[0,1,0,2,11,5,0,3,1,2,3,7,3,3,0,1,0,1,0,3,0,56,13,1,1,0,4,1,2,1,4,7,2,1,4,0,3,4,2,2,4,1,1,3,7,3,1,2,0,0,2,5,1,2,2]},{"label":"SUI","topics":"sui,sei,tvl,surpasses,ecosystem","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include the performance of various cryptocurrencies such as $SUI, $BOSU, $BOME, $SOL, $Nelly, $SUPR, and $USDC. There is also mention of price movements, resistance levels, relative strength, ecosystem maturity, adoption growth, and upcoming events like IDOs. Additionally, collaborations, achievements, and potential exchange listings are being highlighted. Overall, the sentiment appears to be bullish on certain cryptocurrencies like $SUI and $SUPR, with a focus on their potential for growth and development within the crypto space.","data":[1,3,1,0,0,0,1,3,4,6,2,3,2,2,0,4,1,8,6,2,2,2,3,4,5,1,3,2,2,0,4,4,3,8,3,4,4,4,13,4,5,5,9,1,6,5,7,3,1,5,3,4,3,4,0]},{"label":"DeFi","topics":"defi,renaissance,finance,liquidity,yields","description":"The key topics currently discussed in the crypto industry on Twitter include DeFi (Decentralized Finance), integration of multiple components for growth, self-custodial crypto wallets, liquidity providers, Flare DeFi Emissions Program, and redefining DeFi lending. Other mentioned words include ALEX, STX swaps, NEOPIN EFI, Aura, and MorphoLabs. Overall, the discussions revolve around the advancements and opportunities in the DeFi space, as well as the innovative solutions being developed within the industry.","data":[0,2,0,9,2,0,1,1,1,2,1,0,5,2,12,3,1,5,4,5,4,2,2,3,1,3,3,5,5,4,1,2,4,8,5,2,3,1,4,3,9,4,1,1,1,3,0,2,7,1,6,4,2,2,7]},{"label":"CATI","topics":"cati,cat,deposit,airdrop,bitget","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. The Billion-Dollar Cat (CAT) on the rise\n2. New All-Time High for Cat-Themed AI Crypto Gaming Altcoin Catizen (CATI) following Binance listing\n3. Listing Alert for CATE on HTX\n4. Strong growth momentum for the $CATI token\n5. Gala Meow Coin launch with opportunities for earning $TREZ rewards\n6. Giveaway winner announcement for CATI/USDT token prediction\n7. CATIUSDT Trading Competition live with CatizenAI\n8. Bitget Insights Essay Contest on earning in the Catizen game ecosystem\n9. Mention of other cryptocurrencies like CATS, Bitcoin, Bnb, Sol, Eth\n10. Various hashtags and mentions related to the crypto industry and other topics\n\nOverall, the discussion on Twitter revolves around the growth, listings, competitions, and opportunities within the crypto industry, particularly focusing on cat-themed tokens and gaming projects.","data":[0,3,3,4,1,2,2,2,40,1,2,2,0,1,5,2,0,4,0,1,8,2,2,2,1,1,2,2,4,10,0,3,2,0,12,5,0,2,4,5,1,1,0,0,2,3,0,1,2,5,1,1,1,2,0]},{"label":"China","topics":"china,stimulus,chinese,liquidity,stocks","description":"The key topics currently being discussed on Twitter regarding China and the crypto industry include China's plans to set up a stock stabilization fund and inject liquidity into the stock market, China's central bank unveiling aggressive stimulus measures, China's potential impact on the cryptocurrency market, China's investment in stocks and the potential implications for crypto, China's escalating trade tensions with the US, and China's monetary policies affecting global markets. Overall, there is a focus on China's economic actions and how they may influence both traditional markets and the crypto industry.","data":[1,8,5,3,3,2,6,3,2,13,1,3,2,1,1,3,2,0,1,5,1,2,4,2,0,3,1,5,2,5,2,2,1,1,0,2,5,0,4,2,5,3,1,5,5,8,2,2,3,1,4,4,0,3,1]},{"label":"BTC Mining","topics":"mining,miners,miner,energy,grid","description":"The key topics currently discussed in the messages from twitter about the crypto industry include:\n1. Bitcoin mining operations and profitability\n2. Electricity consumption and environmental impact of Bitcoin mining\n3. Investment opportunities in Bitcoin mining\n4. Misinformation and misconceptions about Bitcoin and cryptocurrency\n5. Industry events and conferences related to Bitcoin mining\n6. Green energy solutions and innovations in the crypto industry\n7. Decentralization and security in Bitcoin mining\n8. Merged mining and its benefits for projects and miners\n\nOverall, the discussions on Twitter reflect a mix of technical, financial, environmental, and social aspects of the crypto industry, with a focus on Bitcoin mining and its implications.","data":[0,0,2,4,1,25,3,6,4,2,0,3,1,2,0,1,4,5,1,2,2,3,3,2,0,3,4,1,2,1,2,1,15,4,4,1,0,4,0,1,0,0,1,2,3,1,1,8,1,0,2,1,3,2,5]},{"label":"MicroStrategy has acquired 7,420 Bitcoins","topics":"microstrategy,mstr,acquired,billion,notes","description":"The key topic discussed in the messages from Twitter is MicroStrategy's continued acquisition of Bitcoin, with recent purchases totaling over $458 million. MicroStrategy now holds nearly $16 billion worth of Bitcoin, making it a major player in the crypto industry. Michael Saylor, the CEO of MicroStrategy, is praised for his strategic moves in accumulating Bitcoin and generating profits for the company. The community is excited about the potential for MicroStrategy to generate yield by lending its Bitcoin holdings. Overall, the news is seen as positive for the crypto community and highlights the growing importance of Bitcoin in the corporate world.","data":[9,0,1,2,1,2,12,1,1,0,0,5,1,1,1,1,2,4,1,2,2,1,1,0,3,4,2,3,1,1,1,0,38,3,3,4,1,1,2,6,2,0,3,3,0,4,1,0,1,2,0,3,0,1,1]},{"label":"CPI","topics":"recession,fed,rate,cut,cuts","description":"The key topics currently discussed in the crypto industry on social media include:\n- Federal Reserve's rate cuts and potential impact on the economy\n- Bitcoin buying spree following Fed rate cut\n- Predictions of recession and economic growth\n- Impact of interest rate cuts on global economy\n- Financial crime and its impact on GDP\n- European Central Bank's warning of global economic risks and potential recession\n\nThese topics are being widely discussed and analyzed by analysts and experts in the crypto industry on social media platforms like Twitter.","data":[2,3,0,1,0,0,4,0,3,4,0,1,5,4,2,9,1,0,4,1,2,1,2,3,0,1,7,1,2,2,0,3,0,0,1,2,4,4,1,23,12,2,5,1,3,0,0,1,2,1,2,0,2,6,5]},{"label":"ETH","topics":"eth,ethereum,level,levels,resistance","description":"The messages from Twitter indicate a positive sentiment towards Ethereum (ETH), with users excited about the price reaching $2,500 and potentially moving towards $3,000. There is also mention of key resistance levels being broken and a correction phase underway. However, concerns are raised about the Ethereum Foundation's recent asset sales, which have sparked questions among the community. Overall, the sentiment seems bullish on ETH's price movement, but caution is advised due to the ongoing correction phase and potential impact of the Foundation's asset sales.","data":[2,3,1,1,0,0,1,1,1,1,1,1,4,2,2,0,41,6,2,3,1,5,1,2,3,3,1,4,1,3,0,6,1,3,3,0,1,4,0,0,5,3,1,4,2,2,0,3,2,2,0,1,0,3,0]},{"label":"Kamala Harris","topics":"harris,kamala,technologies,kamalaharris,digital","description":"The key topics currently discussed in the messages from twitter about Kamala Harris and the crypto industry include:\n- Kamala Harris supporting blockchain technology and digital assets in her presidential bid\n- Kamala Harris receiving endorsements from the IRS Union and Anthony Scaramucci for her pro-crypto policies\n- Kamala Harris vowing to keep the US dominant in blockchain technology and other emerging technologies\n- Speculation about Kamala Harris' potential impact on the crypto industry if elected president\n- Kamala Harris shifting her stance on blockchain and advocating for US leadership in technology\n\nOverall, the messages indicate a growing interest and support for Kamala Harris within the crypto community due to her pro-crypto policies and emphasis on advancing technology in the US.","data":[3,1,2,1,0,0,2,3,1,1,2,2,3,1,0,3,2,4,5,2,2,0,1,0,1,2,2,0,6,0,2,0,3,2,1,4,0,13,10,3,6,2,11,0,3,3,5,2,0,0,2,2,11,0,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-38.ts b/priv/repo/major_topics_seed/data-38.ts deleted file mode 100644 index 72bff7626e..0000000000 --- a/priv/repo/major_topics_seed/data-38.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '19.09.24', - '20.09.24', - '20.09.24', - '20.09.24', - '20.09.24', - '20.09.24', - '20.09.24', - '20.09.24', - '21.09.24', - '21.09.24', - '21.09.24', - '21.09.24', - '21.09.24', - '21.09.24', - '21.09.24', - '21.09.24', - '22.09.24', - '22.09.24', - '22.09.24', - '22.09.24', - '22.09.24', - '22.09.24', - '22.09.24', - '22.09.24', - '23.09.24', - '23.09.24', - '23.09.24', - '23.09.24', - '23.09.24', - '23.09.24', - '23.09.24', - '23.09.24', - '24.09.24', - '24.09.24', - '24.09.24', - '24.09.24', - '24.09.24', - '24.09.24', - '24.09.24', - '24.09.24', - '25.09.24', - '25.09.24', - '25.09.24', - '25.09.24', - '25.09.24', - '25.09.24', - '25.09.24', - '25.09.24', - '26.09.24', - '26.09.24', - '26.09.24', - '26.09.24', - '26.09.24', - '26.09.24', - '26.09.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: '65k,btc,resistance,break,64k', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin's price reaching $65,000 and potentially heading towards $70,000.\n2. Analysis of Bitcoin's dominance chart ($BTC.D) indicating a breakout, retest, and rebound.\n3. Factors influencing Bitcoin's price, such as China stimulus and a speech by Fed Chair Jerome Powell.\n4. Speculation on Bitcoin's future price, with predictions ranging from $1 million to $200,000.\n5. Technical analysis indicators suggesting a potential extreme move in Bitcoin's price.\n6. Discussion on Bitcoin's hashrate and its correlation with price movements.\n7. Overall bullish sentiment towards Bitcoin despite challenging macroeconomic conditions.\n\nOverall, the sentiment on Twitter seems to be optimistic about Bitcoin's price potential and future trajectory.", - data: [ - 10, 9, 12, 22, 103, 120, 27, 76, 9, 10, 30, 10, 19, 31, 5, 22, 7, 14, 22, 10, 13, 16, 13, - 23, 43, 13, 10, 14, 16, 20, 24, 13, 11, 30, 4, 17, 12, 26, 24, 26, 20, 31, 7, 24, 14, 7, 25, - 7, 38, 13, 13, 21, 7, 35, 13, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,gamefi,web3', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and the excitement surrounding new games and platforms like $CREO, $MCRT, ERCCnft, Fluffy Town Lmeow, Dookey Dash, RavenQuest, and GameShift.\n- The increasing popularity of gaming coins and the potential for growth in the fall and winter seasons.\n- Revolutionary technology and tools being released for game developers, such as the GAIMIN Game Developer Portal.\n- Partnerships between companies like Solana Labs, Google Cloud, and GameShift to simplify blockchain integration for game developers.\n- Updates on crypto projects like Gold Eagle #Tap2Earn and Monster Tycoon Launch X Spaces.\n- Influencers and content creators like Bankii showcasing their love for gaming and crypto-related activities.\nOverall, the sentiment in the crypto community seems to be positive and optimistic about the future of Web3 gaming and the potential for growth in the industry.', - data: [ - 9, 6, 4, 11, 3, 0, 10, 6, 7, 9, 7, 5, 10, 4, 5, 9, 3, 8, 12, 8, 69, 12, 15, 11, 5, 8, 7, 8, - 17, 8, 11, 7, 10, 7, 4, 12, 5, 20, 10, 19, 7, 5, 2, 2, 4, 6, 9, 8, 7, 5, 5, 2, 14, 12, 8, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,money,world,fiat,realize', - description: - 'The key topics discussed in the messages from twitter are:\n1. Bitcoin basics and its importance in the financial world.\n2. The potential of Bitcoin to disrupt the traditional monetary system.\n3. The divisibility of Bitcoin and the importance of writing it as 1.0 bitcoin.\n4. The upcoming upgrades for Bitcoin Cash in May 2025.\n5. Discussions about adding a field to Bitcoin layer-1 transactions called "asset type" and its impact on fungibility.\n6. The comparison of Bitcoin to time travel and its potential impact on future generations.\n7. The skepticism and eventual acceptance of Bitcoin in society.\n8. The role of Bitcoin in creating economic incentives for war.\n9. The comparison of Bitcoin to a lifeboat that cannot be ignored.\n10. The involvement of prominent figures like Conor McGregor and Simon Dixon in promoting Bitcoin.', - data: [ - 6, 5, 3, 5, 49, 48, 4, 3, 9, 4, 3, 8, 4, 5, 7, 7, 4, 1, 13, 6, 5, 4, 10, 10, 3, 8, 7, 6, 7, - 8, 5, 8, 7, 8, 6, 8, 9, 7, 9, 6, 5, 5, 9, 7, 6, 9, 11, 5, 10, 2, 9, 5, 8, 12, 11, - ], - }, - { - label: 'AI', - topics: 'ai,data,models,tech,future', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- AI and its impact on enterprise data operations\n- Democratizing AI for the masses\n- AGI (Artificial General Intelligence) development\n- Governments using AI to scan the blockchain and catch cryptocriminals\n- Centralized nature of AI training and inference\n- AI humanoid robots and their potential proliferation\n- LayerAI Mainnet Growth Campaign\n- AI in crypto trading, security, and risk management\n- Opportunities for AI developers in creating trading agents\n- BasedAi as a potential investment opportunity in the AI space', - data: [ - 16, 59, 6, 5, 2, 0, 5, 4, 3, 6, 6, 11, 3, 9, 6, 4, 7, 8, 8, 5, 9, 10, 10, 8, 1, 7, 11, 5, 8, - 4, 8, 8, 6, 7, 13, 10, 6, 6, 7, 8, 6, 6, 4, 5, 10, 3, 5, 9, 15, 11, 11, 3, 2, 3, 8, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - "The key topics currently discussed in the crypto industry on social media accounts and communities include the excitement around meme coins, the potential for new meme coins to go viral and reach billion-dollar market caps, the anticipation for listing new meme tokens on trading platforms, and the speculation on which meme coins will be successful in the future. Additionally, there is a focus on identifying cult meme coins based on their ability to evoke strong emotions, become part of people's identities, inspire a global movement, and sustain attention over time. Some specific meme coins mentioned in the messages include $POPCAT, $MOG, $PEPE, $WIF, $MAGA, and $MEMEFI. Overall, the sentiment towards meme coins seems to be bullish, with excitement building around potential opportunities for traders and investors in the meme coin space.", - data: [ - 9, 3, 4, 11, 2, 0, 1, 4, 10, 2, 5, 2, 9, 3, 4, 4, 2, 4, 8, 5, 4, 7, 12, 12, 9, 7, 7, 3, 13, - 7, 13, 33, 60, 5, 7, 3, 13, 5, 6, 10, 3, 9, 9, 8, 5, 4, 5, 8, 8, 4, 13, 1, 3, 8, 5, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,breakpoint,client,mainnet', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry include:\n- The potential of swapping Ethereum for Solana due to its perceived undervaluation\n- The emergence of Numéraire and Panda as new projects on Solana\n- The upcoming $SONIC and $SODA event and the potential investment opportunities\n- Solana's performance and development compared to other blockchains\n- The introduction of Metaplex Aura for decentralized data indexing and availability on Solana\n- The overall growth and potential of Solana as a high-performance blockchain for decentralized applications.", - data: [ - 7, 6, 3, 12, 2, 1, 3, 17, 3, 2, 5, 6, 2, 17, 2, 15, 5, 5, 9, 12, 5, 6, 6, 4, 7, 6, 5, 8, 5, - 3, 5, 13, 6, 8, 9, 3, 5, 3, 12, 6, 6, 8, 11, 6, 26, 8, 9, 10, 7, 9, 3, 7, 4, 1, 5, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,digital', - description: - 'The key topics currently being discussed in the crypto industry on social media include NFTs (besides art), digital art collecting, the intersection of art and technology, and the importance of preserving the context of digital art through blockchain technology. There is also a focus on unique art pieces inscribed on Bitcoin and the potential for growth in the NFT market. Additionally, there is mention of a new art market called "The State of Digital Humanism" available on Foundation. Overall, the conversation revolves around the evolving landscape of art in the digital age and the opportunities it presents for artists and collectors.', - data: [ - 6, 3, 54, 6, 0, 0, 2, 0, 8, 4, 8, 5, 3, 9, 4, 4, 3, 3, 10, 9, 3, 5, 6, 4, 6, 5, 7, 7, 4, 11, - 20, 7, 3, 4, 5, 15, 17, 5, 4, 6, 5, 2, 6, 2, 8, 2, 5, 5, 11, 5, 3, 5, 4, 4, 8, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,net,etf,spot', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Significant inflows and outflows in Bitcoin and Ethereum ETFs\n- Potential for new all-time highs in Bitcoin ETF cumulative flow\n- Bullish momentum building in the market\n- Growing interest and trust in Bitcoin ETFs, particularly from providers like BlackRock and Fidelity\n- Supply shock incoming in Bitcoin due to high ETF inflows\n- Net inflow of $397 million in Bitcoin spot ETF last week, with Fidelity and ARK 21Shares contributing the most\n- Net outflow of $26.26 million in Ethereum spot ETF\n- Crypto market seeing $321 million in inflows post-Fed rate cut\n- Bitcoin gaining while Ethereum struggles\n- Crypto no longer being associated with shady dealings, but with people wanting to change their lives\n\nOverall, the sentiment in the crypto industry seems positive, with potential for further upside in Bitcoin and cautious optimism in Ethereum. Investors are closely monitoring ETF flows and market trends to make informed decisions.', - data: [ - 2, 1, 3, 1, 21, 5, 3, 8, 11, 0, 1, 1, 6, 7, 7, 3, 30, 8, 3, 5, 1, 1, 6, 1, 5, 10, 4, 2, 7, - 3, 7, 3, 3, 8, 5, 2, 1, 3, 0, 3, 6, 1, 15, 1, 6, 52, 7, 1, 2, 9, 0, 8, 0, 4, 9, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,breakout,channel,bullish', - description: - "The messages from Twitter about Dogecoin are overwhelmingly positive and bullish. There is excitement about potential price movements, with mentions of reaching new all-time highs and potential breakouts. Analysts are suggesting a potential rally on the horizon. The community is also discussing the resilience of Dogecoin and its chart structure, with some users expressing confidence in the coin's future performance. Overall, the sentiment around Dogecoin in these messages is optimistic and hopeful for continued growth.", - data: [ - 1, 2, 2, 2, 0, 0, 5, 0, 2, 2, 1, 0, 2, 2, 55, 49, 0, 1, 4, 4, 0, 4, 0, 4, 2, 2, 2, 5, 4, 6, - 5, 0, 4, 2, 2, 3, 1, 2, 4, 1, 3, 4, 4, 2, 1, 0, 2, 3, 4, 0, 0, 2, 0, 6, 1, - ], - }, - { - label: 'HMSTR', - topics: 'hmstr,hamster,airdrop,26,listing', - description: - "The key topics currently being discussed in the crypto industry on Twitter include the launch of the Hamster Kombat token for trading with a massive airdrop to 131 million user accounts. There is excitement surrounding the arrival of $HMSTR on ChangeNOW and Coinbase, as well as the listing of Hamster Kombat Perp Futures. Additionally, there are discussions about a fake TON mini-game scamming users and the upcoming Trade & Earn campaign with an 80M $HMSTR prize pool. The TON blockchain's capacity will be tested with over 100 million monthly users minting tokens. Other topics include the trading of Hamster Kombat on major exchanges, a new futures pair alert, and Binance locking 14 billion USDT for the Hamster Kombat airdrop. The traction of Hamster Kombat is revealed with over 300 million users joining since March 26, 2024, and 131 million qualifying for the airdrop. There are also updates on Rubic's integration with HoldstationW and upcoming integration with eywaprotocol, as well as promotions and lotteries involving $HMSTR.", - data: [ - 2, 4, 1, 6, 1, 1, 4, 0, 6, 2, 1, 2, 3, 4, 5, 5, 1, 9, 2, 3, 6, 2, 2, 15, 4, 1, 1, 2, 9, 13, - 1, 3, 1, 1, 7, 2, 1, 4, 7, 4, 2, 5, 4, 2, 0, 7, 1, 5, 3, 9, 1, 4, 2, 1, 0, - ], - }, - { - label: 'Gold', - topics: 'gold,record,high,stocks,inflation', - description: - 'Based on the messages from Twitter, it is evident that there is a significant amount of discussion surrounding gold and Bitcoin in the crypto industry. Gold has been reaching new all-time highs, with experts predicting further increases in its value. The comparison between gold and Bitcoin as investment options is also a popular topic, with some suggesting that Bitcoin may be a better hedge against monetary policy changes. Overall, the sentiment towards gold remains positive, with many investors viewing it as a reliable asset during economic crises.', - data: [ - 0, 1, 0, 2, 11, 5, 0, 3, 1, 2, 3, 7, 3, 3, 0, 1, 0, 1, 0, 3, 0, 56, 13, 1, 1, 0, 4, 1, 2, 1, - 4, 7, 2, 1, 4, 0, 3, 4, 2, 2, 4, 1, 1, 3, 7, 3, 1, 2, 0, 0, 2, 5, 1, 2, 2, - ], - }, - { - label: 'SUI', - topics: 'sui,sei,tvl,surpasses,ecosystem', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include the performance of various cryptocurrencies such as $SUI, $BOSU, $BOME, $SOL, $Nelly, $SUPR, and $USDC. There is also mention of price movements, resistance levels, relative strength, ecosystem maturity, adoption growth, and upcoming events like IDOs. Additionally, collaborations, achievements, and potential exchange listings are being highlighted. Overall, the sentiment appears to be bullish on certain cryptocurrencies like $SUI and $SUPR, with a focus on their potential for growth and development within the crypto space.', - data: [ - 1, 3, 1, 0, 0, 0, 1, 3, 4, 6, 2, 3, 2, 2, 0, 4, 1, 8, 6, 2, 2, 2, 3, 4, 5, 1, 3, 2, 2, 0, 4, - 4, 3, 8, 3, 4, 4, 4, 13, 4, 5, 5, 9, 1, 6, 5, 7, 3, 1, 5, 3, 4, 3, 4, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,renaissance,finance,liquidity,yields', - description: - 'The key topics currently discussed in the crypto industry on Twitter include DeFi (Decentralized Finance), integration of multiple components for growth, self-custodial crypto wallets, liquidity providers, Flare DeFi Emissions Program, and redefining DeFi lending. Other mentioned words include ALEX, STX swaps, NEOPIN EFI, Aura, and MorphoLabs. Overall, the discussions revolve around the advancements and opportunities in the DeFi space, as well as the innovative solutions being developed within the industry.', - data: [ - 0, 2, 0, 9, 2, 0, 1, 1, 1, 2, 1, 0, 5, 2, 12, 3, 1, 5, 4, 5, 4, 2, 2, 3, 1, 3, 3, 5, 5, 4, - 1, 2, 4, 8, 5, 2, 3, 1, 4, 3, 9, 4, 1, 1, 1, 3, 0, 2, 7, 1, 6, 4, 2, 2, 7, - ], - }, - { - label: 'CATI', - topics: 'cati,cat,deposit,airdrop,bitget', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. The Billion-Dollar Cat (CAT) on the rise\n2. New All-Time High for Cat-Themed AI Crypto Gaming Altcoin Catizen (CATI) following Binance listing\n3. Listing Alert for CATE on HTX\n4. Strong growth momentum for the $CATI token\n5. Gala Meow Coin launch with opportunities for earning $TREZ rewards\n6. Giveaway winner announcement for CATI/USDT token prediction\n7. CATIUSDT Trading Competition live with CatizenAI\n8. Bitget Insights Essay Contest on earning in the Catizen game ecosystem\n9. Mention of other cryptocurrencies like CATS, Bitcoin, Bnb, Sol, Eth\n10. Various hashtags and mentions related to the crypto industry and other topics\n\nOverall, the discussion on Twitter revolves around the growth, listings, competitions, and opportunities within the crypto industry, particularly focusing on cat-themed tokens and gaming projects.', - data: [ - 0, 3, 3, 4, 1, 2, 2, 2, 40, 1, 2, 2, 0, 1, 5, 2, 0, 4, 0, 1, 8, 2, 2, 2, 1, 1, 2, 2, 4, 10, - 0, 3, 2, 0, 12, 5, 0, 2, 4, 5, 1, 1, 0, 0, 2, 3, 0, 1, 2, 5, 1, 1, 1, 2, 0, - ], - }, - { - label: 'China', - topics: 'china,stimulus,chinese,liquidity,stocks', - description: - "The key topics currently being discussed on Twitter regarding China and the crypto industry include China's plans to set up a stock stabilization fund and inject liquidity into the stock market, China's central bank unveiling aggressive stimulus measures, China's potential impact on the cryptocurrency market, China's investment in stocks and the potential implications for crypto, China's escalating trade tensions with the US, and China's monetary policies affecting global markets. Overall, there is a focus on China's economic actions and how they may influence both traditional markets and the crypto industry.", - data: [ - 1, 8, 5, 3, 3, 2, 6, 3, 2, 13, 1, 3, 2, 1, 1, 3, 2, 0, 1, 5, 1, 2, 4, 2, 0, 3, 1, 5, 2, 5, - 2, 2, 1, 1, 0, 2, 5, 0, 4, 2, 5, 3, 1, 5, 5, 8, 2, 2, 3, 1, 4, 4, 0, 3, 1, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,energy,grid', - description: - 'The key topics currently discussed in the messages from twitter about the crypto industry include:\n1. Bitcoin mining operations and profitability\n2. Electricity consumption and environmental impact of Bitcoin mining\n3. Investment opportunities in Bitcoin mining\n4. Misinformation and misconceptions about Bitcoin and cryptocurrency\n5. Industry events and conferences related to Bitcoin mining\n6. Green energy solutions and innovations in the crypto industry\n7. Decentralization and security in Bitcoin mining\n8. Merged mining and its benefits for projects and miners\n\nOverall, the discussions on Twitter reflect a mix of technical, financial, environmental, and social aspects of the crypto industry, with a focus on Bitcoin mining and its implications.', - data: [ - 0, 0, 2, 4, 1, 25, 3, 6, 4, 2, 0, 3, 1, 2, 0, 1, 4, 5, 1, 2, 2, 3, 3, 2, 0, 3, 4, 1, 2, 1, - 2, 1, 15, 4, 4, 1, 0, 4, 0, 1, 0, 0, 1, 2, 3, 1, 1, 8, 1, 0, 2, 1, 3, 2, 5, - ], - }, - { - label: 'MicroStrategy has acquired 7,420 Bitcoins', - topics: 'microstrategy,mstr,acquired,billion,notes', - description: - "The key topic discussed in the messages from Twitter is MicroStrategy's continued acquisition of Bitcoin, with recent purchases totaling over $458 million. MicroStrategy now holds nearly $16 billion worth of Bitcoin, making it a major player in the crypto industry. Michael Saylor, the CEO of MicroStrategy, is praised for his strategic moves in accumulating Bitcoin and generating profits for the company. The community is excited about the potential for MicroStrategy to generate yield by lending its Bitcoin holdings. Overall, the news is seen as positive for the crypto community and highlights the growing importance of Bitcoin in the corporate world.", - data: [ - 9, 0, 1, 2, 1, 2, 12, 1, 1, 0, 0, 5, 1, 1, 1, 1, 2, 4, 1, 2, 2, 1, 1, 0, 3, 4, 2, 3, 1, 1, - 1, 0, 38, 3, 3, 4, 1, 1, 2, 6, 2, 0, 3, 3, 0, 4, 1, 0, 1, 2, 0, 3, 0, 1, 1, - ], - }, - { - label: 'CPI', - topics: 'recession,fed,rate,cut,cuts', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Federal Reserve's rate cuts and potential impact on the economy\n- Bitcoin buying spree following Fed rate cut\n- Predictions of recession and economic growth\n- Impact of interest rate cuts on global economy\n- Financial crime and its impact on GDP\n- European Central Bank's warning of global economic risks and potential recession\n\nThese topics are being widely discussed and analyzed by analysts and experts in the crypto industry on social media platforms like Twitter.", - data: [ - 2, 3, 0, 1, 0, 0, 4, 0, 3, 4, 0, 1, 5, 4, 2, 9, 1, 0, 4, 1, 2, 1, 2, 3, 0, 1, 7, 1, 2, 2, 0, - 3, 0, 0, 1, 2, 4, 4, 1, 23, 12, 2, 5, 1, 3, 0, 0, 1, 2, 1, 2, 0, 2, 6, 5, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,level,levels,resistance', - description: - "The messages from Twitter indicate a positive sentiment towards Ethereum (ETH), with users excited about the price reaching $2,500 and potentially moving towards $3,000. There is also mention of key resistance levels being broken and a correction phase underway. However, concerns are raised about the Ethereum Foundation's recent asset sales, which have sparked questions among the community. Overall, the sentiment seems bullish on ETH's price movement, but caution is advised due to the ongoing correction phase and potential impact of the Foundation's asset sales.", - data: [ - 2, 3, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 4, 2, 2, 0, 41, 6, 2, 3, 1, 5, 1, 2, 3, 3, 1, 4, 1, 3, - 0, 6, 1, 3, 3, 0, 1, 4, 0, 0, 5, 3, 1, 4, 2, 2, 0, 3, 2, 2, 0, 1, 0, 3, 0, - ], - }, - { - label: 'Kamala Harris', - topics: 'harris,kamala,technologies,kamalaharris,digital', - description: - "The key topics currently discussed in the messages from twitter about Kamala Harris and the crypto industry include:\n- Kamala Harris supporting blockchain technology and digital assets in her presidential bid\n- Kamala Harris receiving endorsements from the IRS Union and Anthony Scaramucci for her pro-crypto policies\n- Kamala Harris vowing to keep the US dominant in blockchain technology and other emerging technologies\n- Speculation about Kamala Harris' potential impact on the crypto industry if elected president\n- Kamala Harris shifting her stance on blockchain and advocating for US leadership in technology\n\nOverall, the messages indicate a growing interest and support for Kamala Harris within the crypto community due to her pro-crypto policies and emphasis on advancing technology in the US.", - data: [ - 3, 1, 2, 1, 0, 0, 2, 3, 1, 1, 2, 2, 3, 1, 0, 3, 2, 4, 5, 2, 2, 0, 1, 0, 1, 2, 2, 0, 6, 0, 2, - 0, 3, 2, 1, 4, 0, 13, 10, 3, 6, 2, 11, 0, 3, 3, 5, 2, 0, 0, 2, 2, 11, 0, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-39.json b/priv/repo/major_topics_seed/data-39.json deleted file mode 100644 index c62be74285..0000000000 --- a/priv/repo/major_topics_seed/data-39.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["26.09.24","27.09.24","27.09.24","27.09.24","27.09.24","27.09.24","27.09.24","27.09.24","28.09.24","28.09.24","28.09.24","28.09.24","28.09.24","28.09.24","28.09.24","28.09.24","29.09.24","29.09.24","29.09.24","29.09.24","29.09.24","29.09.24","29.09.24","29.09.24","30.09.24","30.09.24","30.09.24","30.09.24","30.09.24","30.09.24","30.09.24","30.09.24","01.10.24","01.10.24","01.10.24","01.10.24","01.10.24","01.10.24","01.10.24","01.10.24","02.10.24","02.10.24","02.10.24","02.10.24","02.10.24","02.10.24","02.10.24","02.10.24","03.10.24","03.10.24","03.10.24","03.10.24","03.10.24","03.10.24","03.10.24"],"datasets":[{"label":"BTC Price","topics":"btc,level,resistance,higher,65k","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements and potential for reaching six figures\n- Analysis of BTC short positions and volatility\n- Speculation on BTC price levels and potential for a bounce\n- Elliott wave analysis and trading strategies\n- Plunge protection in the $59k - $60k range\n- Bitcoin crossing $65,000 and potential for reaching $70,000\n- Support levels and potential for a lower resolution\n- Market sentiment and demand at key price levels\n- Economic optimism driving BTC price surge\n- Predictions of a potential dip below $60,000\n- Speculation on Bitcoin price correction and bounce back\n- Analysis of Bitcoin price movements in relation to US economic data\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, market sentiment, and economic factors influencing the price of Bitcoin in the crypto industry.","data":[15,9,9,15,88,85,31,51,12,11,15,26,10,21,4,10,7,8,12,15,2,6,5,8,44,12,9,17,12,20,26,6,5,8,10,5,11,17,11,16,27,8,6,15,8,11,21,16,13,10,2,15,9,27,6]},{"label":"AI","topics":"ai,openai,models,model,google","description":"Based on the messages from Twitter, the key topics currently discussed in the crypto industry include:\n1. AI-Blockchain integration and its impact on new use cases\n2. Law x AI as the next big tech subsector\n3. TAO's 24-hour jump pushing it ahead of ICP in the AI coin market\n4. New AI becoming a top 15 most popular crypto\n5. The use of AI in trading bot systems for consistent profits in 2024\n6. The transformation of luxury retail with AI-powered concierges like Agentforce at Saks\n\nOverall, the discussions revolve around the increasing role of AI in various aspects of the crypto industry, from trading to customer interactions in retail.","data":[28,67,12,4,0,0,10,10,6,8,15,11,4,11,6,3,3,8,14,8,17,14,7,11,8,13,23,9,25,8,18,6,9,20,11,22,14,7,10,22,12,10,6,10,11,9,8,13,12,11,4,6,14,9,11]},{"label":"ETF Flows","topics":"etfs,inflows,blackrock,etf,net","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. BlackRock's increasing Bitcoin holdings, reaching nearly $24 billion after recent acquisitions.\n2. Significant trading volume for Bitcoin ETFs, with IBIT hitting $1 billion.\n3. Growing global adoption of Bitcoin, with countries and governments holding a portion of the total supply.\n4. BlackRock quietly backing a new U.S. dollar rival amid the Bitcoin and crypto price boom.\n5. Inflows of $1.2 billion into digital assets this week, driven by expectations of a dovish U.S. Federal Reserve.\n6. Leveraged MicroStrategy ETFs providing exposure to Bitcoin and attracting investors.\n7. Speculation on whether BlackRock or Asia will spark the next bull run in the crypto market.\n8. The success of U.S. Bitcoin ETFs, including BlackRock's IBIT, attracting $17.7 billion since January 11, 2024.\n9. Flow Foundation's success at the recent ETHGlobal Singapore hackathon, with high demand for projects built on Flow.\n10. Inflows of $1.11 billion into Bitcoin spot ETFs, with BlackRock's IBIT and 21Shares ARKB attracting significant amounts.","data":[11,1,7,6,33,7,31,10,16,3,6,2,7,7,8,7,48,12,3,10,1,6,9,9,15,16,5,2,10,2,5,2,4,16,11,5,4,1,10,9,7,1,18,1,71,5,8,1,5,10,2,6,1,2,10]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include meme coins like #WIF, #BONK, #FLOKI, and their potential for double-digit gains. Other topics of interest are meme culture, launchpads, meme utility, and the potential for making money through meme coins. There is also discussion about specific meme coins on the BNB chain like $PEPE, $BABYDOGE, $CAT, $WHY, and $MCOIN. Additionally, there is interest in understanding the socio-economic and psychological factors behind meme coins, as well as the concept of meme supercycles. Some users are warning about potential risks, such as 'Boomer Lag' and the importance of staying updated on the latest trends in the meme coin market. Overall, there is a mix of excitement, speculation, and caution surrounding meme coins in the crypto industry.","data":[4,7,6,7,1,2,5,3,20,8,6,5,1,2,13,9,4,2,16,4,7,9,9,10,7,6,5,4,8,7,11,74,40,7,7,5,14,5,6,8,5,8,10,5,7,5,6,8,9,6,10,4,8,9,5]},{"label":"Uptober","topics":"uptober,september,month,october,historically","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin wrapping up September with a +9.64% gain, marking it as the best September ever in terms of percentage price increase.\n- Speculation about whether October will see explosive growth following a bullish September for Bitcoin.\n- Predictions and discussions about a potential Bull Run in 2024, with the possibility of reaching a new All Time High.\n- Analysis of historical trends related to Bitcoin halving events and their impact on price movements.\n- Mention of key factors to watch for in the crypto market, such as CZ being free, anticipated rate cuts, FTX repayments, and the upcoming election year.\n- Comparison of Bitcoin's performance in September 2024 to previous years, highlighting achievements such as the highest absolute closing price and percentage price increase.\n- Reference to an advanced AI model predicting Bitcoin's performance in 'Uptober' 2024.\n- Debate about whether Bitcoin's price in October 2024 is the same as it was in October 2021, with implications for portfolio performance.\n- Discussion about the potential impact of Bitcoin ETF options on price movements.\n- Mention of a potential pullback opportunity in the market following the biggest September ever for Bitcoin.","data":[6,4,8,9,33,12,2,16,1,3,15,5,4,9,8,6,5,12,8,10,7,9,7,7,22,4,3,2,10,5,6,2,5,7,13,7,3,9,7,8,18,5,7,8,2,15,12,2,6,3,6,18,5,6,2]},{"label":"DOGE","topics":"doge,dogecoin,dog,ordinals,addresses","description":"The key topics currently being discussed in the crypto industry on Twitter include Dogecoin (DOGE) showing momentum, comparisons between DOGE and other cryptocurrencies like RCO Finance (RCOF), potential price surges for DOGE, the rise of Dogecoin and Billy Markus's journey, predictions for DOGE reaching $10, and airdrops and potential gains for Dogewhale tokens. There is also discussion about the organic nature of DOGE compared to Bitcoin, technical analysis on DOGE price movements, and the potential for significant gains in the crypto market. Overall, the sentiment seems positive towards DOGE and its future potential.","data":[7,5,5,9,2,3,2,4,4,2,6,3,8,4,53,86,0,5,6,3,2,3,4,6,3,2,5,9,7,10,6,5,2,4,3,7,4,5,7,7,6,6,5,3,2,2,3,7,10,1,5,8,5,4,3]},{"label":"Art","topics":"art,artist,artists,collectors,piece","description":"The key topics discussed in the messages from twitter are:\n1. Art documentaries\n2. Making art collections\n3. Pricing of art pieces\n4. Minting photography on Shape_L2\n5. Nathan Abauman's art\n6. Creative expression in various forms of art\n7. NFTs and artist managers\n8. Art as an investment\n9. Balancing creative vision with professional aspects\n10. Claude Monet's income compared to modern painters\n11. Photography's impact on the art market\n12. Paint on Pixel collection\n13. Mass Artdoption initiative\n\nOverall, the messages reflect a deep appreciation for art, creativity, and the evolving landscape of the art industry, including the intersection of traditional and digital mediums.","data":[7,7,53,5,0,2,4,1,4,4,12,9,1,1,10,10,5,1,6,5,7,7,3,6,0,5,2,1,6,4,10,0,4,7,8,14,6,4,6,5,3,1,5,8,6,2,7,8,10,1,5,1,6,2,10]},{"label":"CZ","topics":"cz,released,founder,binance,release","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. CZ's potential memecoin launch after his release from jail, which is expected to have a significant impact on the market.\n2. Speculation about Bitcoin breaking $67,000 by the weekend.\n3. A UK man pleading guilty to illegally operating a crypto ATM network, marking the first UK conviction of its kind.\n4. CZ potentially being released from jail earlier than the official date due to local laws.\n5. Opinions on CZ's release from prison, with some criticizing the plea deal given to him by the DOJ.\n6. Discussion about the implications of CZ's release on Binance, BNB, and the overall crypto market.\n7. Collaboration between Libra and Lady Popular for a Zodiac NFT Collection.\n8. Binance's continued success under new leadership despite CZ's limited operations.\nOverall, the crypto community is closely following CZ's situation, regulatory developments, market trends, and collaborations within the industry.","data":[5,2,0,6,0,2,20,4,5,3,3,2,6,28,4,2,0,7,3,36,5,2,5,2,3,1,6,6,5,4,4,2,4,4,1,6,5,9,2,1,20,4,6,5,2,1,1,0,0,3,6,0,2,3,6]},{"label":"SOL","topics":"solana,sol,centralized,ethereum,ftm","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana (SOL) and its potential for growth compared to Ethereum\n- Solana ecosystem and its current performance\n- Potential bull runs for Solana, RexasFinance (RXS), and Dogecoin (DOGE)\n- Expansion plans for Sovryn x B² into the Chinese market\n- Comparison between Solana and Polkadot in terms of daily inflation and tech stack\n- Daily unlocks and emissions for SOL investors\n- Speculation on the future market cap of Solana compared to Ethereum\n- Analysis of the chart patterns for Solana and potential price movements\n\nOverall, the sentiment towards Solana appears to be positive, with many users discussing its potential for growth and comparing it to other cryptocurrencies in the market.","data":[3,3,2,0,0,0,3,11,11,5,10,4,2,6,5,5,2,6,13,8,3,2,6,5,2,2,1,4,8,1,2,3,0,7,4,3,1,13,9,4,3,8,7,1,20,6,6,3,2,6,4,3,3,5,3]},{"label":"CPI","topics":"inflation,fed,rate,cut,rates","description":"Based on the messages from twitter, key topics currently discussed in the crypto industry include:\n- U.S. jobs report and its potential impact on the Federal Reserve's next moves\n- Euro area annual inflation decreasing to 1.8%\n- British pound stabilizing after dropping due to Middle East escalation\n- Euro zone inflation falling below 2%, strengthening the case for a rate cut\n- Polish central bank keeping rates unchanged due to high inflation\n- Jerome Powell stating that the central bank will lower interest rates over time\n- Personal consumption expenditures price index rising by 0.1% for the month\n- Debate on whether the ECB's dovish stance will put downward pressure on the euro\n- The importance of long-term interest rates and where r-star lies\n- BlackRock CEO Larry Fink's opinion on the market pricing too many Fed rate cuts\n- Unemployment numbers and their potential impact on the market\n- Real-time inflation tracker showing a 6-month rate of 3.1% and potential second wave of problems next year.","data":[3,3,3,9,0,0,1,3,4,3,0,6,4,6,0,7,4,2,6,3,1,5,4,7,3,21,6,4,2,0,1,27,4,1,4,3,9,4,1,7,8,9,3,2,4,5,1,1,3,4,2,0,0,3,6]},{"label":"BTC","topics":"bitcoin,human,easy,fight,fixes","description":"The key topics currently being discussed in the crypto industry on social media include #Bitcoin, options trading, bearish vision, decentralized and secure chain, magic internet money, numerology, stacking bitcoin creatively, and the potential for Bitcoin to 100X. There is also mention of specific individuals such as Jeff Booth, Alex Fulton, Dylan LeClair, and MMCrypto. Overall, the sentiment seems positive towards Bitcoin and its potential for growth and innovation.","data":[2,2,5,2,21,29,1,2,3,2,4,4,2,3,0,2,2,1,5,9,2,3,6,4,4,4,1,3,5,5,7,3,0,5,2,2,1,3,2,0,1,4,1,3,5,1,5,2,6,3,2,0,1,1,1]},{"label":"EIGEN","topics":"eigen,restaking,justin,listing,trading","description":"The key topic discussed in the messages from twitter is EigenLayer, specifically related to the Eigen token, staking, market valuation, liquidity mining, partnerships with other projects like ARPA Network, airdrops, listings on major exchanges, and restaking options. There is also mention of Justin Sun's team withdrawing USDT from Binance after selling Eigen airdrops. The community seems excited about EigenLayer's developments and opportunities for token holders.","data":[5,1,5,2,1,2,5,2,0,1,4,1,0,1,0,0,62,8,4,2,2,0,2,1,2,3,5,4,1,4,1,0,1,1,14,4,3,1,1,5,3,0,5,1,0,2,0,4,0,5,0,2,3,2,0]},{"label":"China","topics":"china,chinese,stimulus,chinas,stock","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Speculation about Satoshi Nakamoto being a Chinese intelligence operation.\n2. Reports of Chinese stimulus measures driving a market rally, including Caterpillar shares rising to a record high.\n3. Surge in stocks of Chinese chip maker Cambricon Technologies Corp.\n4. Impact of China's NBS Manufacturing PMI rising to 49.8 in September.\n5. Potential generational recovery in Chinese stocks.\n6. Former Chinese finance minister urging crypto study after US Bitcoin ETF shift.\n7. Former Chinese Vice Minister of Finance calling for enhanced cryptocurrency research.\n8. Market reactions to Chinese authorities' recent measures seen as a \"downpayment\" for a larger stimulus policy effort.\n9. Surge in Chinese stocks and Michael Burry's successful bet on Chinese stocks.\n10. Speculation about China opening up Bitcoin and Ethereum ETF trading to its citizens.\n11. Degenerate economy and speculators' activity.\n12. Brokerages in China offering 24/7 services to meet demand as new individual investors rush to open trading accounts after Chinese stock market rally.","data":[2,0,2,4,1,2,6,1,6,23,1,4,3,0,2,5,0,0,5,3,1,3,5,2,3,2,3,4,1,4,5,8,4,3,0,1,5,2,3,2,3,1,4,4,2,5,1,5,2,0,6,1,3,7,5]},{"label":"GameFi","topics":"gaming,games,game,web3,gamefi","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Web3 gaming and the concept of players owning in-game assets onchain.\n2. Launches of new gaming blockchain platforms such as League of Kingdoms Arena-Z L2.\n3. The importance of choosing a high-performance network like Starknet for onchain games.\n4. Exciting announcements from companies like Lamborghini, Animoca Brands, and Motoverse in the racing game ecosystem.\n5. Speculation on the future of Web3 gaming and its potential impact on the industry.\n6. The broken nature of the gaming industry, with many games not being profitable and new IPs often failing.\n7. Calls for support and votes for various web3 games like AlterVerse and RuniverseGame in gaming awards.\n8. The surge in GameFi tokens and the success of tokens like MYTH from Mythical Games.\n9. Insights from a PhD in Astrophysics on the realism and multiplayer aspects of the @influenceth game.\nOverall, the discussions revolve around the potential of Web3 gaming, the challenges in the gaming industry, and the excitement surrounding new blockchain platforms and tokens.","data":[1,4,1,1,0,0,5,3,2,2,2,2,4,1,3,1,0,7,7,2,28,2,4,1,4,6,5,1,4,3,4,1,0,2,2,7,5,2,4,1,1,0,3,2,2,2,1,1,3,1,5,1,2,9,3]},{"label":"SEC appeals Ripple case ruling","topics":"sec,ripple,appeal,xrp,case","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. The US SEC filing a notice of appeal in the Ripple lawsuit\n2. Ripple's response to the SEC's appeal\n3. Legal experts weighing in on the SEC's appeal in the XRP ruling\n4. Speculation on the future of Ripple Labs after the SEC's appeal\n5. The timing and implications of the SEC's appeal in the Ripple case\n6. Analysis of the SEC's actions and allegations against Ripple\n7. Concerns about the SEC's enforcement director quitting\n8. Debate over whether the selling of XRP should be covered by securities laws\n9. Ripple's potential penalties and allegations of defrauding investors\n10. Calls for regulatory clarity and transparency in the crypto industry.","data":[1,20,9,2,0,1,9,0,6,4,3,1,0,2,3,1,1,3,13,3,2,1,0,1,2,3,1,1,8,0,2,0,2,3,4,1,0,2,1,1,1,11,2,3,2,1,6,0,2,0,2,0,4,1,3]},{"label":"DeFi","topics":"defi,protocols,decentralized,trading,experience","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. DeFi (Decentralized Finance): There is a discussion about the complexity of DeFi and how it may push more people towards traditional finance options like ETFs and TradFi custody. Additionally, there is mention of a DeFi protocol adoption strategy called Silverback and a letter from DeFi leaders to VP Kamala Harris' campaign team to discuss policy.\n2. Bitcoin in DeFi: 1% of Bitcoin's supply is now locked in DeFi, driven by the demand for Bitcoin yield and the introduction of Coinbase's new Bitcoin-pegged token, $cbBTC.\n3. Bluefin: A platform for trading in DeFi markets with advanced trading strategies and rewards, accessible to traders globally.\n4. OMO (Omnichain): A platform connecting every decentralized exchange (Dex) on every chain it supports for easy swapping across DeFi ecosystems.\n5. Ethereum (ETH) Layer-2 Blockchain: Ethereum and other altcoins are on the rise after being listed on Coinbase.\n6. Web3 Regulations: DeFi leaders are calling for policy talks on inclusive Web3 regulations with the Harris-Walz campaign.\n7. DIA's Lasernet L2 Rollup: A discussion on the importance of transparency in oracles and the use of ZK coprocessors for data integrity.\n8. Omni Security Review Competition: An announcement of a competition to find bugs in Omni's code with a chance to earn up to $1,000,000.","data":[1,3,2,3,1,0,0,3,3,4,1,4,1,1,9,3,3,3,3,2,2,1,1,3,4,3,4,4,7,3,3,5,2,7,3,6,1,2,1,1,0,3,1,2,2,3,2,2,2,6,4,4,2,3,5]},{"label":"PEPE","topics":"pepe,frens,mog,memecoin,rare","description":"The key topics currently being discussed on Twitter in relation to the crypto industry and PepeCoin include:\n- PepeCoin reaching a potential market cap of $100 billion\n- Speculation on whether Pepe Coin price will rally to $0.000015 in October\n- BitMEX founder Arthur Hayes investing $500,000 in Memecoin tokens #PEPE and #MOG, resulting in a $40,000 loss\n- Updates on the upcoming Burn for Brains event for PepeCoin and BasedAI Community\n- Announcement of Tadpolebase and Poposmesh coming to #MEXCKickstarter\n- Trading signals and profits related to $PEPE in the spot market and futures market\n\nOverall, the sentiment seems to be a mix of excitement, speculation, and updates on various developments within the PepeCoin and crypto industry community.","data":[2,1,1,3,0,0,4,2,2,3,3,1,1,1,4,1,2,1,5,7,2,2,0,1,3,1,3,0,1,4,2,3,2,0,2,0,38,4,2,3,1,1,1,3,3,3,5,2,2,3,0,1,3,1,2]},{"label":"ETH Price","topics":"eth,ethereum,price,resistance,ethereums","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto community regarding Ethereum ($ETH) are:\n\n1. Price Analysis: There is a discussion about Ethereum's price performance, with mentions of support levels, resistance levels, potential price targets, and technical indicators like the Daily 200EMA. Traders are analyzing the current price action and speculating on potential price movements.\n\n2. Market Sentiment: Traders are sharing their thoughts and opinions on Ethereum's price outlook for the week. Some are optimistic about a potential push back above $4,000, while others are cautious about the current downtrend and the need for a higher high to be established.\n\n3. Integration with Ethena: There is news about the Ethereal Exchange proposing integration with Ethena, which has led to a 20% price increase in the $ENA token. This development could have implications for Ethereum's ecosystem and market dynamics.\n\n4. Bull Cycle Predictions: Some analysts are predicting that Ethereum will hit $10,000 in the next bull cycle, citing reasons for the potential price surge. This forecast is based on market trends, historical data, and the overall sentiment in the crypto community.\n\nOverall, the discussions on Twitter suggest a mix of technical analysis, market speculation, news updates, and price predictions related to Ethereum and its ecosystem. Traders and investors are closely monitoring the price movements and developments in the crypto industry to make informed decisions.","data":[1,2,2,2,0,0,1,1,3,0,5,2,2,3,0,2,31,30,4,0,0,5,2,1,3,1,0,3,0,2,2,0,0,0,1,1,1,3,1,3,1,2,1,1,2,0,4,2,2,0,3,2,0,2,0]},{"label":"SHIB","topics":"shiba,inu,shib,burn,presale","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Price predictions for DOGE and #SHIB for September 30th\n2. Shiba Inu's recent price surge and sustainability\n3. SHIB outperforming BTC, ETH, and XRP in weekly profits\n4. Speculation on whether Shiba Inu can drop a zero from its price by 2024\n5. Significant increase in SHIB volume and price breakout\n6. Addresses holding large amounts of SHIB\n7. Potential price levels to watch for SHIB\n8. Predictions of 50% to 100% daily gains for Shiba Inu\n9. FOMO driving a 23% price rise for SHIB\n10. CryptoGames adding support for Shiba Inu\n11. Discussion on the potential for a new meta in animal coins\n12. Bullish breakout and retesting of previous resistance for SHIB\n13. Shiba Inu igniting a new memecoin season and raising $300K in presale\n14. Memecoins leading the altcoin rally after the Fed's pivot\n15. Debate on whether to ride the SHIB momentum or cash out\n\nOverall, the discussion on social media platforms revolves around price predictions, market performance, sustainability, and the future potential of Shiba Inu and other memecoins in the crypto industry.","data":[1,1,0,2,0,0,4,3,0,0,4,0,2,0,4,1,0,4,1,4,0,0,0,3,0,0,35,1,5,0,0,4,2,2,0,0,0,2,1,3,1,0,2,21,1,0,4,2,0,3,0,0,1,1,1]},{"label":"$16B FTX Distribution","topics":"ftx,plan,hearing,claims,begin","description":"The key topic discussed in the messages from twitter is the distribution of recovered assets from the FTX collapse. The messages mention that $16 billion will be distributed to creditors starting in Q4 2024. There is speculation that a significant percentage of this money will flow back into Bitcoin and the crypto market, leading to a bullish trend. However, there are conflicting reports about the exact start date of the distribution, with some claiming it will begin on Monday and others stating that an official repayment date has not been set until October 7th. Creditors are pushing for in-kind payments, while FTX insists on cash payments. Overall, the news of the distribution of recovered assets from the FTX collapse is a significant development in the crypto industry.","data":[3,2,2,3,0,0,3,0,2,1,0,11,1,1,5,1,0,3,2,2,23,0,0,0,0,2,0,1,1,3,1,1,0,1,0,0,5,0,0,3,3,5,1,1,0,6,1,0,0,1,1,10,0,0,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-39.ts b/priv/repo/major_topics_seed/data-39.ts deleted file mode 100644 index 98b6f2e26c..0000000000 --- a/priv/repo/major_topics_seed/data-39.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '26.09.24', - '27.09.24', - '27.09.24', - '27.09.24', - '27.09.24', - '27.09.24', - '27.09.24', - '27.09.24', - '28.09.24', - '28.09.24', - '28.09.24', - '28.09.24', - '28.09.24', - '28.09.24', - '28.09.24', - '28.09.24', - '29.09.24', - '29.09.24', - '29.09.24', - '29.09.24', - '29.09.24', - '29.09.24', - '29.09.24', - '29.09.24', - '30.09.24', - '30.09.24', - '30.09.24', - '30.09.24', - '30.09.24', - '30.09.24', - '30.09.24', - '30.09.24', - '01.10.24', - '01.10.24', - '01.10.24', - '01.10.24', - '01.10.24', - '01.10.24', - '01.10.24', - '01.10.24', - '02.10.24', - '02.10.24', - '02.10.24', - '02.10.24', - '02.10.24', - '02.10.24', - '02.10.24', - '02.10.24', - '03.10.24', - '03.10.24', - '03.10.24', - '03.10.24', - '03.10.24', - '03.10.24', - '03.10.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,level,resistance,higher,65k', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements and potential for reaching six figures\n- Analysis of BTC short positions and volatility\n- Speculation on BTC price levels and potential for a bounce\n- Elliott wave analysis and trading strategies\n- Plunge protection in the $59k - $60k range\n- Bitcoin crossing $65,000 and potential for reaching $70,000\n- Support levels and potential for a lower resolution\n- Market sentiment and demand at key price levels\n- Economic optimism driving BTC price surge\n- Predictions of a potential dip below $60,000\n- Speculation on Bitcoin price correction and bounce back\n- Analysis of Bitcoin price movements in relation to US economic data\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, market sentiment, and economic factors influencing the price of Bitcoin in the crypto industry.", - data: [ - 15, 9, 9, 15, 88, 85, 31, 51, 12, 11, 15, 26, 10, 21, 4, 10, 7, 8, 12, 15, 2, 6, 5, 8, 44, - 12, 9, 17, 12, 20, 26, 6, 5, 8, 10, 5, 11, 17, 11, 16, 27, 8, 6, 15, 8, 11, 21, 16, 13, 10, - 2, 15, 9, 27, 6, - ], - }, - { - label: 'AI', - topics: 'ai,openai,models,model,google', - description: - "Based on the messages from Twitter, the key topics currently discussed in the crypto industry include:\n1. AI-Blockchain integration and its impact on new use cases\n2. Law x AI as the next big tech subsector\n3. TAO's 24-hour jump pushing it ahead of ICP in the AI coin market\n4. New AI becoming a top 15 most popular crypto\n5. The use of AI in trading bot systems for consistent profits in 2024\n6. The transformation of luxury retail with AI-powered concierges like Agentforce at Saks\n\nOverall, the discussions revolve around the increasing role of AI in various aspects of the crypto industry, from trading to customer interactions in retail.", - data: [ - 28, 67, 12, 4, 0, 0, 10, 10, 6, 8, 15, 11, 4, 11, 6, 3, 3, 8, 14, 8, 17, 14, 7, 11, 8, 13, - 23, 9, 25, 8, 18, 6, 9, 20, 11, 22, 14, 7, 10, 22, 12, 10, 6, 10, 11, 9, 8, 13, 12, 11, 4, - 6, 14, 9, 11, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,blackrock,etf,net', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. BlackRock's increasing Bitcoin holdings, reaching nearly $24 billion after recent acquisitions.\n2. Significant trading volume for Bitcoin ETFs, with IBIT hitting $1 billion.\n3. Growing global adoption of Bitcoin, with countries and governments holding a portion of the total supply.\n4. BlackRock quietly backing a new U.S. dollar rival amid the Bitcoin and crypto price boom.\n5. Inflows of $1.2 billion into digital assets this week, driven by expectations of a dovish U.S. Federal Reserve.\n6. Leveraged MicroStrategy ETFs providing exposure to Bitcoin and attracting investors.\n7. Speculation on whether BlackRock or Asia will spark the next bull run in the crypto market.\n8. The success of U.S. Bitcoin ETFs, including BlackRock's IBIT, attracting $17.7 billion since January 11, 2024.\n9. Flow Foundation's success at the recent ETHGlobal Singapore hackathon, with high demand for projects built on Flow.\n10. Inflows of $1.11 billion into Bitcoin spot ETFs, with BlackRock's IBIT and 21Shares ARKB attracting significant amounts.", - data: [ - 11, 1, 7, 6, 33, 7, 31, 10, 16, 3, 6, 2, 7, 7, 8, 7, 48, 12, 3, 10, 1, 6, 9, 9, 15, 16, 5, - 2, 10, 2, 5, 2, 4, 16, 11, 5, 4, 1, 10, 9, 7, 1, 18, 1, 71, 5, 8, 1, 5, 10, 2, 6, 1, 2, 10, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include meme coins like #WIF, #BONK, #FLOKI, and their potential for double-digit gains. Other topics of interest are meme culture, launchpads, meme utility, and the potential for making money through meme coins. There is also discussion about specific meme coins on the BNB chain like $PEPE, $BABYDOGE, $CAT, $WHY, and $MCOIN. Additionally, there is interest in understanding the socio-economic and psychological factors behind meme coins, as well as the concept of meme supercycles. Some users are warning about potential risks, such as 'Boomer Lag' and the importance of staying updated on the latest trends in the meme coin market. Overall, there is a mix of excitement, speculation, and caution surrounding meme coins in the crypto industry.", - data: [ - 4, 7, 6, 7, 1, 2, 5, 3, 20, 8, 6, 5, 1, 2, 13, 9, 4, 2, 16, 4, 7, 9, 9, 10, 7, 6, 5, 4, 8, - 7, 11, 74, 40, 7, 7, 5, 14, 5, 6, 8, 5, 8, 10, 5, 7, 5, 6, 8, 9, 6, 10, 4, 8, 9, 5, - ], - }, - { - label: 'Uptober', - topics: 'uptober,september,month,october,historically', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin wrapping up September with a +9.64% gain, marking it as the best September ever in terms of percentage price increase.\n- Speculation about whether October will see explosive growth following a bullish September for Bitcoin.\n- Predictions and discussions about a potential Bull Run in 2024, with the possibility of reaching a new All Time High.\n- Analysis of historical trends related to Bitcoin halving events and their impact on price movements.\n- Mention of key factors to watch for in the crypto market, such as CZ being free, anticipated rate cuts, FTX repayments, and the upcoming election year.\n- Comparison of Bitcoin's performance in September 2024 to previous years, highlighting achievements such as the highest absolute closing price and percentage price increase.\n- Reference to an advanced AI model predicting Bitcoin's performance in 'Uptober' 2024.\n- Debate about whether Bitcoin's price in October 2024 is the same as it was in October 2021, with implications for portfolio performance.\n- Discussion about the potential impact of Bitcoin ETF options on price movements.\n- Mention of a potential pullback opportunity in the market following the biggest September ever for Bitcoin.", - data: [ - 6, 4, 8, 9, 33, 12, 2, 16, 1, 3, 15, 5, 4, 9, 8, 6, 5, 12, 8, 10, 7, 9, 7, 7, 22, 4, 3, 2, - 10, 5, 6, 2, 5, 7, 13, 7, 3, 9, 7, 8, 18, 5, 7, 8, 2, 15, 12, 2, 6, 3, 6, 18, 5, 6, 2, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dog,ordinals,addresses', - description: - "The key topics currently being discussed in the crypto industry on Twitter include Dogecoin (DOGE) showing momentum, comparisons between DOGE and other cryptocurrencies like RCO Finance (RCOF), potential price surges for DOGE, the rise of Dogecoin and Billy Markus's journey, predictions for DOGE reaching $10, and airdrops and potential gains for Dogewhale tokens. There is also discussion about the organic nature of DOGE compared to Bitcoin, technical analysis on DOGE price movements, and the potential for significant gains in the crypto market. Overall, the sentiment seems positive towards DOGE and its future potential.", - data: [ - 7, 5, 5, 9, 2, 3, 2, 4, 4, 2, 6, 3, 8, 4, 53, 86, 0, 5, 6, 3, 2, 3, 4, 6, 3, 2, 5, 9, 7, 10, - 6, 5, 2, 4, 3, 7, 4, 5, 7, 7, 6, 6, 5, 3, 2, 2, 3, 7, 10, 1, 5, 8, 5, 4, 3, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,collectors,piece', - description: - "The key topics discussed in the messages from twitter are:\n1. Art documentaries\n2. Making art collections\n3. Pricing of art pieces\n4. Minting photography on Shape_L2\n5. Nathan Abauman's art\n6. Creative expression in various forms of art\n7. NFTs and artist managers\n8. Art as an investment\n9. Balancing creative vision with professional aspects\n10. Claude Monet's income compared to modern painters\n11. Photography's impact on the art market\n12. Paint on Pixel collection\n13. Mass Artdoption initiative\n\nOverall, the messages reflect a deep appreciation for art, creativity, and the evolving landscape of the art industry, including the intersection of traditional and digital mediums.", - data: [ - 7, 7, 53, 5, 0, 2, 4, 1, 4, 4, 12, 9, 1, 1, 10, 10, 5, 1, 6, 5, 7, 7, 3, 6, 0, 5, 2, 1, 6, - 4, 10, 0, 4, 7, 8, 14, 6, 4, 6, 5, 3, 1, 5, 8, 6, 2, 7, 8, 10, 1, 5, 1, 6, 2, 10, - ], - }, - { - label: 'CZ', - topics: 'cz,released,founder,binance,release', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n1. CZ's potential memecoin launch after his release from jail, which is expected to have a significant impact on the market.\n2. Speculation about Bitcoin breaking $67,000 by the weekend.\n3. A UK man pleading guilty to illegally operating a crypto ATM network, marking the first UK conviction of its kind.\n4. CZ potentially being released from jail earlier than the official date due to local laws.\n5. Opinions on CZ's release from prison, with some criticizing the plea deal given to him by the DOJ.\n6. Discussion about the implications of CZ's release on Binance, BNB, and the overall crypto market.\n7. Collaboration between Libra and Lady Popular for a Zodiac NFT Collection.\n8. Binance's continued success under new leadership despite CZ's limited operations.\nOverall, the crypto community is closely following CZ's situation, regulatory developments, market trends, and collaborations within the industry.", - data: [ - 5, 2, 0, 6, 0, 2, 20, 4, 5, 3, 3, 2, 6, 28, 4, 2, 0, 7, 3, 36, 5, 2, 5, 2, 3, 1, 6, 6, 5, 4, - 4, 2, 4, 4, 1, 6, 5, 9, 2, 1, 20, 4, 6, 5, 2, 1, 1, 0, 0, 3, 6, 0, 2, 3, 6, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,centralized,ethereum,ftm', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana (SOL) and its potential for growth compared to Ethereum\n- Solana ecosystem and its current performance\n- Potential bull runs for Solana, RexasFinance (RXS), and Dogecoin (DOGE)\n- Expansion plans for Sovryn x B² into the Chinese market\n- Comparison between Solana and Polkadot in terms of daily inflation and tech stack\n- Daily unlocks and emissions for SOL investors\n- Speculation on the future market cap of Solana compared to Ethereum\n- Analysis of the chart patterns for Solana and potential price movements\n\nOverall, the sentiment towards Solana appears to be positive, with many users discussing its potential for growth and comparing it to other cryptocurrencies in the market.', - data: [ - 3, 3, 2, 0, 0, 0, 3, 11, 11, 5, 10, 4, 2, 6, 5, 5, 2, 6, 13, 8, 3, 2, 6, 5, 2, 2, 1, 4, 8, - 1, 2, 3, 0, 7, 4, 3, 1, 13, 9, 4, 3, 8, 7, 1, 20, 6, 6, 3, 2, 6, 4, 3, 3, 5, 3, - ], - }, - { - label: 'CPI', - topics: 'inflation,fed,rate,cut,rates', - description: - "Based on the messages from twitter, key topics currently discussed in the crypto industry include:\n- U.S. jobs report and its potential impact on the Federal Reserve's next moves\n- Euro area annual inflation decreasing to 1.8%\n- British pound stabilizing after dropping due to Middle East escalation\n- Euro zone inflation falling below 2%, strengthening the case for a rate cut\n- Polish central bank keeping rates unchanged due to high inflation\n- Jerome Powell stating that the central bank will lower interest rates over time\n- Personal consumption expenditures price index rising by 0.1% for the month\n- Debate on whether the ECB's dovish stance will put downward pressure on the euro\n- The importance of long-term interest rates and where r-star lies\n- BlackRock CEO Larry Fink's opinion on the market pricing too many Fed rate cuts\n- Unemployment numbers and their potential impact on the market\n- Real-time inflation tracker showing a 6-month rate of 3.1% and potential second wave of problems next year.", - data: [ - 3, 3, 3, 9, 0, 0, 1, 3, 4, 3, 0, 6, 4, 6, 0, 7, 4, 2, 6, 3, 1, 5, 4, 7, 3, 21, 6, 4, 2, 0, - 1, 27, 4, 1, 4, 3, 9, 4, 1, 7, 8, 9, 3, 2, 4, 5, 1, 1, 3, 4, 2, 0, 0, 3, 6, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,human,easy,fight,fixes', - description: - 'The key topics currently being discussed in the crypto industry on social media include #Bitcoin, options trading, bearish vision, decentralized and secure chain, magic internet money, numerology, stacking bitcoin creatively, and the potential for Bitcoin to 100X. There is also mention of specific individuals such as Jeff Booth, Alex Fulton, Dylan LeClair, and MMCrypto. Overall, the sentiment seems positive towards Bitcoin and its potential for growth and innovation.', - data: [ - 2, 2, 5, 2, 21, 29, 1, 2, 3, 2, 4, 4, 2, 3, 0, 2, 2, 1, 5, 9, 2, 3, 6, 4, 4, 4, 1, 3, 5, 5, - 7, 3, 0, 5, 2, 2, 1, 3, 2, 0, 1, 4, 1, 3, 5, 1, 5, 2, 6, 3, 2, 0, 1, 1, 1, - ], - }, - { - label: 'EIGEN', - topics: 'eigen,restaking,justin,listing,trading', - description: - "The key topic discussed in the messages from twitter is EigenLayer, specifically related to the Eigen token, staking, market valuation, liquidity mining, partnerships with other projects like ARPA Network, airdrops, listings on major exchanges, and restaking options. There is also mention of Justin Sun's team withdrawing USDT from Binance after selling Eigen airdrops. The community seems excited about EigenLayer's developments and opportunities for token holders.", - data: [ - 5, 1, 5, 2, 1, 2, 5, 2, 0, 1, 4, 1, 0, 1, 0, 0, 62, 8, 4, 2, 2, 0, 2, 1, 2, 3, 5, 4, 1, 4, - 1, 0, 1, 1, 14, 4, 3, 1, 1, 5, 3, 0, 5, 1, 0, 2, 0, 4, 0, 5, 0, 2, 3, 2, 0, - ], - }, - { - label: 'China', - topics: 'china,chinese,stimulus,chinas,stock', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n1. Speculation about Satoshi Nakamoto being a Chinese intelligence operation.\n2. Reports of Chinese stimulus measures driving a market rally, including Caterpillar shares rising to a record high.\n3. Surge in stocks of Chinese chip maker Cambricon Technologies Corp.\n4. Impact of China's NBS Manufacturing PMI rising to 49.8 in September.\n5. Potential generational recovery in Chinese stocks.\n6. Former Chinese finance minister urging crypto study after US Bitcoin ETF shift.\n7. Former Chinese Vice Minister of Finance calling for enhanced cryptocurrency research.\n8. Market reactions to Chinese authorities' recent measures seen as a \"downpayment\" for a larger stimulus policy effort.\n9. Surge in Chinese stocks and Michael Burry's successful bet on Chinese stocks.\n10. Speculation about China opening up Bitcoin and Ethereum ETF trading to its citizens.\n11. Degenerate economy and speculators' activity.\n12. Brokerages in China offering 24/7 services to meet demand as new individual investors rush to open trading accounts after Chinese stock market rally.", - data: [ - 2, 0, 2, 4, 1, 2, 6, 1, 6, 23, 1, 4, 3, 0, 2, 5, 0, 0, 5, 3, 1, 3, 5, 2, 3, 2, 3, 4, 1, 4, - 5, 8, 4, 3, 0, 1, 5, 2, 3, 2, 3, 1, 4, 4, 2, 5, 1, 5, 2, 0, 6, 1, 3, 7, 5, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,web3,gamefi', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Web3 gaming and the concept of players owning in-game assets onchain.\n2. Launches of new gaming blockchain platforms such as League of Kingdoms Arena-Z L2.\n3. The importance of choosing a high-performance network like Starknet for onchain games.\n4. Exciting announcements from companies like Lamborghini, Animoca Brands, and Motoverse in the racing game ecosystem.\n5. Speculation on the future of Web3 gaming and its potential impact on the industry.\n6. The broken nature of the gaming industry, with many games not being profitable and new IPs often failing.\n7. Calls for support and votes for various web3 games like AlterVerse and RuniverseGame in gaming awards.\n8. The surge in GameFi tokens and the success of tokens like MYTH from Mythical Games.\n9. Insights from a PhD in Astrophysics on the realism and multiplayer aspects of the @influenceth game.\nOverall, the discussions revolve around the potential of Web3 gaming, the challenges in the gaming industry, and the excitement surrounding new blockchain platforms and tokens.', - data: [ - 1, 4, 1, 1, 0, 0, 5, 3, 2, 2, 2, 2, 4, 1, 3, 1, 0, 7, 7, 2, 28, 2, 4, 1, 4, 6, 5, 1, 4, 3, - 4, 1, 0, 2, 2, 7, 5, 2, 4, 1, 1, 0, 3, 2, 2, 2, 1, 1, 3, 1, 5, 1, 2, 9, 3, - ], - }, - { - label: 'SEC appeals Ripple case ruling', - topics: 'sec,ripple,appeal,xrp,case', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. The US SEC filing a notice of appeal in the Ripple lawsuit\n2. Ripple's response to the SEC's appeal\n3. Legal experts weighing in on the SEC's appeal in the XRP ruling\n4. Speculation on the future of Ripple Labs after the SEC's appeal\n5. The timing and implications of the SEC's appeal in the Ripple case\n6. Analysis of the SEC's actions and allegations against Ripple\n7. Concerns about the SEC's enforcement director quitting\n8. Debate over whether the selling of XRP should be covered by securities laws\n9. Ripple's potential penalties and allegations of defrauding investors\n10. Calls for regulatory clarity and transparency in the crypto industry.", - data: [ - 1, 20, 9, 2, 0, 1, 9, 0, 6, 4, 3, 1, 0, 2, 3, 1, 1, 3, 13, 3, 2, 1, 0, 1, 2, 3, 1, 1, 8, 0, - 2, 0, 2, 3, 4, 1, 0, 2, 1, 1, 1, 11, 2, 3, 2, 1, 6, 0, 2, 0, 2, 0, 4, 1, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,decentralized,trading,experience', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. DeFi (Decentralized Finance): There is a discussion about the complexity of DeFi and how it may push more people towards traditional finance options like ETFs and TradFi custody. Additionally, there is mention of a DeFi protocol adoption strategy called Silverback and a letter from DeFi leaders to VP Kamala Harris' campaign team to discuss policy.\n2. Bitcoin in DeFi: 1% of Bitcoin's supply is now locked in DeFi, driven by the demand for Bitcoin yield and the introduction of Coinbase's new Bitcoin-pegged token, $cbBTC.\n3. Bluefin: A platform for trading in DeFi markets with advanced trading strategies and rewards, accessible to traders globally.\n4. OMO (Omnichain): A platform connecting every decentralized exchange (Dex) on every chain it supports for easy swapping across DeFi ecosystems.\n5. Ethereum (ETH) Layer-2 Blockchain: Ethereum and other altcoins are on the rise after being listed on Coinbase.\n6. Web3 Regulations: DeFi leaders are calling for policy talks on inclusive Web3 regulations with the Harris-Walz campaign.\n7. DIA's Lasernet L2 Rollup: A discussion on the importance of transparency in oracles and the use of ZK coprocessors for data integrity.\n8. Omni Security Review Competition: An announcement of a competition to find bugs in Omni's code with a chance to earn up to $1,000,000.", - data: [ - 1, 3, 2, 3, 1, 0, 0, 3, 3, 4, 1, 4, 1, 1, 9, 3, 3, 3, 3, 2, 2, 1, 1, 3, 4, 3, 4, 4, 7, 3, 3, - 5, 2, 7, 3, 6, 1, 2, 1, 1, 0, 3, 1, 2, 2, 3, 2, 2, 2, 6, 4, 4, 2, 3, 5, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frens,mog,memecoin,rare', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry and PepeCoin include:\n- PepeCoin reaching a potential market cap of $100 billion\n- Speculation on whether Pepe Coin price will rally to $0.000015 in October\n- BitMEX founder Arthur Hayes investing $500,000 in Memecoin tokens #PEPE and #MOG, resulting in a $40,000 loss\n- Updates on the upcoming Burn for Brains event for PepeCoin and BasedAI Community\n- Announcement of Tadpolebase and Poposmesh coming to #MEXCKickstarter\n- Trading signals and profits related to $PEPE in the spot market and futures market\n\nOverall, the sentiment seems to be a mix of excitement, speculation, and updates on various developments within the PepeCoin and crypto industry community.', - data: [ - 2, 1, 1, 3, 0, 0, 4, 2, 2, 3, 3, 1, 1, 1, 4, 1, 2, 1, 5, 7, 2, 2, 0, 1, 3, 1, 3, 0, 1, 4, 2, - 3, 2, 0, 2, 0, 38, 4, 2, 3, 1, 1, 1, 3, 3, 3, 5, 2, 2, 3, 0, 1, 3, 1, 2, - ], - }, - { - label: 'ETH Price', - topics: 'eth,ethereum,price,resistance,ethereums', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto community regarding Ethereum ($ETH) are:\n\n1. Price Analysis: There is a discussion about Ethereum's price performance, with mentions of support levels, resistance levels, potential price targets, and technical indicators like the Daily 200EMA. Traders are analyzing the current price action and speculating on potential price movements.\n\n2. Market Sentiment: Traders are sharing their thoughts and opinions on Ethereum's price outlook for the week. Some are optimistic about a potential push back above $4,000, while others are cautious about the current downtrend and the need for a higher high to be established.\n\n3. Integration with Ethena: There is news about the Ethereal Exchange proposing integration with Ethena, which has led to a 20% price increase in the $ENA token. This development could have implications for Ethereum's ecosystem and market dynamics.\n\n4. Bull Cycle Predictions: Some analysts are predicting that Ethereum will hit $10,000 in the next bull cycle, citing reasons for the potential price surge. This forecast is based on market trends, historical data, and the overall sentiment in the crypto community.\n\nOverall, the discussions on Twitter suggest a mix of technical analysis, market speculation, news updates, and price predictions related to Ethereum and its ecosystem. Traders and investors are closely monitoring the price movements and developments in the crypto industry to make informed decisions.", - data: [ - 1, 2, 2, 2, 0, 0, 1, 1, 3, 0, 5, 2, 2, 3, 0, 2, 31, 30, 4, 0, 0, 5, 2, 1, 3, 1, 0, 3, 0, 2, - 2, 0, 0, 0, 1, 1, 1, 3, 1, 3, 1, 2, 1, 1, 2, 0, 4, 2, 2, 0, 3, 2, 0, 2, 0, - ], - }, - { - label: 'SHIB', - topics: 'shiba,inu,shib,burn,presale', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Price predictions for DOGE and #SHIB for September 30th\n2. Shiba Inu's recent price surge and sustainability\n3. SHIB outperforming BTC, ETH, and XRP in weekly profits\n4. Speculation on whether Shiba Inu can drop a zero from its price by 2024\n5. Significant increase in SHIB volume and price breakout\n6. Addresses holding large amounts of SHIB\n7. Potential price levels to watch for SHIB\n8. Predictions of 50% to 100% daily gains for Shiba Inu\n9. FOMO driving a 23% price rise for SHIB\n10. CryptoGames adding support for Shiba Inu\n11. Discussion on the potential for a new meta in animal coins\n12. Bullish breakout and retesting of previous resistance for SHIB\n13. Shiba Inu igniting a new memecoin season and raising $300K in presale\n14. Memecoins leading the altcoin rally after the Fed's pivot\n15. Debate on whether to ride the SHIB momentum or cash out\n\nOverall, the discussion on social media platforms revolves around price predictions, market performance, sustainability, and the future potential of Shiba Inu and other memecoins in the crypto industry.", - data: [ - 1, 1, 0, 2, 0, 0, 4, 3, 0, 0, 4, 0, 2, 0, 4, 1, 0, 4, 1, 4, 0, 0, 0, 3, 0, 0, 35, 1, 5, 0, - 0, 4, 2, 2, 0, 0, 0, 2, 1, 3, 1, 0, 2, 21, 1, 0, 4, 2, 0, 3, 0, 0, 1, 1, 1, - ], - }, - { - label: '$16B FTX Distribution', - topics: 'ftx,plan,hearing,claims,begin', - description: - 'The key topic discussed in the messages from twitter is the distribution of recovered assets from the FTX collapse. The messages mention that $16 billion will be distributed to creditors starting in Q4 2024. There is speculation that a significant percentage of this money will flow back into Bitcoin and the crypto market, leading to a bullish trend. However, there are conflicting reports about the exact start date of the distribution, with some claiming it will begin on Monday and others stating that an official repayment date has not been set until October 7th. Creditors are pushing for in-kind payments, while FTX insists on cash payments. Overall, the news of the distribution of recovered assets from the FTX collapse is a significant development in the crypto industry.', - data: [ - 3, 2, 2, 3, 0, 0, 3, 0, 2, 1, 0, 11, 1, 1, 5, 1, 0, 3, 2, 2, 23, 0, 0, 0, 0, 2, 0, 1, 1, 3, - 1, 1, 0, 1, 0, 0, 5, 0, 0, 3, 3, 5, 1, 1, 0, 6, 1, 0, 0, 1, 1, 10, 0, 0, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-4.json b/priv/repo/major_topics_seed/data-4.json deleted file mode 100644 index 68c9980644..0000000000 --- a/priv/repo/major_topics_seed/data-4.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["25.01.24","26.01.24","26.01.24","26.01.24","26.01.24","26.01.24","26.01.24","26.01.24","27.01.24","27.01.24","27.01.24","27.01.24","27.01.24","27.01.24","27.01.24","27.01.24","28.01.24","28.01.24","28.01.24","28.01.24","28.01.24","28.01.24","28.01.24","28.01.24","29.01.24","29.01.24","29.01.24","29.01.24","29.01.24","29.01.24","29.01.24","29.01.24","30.01.24","30.01.24","30.01.24","30.01.24","30.01.24","30.01.24","30.01.24","31.01.24","31.01.24","31.01.24","31.01.24","31.01.24","31.01.24","31.01.24","31.01.24","01.02.24","01.02.24","01.02.24","01.02.24","01.02.24","01.02.24","29.01.24","31.01.24","28.01.24"],"datasets":[{"label":"Vitalik Buterin","topics":"ai,vitalik,vitalikbuterin,tech,technology","description":"The key topics discussed in the given messages from Twitter are as follows:\n\n1. Artificial Intelligence (AI): The messages mention the transformative power of AI in various industries, including sales and enterprise. It is highlighted that AI will bring significant changes and generate new opportunities. However, there is also a mention of a CFO's statement that AI products may not drive meaningful revenue in 2024.\n\n2. Generative AI: The messages discuss generative AI and its potential in the enterprise. There is a link to a year in review article that provides insights and predictions about generative AI. Additionally, there is a cautionary note about embracing generative AI with control to mitigate risks.\n\n3. Crypto Industry: The messages mention cryptocurrencies like Bitcoin (BTC) and specific crypto tokens such as $AI, $AGI, $ORAI, and $FET. The convergence of crypto and AI is highlighted as the future, and there is a recommendation to invest in certain crypto tokens.\n\n4. Data Leak and Investigations: There is a mention of a data leak impacting a subset of customers of a company called Anthropic. It is noted that this incident occurred just prior to an investigation by the Federal Trade Commission (FTC).\n\n5. Volkswagen and AI: Volkswagen is mentioned as setting up its own AI lab, indicating the car industry's interest in embracing AI technology.\n\n6. AI Influencers on TikTok: There is a demand for action against AI influencers on TikTok, although the specific concerns or issues are not mentioned.\n\n7. AI Art and Music: The messages refer to AI-generated glitch videos, trash music, and AI art. Links are provided to access these creations.\n\n8. Webinar on Genius AI Token: A beginner-level webinar is mentioned for the Genius AI token, highlighting the simplicity of the GENI language and the importance of avoiding scam coins.\n\n9. Event featuring Black Dragon and Cosmose: An event is promoted, featuring Black Dragon and Miron Mironiuk, discussing AI and the world's most used Web3 dApp called KAIKAINOW.\n\nOverall, the key topics discussed in the given messages revolve around the transformative potential of AI, its intersection with the crypto industry, concerns about data leaks and AI influencers, and various applications of AI in different sectors.","data":[21,50,11,5,6,0,6,3,6,8,14,13,7,7,13,11,4,13,8,9,4,8,7,7,3,9,13,4,1,3,6,5,7,11,7,9,13,10,13,11,6,14,7,6,5,8,17,9,7,7,6,8,5,7,8,0]},{"label":"Solana","topics":"solana,sol,mc,reversal,tg","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Solana (SOL): The messages mention that Solana is considered to be more decentralized than any other crypto network at the moment. It is accelerating and has multiple software clients and forks. The messages also highlight the recent DeFi run in the Solana ecosystem and suggest that it will experience a similar bull run. Solana is mentioned as one of the safest bets in crypto, along with LINK and INJ. The chart analysis shows that Solana has broken above the 25-day EMA and is expected to retake $100 easily.\n\n2. NFTs on Solana: The messages mention the availability of a trading bot called Mint a Dobutsu, which works on Solana or Ethereum. It is described as the best signals trading bot in the market and offers fantastic NFT art with utility. The messages suggest that eventually, everyone will catch on to NFTs on Solana, indicating its growing popularity.\n\n3. Solana's Growth and Attention: The messages highlight the significant phase of evolution and growth in the crypto market, with Solana capturing much attention. The messages express love for Solana and mention the minting of various projects on Solana in the past. The innovation and leadership of MagicEden, a project on Solana, are also appreciated.\n\n4. Uranus (SOL) Listing: The messages mention that URANUS (SOL) has been listed on Coin Gecko and encourage checking its price and social media presence. The messages suggest contacting @growerscrypto for CMC/CG listing.\n\n5. Positive Sentiment towards Solana: The messages express joy in seeing people who stayed invested in Solana during tough times being heavily rewarded now. Solana is described as the chain that was initially shat on and laughed at but now has the greatest mindshare. Being Solana compatible is considered bullish for projects.\n\n6. Polkadot and PhalaNetwork: The messages briefly mention the average monthly transactions recorded by Polkadot parachains and PhalaNetwork. These networks are recognized for their transaction processing capabilities and incentives for computing power and staking.\n\n7. Miscellaneous Mentions: The messages include references to DOGE coin, LP burning and renouncing, community takeovers, and ATHs (All-Time Highs) in the crypto market. There are also mentions of specific Twitter accounts and links to external resources.\n\nOverall, the key topics discussed in the given messages revolve around Solana's decentralization, growth, and popularity, NFTs on Solana, and mentions of other cryptocurrencies and networks like Polkadot and PhalaNetwork.","data":[7,9,4,5,0,0,4,9,6,16,8,8,3,7,4,3,3,4,9,7,4,5,6,10,7,7,1,4,4,10,12,4,1,8,6,7,2,11,7,9,7,5,6,36,8,3,5,6,10,5,7,3,6,5,4,7]},{"label":"Ethereum ecosystem","topics":"ethereum,eth,zone,analyst,ether","description":"The key topics discussed in the given messages from Twitter about the crypto industry, specifically Ethereum ($ETH), include:\n\n1. Market sentiment towards Ethereum: There are mixed opinions about the future of Ethereum, with some suggesting that it may not be the future of the industry. However, others believe that Ethereum's options trading volume hitting an all-time high and its positive impact on ETH's GDP indicate a bullish market sentiment.\n\n2. Technical analysis: The use of EMA13 and EMA65 indicators is recommended for analyzing Ethereum's price movement on any time frame. Additionally, there is a mention of a potential reversal pattern forming up, indicating a possible break in the downtrend and a bounce in ETH's price.\n\n3. Options trading volume: Ethereum's options trading volume surged to a record $17.9 billion in January, suggesting increased market activity and interest in ETH.\n\n4. Price levels to watch: The zone around $2,172 is highlighted as an important level to monitor, as a break below could signal a decline to anywhere between $2,100 - $2,000.\n\n5. Price predictions: Some individuals predict that Ethereum could reach $3,500-4,000 in the next 3-6 months, citing factors such as the Dencun upgrade, Ethereum Spot ETF hype, and Bitcoin rotation after halving.\n\n6. Comparison with Bitcoin: Ethereum's price movement is compared to Bitcoin, with a suggestion that Ethereum looks clearer and may experience a potential dump followed by a bounce back from a buying zone.\n\n7. International coverage: There is a mention of an article in Japanese discussing the potential reversal of Bitcoin and its inclusion in a new NISA stock.\n\nOverall, the messages reflect discussions about Ethereum's market sentiment, technical analysis, options trading volume, price levels, price predictions, comparison with Bitcoin, and international coverage.","data":[6,6,3,2,0,0,2,2,5,3,7,6,3,2,0,1,86,5,6,5,1,4,5,4,6,1,0,8,6,9,6,3,3,1,2,5,2,6,3,4,5,5,4,3,5,3,0,8,5,3,7,4,1,2,6,0]},{"label":"Jupiter ($JUP)","topics":"jup,jupiter,jupiterexchange,airdrop,uniswap","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Jupiter (JUP) Airdrop: There is a mention of an airdrop happening on the Jupiter Exchange. The message advises people to be careful and avoid getting phished during the airdrop.\n\n2. Decentralized Web3 Alpha on JUP: The decentralized web3 alpha on Jupiter (JUP) is mentioned, indicating the development of a decentralized platform on the Jupiter Exchange.\n\n3. SRM Entertainment Files S-1 Registration for Spin-Off from Jupiter Wellness: This message highlights the filing of an S-1 registration for a spin-off from Jupiter Wellness by SRM Entertainment.\n\n4. Jupiter Exchange Gaining Traction: The message questions why Jupiter Exchange is gaining traction and encourages readers to follow CoinGapeMedia for the latest crypto news.\n\n5. WEN and JUP Airdrop: The message discusses an airdrop involving WEN and JUP on Jupiter Exchange. It suggests that WEN holders may receive some JUP tokens in the future.\n\n6. Binance Listing Jupiter (JUP): Binance is set to list Jupiter (JUP) on January 31, 2024. The trading pairs mentioned include JUP/USDT, JUP/FDUSD, and JUP/TRY.\n\n7. 17-Year-Old Makes $1M from JUP Airdrop: This message highlights the success of a 17-year-old who made $1 million from the JUP airdrop. It emphasizes the potential opportunities and bullish sentiment in the crypto market.\n\n8. Initial Circulation Supply of JUP Reduced: The initial circulation supply of JUP has been reduced to 1.35 billion. The message speculates on how this reduction may affect price discovery.\n\n9. Jupiter Exchange as a DEX Swap Aggregator: Jupiter Exchange is described as the leading DEX swap aggregator on Solana. It is compared to Uniswap or 1inch on Ethereum.\n\n10. LBank and Gateio Listing JUP: LBank and Gateio are mentioned as exchanges listing JUP for trading with leverage. The messages provide links for more details and trading.\n\n11. CatinJup Meme Project: The CatinJup meme project linked to JUP on Solana is mentioned. It is compared to the success of Dogwifhat and is speculated to be a potential 100x gem.\n\nOverall, the key topics discussed revolve around the Jupiter Exchange, JUP token, airdrops, listings on exchanges, and the potential opportunities and developments in the crypto industry.","data":[8,3,2,10,0,0,3,5,7,4,13,7,2,3,1,4,4,5,6,6,3,7,3,13,9,4,1,9,12,10,2,2,5,6,3,5,3,4,5,1,3,6,2,6,4,7,6,6,14,11,3,3,0,3,3,4]},{"label":"XRP, hack and Chris Larsen","topics":"xrp,ripple,hacked,stolen,chris","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Blackrock's decision not to launch a Ripple XRP ETF.\n2. Mention of XRP as one of the most important cryptocurrencies after Bitcoin.\n3. Hacking incidents involving Chris Larsen and Brad Garlinghouse's XRP accounts, as well as their crypto wallets containing Bitcoin and Ethereum.\n4. Stolen funds from Ripple being laundered through various exchanges.\n5. Introduction to Radix DLT and its cryptocurrency XRD.\n6. Analysis of XRP's price movement and potential breakout.\n7. Chris Larsen's personal accounts being hacked for $112 million worth of XRP.\n8. On-chain data showing movements by XRP whales.\n9. Increase in the number of distinct wallets holding XRP coins on the XRPLedger.\n10. Ripple executive's involvement in a massive XRP hack and Tether's significant profit.\n11. Discussion about the possibility of Ripple applying for an ETF and the importance of a futures ETF for XRP.\n12. Sharing of an XRP chart and analysis of its price movement.\n\nThese topics provide insights into the current discussions and events surrounding the crypto industry, specifically related to Ripple and its cryptocurrency XRP.","data":[6,6,3,6,0,0,4,8,1,7,4,1,3,2,2,4,5,3,2,8,1,2,5,3,4,2,3,3,1,5,8,2,3,2,1,2,3,6,2,5,14,4,6,3,0,2,2,2,1,4,2,2,5,2,0,0]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coin","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Memecoins: Memecoins are a popular topic of discussion in the crypto industry. People are asking for recommendations and opinions on which memecoin deserves more attention. Some specific memecoins mentioned include $FLOKI, $PEPE, $SHIB, $DOGE, $MEME, $KISHU, $SHINJA, $KIBA, $BabyDoge, $AirCoin, $Crogecoin, $CheemsInu, $FegToken, $SAFEMOON, and $Floki.\n\n2. Meme culture: The messages also mention various memes related to the crypto industry. There are references to videos, animations, and memes that describe different aspects of the industry. Meme culture is seen as a way to onboard new people to crypto.\n\n3. Ethereum's ETF Buzz: There is a mention of the fading buzz around Ethereum's ETF and the emergence of a new memecoin as the new crypto spotlight. This indicates a shift in attention and interest within the crypto community.\n\n4. Specific memecoins: Some specific memecoins are highlighted for their potential and value. $Floki is mentioned as the most undervalued memecoin with strong fundamentals. Another memecoin called #Teddybear is believed to become the number one memecoin in the entire crypto industry, not just limited to Pulsechain.\n\n5. Social media platforms: Binance is mentioned as a platform that hosts multiple memecoins, including $FLOKI, $PEPE, $SHIB, $DOGE, and $MEME. This indicates the popularity and availability of memecoins on social media platforms.\n\nOverall, the discussion revolves around memecoins, meme culture, specific memecoin recommendations, and the shifting attention within the crypto industry.","data":[2,0,2,3,0,0,1,4,8,0,3,1,1,3,1,2,2,2,4,5,1,6,1,2,4,1,7,5,6,1,4,40,4,3,3,2,2,1,1,2,1,5,1,4,1,3,2,7,0,1,3,3,3,1,2,1]},{"label":"Shiba Inu Coin","topics":"shiba,shib,inu,burn,byte","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Shiba Inu (SHIB) Price Rally: The messages mention that the price of Shiba Inu (SHIB) cryptocurrency might be primed for a bull rally. It is highlighted that if SHIB captures only 5% of the crypto market cap, its price could increase significantly. Additionally, it is mentioned that over 12 million SHIB tokens have been vaporized, which could have an impact on the price. The messages also discuss the burn rate of SHIB, which has seen a significant increase.\n\n2. Byte (BYTE) vs. SHIB: There is a mention of Byte (BYTE) cryptocurrency potentially flipping SHIB. It is suggested that if one has access to Grok AI, they can ask about Byte, which is referred to as the world's first AI dog. The messages also mention that Byte is the dog to Elon Musk's Grok AI. It is implied that BYTE could be the next dog meme for the bull run.\n\n3. Other Cryptocurrencies and Projects: The messages briefly mention other cryptocurrencies and projects. Ethiba Inu is highlighted as a decentralized meme token on the Ethereum Blockchain. It is mentioned that 75% of its initial supply has been burned. There is also a mention of XRP being pressured in a descending channel and the growth of Cardano (ADA) being questioned. The Shibarium project by FEF_TOKEN is mentioned to be having a presale on MARSWAP.\n\nOverall, the key topics discussed in the messages revolve around the price rally of Shiba Inu (SHIB), the potential competition from Byte (BYTE), and mentions of other cryptocurrencies and projects.","data":[0,4,0,1,2,0,1,1,8,2,0,1,1,0,3,0,3,3,1,3,0,1,1,0,1,2,40,0,0,0,2,3,4,2,0,1,3,1,0,1,2,1,30,2,0,2,1,0,1,2,1,0,2,2,1,1]},{"label":"NFTs","topics":"nfts,nft,pfp,physical,collection","description":"Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. NFTs (Non-Fungible Tokens): There are various discussions about NFTs, including understanding their concept, the success and failure of derivative NFT projects, the importance of different factors in NFT projects, and the potential of cross-chain portable NFTs.\n\n2. Uniswap: Some users are experiencing problems with Uniswap, specifically related to the token amount not being displayed correctly in their wallets.\n\n3. Adam and @EmblemVault: There is mention of Adam and @EmblemVault, indicating that they are involved in something interesting related to the crypto industry.\n\n4. NFT Collections: Individuals are excited about acquiring NFTs and participating in events such as NFT Paris. Specific mentions include @RGBWorldWide, @TheeHustleHouse, @Reaper_NFT, @BoredApeYC, and Made By Apes.\n\n5. Christie's Auction: Christie's is auctioning three original CREEPS NFTs from Dada's 2017 collection, generating interest among collectors.\n\n6. Personalization and NFTs: Brands are exploring the use of NFTs to personalize content and enhance the connection with customers.\n\n7. Castle Apeskull: A fictional location called Castle Apeskull is mentioned, which holds power in the NFT Universe.\n\n8. Reflection on the NFT Space: There is a reflection on the success and challenges faced by the NFT space, including the dominance of PFPs (Profile Picture Projects) and generative art, as well as the overall growth and evolution of the industry.\n\n9. NFT Images on the Blockchain: A promotion of NFT images on the blockchain is mentioned, highlighting their impact on the buying and selling of digital art.\n\nOverall, the discussions revolve around NFTs, their various aspects, related projects, and the broader implications for the crypto industry.","data":[2,1,4,1,1,0,5,0,6,2,0,1,1,2,5,3,3,4,2,2,1,3,3,4,4,1,1,1,2,2,3,3,2,12,4,3,2,8,4,1,0,5,3,2,2,2,2,2,1,1,1,1,2,3,2,1]},{"label":"Bitcoin ETF","topics":"etf,etfs,bitcoin,futures,shock","description":"The key topics currently discussed in the crypto industry on Twitter are:\n\n1. Bitcoin ETFs: There is a lot of excitement and anticipation surrounding Bitcoin ETFs. People are discussing the potential benefits and impact of these ETFs on the market. Some believe that Bitcoin ETFs could help overcome the unit bias and make Bitcoin more accessible to newcomers.\n\n2. Altcoin ETFs: There were rumors about a specialized Altcoin basket ETF, but it has been proven to be untrue. However, the launch of ETFs in general is seen as a huge success.\n\n3. Bitcoin Supply Shock: There is a discussion about the setup of a Bitcoin supply shock, which is considered to be the best seen in years. This could potentially have an impact on the price of Bitcoin.\n\n4. Proof of Reserves: There is a mention of how ETF issuers can use Proof of Reserves to provide transparency in Bitcoin. @hosekiapp and @BitwiseInvest are mentioned as providers of the technology for this.\n\n5. Comparison to S&P 500: Some are discussing how Bitcoin ETFs might make crypto more like the S&P 500. However, there are concerns about this and why it could be a bad thing.\n\n6. Impact on Ethereum: After the success of Bitcoin ETFs, there is uncertainty about Ethereum's ETF journey and how it will be affected.\n\n7. Volatility and Stabilization: Spot Bitcoin ETFs are believed to have the potential to lower volatility in BTC over time. Despite volatility following the ETF approvals, BTC's price is said to have a general stabilizing trend over time.\n\n8. Litecoin ETF: There is speculation about who will be the first to file a Litecoin ETF. Litecoin is seen as following Bitcoin's footsteps in various ventures.\n\n9. Potential impact on crypto market: Some believe that Bitcoin ETFs will drive crypto to new all-time highs. Mark Yusko shares his outlook for 2024, discussing the Bitcoin Spot ETF launch and inflows, as well as the opinions of Jamie Dimon, Vanguard, and Merrill Lynch on Bitcoin.","data":[2,0,1,0,13,4,5,0,3,0,0,4,3,5,2,1,13,2,1,3,0,3,2,1,0,2,7,3,1,2,1,2,1,6,4,0,1,0,3,3,1,1,2,0,4,0,1,0,5,2,1,0,3,4,0,0]},{"label":"GrayScale","topics":"grayscale,outflow,inflow,net,outflows","description":"Grayscale, a prominent player in the crypto industry, has made significant moves in the market recently. They have transferred a total of 6,534 Bitcoins, worth approximately $274.95 million, to Coinbase Prime. Additionally, another 10,000 BTC were sent from Grayscale's wallets to Coinbase. This transfer has caught the attention of investors and analysts.\n\nThere has been ongoing drama between Grayscale and other nine ETFs in the past 20 days. Despite this, Bitcoin is currently trading at $43,300. It is interesting to note that Grayscale has been selling a large amount of BTC, more than what is required by FTX. The reasons behind this move are unclear.\n\nIn other news, FTX has dumped around $1 billion of Grayscale's Bitcoin ETF. The anticipation for Ethereum ETF continues, and the launch of InQubeta has become highly anticipated. The outflows and sell pressure from Grayscale's ETF have slowed down, while the buy pressure for BlackRock and Fidelity remains strong. This decrease in supply coincides with the approaching halving, which is expected to drive the price of Bitcoin up.\n\nThere have been claims and FUD (fear, uncertainty, and doubt) surrounding Grayscale's Bitcoin ETF. However, in their newsletter, they evaluate these claims and provide analysis on ETF flows and Bitcoin whales' holdings. They also highlight underreported factors that could potentially impact the market.\n\nInvestors view Grayscale's recent transfers of Bitcoin to Coinbase Prime as a bullish move. This is seen as a positive sign for the market. Overall, Grayscale's influence in the industry is being closely monitored, and the market is eagerly awaiting the price movements in the coming days.","data":[3,0,2,0,1,3,1,0,0,0,2,3,0,3,1,3,7,1,4,1,1,0,34,0,6,2,1,0,1,0,4,1,1,5,8,2,0,1,0,1,2,0,3,2,1,0,1,6,1,2,2,0,2,2,1,0]},{"label":"Tether","topics":"tether,q4,profit,billion,quarter","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Tether (USDT): There are multiple mentions of Tether, a stablecoin, and its activities. It is mentioned that Tether outperformed Goldman Sachs in terms of earnings, and it is also highlighted that Tether is the 16th largest holder of US Treasuries. The injection of 1 billion USDT into the crypto market is mentioned as well.\n\n2. Bitcoin (BTC): Bitcoin's price and its surge beyond $43,000 are discussed. The correlation between Tether's injection of 1 billion USDT and the Bitcoin breakout is mentioned. The profitability of Bitcoin and its market cap are also highlighted.\n\n3. Crypto Market: The overall state of the crypto market is mentioned, with references to altcoins, altseason, and market correction. The impact of Tether's activities on the market is discussed.\n\n4. Maker Protocol: The profitability of Spark, the core lending engine of the Maker Protocol, is mentioned. It is stated that Spark is earning more annualized fees than any other vault.\n\n5. USDC: A comparison is made between Tether (USDT) and USDC, another stablecoin. USDT is described as the de facto digital USD Eurodollar, preferred by corporations and high-net-worth individuals operating beyond US borders, while USDC is establishing itself as a traditional finance go-to for digital USD.\n\n6. P2P Lending Protocol: The launch of a P2P lending protocol called Neptune is mentioned, along with its Total Value Locked (TVL) and supplied amounts.\n\n7. Financial News: Various financial news related to Tether and Bitcoin are mentioned, including Tether's purchase of $800 million worth of Bitcoin and its record profit in Q4 driven by T-bills.\n\nOverall, the key topics revolve around Tether's activities, Bitcoin's price and market performance, the general state of the crypto market, the Maker Protocol, USDT vs. USDC, and financial news related to Tether and Bitcoin.","data":[2,1,1,2,2,0,2,0,1,0,0,0,0,0,1,2,0,0,0,2,2,3,2,3,1,1,2,0,0,1,1,0,4,0,3,3,0,0,0,2,3,6,0,5,3,2,0,1,2,2,1,1,0,5,44,0]},{"label":"Halving","topics":"halving,blocks,days,block,april","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter are:\n\n1. Bitcoin Halving: There is a countdown to the Bitcoin halving event, which is expected to occur in 75 days. People are discussing the potential impact of the halving on the price of Bitcoin and the remaining number of blocks until the event.\n\n2. Node Churn and Vault Migration: There is mention of node churn starting at a specific block number, indicating changes in the network. Additionally, there is talk of vaults migrating, which could suggest movement of funds or changes in storage solutions.\n\n3. Bitcoin Mining: The message mentions that 93.4% of all BTC has been mined, with only 1,386,000 BTC left to mine. This highlights the scarcity of Bitcoin and its limited supply.\n\n4. Countdown and Market Speculation: There are countdowns to the halving event, with discussions about the market's potential reaction. Some speculate that the market may experience a significant price increase, while others believe there are still challenges to overcome.\n\n5. Crypto Portfolio and Breakouts: The message suggests making the best decisions for crypto portfolios, including being prepared for potential market dumps. The mention of finding breakouts indicates a focus on identifying investment opportunities.\n\n6. Institutional Adoption: The interview with Hany Rashwan, Co-founder & CEO of 21Shares, highlights the growing interest of institutions in allocating to Bitcoin within the next 3-6 months. This suggests a positive outlook for institutional adoption of cryptocurrencies.\n\nOverall, the key topics revolve around the upcoming Bitcoin halving, mining statistics, market speculation, portfolio management, and institutional involvement in the crypto industry.","data":[4,0,0,1,17,4,9,2,0,1,1,5,1,12,0,0,0,0,2,3,0,0,10,1,0,0,0,0,0,1,2,1,6,2,0,1,0,4,3,1,1,0,1,1,3,0,1,0,2,1,1,2,0,1,0,0]},{"label":"Blackrock holding BTC","topics":"blackrock,ibit,fidelity,billion,etf","description":"The key topics discussed in the given messages from Twitter are:\n\n1. BlackRock's ownership of Bitcoin: The messages mention that BlackRock now owns 52,000 Bitcoins and their Bitcoin ETF (IBIT) is expected to cross $2 billion in assets. BlackRock's Bitcoin ETF has achieved $2 billion in assets under management within two weeks. The price gains of Bitcoin have contributed to BlackRock's ETF surpassing $2 billion in assets.\n\n2. BlackRock's interest in Silk Road Bitcoin: The messages suggest that BlackRock is interested in acquiring Silk Road Bitcoin, comparing it to a puppy staring at treats. This indicates that BlackRock is actively exploring investment opportunities in the cryptocurrency market.\n\n3. BlackRock's competition with other investment companies: The messages mention that BlackRock's IBIT ETF holds almost 50,000 Bitcoins and has crossed $2 billion in inflows. This indicates that BlackRock is leading the race in the Bitcoin ETF market, competing with other investment companies.\n\n4. Blackstone's investment in data centers: The messages briefly mention that Blackstone has made a $25 billion bet on data centers, which is considered one of their best investments. This highlights Blackstone's focus on the data center industry.\n\n5. Growing influence of cryptocurrencies in mainstream finance: The messages state that BlackRock's Bitcoin investments exceed $2.18 billion, emphasizing the increasing influence of cryptocurrencies in mainstream finance. This suggests that traditional finance is embracing cryptocurrencies as viable investment options.\n\n6. Failure of spot Bitcoin ETF projects: The messages acknowledge that spot Bitcoin ETF projects are considered a failure. However, they highlight the trading activity of BlackRock's IBIT ETF on Nasdaq, indicating that it is still actively traded.\n\nOverall, the key topics discussed in the messages revolve around BlackRock's involvement in the Bitcoin market, their competition with other investment companies, and the growing influence of cryptocurrencies in mainstream finance.","data":[2,0,0,0,10,3,8,0,0,2,2,2,0,0,1,0,15,2,1,1,0,1,0,12,3,1,1,2,0,1,1,1,1,3,0,4,0,0,0,2,1,3,0,1,1,3,0,0,3,1,2,2,2,1,1,0]},{"label":"Airdrops","topics":"airdrop,airdrops,dmail,farming,season","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Airdrops: The messages mention several upcoming airdrops in the crypto industry, including the most anticipated airdrop since a certain event. The details of these airdrops are yet to be revealed, but participants who complete the required tasks will have a chance to share a prize pool of $10,000 equivalent to a specific cryptocurrency.\n\n2. Solana Ecosystem: There is a mention of over a billion dollars in airdrops that are expected to hit the Solana ecosystem in the next few months. The previous occurrence of airdrops on a smaller scale resulted in increased DEX volumes, MEV revenue, and the onboarding of hundreds of thousands of new wallets. This trend is seen as strongly accelerating.\n\n3. Web3 Token Drops: The dislike for the mentality of \"If you want to be successful in Web3, just drop a token\" is expressed. The mention of previous massively hyped airdrops like $SOS, $GAS, $LOOKS, and $X2Y2 questions the long-term impact of such token drops on the ecosystem, despite the short-term price pumps.\n\n4. Parcl Airdrop: The announcement of the live Parcl Airdrop Season 2 is made. Participants who started farming early received an additional 5% point boost, and the farming opportunity is still available until the drop. A guide is provided for those who haven't started yet.\n\n5. Dogelon Mars Airdrop: The expansion of Dogelon Mars to Solana Phase 3 is announced. 500 PYTH stakers were randomly selected to receive 300 million ELON tokens on Solana. Phase 3 is set to continue, offering more rewards through an even bigger airdrop.\n\n6. Free Airdrops: A list of free airdrops is shared, promising the opportunity to make thousands for early participants. One of the mentioned projects is Mode Network, which received a $6 million grant from OP. Participants can join using a referral link, but it is emphasized to do thorough research before participating.\n\nOverall, the key topics revolve around upcoming airdrops, particularly in the Solana ecosystem, and the discussion of the impact and effectiveness of token drops in the Web3 space.","data":[0,17,1,1,0,0,0,0,1,0,2,1,2,0,4,2,1,3,4,6,4,1,2,2,0,1,0,1,4,0,2,1,1,2,2,0,0,3,4,2,2,4,1,1,2,3,2,1,0,2,0,3,1,1,1,0]},{"label":"FTX bankcruptcy","topics":"ftx,customers,bankruptcy,expects,exchange","description":"The key topics discussed in the given messages from Twitter are:\n\n1. FTX's decision to repay customers in full: FTX, a crypto exchange, has chosen to abandon its plans to relaunch and instead liquidate its assets to fully repay its customers who were affected by the collapse. This move is seen as surprising and unexpected, as FTX is selling crypto and stockpiling cash to fulfill its repayment obligations.\n\n2. Celsius emerging from Chapter 11: Celsius, another crypto company, has emerged from Chapter 11 bankruptcy and has started distributing over $3 billion worth of cryptocurrency to its creditors. This development indicates progress in the company's restructuring efforts.\n\n3. FTX's commitment to pay crypto customers in full: FTX's lawyers have stated in a court hearing that the company expects to pay its crypto customers in full during the bankruptcy liquidation process. FTX has also mentioned that it will not restart its crypto exchange as no buyers have come forward.\n\n4. Customer and creditor reimbursement: Both FTX and Celsius have assured their customers and creditors that they will likely receive full reimbursement for their losses. FTX has stated that customers and creditors who can prove their losses will get back all of their money, while Celsius is distributing cryptocurrency to its creditors.\n\n5. FTX's restructuring plan: FTX aims to achieve full customer repayment without relaunching its exchange. The company has abandoned its previous plans and is focusing on liquidating its assets to fulfill its repayment obligations.\n\n6. Chris Ferraro's performance bonus: There is a mention of Chris Ferraro cashing a $1 million performance bonus check, which is related to the price of BTC going up and claiming to have secured higher distribution for creditors. This information suggests the involvement of individuals in the financial aspects of the crypto industry.\n\n7. Blokpax's commitment to collectors: A tweet mentions that Blokpax, a company, is dedicated to honoring collectors and protecting the value of their card equity. This statement implies that Blokpax prioritizes the interests of collectors in the crypto industry.\n\n8. Allegations against FTX: There are allegations made against FTX, stating that the company did not have the assets and resorted to illegal activities such as stealing user funds to make investments. These allegations highlight potential legal issues and controversies surrounding FTX.\n\nOverall, the key topics revolve around the financial situations, restructuring efforts, and legal aspects of FTX and Celsius, as well as the commitment of companies like Blokpax to their customers and collectors in the crypto industry.","data":[4,0,1,7,0,0,3,1,1,2,0,3,4,2,0,1,1,8,1,26,0,1,0,0,2,0,0,2,0,1,0,0,1,0,0,2,2,0,1,6,1,2,0,0,4,2,0,2,0,2,0,0,2,1,0,1]},{"label":"Thoughts on BTC price","topics":"btcusdt,bybit,btc,long,leverage","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. BTC Long Positions: Several users mentioned that they have filled BTC long positions, indicating their optimism about the price of Bitcoin. The amounts invested in these positions range from $2,096,243 to $4,343,538.\n\n2. Price Predictions: Users shared their opinions on the future price of Bitcoin. Some expressed confidence that the price would increase, while others mentioned waiting for a dip or a rip in the price.\n\n3. Bybit: The trading platform Bybit was mentioned in multiple messages, indicating its popularity among crypto traders.\n\n4. Hodling and Lambo: The term \"Hodl\" was mentioned, which refers to holding onto cryptocurrencies instead of selling them. Additionally, the phrase \"Lambo soon\" was used, which is a common expression among crypto enthusiasts, symbolizing the desire for financial success.\n\n5. Not Your Keys, Not Your Bitcoin: A user mentioned the importance of owning the private keys to one's Bitcoin, emphasizing the need for self-custody and security.\n\n6. Bitcoin-Inquisition GitHub Pull Request: A reference was made to a GitHub pull request related to the Bitcoin-Inquisition project, specifically mentioning the \"CSFS\" and \"IK\" enhancements.\n\n7. CryptoPortugues and Bitcoin Scribbles: The user CryptoPortugues mentioned the listing of the Bitcoin Scribbles collection on OKX, a marketplace for digital assets. The collection is described as a high-quality inscription with various file sizes and a community Discord channel.\n\n8. VWAP Bands and Price Analysis: A technical analysis of Bitcoin's price was mentioned, specifically referring to the development of yearly VWAP (Volume-Weighted Average Price) bands and the potential for price movement within these bands.\n\n9. Amicable Numbers and BOINC Project: The progress of the Amicable Numbers project, a part of the BOINC (Berkeley Open Infrastructure for Network Computing) project, was mentioned. It was stated that Part 2 of the search is nearly finished, and the beta test for Part 3 has started.\n\nOverall, the messages from Twitter indicate discussions about BTC long positions, price predictions, trading platforms, self-custody of Bitcoin, GitHub pull requests, digital asset collections, technical price analysis, and cryptocurrency-related projects.","data":[0,0,0,0,1,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,63,0,0,0,0,0,0,0,1,1,2,0,1,1,0,1,1,0,1,1,0,0,0,1,0,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-4.ts b/priv/repo/major_topics_seed/data-4.ts deleted file mode 100644 index a98eb358ed..0000000000 --- a/priv/repo/major_topics_seed/data-4.ts +++ /dev/null @@ -1,222 +0,0 @@ -export const NARRATIVES = { - labels: [ - '25.01.24', - '26.01.24', - '26.01.24', - '26.01.24', - '26.01.24', - '26.01.24', - '26.01.24', - '26.01.24', - '27.01.24', - '27.01.24', - '27.01.24', - '27.01.24', - '27.01.24', - '27.01.24', - '27.01.24', - '27.01.24', - '28.01.24', - '28.01.24', - '28.01.24', - '28.01.24', - '28.01.24', - '28.01.24', - '28.01.24', - '28.01.24', - '29.01.24', - '29.01.24', - '29.01.24', - '29.01.24', - '29.01.24', - '29.01.24', - '29.01.24', - '29.01.24', - '30.01.24', - '30.01.24', - '30.01.24', - '30.01.24', - '30.01.24', - '30.01.24', - '30.01.24', - '31.01.24', - '31.01.24', - '31.01.24', - '31.01.24', - '31.01.24', - '31.01.24', - '31.01.24', - '31.01.24', - '01.02.24', - '01.02.24', - '01.02.24', - '01.02.24', - '01.02.24', - '01.02.24', - '29.01.24', - '31.01.24', - '28.01.24', - ], - datasets: [ - { - label: 'Vitalik Buterin', - topics: 'ai,vitalik,vitalikbuterin,tech,technology', - description: - "The key topics discussed in the given messages from Twitter are as follows:\n\n1. Artificial Intelligence (AI): The messages mention the transformative power of AI in various industries, including sales and enterprise. It is highlighted that AI will bring significant changes and generate new opportunities. However, there is also a mention of a CFO's statement that AI products may not drive meaningful revenue in 2024.\n\n2. Generative AI: The messages discuss generative AI and its potential in the enterprise. There is a link to a year in review article that provides insights and predictions about generative AI. Additionally, there is a cautionary note about embracing generative AI with control to mitigate risks.\n\n3. Crypto Industry: The messages mention cryptocurrencies like Bitcoin (BTC) and specific crypto tokens such as $AI, $AGI, $ORAI, and $FET. The convergence of crypto and AI is highlighted as the future, and there is a recommendation to invest in certain crypto tokens.\n\n4. Data Leak and Investigations: There is a mention of a data leak impacting a subset of customers of a company called Anthropic. It is noted that this incident occurred just prior to an investigation by the Federal Trade Commission (FTC).\n\n5. Volkswagen and AI: Volkswagen is mentioned as setting up its own AI lab, indicating the car industry's interest in embracing AI technology.\n\n6. AI Influencers on TikTok: There is a demand for action against AI influencers on TikTok, although the specific concerns or issues are not mentioned.\n\n7. AI Art and Music: The messages refer to AI-generated glitch videos, trash music, and AI art. Links are provided to access these creations.\n\n8. Webinar on Genius AI Token: A beginner-level webinar is mentioned for the Genius AI token, highlighting the simplicity of the GENI language and the importance of avoiding scam coins.\n\n9. Event featuring Black Dragon and Cosmose: An event is promoted, featuring Black Dragon and Miron Mironiuk, discussing AI and the world's most used Web3 dApp called KAIKAINOW.\n\nOverall, the key topics discussed in the given messages revolve around the transformative potential of AI, its intersection with the crypto industry, concerns about data leaks and AI influencers, and various applications of AI in different sectors.", - data: [ - 21, 50, 11, 5, 6, 0, 6, 3, 6, 8, 14, 13, 7, 7, 13, 11, 4, 13, 8, 9, 4, 8, 7, 7, 3, 9, 13, 4, - 1, 3, 6, 5, 7, 11, 7, 9, 13, 10, 13, 11, 6, 14, 7, 6, 5, 8, 17, 9, 7, 7, 6, 8, 5, 7, 8, 0, - ], - }, - { - label: 'Solana', - topics: 'solana,sol,mc,reversal,tg', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Solana (SOL): The messages mention that Solana is considered to be more decentralized than any other crypto network at the moment. It is accelerating and has multiple software clients and forks. The messages also highlight the recent DeFi run in the Solana ecosystem and suggest that it will experience a similar bull run. Solana is mentioned as one of the safest bets in crypto, along with LINK and INJ. The chart analysis shows that Solana has broken above the 25-day EMA and is expected to retake $100 easily.\n\n2. NFTs on Solana: The messages mention the availability of a trading bot called Mint a Dobutsu, which works on Solana or Ethereum. It is described as the best signals trading bot in the market and offers fantastic NFT art with utility. The messages suggest that eventually, everyone will catch on to NFTs on Solana, indicating its growing popularity.\n\n3. Solana's Growth and Attention: The messages highlight the significant phase of evolution and growth in the crypto market, with Solana capturing much attention. The messages express love for Solana and mention the minting of various projects on Solana in the past. The innovation and leadership of MagicEden, a project on Solana, are also appreciated.\n\n4. Uranus (SOL) Listing: The messages mention that URANUS (SOL) has been listed on Coin Gecko and encourage checking its price and social media presence. The messages suggest contacting @growerscrypto for CMC/CG listing.\n\n5. Positive Sentiment towards Solana: The messages express joy in seeing people who stayed invested in Solana during tough times being heavily rewarded now. Solana is described as the chain that was initially shat on and laughed at but now has the greatest mindshare. Being Solana compatible is considered bullish for projects.\n\n6. Polkadot and PhalaNetwork: The messages briefly mention the average monthly transactions recorded by Polkadot parachains and PhalaNetwork. These networks are recognized for their transaction processing capabilities and incentives for computing power and staking.\n\n7. Miscellaneous Mentions: The messages include references to DOGE coin, LP burning and renouncing, community takeovers, and ATHs (All-Time Highs) in the crypto market. There are also mentions of specific Twitter accounts and links to external resources.\n\nOverall, the key topics discussed in the given messages revolve around Solana's decentralization, growth, and popularity, NFTs on Solana, and mentions of other cryptocurrencies and networks like Polkadot and PhalaNetwork.", - data: [ - 7, 9, 4, 5, 0, 0, 4, 9, 6, 16, 8, 8, 3, 7, 4, 3, 3, 4, 9, 7, 4, 5, 6, 10, 7, 7, 1, 4, 4, 10, - 12, 4, 1, 8, 6, 7, 2, 11, 7, 9, 7, 5, 6, 36, 8, 3, 5, 6, 10, 5, 7, 3, 6, 5, 4, 7, - ], - }, - { - label: 'Ethereum ecosystem', - topics: 'ethereum,eth,zone,analyst,ether', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry, specifically Ethereum ($ETH), include:\n\n1. Market sentiment towards Ethereum: There are mixed opinions about the future of Ethereum, with some suggesting that it may not be the future of the industry. However, others believe that Ethereum's options trading volume hitting an all-time high and its positive impact on ETH's GDP indicate a bullish market sentiment.\n\n2. Technical analysis: The use of EMA13 and EMA65 indicators is recommended for analyzing Ethereum's price movement on any time frame. Additionally, there is a mention of a potential reversal pattern forming up, indicating a possible break in the downtrend and a bounce in ETH's price.\n\n3. Options trading volume: Ethereum's options trading volume surged to a record $17.9 billion in January, suggesting increased market activity and interest in ETH.\n\n4. Price levels to watch: The zone around $2,172 is highlighted as an important level to monitor, as a break below could signal a decline to anywhere between $2,100 - $2,000.\n\n5. Price predictions: Some individuals predict that Ethereum could reach $3,500-4,000 in the next 3-6 months, citing factors such as the Dencun upgrade, Ethereum Spot ETF hype, and Bitcoin rotation after halving.\n\n6. Comparison with Bitcoin: Ethereum's price movement is compared to Bitcoin, with a suggestion that Ethereum looks clearer and may experience a potential dump followed by a bounce back from a buying zone.\n\n7. International coverage: There is a mention of an article in Japanese discussing the potential reversal of Bitcoin and its inclusion in a new NISA stock.\n\nOverall, the messages reflect discussions about Ethereum's market sentiment, technical analysis, options trading volume, price levels, price predictions, comparison with Bitcoin, and international coverage.", - data: [ - 6, 6, 3, 2, 0, 0, 2, 2, 5, 3, 7, 6, 3, 2, 0, 1, 86, 5, 6, 5, 1, 4, 5, 4, 6, 1, 0, 8, 6, 9, - 6, 3, 3, 1, 2, 5, 2, 6, 3, 4, 5, 5, 4, 3, 5, 3, 0, 8, 5, 3, 7, 4, 1, 2, 6, 0, - ], - }, - { - label: 'Jupiter ($JUP)', - topics: 'jup,jupiter,jupiterexchange,airdrop,uniswap', - description: - 'The key topics discussed in the given messages from Twitter are:\n\n1. Jupiter (JUP) Airdrop: There is a mention of an airdrop happening on the Jupiter Exchange. The message advises people to be careful and avoid getting phished during the airdrop.\n\n2. Decentralized Web3 Alpha on JUP: The decentralized web3 alpha on Jupiter (JUP) is mentioned, indicating the development of a decentralized platform on the Jupiter Exchange.\n\n3. SRM Entertainment Files S-1 Registration for Spin-Off from Jupiter Wellness: This message highlights the filing of an S-1 registration for a spin-off from Jupiter Wellness by SRM Entertainment.\n\n4. Jupiter Exchange Gaining Traction: The message questions why Jupiter Exchange is gaining traction and encourages readers to follow CoinGapeMedia for the latest crypto news.\n\n5. WEN and JUP Airdrop: The message discusses an airdrop involving WEN and JUP on Jupiter Exchange. It suggests that WEN holders may receive some JUP tokens in the future.\n\n6. Binance Listing Jupiter (JUP): Binance is set to list Jupiter (JUP) on January 31, 2024. The trading pairs mentioned include JUP/USDT, JUP/FDUSD, and JUP/TRY.\n\n7. 17-Year-Old Makes $1M from JUP Airdrop: This message highlights the success of a 17-year-old who made $1 million from the JUP airdrop. It emphasizes the potential opportunities and bullish sentiment in the crypto market.\n\n8. Initial Circulation Supply of JUP Reduced: The initial circulation supply of JUP has been reduced to 1.35 billion. The message speculates on how this reduction may affect price discovery.\n\n9. Jupiter Exchange as a DEX Swap Aggregator: Jupiter Exchange is described as the leading DEX swap aggregator on Solana. It is compared to Uniswap or 1inch on Ethereum.\n\n10. LBank and Gateio Listing JUP: LBank and Gateio are mentioned as exchanges listing JUP for trading with leverage. The messages provide links for more details and trading.\n\n11. CatinJup Meme Project: The CatinJup meme project linked to JUP on Solana is mentioned. It is compared to the success of Dogwifhat and is speculated to be a potential 100x gem.\n\nOverall, the key topics discussed revolve around the Jupiter Exchange, JUP token, airdrops, listings on exchanges, and the potential opportunities and developments in the crypto industry.', - data: [ - 8, 3, 2, 10, 0, 0, 3, 5, 7, 4, 13, 7, 2, 3, 1, 4, 4, 5, 6, 6, 3, 7, 3, 13, 9, 4, 1, 9, 12, - 10, 2, 2, 5, 6, 3, 5, 3, 4, 5, 1, 3, 6, 2, 6, 4, 7, 6, 6, 14, 11, 3, 3, 0, 3, 3, 4, - ], - }, - { - label: 'XRP, hack and Chris Larsen', - topics: 'xrp,ripple,hacked,stolen,chris', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Blackrock's decision not to launch a Ripple XRP ETF.\n2. Mention of XRP as one of the most important cryptocurrencies after Bitcoin.\n3. Hacking incidents involving Chris Larsen and Brad Garlinghouse's XRP accounts, as well as their crypto wallets containing Bitcoin and Ethereum.\n4. Stolen funds from Ripple being laundered through various exchanges.\n5. Introduction to Radix DLT and its cryptocurrency XRD.\n6. Analysis of XRP's price movement and potential breakout.\n7. Chris Larsen's personal accounts being hacked for $112 million worth of XRP.\n8. On-chain data showing movements by XRP whales.\n9. Increase in the number of distinct wallets holding XRP coins on the XRPLedger.\n10. Ripple executive's involvement in a massive XRP hack and Tether's significant profit.\n11. Discussion about the possibility of Ripple applying for an ETF and the importance of a futures ETF for XRP.\n12. Sharing of an XRP chart and analysis of its price movement.\n\nThese topics provide insights into the current discussions and events surrounding the crypto industry, specifically related to Ripple and its cryptocurrency XRP.", - data: [ - 6, 6, 3, 6, 0, 0, 4, 8, 1, 7, 4, 1, 3, 2, 2, 4, 5, 3, 2, 8, 1, 2, 5, 3, 4, 2, 3, 3, 1, 5, 8, - 2, 3, 2, 1, 2, 3, 6, 2, 5, 14, 4, 6, 3, 0, 2, 2, 2, 1, 4, 2, 2, 5, 2, 0, 0, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coin', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Memecoins: Memecoins are a popular topic of discussion in the crypto industry. People are asking for recommendations and opinions on which memecoin deserves more attention. Some specific memecoins mentioned include $FLOKI, $PEPE, $SHIB, $DOGE, $MEME, $KISHU, $SHINJA, $KIBA, $BabyDoge, $AirCoin, $Crogecoin, $CheemsInu, $FegToken, $SAFEMOON, and $Floki.\n\n2. Meme culture: The messages also mention various memes related to the crypto industry. There are references to videos, animations, and memes that describe different aspects of the industry. Meme culture is seen as a way to onboard new people to crypto.\n\n3. Ethereum's ETF Buzz: There is a mention of the fading buzz around Ethereum's ETF and the emergence of a new memecoin as the new crypto spotlight. This indicates a shift in attention and interest within the crypto community.\n\n4. Specific memecoins: Some specific memecoins are highlighted for their potential and value. $Floki is mentioned as the most undervalued memecoin with strong fundamentals. Another memecoin called #Teddybear is believed to become the number one memecoin in the entire crypto industry, not just limited to Pulsechain.\n\n5. Social media platforms: Binance is mentioned as a platform that hosts multiple memecoins, including $FLOKI, $PEPE, $SHIB, $DOGE, and $MEME. This indicates the popularity and availability of memecoins on social media platforms.\n\nOverall, the discussion revolves around memecoins, meme culture, specific memecoin recommendations, and the shifting attention within the crypto industry.", - data: [ - 2, 0, 2, 3, 0, 0, 1, 4, 8, 0, 3, 1, 1, 3, 1, 2, 2, 2, 4, 5, 1, 6, 1, 2, 4, 1, 7, 5, 6, 1, 4, - 40, 4, 3, 3, 2, 2, 1, 1, 2, 1, 5, 1, 4, 1, 3, 2, 7, 0, 1, 3, 3, 3, 1, 2, 1, - ], - }, - { - label: 'Shiba Inu Coin', - topics: 'shiba,shib,inu,burn,byte', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Shiba Inu (SHIB) Price Rally: The messages mention that the price of Shiba Inu (SHIB) cryptocurrency might be primed for a bull rally. It is highlighted that if SHIB captures only 5% of the crypto market cap, its price could increase significantly. Additionally, it is mentioned that over 12 million SHIB tokens have been vaporized, which could have an impact on the price. The messages also discuss the burn rate of SHIB, which has seen a significant increase.\n\n2. Byte (BYTE) vs. SHIB: There is a mention of Byte (BYTE) cryptocurrency potentially flipping SHIB. It is suggested that if one has access to Grok AI, they can ask about Byte, which is referred to as the world's first AI dog. The messages also mention that Byte is the dog to Elon Musk's Grok AI. It is implied that BYTE could be the next dog meme for the bull run.\n\n3. Other Cryptocurrencies and Projects: The messages briefly mention other cryptocurrencies and projects. Ethiba Inu is highlighted as a decentralized meme token on the Ethereum Blockchain. It is mentioned that 75% of its initial supply has been burned. There is also a mention of XRP being pressured in a descending channel and the growth of Cardano (ADA) being questioned. The Shibarium project by FEF_TOKEN is mentioned to be having a presale on MARSWAP.\n\nOverall, the key topics discussed in the messages revolve around the price rally of Shiba Inu (SHIB), the potential competition from Byte (BYTE), and mentions of other cryptocurrencies and projects.", - data: [ - 0, 4, 0, 1, 2, 0, 1, 1, 8, 2, 0, 1, 1, 0, 3, 0, 3, 3, 1, 3, 0, 1, 1, 0, 1, 2, 40, 0, 0, 0, - 2, 3, 4, 2, 0, 1, 3, 1, 0, 1, 2, 1, 30, 2, 0, 2, 1, 0, 1, 2, 1, 0, 2, 2, 1, 1, - ], - }, - { - label: 'NFTs', - topics: 'nfts,nft,pfp,physical,collection', - description: - "Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. NFTs (Non-Fungible Tokens): There are various discussions about NFTs, including understanding their concept, the success and failure of derivative NFT projects, the importance of different factors in NFT projects, and the potential of cross-chain portable NFTs.\n\n2. Uniswap: Some users are experiencing problems with Uniswap, specifically related to the token amount not being displayed correctly in their wallets.\n\n3. Adam and @EmblemVault: There is mention of Adam and @EmblemVault, indicating that they are involved in something interesting related to the crypto industry.\n\n4. NFT Collections: Individuals are excited about acquiring NFTs and participating in events such as NFT Paris. Specific mentions include @RGBWorldWide, @TheeHustleHouse, @Reaper_NFT, @BoredApeYC, and Made By Apes.\n\n5. Christie's Auction: Christie's is auctioning three original CREEPS NFTs from Dada's 2017 collection, generating interest among collectors.\n\n6. Personalization and NFTs: Brands are exploring the use of NFTs to personalize content and enhance the connection with customers.\n\n7. Castle Apeskull: A fictional location called Castle Apeskull is mentioned, which holds power in the NFT Universe.\n\n8. Reflection on the NFT Space: There is a reflection on the success and challenges faced by the NFT space, including the dominance of PFPs (Profile Picture Projects) and generative art, as well as the overall growth and evolution of the industry.\n\n9. NFT Images on the Blockchain: A promotion of NFT images on the blockchain is mentioned, highlighting their impact on the buying and selling of digital art.\n\nOverall, the discussions revolve around NFTs, their various aspects, related projects, and the broader implications for the crypto industry.", - data: [ - 2, 1, 4, 1, 1, 0, 5, 0, 6, 2, 0, 1, 1, 2, 5, 3, 3, 4, 2, 2, 1, 3, 3, 4, 4, 1, 1, 1, 2, 2, 3, - 3, 2, 12, 4, 3, 2, 8, 4, 1, 0, 5, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 2, 3, 2, 1, - ], - }, - { - label: 'Bitcoin ETF', - topics: 'etf,etfs,bitcoin,futures,shock', - description: - "The key topics currently discussed in the crypto industry on Twitter are:\n\n1. Bitcoin ETFs: There is a lot of excitement and anticipation surrounding Bitcoin ETFs. People are discussing the potential benefits and impact of these ETFs on the market. Some believe that Bitcoin ETFs could help overcome the unit bias and make Bitcoin more accessible to newcomers.\n\n2. Altcoin ETFs: There were rumors about a specialized Altcoin basket ETF, but it has been proven to be untrue. However, the launch of ETFs in general is seen as a huge success.\n\n3. Bitcoin Supply Shock: There is a discussion about the setup of a Bitcoin supply shock, which is considered to be the best seen in years. This could potentially have an impact on the price of Bitcoin.\n\n4. Proof of Reserves: There is a mention of how ETF issuers can use Proof of Reserves to provide transparency in Bitcoin. @hosekiapp and @BitwiseInvest are mentioned as providers of the technology for this.\n\n5. Comparison to S&P 500: Some are discussing how Bitcoin ETFs might make crypto more like the S&P 500. However, there are concerns about this and why it could be a bad thing.\n\n6. Impact on Ethereum: After the success of Bitcoin ETFs, there is uncertainty about Ethereum's ETF journey and how it will be affected.\n\n7. Volatility and Stabilization: Spot Bitcoin ETFs are believed to have the potential to lower volatility in BTC over time. Despite volatility following the ETF approvals, BTC's price is said to have a general stabilizing trend over time.\n\n8. Litecoin ETF: There is speculation about who will be the first to file a Litecoin ETF. Litecoin is seen as following Bitcoin's footsteps in various ventures.\n\n9. Potential impact on crypto market: Some believe that Bitcoin ETFs will drive crypto to new all-time highs. Mark Yusko shares his outlook for 2024, discussing the Bitcoin Spot ETF launch and inflows, as well as the opinions of Jamie Dimon, Vanguard, and Merrill Lynch on Bitcoin.", - data: [ - 2, 0, 1, 0, 13, 4, 5, 0, 3, 0, 0, 4, 3, 5, 2, 1, 13, 2, 1, 3, 0, 3, 2, 1, 0, 2, 7, 3, 1, 2, - 1, 2, 1, 6, 4, 0, 1, 0, 3, 3, 1, 1, 2, 0, 4, 0, 1, 0, 5, 2, 1, 0, 3, 4, 0, 0, - ], - }, - { - label: 'GrayScale', - topics: 'grayscale,outflow,inflow,net,outflows', - description: - "Grayscale, a prominent player in the crypto industry, has made significant moves in the market recently. They have transferred a total of 6,534 Bitcoins, worth approximately $274.95 million, to Coinbase Prime. Additionally, another 10,000 BTC were sent from Grayscale's wallets to Coinbase. This transfer has caught the attention of investors and analysts.\n\nThere has been ongoing drama between Grayscale and other nine ETFs in the past 20 days. Despite this, Bitcoin is currently trading at $43,300. It is interesting to note that Grayscale has been selling a large amount of BTC, more than what is required by FTX. The reasons behind this move are unclear.\n\nIn other news, FTX has dumped around $1 billion of Grayscale's Bitcoin ETF. The anticipation for Ethereum ETF continues, and the launch of InQubeta has become highly anticipated. The outflows and sell pressure from Grayscale's ETF have slowed down, while the buy pressure for BlackRock and Fidelity remains strong. This decrease in supply coincides with the approaching halving, which is expected to drive the price of Bitcoin up.\n\nThere have been claims and FUD (fear, uncertainty, and doubt) surrounding Grayscale's Bitcoin ETF. However, in their newsletter, they evaluate these claims and provide analysis on ETF flows and Bitcoin whales' holdings. They also highlight underreported factors that could potentially impact the market.\n\nInvestors view Grayscale's recent transfers of Bitcoin to Coinbase Prime as a bullish move. This is seen as a positive sign for the market. Overall, Grayscale's influence in the industry is being closely monitored, and the market is eagerly awaiting the price movements in the coming days.", - data: [ - 3, 0, 2, 0, 1, 3, 1, 0, 0, 0, 2, 3, 0, 3, 1, 3, 7, 1, 4, 1, 1, 0, 34, 0, 6, 2, 1, 0, 1, 0, - 4, 1, 1, 5, 8, 2, 0, 1, 0, 1, 2, 0, 3, 2, 1, 0, 1, 6, 1, 2, 2, 0, 2, 2, 1, 0, - ], - }, - { - label: 'Tether', - topics: 'tether,q4,profit,billion,quarter', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Tether (USDT): There are multiple mentions of Tether, a stablecoin, and its activities. It is mentioned that Tether outperformed Goldman Sachs in terms of earnings, and it is also highlighted that Tether is the 16th largest holder of US Treasuries. The injection of 1 billion USDT into the crypto market is mentioned as well.\n\n2. Bitcoin (BTC): Bitcoin's price and its surge beyond $43,000 are discussed. The correlation between Tether's injection of 1 billion USDT and the Bitcoin breakout is mentioned. The profitability of Bitcoin and its market cap are also highlighted.\n\n3. Crypto Market: The overall state of the crypto market is mentioned, with references to altcoins, altseason, and market correction. The impact of Tether's activities on the market is discussed.\n\n4. Maker Protocol: The profitability of Spark, the core lending engine of the Maker Protocol, is mentioned. It is stated that Spark is earning more annualized fees than any other vault.\n\n5. USDC: A comparison is made between Tether (USDT) and USDC, another stablecoin. USDT is described as the de facto digital USD Eurodollar, preferred by corporations and high-net-worth individuals operating beyond US borders, while USDC is establishing itself as a traditional finance go-to for digital USD.\n\n6. P2P Lending Protocol: The launch of a P2P lending protocol called Neptune is mentioned, along with its Total Value Locked (TVL) and supplied amounts.\n\n7. Financial News: Various financial news related to Tether and Bitcoin are mentioned, including Tether's purchase of $800 million worth of Bitcoin and its record profit in Q4 driven by T-bills.\n\nOverall, the key topics revolve around Tether's activities, Bitcoin's price and market performance, the general state of the crypto market, the Maker Protocol, USDT vs. USDC, and financial news related to Tether and Bitcoin.", - data: [ - 2, 1, 1, 2, 2, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 2, 3, 2, 3, 1, 1, 2, 0, 0, 1, 1, - 0, 4, 0, 3, 3, 0, 0, 0, 2, 3, 6, 0, 5, 3, 2, 0, 1, 2, 2, 1, 1, 0, 5, 44, 0, - ], - }, - { - label: 'Halving', - topics: 'halving,blocks,days,block,april', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter are:\n\n1. Bitcoin Halving: There is a countdown to the Bitcoin halving event, which is expected to occur in 75 days. People are discussing the potential impact of the halving on the price of Bitcoin and the remaining number of blocks until the event.\n\n2. Node Churn and Vault Migration: There is mention of node churn starting at a specific block number, indicating changes in the network. Additionally, there is talk of vaults migrating, which could suggest movement of funds or changes in storage solutions.\n\n3. Bitcoin Mining: The message mentions that 93.4% of all BTC has been mined, with only 1,386,000 BTC left to mine. This highlights the scarcity of Bitcoin and its limited supply.\n\n4. Countdown and Market Speculation: There are countdowns to the halving event, with discussions about the market's potential reaction. Some speculate that the market may experience a significant price increase, while others believe there are still challenges to overcome.\n\n5. Crypto Portfolio and Breakouts: The message suggests making the best decisions for crypto portfolios, including being prepared for potential market dumps. The mention of finding breakouts indicates a focus on identifying investment opportunities.\n\n6. Institutional Adoption: The interview with Hany Rashwan, Co-founder & CEO of 21Shares, highlights the growing interest of institutions in allocating to Bitcoin within the next 3-6 months. This suggests a positive outlook for institutional adoption of cryptocurrencies.\n\nOverall, the key topics revolve around the upcoming Bitcoin halving, mining statistics, market speculation, portfolio management, and institutional involvement in the crypto industry.", - data: [ - 4, 0, 0, 1, 17, 4, 9, 2, 0, 1, 1, 5, 1, 12, 0, 0, 0, 0, 2, 3, 0, 0, 10, 1, 0, 0, 0, 0, 0, 1, - 2, 1, 6, 2, 0, 1, 0, 4, 3, 1, 1, 0, 1, 1, 3, 0, 1, 0, 2, 1, 1, 2, 0, 1, 0, 0, - ], - }, - { - label: 'Blackrock holding BTC', - topics: 'blackrock,ibit,fidelity,billion,etf', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. BlackRock's ownership of Bitcoin: The messages mention that BlackRock now owns 52,000 Bitcoins and their Bitcoin ETF (IBIT) is expected to cross $2 billion in assets. BlackRock's Bitcoin ETF has achieved $2 billion in assets under management within two weeks. The price gains of Bitcoin have contributed to BlackRock's ETF surpassing $2 billion in assets.\n\n2. BlackRock's interest in Silk Road Bitcoin: The messages suggest that BlackRock is interested in acquiring Silk Road Bitcoin, comparing it to a puppy staring at treats. This indicates that BlackRock is actively exploring investment opportunities in the cryptocurrency market.\n\n3. BlackRock's competition with other investment companies: The messages mention that BlackRock's IBIT ETF holds almost 50,000 Bitcoins and has crossed $2 billion in inflows. This indicates that BlackRock is leading the race in the Bitcoin ETF market, competing with other investment companies.\n\n4. Blackstone's investment in data centers: The messages briefly mention that Blackstone has made a $25 billion bet on data centers, which is considered one of their best investments. This highlights Blackstone's focus on the data center industry.\n\n5. Growing influence of cryptocurrencies in mainstream finance: The messages state that BlackRock's Bitcoin investments exceed $2.18 billion, emphasizing the increasing influence of cryptocurrencies in mainstream finance. This suggests that traditional finance is embracing cryptocurrencies as viable investment options.\n\n6. Failure of spot Bitcoin ETF projects: The messages acknowledge that spot Bitcoin ETF projects are considered a failure. However, they highlight the trading activity of BlackRock's IBIT ETF on Nasdaq, indicating that it is still actively traded.\n\nOverall, the key topics discussed in the messages revolve around BlackRock's involvement in the Bitcoin market, their competition with other investment companies, and the growing influence of cryptocurrencies in mainstream finance.", - data: [ - 2, 0, 0, 0, 10, 3, 8, 0, 0, 2, 2, 2, 0, 0, 1, 0, 15, 2, 1, 1, 0, 1, 0, 12, 3, 1, 1, 2, 0, 1, - 1, 1, 1, 3, 0, 4, 0, 0, 0, 2, 1, 3, 0, 1, 1, 3, 0, 0, 3, 1, 2, 2, 2, 1, 1, 0, - ], - }, - { - label: 'Airdrops', - topics: 'airdrop,airdrops,dmail,farming,season', - description: - 'The key topics discussed in the given messages from Twitter are:\n\n1. Airdrops: The messages mention several upcoming airdrops in the crypto industry, including the most anticipated airdrop since a certain event. The details of these airdrops are yet to be revealed, but participants who complete the required tasks will have a chance to share a prize pool of $10,000 equivalent to a specific cryptocurrency.\n\n2. Solana Ecosystem: There is a mention of over a billion dollars in airdrops that are expected to hit the Solana ecosystem in the next few months. The previous occurrence of airdrops on a smaller scale resulted in increased DEX volumes, MEV revenue, and the onboarding of hundreds of thousands of new wallets. This trend is seen as strongly accelerating.\n\n3. Web3 Token Drops: The dislike for the mentality of "If you want to be successful in Web3, just drop a token" is expressed. The mention of previous massively hyped airdrops like $SOS, $GAS, $LOOKS, and $X2Y2 questions the long-term impact of such token drops on the ecosystem, despite the short-term price pumps.\n\n4. Parcl Airdrop: The announcement of the live Parcl Airdrop Season 2 is made. Participants who started farming early received an additional 5% point boost, and the farming opportunity is still available until the drop. A guide is provided for those who haven\'t started yet.\n\n5. Dogelon Mars Airdrop: The expansion of Dogelon Mars to Solana Phase 3 is announced. 500 PYTH stakers were randomly selected to receive 300 million ELON tokens on Solana. Phase 3 is set to continue, offering more rewards through an even bigger airdrop.\n\n6. Free Airdrops: A list of free airdrops is shared, promising the opportunity to make thousands for early participants. One of the mentioned projects is Mode Network, which received a $6 million grant from OP. Participants can join using a referral link, but it is emphasized to do thorough research before participating.\n\nOverall, the key topics revolve around upcoming airdrops, particularly in the Solana ecosystem, and the discussion of the impact and effectiveness of token drops in the Web3 space.', - data: [ - 0, 17, 1, 1, 0, 0, 0, 0, 1, 0, 2, 1, 2, 0, 4, 2, 1, 3, 4, 6, 4, 1, 2, 2, 0, 1, 0, 1, 4, 0, - 2, 1, 1, 2, 2, 0, 0, 3, 4, 2, 2, 4, 1, 1, 2, 3, 2, 1, 0, 2, 0, 3, 1, 1, 1, 0, - ], - }, - { - label: 'FTX bankcruptcy', - topics: 'ftx,customers,bankruptcy,expects,exchange', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. FTX's decision to repay customers in full: FTX, a crypto exchange, has chosen to abandon its plans to relaunch and instead liquidate its assets to fully repay its customers who were affected by the collapse. This move is seen as surprising and unexpected, as FTX is selling crypto and stockpiling cash to fulfill its repayment obligations.\n\n2. Celsius emerging from Chapter 11: Celsius, another crypto company, has emerged from Chapter 11 bankruptcy and has started distributing over $3 billion worth of cryptocurrency to its creditors. This development indicates progress in the company's restructuring efforts.\n\n3. FTX's commitment to pay crypto customers in full: FTX's lawyers have stated in a court hearing that the company expects to pay its crypto customers in full during the bankruptcy liquidation process. FTX has also mentioned that it will not restart its crypto exchange as no buyers have come forward.\n\n4. Customer and creditor reimbursement: Both FTX and Celsius have assured their customers and creditors that they will likely receive full reimbursement for their losses. FTX has stated that customers and creditors who can prove their losses will get back all of their money, while Celsius is distributing cryptocurrency to its creditors.\n\n5. FTX's restructuring plan: FTX aims to achieve full customer repayment without relaunching its exchange. The company has abandoned its previous plans and is focusing on liquidating its assets to fulfill its repayment obligations.\n\n6. Chris Ferraro's performance bonus: There is a mention of Chris Ferraro cashing a $1 million performance bonus check, which is related to the price of BTC going up and claiming to have secured higher distribution for creditors. This information suggests the involvement of individuals in the financial aspects of the crypto industry.\n\n7. Blokpax's commitment to collectors: A tweet mentions that Blokpax, a company, is dedicated to honoring collectors and protecting the value of their card equity. This statement implies that Blokpax prioritizes the interests of collectors in the crypto industry.\n\n8. Allegations against FTX: There are allegations made against FTX, stating that the company did not have the assets and resorted to illegal activities such as stealing user funds to make investments. These allegations highlight potential legal issues and controversies surrounding FTX.\n\nOverall, the key topics revolve around the financial situations, restructuring efforts, and legal aspects of FTX and Celsius, as well as the commitment of companies like Blokpax to their customers and collectors in the crypto industry.", - data: [ - 4, 0, 1, 7, 0, 0, 3, 1, 1, 2, 0, 3, 4, 2, 0, 1, 1, 8, 1, 26, 0, 1, 0, 0, 2, 0, 0, 2, 0, 1, - 0, 0, 1, 0, 0, 2, 2, 0, 1, 6, 1, 2, 0, 0, 4, 2, 0, 2, 0, 2, 0, 0, 2, 1, 0, 1, - ], - }, - { - label: 'Thoughts on BTC price', - topics: 'btcusdt,bybit,btc,long,leverage', - description: - 'The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. BTC Long Positions: Several users mentioned that they have filled BTC long positions, indicating their optimism about the price of Bitcoin. The amounts invested in these positions range from $2,096,243 to $4,343,538.\n\n2. Price Predictions: Users shared their opinions on the future price of Bitcoin. Some expressed confidence that the price would increase, while others mentioned waiting for a dip or a rip in the price.\n\n3. Bybit: The trading platform Bybit was mentioned in multiple messages, indicating its popularity among crypto traders.\n\n4. Hodling and Lambo: The term "Hodl" was mentioned, which refers to holding onto cryptocurrencies instead of selling them. Additionally, the phrase "Lambo soon" was used, which is a common expression among crypto enthusiasts, symbolizing the desire for financial success.\n\n5. Not Your Keys, Not Your Bitcoin: A user mentioned the importance of owning the private keys to one\'s Bitcoin, emphasizing the need for self-custody and security.\n\n6. Bitcoin-Inquisition GitHub Pull Request: A reference was made to a GitHub pull request related to the Bitcoin-Inquisition project, specifically mentioning the "CSFS" and "IK" enhancements.\n\n7. CryptoPortugues and Bitcoin Scribbles: The user CryptoPortugues mentioned the listing of the Bitcoin Scribbles collection on OKX, a marketplace for digital assets. The collection is described as a high-quality inscription with various file sizes and a community Discord channel.\n\n8. VWAP Bands and Price Analysis: A technical analysis of Bitcoin\'s price was mentioned, specifically referring to the development of yearly VWAP (Volume-Weighted Average Price) bands and the potential for price movement within these bands.\n\n9. Amicable Numbers and BOINC Project: The progress of the Amicable Numbers project, a part of the BOINC (Berkeley Open Infrastructure for Network Computing) project, was mentioned. It was stated that Part 2 of the search is nearly finished, and the beta test for Part 3 has started.\n\nOverall, the messages from Twitter indicate discussions about BTC long positions, price predictions, trading platforms, self-custody of Bitcoin, GitHub pull requests, digital asset collections, technical price analysis, and cryptocurrency-related projects.', - data: [ - 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 63, - 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-40.json b/priv/repo/major_topics_seed/data-40.json deleted file mode 100644 index b446598f9c..0000000000 --- a/priv/repo/major_topics_seed/data-40.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["03.10.24","04.10.24","04.10.24","04.10.24","04.10.24","04.10.24","04.10.24","04.10.24","05.10.24","05.10.24","05.10.24","05.10.24","05.10.24","05.10.24","05.10.24","05.10.24","06.10.24","06.10.24","06.10.24","06.10.24","06.10.24","06.10.24","06.10.24","06.10.24","07.10.24","07.10.24","07.10.24","07.10.24","07.10.24","07.10.24","07.10.24","07.10.24","08.10.24","08.10.24","08.10.24","08.10.24","08.10.24","08.10.24","08.10.24","08.10.24","09.10.24","09.10.24","09.10.24","09.10.24","09.10.24","09.10.24","09.10.24","09.10.24","10.10.24","10.10.24","10.10.24","10.10.24","10.10.24","10.10.24","10.10.24"],"datasets":[{"label":"BTC Price","topics":"btc,price,resistance,60k,bitcoin","description":"The key topics currently discussed on Twitter in the crypto industry are:\n1. Bitcoin (BTC) price movements and predictions\n2. Potential surge in Bitcoin price to $103,000\n3. Support levels for Bitcoin at $60,000\n4. Market rebound and reclaiming critical cost-basis\n5. Performance of Bitcoin in past Octobers\n6. Technical analysis of Bitcoin charts and formations\n7. BSP metrics normalization for BTC\n8. Bullish sentiment towards Bitcoin\n9. Programmable tokenomics and $bozo coin\n10. New ATHs on the horizon for Bitcoin","data":[7,11,5,27,104,126,26,42,4,12,13,18,18,13,10,15,12,8,16,16,4,16,3,34,12,11,7,3,10,34,17,5,10,9,9,18,16,38,15,20,27,10,8,31,14,16,17,23,9,5,12,14,11,23,13]},{"label":"BTC","topics":"bitcoin,fiat,money,freedom,understand","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin's unique properties as a form of money\n- The impact of Bitcoin on the world from a psychological perspective\n- The vision and philosophy behind Bitcoin\n- Bitcoin's ability to challenge the status quo and provide financial freedom\n- Confusion around Bitcoin and blockchain forks\n- The practicality of Bitcoin in Africa\n- The potential of storing large amounts of wealth in the mind with Bitcoin\n- The role of Bitcoin lightning in instant payments\n- The debate between Bitcoin and alternative cryptocurrencies\n\nOverall, the discussions on social media highlight the ongoing interest and debate surrounding Bitcoin and its impact on the financial world.","data":[12,7,12,14,86,70,12,10,7,13,19,16,8,14,8,12,7,12,26,20,13,13,13,9,16,18,7,19,22,13,11,14,7,15,12,20,14,13,14,22,19,17,16,21,16,24,20,20,18,12,28,8,14,14,15]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, NFT minting, meme coin investments, upcoming projects like Uniswap v4 and Flaunchgg, the popularity of meme coins compared to other categories like utility tokens, the rise of meme coins in the 2025 cycle, the performance of meme coins in the market, the coexistence of meme coins and non-meme coins, and the upcoming Thetan World meme contest. Investors are discussing strategies for investing in meme coins, the potential of meme coins for wealth creation and mass adoption, and the importance of utility-based growth in the crypto market. The conversation also touches on specific meme coins like $PEPE, $DOGE, $FTM, $S, $sGOAT, and $MEME, as well as projects like All-Stars Coin, CoinMarketCap, and Rollblock. Overall, the sentiment seems to be positive towards meme coins and their potential in the crypto market.","data":[7,11,8,17,5,2,1,14,11,8,10,12,18,11,8,10,14,4,20,11,10,20,11,14,18,12,3,12,7,14,21,204,10,19,13,10,22,12,15,11,13,17,23,13,8,10,7,18,14,20,9,7,8,12,16]},{"label":"CPI","topics":"inflation,cpi,jobs,fed,rate","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding the market impact of various economic indicators and events on cryptocurrencies such as Bitcoin and Dogecoin. The messages mention key topics such as US inflation falling to 2.4%, jobless claims affecting recession risks, port strikes being suspended leading to potential market upside, and Fed officials being divided on interest rate cuts.\n\nAdditionally, there is talk about the US labor market data for September being better than expected, with non-farm payrolls and unemployment numbers surpassing forecasts. The possibility of stagflation is also mentioned, with concerns about job market stagnation and economic growth slowing down.\n\nFurthermore, there is anticipation for the CPI news for September, with experts predicting a 2.3% increase. This news is expected to have a strong impact on Bitcoin and other cryptocurrencies, leading to fluctuations in their prices and the liquidity of long and short orders.\n\nOverall, the messages highlight the importance of keeping track of economic indicators and events to understand their impact on the cryptocurrency market.","data":[10,6,3,5,3,2,28,3,4,5,4,10,5,5,7,12,5,11,13,6,9,5,4,11,4,46,15,4,3,8,33,3,8,2,10,4,3,13,5,23,16,6,9,13,6,8,11,5,8,7,10,1,6,8,17]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Crypto gaming and its potential to become mainstream\n- Launch of new games and expansions on blockchain platforms like Ethereum\n- Integration of physical spaces into virtual experiences\n- Excitement around upcoming games like HEXR, Pixelverse, and Honeycomb\n- Growth of Web3 and its impact on game development and distribution\n- Recognition and awards for innovative game projects in the GameFi space\n- Partnerships between luxury brands like Lamborghini and blockchain companies for Web3 racing games\n\nOverall, the sentiment seems to be positive and optimistic about the future of crypto gaming and the opportunities it presents for both developers and players.","data":[5,7,2,9,0,0,4,4,7,6,6,4,6,7,6,9,3,14,8,7,45,8,15,1,5,9,6,5,13,3,10,1,3,7,11,4,18,3,3,15,7,10,0,5,4,4,5,4,4,4,17,5,9,5,9]},{"label":"AI","topics":"ai,models,agents,decentralized,data","description":"The key topics discussed in the messages from twitter related to AI include:\n1. The advancement of AI technology and its potential impact on various industries.\n2. The growth of the AI market, with predictions of reaching $200 trillion by 2030.\n3. The development of AI tools and applications, such as AI phone companions for seniors.\n4. The differences between traditional AI, AGI, and superintelligence.\n5. The role of AI in job search and resume improvement.\n6. The emergence of decentralized AI platforms and their benefits.\n7. The potential for AI agents to become the main users of blockchain technology.\n8. The rapid advancements in the AI space and its impact on jobs and productivity.\n9. The use of AI for social good, such as hurricane relief efforts and political campaigns.\n10. The review of AI apps for publishing profitable books on Amazon's KDP program.","data":[11,39,6,7,0,0,3,5,4,5,5,2,4,7,3,5,3,2,6,4,11,7,3,8,3,11,3,6,5,1,3,6,2,3,4,2,6,6,5,6,8,7,2,4,6,4,8,8,5,9,9,2,4,4,5]},{"label":"Art","topics":"art,artists,work,digital,collection","description":"The key topics currently discussed in the crypto industry on social media include modern art, medieval art, anonymous art, creating art, NFTs, cryptoart, generative art, cymatics, digital art experiences, minting art, and unique art collections. There is also a focus on the intersection of art and technology, such as using SVG tesselation and on-chain checker listings for digital art. Overall, there is a strong appreciation for various forms of art and the creative process within the crypto community.","data":[7,2,64,6,0,1,2,3,2,5,11,2,8,3,7,1,1,6,6,4,5,2,6,3,4,6,1,6,1,8,11,5,3,4,3,8,3,5,5,5,3,0,1,4,6,8,1,6,5,2,3,1,7,0,6]},{"label":"SUI, APT, and other altcoins","topics":"sui,fud,usdc,sei,native","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- $FUD on $Sui and its impact on the market\n- Integration of $Sui with other cryptocurrencies like Solana, Ethereum, and Base\n- Price predictions and market position of Sui Network ($SUI)\n- Strong runs of Sui ($SUI) and Aptos ($APT) in the past week\n- Leading coins in the crypto market such as $SOL, $SPX, $SUI, $BNB, and $TAO\n- Memes and community engagement around $FUD and $SUI\n- Comparison between Sui and Solana by Charles Hoskinson\n- Launch of PugWifBot for easy trading of Sui coins\n- Live listing of $NAVX on BybitLaunchpool and BybitSpot with Navi Protocol\n\nOverall, the discussions on Twitter suggest a mix of market analysis, community engagement, and speculation about the future of various cryptocurrencies, with a focus on $Sui and its integrations and partnerships.","data":[6,7,2,4,2,1,1,10,9,5,4,10,4,1,4,3,3,6,6,4,5,3,0,8,3,3,3,8,7,5,3,3,7,15,4,6,4,5,4,1,1,2,14,8,3,2,12,2,2,3,3,9,1,2,3]},{"label":"SOL","topics":"solana,sol,ethereum,standard,addresses","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana's potential price movement if Bitcoin hits $48K\n- Solana's increased scalability and adoption in comparison to Ethereum\n- Solana's development activity surge and potential price breakout\n- Solana dApps focusing on mobile user experience\n- Speculation on Solana potentially outperforming Ethereum and Bitcoin in 2025\n- Comparison between Solana and CYBRO as potential Ethereum challengers\n- Updates on SORA Blockchain v4.0.0 and its new features like Improved Aggregate Liquidity Technology (ALT) mechanism.","data":[10,0,5,8,3,2,2,3,4,4,7,9,1,2,6,0,7,4,5,6,2,3,1,6,6,8,6,1,4,6,2,1,2,6,4,1,1,12,2,6,3,7,5,2,18,10,5,3,2,4,4,3,4,4,0]},{"label":"Satoshi Nakamoto","topics":"satoshi,nakamoto,identity,satoshinakamoto,creator","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include speculation about the identity of Satoshi Nakamoto, the creator of Bitcoin. There are rumors and claims about various individuals being Satoshi Nakamoto, such as Peter Schiff, Charlie Lee, Nicolas Kokkalis Nakamoto, and even Elon Musk. Additionally, there is discussion about the potential impact of revealing Satoshi's identity on the crypto market, with some traders buying meme coins based on this speculation. Overall, the community seems divided on the importance of knowing Satoshi's identity, with some viewing it as irrelevant to their reasons for holding Bitcoin. The topic of privacy and scaling in blockchain technology is also being discussed, highlighting the elegant and efficient nature of Nakamoto consensus.","data":[0,3,0,6,1,0,6,1,4,3,4,7,4,4,7,3,2,5,6,3,1,4,6,1,9,0,3,8,4,1,5,2,4,3,7,1,4,3,4,4,9,5,8,1,1,5,2,8,2,3,3,1,4,3,4]},{"label":"HBO documentary about the true identity of Satoshi Nakamoto","topics":"hbo,documentary,satoshi,identity,nakamoto","description":"The key topic currently being discussed on Twitter is the upcoming HBO documentary about the true identity of Satoshi Nakamoto, the pseudonymous creator of Bitcoin. The documentary is generating a lot of buzz and controversy, with some users expressing skepticism and criticism about the claims made in the documentary. The release date of the documentary is set for October 8th, 2024, and it is expected to shed light on the mystery surrounding Satoshi Nakamoto. Some users are excited to watch the documentary, while others are unsure of what to expect. Overall, the HBO documentary on Satoshi Nakamoto is a hot topic of discussion within the crypto community on Twitter.","data":[3,1,2,4,2,1,3,1,2,4,0,4,0,1,29,3,2,1,2,9,2,5,3,3,4,4,5,4,1,1,2,4,4,13,4,2,1,1,1,4,10,4,5,3,1,4,1,3,3,3,7,0,9,2,3]},{"label":"ETF Flows","topics":"etfs,etf,net,spot,million","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin and Ethereum ETFs: There have been reports of net outflows and inflows in Bitcoin and Ethereum ETFs, with significant selling from BlackRock in Bitcoin spot ETFs. Additionally, there is discussion about the launch of new ETFs in 2024, with Bitcoin ETFs leading among the newly introduced funds.\n2. Institutional Demand: There is a growing institutional demand for regulated Bitcoin exposure, with U.S. spot ETFs managing assets totaling $58 billion. Companies like BlackRock, Fidelity, and Grayscale are leading in this space.\n3. Market Sentiment: There is speculation about the reasons behind the outflows in Bitcoin spot ETFs, with some attributing it to higher than expected economic data. There is also discussion about whether investors are losing faith or if this is just a temporary dip before the next bull run.\n4. Investment Strategies: Bitwise is converting some of its exchange-traded products into a fund that will rotate between exposure to crypto futures contracts and U.S. Treasuries. There are also reports of a multi-billion dollar pension fund approving a BlackRock fixed-income strategy with 1% crypto exposure.\n5. Industry Insights: Analysts are providing insights into the market trends, such as the record outflows from US Spot Bitcoin ETFs and the minor outflows in digital asset investment products. There is also anticipation of more stories like the pension fund approval in 2025.","data":[9,2,1,0,17,6,2,0,2,0,2,1,10,5,1,0,17,2,3,4,1,2,4,0,5,7,2,9,0,2,1,0,0,6,0,4,0,2,0,3,1,1,5,1,27,3,1,0,2,6,0,1,1,1,6]},{"label":"MSTR","topics":"mstr,microstrategy,stock,shares,saylor","description":"The key topics currently being discussed in relation to MicroStrategy (MSTR) and Bitcoin on social media include:\n1. MicroStrategy's NAV premium and its comparison to Bitcoin's performance.\n2. Speculation on MicroStrategy's potential breakout and its impact on Bitcoin's price.\n3. Comparison between MicroStrategy and Coinbase market caps, with MicroStrategy potentially surpassing Coinbase.\n4. Semler Scientific's Bitcoin strategy and potential debt/equity offering to buy more BTC.\n5. MicroStrategy's significant Bitcoin holdings and its gravitational pull on the equity market.\n6. MicroStrategy's stock hitting a 6-month high amid Bitcoin struggles, potentially propelling BTC towards $70,000.\n7. MicroStrategy vs. Bitcoin trading at its highest level since Michael Saylor adopted a Bitcoin standard, leading to shareholder value production.\n8. Outperformance of MSTR over BTC for those who bought MSTR in the past 5 years.","data":[5,0,3,2,2,1,2,3,2,2,3,1,2,3,2,1,2,1,4,1,4,5,2,2,2,4,3,2,1,4,3,4,23,4,5,2,4,2,1,3,3,1,3,13,1,5,6,1,5,1,1,1,2,3,1]},{"label":"Hurricane Milton","topics":"hurricane,storm,pressure,safe,help","description":"The key topics currently being discussed on social media regarding the crypto industry are Hurricane Milton, Bitcoin price predictions, and the impact of the hurricane on Florida. There is a mix of concern for those affected by the hurricane, discussions about the intensity of the storm, and even some political commentary related to the hurricane's path. It is important for individuals to stay safe and follow evacuation orders during natural disasters like Hurricane Milton.","data":[3,2,4,2,4,1,2,0,4,0,4,1,0,2,2,3,3,2,1,5,4,2,1,14,9,2,4,3,3,2,4,1,3,1,5,3,2,6,3,4,3,2,1,3,2,8,1,1,1,3,2,4,4,3,8]},{"label":"Uptober","topics":"uptober,month,october,days,start","description":"The key topic being discussed on Twitter is \"Uptober\" in relation to Bitcoin. Users are expressing excitement and anticipation for a potential upward trend in Bitcoin prices during the month of October. Some are speculating on the possibility of a parabolic phase and the continuation of the 4-year cycle for Bitcoin. Overall, there is a sense of optimism and readiness among the crypto community for potential price movements in the near future.","data":[1,3,2,1,14,7,3,4,3,1,6,1,2,4,1,5,1,1,2,2,2,3,1,8,0,1,0,1,1,3,0,2,7,2,0,4,0,7,1,2,5,4,2,1,1,8,3,0,0,0,2,9,1,3,4]},{"label":"DOGE","topics":"dogecoin,doge,whales,critical,price","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin's price forecast, potential for surpassing $0.15 by October end, regaining momentum, and reaching $1 as a minimum target. There is also speculation about Dogecoin's independent vector and its resilience during market crashes. Additionally, there are mentions of Shib token and its performance, as well as onchain metrics suggesting a potential 12% drop in Dogecoin's price. Overall, the sentiment seems positive towards Dogecoin's future potential and resilience in the market.","data":[0,1,1,0,0,0,2,2,0,1,1,1,2,1,39,26,2,2,3,2,0,2,1,4,4,3,3,2,4,4,3,1,3,1,2,3,1,3,0,1,1,1,1,5,3,2,1,1,2,0,0,0,1,2,0]},{"label":"DeFi","topics":"defi,finance,dapp,protocols,landscape","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. DeFi scaling and liquidity-centric economic models\n2. Risk management in DeFi, focusing on technical and economic risks\n3. Projects like dTRINITY on Fraxtal and FinanceChainge offering decentralized finance solutions\n4. Challenges and solutions in OpenFi, including MEV-aware market makers like Arrakis DVMM\n5. The importance of secure, cost-effective, and scalable oracle systems in onchain finance\n6. Platforms like Lombard Finance bridging traditional finance and crypto for mass adoption\n7. Firoza Finance addressing inclusivity and accessibility challenges in DeFi\n8. UniLend Finance expanding its ecosystem with key listings and strategic relationships to accelerate the DeFi revolution\n9. Bringing Bitcoin to DeFi and the potential impact on the industry.","data":[1,1,4,1,0,1,3,1,0,6,2,0,0,10,2,3,1,1,4,2,2,0,0,1,4,3,7,3,4,5,2,0,4,8,0,4,1,4,4,5,5,4,3,1,3,1,3,3,0,2,7,1,4,1,5]},{"label":"China","topics":"china,chinese,stock,stocks,economic","description":"The key topics currently discussed in the crypto industry on social media include:\n- US government-installed backdoors at Internet Service Providers exploited by China for surveillance\n- PlusToken ponzi scheme moving $16 million worth of ether to exchanges\n- China injecting liquidity and controlling oil, currency, and exchange rate of the US dollar\n- Beijing's recent stimulus announcements and market speculations\n- China's stock market performance and fiscal stimulus expectations\n- Chinese government accessing data transmissions from US ISPs\n- Breakthroughs in AI technology in China\n- China's stock market attracting investors and potential impact on crypto market\n- Concerns about US-China economic decoupling\n- Business insights from an American entrepreneur in Las Vegas\n\nThese topics highlight the geopolitical and economic dynamics between the US and China, as well as the impact of Chinese policies and advancements on the global market and technology sector.","data":[1,3,2,6,2,0,3,5,2,15,0,2,1,0,0,3,5,1,3,0,2,3,4,3,5,2,2,0,2,2,6,0,5,0,2,4,1,2,5,2,5,3,3,3,0,10,2,0,1,0,0,2,2,2,5]},{"label":"CAT, CATS","topics":"cats,cat,kucoin,bitget,deposit","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n\n1. Launch of new projects: Projects like $CATS and Meow Coins are being launched with improved tokenomics and lower valuations compared to previous projects.\n\n2. Trading opportunities: Trading pairs for various cryptocurrencies like $CAT, $MEW, and $CATS are available on different exchanges, providing opportunities for users to trade and potentially win rewards.\n\n3. NFTs and art: Ultra Kitties is a project blurring the lines between art and profile pictures (pfp's) with minting opportunities for users. There is also mention of owning Satoshis cat on Solana as a memecoin.\n\n4. Security features: Vaults for securing Meow Coins and upcoming features like Stealing are being introduced to protect users' assets from potential theft.\n\n5. Community engagement: Users are encouraged to ask questions about projects they are interested in, such as Ultra Kitties, to learn more about them.\n\nOverall, the crypto community is actively discussing new project launches, trading opportunities, NFTs, security features, and community engagement in the current social media conversations.","data":[2,0,0,2,0,1,1,0,47,3,2,5,4,2,4,1,0,0,5,1,1,2,3,1,3,1,3,4,2,0,2,0,3,5,5,0,0,0,1,2,2,1,1,2,4,0,0,0,0,1,7,2,0,0,3]},{"label":"Gold","topics":"gold,stocks,sampp,futures,goldman","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Gold market volatility and price movements\n2. Stock market performance and predictions\n3. Impact of US inflation data on markets\n4. Analysis of gold futures and trading strategies\n5. Comparison between gold and Bitcoin as investment options\n6. Importance of data analysis and market phases\n7. Historical stock market forecasts and predictions by W. D. Gann\n\nOverall, the discussions on Twitter suggest a mix of technical analysis, market trends, and predictions for both traditional and digital assets in the financial industry.","data":[6,0,2,0,1,0,2,0,1,2,2,1,1,0,1,2,4,2,4,4,6,37,1,0,1,2,4,0,1,2,3,1,1,0,2,0,0,1,2,0,2,2,0,7,1,15,0,1,4,1,1,0,0,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-40.ts b/priv/repo/major_topics_seed/data-40.ts deleted file mode 100644 index 45ce206c51..0000000000 --- a/priv/repo/major_topics_seed/data-40.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '03.10.24', - '04.10.24', - '04.10.24', - '04.10.24', - '04.10.24', - '04.10.24', - '04.10.24', - '04.10.24', - '05.10.24', - '05.10.24', - '05.10.24', - '05.10.24', - '05.10.24', - '05.10.24', - '05.10.24', - '05.10.24', - '06.10.24', - '06.10.24', - '06.10.24', - '06.10.24', - '06.10.24', - '06.10.24', - '06.10.24', - '06.10.24', - '07.10.24', - '07.10.24', - '07.10.24', - '07.10.24', - '07.10.24', - '07.10.24', - '07.10.24', - '07.10.24', - '08.10.24', - '08.10.24', - '08.10.24', - '08.10.24', - '08.10.24', - '08.10.24', - '08.10.24', - '08.10.24', - '09.10.24', - '09.10.24', - '09.10.24', - '09.10.24', - '09.10.24', - '09.10.24', - '09.10.24', - '09.10.24', - '10.10.24', - '10.10.24', - '10.10.24', - '10.10.24', - '10.10.24', - '10.10.24', - '10.10.24', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,price,resistance,60k,bitcoin', - description: - 'The key topics currently discussed on Twitter in the crypto industry are:\n1. Bitcoin (BTC) price movements and predictions\n2. Potential surge in Bitcoin price to $103,000\n3. Support levels for Bitcoin at $60,000\n4. Market rebound and reclaiming critical cost-basis\n5. Performance of Bitcoin in past Octobers\n6. Technical analysis of Bitcoin charts and formations\n7. BSP metrics normalization for BTC\n8. Bullish sentiment towards Bitcoin\n9. Programmable tokenomics and $bozo coin\n10. New ATHs on the horizon for Bitcoin', - data: [ - 7, 11, 5, 27, 104, 126, 26, 42, 4, 12, 13, 18, 18, 13, 10, 15, 12, 8, 16, 16, 4, 16, 3, 34, - 12, 11, 7, 3, 10, 34, 17, 5, 10, 9, 9, 18, 16, 38, 15, 20, 27, 10, 8, 31, 14, 16, 17, 23, 9, - 5, 12, 14, 11, 23, 13, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,fiat,money,freedom,understand', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin's unique properties as a form of money\n- The impact of Bitcoin on the world from a psychological perspective\n- The vision and philosophy behind Bitcoin\n- Bitcoin's ability to challenge the status quo and provide financial freedom\n- Confusion around Bitcoin and blockchain forks\n- The practicality of Bitcoin in Africa\n- The potential of storing large amounts of wealth in the mind with Bitcoin\n- The role of Bitcoin lightning in instant payments\n- The debate between Bitcoin and alternative cryptocurrencies\n\nOverall, the discussions on social media highlight the ongoing interest and debate surrounding Bitcoin and its impact on the financial world.", - data: [ - 12, 7, 12, 14, 86, 70, 12, 10, 7, 13, 19, 16, 8, 14, 8, 12, 7, 12, 26, 20, 13, 13, 13, 9, - 16, 18, 7, 19, 22, 13, 11, 14, 7, 15, 12, 20, 14, 13, 14, 22, 19, 17, 16, 21, 16, 24, 20, - 20, 18, 12, 28, 8, 14, 14, 15, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, NFT minting, meme coin investments, upcoming projects like Uniswap v4 and Flaunchgg, the popularity of meme coins compared to other categories like utility tokens, the rise of meme coins in the 2025 cycle, the performance of meme coins in the market, the coexistence of meme coins and non-meme coins, and the upcoming Thetan World meme contest. Investors are discussing strategies for investing in meme coins, the potential of meme coins for wealth creation and mass adoption, and the importance of utility-based growth in the crypto market. The conversation also touches on specific meme coins like $PEPE, $DOGE, $FTM, $S, $sGOAT, and $MEME, as well as projects like All-Stars Coin, CoinMarketCap, and Rollblock. Overall, the sentiment seems to be positive towards meme coins and their potential in the crypto market.', - data: [ - 7, 11, 8, 17, 5, 2, 1, 14, 11, 8, 10, 12, 18, 11, 8, 10, 14, 4, 20, 11, 10, 20, 11, 14, 18, - 12, 3, 12, 7, 14, 21, 204, 10, 19, 13, 10, 22, 12, 15, 11, 13, 17, 23, 13, 8, 10, 7, 18, 14, - 20, 9, 7, 8, 12, 16, - ], - }, - { - label: 'CPI', - topics: 'inflation,cpi,jobs,fed,rate', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding the market impact of various economic indicators and events on cryptocurrencies such as Bitcoin and Dogecoin. The messages mention key topics such as US inflation falling to 2.4%, jobless claims affecting recession risks, port strikes being suspended leading to potential market upside, and Fed officials being divided on interest rate cuts.\n\nAdditionally, there is talk about the US labor market data for September being better than expected, with non-farm payrolls and unemployment numbers surpassing forecasts. The possibility of stagflation is also mentioned, with concerns about job market stagnation and economic growth slowing down.\n\nFurthermore, there is anticipation for the CPI news for September, with experts predicting a 2.3% increase. This news is expected to have a strong impact on Bitcoin and other cryptocurrencies, leading to fluctuations in their prices and the liquidity of long and short orders.\n\nOverall, the messages highlight the importance of keeping track of economic indicators and events to understand their impact on the cryptocurrency market.', - data: [ - 10, 6, 3, 5, 3, 2, 28, 3, 4, 5, 4, 10, 5, 5, 7, 12, 5, 11, 13, 6, 9, 5, 4, 11, 4, 46, 15, 4, - 3, 8, 33, 3, 8, 2, 10, 4, 3, 13, 5, 23, 16, 6, 9, 13, 6, 8, 11, 5, 8, 7, 10, 1, 6, 8, 17, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Crypto gaming and its potential to become mainstream\n- Launch of new games and expansions on blockchain platforms like Ethereum\n- Integration of physical spaces into virtual experiences\n- Excitement around upcoming games like HEXR, Pixelverse, and Honeycomb\n- Growth of Web3 and its impact on game development and distribution\n- Recognition and awards for innovative game projects in the GameFi space\n- Partnerships between luxury brands like Lamborghini and blockchain companies for Web3 racing games\n\nOverall, the sentiment seems to be positive and optimistic about the future of crypto gaming and the opportunities it presents for both developers and players.', - data: [ - 5, 7, 2, 9, 0, 0, 4, 4, 7, 6, 6, 4, 6, 7, 6, 9, 3, 14, 8, 7, 45, 8, 15, 1, 5, 9, 6, 5, 13, - 3, 10, 1, 3, 7, 11, 4, 18, 3, 3, 15, 7, 10, 0, 5, 4, 4, 5, 4, 4, 4, 17, 5, 9, 5, 9, - ], - }, - { - label: 'AI', - topics: 'ai,models,agents,decentralized,data', - description: - "The key topics discussed in the messages from twitter related to AI include:\n1. The advancement of AI technology and its potential impact on various industries.\n2. The growth of the AI market, with predictions of reaching $200 trillion by 2030.\n3. The development of AI tools and applications, such as AI phone companions for seniors.\n4. The differences between traditional AI, AGI, and superintelligence.\n5. The role of AI in job search and resume improvement.\n6. The emergence of decentralized AI platforms and their benefits.\n7. The potential for AI agents to become the main users of blockchain technology.\n8. The rapid advancements in the AI space and its impact on jobs and productivity.\n9. The use of AI for social good, such as hurricane relief efforts and political campaigns.\n10. The review of AI apps for publishing profitable books on Amazon's KDP program.", - data: [ - 11, 39, 6, 7, 0, 0, 3, 5, 4, 5, 5, 2, 4, 7, 3, 5, 3, 2, 6, 4, 11, 7, 3, 8, 3, 11, 3, 6, 5, - 1, 3, 6, 2, 3, 4, 2, 6, 6, 5, 6, 8, 7, 2, 4, 6, 4, 8, 8, 5, 9, 9, 2, 4, 4, 5, - ], - }, - { - label: 'Art', - topics: 'art,artists,work,digital,collection', - description: - 'The key topics currently discussed in the crypto industry on social media include modern art, medieval art, anonymous art, creating art, NFTs, cryptoart, generative art, cymatics, digital art experiences, minting art, and unique art collections. There is also a focus on the intersection of art and technology, such as using SVG tesselation and on-chain checker listings for digital art. Overall, there is a strong appreciation for various forms of art and the creative process within the crypto community.', - data: [ - 7, 2, 64, 6, 0, 1, 2, 3, 2, 5, 11, 2, 8, 3, 7, 1, 1, 6, 6, 4, 5, 2, 6, 3, 4, 6, 1, 6, 1, 8, - 11, 5, 3, 4, 3, 8, 3, 5, 5, 5, 3, 0, 1, 4, 6, 8, 1, 6, 5, 2, 3, 1, 7, 0, 6, - ], - }, - { - label: 'SUI, APT, and other altcoins', - topics: 'sui,fud,usdc,sei,native', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- $FUD on $Sui and its impact on the market\n- Integration of $Sui with other cryptocurrencies like Solana, Ethereum, and Base\n- Price predictions and market position of Sui Network ($SUI)\n- Strong runs of Sui ($SUI) and Aptos ($APT) in the past week\n- Leading coins in the crypto market such as $SOL, $SPX, $SUI, $BNB, and $TAO\n- Memes and community engagement around $FUD and $SUI\n- Comparison between Sui and Solana by Charles Hoskinson\n- Launch of PugWifBot for easy trading of Sui coins\n- Live listing of $NAVX on BybitLaunchpool and BybitSpot with Navi Protocol\n\nOverall, the discussions on Twitter suggest a mix of market analysis, community engagement, and speculation about the future of various cryptocurrencies, with a focus on $Sui and its integrations and partnerships.', - data: [ - 6, 7, 2, 4, 2, 1, 1, 10, 9, 5, 4, 10, 4, 1, 4, 3, 3, 6, 6, 4, 5, 3, 0, 8, 3, 3, 3, 8, 7, 5, - 3, 3, 7, 15, 4, 6, 4, 5, 4, 1, 1, 2, 14, 8, 3, 2, 12, 2, 2, 3, 3, 9, 1, 2, 3, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,ethereum,standard,addresses', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana's potential price movement if Bitcoin hits $48K\n- Solana's increased scalability and adoption in comparison to Ethereum\n- Solana's development activity surge and potential price breakout\n- Solana dApps focusing on mobile user experience\n- Speculation on Solana potentially outperforming Ethereum and Bitcoin in 2025\n- Comparison between Solana and CYBRO as potential Ethereum challengers\n- Updates on SORA Blockchain v4.0.0 and its new features like Improved Aggregate Liquidity Technology (ALT) mechanism.", - data: [ - 10, 0, 5, 8, 3, 2, 2, 3, 4, 4, 7, 9, 1, 2, 6, 0, 7, 4, 5, 6, 2, 3, 1, 6, 6, 8, 6, 1, 4, 6, - 2, 1, 2, 6, 4, 1, 1, 12, 2, 6, 3, 7, 5, 2, 18, 10, 5, 3, 2, 4, 4, 3, 4, 4, 0, - ], - }, - { - label: 'Satoshi Nakamoto', - topics: 'satoshi,nakamoto,identity,satoshinakamoto,creator', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include speculation about the identity of Satoshi Nakamoto, the creator of Bitcoin. There are rumors and claims about various individuals being Satoshi Nakamoto, such as Peter Schiff, Charlie Lee, Nicolas Kokkalis Nakamoto, and even Elon Musk. Additionally, there is discussion about the potential impact of revealing Satoshi's identity on the crypto market, with some traders buying meme coins based on this speculation. Overall, the community seems divided on the importance of knowing Satoshi's identity, with some viewing it as irrelevant to their reasons for holding Bitcoin. The topic of privacy and scaling in blockchain technology is also being discussed, highlighting the elegant and efficient nature of Nakamoto consensus.", - data: [ - 0, 3, 0, 6, 1, 0, 6, 1, 4, 3, 4, 7, 4, 4, 7, 3, 2, 5, 6, 3, 1, 4, 6, 1, 9, 0, 3, 8, 4, 1, 5, - 2, 4, 3, 7, 1, 4, 3, 4, 4, 9, 5, 8, 1, 1, 5, 2, 8, 2, 3, 3, 1, 4, 3, 4, - ], - }, - { - label: 'HBO documentary about the true identity of Satoshi Nakamoto', - topics: 'hbo,documentary,satoshi,identity,nakamoto', - description: - 'The key topic currently being discussed on Twitter is the upcoming HBO documentary about the true identity of Satoshi Nakamoto, the pseudonymous creator of Bitcoin. The documentary is generating a lot of buzz and controversy, with some users expressing skepticism and criticism about the claims made in the documentary. The release date of the documentary is set for October 8th, 2024, and it is expected to shed light on the mystery surrounding Satoshi Nakamoto. Some users are excited to watch the documentary, while others are unsure of what to expect. Overall, the HBO documentary on Satoshi Nakamoto is a hot topic of discussion within the crypto community on Twitter.', - data: [ - 3, 1, 2, 4, 2, 1, 3, 1, 2, 4, 0, 4, 0, 1, 29, 3, 2, 1, 2, 9, 2, 5, 3, 3, 4, 4, 5, 4, 1, 1, - 2, 4, 4, 13, 4, 2, 1, 1, 1, 4, 10, 4, 5, 3, 1, 4, 1, 3, 3, 3, 7, 0, 9, 2, 3, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,etf,net,spot,million', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin and Ethereum ETFs: There have been reports of net outflows and inflows in Bitcoin and Ethereum ETFs, with significant selling from BlackRock in Bitcoin spot ETFs. Additionally, there is discussion about the launch of new ETFs in 2024, with Bitcoin ETFs leading among the newly introduced funds.\n2. Institutional Demand: There is a growing institutional demand for regulated Bitcoin exposure, with U.S. spot ETFs managing assets totaling $58 billion. Companies like BlackRock, Fidelity, and Grayscale are leading in this space.\n3. Market Sentiment: There is speculation about the reasons behind the outflows in Bitcoin spot ETFs, with some attributing it to higher than expected economic data. There is also discussion about whether investors are losing faith or if this is just a temporary dip before the next bull run.\n4. Investment Strategies: Bitwise is converting some of its exchange-traded products into a fund that will rotate between exposure to crypto futures contracts and U.S. Treasuries. There are also reports of a multi-billion dollar pension fund approving a BlackRock fixed-income strategy with 1% crypto exposure.\n5. Industry Insights: Analysts are providing insights into the market trends, such as the record outflows from US Spot Bitcoin ETFs and the minor outflows in digital asset investment products. There is also anticipation of more stories like the pension fund approval in 2025.', - data: [ - 9, 2, 1, 0, 17, 6, 2, 0, 2, 0, 2, 1, 10, 5, 1, 0, 17, 2, 3, 4, 1, 2, 4, 0, 5, 7, 2, 9, 0, 2, - 1, 0, 0, 6, 0, 4, 0, 2, 0, 3, 1, 1, 5, 1, 27, 3, 1, 0, 2, 6, 0, 1, 1, 1, 6, - ], - }, - { - label: 'MSTR', - topics: 'mstr,microstrategy,stock,shares,saylor', - description: - "The key topics currently being discussed in relation to MicroStrategy (MSTR) and Bitcoin on social media include:\n1. MicroStrategy's NAV premium and its comparison to Bitcoin's performance.\n2. Speculation on MicroStrategy's potential breakout and its impact on Bitcoin's price.\n3. Comparison between MicroStrategy and Coinbase market caps, with MicroStrategy potentially surpassing Coinbase.\n4. Semler Scientific's Bitcoin strategy and potential debt/equity offering to buy more BTC.\n5. MicroStrategy's significant Bitcoin holdings and its gravitational pull on the equity market.\n6. MicroStrategy's stock hitting a 6-month high amid Bitcoin struggles, potentially propelling BTC towards $70,000.\n7. MicroStrategy vs. Bitcoin trading at its highest level since Michael Saylor adopted a Bitcoin standard, leading to shareholder value production.\n8. Outperformance of MSTR over BTC for those who bought MSTR in the past 5 years.", - data: [ - 5, 0, 3, 2, 2, 1, 2, 3, 2, 2, 3, 1, 2, 3, 2, 1, 2, 1, 4, 1, 4, 5, 2, 2, 2, 4, 3, 2, 1, 4, 3, - 4, 23, 4, 5, 2, 4, 2, 1, 3, 3, 1, 3, 13, 1, 5, 6, 1, 5, 1, 1, 1, 2, 3, 1, - ], - }, - { - label: 'Hurricane Milton', - topics: 'hurricane,storm,pressure,safe,help', - description: - "The key topics currently being discussed on social media regarding the crypto industry are Hurricane Milton, Bitcoin price predictions, and the impact of the hurricane on Florida. There is a mix of concern for those affected by the hurricane, discussions about the intensity of the storm, and even some political commentary related to the hurricane's path. It is important for individuals to stay safe and follow evacuation orders during natural disasters like Hurricane Milton.", - data: [ - 3, 2, 4, 2, 4, 1, 2, 0, 4, 0, 4, 1, 0, 2, 2, 3, 3, 2, 1, 5, 4, 2, 1, 14, 9, 2, 4, 3, 3, 2, - 4, 1, 3, 1, 5, 3, 2, 6, 3, 4, 3, 2, 1, 3, 2, 8, 1, 1, 1, 3, 2, 4, 4, 3, 8, - ], - }, - { - label: 'Uptober', - topics: 'uptober,month,october,days,start', - description: - 'The key topic being discussed on Twitter is "Uptober" in relation to Bitcoin. Users are expressing excitement and anticipation for a potential upward trend in Bitcoin prices during the month of October. Some are speculating on the possibility of a parabolic phase and the continuation of the 4-year cycle for Bitcoin. Overall, there is a sense of optimism and readiness among the crypto community for potential price movements in the near future.', - data: [ - 1, 3, 2, 1, 14, 7, 3, 4, 3, 1, 6, 1, 2, 4, 1, 5, 1, 1, 2, 2, 2, 3, 1, 8, 0, 1, 0, 1, 1, 3, - 0, 2, 7, 2, 0, 4, 0, 7, 1, 2, 5, 4, 2, 1, 1, 8, 3, 0, 0, 0, 2, 9, 1, 3, 4, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,whales,critical,price', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin's price forecast, potential for surpassing $0.15 by October end, regaining momentum, and reaching $1 as a minimum target. There is also speculation about Dogecoin's independent vector and its resilience during market crashes. Additionally, there are mentions of Shib token and its performance, as well as onchain metrics suggesting a potential 12% drop in Dogecoin's price. Overall, the sentiment seems positive towards Dogecoin's future potential and resilience in the market.", - data: [ - 0, 1, 1, 0, 0, 0, 2, 2, 0, 1, 1, 1, 2, 1, 39, 26, 2, 2, 3, 2, 0, 2, 1, 4, 4, 3, 3, 2, 4, 4, - 3, 1, 3, 1, 2, 3, 1, 3, 0, 1, 1, 1, 1, 5, 3, 2, 1, 1, 2, 0, 0, 0, 1, 2, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,dapp,protocols,landscape', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. DeFi scaling and liquidity-centric economic models\n2. Risk management in DeFi, focusing on technical and economic risks\n3. Projects like dTRINITY on Fraxtal and FinanceChainge offering decentralized finance solutions\n4. Challenges and solutions in OpenFi, including MEV-aware market makers like Arrakis DVMM\n5. The importance of secure, cost-effective, and scalable oracle systems in onchain finance\n6. Platforms like Lombard Finance bridging traditional finance and crypto for mass adoption\n7. Firoza Finance addressing inclusivity and accessibility challenges in DeFi\n8. UniLend Finance expanding its ecosystem with key listings and strategic relationships to accelerate the DeFi revolution\n9. Bringing Bitcoin to DeFi and the potential impact on the industry.', - data: [ - 1, 1, 4, 1, 0, 1, 3, 1, 0, 6, 2, 0, 0, 10, 2, 3, 1, 1, 4, 2, 2, 0, 0, 1, 4, 3, 7, 3, 4, 5, - 2, 0, 4, 8, 0, 4, 1, 4, 4, 5, 5, 4, 3, 1, 3, 1, 3, 3, 0, 2, 7, 1, 4, 1, 5, - ], - }, - { - label: 'China', - topics: 'china,chinese,stock,stocks,economic', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- US government-installed backdoors at Internet Service Providers exploited by China for surveillance\n- PlusToken ponzi scheme moving $16 million worth of ether to exchanges\n- China injecting liquidity and controlling oil, currency, and exchange rate of the US dollar\n- Beijing's recent stimulus announcements and market speculations\n- China's stock market performance and fiscal stimulus expectations\n- Chinese government accessing data transmissions from US ISPs\n- Breakthroughs in AI technology in China\n- China's stock market attracting investors and potential impact on crypto market\n- Concerns about US-China economic decoupling\n- Business insights from an American entrepreneur in Las Vegas\n\nThese topics highlight the geopolitical and economic dynamics between the US and China, as well as the impact of Chinese policies and advancements on the global market and technology sector.", - data: [ - 1, 3, 2, 6, 2, 0, 3, 5, 2, 15, 0, 2, 1, 0, 0, 3, 5, 1, 3, 0, 2, 3, 4, 3, 5, 2, 2, 0, 2, 2, - 6, 0, 5, 0, 2, 4, 1, 2, 5, 2, 5, 3, 3, 3, 0, 10, 2, 0, 1, 0, 0, 2, 2, 2, 5, - ], - }, - { - label: 'CAT, CATS', - topics: 'cats,cat,kucoin,bitget,deposit', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n\n1. Launch of new projects: Projects like $CATS and Meow Coins are being launched with improved tokenomics and lower valuations compared to previous projects.\n\n2. Trading opportunities: Trading pairs for various cryptocurrencies like $CAT, $MEW, and $CATS are available on different exchanges, providing opportunities for users to trade and potentially win rewards.\n\n3. NFTs and art: Ultra Kitties is a project blurring the lines between art and profile pictures (pfp's) with minting opportunities for users. There is also mention of owning Satoshis cat on Solana as a memecoin.\n\n4. Security features: Vaults for securing Meow Coins and upcoming features like Stealing are being introduced to protect users' assets from potential theft.\n\n5. Community engagement: Users are encouraged to ask questions about projects they are interested in, such as Ultra Kitties, to learn more about them.\n\nOverall, the crypto community is actively discussing new project launches, trading opportunities, NFTs, security features, and community engagement in the current social media conversations.", - data: [ - 2, 0, 0, 2, 0, 1, 1, 0, 47, 3, 2, 5, 4, 2, 4, 1, 0, 0, 5, 1, 1, 2, 3, 1, 3, 1, 3, 4, 2, 0, - 2, 0, 3, 5, 5, 0, 0, 0, 1, 2, 2, 1, 1, 2, 4, 0, 0, 0, 0, 1, 7, 2, 0, 0, 3, - ], - }, - { - label: 'Gold', - topics: 'gold,stocks,sampp,futures,goldman', - description: - 'Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Gold market volatility and price movements\n2. Stock market performance and predictions\n3. Impact of US inflation data on markets\n4. Analysis of gold futures and trading strategies\n5. Comparison between gold and Bitcoin as investment options\n6. Importance of data analysis and market phases\n7. Historical stock market forecasts and predictions by W. D. Gann\n\nOverall, the discussions on Twitter suggest a mix of technical analysis, market trends, and predictions for both traditional and digital assets in the financial industry.', - data: [ - 6, 0, 2, 0, 1, 0, 2, 0, 1, 2, 2, 1, 1, 0, 1, 2, 4, 2, 4, 4, 6, 37, 1, 0, 1, 2, 4, 0, 1, 2, - 3, 1, 1, 0, 2, 0, 0, 1, 2, 0, 2, 2, 0, 7, 1, 15, 0, 1, 4, 1, 1, 0, 0, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-41.json b/priv/repo/major_topics_seed/data-41.json deleted file mode 100644 index 22ada52bd9..0000000000 --- a/priv/repo/major_topics_seed/data-41.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["10.10.24","11.10.24","11.10.24","11.10.24","11.10.24","11.10.24","11.10.24","11.10.24","12.10.24","12.10.24","12.10.24","12.10.24","12.10.24","12.10.24","12.10.24","12.10.24","13.10.24","13.10.24","13.10.24","13.10.24","13.10.24","13.10.24","13.10.24","13.10.24","14.10.24","14.10.24","14.10.24","14.10.24","14.10.24","14.10.24","14.10.24","14.10.24","15.10.24","15.10.24","15.10.24","15.10.24","15.10.24","15.10.24","15.10.24","15.10.24","16.10.24","16.10.24","16.10.24","16.10.24","16.10.24","16.10.24","16.10.24","16.10.24","17.10.24","17.10.24","17.10.24","17.10.24","17.10.24","17.10.24","17.10.24"],"datasets":[{"label":"BTC","topics":"freedom,fiat,bitcoiners,cash,understand","description":"The messages from Twitter discuss various aspects of Bitcoin, including its ability to transcend barriers such as race and economic class, its potential to be a decentralized bank, and its role in empowering individuals to take back financial sovereignty. There is also mention of the importance of valuing wealth in Bitcoin over traditional currencies like the USD. Additionally, the messages touch on the organic growth of Bitcoin's brand awareness and its status as a store of value. The topic of Bitcoiners and their motivations is also brought up, highlighting the diverse range of individuals involved in the cryptocurrency space. Overall, the messages convey a sense of optimism and empowerment surrounding Bitcoin and its potential impact on the financial world.","data":[15,2,6,14,62,41,6,7,8,12,13,16,5,12,12,8,7,3,13,14,5,7,9,9,20,13,12,8,12,13,9,8,16,9,10,20,13,19,12,11,8,18,12,6,9,12,8,17,5,16,18,10,10,9,13]},{"label":"MSTR","topics":"microstrategy,mstr,michael,saylor,premium","description":"The messages from Twitter indicate a negative divergence in $MSTR stock, with some users suggesting it may be a blow-off top. There is discussion about MicroStrategy's stock hitting new highs, potential downturns, and the influence of Michael Saylor on investments. Some users caution against falling for the leveraged MSTR trap and warn against getting too caught up in the hype. Overall, there is a mix of excitement, skepticism, and caution surrounding $MSTR and its relationship with Bitcoin. Additionally, there is mention of an upcoming event in Malta related to AI and blockchain, as well as comparisons between Bitcoin and other assets in terms of YTD returns.","data":[6,12,2,10,7,3,7,4,4,3,8,9,6,2,9,5,4,10,4,6,5,7,7,11,5,11,12,10,2,8,5,8,40,28,7,17,5,9,4,4,14,22,5,9,3,12,3,8,6,8,10,4,11,2,8]},{"label":"TSLA","topics":"tsla,tesla,robots,musk,cars","description":"The key topics discussed in the messages from Twitter are:\n1. Robots buying all the turbo on the open market\n2. Tesla's advancements in robotics and AI\n3. Elon Musk's presentation at the Tesla Robotaxi event\n4. Tesla's new innovations such as the Robovan and Cybercab\n5. Speculation about Tether's AI division\n6. TRON and Justin Sun's potential comeback in the crypto industry\n\nOverall, the messages highlight the excitement and speculation surrounding Tesla's advancements in robotics, AI, and autonomous vehicles, as well as the potential impact of AI in the crypto industry.","data":[4,6,12,3,0,0,1,5,5,4,7,8,5,3,5,12,9,5,7,9,7,5,8,3,6,7,13,7,5,12,4,4,4,3,10,10,8,8,5,9,13,29,6,11,3,5,14,30,12,1,41,5,9,5,7]},{"label":"AI","topics":"models,agents,training,compute,agent","description":"The messages from Twitter suggest that the crypto industry is increasingly being dominated by discussions and advancements in artificial intelligence (AI). From the development of AI-powered hospitals to the integration of AI in creating virtual worlds and enhancing online content creation, it is clear that AI is becoming a key player in the industry. Companies like Fraction AI and Simplismart are leveraging AI to improve performance and access to data, while others are using AI assistants and models to enhance user experiences and create innovative solutions. The narrative seems to indicate a shift towards AI-driven technologies and solutions in the crypto industry.","data":[46,37,10,9,1,0,1,9,2,4,3,8,4,16,2,8,7,4,4,15,3,7,17,10,6,6,6,7,7,2,6,9,7,8,6,7,5,6,11,8,10,11,2,6,4,8,13,12,3,3,6,1,8,7,9]},{"label":"Memecoins","topics":"cults,cult,memes,memecoin,memecoins","description":"The key topic discussed in the messages from Twitter is the rise of meme coins in the crypto industry. While some people dismiss meme coins as \"ultra trash\" and \"normie fuel,\" others believe that meme coins are driving the prices up and could potentially succeed in the future. There is a debate between utility plays on ETH and meme coins, with some suggesting that meme coins could be insider pump and dumps. Additionally, there is a comparison between meme coins and cultcoins, with some believing that cultcoins have more potential. Overall, the discussion highlights the speculative nature of meme coins and the potential for significant gains for those who can hold onto winning trades for a long time.","data":[4,1,3,5,1,1,1,2,7,8,6,6,8,2,4,6,4,1,2,6,4,10,3,6,7,6,7,3,3,5,5,95,4,11,13,7,10,4,3,6,4,5,6,2,3,4,1,3,3,7,10,3,10,7,4]},{"label":"Art","topics":"art,artist,artists,piece,pixel","description":"The messages from Twitter discuss various aspects of art, including the appreciation of art, the impact of AI on art, and the practical aspects of art such as printing and graphic design. There is also a mention of a new art collection called 'Alius' and the importance of supporting artists. Additionally, there is a message expressing admiration for a literary figure. Overall, the messages highlight the diverse and vibrant world of art and creativity on social media platforms like Twitter.","data":[7,5,57,3,0,1,0,4,8,2,11,6,3,3,7,4,2,7,12,5,4,4,7,4,3,5,4,5,5,7,4,3,4,6,3,5,5,7,3,0,6,6,4,5,7,2,8,4,4,0,5,2,4,1,9]},{"label":"DOGE","topics":"dogecoin,doge,babydoge,69,department","description":"The messages from Twitter suggest that Dogecoin is gaining momentum and attention in the crypto community. There is excitement about the potential rise of Dogecoin and its impact on the market. Some users believe that Dogecoin is a safe investment and could lead to a memecoin run. Additionally, there is a comparison between Dogecoin and other meme coins like SHIB and PEPE. The idea of the \"DOGE\" narrative and the potential for growth in the Dogecoin market is also discussed. Overall, it seems that Dogecoin is a topic of interest and discussion among crypto enthusiasts on social media.","data":[3,1,1,2,1,0,4,4,3,1,3,4,1,5,123,3,0,0,3,4,3,10,2,2,4,2,2,3,4,3,2,2,6,4,3,5,6,5,2,3,4,6,4,6,5,2,5,6,3,1,2,0,3,7,6]},{"label":"BTC Price","topics":"67000,65000,70000,65k,66000","description":"The key topics currently being discussed in the crypto community on Twitter include the price of Bitcoin breaking $65,000 and potentially reaching $66,000 this week. There is excitement over Bitcoin's recent rally, with the price crossing $68,000 for the first time since July. There is also discussion about the impact of ETF inflows and BlackRock's endorsement on the price of Bitcoin. Some analysts are predicting a massive parabolic rally for Bitcoin, with price targets ranging from $147,600 to $184,500. Overall, there is a bullish sentiment surrounding Bitcoin's price movement and potential for further gains in the near future.","data":[1,1,4,5,26,21,19,6,2,3,4,5,5,4,1,4,4,3,10,1,2,9,1,16,3,1,3,1,4,9,5,1,1,3,2,0,3,7,2,7,3,5,4,3,5,4,5,5,2,5,2,13,6,2,3]},{"label":"DeFi","topics":"renaissance,tradfi,defi,strategies,lending","description":"The messages from twitter discuss various topics related to the DeFi (Decentralized Finance) industry. Some key points mentioned include:\n\n1. The need for an infrastructure overhaul in DeFi to challenge traditional finance dominance.\n2. The importance of DeFi in supporting blockchain adoption and reimagining ownership and commerce.\n3. The introduction of new technologies and platforms like Injective for finance.\n4. The potential for DeFi to revolutionize finance through intelligent AI outputs triggering smart contract executions.\n5. Projects and platforms within the DeFi ecosystem such as Goldilocks, Honeypot, and Ooga Booga DEX aggregator.\n6. Opportunities for funding and development in cross-chain DeFi, RWA tokenization, and social platforms.\n7. Integration of IOTA EVM with FireblocksHQ for secure asset management.\n8. The discussion on institutional strategies in DeFi, the value of mature DeFi protocols, and the importance of risk in yield farming.\n9. The launch of DEXTPad in collaboration with ChainGPT_Labs for discovering, evaluating, and investing in DeFi projects.\n\nOverall, the messages highlight the growth and innovation happening within the DeFi industry, with a focus on technology advancements, ecosystem development, and investment opportunities.","data":[2,5,1,4,0,0,3,2,2,3,6,0,0,12,6,4,2,6,4,5,3,3,4,1,3,0,4,5,8,4,2,0,2,2,6,5,2,2,11,4,4,4,3,1,6,4,6,0,2,7,4,1,1,2,6]},{"label":"Whales","topics":"whale,whales,accumulation,15m,aave","description":"The model that has predicted a monetary sea change in the crypto industry is the behavior of Bitcoin whales. The messages from Twitter indicate that new Bitcoin whales are emerging and accumulating large amounts of BTC, potentially signaling price gains on the horizon. The surge in whale wallets and their significant purchases during price dips have historically been associated with the start of bull runs in the market. This trend is reminiscent of what happened in 2020 before Bitcoin exploded in value. Additionally, the increase in whale transactions and the growth of young whale populations suggest a positive outlook for Bitcoin's price in the near future. Overall, the behavior of Bitcoin whales is seen as a key indicator of potential market shifts and significant price movements in the crypto industry.","data":[6,6,0,4,1,8,3,7,6,1,1,0,2,0,2,4,8,3,2,0,2,1,1,0,0,2,3,3,0,3,3,1,2,7,2,3,3,4,1,2,0,0,1,4,2,1,3,2,3,1,5,0,2,25,1]},{"label":"Layer 2","topics":"l2s,l1,vision,failing,zones","description":"The key topics discussed in the messages from Twitter regarding Ethereum and Layer 2 solutions include:\n\n1. The potential for Ethereum to double in price by focusing on user-friendly language instead of technical jargon.\n2. The shift towards using Ethereum for sustainable projects, such as Zupass.\n3. The emergence of \"Economic Zones\" as a new trend in the Ethereum community.\n4. The debate over the necessity of tokens for Layer 2 solutions like Arbitrum.\n5. Criticisms of Ethereum's lack of resulting in better applications.\n6. Analogies comparing Ethereum to the British Empire and its colonies, with Layer 2 solutions being the colonies declaring independence.\n7. The importance of aligning incentives between Ethereum and Layer 2 solutions for mutual success.\n8. The challenges of balancing decentralization and scalability in Ethereum's development.\n9. The potential for different chains, such as Celestia, to compete with Ethereum in the finance sector.\n10. The evolving perception of Layer 2 solutions from skepticism to optimism in the Ethereum community.","data":[1,8,1,1,0,0,1,2,0,4,1,4,0,1,2,3,37,1,3,2,0,1,2,2,0,2,4,10,3,3,3,3,5,5,2,0,2,4,1,0,3,0,2,1,3,2,6,1,5,1,3,0,1,0,3]},{"label":"Tesla moves BTC","topics":"moved,unknown,transferred,tesla,wallets","description":"The key topics being discussed on Twitter regarding Tesla and Bitcoin include speculation about whether Tesla is selling or just moving their Bitcoin holdings, Elon Musk potentially buying more Bitcoin, the impact of Tesla's Bitcoin movements on the market, comparisons to other entities moving Bitcoin, and the potential implications for Tesla's stock price. There is also mention of Elon Musk's Tesla moving a significant amount of Bitcoin to unknown wallets, with some sources suggesting that it may not necessarily indicate selling. Overall, the sentiment expressed in the messages is mixed, with some expressing frustration or skepticism towards Tesla and Elon Musk, while others are discussing potential investment strategies and market movements.","data":[3,1,0,0,1,1,9,0,4,1,2,2,1,0,0,2,0,4,1,1,1,0,0,0,0,0,1,3,2,0,2,2,14,14,4,0,0,1,0,2,2,1,7,2,1,1,0,30,2,7,2,2,0,1,6]},{"label":"SUI","topics":"sui,sei,suinetwork,120,flagship","description":"The key topics currently being discussed on Twitter in relation to the crypto industry include the significant rise in DEX volume for $SUI, the price increase of nearly 19% after bouncing off the POC, speculation on whether the price of $SUI could double again, comparisons of market capitalization with other cryptocurrencies like $NEAR and $DOT, the launch of native USDC on the Sui network via #NAVI, and warnings against selling or shorting $SUI due to potential violent price movements. Additionally, there is discussion about $SUI products being marketed to the masses, updates from the $SULLY team, and the potential listing of Pulse $PLS on Binance. Overall, there is a mix of excitement, speculation, and caution surrounding the $SUI cryptocurrency on social media platforms.","data":[0,3,1,2,0,1,0,1,1,3,1,3,0,6,0,4,2,7,6,2,1,4,2,4,5,3,0,4,2,0,0,3,1,2,1,4,2,10,1,7,2,2,3,1,1,5,6,1,1,5,1,2,5,0,2]},{"label":"ETH","topics":"formation,inverse,triangle,oi,loses","description":"The messages from Twitter suggest that there is a mix of bullish and bearish sentiment surrounding Ethereum ($ETH). Some users believe that Ethereum is undervalued and could potentially see a significant price rally, with price targets ranging from $10k to $15k. Others are more cautious, predicting a potential drop in price before retesting major support levels.\n\nThere is also discussion about potential market volatility and the possibility of a sell-off in Ethereum. Some analysts are pointing out key metrics that signal a potential downturn, while others are optimistic about a potential price increase.\n\nOverall, it seems that the crypto community on Twitter is divided on the future of Ethereum, with some expecting a bullish supercycle while others are more cautious about potential market risks. Investors are encouraged to carefully consider their strategies and risk tolerance in navigating the current market conditions.","data":[1,3,0,1,1,0,5,1,1,1,1,2,2,0,0,2,55,1,2,1,0,5,0,4,1,1,3,0,1,1,2,1,2,0,1,0,1,7,0,7,4,1,2,1,3,2,0,1,0,1,0,2,0,1,0]},{"label":"PEPE","topics":"pepe,apu,frens,gambling,bonk","description":"The key topics currently being discussed in the crypto community on Twitter include the rise of $PEPE as a popular cryptocurrency, with some users believing it will have strong upside potential. There is also mention of Mpeppe (MPEPE) and its potential for decentralized gambling utility and long-term gains, attracting investors. Additionally, there is speculation about $PORK flipping $PEPE again soon, and the comparison of $KLAUS to Pepe the Frog as a potential meme coin. Overall, the sentiment towards $PEPE and related cryptocurrencies seems positive and optimistic.","data":[1,3,2,2,0,0,4,0,0,2,7,4,3,2,1,1,1,1,3,6,2,3,2,1,6,0,0,3,0,0,1,5,3,6,4,2,24,3,4,1,1,0,4,2,0,0,4,0,2,0,1,1,1,1,0]},{"label":"China","topics":"china,chinese,measures,minister,bloomberg","description":"The key topics currently being discussed on social media regarding China's big stimulus reveal include:\n- The impact of China's $58,888 \"Good Luck\" higher low on Bitcoin\n- USDT facing pressure as investors pivot to stocks in China\n- China potentially dumping $1.3 billion in ETH from PlusToken seizure\n- China looking to tax ultra-rich individuals overseas\n- China issuing 2.3 trillion Yuan in special bonds to boost economy\n- Speculation about a 2-3 trillion Yuan stimulus package on the horizon\n- Positive impact on the crypto asset class due to expanding liquidity in China\n- Market disappointment over lack of concrete additional stimulus from China's Finance Ministry\n- Security concerns for Chinese personnel in Pakistan following a suicide bomb attack\n\nOverall, the discussions highlight the significant influence of China's economic policies and stimulus measures on global markets, particularly in the cryptocurrency and financial sectors.","data":[4,2,2,1,1,1,4,2,1,8,1,2,2,2,1,1,1,7,1,1,1,3,1,3,0,7,6,3,1,3,6,1,1,1,1,3,6,2,2,1,4,2,1,1,2,7,6,2,1,1,1,1,0,2,0]},{"label":"SOL","topics":"ethena,sol,solanas,150,solana","description":"Based on the messages from Twitter, it seems that there is a lot of discussion and excitement surrounding the cryptocurrency $SOL (Solana). Some key points mentioned include the rapid changes in the metas of $SOL \"shitcoins\", the potential for $SOL to reach $300, and the comparison of $SOL to other cryptocurrencies like $ETH (Ethereum) and $BTC (Bitcoin).\n\nThere is also mention of upcoming launches and developments within the Solana ecosystem, such as the launch of @Yeve_fi and the potential for $SOL to outperform other cryptocurrencies in the future. Additionally, there is speculation about the price of $SOL potentially reaching $1000 and the impact of political events, such as the potential for $SOL to increase in price if Trump wins the election.\n\nOverall, it seems that there is a lot of optimism and bullish sentiment surrounding $SOL within the crypto community, with discussions about potential price movements, partnerships, and developments within the Solana ecosystem.","data":[1,3,1,0,0,0,1,2,1,0,5,3,0,1,0,1,4,3,3,2,0,1,0,7,2,2,1,2,1,7,2,0,1,0,1,2,0,6,3,8,2,3,0,11,13,2,4,0,1,1,3,2,4,3,1]},{"label":"CPI","topics":"inflation,cpi,yoy,expectations,fed","description":"Inflation is a hot topic on social media, with discussions ranging from the impact on consumer purchasing power to its effect on political decisions. People are expressing concern about rising inflation rates and the potential consequences for the economy. Some are turning to alternative assets like Bitcoin as a hedge against inflation. Overall, the sentiment towards inflation seems to be one of caution and uncertainty.","data":[1,1,3,2,0,1,1,3,1,2,0,4,0,4,1,2,3,3,4,1,1,3,1,1,2,28,1,2,0,0,2,0,0,2,3,2,3,2,2,2,1,1,0,2,3,2,3,1,2,2,2,3,1,7,3]},{"label":"ETF Flows","topics":"inflow,inflows,net,etfs,fbtc","description":"The key topic discussed in the messages from Twitter is the significant increase in inflows into U.S. spot Bitcoin ETFs. The messages highlight the large amounts of money flowing into these ETFs, with one message mentioning nearly $1 billion flowing in over just two days. The messages also compare the inflows into Bitcoin ETFs versus Ethereum ETFs, noting the disparity in amounts. Additionally, there is mention of potential market implications, such as the possibility of a local top when Bitcoin ETF inflows peak. Overall, the messages indicate a strong interest and investment in Bitcoin ETFs, with some suggesting this could be a game changer for the crypto landscape.","data":[1,1,0,4,18,3,3,4,1,2,0,0,3,1,1,1,7,1,0,0,1,0,1,0,1,3,0,1,0,0,5,0,0,4,1,2,0,0,0,1,0,2,4,2,28,2,0,0,1,5,0,3,0,2,5]},{"label":"SHIB","topics":"shiba,inu,shib,shibainu,anticipated","description":"The key topics currently discussed on Twitter in the crypto industry include the rivalry between Shiba Inu ($SHIB) and Dogecoin ($DOGE), with mentions of Tesla backing Dogecoin and DeLorean Motors potentially supporting Shiba Inu. There is also discussion about the arrest of the Saitama Inu dev and the potential impact on other meme coins like Hokkaidu Inu, Kendu Inu, Kishu Inu, and more. Additionally, there are predictions about the future targets for cryptocurrencies like Pepe ($PEPE) and Arbitrum ($ARB) in 2024. Overall, the crypto community on Twitter is actively engaged in discussing these various topics and developments in the industry.","data":[0,1,0,1,0,0,3,5,1,1,2,0,0,0,1,0,2,2,0,0,1,0,0,3,1,1,26,4,2,1,0,2,0,0,2,0,0,2,0,1,0,0,0,19,1,0,1,0,3,0,0,1,0,2,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-41.ts b/priv/repo/major_topics_seed/data-41.ts deleted file mode 100644 index 03fc1fc4a3..0000000000 --- a/priv/repo/major_topics_seed/data-41.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '10.10.24', - '11.10.24', - '11.10.24', - '11.10.24', - '11.10.24', - '11.10.24', - '11.10.24', - '11.10.24', - '12.10.24', - '12.10.24', - '12.10.24', - '12.10.24', - '12.10.24', - '12.10.24', - '12.10.24', - '12.10.24', - '13.10.24', - '13.10.24', - '13.10.24', - '13.10.24', - '13.10.24', - '13.10.24', - '13.10.24', - '13.10.24', - '14.10.24', - '14.10.24', - '14.10.24', - '14.10.24', - '14.10.24', - '14.10.24', - '14.10.24', - '14.10.24', - '15.10.24', - '15.10.24', - '15.10.24', - '15.10.24', - '15.10.24', - '15.10.24', - '15.10.24', - '15.10.24', - '16.10.24', - '16.10.24', - '16.10.24', - '16.10.24', - '16.10.24', - '16.10.24', - '16.10.24', - '16.10.24', - '17.10.24', - '17.10.24', - '17.10.24', - '17.10.24', - '17.10.24', - '17.10.24', - '17.10.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'freedom,fiat,bitcoiners,cash,understand', - description: - "The messages from Twitter discuss various aspects of Bitcoin, including its ability to transcend barriers such as race and economic class, its potential to be a decentralized bank, and its role in empowering individuals to take back financial sovereignty. There is also mention of the importance of valuing wealth in Bitcoin over traditional currencies like the USD. Additionally, the messages touch on the organic growth of Bitcoin's brand awareness and its status as a store of value. The topic of Bitcoiners and their motivations is also brought up, highlighting the diverse range of individuals involved in the cryptocurrency space. Overall, the messages convey a sense of optimism and empowerment surrounding Bitcoin and its potential impact on the financial world.", - data: [ - 15, 2, 6, 14, 62, 41, 6, 7, 8, 12, 13, 16, 5, 12, 12, 8, 7, 3, 13, 14, 5, 7, 9, 9, 20, 13, - 12, 8, 12, 13, 9, 8, 16, 9, 10, 20, 13, 19, 12, 11, 8, 18, 12, 6, 9, 12, 8, 17, 5, 16, 18, - 10, 10, 9, 13, - ], - }, - { - label: 'MSTR', - topics: 'microstrategy,mstr,michael,saylor,premium', - description: - "The messages from Twitter indicate a negative divergence in $MSTR stock, with some users suggesting it may be a blow-off top. There is discussion about MicroStrategy's stock hitting new highs, potential downturns, and the influence of Michael Saylor on investments. Some users caution against falling for the leveraged MSTR trap and warn against getting too caught up in the hype. Overall, there is a mix of excitement, skepticism, and caution surrounding $MSTR and its relationship with Bitcoin. Additionally, there is mention of an upcoming event in Malta related to AI and blockchain, as well as comparisons between Bitcoin and other assets in terms of YTD returns.", - data: [ - 6, 12, 2, 10, 7, 3, 7, 4, 4, 3, 8, 9, 6, 2, 9, 5, 4, 10, 4, 6, 5, 7, 7, 11, 5, 11, 12, 10, - 2, 8, 5, 8, 40, 28, 7, 17, 5, 9, 4, 4, 14, 22, 5, 9, 3, 12, 3, 8, 6, 8, 10, 4, 11, 2, 8, - ], - }, - { - label: 'TSLA', - topics: 'tsla,tesla,robots,musk,cars', - description: - "The key topics discussed in the messages from Twitter are:\n1. Robots buying all the turbo on the open market\n2. Tesla's advancements in robotics and AI\n3. Elon Musk's presentation at the Tesla Robotaxi event\n4. Tesla's new innovations such as the Robovan and Cybercab\n5. Speculation about Tether's AI division\n6. TRON and Justin Sun's potential comeback in the crypto industry\n\nOverall, the messages highlight the excitement and speculation surrounding Tesla's advancements in robotics, AI, and autonomous vehicles, as well as the potential impact of AI in the crypto industry.", - data: [ - 4, 6, 12, 3, 0, 0, 1, 5, 5, 4, 7, 8, 5, 3, 5, 12, 9, 5, 7, 9, 7, 5, 8, 3, 6, 7, 13, 7, 5, - 12, 4, 4, 4, 3, 10, 10, 8, 8, 5, 9, 13, 29, 6, 11, 3, 5, 14, 30, 12, 1, 41, 5, 9, 5, 7, - ], - }, - { - label: 'AI', - topics: 'models,agents,training,compute,agent', - description: - 'The messages from Twitter suggest that the crypto industry is increasingly being dominated by discussions and advancements in artificial intelligence (AI). From the development of AI-powered hospitals to the integration of AI in creating virtual worlds and enhancing online content creation, it is clear that AI is becoming a key player in the industry. Companies like Fraction AI and Simplismart are leveraging AI to improve performance and access to data, while others are using AI assistants and models to enhance user experiences and create innovative solutions. The narrative seems to indicate a shift towards AI-driven technologies and solutions in the crypto industry.', - data: [ - 46, 37, 10, 9, 1, 0, 1, 9, 2, 4, 3, 8, 4, 16, 2, 8, 7, 4, 4, 15, 3, 7, 17, 10, 6, 6, 6, 7, - 7, 2, 6, 9, 7, 8, 6, 7, 5, 6, 11, 8, 10, 11, 2, 6, 4, 8, 13, 12, 3, 3, 6, 1, 8, 7, 9, - ], - }, - { - label: 'Memecoins', - topics: 'cults,cult,memes,memecoin,memecoins', - description: - 'The key topic discussed in the messages from Twitter is the rise of meme coins in the crypto industry. While some people dismiss meme coins as "ultra trash" and "normie fuel," others believe that meme coins are driving the prices up and could potentially succeed in the future. There is a debate between utility plays on ETH and meme coins, with some suggesting that meme coins could be insider pump and dumps. Additionally, there is a comparison between meme coins and cultcoins, with some believing that cultcoins have more potential. Overall, the discussion highlights the speculative nature of meme coins and the potential for significant gains for those who can hold onto winning trades for a long time.', - data: [ - 4, 1, 3, 5, 1, 1, 1, 2, 7, 8, 6, 6, 8, 2, 4, 6, 4, 1, 2, 6, 4, 10, 3, 6, 7, 6, 7, 3, 3, 5, - 5, 95, 4, 11, 13, 7, 10, 4, 3, 6, 4, 5, 6, 2, 3, 4, 1, 3, 3, 7, 10, 3, 10, 7, 4, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,pixel', - description: - "The messages from Twitter discuss various aspects of art, including the appreciation of art, the impact of AI on art, and the practical aspects of art such as printing and graphic design. There is also a mention of a new art collection called 'Alius' and the importance of supporting artists. Additionally, there is a message expressing admiration for a literary figure. Overall, the messages highlight the diverse and vibrant world of art and creativity on social media platforms like Twitter.", - data: [ - 7, 5, 57, 3, 0, 1, 0, 4, 8, 2, 11, 6, 3, 3, 7, 4, 2, 7, 12, 5, 4, 4, 7, 4, 3, 5, 4, 5, 5, 7, - 4, 3, 4, 6, 3, 5, 5, 7, 3, 0, 6, 6, 4, 5, 7, 2, 8, 4, 4, 0, 5, 2, 4, 1, 9, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,babydoge,69,department', - description: - 'The messages from Twitter suggest that Dogecoin is gaining momentum and attention in the crypto community. There is excitement about the potential rise of Dogecoin and its impact on the market. Some users believe that Dogecoin is a safe investment and could lead to a memecoin run. Additionally, there is a comparison between Dogecoin and other meme coins like SHIB and PEPE. The idea of the "DOGE" narrative and the potential for growth in the Dogecoin market is also discussed. Overall, it seems that Dogecoin is a topic of interest and discussion among crypto enthusiasts on social media.', - data: [ - 3, 1, 1, 2, 1, 0, 4, 4, 3, 1, 3, 4, 1, 5, 123, 3, 0, 0, 3, 4, 3, 10, 2, 2, 4, 2, 2, 3, 4, 3, - 2, 2, 6, 4, 3, 5, 6, 5, 2, 3, 4, 6, 4, 6, 5, 2, 5, 6, 3, 1, 2, 0, 3, 7, 6, - ], - }, - { - label: 'BTC Price', - topics: '67000,65000,70000,65k,66000', - description: - "The key topics currently being discussed in the crypto community on Twitter include the price of Bitcoin breaking $65,000 and potentially reaching $66,000 this week. There is excitement over Bitcoin's recent rally, with the price crossing $68,000 for the first time since July. There is also discussion about the impact of ETF inflows and BlackRock's endorsement on the price of Bitcoin. Some analysts are predicting a massive parabolic rally for Bitcoin, with price targets ranging from $147,600 to $184,500. Overall, there is a bullish sentiment surrounding Bitcoin's price movement and potential for further gains in the near future.", - data: [ - 1, 1, 4, 5, 26, 21, 19, 6, 2, 3, 4, 5, 5, 4, 1, 4, 4, 3, 10, 1, 2, 9, 1, 16, 3, 1, 3, 1, 4, - 9, 5, 1, 1, 3, 2, 0, 3, 7, 2, 7, 3, 5, 4, 3, 5, 4, 5, 5, 2, 5, 2, 13, 6, 2, 3, - ], - }, - { - label: 'DeFi', - topics: 'renaissance,tradfi,defi,strategies,lending', - description: - 'The messages from twitter discuss various topics related to the DeFi (Decentralized Finance) industry. Some key points mentioned include:\n\n1. The need for an infrastructure overhaul in DeFi to challenge traditional finance dominance.\n2. The importance of DeFi in supporting blockchain adoption and reimagining ownership and commerce.\n3. The introduction of new technologies and platforms like Injective for finance.\n4. The potential for DeFi to revolutionize finance through intelligent AI outputs triggering smart contract executions.\n5. Projects and platforms within the DeFi ecosystem such as Goldilocks, Honeypot, and Ooga Booga DEX aggregator.\n6. Opportunities for funding and development in cross-chain DeFi, RWA tokenization, and social platforms.\n7. Integration of IOTA EVM with FireblocksHQ for secure asset management.\n8. The discussion on institutional strategies in DeFi, the value of mature DeFi protocols, and the importance of risk in yield farming.\n9. The launch of DEXTPad in collaboration with ChainGPT_Labs for discovering, evaluating, and investing in DeFi projects.\n\nOverall, the messages highlight the growth and innovation happening within the DeFi industry, with a focus on technology advancements, ecosystem development, and investment opportunities.', - data: [ - 2, 5, 1, 4, 0, 0, 3, 2, 2, 3, 6, 0, 0, 12, 6, 4, 2, 6, 4, 5, 3, 3, 4, 1, 3, 0, 4, 5, 8, 4, - 2, 0, 2, 2, 6, 5, 2, 2, 11, 4, 4, 4, 3, 1, 6, 4, 6, 0, 2, 7, 4, 1, 1, 2, 6, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,accumulation,15m,aave', - description: - "The model that has predicted a monetary sea change in the crypto industry is the behavior of Bitcoin whales. The messages from Twitter indicate that new Bitcoin whales are emerging and accumulating large amounts of BTC, potentially signaling price gains on the horizon. The surge in whale wallets and their significant purchases during price dips have historically been associated with the start of bull runs in the market. This trend is reminiscent of what happened in 2020 before Bitcoin exploded in value. Additionally, the increase in whale transactions and the growth of young whale populations suggest a positive outlook for Bitcoin's price in the near future. Overall, the behavior of Bitcoin whales is seen as a key indicator of potential market shifts and significant price movements in the crypto industry.", - data: [ - 6, 6, 0, 4, 1, 8, 3, 7, 6, 1, 1, 0, 2, 0, 2, 4, 8, 3, 2, 0, 2, 1, 1, 0, 0, 2, 3, 3, 0, 3, 3, - 1, 2, 7, 2, 3, 3, 4, 1, 2, 0, 0, 1, 4, 2, 1, 3, 2, 3, 1, 5, 0, 2, 25, 1, - ], - }, - { - label: 'Layer 2', - topics: 'l2s,l1,vision,failing,zones', - description: - 'The key topics discussed in the messages from Twitter regarding Ethereum and Layer 2 solutions include:\n\n1. The potential for Ethereum to double in price by focusing on user-friendly language instead of technical jargon.\n2. The shift towards using Ethereum for sustainable projects, such as Zupass.\n3. The emergence of "Economic Zones" as a new trend in the Ethereum community.\n4. The debate over the necessity of tokens for Layer 2 solutions like Arbitrum.\n5. Criticisms of Ethereum\'s lack of resulting in better applications.\n6. Analogies comparing Ethereum to the British Empire and its colonies, with Layer 2 solutions being the colonies declaring independence.\n7. The importance of aligning incentives between Ethereum and Layer 2 solutions for mutual success.\n8. The challenges of balancing decentralization and scalability in Ethereum\'s development.\n9. The potential for different chains, such as Celestia, to compete with Ethereum in the finance sector.\n10. The evolving perception of Layer 2 solutions from skepticism to optimism in the Ethereum community.', - data: [ - 1, 8, 1, 1, 0, 0, 1, 2, 0, 4, 1, 4, 0, 1, 2, 3, 37, 1, 3, 2, 0, 1, 2, 2, 0, 2, 4, 10, 3, 3, - 3, 3, 5, 5, 2, 0, 2, 4, 1, 0, 3, 0, 2, 1, 3, 2, 6, 1, 5, 1, 3, 0, 1, 0, 3, - ], - }, - { - label: 'Tesla moves BTC', - topics: 'moved,unknown,transferred,tesla,wallets', - description: - "The key topics being discussed on Twitter regarding Tesla and Bitcoin include speculation about whether Tesla is selling or just moving their Bitcoin holdings, Elon Musk potentially buying more Bitcoin, the impact of Tesla's Bitcoin movements on the market, comparisons to other entities moving Bitcoin, and the potential implications for Tesla's stock price. There is also mention of Elon Musk's Tesla moving a significant amount of Bitcoin to unknown wallets, with some sources suggesting that it may not necessarily indicate selling. Overall, the sentiment expressed in the messages is mixed, with some expressing frustration or skepticism towards Tesla and Elon Musk, while others are discussing potential investment strategies and market movements.", - data: [ - 3, 1, 0, 0, 1, 1, 9, 0, 4, 1, 2, 2, 1, 0, 0, 2, 0, 4, 1, 1, 1, 0, 0, 0, 0, 0, 1, 3, 2, 0, 2, - 2, 14, 14, 4, 0, 0, 1, 0, 2, 2, 1, 7, 2, 1, 1, 0, 30, 2, 7, 2, 2, 0, 1, 6, - ], - }, - { - label: 'SUI', - topics: 'sui,sei,suinetwork,120,flagship', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry include the significant rise in DEX volume for $SUI, the price increase of nearly 19% after bouncing off the POC, speculation on whether the price of $SUI could double again, comparisons of market capitalization with other cryptocurrencies like $NEAR and $DOT, the launch of native USDC on the Sui network via #NAVI, and warnings against selling or shorting $SUI due to potential violent price movements. Additionally, there is discussion about $SUI products being marketed to the masses, updates from the $SULLY team, and the potential listing of Pulse $PLS on Binance. Overall, there is a mix of excitement, speculation, and caution surrounding the $SUI cryptocurrency on social media platforms.', - data: [ - 0, 3, 1, 2, 0, 1, 0, 1, 1, 3, 1, 3, 0, 6, 0, 4, 2, 7, 6, 2, 1, 4, 2, 4, 5, 3, 0, 4, 2, 0, 0, - 3, 1, 2, 1, 4, 2, 10, 1, 7, 2, 2, 3, 1, 1, 5, 6, 1, 1, 5, 1, 2, 5, 0, 2, - ], - }, - { - label: 'ETH', - topics: 'formation,inverse,triangle,oi,loses', - description: - 'The messages from Twitter suggest that there is a mix of bullish and bearish sentiment surrounding Ethereum ($ETH). Some users believe that Ethereum is undervalued and could potentially see a significant price rally, with price targets ranging from $10k to $15k. Others are more cautious, predicting a potential drop in price before retesting major support levels.\n\nThere is also discussion about potential market volatility and the possibility of a sell-off in Ethereum. Some analysts are pointing out key metrics that signal a potential downturn, while others are optimistic about a potential price increase.\n\nOverall, it seems that the crypto community on Twitter is divided on the future of Ethereum, with some expecting a bullish supercycle while others are more cautious about potential market risks. Investors are encouraged to carefully consider their strategies and risk tolerance in navigating the current market conditions.', - data: [ - 1, 3, 0, 1, 1, 0, 5, 1, 1, 1, 1, 2, 2, 0, 0, 2, 55, 1, 2, 1, 0, 5, 0, 4, 1, 1, 3, 0, 1, 1, - 2, 1, 2, 0, 1, 0, 1, 7, 0, 7, 4, 1, 2, 1, 3, 2, 0, 1, 0, 1, 0, 2, 0, 1, 0, - ], - }, - { - label: 'PEPE', - topics: 'pepe,apu,frens,gambling,bonk', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the rise of $PEPE as a popular cryptocurrency, with some users believing it will have strong upside potential. There is also mention of Mpeppe (MPEPE) and its potential for decentralized gambling utility and long-term gains, attracting investors. Additionally, there is speculation about $PORK flipping $PEPE again soon, and the comparison of $KLAUS to Pepe the Frog as a potential meme coin. Overall, the sentiment towards $PEPE and related cryptocurrencies seems positive and optimistic.', - data: [ - 1, 3, 2, 2, 0, 0, 4, 0, 0, 2, 7, 4, 3, 2, 1, 1, 1, 1, 3, 6, 2, 3, 2, 1, 6, 0, 0, 3, 0, 0, 1, - 5, 3, 6, 4, 2, 24, 3, 4, 1, 1, 0, 4, 2, 0, 0, 4, 0, 2, 0, 1, 1, 1, 1, 0, - ], - }, - { - label: 'China', - topics: 'china,chinese,measures,minister,bloomberg', - description: - "The key topics currently being discussed on social media regarding China's big stimulus reveal include:\n- The impact of China's $58,888 \"Good Luck\" higher low on Bitcoin\n- USDT facing pressure as investors pivot to stocks in China\n- China potentially dumping $1.3 billion in ETH from PlusToken seizure\n- China looking to tax ultra-rich individuals overseas\n- China issuing 2.3 trillion Yuan in special bonds to boost economy\n- Speculation about a 2-3 trillion Yuan stimulus package on the horizon\n- Positive impact on the crypto asset class due to expanding liquidity in China\n- Market disappointment over lack of concrete additional stimulus from China's Finance Ministry\n- Security concerns for Chinese personnel in Pakistan following a suicide bomb attack\n\nOverall, the discussions highlight the significant influence of China's economic policies and stimulus measures on global markets, particularly in the cryptocurrency and financial sectors.", - data: [ - 4, 2, 2, 1, 1, 1, 4, 2, 1, 8, 1, 2, 2, 2, 1, 1, 1, 7, 1, 1, 1, 3, 1, 3, 0, 7, 6, 3, 1, 3, 6, - 1, 1, 1, 1, 3, 6, 2, 2, 1, 4, 2, 1, 1, 2, 7, 6, 2, 1, 1, 1, 1, 0, 2, 0, - ], - }, - { - label: 'SOL', - topics: 'ethena,sol,solanas,150,solana', - description: - 'Based on the messages from Twitter, it seems that there is a lot of discussion and excitement surrounding the cryptocurrency $SOL (Solana). Some key points mentioned include the rapid changes in the metas of $SOL "shitcoins", the potential for $SOL to reach $300, and the comparison of $SOL to other cryptocurrencies like $ETH (Ethereum) and $BTC (Bitcoin).\n\nThere is also mention of upcoming launches and developments within the Solana ecosystem, such as the launch of @Yeve_fi and the potential for $SOL to outperform other cryptocurrencies in the future. Additionally, there is speculation about the price of $SOL potentially reaching $1000 and the impact of political events, such as the potential for $SOL to increase in price if Trump wins the election.\n\nOverall, it seems that there is a lot of optimism and bullish sentiment surrounding $SOL within the crypto community, with discussions about potential price movements, partnerships, and developments within the Solana ecosystem.', - data: [ - 1, 3, 1, 0, 0, 0, 1, 2, 1, 0, 5, 3, 0, 1, 0, 1, 4, 3, 3, 2, 0, 1, 0, 7, 2, 2, 1, 2, 1, 7, 2, - 0, 1, 0, 1, 2, 0, 6, 3, 8, 2, 3, 0, 11, 13, 2, 4, 0, 1, 1, 3, 2, 4, 3, 1, - ], - }, - { - label: 'CPI', - topics: 'inflation,cpi,yoy,expectations,fed', - description: - 'Inflation is a hot topic on social media, with discussions ranging from the impact on consumer purchasing power to its effect on political decisions. People are expressing concern about rising inflation rates and the potential consequences for the economy. Some are turning to alternative assets like Bitcoin as a hedge against inflation. Overall, the sentiment towards inflation seems to be one of caution and uncertainty.', - data: [ - 1, 1, 3, 2, 0, 1, 1, 3, 1, 2, 0, 4, 0, 4, 1, 2, 3, 3, 4, 1, 1, 3, 1, 1, 2, 28, 1, 2, 0, 0, - 2, 0, 0, 2, 3, 2, 3, 2, 2, 2, 1, 1, 0, 2, 3, 2, 3, 1, 2, 2, 2, 3, 1, 7, 3, - ], - }, - { - label: 'ETF Flows', - topics: 'inflow,inflows,net,etfs,fbtc', - description: - 'The key topic discussed in the messages from Twitter is the significant increase in inflows into U.S. spot Bitcoin ETFs. The messages highlight the large amounts of money flowing into these ETFs, with one message mentioning nearly $1 billion flowing in over just two days. The messages also compare the inflows into Bitcoin ETFs versus Ethereum ETFs, noting the disparity in amounts. Additionally, there is mention of potential market implications, such as the possibility of a local top when Bitcoin ETF inflows peak. Overall, the messages indicate a strong interest and investment in Bitcoin ETFs, with some suggesting this could be a game changer for the crypto landscape.', - data: [ - 1, 1, 0, 4, 18, 3, 3, 4, 1, 2, 0, 0, 3, 1, 1, 1, 7, 1, 0, 0, 1, 0, 1, 0, 1, 3, 0, 1, 0, 0, - 5, 0, 0, 4, 1, 2, 0, 0, 0, 1, 0, 2, 4, 2, 28, 2, 0, 0, 1, 5, 0, 3, 0, 2, 5, - ], - }, - { - label: 'SHIB', - topics: 'shiba,inu,shib,shibainu,anticipated', - description: - 'The key topics currently discussed on Twitter in the crypto industry include the rivalry between Shiba Inu ($SHIB) and Dogecoin ($DOGE), with mentions of Tesla backing Dogecoin and DeLorean Motors potentially supporting Shiba Inu. There is also discussion about the arrest of the Saitama Inu dev and the potential impact on other meme coins like Hokkaidu Inu, Kendu Inu, Kishu Inu, and more. Additionally, there are predictions about the future targets for cryptocurrencies like Pepe ($PEPE) and Arbitrum ($ARB) in 2024. Overall, the crypto community on Twitter is actively engaged in discussing these various topics and developments in the industry.', - data: [ - 0, 1, 0, 1, 0, 0, 3, 5, 1, 1, 2, 0, 0, 0, 1, 0, 2, 2, 0, 0, 1, 0, 0, 3, 1, 1, 26, 4, 2, 1, - 0, 2, 0, 0, 2, 0, 0, 2, 0, 1, 0, 0, 0, 19, 1, 0, 1, 0, 3, 0, 0, 1, 0, 2, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-42.json b/priv/repo/major_topics_seed/data-42.json deleted file mode 100644 index 51c94029dc..0000000000 --- a/priv/repo/major_topics_seed/data-42.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["17.10.24","18.10.24","18.10.24","18.10.24","18.10.24","18.10.24","18.10.24","18.10.24","19.10.24","19.10.24","19.10.24","19.10.24","19.10.24","19.10.24","19.10.24","19.10.24","20.10.24","20.10.24","20.10.24","20.10.24","20.10.24","20.10.24","20.10.24","20.10.24","21.10.24","21.10.24","21.10.24","21.10.24","21.10.24","21.10.24","21.10.24","21.10.24","22.10.24","22.10.24","22.10.24","22.10.24","22.10.24","22.10.24","22.10.24","22.10.24","23.10.24","23.10.24","23.10.24","23.10.24","23.10.24","23.10.24","23.10.24","23.10.24","24.10.24","24.10.24","24.10.24","24.10.24","24.10.24","24.10.24","24.10.24"],"datasets":[{"label":"AI","topics":"agents,agent,humans,training,pivot","description":"The messages from Twitter discuss a variety of topics related to AI in the crypto industry. Some key points include the potential for AI to help onboard more collectors, concerns about the rise of AI scams, predictions about an AI government run by quantum computers in the future, debates about the future of AI coins and mascots, criticism of Cloud AI as a disaster waiting to happen, the hiring of a Chief Economist at OpenAI to study the economic impact of AI, discussions about trust and verification of AI models in critical fields like finance and healthcare, and the launch of AI-related projects such as Cryptify AI and the 0G Foundation's AI Alignment Node Sale. Overall, the messages reflect a mix of excitement, skepticism, and curiosity about the role of AI in the crypto industry.","data":[28,92,13,4,5,0,8,4,5,6,14,8,12,6,9,13,7,11,7,5,17,19,10,14,9,13,14,12,11,3,10,7,9,10,10,10,7,13,11,10,13,15,5,13,10,9,10,18,4,7,12,7,10,8,15]},{"label":"SOL","topics":"solana,sol,strength,bitget,ex","description":"The key topics discussed in the messages from twitter regarding $GOLDIE on SOL include:\n- Speculation about launching wsol on eth\n- Comparison between holding SOL and participating in meme coin wars\n- Potential launch of SOL when BTC and ETH stop selling off\n- Analysis of SOL/USD on TradingView\n- Launch of tokenized mineral rights investment fund on Solana by Elmnts\n- Altcoins like ETH, SUI, and SOL gaining momentum following support from Bitcoin\n- Solana outperforming Cardano in key performance metrics\n- Solana meme coin manufacturing going wrong\n- Predictions about Solana winning the current cycle\n- Speculation about Solana's potential major reversal in price\n- Emerging cryptocurrencies like SOL, DOGE, and SUI set to outpace Bitcoin's recovery\n- Discussion about whether to invest in Solana or SUI token during the bull run\n- Swing trade strategy for investing in SOL and SUI tokens\n- Success of dollar-cost averaging (DCA) buying Bitcoin\n\nOverall, the discussions revolve around the performance, potential, and comparison of various cryptocurrencies, with a focus on Solana and its potential in the current market cycle.","data":[7,9,9,10,3,1,6,12,14,6,19,8,6,10,7,12,12,9,15,13,10,2,4,9,11,10,8,8,16,11,9,14,6,8,10,13,9,16,10,6,5,16,9,6,74,10,5,4,10,18,5,7,12,9,2]},{"label":"ECB and Fed write anti-bitcoin papers","topics":"ecb,fiat,european,paper,central","description":"The messages from Twitter highlight the belief that Bitcoin is a symbol of freedom and a way to escape the control of centralized institutions like the ECB, IMF, and World Bank. There is a strong sentiment that Bitcoin is a form of \"Fuck You\" money that allows individuals to have financial independence and moral courage. \n\nThere is also criticism towards the ECB for failing to understand Bitcoin's true nature as digital Gold and for misrepresenting its volatility and utility. The messages suggest that Bitcoin is a tool for survival in a collapsing state and a way to combat institutionalized debt slavery.\n\nOverall, the messages reflect a strong belief in Bitcoin as a revolutionary technology that challenges traditional financial systems and empowers individuals to take control of their own wealth.","data":[6,2,3,15,20,29,7,4,6,18,6,10,5,2,6,23,7,7,16,12,6,6,10,7,8,15,11,7,7,6,9,12,12,11,5,22,31,8,11,9,4,6,4,3,5,5,6,9,8,3,19,6,8,8,12]},{"label":"Memecoins","topics":"supercycle,giga,memes,memecoins,memecoin","description":"The current discussion on social media platforms like Twitter revolves around the hype and potential collapse of memecoins. Users are sharing their experiences with memecoins, discussing which ones to buy, and even participating in meme contests. There is also a mention of using platforms like Bullx for trading memecoins and the prediction that some memecoins could surpass Dogecoin's market cap. Additionally, there is a conversation about the evolution of memes, from animal memes to AI memes, suggesting a progression towards more complex and intelligent content. Overall, the sentiment seems to be a mix of excitement, humor, and speculation about the future of memecoins in the crypto industry.","data":[4,2,4,13,6,0,5,4,8,6,14,6,8,2,4,9,3,8,4,6,8,5,17,8,4,10,7,12,6,13,9,82,46,11,8,2,12,3,7,10,6,8,9,2,8,3,9,9,9,6,8,4,2,8,2]},{"label":"APE","topics":"apes,apechain,apecoin,ape,bored","description":"The EVM team at Magic Eden is making waves in the crypto industry with the launch of ApeChain, the REAL FIRST MEME on ApeChain $FAFO. The price of APE has surged 86% in just seven days following the launch of Ape Chain Layer 3. ApeChain is setting itself apart with its unique approach to NFTs and gaming, creating a casino-like experience for users. The community is buzzing with excitement as ApeChain continues to grow and expand, with new features being added and a focus on memecoin culture. Users are actively participating in the ecosystem, staking their assets and earning passive income in $APE. The launch of ApeChain has sparked investor interest, with the price of ApeCoin increasing by over 100% in just two days. Magic Eden has become the go-to platform for trading ApeChain NFTs, with over 5 billion mints and 400k+ APE traded. The future looks bright for ApeChain and its community of dedicated apes.","data":[12,3,104,7,0,0,8,12,5,6,8,5,1,5,1,2,4,7,7,8,6,8,9,8,7,5,2,3,12,12,12,7,8,8,9,5,8,2,3,4,4,4,5,8,2,4,4,2,11,4,0,5,6,4,2]},{"label":"BTC","topics":"align,cup,fixes,hash,orange","description":"The messages from Twitter show a variety of opinions and sentiments about Bitcoin. Some users express excitement and optimism about Bitcoin, referring to it as \"the way\" and highlighting its potential to revolutionize the financial system. Others mention specific events, such as the SEC's involvement with Bitcoin, and emphasize the importance of educating children about money and Bitcoin.\n\nThere are also mentions of Bitcoin being a force for positive change in the world, with references to love, light, and reorganizing society. On the other hand, there are also negative comments, such as Bitcoin making someone sad.\n\nOverall, the messages reflect a diverse range of perspectives on Bitcoin, from enthusiastic support to skepticism and criticism. The topic of Bitcoin is clearly a popular and dynamic discussion point within the crypto community on social media.","data":[6,1,3,5,34,49,6,2,6,4,3,6,4,3,3,7,4,5,11,9,11,4,6,8,2,12,3,5,9,5,7,3,4,8,2,6,3,1,6,4,6,8,5,7,14,8,7,4,4,7,7,1,5,9,8]},{"label":"Art","topics":"artists,art,artist,collectors,piece","description":"The messages from Twitter discuss various aspects of art, including different genres like pop art, op art, and the new genre of $SLOP ART driven by memetics and AI. There is also mention of an AI-powered robot artist that has gained attention in the art world for producing unique original paintings. Additionally, there are personal reflections on the creative process, with one individual sharing their series titled \"Surrendered to the line\" and another expressing their passion for creating art every day.\n\nOverall, the Twitter messages highlight the diverse and evolving nature of art, with discussions ranging from traditional art projects to innovative AI-driven creations. The crypto community is also mentioned in the hashtags, indicating a potential intersection between art and cryptocurrency in the online discourse.","data":[7,4,60,10,1,0,1,3,5,5,5,8,6,3,9,8,2,4,10,6,3,8,8,5,4,6,5,6,6,6,10,3,4,4,4,7,11,4,6,6,6,5,4,8,5,3,7,6,7,4,0,4,4,3,9]},{"label":"GameFi","topics":"gaming,games,gamefi,grid,champions","description":"The messages from Twitter suggest that there is a lot of excitement and activity surrounding gaming in the crypto industry. Specifically, there is mention of $SON gaming on #Kucoin, with a potential parabolic gaming pump loading. Additionally, there are discussions about Web3 gaming, with mentions of games like Age of Empires Mobile and Exverse. The importance of play-to-earn models in gaming is also highlighted, along with the need for AAA games to be multi-platform for developers to make a return on investment. Overall, it seems that the gaming community is buzzing with new releases, partnerships, and opportunities in the crypto space.","data":[2,5,3,4,4,0,3,4,0,7,3,3,4,4,4,6,6,4,4,7,66,4,15,6,2,8,2,2,10,2,14,5,4,8,2,3,23,4,3,6,5,4,3,7,3,4,5,4,5,3,7,1,8,7,6]},{"label":"DOGE","topics":"dogecoin,doge,projection,overbought,cents","description":"The messages from Twitter suggest that Dogecoin ($DOGE) is experiencing a surge in activity and price, with potential for further growth. There is discussion about the strength and future potential of Dogecoin as an onchain asset, as well as comparisons to other cryptocurrencies like Bellscoin. Some users are bullish on Dogecoin and believe in its potential for a parabolic surge. There is also mention of potential profit-taking opportunities and technical analysis indicating a bullish trend for Dogecoin. Additionally, there is speculation about the price of Dogecoin reaching $5 and the potential for a surge in WallitIQ ($WLTQ). Overall, the sentiment surrounding Dogecoin on Twitter appears positive and optimistic.","data":[3,3,0,4,3,0,4,1,3,2,0,4,3,5,66,67,0,0,4,1,3,5,5,5,3,2,6,3,7,7,8,4,0,2,3,5,5,8,4,4,4,6,2,4,3,6,4,3,7,3,1,2,6,2,4]},{"label":"ETF Flows","topics":"inflow,inflows,net,etfs,flows","description":"The key topics currently discussed in the crypto industry on social media include the success of Bitcoin ETFs in terms of inflows, with significant amounts of money flowing into these funds. There is also discussion about the comparison between Bitcoin ETF inflows and Gold ETF inflows, highlighting the rapid growth of Bitcoin ETFs. Additionally, there is mention of hedge funds cashing in on the Bitcoin rally and the overall momentum in the crypto market. Other topics include the total number of wallets created on BitTorrent Speed and the total number of TRON addresses. Overall, the focus seems to be on the performance and growth of Bitcoin ETFs, as well as general market trends and developments.","data":[4,2,3,3,34,3,6,3,8,1,2,2,8,4,0,1,33,2,6,3,4,6,5,3,7,13,2,5,0,2,2,3,1,14,7,0,1,0,2,3,1,1,2,1,35,5,9,1,3,4,1,4,1,5,3]},{"label":"GOAT","topics":"goat,gnon,truthterminal,mc,listings","description":"The key topics currently being discussed on Twitter in the crypto industry include the surge in the price of the meme token $GOAT, which has seen a 156% increase in the last two days. There is also discussion about the potential profitability of investing in $GOAT, $DOGE, $SHIB, and $SOLANA, with the possibility of turning $100,000 into $1.5 million in 60 days. Additionally, there is excitement surrounding the AI+Memecoin meta trend, with mentions of new coins like $GOATAI and discussions about the potential for massive growth in the AI sector. Elon Musk's potential involvement in buying GOAT for his balance sheet is also mentioned. Overall, there is a lot of hype and speculation surrounding AI and meme coins in the crypto space.","data":[3,5,2,6,3,0,2,4,8,7,6,8,3,1,1,6,2,0,3,3,5,11,7,4,5,2,1,6,6,6,4,4,2,6,6,3,3,6,7,6,0,4,3,7,4,3,4,12,3,3,7,2,2,9,5]},{"label":"AI Memecoins","topics":"pumpfun,memecoins,meta,animal,kols","description":"The current trend in the crypto industry is the rise of AI memecoins, which are seen as speculative investments. While utility projects focus on fundamentals, AI memecoins combine both speculation and utility. However, there are concerns about the environmental impact of trading AI memecoins, as server farms consume significant resources. Despite the unknown nature of these investments, individuals are actively seeking out the best opportunities in AI memecoins. Some believe that AI memecoins are the new big thing, with $SOL leading the charge. Traders are advised to stay vigilant and not miss out on potential opportunities in this emerging market.","data":[7,28,3,3,3,0,3,0,6,1,3,8,9,1,3,2,2,2,1,3,2,3,5,5,3,2,4,2,4,3,8,10,19,4,3,2,5,1,5,3,2,5,5,5,3,0,1,4,9,1,1,3,0,2,1]},{"label":"DeFi","topics":"defi,oracle,renaissance,mainstream,tradfi","description":"The messages from Twitter indicate that there is a growing interest in DeFi (Decentralized Finance) within the crypto community. Users are exploring DeFi platforms such as ParaSwap and DeFiSaver to access the best prices and manage their assets across multiple protocols. Liquidity farming, also known as yield farming, is a popular concept in DeFi that allows individuals to earn rewards by providing liquidity to DeFi platforms.\n\nThere is a focus on innovation and resilience in the DeFi space, with projects like FIVA Protocol and Aptos & Ondo aiming to redefine DeFi using real-world assets. Additionally, there is discussion about the potential of AI to transform DeFi, with Allora Network's Nick Emmons exploring the intersection of AI and DeFi in an upcoming podcast episode.\n\nOverall, the messages suggest that DeFi is seen as the future of finance, offering new opportunities for users to break free from traditional financial systems and take control of their assets. The complexity of DeFi compared to the simplicity of Bitcoin is highlighted, indicating a shift towards more advanced financial tools and technologies in the crypto industry.","data":[3,6,4,1,2,3,0,4,0,5,5,4,0,4,9,0,1,5,9,7,6,1,6,1,1,4,5,7,3,3,2,1,6,5,2,6,1,5,5,5,8,5,0,2,6,2,4,3,5,9,6,2,4,3,7]},{"label":"TSLA","topics":"tsla,tesla,earnings,cars,260","description":"The key topics discussed in the messages from twitter regarding Tesla include:\n1. New cheaper Tesla models confirmed, with 240+ expected tomorrow.\n2. Tesla's earnings report for Q3 2024, with earnings per share and revenue figures.\n3. Tesla's stock jumping 12% during the earnings call.\n4. AST SpaceMobile securing a contract with the Space Development Agency.\n5. Tesla's Robotaxi and induction charging technology.\n6. Tesla's advancements in autonomy with the Cybercab.\n7. Electric vehicles stealing the spotlight at the Paris Motor Show.\n8. CLS stock ripping to new all-time highs on earnings.\n9. Tesla's stock jumping 15% after earnings, with some skepticism about the planned nature of the earnings.\n10. Discussion about Tesla's fast charge technology rollout and future plans for stationary storage.","data":[0,1,3,2,1,0,2,1,4,0,6,3,2,1,1,9,5,3,5,4,1,1,1,2,3,1,7,1,0,3,1,1,4,2,2,3,2,0,1,0,4,4,1,11,5,3,1,37,2,3,25,0,0,1,5]},{"label":"Election","topics":"voters,votes,elections,candidates,election","description":"The key topics discussed in the messages from twitter include the upcoming election, the firing of Gary Gensler, cryptocurrency, the influence of billionaires in politics, the importance of crypto policies for voters, and the Moldovan election and referendum on EU adhesion. There is also mention of election fraud, tax policies, and the On-Chain Election hosted by Eldarune. Overall, the messages highlight the intersection of politics, cryptocurrency, and voter engagement in the current social media discussions.","data":[4,0,3,3,1,0,1,1,0,0,3,3,7,8,1,2,17,1,1,3,3,2,3,2,2,4,6,0,1,1,3,3,0,2,2,2,2,5,3,4,5,0,2,0,1,3,3,3,0,2,2,4,21,3,1]},{"label":"Michael Saylor","topics":"saylor,michael,saylors,humanity,hes","description":"The messages from Twitter discuss various opinions about Michael Saylor in the crypto industry. Some users praise Saylor for his contributions to Bitcoin and his onboarding of institutions, while others criticize him for his views on self-custody and his support for traditional banks. There is a debate about whether Saylor's approach to Bitcoin aligns with the original anarchist principles of the cryptocurrency. Overall, the discussion highlights the polarizing effect Saylor has on the community, with some seeing him as a key player in Bitcoin's growth and others viewing him as a threat to its core values.","data":[3,3,2,4,2,2,2,2,2,0,4,2,0,2,2,3,1,2,3,2,0,3,2,4,1,4,2,2,1,1,4,0,0,1,2,2,3,2,1,1,5,18,11,1,0,3,0,3,1,0,2,1,1,2,3]},{"label":"MSTR","topics":"mstr,microstrategy,bonds,strategy,acquire","description":"The messages from Twitter suggest that MicroStrategy ($MSTR) is expected to make many millionaires next year, with hodlers currently benefiting from the increase in value. The company's strategy involving Bitcoin has been successful, outperforming companies in the S&P index. There is anticipation for a new all-time high for Bitcoin, with potential for significant growth in both $MSTR and the S&P 500. Despite some skepticism, MicroStrategy's Bitcoin scheme is seen as driving scarcity for BTC. The company's shares have surged significantly since 2020, and there is optimism for further growth in market cap. Discussions also touch on the potential for $MSTR to reach $1000/share and $1T in market cap over time. Overall, there is a positive outlook on the future of MicroStrategy and its relationship with Bitcoin.","data":[2,0,1,2,2,0,3,2,0,0,2,3,1,4,0,0,1,2,2,2,1,5,3,3,4,5,0,1,3,2,2,1,14,8,0,3,1,4,1,3,4,0,5,4,3,2,2,1,1,1,1,0,2,1,1]},{"label":"Elon Musk","topics":"musk,speech,elon,censorship,electric","description":"The key topics discussed in the messages from Twitter include Elon Musk's latest remarks on XRP, his America PAC under fire for a $1 million giveaway, freedom of speech, fighting communism, Elon Musk's views on abortion and the national debt, and his thoughts on ridiculous regulations. The messages also touch on political opinions, loyalty to Elon Musk, and potential security concerns for Elon Musk. Overall, the messages reflect a mix of political, social, and economic discussions within the crypto industry and beyond.","data":[4,3,2,5,2,0,1,0,2,0,0,2,2,1,4,1,0,2,2,5,1,2,4,0,1,4,1,3,10,1,1,3,1,5,1,1,4,5,3,4,4,3,0,2,2,3,3,2,1,2,1,0,2,1,2]},{"label":"CPI","topics":"inflation,caused,bond,rates,cuts","description":"Inflation and hyperinflation are hot topics in the crypto community, with discussions about the impact on purchasing power and the potential for government intervention. The recent example of Zimbabwe's hyperinflation serves as a cautionary tale, with their currency losing significant value. The Federal Reserve's policies are also under scrutiny, with claims that they have devalued the U.S. Dollar over the past century. Overall, there is concern about the potential for high inflation rates and the negative effects it could have on economies and individuals.","data":[1,0,1,3,0,0,0,0,0,5,1,3,2,2,3,2,0,3,1,4,0,5,3,5,1,15,3,1,2,1,2,0,4,2,2,1,1,4,2,2,4,6,1,2,3,2,1,2,3,1,1,1,0,1,3]},{"label":"SCR","topics":"scroll,airdrop,rollup,layer2,800","description":"The key topics currently being discussed in the crypto community on Twitter include the listing of Scroll ($SCR) on various platforms such as Binance, Bybit, OKX, KuCoin, Bitget, MEXC, Gate, and others. Scroll is a native zkEVM Layer 2 for Ethereum, utilizing zero-knowledge proofs for security. There are also discussions about the Scroll governance token launch falling short of expectations due to token allocation issues. Additionally, there is excitement about the upcoming listing of Scroll on the Tapbit exchange and the collaboration with Bitget for listing on their platform. Users can participate in the Scroll TGE campaign and win rewards by completing quests on the Galxe page. Overall, the community is actively engaged in discussions about Scroll and its developments.","data":[2,6,1,0,1,0,3,0,0,1,3,0,1,3,4,3,2,4,1,0,0,0,0,1,0,2,2,2,2,3,0,1,0,0,4,2,1,0,1,5,2,0,31,1,5,1,1,0,0,3,0,0,1,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-42.ts b/priv/repo/major_topics_seed/data-42.ts deleted file mode 100644 index 95dcc50edf..0000000000 --- a/priv/repo/major_topics_seed/data-42.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '17.10.24', - '18.10.24', - '18.10.24', - '18.10.24', - '18.10.24', - '18.10.24', - '18.10.24', - '18.10.24', - '19.10.24', - '19.10.24', - '19.10.24', - '19.10.24', - '19.10.24', - '19.10.24', - '19.10.24', - '19.10.24', - '20.10.24', - '20.10.24', - '20.10.24', - '20.10.24', - '20.10.24', - '20.10.24', - '20.10.24', - '20.10.24', - '21.10.24', - '21.10.24', - '21.10.24', - '21.10.24', - '21.10.24', - '21.10.24', - '21.10.24', - '21.10.24', - '22.10.24', - '22.10.24', - '22.10.24', - '22.10.24', - '22.10.24', - '22.10.24', - '22.10.24', - '22.10.24', - '23.10.24', - '23.10.24', - '23.10.24', - '23.10.24', - '23.10.24', - '23.10.24', - '23.10.24', - '23.10.24', - '24.10.24', - '24.10.24', - '24.10.24', - '24.10.24', - '24.10.24', - '24.10.24', - '24.10.24', - ], - datasets: [ - { - label: 'AI', - topics: 'agents,agent,humans,training,pivot', - description: - "The messages from Twitter discuss a variety of topics related to AI in the crypto industry. Some key points include the potential for AI to help onboard more collectors, concerns about the rise of AI scams, predictions about an AI government run by quantum computers in the future, debates about the future of AI coins and mascots, criticism of Cloud AI as a disaster waiting to happen, the hiring of a Chief Economist at OpenAI to study the economic impact of AI, discussions about trust and verification of AI models in critical fields like finance and healthcare, and the launch of AI-related projects such as Cryptify AI and the 0G Foundation's AI Alignment Node Sale. Overall, the messages reflect a mix of excitement, skepticism, and curiosity about the role of AI in the crypto industry.", - data: [ - 28, 92, 13, 4, 5, 0, 8, 4, 5, 6, 14, 8, 12, 6, 9, 13, 7, 11, 7, 5, 17, 19, 10, 14, 9, 13, - 14, 12, 11, 3, 10, 7, 9, 10, 10, 10, 7, 13, 11, 10, 13, 15, 5, 13, 10, 9, 10, 18, 4, 7, 12, - 7, 10, 8, 15, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,strength,bitget,ex', - description: - "The key topics discussed in the messages from twitter regarding $GOLDIE on SOL include:\n- Speculation about launching wsol on eth\n- Comparison between holding SOL and participating in meme coin wars\n- Potential launch of SOL when BTC and ETH stop selling off\n- Analysis of SOL/USD on TradingView\n- Launch of tokenized mineral rights investment fund on Solana by Elmnts\n- Altcoins like ETH, SUI, and SOL gaining momentum following support from Bitcoin\n- Solana outperforming Cardano in key performance metrics\n- Solana meme coin manufacturing going wrong\n- Predictions about Solana winning the current cycle\n- Speculation about Solana's potential major reversal in price\n- Emerging cryptocurrencies like SOL, DOGE, and SUI set to outpace Bitcoin's recovery\n- Discussion about whether to invest in Solana or SUI token during the bull run\n- Swing trade strategy for investing in SOL and SUI tokens\n- Success of dollar-cost averaging (DCA) buying Bitcoin\n\nOverall, the discussions revolve around the performance, potential, and comparison of various cryptocurrencies, with a focus on Solana and its potential in the current market cycle.", - data: [ - 7, 9, 9, 10, 3, 1, 6, 12, 14, 6, 19, 8, 6, 10, 7, 12, 12, 9, 15, 13, 10, 2, 4, 9, 11, 10, 8, - 8, 16, 11, 9, 14, 6, 8, 10, 13, 9, 16, 10, 6, 5, 16, 9, 6, 74, 10, 5, 4, 10, 18, 5, 7, 12, - 9, 2, - ], - }, - { - label: 'ECB and Fed write anti-bitcoin papers', - topics: 'ecb,fiat,european,paper,central', - description: - 'The messages from Twitter highlight the belief that Bitcoin is a symbol of freedom and a way to escape the control of centralized institutions like the ECB, IMF, and World Bank. There is a strong sentiment that Bitcoin is a form of "Fuck You" money that allows individuals to have financial independence and moral courage. \n\nThere is also criticism towards the ECB for failing to understand Bitcoin\'s true nature as digital Gold and for misrepresenting its volatility and utility. The messages suggest that Bitcoin is a tool for survival in a collapsing state and a way to combat institutionalized debt slavery.\n\nOverall, the messages reflect a strong belief in Bitcoin as a revolutionary technology that challenges traditional financial systems and empowers individuals to take control of their own wealth.', - data: [ - 6, 2, 3, 15, 20, 29, 7, 4, 6, 18, 6, 10, 5, 2, 6, 23, 7, 7, 16, 12, 6, 6, 10, 7, 8, 15, 11, - 7, 7, 6, 9, 12, 12, 11, 5, 22, 31, 8, 11, 9, 4, 6, 4, 3, 5, 5, 6, 9, 8, 3, 19, 6, 8, 8, 12, - ], - }, - { - label: 'Memecoins', - topics: 'supercycle,giga,memes,memecoins,memecoin', - description: - "The current discussion on social media platforms like Twitter revolves around the hype and potential collapse of memecoins. Users are sharing their experiences with memecoins, discussing which ones to buy, and even participating in meme contests. There is also a mention of using platforms like Bullx for trading memecoins and the prediction that some memecoins could surpass Dogecoin's market cap. Additionally, there is a conversation about the evolution of memes, from animal memes to AI memes, suggesting a progression towards more complex and intelligent content. Overall, the sentiment seems to be a mix of excitement, humor, and speculation about the future of memecoins in the crypto industry.", - data: [ - 4, 2, 4, 13, 6, 0, 5, 4, 8, 6, 14, 6, 8, 2, 4, 9, 3, 8, 4, 6, 8, 5, 17, 8, 4, 10, 7, 12, 6, - 13, 9, 82, 46, 11, 8, 2, 12, 3, 7, 10, 6, 8, 9, 2, 8, 3, 9, 9, 9, 6, 8, 4, 2, 8, 2, - ], - }, - { - label: 'APE', - topics: 'apes,apechain,apecoin,ape,bored', - description: - 'The EVM team at Magic Eden is making waves in the crypto industry with the launch of ApeChain, the REAL FIRST MEME on ApeChain $FAFO. The price of APE has surged 86% in just seven days following the launch of Ape Chain Layer 3. ApeChain is setting itself apart with its unique approach to NFTs and gaming, creating a casino-like experience for users. The community is buzzing with excitement as ApeChain continues to grow and expand, with new features being added and a focus on memecoin culture. Users are actively participating in the ecosystem, staking their assets and earning passive income in $APE. The launch of ApeChain has sparked investor interest, with the price of ApeCoin increasing by over 100% in just two days. Magic Eden has become the go-to platform for trading ApeChain NFTs, with over 5 billion mints and 400k+ APE traded. The future looks bright for ApeChain and its community of dedicated apes.', - data: [ - 12, 3, 104, 7, 0, 0, 8, 12, 5, 6, 8, 5, 1, 5, 1, 2, 4, 7, 7, 8, 6, 8, 9, 8, 7, 5, 2, 3, 12, - 12, 12, 7, 8, 8, 9, 5, 8, 2, 3, 4, 4, 4, 5, 8, 2, 4, 4, 2, 11, 4, 0, 5, 6, 4, 2, - ], - }, - { - label: 'BTC', - topics: 'align,cup,fixes,hash,orange', - description: - 'The messages from Twitter show a variety of opinions and sentiments about Bitcoin. Some users express excitement and optimism about Bitcoin, referring to it as "the way" and highlighting its potential to revolutionize the financial system. Others mention specific events, such as the SEC\'s involvement with Bitcoin, and emphasize the importance of educating children about money and Bitcoin.\n\nThere are also mentions of Bitcoin being a force for positive change in the world, with references to love, light, and reorganizing society. On the other hand, there are also negative comments, such as Bitcoin making someone sad.\n\nOverall, the messages reflect a diverse range of perspectives on Bitcoin, from enthusiastic support to skepticism and criticism. The topic of Bitcoin is clearly a popular and dynamic discussion point within the crypto community on social media.', - data: [ - 6, 1, 3, 5, 34, 49, 6, 2, 6, 4, 3, 6, 4, 3, 3, 7, 4, 5, 11, 9, 11, 4, 6, 8, 2, 12, 3, 5, 9, - 5, 7, 3, 4, 8, 2, 6, 3, 1, 6, 4, 6, 8, 5, 7, 14, 8, 7, 4, 4, 7, 7, 1, 5, 9, 8, - ], - }, - { - label: 'Art', - topics: 'artists,art,artist,collectors,piece', - description: - 'The messages from Twitter discuss various aspects of art, including different genres like pop art, op art, and the new genre of $SLOP ART driven by memetics and AI. There is also mention of an AI-powered robot artist that has gained attention in the art world for producing unique original paintings. Additionally, there are personal reflections on the creative process, with one individual sharing their series titled "Surrendered to the line" and another expressing their passion for creating art every day.\n\nOverall, the Twitter messages highlight the diverse and evolving nature of art, with discussions ranging from traditional art projects to innovative AI-driven creations. The crypto community is also mentioned in the hashtags, indicating a potential intersection between art and cryptocurrency in the online discourse.', - data: [ - 7, 4, 60, 10, 1, 0, 1, 3, 5, 5, 5, 8, 6, 3, 9, 8, 2, 4, 10, 6, 3, 8, 8, 5, 4, 6, 5, 6, 6, 6, - 10, 3, 4, 4, 4, 7, 11, 4, 6, 6, 6, 5, 4, 8, 5, 3, 7, 6, 7, 4, 0, 4, 4, 3, 9, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,gamefi,grid,champions', - description: - 'The messages from Twitter suggest that there is a lot of excitement and activity surrounding gaming in the crypto industry. Specifically, there is mention of $SON gaming on #Kucoin, with a potential parabolic gaming pump loading. Additionally, there are discussions about Web3 gaming, with mentions of games like Age of Empires Mobile and Exverse. The importance of play-to-earn models in gaming is also highlighted, along with the need for AAA games to be multi-platform for developers to make a return on investment. Overall, it seems that the gaming community is buzzing with new releases, partnerships, and opportunities in the crypto space.', - data: [ - 2, 5, 3, 4, 4, 0, 3, 4, 0, 7, 3, 3, 4, 4, 4, 6, 6, 4, 4, 7, 66, 4, 15, 6, 2, 8, 2, 2, 10, 2, - 14, 5, 4, 8, 2, 3, 23, 4, 3, 6, 5, 4, 3, 7, 3, 4, 5, 4, 5, 3, 7, 1, 8, 7, 6, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,projection,overbought,cents', - description: - 'The messages from Twitter suggest that Dogecoin ($DOGE) is experiencing a surge in activity and price, with potential for further growth. There is discussion about the strength and future potential of Dogecoin as an onchain asset, as well as comparisons to other cryptocurrencies like Bellscoin. Some users are bullish on Dogecoin and believe in its potential for a parabolic surge. There is also mention of potential profit-taking opportunities and technical analysis indicating a bullish trend for Dogecoin. Additionally, there is speculation about the price of Dogecoin reaching $5 and the potential for a surge in WallitIQ ($WLTQ). Overall, the sentiment surrounding Dogecoin on Twitter appears positive and optimistic.', - data: [ - 3, 3, 0, 4, 3, 0, 4, 1, 3, 2, 0, 4, 3, 5, 66, 67, 0, 0, 4, 1, 3, 5, 5, 5, 3, 2, 6, 3, 7, 7, - 8, 4, 0, 2, 3, 5, 5, 8, 4, 4, 4, 6, 2, 4, 3, 6, 4, 3, 7, 3, 1, 2, 6, 2, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'inflow,inflows,net,etfs,flows', - description: - 'The key topics currently discussed in the crypto industry on social media include the success of Bitcoin ETFs in terms of inflows, with significant amounts of money flowing into these funds. There is also discussion about the comparison between Bitcoin ETF inflows and Gold ETF inflows, highlighting the rapid growth of Bitcoin ETFs. Additionally, there is mention of hedge funds cashing in on the Bitcoin rally and the overall momentum in the crypto market. Other topics include the total number of wallets created on BitTorrent Speed and the total number of TRON addresses. Overall, the focus seems to be on the performance and growth of Bitcoin ETFs, as well as general market trends and developments.', - data: [ - 4, 2, 3, 3, 34, 3, 6, 3, 8, 1, 2, 2, 8, 4, 0, 1, 33, 2, 6, 3, 4, 6, 5, 3, 7, 13, 2, 5, 0, 2, - 2, 3, 1, 14, 7, 0, 1, 0, 2, 3, 1, 1, 2, 1, 35, 5, 9, 1, 3, 4, 1, 4, 1, 5, 3, - ], - }, - { - label: 'GOAT', - topics: 'goat,gnon,truthterminal,mc,listings', - description: - "The key topics currently being discussed on Twitter in the crypto industry include the surge in the price of the meme token $GOAT, which has seen a 156% increase in the last two days. There is also discussion about the potential profitability of investing in $GOAT, $DOGE, $SHIB, and $SOLANA, with the possibility of turning $100,000 into $1.5 million in 60 days. Additionally, there is excitement surrounding the AI+Memecoin meta trend, with mentions of new coins like $GOATAI and discussions about the potential for massive growth in the AI sector. Elon Musk's potential involvement in buying GOAT for his balance sheet is also mentioned. Overall, there is a lot of hype and speculation surrounding AI and meme coins in the crypto space.", - data: [ - 3, 5, 2, 6, 3, 0, 2, 4, 8, 7, 6, 8, 3, 1, 1, 6, 2, 0, 3, 3, 5, 11, 7, 4, 5, 2, 1, 6, 6, 6, - 4, 4, 2, 6, 6, 3, 3, 6, 7, 6, 0, 4, 3, 7, 4, 3, 4, 12, 3, 3, 7, 2, 2, 9, 5, - ], - }, - { - label: 'AI Memecoins', - topics: 'pumpfun,memecoins,meta,animal,kols', - description: - 'The current trend in the crypto industry is the rise of AI memecoins, which are seen as speculative investments. While utility projects focus on fundamentals, AI memecoins combine both speculation and utility. However, there are concerns about the environmental impact of trading AI memecoins, as server farms consume significant resources. Despite the unknown nature of these investments, individuals are actively seeking out the best opportunities in AI memecoins. Some believe that AI memecoins are the new big thing, with $SOL leading the charge. Traders are advised to stay vigilant and not miss out on potential opportunities in this emerging market.', - data: [ - 7, 28, 3, 3, 3, 0, 3, 0, 6, 1, 3, 8, 9, 1, 3, 2, 2, 2, 1, 3, 2, 3, 5, 5, 3, 2, 4, 2, 4, 3, - 8, 10, 19, 4, 3, 2, 5, 1, 5, 3, 2, 5, 5, 5, 3, 0, 1, 4, 9, 1, 1, 3, 0, 2, 1, - ], - }, - { - label: 'DeFi', - topics: 'defi,oracle,renaissance,mainstream,tradfi', - description: - "The messages from Twitter indicate that there is a growing interest in DeFi (Decentralized Finance) within the crypto community. Users are exploring DeFi platforms such as ParaSwap and DeFiSaver to access the best prices and manage their assets across multiple protocols. Liquidity farming, also known as yield farming, is a popular concept in DeFi that allows individuals to earn rewards by providing liquidity to DeFi platforms.\n\nThere is a focus on innovation and resilience in the DeFi space, with projects like FIVA Protocol and Aptos & Ondo aiming to redefine DeFi using real-world assets. Additionally, there is discussion about the potential of AI to transform DeFi, with Allora Network's Nick Emmons exploring the intersection of AI and DeFi in an upcoming podcast episode.\n\nOverall, the messages suggest that DeFi is seen as the future of finance, offering new opportunities for users to break free from traditional financial systems and take control of their assets. The complexity of DeFi compared to the simplicity of Bitcoin is highlighted, indicating a shift towards more advanced financial tools and technologies in the crypto industry.", - data: [ - 3, 6, 4, 1, 2, 3, 0, 4, 0, 5, 5, 4, 0, 4, 9, 0, 1, 5, 9, 7, 6, 1, 6, 1, 1, 4, 5, 7, 3, 3, 2, - 1, 6, 5, 2, 6, 1, 5, 5, 5, 8, 5, 0, 2, 6, 2, 4, 3, 5, 9, 6, 2, 4, 3, 7, - ], - }, - { - label: 'TSLA', - topics: 'tsla,tesla,earnings,cars,260', - description: - "The key topics discussed in the messages from twitter regarding Tesla include:\n1. New cheaper Tesla models confirmed, with 240+ expected tomorrow.\n2. Tesla's earnings report for Q3 2024, with earnings per share and revenue figures.\n3. Tesla's stock jumping 12% during the earnings call.\n4. AST SpaceMobile securing a contract with the Space Development Agency.\n5. Tesla's Robotaxi and induction charging technology.\n6. Tesla's advancements in autonomy with the Cybercab.\n7. Electric vehicles stealing the spotlight at the Paris Motor Show.\n8. CLS stock ripping to new all-time highs on earnings.\n9. Tesla's stock jumping 15% after earnings, with some skepticism about the planned nature of the earnings.\n10. Discussion about Tesla's fast charge technology rollout and future plans for stationary storage.", - data: [ - 0, 1, 3, 2, 1, 0, 2, 1, 4, 0, 6, 3, 2, 1, 1, 9, 5, 3, 5, 4, 1, 1, 1, 2, 3, 1, 7, 1, 0, 3, 1, - 1, 4, 2, 2, 3, 2, 0, 1, 0, 4, 4, 1, 11, 5, 3, 1, 37, 2, 3, 25, 0, 0, 1, 5, - ], - }, - { - label: 'Election', - topics: 'voters,votes,elections,candidates,election', - description: - 'The key topics discussed in the messages from twitter include the upcoming election, the firing of Gary Gensler, cryptocurrency, the influence of billionaires in politics, the importance of crypto policies for voters, and the Moldovan election and referendum on EU adhesion. There is also mention of election fraud, tax policies, and the On-Chain Election hosted by Eldarune. Overall, the messages highlight the intersection of politics, cryptocurrency, and voter engagement in the current social media discussions.', - data: [ - 4, 0, 3, 3, 1, 0, 1, 1, 0, 0, 3, 3, 7, 8, 1, 2, 17, 1, 1, 3, 3, 2, 3, 2, 2, 4, 6, 0, 1, 1, - 3, 3, 0, 2, 2, 2, 2, 5, 3, 4, 5, 0, 2, 0, 1, 3, 3, 3, 0, 2, 2, 4, 21, 3, 1, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,michael,saylors,humanity,hes', - description: - "The messages from Twitter discuss various opinions about Michael Saylor in the crypto industry. Some users praise Saylor for his contributions to Bitcoin and his onboarding of institutions, while others criticize him for his views on self-custody and his support for traditional banks. There is a debate about whether Saylor's approach to Bitcoin aligns with the original anarchist principles of the cryptocurrency. Overall, the discussion highlights the polarizing effect Saylor has on the community, with some seeing him as a key player in Bitcoin's growth and others viewing him as a threat to its core values.", - data: [ - 3, 3, 2, 4, 2, 2, 2, 2, 2, 0, 4, 2, 0, 2, 2, 3, 1, 2, 3, 2, 0, 3, 2, 4, 1, 4, 2, 2, 1, 1, 4, - 0, 0, 1, 2, 2, 3, 2, 1, 1, 5, 18, 11, 1, 0, 3, 0, 3, 1, 0, 2, 1, 1, 2, 3, - ], - }, - { - label: 'MSTR', - topics: 'mstr,microstrategy,bonds,strategy,acquire', - description: - "The messages from Twitter suggest that MicroStrategy ($MSTR) is expected to make many millionaires next year, with hodlers currently benefiting from the increase in value. The company's strategy involving Bitcoin has been successful, outperforming companies in the S&P index. There is anticipation for a new all-time high for Bitcoin, with potential for significant growth in both $MSTR and the S&P 500. Despite some skepticism, MicroStrategy's Bitcoin scheme is seen as driving scarcity for BTC. The company's shares have surged significantly since 2020, and there is optimism for further growth in market cap. Discussions also touch on the potential for $MSTR to reach $1000/share and $1T in market cap over time. Overall, there is a positive outlook on the future of MicroStrategy and its relationship with Bitcoin.", - data: [ - 2, 0, 1, 2, 2, 0, 3, 2, 0, 0, 2, 3, 1, 4, 0, 0, 1, 2, 2, 2, 1, 5, 3, 3, 4, 5, 0, 1, 3, 2, 2, - 1, 14, 8, 0, 3, 1, 4, 1, 3, 4, 0, 5, 4, 3, 2, 2, 1, 1, 1, 1, 0, 2, 1, 1, - ], - }, - { - label: 'Elon Musk', - topics: 'musk,speech,elon,censorship,electric', - description: - "The key topics discussed in the messages from Twitter include Elon Musk's latest remarks on XRP, his America PAC under fire for a $1 million giveaway, freedom of speech, fighting communism, Elon Musk's views on abortion and the national debt, and his thoughts on ridiculous regulations. The messages also touch on political opinions, loyalty to Elon Musk, and potential security concerns for Elon Musk. Overall, the messages reflect a mix of political, social, and economic discussions within the crypto industry and beyond.", - data: [ - 4, 3, 2, 5, 2, 0, 1, 0, 2, 0, 0, 2, 2, 1, 4, 1, 0, 2, 2, 5, 1, 2, 4, 0, 1, 4, 1, 3, 10, 1, - 1, 3, 1, 5, 1, 1, 4, 5, 3, 4, 4, 3, 0, 2, 2, 3, 3, 2, 1, 2, 1, 0, 2, 1, 2, - ], - }, - { - label: 'CPI', - topics: 'inflation,caused,bond,rates,cuts', - description: - "Inflation and hyperinflation are hot topics in the crypto community, with discussions about the impact on purchasing power and the potential for government intervention. The recent example of Zimbabwe's hyperinflation serves as a cautionary tale, with their currency losing significant value. The Federal Reserve's policies are also under scrutiny, with claims that they have devalued the U.S. Dollar over the past century. Overall, there is concern about the potential for high inflation rates and the negative effects it could have on economies and individuals.", - data: [ - 1, 0, 1, 3, 0, 0, 0, 0, 0, 5, 1, 3, 2, 2, 3, 2, 0, 3, 1, 4, 0, 5, 3, 5, 1, 15, 3, 1, 2, 1, - 2, 0, 4, 2, 2, 1, 1, 4, 2, 2, 4, 6, 1, 2, 3, 2, 1, 2, 3, 1, 1, 1, 0, 1, 3, - ], - }, - { - label: 'SCR', - topics: 'scroll,airdrop,rollup,layer2,800', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the listing of Scroll ($SCR) on various platforms such as Binance, Bybit, OKX, KuCoin, Bitget, MEXC, Gate, and others. Scroll is a native zkEVM Layer 2 for Ethereum, utilizing zero-knowledge proofs for security. There are also discussions about the Scroll governance token launch falling short of expectations due to token allocation issues. Additionally, there is excitement about the upcoming listing of Scroll on the Tapbit exchange and the collaboration with Bitget for listing on their platform. Users can participate in the Scroll TGE campaign and win rewards by completing quests on the Galxe page. Overall, the community is actively engaged in discussions about Scroll and its developments.', - data: [ - 2, 6, 1, 0, 1, 0, 3, 0, 0, 1, 3, 0, 1, 3, 4, 3, 2, 4, 1, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 3, 0, - 1, 0, 0, 4, 2, 1, 0, 1, 5, 2, 0, 31, 1, 5, 1, 1, 0, 0, 3, 0, 0, 1, 1, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-43.json b/priv/repo/major_topics_seed/data-43.json deleted file mode 100644 index 159926d3ca..0000000000 --- a/priv/repo/major_topics_seed/data-43.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["24.10.24","25.10.24","25.10.24","25.10.24","25.10.24","25.10.24","25.10.24","25.10.24","26.10.24","26.10.24","26.10.24","26.10.24","26.10.24","26.10.24","26.10.24","26.10.24","27.10.24","27.10.24","27.10.24","27.10.24","27.10.24","27.10.24","27.10.24","27.10.24","28.10.24","28.10.24","28.10.24","28.10.24","28.10.24","28.10.24","28.10.24","28.10.24","29.10.24","29.10.24","29.10.24","29.10.24","29.10.24","29.10.24","29.10.24","29.10.24","30.10.24","30.10.24","30.10.24","30.10.24","30.10.24","30.10.24","30.10.24","30.10.24","31.10.24","31.10.24","31.10.24","31.10.24","31.10.24","31.10.24","31.10.24"],"datasets":[{"label":"BTC","topics":"bitcoin,dont,money,fiat,people","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin (BTC) price movements and analysis\n- The importance of having a long-term investment strategy\n- The potential for Bitcoin to reach six-digit values\n- The impact of Federal Reserve policies on housing affordability for Bitcoin holders\n- The value of NFTs as brands, access, and art\n- The risks of short-term investing in meme coins\n- The need for a clear ecosystem in the crypto industry\n- The significance of making good decisions now for future financial security\n- The potential consequences of unethical behavior in the crypto community, such as blacklisting by centralized exchanges\n- The importance of staying informed and having a strong network in the crypto industry.","data":[34,15,24,28,104,120,20,30,30,31,32,36,27,24,21,36,26,22,32,53,30,34,36,28,18,27,34,30,36,38,46,26,17,45,20,33,57,28,30,41,33,45,36,33,25,41,39,43,39,24,56,20,39,36,36]},{"label":"AI","topics":"ai,agents,agent,goat,meta","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- AI agents with crypto wallets posting paid bounties\n- Meta working on a search engine driven by artificial intelligence\n- Comparison of EIGEN (an Ethereum VC Layer2 coin) and GOAT (a meme coin) price action\n- NVIDIA overtaking Apple to become the world's most valuable company\n- The need to pivot from relying on Google for sales\n- The potential for Zoom to create an \"AI Notetaker\" participant type\n- The debate over dependency and self-sufficiency highlighted by a meme\n- The use of AI agents to monitor and generate content\n- Speculation on the future of AI in the crypto industry\n- Launch of new AI tools for crypto market analysis and investment decisions\n\nOverall, the messages reflect a mix of discussions on technology, market trends, and investment opportunities in the crypto industry, with a focus on the role of artificial intelligence.","data":[63,168,25,16,4,0,22,16,19,22,20,37,31,23,22,12,15,18,24,17,31,34,21,18,16,33,44,19,29,25,24,22,32,15,20,23,29,24,18,25,29,21,26,22,16,23,27,15,17,25,25,13,17,25,14]},{"label":"ETF Flows","topics":"etfs,etf,blackrock,inflows,spot","description":"The key topic discussed in the Twitter messages is the significant inflows of money into Bitcoin ETFs, particularly by BlackRock. There are mentions of record-breaking inflows of hundreds of millions of dollars within short periods of time, as well as BlackRock's spot Bitcoin ETF reaching milestones such as $30 billion in assets. The messages also touch on the implications of these inflows for the cryptocurrency market and highlight the growing interest in Bitcoin and Ethereum ETFs. Additionally, there is speculation about the involvement of major financial institutions like BlackRock in the cryptocurrency space.","data":[12,7,4,6,48,13,43,12,33,2,5,4,5,12,7,7,61,10,4,19,1,7,11,3,9,19,25,2,14,4,2,4,2,16,9,3,2,6,5,5,19,2,14,5,57,2,4,0,3,16,3,6,7,19,18]},{"label":"SOL","topics":"sol,solana,solanas,eth,ethereum","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Solana ($SOL) experiencing a dip in price and potential for a breakout bullish momentum.\n2. Comparison between Ethereum and Solana, with Solana leading in daily net inflows.\n3. Solana recording over 3x Ethereum DEX volume with 14 million transactions in the past 24 hours.\n4. Debate on Solana's centralization and upcoming upgrades like Firedancer.\n5. Cardano's Midgard Layer 2 outpacing Solana and Ethereum.\n6. Ethereum accounting for the biggest portion of transaction fees paid across main blockchains.\n7. Launch of FDUSD on Solana promising faster and cheaper transactions.\n8. Bybit's new Spot listing for $bbSOL with a TVL surpassing $85 million.\n9. Wanchain USDT XFlows now live on Solana for native-to-native USDT transactions.\n10. Collaboration between Solana and Injective ecosystems for a QUNT/SOL pool.\n\nThese topics reflect the ongoing discussions and developments within the crypto community regarding Solana, Ethereum, Cardano, and other blockchain projects.","data":[5,10,2,11,1,0,7,10,14,12,12,6,8,9,9,6,19,16,9,15,6,7,7,4,11,6,9,2,8,8,11,7,9,5,3,18,7,6,17,6,10,11,12,11,68,13,15,10,7,11,4,12,6,8,7]},{"label":"Halloween","topics":"halloween,treat,happy,enter,win","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Halloween celebrations, NFTs, Bitcoin price reviews, Syscoin's security and scalability features, Nakamoto Games expanding in Africa, NAKA-WALLET launch, NAKAVEMBER promotions, $NAKA asset promotions, Yellow Collective Halloween art packs, and various cryptocurrency assets like $PORK, $PNDC, and $wPOND. There is also a mention of a Halloween short film debut and a spooky pack by the @basedandyellow collective. Overall, the discussions revolve around crypto gaming, NFTs, asset promotions, and Halloween-themed events in the crypto industry.","data":[5,4,9,6,4,4,4,1,6,16,18,10,3,14,2,4,4,4,9,9,6,8,5,100,11,5,5,14,5,2,3,7,8,3,6,13,8,4,5,23,1,4,11,9,37,4,9,2,16,37,5,1,6,4,9]},{"label":"MSTR","topics":"mstr,microstrategy,saylor,42,billion","description":"Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n\n1. MicroStrategy's announcement of a $42 billion plan to purchase more Bitcoin.\n2. Michael Saylor's involvement in the Bitcoin market and his investment strategy.\n3. The growing divide in the crypto community regarding Bitcoin custody.\n4. The surge in MicroStrategy's leveraged ETF amid the Bitcoin surge.\n5. Concerns about MicroStrategy trading at a premium to its Bitcoin holdings.\n6. Speculation about the potential impact of Trump's administration making Bitcoin tax-free.\n7. Blackrock's involvement in the Bitcoin ETF market.\n8. The debate over whether Bitcoin is a long-term investment or just a store of value.\n9. The mechanics of leveraged products related to MicroStrategy.\n\nOverall, the discussions on Twitter indicate a mix of excitement, speculation, and analysis surrounding MicroStrategy's Bitcoin purchases, key players in the industry, and the future of Bitcoin as an asset.","data":[4,13,2,3,6,4,15,6,7,4,4,9,6,4,0,5,10,4,4,4,7,7,4,1,17,7,14,7,11,6,4,9,79,19,9,8,13,7,5,9,8,7,25,9,5,11,9,5,2,3,14,1,8,3,11]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"Based on the messages from Twitter, it seems that meme coins are a hot topic of discussion in the crypto industry. Some key points to note are:\n\n1. There is excitement around the launch of new meme coins, such as the first verified Minecraft-launched memecoin under 10m and the first anime memecoin $MIKO.\n2. There is anticipation for the release of a16z report on memecoin trends.\n3. @SuilamaToken is mentioned as a memecoin to watch out for, as they are rolling out meme content.\n4. The meme market is described as exhibiting early characteristics, with new projects emerging and flipping established ones.\n5. The meme coin ecosystem has surpassed a $12 billion market cap, fueled by platforms like https://t.co/NnZ1sWLBRW and https://t.co/FDmouaF0MK.\n6. There is a discussion about the meme supercycle being a rebellion against regulatory abuse, macro politics, and other factors.\n7. People are asked to choose one memecoin to hold for the rest of the bull run, with options like $DOGE, $WIF, $PEPE, #SPX6900, and $SCF.\n8. Drakula is mentioned as a memecoin that could be popular in 2025, with features like being on the App Store and allowing deposits with Apple Pay.\n9. There is a list of top memecoins to buy and hold, including $DOGE, $SHIB, $TURBO, $PEPE, and others.\n\nOverall, meme coins are a trending topic in the crypto community, with new projects emerging and gaining popularity rapidly. Investors and enthusiasts are closely following developments in this space.","data":[4,5,1,2,0,1,3,2,16,4,8,4,5,1,10,6,5,7,12,1,1,7,7,3,12,10,5,9,11,11,14,54,52,13,7,10,9,4,4,4,6,9,9,8,6,8,9,10,10,10,10,6,5,11,4]},{"label":"ETH","topics":"ethereum,eth,dead,ethereums,price","description":"The key topics currently discussed on Twitter regarding Ethereum include:\n- Ethereum surpassing $2,700 and sentiment towards Ethereum being at all-time lows\n- Ethereum dropping out of the top 5 in fees\n- Speculation about Ethereum approaching resistance and potentially reaching $3,000 next\n- Signs indicating Ethereum price gearing up for a rebound towards $6,000\n- Analyst suggesting a potential rally to $6,000 for Ethereum\n- Ethereum trailing behind Bitcoin by miles in terms of netflow USD between ETFs\n- Concerns about Ethereum's growth lagging behind Bitcoin due to the rapid growth of Layer 2 solutions\n- Expectations of a significant rally from $2,750 to $3,200 for Ethereum\n- Speculation about Ethernity's current target and potential over 2,600% run in prices\n- Speculation about the future market cap and performance of Ethereum compared to Bitcoin, with some predicting a decline in market share for Ethereum by 2025.","data":[3,5,5,12,1,0,7,7,7,3,7,5,5,6,2,6,63,81,10,5,11,7,7,8,8,3,2,5,6,8,10,5,3,4,5,4,6,4,10,4,5,6,10,3,7,6,6,7,12,5,2,5,4,7,9]},{"label":"GameFi","topics":"game,gaming,games,play,web3","description":"Based on the messages from twitter, key topics currently discussed in the crypto industry include:\n1. Web3 gaming and the concept of fair play and identity as the ultimate cheat code.\n2. The upcoming launch of a new season for Polygon's favorite crypto game.\n3. The involvement of multiple AAA games and game studios in building on Elysium.\n4. Metaverse initiatives and their popularity in 2025.\n5. The expansion of game access with Aethir Cloud integration by Parallel.\n6. The creation of a TV series based on a Web3 game by the director of Independence Day.\n7. The launch of \"MLS Quest\" by Major League Soccer in collaboration with Sweet on the SuiNetwork, offering NFTs highlighting important moments from MLS games.\n8. The historical launch of earning opportunities for a GameFi project on YouTube, setting a new standard for Web3 gaming.","data":[7,8,9,6,0,0,3,3,8,11,6,5,7,6,6,4,4,12,6,6,38,8,9,3,5,6,4,8,4,3,14,5,11,5,5,11,30,11,6,13,4,5,5,2,8,8,9,10,9,5,5,2,6,13,7]},{"label":"DOGE","topics":"doge,dogecoin,altseason,pumping,pump","description":"The key topics currently discussed in the crypto community on Twitter include:\n- Dogecoin hitting $1 and the anticipation surrounding it\n- Doge Day event on November 2 in Japan\n- Dogecoin facing selling pressure at a key resistance level\n- Speculation on Dogecoin's price movement on November 5, 2024\n- Bullish retest leading to a 33% increase in Dogecoin price\n- Speculation on Bitcoin breaking new all-time high\n- Analyst predicting a 5,220% price surge for Dogecoin\n- Technical analysis of Dogecoin's price movement and potential rally to $0.16\n- Discussion on a memecoin called $OMNOM and its correlation with Dogecoin's price movement\n- Short-term target for $OMNOM and upcoming Doge Day event on November 2.","data":[7,3,3,5,1,0,2,1,5,3,2,3,2,6,85,89,1,4,1,6,5,6,4,8,14,5,4,6,11,10,3,7,3,3,3,3,3,7,12,6,3,4,5,6,2,3,5,3,5,2,2,4,3,2,3]},{"label":"Art","topics":"art,artist,digital,piece,love","description":"The key topics discussed in the messages from twitter are:\n1. Art blocks projects and the creativity in the art community\n2. Pricing art in USD or ETH and the debate among artists and collectors\n3. The impact of art on individuals, with a focus on atheist beliefs\n4. ApeChain and the excitement around the first artists mint\n5. Blind mints and the anticipation of art drops featuring multiple artists\n6. The influence of Kandinsky's art on personal perspective and creativity\n7. 'Forever is Now' art exhibition in Egypt with a unique backdrop of the Giza pyramids\n8. Sotheby's Digital Art Day Auction featuring visionary digital art and A.I. creations\n9. Fluid paintings and creative work in progress in the studio\n\nOverall, the messages reflect a vibrant and diverse art community discussing various aspects of art, creativity, and the impact of art on individuals.","data":[7,8,68,7,4,0,1,1,5,4,8,7,12,7,13,7,3,6,8,11,5,4,6,4,3,9,8,5,10,5,16,4,3,8,6,8,9,7,8,4,4,5,4,5,5,4,9,5,5,4,6,4,5,3,8]},{"label":"Tether","topics":"tether,fud,investigation,wsj,ceo","description":"The key topics currently being discussed on Twitter regarding the crypto industry include legal action against Tether, the impact on the digital-asset industry, concerns about Tether's holdings and potential sanctions from the US Treasury, skepticism about Tether's lack of audits, and allegations of money laundering and sanctions evasion. There is also discussion about the potential effects on the market, with some seeing Tether FUD as a bottom signal and others questioning the future of Tether. Overall, there is a mix of uncertainty, skepticism, and speculation surrounding Tether and its role in the crypto market.","data":[4,2,22,5,0,0,8,8,1,4,5,4,6,5,7,2,0,4,10,2,6,4,12,3,5,3,6,6,8,7,6,5,1,5,2,5,7,2,6,7,11,2,6,4,1,3,6,86,3,1,7,8,5,2,4]},{"label":"BTC Price","topics":"70000,70k,72000,100k,bitcoin","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin reaching new all-time highs, with prices touching $70,000, $71,000, $72,000, and even potentially $80,000 soon\n- Speculation about Bitcoin breaking $100,000 in the near future\n- Market momentum and bullish trends, with growing interest from institutional and retail investors\n- Support levels around $67,700-$68,000 being crucial for Bitcoin's price movement\n- The significance of the Greed Index and Dominance indicators in predicting bullish trends\n- Overall positive sentiment and optimism towards Bitcoin's price movement\n\nOverall, the sentiment in the crypto community on social media appears to be optimistic and bullish, with expectations of further price increases and potential new all-time highs for Bitcoin.","data":[5,2,5,4,36,45,26,12,3,3,6,6,0,2,3,5,4,2,7,3,3,11,1,2,21,3,2,2,2,3,11,5,1,6,3,3,2,4,9,7,3,5,5,5,5,3,10,1,2,10,0,5,4,2,5]},{"label":"APE","topics":"apechain,ape,apecoin,mint,collection","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the launch of the first music NFT on ApeChain with ETH, the excitement around minting NFTs on ApeCoin, the anticipation for ApeChain to move all interactions from L1, the potential for a redemption arc for $APE on ApeChain, the vibrant community and unique opportunities on ApeChain, the fun and excitement of collecting NFTs on ApeChain, upcoming projects and protocols leveraging APE, and the positive reception of @8sianMagazine featuring familiar brands and apes. Overall, the sentiment seems to be very positive and enthusiastic about the developments and opportunities within the ApeChain ecosystem.","data":[5,0,39,6,1,0,2,8,10,7,10,5,8,9,7,4,0,5,10,9,8,8,4,5,6,1,2,2,4,12,4,1,7,9,9,2,6,2,6,6,3,6,4,1,3,6,4,6,5,5,2,6,3,3,2]},{"label":"CPI","topics":"inflation,fed,rate,impact,rates","description":"Based on the messages from twitter, the key topics currently being discussed in the crypto industry include:\n1. Impact of FX moves on Japan economy\n2. UMich sentiment expectations dipping in October\n3. Separating money from state to escape inflation\n4. US job openings and labor turnover in September 2024\n5. Understanding bond yields in relation to growth and inflation expectations\n6. Raising minimum wage to combat inflation\n7. UK facing insolvency and financial repression scenario\n8. More money in the system leading to inflation\n9. Smaller investors souring on Wall Street's presence in US housing markets\n10. UK government budget announcement regarding student loans as assets\n11. U.S. 10-year Treasury yields surging alongside Donald Trump's rising election odds\n12. UK gilt yields soaring after budget announcement\n13. Views on inflation and the role of the Federal Reserve\n\nThese topics reflect a mix of economic indicators, government policies, market reactions, and individual perspectives on inflation and monetary policies.","data":[3,0,5,2,1,0,11,2,0,1,0,11,4,1,2,8,5,4,5,2,7,0,6,2,5,28,1,7,0,1,3,38,1,3,3,0,3,3,5,7,4,2,5,2,1,1,4,2,2,1,4,4,0,5,16]},{"label":"Celebrating the 16th anniversary of the Bitcoin whitepaper","topics":"whitepaper,satoshi,16,paper,happy","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Celebrating the 16th anniversary of the Bitcoin whitepaper, with users expressing gratitude to Satoshi Nakamoto for creating Bitcoin.\n2. Reflecting on the impact of the Bitcoin whitepaper on the world's monetary revolution and the empowerment it brings to builders and dreamers.\n3. Sharing personal stories and tributes to Satoshi Nakamoto on Bitcoin Whitepaper Day.\n4. Promoting discounts and promotions related to Bitcoin Whitepaper Day.\n5. Highlighting the widespread availability and scholarly recognition of the Bitcoin whitepaper.\n6. Drawing parallels between Bitcoin Whitepaper Day and other significant historical events, such as the American Revolution.\n7. Connecting Bitcoin Whitepaper Day with other cultural celebrations, such as Day of the Dead.\n8. Encouraging the adoption of Bitcoin-related products and services, such as @fold_app.\n9. Sharing personal reflections on the impact of Bitcoin and the potential for positive change in the world.\n10. Engaging in lighthearted celebrations, such as International Panda Day, and offering giveaways to followers.","data":[2,5,0,2,3,13,7,0,0,16,0,0,2,16,0,1,0,5,1,1,1,0,0,60,2,0,2,1,3,1,1,0,1,1,1,1,1,2,6,2,4,1,2,0,1,1,0,2,9,3,3,0,1,3,35]},{"label":"BTC All-time high","topics":"ath,away,aths,new,incoming","description":"The key topic currently being discussed on social media within the crypto industry is the approaching all-time high (ATH) for Bitcoin. Many users are noting that both Bitcoin and Ethereum are approximately $2000 away from their ATHs, with speculation that a Bitcoin ATH may be imminent. Traders are discussing the potential for a breakout and the implications for long positions that were previously stopped out or liquidated. There is excitement and anticipation surrounding the possibility of reaching a new ATH for Bitcoin, with some users predicting significant price movements in the near future. Overall, the sentiment is bullish and optimistic regarding the potential for a Bitcoin ATH.","data":[1,3,20,4,17,25,9,8,2,0,6,2,3,0,2,2,0,1,3,4,3,5,1,2,6,3,2,2,2,4,1,5,1,9,8,3,2,2,3,5,2,1,2,4,1,1,2,4,5,2,1,1,4,2,0]},{"label":"BTC Mining","topics":"mining,miners,miner,block,blocks","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin hashpower reaching record highs and its potential for global impact\n- Bitcoin mining bans potentially increasing carbon emissions\n- Revenue projections for the Bitcoin mining hardware industry\n- Bitcoin blockchain enabling self-sovereign transactions without intermediaries\n- Bitcoin mining difficulty hitting an all-time high and its effects on miners and the market\n- Updates on DeFiChain's hardfork and enhancements to the protocol\n- The value of Bitcoin hashpower as a commodity that can transform the economy\n\nOverall, the discussions on Twitter highlight the growing importance and impact of Bitcoin mining and hashpower in the crypto industry.","data":[3,2,5,0,5,21,10,1,1,2,7,4,0,2,5,0,3,3,1,0,2,0,4,2,2,3,4,2,0,1,1,3,17,4,9,4,0,2,2,1,3,8,2,2,8,7,2,0,3,8,1,0,1,5,0]},{"label":"US election","topics":"election,presidential,elections,days,setup","description":"The key topics currently being discussed on Twitter regarding the crypto industry and the upcoming US elections include:\n- Volatility in the market around the US elections, with expectations of Bitcoin ($BTC) preparing to rise after the elections.\n- Pre-election market movements and the importance of post-election regulatory environment for Ethereum and altcoins.\n- Concerns about election day liquidity and potential impact on the retail sector.\n- Speculation on how the 2024 US Presidential Election could affect the price of Bitcoin.\n- Advice on setting stop losses and take profits to protect trades during the volatile market.\n- Discussion on how prediction markets and crypto are influencing political events like elections.\n- The importance of voting in the upcoming presidential election and the potential impact of money in politics.\n- Elon Musk's involvement in the election and a tragic case involving an AI chatbot.\n- The innovation and risks associated with prediction markets and crypto influencing major events like elections.","data":[3,0,1,0,3,4,2,5,1,0,1,1,4,11,2,1,21,1,2,5,1,1,1,4,3,1,1,2,4,4,1,4,1,1,3,2,2,12,2,0,3,0,1,1,3,3,4,5,5,1,0,3,2,7,4]},{"label":"Devcon","topics":"excited,bangkok,announce,forward,speaking","description":"The key topics discussed in the messages from twitter are:\n1. Devcon in Bangkok\n2. Binance Blockchain Week in Dubai\n3. Decentraland Music Festival\n4. ETH DevCon Bangkok week\n5. CaptureApp_xyz solution for content trust and authenticity\n6. Collaboration with imgn_ai in building on the Base Ecosystem\n7. Building on Base live event on DeHub\n8. SolKit domain name appraisal tool\n9. Speaking at ordevents in Miami\n10. NFT Paris event with speaker announcement\n\nThese topics indicate a strong focus on blockchain technology, cryptocurrency, and related events within the crypto industry.","data":[3,0,1,2,0,0,1,0,0,0,5,0,0,2,0,3,0,43,2,2,0,1,2,7,4,3,2,6,1,1,15,0,2,1,1,7,3,2,4,0,0,0,1,0,10,0,3,2,4,2,0,0,9,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-43.ts b/priv/repo/major_topics_seed/data-43.ts deleted file mode 100644 index 96d33c75df..0000000000 --- a/priv/repo/major_topics_seed/data-43.ts +++ /dev/null @@ -1,265 +0,0 @@ -export const NARRATIVES = { - labels: [ - '24.10.24', - '25.10.24', - '25.10.24', - '25.10.24', - '25.10.24', - '25.10.24', - '25.10.24', - '25.10.24', - '26.10.24', - '26.10.24', - '26.10.24', - '26.10.24', - '26.10.24', - '26.10.24', - '26.10.24', - '26.10.24', - '27.10.24', - '27.10.24', - '27.10.24', - '27.10.24', - '27.10.24', - '27.10.24', - '27.10.24', - '27.10.24', - '28.10.24', - '28.10.24', - '28.10.24', - '28.10.24', - '28.10.24', - '28.10.24', - '28.10.24', - '28.10.24', - '29.10.24', - '29.10.24', - '29.10.24', - '29.10.24', - '29.10.24', - '29.10.24', - '29.10.24', - '29.10.24', - '30.10.24', - '30.10.24', - '30.10.24', - '30.10.24', - '30.10.24', - '30.10.24', - '30.10.24', - '30.10.24', - '31.10.24', - '31.10.24', - '31.10.24', - '31.10.24', - '31.10.24', - '31.10.24', - '31.10.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,dont,money,fiat,people', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin (BTC) price movements and analysis\n- The importance of having a long-term investment strategy\n- The potential for Bitcoin to reach six-digit values\n- The impact of Federal Reserve policies on housing affordability for Bitcoin holders\n- The value of NFTs as brands, access, and art\n- The risks of short-term investing in meme coins\n- The need for a clear ecosystem in the crypto industry\n- The significance of making good decisions now for future financial security\n- The potential consequences of unethical behavior in the crypto community, such as blacklisting by centralized exchanges\n- The importance of staying informed and having a strong network in the crypto industry.', - data: [ - 34, 15, 24, 28, 104, 120, 20, 30, 30, 31, 32, 36, 27, 24, 21, 36, 26, 22, 32, 53, 30, 34, - 36, 28, 18, 27, 34, 30, 36, 38, 46, 26, 17, 45, 20, 33, 57, 28, 30, 41, 33, 45, 36, 33, 25, - 41, 39, 43, 39, 24, 56, 20, 39, 36, 36, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,goat,meta', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- AI agents with crypto wallets posting paid bounties\n- Meta working on a search engine driven by artificial intelligence\n- Comparison of EIGEN (an Ethereum VC Layer2 coin) and GOAT (a meme coin) price action\n- NVIDIA overtaking Apple to become the world\'s most valuable company\n- The need to pivot from relying on Google for sales\n- The potential for Zoom to create an "AI Notetaker" participant type\n- The debate over dependency and self-sufficiency highlighted by a meme\n- The use of AI agents to monitor and generate content\n- Speculation on the future of AI in the crypto industry\n- Launch of new AI tools for crypto market analysis and investment decisions\n\nOverall, the messages reflect a mix of discussions on technology, market trends, and investment opportunities in the crypto industry, with a focus on the role of artificial intelligence.', - data: [ - 63, 168, 25, 16, 4, 0, 22, 16, 19, 22, 20, 37, 31, 23, 22, 12, 15, 18, 24, 17, 31, 34, 21, - 18, 16, 33, 44, 19, 29, 25, 24, 22, 32, 15, 20, 23, 29, 24, 18, 25, 29, 21, 26, 22, 16, 23, - 27, 15, 17, 25, 25, 13, 17, 25, 14, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,etf,blackrock,inflows,spot', - description: - "The key topic discussed in the Twitter messages is the significant inflows of money into Bitcoin ETFs, particularly by BlackRock. There are mentions of record-breaking inflows of hundreds of millions of dollars within short periods of time, as well as BlackRock's spot Bitcoin ETF reaching milestones such as $30 billion in assets. The messages also touch on the implications of these inflows for the cryptocurrency market and highlight the growing interest in Bitcoin and Ethereum ETFs. Additionally, there is speculation about the involvement of major financial institutions like BlackRock in the cryptocurrency space.", - data: [ - 12, 7, 4, 6, 48, 13, 43, 12, 33, 2, 5, 4, 5, 12, 7, 7, 61, 10, 4, 19, 1, 7, 11, 3, 9, 19, - 25, 2, 14, 4, 2, 4, 2, 16, 9, 3, 2, 6, 5, 5, 19, 2, 14, 5, 57, 2, 4, 0, 3, 16, 3, 6, 7, 19, - 18, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,solanas,eth,ethereum', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Solana ($SOL) experiencing a dip in price and potential for a breakout bullish momentum.\n2. Comparison between Ethereum and Solana, with Solana leading in daily net inflows.\n3. Solana recording over 3x Ethereum DEX volume with 14 million transactions in the past 24 hours.\n4. Debate on Solana's centralization and upcoming upgrades like Firedancer.\n5. Cardano's Midgard Layer 2 outpacing Solana and Ethereum.\n6. Ethereum accounting for the biggest portion of transaction fees paid across main blockchains.\n7. Launch of FDUSD on Solana promising faster and cheaper transactions.\n8. Bybit's new Spot listing for $bbSOL with a TVL surpassing $85 million.\n9. Wanchain USDT XFlows now live on Solana for native-to-native USDT transactions.\n10. Collaboration between Solana and Injective ecosystems for a QUNT/SOL pool.\n\nThese topics reflect the ongoing discussions and developments within the crypto community regarding Solana, Ethereum, Cardano, and other blockchain projects.", - data: [ - 5, 10, 2, 11, 1, 0, 7, 10, 14, 12, 12, 6, 8, 9, 9, 6, 19, 16, 9, 15, 6, 7, 7, 4, 11, 6, 9, - 2, 8, 8, 11, 7, 9, 5, 3, 18, 7, 6, 17, 6, 10, 11, 12, 11, 68, 13, 15, 10, 7, 11, 4, 12, 6, - 8, 7, - ], - }, - { - label: 'Halloween', - topics: 'halloween,treat,happy,enter,win', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Halloween celebrations, NFTs, Bitcoin price reviews, Syscoin's security and scalability features, Nakamoto Games expanding in Africa, NAKA-WALLET launch, NAKAVEMBER promotions, $NAKA asset promotions, Yellow Collective Halloween art packs, and various cryptocurrency assets like $PORK, $PNDC, and $wPOND. There is also a mention of a Halloween short film debut and a spooky pack by the @basedandyellow collective. Overall, the discussions revolve around crypto gaming, NFTs, asset promotions, and Halloween-themed events in the crypto industry.", - data: [ - 5, 4, 9, 6, 4, 4, 4, 1, 6, 16, 18, 10, 3, 14, 2, 4, 4, 4, 9, 9, 6, 8, 5, 100, 11, 5, 5, 14, - 5, 2, 3, 7, 8, 3, 6, 13, 8, 4, 5, 23, 1, 4, 11, 9, 37, 4, 9, 2, 16, 37, 5, 1, 6, 4, 9, - ], - }, - { - label: 'MSTR', - topics: 'mstr,microstrategy,saylor,42,billion', - description: - "Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n\n1. MicroStrategy's announcement of a $42 billion plan to purchase more Bitcoin.\n2. Michael Saylor's involvement in the Bitcoin market and his investment strategy.\n3. The growing divide in the crypto community regarding Bitcoin custody.\n4. The surge in MicroStrategy's leveraged ETF amid the Bitcoin surge.\n5. Concerns about MicroStrategy trading at a premium to its Bitcoin holdings.\n6. Speculation about the potential impact of Trump's administration making Bitcoin tax-free.\n7. Blackrock's involvement in the Bitcoin ETF market.\n8. The debate over whether Bitcoin is a long-term investment or just a store of value.\n9. The mechanics of leveraged products related to MicroStrategy.\n\nOverall, the discussions on Twitter indicate a mix of excitement, speculation, and analysis surrounding MicroStrategy's Bitcoin purchases, key players in the industry, and the future of Bitcoin as an asset.", - data: [ - 4, 13, 2, 3, 6, 4, 15, 6, 7, 4, 4, 9, 6, 4, 0, 5, 10, 4, 4, 4, 7, 7, 4, 1, 17, 7, 14, 7, 11, - 6, 4, 9, 79, 19, 9, 8, 13, 7, 5, 9, 8, 7, 25, 9, 5, 11, 9, 5, 2, 3, 14, 1, 8, 3, 11, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - 'Based on the messages from Twitter, it seems that meme coins are a hot topic of discussion in the crypto industry. Some key points to note are:\n\n1. There is excitement around the launch of new meme coins, such as the first verified Minecraft-launched memecoin under 10m and the first anime memecoin $MIKO.\n2. There is anticipation for the release of a16z report on memecoin trends.\n3. @SuilamaToken is mentioned as a memecoin to watch out for, as they are rolling out meme content.\n4. The meme market is described as exhibiting early characteristics, with new projects emerging and flipping established ones.\n5. The meme coin ecosystem has surpassed a $12 billion market cap, fueled by platforms like https://t.co/NnZ1sWLBRW and https://t.co/FDmouaF0MK.\n6. There is a discussion about the meme supercycle being a rebellion against regulatory abuse, macro politics, and other factors.\n7. People are asked to choose one memecoin to hold for the rest of the bull run, with options like $DOGE, $WIF, $PEPE, #SPX6900, and $SCF.\n8. Drakula is mentioned as a memecoin that could be popular in 2025, with features like being on the App Store and allowing deposits with Apple Pay.\n9. There is a list of top memecoins to buy and hold, including $DOGE, $SHIB, $TURBO, $PEPE, and others.\n\nOverall, meme coins are a trending topic in the crypto community, with new projects emerging and gaining popularity rapidly. Investors and enthusiasts are closely following developments in this space.', - data: [ - 4, 5, 1, 2, 0, 1, 3, 2, 16, 4, 8, 4, 5, 1, 10, 6, 5, 7, 12, 1, 1, 7, 7, 3, 12, 10, 5, 9, 11, - 11, 14, 54, 52, 13, 7, 10, 9, 4, 4, 4, 6, 9, 9, 8, 6, 8, 9, 10, 10, 10, 10, 6, 5, 11, 4, - ], - }, - { - label: 'ETH', - topics: 'ethereum,eth,dead,ethereums,price', - description: - "The key topics currently discussed on Twitter regarding Ethereum include:\n- Ethereum surpassing $2,700 and sentiment towards Ethereum being at all-time lows\n- Ethereum dropping out of the top 5 in fees\n- Speculation about Ethereum approaching resistance and potentially reaching $3,000 next\n- Signs indicating Ethereum price gearing up for a rebound towards $6,000\n- Analyst suggesting a potential rally to $6,000 for Ethereum\n- Ethereum trailing behind Bitcoin by miles in terms of netflow USD between ETFs\n- Concerns about Ethereum's growth lagging behind Bitcoin due to the rapid growth of Layer 2 solutions\n- Expectations of a significant rally from $2,750 to $3,200 for Ethereum\n- Speculation about Ethernity's current target and potential over 2,600% run in prices\n- Speculation about the future market cap and performance of Ethereum compared to Bitcoin, with some predicting a decline in market share for Ethereum by 2025.", - data: [ - 3, 5, 5, 12, 1, 0, 7, 7, 7, 3, 7, 5, 5, 6, 2, 6, 63, 81, 10, 5, 11, 7, 7, 8, 8, 3, 2, 5, 6, - 8, 10, 5, 3, 4, 5, 4, 6, 4, 10, 4, 5, 6, 10, 3, 7, 6, 6, 7, 12, 5, 2, 5, 4, 7, 9, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,web3', - description: - 'Based on the messages from twitter, key topics currently discussed in the crypto industry include:\n1. Web3 gaming and the concept of fair play and identity as the ultimate cheat code.\n2. The upcoming launch of a new season for Polygon\'s favorite crypto game.\n3. The involvement of multiple AAA games and game studios in building on Elysium.\n4. Metaverse initiatives and their popularity in 2025.\n5. The expansion of game access with Aethir Cloud integration by Parallel.\n6. The creation of a TV series based on a Web3 game by the director of Independence Day.\n7. The launch of "MLS Quest" by Major League Soccer in collaboration with Sweet on the SuiNetwork, offering NFTs highlighting important moments from MLS games.\n8. The historical launch of earning opportunities for a GameFi project on YouTube, setting a new standard for Web3 gaming.', - data: [ - 7, 8, 9, 6, 0, 0, 3, 3, 8, 11, 6, 5, 7, 6, 6, 4, 4, 12, 6, 6, 38, 8, 9, 3, 5, 6, 4, 8, 4, 3, - 14, 5, 11, 5, 5, 11, 30, 11, 6, 13, 4, 5, 5, 2, 8, 8, 9, 10, 9, 5, 5, 2, 6, 13, 7, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,altseason,pumping,pump', - description: - "The key topics currently discussed in the crypto community on Twitter include:\n- Dogecoin hitting $1 and the anticipation surrounding it\n- Doge Day event on November 2 in Japan\n- Dogecoin facing selling pressure at a key resistance level\n- Speculation on Dogecoin's price movement on November 5, 2024\n- Bullish retest leading to a 33% increase in Dogecoin price\n- Speculation on Bitcoin breaking new all-time high\n- Analyst predicting a 5,220% price surge for Dogecoin\n- Technical analysis of Dogecoin's price movement and potential rally to $0.16\n- Discussion on a memecoin called $OMNOM and its correlation with Dogecoin's price movement\n- Short-term target for $OMNOM and upcoming Doge Day event on November 2.", - data: [ - 7, 3, 3, 5, 1, 0, 2, 1, 5, 3, 2, 3, 2, 6, 85, 89, 1, 4, 1, 6, 5, 6, 4, 8, 14, 5, 4, 6, 11, - 10, 3, 7, 3, 3, 3, 3, 3, 7, 12, 6, 3, 4, 5, 6, 2, 3, 5, 3, 5, 2, 2, 4, 3, 2, 3, - ], - }, - { - label: 'Art', - topics: 'art,artist,digital,piece,love', - description: - "The key topics discussed in the messages from twitter are:\n1. Art blocks projects and the creativity in the art community\n2. Pricing art in USD or ETH and the debate among artists and collectors\n3. The impact of art on individuals, with a focus on atheist beliefs\n4. ApeChain and the excitement around the first artists mint\n5. Blind mints and the anticipation of art drops featuring multiple artists\n6. The influence of Kandinsky's art on personal perspective and creativity\n7. 'Forever is Now' art exhibition in Egypt with a unique backdrop of the Giza pyramids\n8. Sotheby's Digital Art Day Auction featuring visionary digital art and A.I. creations\n9. Fluid paintings and creative work in progress in the studio\n\nOverall, the messages reflect a vibrant and diverse art community discussing various aspects of art, creativity, and the impact of art on individuals.", - data: [ - 7, 8, 68, 7, 4, 0, 1, 1, 5, 4, 8, 7, 12, 7, 13, 7, 3, 6, 8, 11, 5, 4, 6, 4, 3, 9, 8, 5, 10, - 5, 16, 4, 3, 8, 6, 8, 9, 7, 8, 4, 4, 5, 4, 5, 5, 4, 9, 5, 5, 4, 6, 4, 5, 3, 8, - ], - }, - { - label: 'Tether', - topics: 'tether,fud,investigation,wsj,ceo', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry include legal action against Tether, the impact on the digital-asset industry, concerns about Tether's holdings and potential sanctions from the US Treasury, skepticism about Tether's lack of audits, and allegations of money laundering and sanctions evasion. There is also discussion about the potential effects on the market, with some seeing Tether FUD as a bottom signal and others questioning the future of Tether. Overall, there is a mix of uncertainty, skepticism, and speculation surrounding Tether and its role in the crypto market.", - data: [ - 4, 2, 22, 5, 0, 0, 8, 8, 1, 4, 5, 4, 6, 5, 7, 2, 0, 4, 10, 2, 6, 4, 12, 3, 5, 3, 6, 6, 8, 7, - 6, 5, 1, 5, 2, 5, 7, 2, 6, 7, 11, 2, 6, 4, 1, 3, 6, 86, 3, 1, 7, 8, 5, 2, 4, - ], - }, - { - label: 'BTC Price', - topics: '70000,70k,72000,100k,bitcoin', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin reaching new all-time highs, with prices touching $70,000, $71,000, $72,000, and even potentially $80,000 soon\n- Speculation about Bitcoin breaking $100,000 in the near future\n- Market momentum and bullish trends, with growing interest from institutional and retail investors\n- Support levels around $67,700-$68,000 being crucial for Bitcoin's price movement\n- The significance of the Greed Index and Dominance indicators in predicting bullish trends\n- Overall positive sentiment and optimism towards Bitcoin's price movement\n\nOverall, the sentiment in the crypto community on social media appears to be optimistic and bullish, with expectations of further price increases and potential new all-time highs for Bitcoin.", - data: [ - 5, 2, 5, 4, 36, 45, 26, 12, 3, 3, 6, 6, 0, 2, 3, 5, 4, 2, 7, 3, 3, 11, 1, 2, 21, 3, 2, 2, 2, - 3, 11, 5, 1, 6, 3, 3, 2, 4, 9, 7, 3, 5, 5, 5, 5, 3, 10, 1, 2, 10, 0, 5, 4, 2, 5, - ], - }, - { - label: 'APE', - topics: 'apechain,ape,apecoin,mint,collection', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the launch of the first music NFT on ApeChain with ETH, the excitement around minting NFTs on ApeCoin, the anticipation for ApeChain to move all interactions from L1, the potential for a redemption arc for $APE on ApeChain, the vibrant community and unique opportunities on ApeChain, the fun and excitement of collecting NFTs on ApeChain, upcoming projects and protocols leveraging APE, and the positive reception of @8sianMagazine featuring familiar brands and apes. Overall, the sentiment seems to be very positive and enthusiastic about the developments and opportunities within the ApeChain ecosystem.', - data: [ - 5, 0, 39, 6, 1, 0, 2, 8, 10, 7, 10, 5, 8, 9, 7, 4, 0, 5, 10, 9, 8, 8, 4, 5, 6, 1, 2, 2, 4, - 12, 4, 1, 7, 9, 9, 2, 6, 2, 6, 6, 3, 6, 4, 1, 3, 6, 4, 6, 5, 5, 2, 6, 3, 3, 2, - ], - }, - { - label: 'CPI', - topics: 'inflation,fed,rate,impact,rates', - description: - "Based on the messages from twitter, the key topics currently being discussed in the crypto industry include:\n1. Impact of FX moves on Japan economy\n2. UMich sentiment expectations dipping in October\n3. Separating money from state to escape inflation\n4. US job openings and labor turnover in September 2024\n5. Understanding bond yields in relation to growth and inflation expectations\n6. Raising minimum wage to combat inflation\n7. UK facing insolvency and financial repression scenario\n8. More money in the system leading to inflation\n9. Smaller investors souring on Wall Street's presence in US housing markets\n10. UK government budget announcement regarding student loans as assets\n11. U.S. 10-year Treasury yields surging alongside Donald Trump's rising election odds\n12. UK gilt yields soaring after budget announcement\n13. Views on inflation and the role of the Federal Reserve\n\nThese topics reflect a mix of economic indicators, government policies, market reactions, and individual perspectives on inflation and monetary policies.", - data: [ - 3, 0, 5, 2, 1, 0, 11, 2, 0, 1, 0, 11, 4, 1, 2, 8, 5, 4, 5, 2, 7, 0, 6, 2, 5, 28, 1, 7, 0, 1, - 3, 38, 1, 3, 3, 0, 3, 3, 5, 7, 4, 2, 5, 2, 1, 1, 4, 2, 2, 1, 4, 4, 0, 5, 16, - ], - }, - { - label: 'Celebrating the 16th anniversary of the Bitcoin whitepaper', - topics: 'whitepaper,satoshi,16,paper,happy', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Celebrating the 16th anniversary of the Bitcoin whitepaper, with users expressing gratitude to Satoshi Nakamoto for creating Bitcoin.\n2. Reflecting on the impact of the Bitcoin whitepaper on the world's monetary revolution and the empowerment it brings to builders and dreamers.\n3. Sharing personal stories and tributes to Satoshi Nakamoto on Bitcoin Whitepaper Day.\n4. Promoting discounts and promotions related to Bitcoin Whitepaper Day.\n5. Highlighting the widespread availability and scholarly recognition of the Bitcoin whitepaper.\n6. Drawing parallels between Bitcoin Whitepaper Day and other significant historical events, such as the American Revolution.\n7. Connecting Bitcoin Whitepaper Day with other cultural celebrations, such as Day of the Dead.\n8. Encouraging the adoption of Bitcoin-related products and services, such as @fold_app.\n9. Sharing personal reflections on the impact of Bitcoin and the potential for positive change in the world.\n10. Engaging in lighthearted celebrations, such as International Panda Day, and offering giveaways to followers.", - data: [ - 2, 5, 0, 2, 3, 13, 7, 0, 0, 16, 0, 0, 2, 16, 0, 1, 0, 5, 1, 1, 1, 0, 0, 60, 2, 0, 2, 1, 3, - 1, 1, 0, 1, 1, 1, 1, 1, 2, 6, 2, 4, 1, 2, 0, 1, 1, 0, 2, 9, 3, 3, 0, 1, 3, 35, - ], - }, - { - label: 'BTC All-time high', - topics: 'ath,away,aths,new,incoming', - description: - 'The key topic currently being discussed on social media within the crypto industry is the approaching all-time high (ATH) for Bitcoin. Many users are noting that both Bitcoin and Ethereum are approximately $2000 away from their ATHs, with speculation that a Bitcoin ATH may be imminent. Traders are discussing the potential for a breakout and the implications for long positions that were previously stopped out or liquidated. There is excitement and anticipation surrounding the possibility of reaching a new ATH for Bitcoin, with some users predicting significant price movements in the near future. Overall, the sentiment is bullish and optimistic regarding the potential for a Bitcoin ATH.', - data: [ - 1, 3, 20, 4, 17, 25, 9, 8, 2, 0, 6, 2, 3, 0, 2, 2, 0, 1, 3, 4, 3, 5, 1, 2, 6, 3, 2, 2, 2, 4, - 1, 5, 1, 9, 8, 3, 2, 2, 3, 5, 2, 1, 2, 4, 1, 1, 2, 4, 5, 2, 1, 1, 4, 2, 0, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,block,blocks', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin hashpower reaching record highs and its potential for global impact\n- Bitcoin mining bans potentially increasing carbon emissions\n- Revenue projections for the Bitcoin mining hardware industry\n- Bitcoin blockchain enabling self-sovereign transactions without intermediaries\n- Bitcoin mining difficulty hitting an all-time high and its effects on miners and the market\n- Updates on DeFiChain's hardfork and enhancements to the protocol\n- The value of Bitcoin hashpower as a commodity that can transform the economy\n\nOverall, the discussions on Twitter highlight the growing importance and impact of Bitcoin mining and hashpower in the crypto industry.", - data: [ - 3, 2, 5, 0, 5, 21, 10, 1, 1, 2, 7, 4, 0, 2, 5, 0, 3, 3, 1, 0, 2, 0, 4, 2, 2, 3, 4, 2, 0, 1, - 1, 3, 17, 4, 9, 4, 0, 2, 2, 1, 3, 8, 2, 2, 8, 7, 2, 0, 3, 8, 1, 0, 1, 5, 0, - ], - }, - { - label: 'US election', - topics: 'election,presidential,elections,days,setup', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry and the upcoming US elections include:\n- Volatility in the market around the US elections, with expectations of Bitcoin ($BTC) preparing to rise after the elections.\n- Pre-election market movements and the importance of post-election regulatory environment for Ethereum and altcoins.\n- Concerns about election day liquidity and potential impact on the retail sector.\n- Speculation on how the 2024 US Presidential Election could affect the price of Bitcoin.\n- Advice on setting stop losses and take profits to protect trades during the volatile market.\n- Discussion on how prediction markets and crypto are influencing political events like elections.\n- The importance of voting in the upcoming presidential election and the potential impact of money in politics.\n- Elon Musk's involvement in the election and a tragic case involving an AI chatbot.\n- The innovation and risks associated with prediction markets and crypto influencing major events like elections.", - data: [ - 3, 0, 1, 0, 3, 4, 2, 5, 1, 0, 1, 1, 4, 11, 2, 1, 21, 1, 2, 5, 1, 1, 1, 4, 3, 1, 1, 2, 4, 4, - 1, 4, 1, 1, 3, 2, 2, 12, 2, 0, 3, 0, 1, 1, 3, 3, 4, 5, 5, 1, 0, 3, 2, 7, 4, - ], - }, - { - label: 'Devcon', - topics: 'excited,bangkok,announce,forward,speaking', - description: - 'The key topics discussed in the messages from twitter are:\n1. Devcon in Bangkok\n2. Binance Blockchain Week in Dubai\n3. Decentraland Music Festival\n4. ETH DevCon Bangkok week\n5. CaptureApp_xyz solution for content trust and authenticity\n6. Collaboration with imgn_ai in building on the Base Ecosystem\n7. Building on Base live event on DeHub\n8. SolKit domain name appraisal tool\n9. Speaking at ordevents in Miami\n10. NFT Paris event with speaker announcement\n\nThese topics indicate a strong focus on blockchain technology, cryptocurrency, and related events within the crypto industry.', - data: [ - 3, 0, 1, 2, 0, 0, 1, 0, 0, 0, 5, 0, 0, 2, 0, 3, 0, 43, 2, 2, 0, 1, 2, 7, 4, 3, 2, 6, 1, 1, - 15, 0, 2, 1, 1, 7, 3, 2, 4, 0, 0, 0, 1, 0, 10, 0, 3, 2, 4, 2, 0, 0, 9, 1, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-44.json b/priv/repo/major_topics_seed/data-44.json deleted file mode 100644 index 10f6996d47..0000000000 --- a/priv/repo/major_topics_seed/data-44.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["31.10.24","01.11.24","01.11.24","01.11.24","01.11.24","01.11.24","01.11.24","01.11.24","02.11.24","02.11.24","02.11.24","02.11.24","02.11.24","02.11.24","02.11.24","02.11.24","03.11.24","03.11.24","03.11.24","03.11.24","03.11.24","03.11.24","03.11.24","03.11.24","04.11.24","04.11.24","04.11.24","04.11.24","04.11.24","04.11.24","04.11.24","04.11.24","05.11.24","05.11.24","05.11.24","05.11.24","05.11.24","05.11.24","05.11.24","05.11.24","06.11.24","06.11.24","06.11.24","06.11.24","06.11.24","06.11.24","06.11.24","06.11.24","07.11.24","07.11.24","07.11.24","07.11.24","07.11.24","07.11.24","07.11.24"],"datasets":[{"label":"BTC","topics":"fiat,bitcoin,money,gradually,understand","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin being the most important issue for some individuals\n2. The impact of Europe's MiCA Rule on Bitcoin and crypto\n3. The significance of Bitcoin as the first and only public financial infrastructure\n4. On-chain Bitcoin users understanding the importance of owning their private keys\n5. The potential for Bitcoin to change the way people are paid and the power dynamics between employers and employees\n6. Speculation and conspiracy theories about the origins of Bitcoin, including theories about Elon Musk, the CIA, and even a super-genius Panda\n7. The importance of protecting the nuclear family and investing in Bitcoin as a way to secure financial stability\n\nOverall, the discussions on Twitter reflect a mix of financial, technological, and social considerations related to Bitcoin and the crypto industry.","data":[10,5,7,21,68,43,10,10,9,10,9,9,13,14,7,9,7,10,14,10,11,10,11,11,4,13,3,8,11,6,10,6,16,5,23,14,4,14,5,14,14,12,7,14,10,15,6,18,11,4,15,5,7,12,7]},{"label":"AI","topics":"ai,agents,agent,intelligence,nvidia","description":"The key topics discussed in the messages from twitter are:\n1. Artificial Intelligence (AI) in various applications such as Zoom calls, onchain AI agents, reshaping customer payment experiences, transforming shopping experiences, and educational modules.\n2. The future impact of AI on society, including the ability to select traits in children, potential immortality, and reshaping e-commerce.\n3. The intersection of AI with other key tech trends like blockchain, cryptocurrency, social networks, and games.\n4. Decentralized AI and its role in safeguarding privacy and data sovereignty.\n5. The formation of the Artificial Superintelligence Alliance on Binance, involving tokens like $FET, $AGIX, and $OCEAN.","data":[37,55,10,14,0,2,5,15,7,6,7,7,11,13,3,9,11,16,10,12,14,12,13,5,9,16,23,10,8,6,7,15,10,11,17,16,6,11,14,17,16,7,14,8,11,5,22,9,9,4,6,11,6,6,13]},{"label":"ETH","topics":"eth,ethereum,break,resistance,chart","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Ethereum (ETH) price performance and potential for growth\n- Comparison between USDC and ETH performance\n- Speculation on ETH hitting $10,000 next year\n- Discussion on ETH being undervalued and potential for a bull run\n- Mention of other altcoins like SOL and their impact on ETH\n- Reference to iGaming heavyweight potentially securing a Binance listing\n- Analysis of ETH sentiment and potential for a new all-time high\n- Comparison of ETH performance with the S&P500\n- Bearish trend at $2.5K for Ethereum despite high volatility\n\nOverall, the sentiment towards Ethereum (ETH) appears to be mixed, with some users bullish on its potential for growth while others are cautious about its current performance.","data":[13,0,7,7,1,1,9,10,12,5,9,8,10,9,3,11,127,6,15,11,18,11,14,14,18,7,8,8,9,17,11,5,15,4,4,11,7,11,9,8,10,8,12,10,9,8,13,19,8,2,4,10,10,8,5]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include memecoins, meme coin predictions, the potential for meme coins to revolutionize the digital landscape, and upcoming events like the Meme Millions Tournament Series. There is also mention of specific meme coins like Dogecoin and Shiba Inu, as well as discussions about the cultural significance and community-building potential of memecoins. Additionally, there is speculation about the future of meme coins and their role in the crypto ecosystem.","data":[7,8,5,6,1,0,3,4,4,6,5,6,1,6,8,6,7,10,7,10,9,11,5,3,10,9,9,8,5,14,6,100,6,8,5,7,9,4,5,8,8,2,12,7,9,9,8,12,6,3,7,6,6,9,2]},{"label":"GameFi","topics":"gaming,games,game,web3,players","description":"The messages from Twitter are discussing various topics related to the crypto industry and gaming. Some key words mentioned include #MetaBattler, #Metacritic, Web3 gaming, Vending Machine Project, RTX 3080, Xbox GamePass, LegendofArcadia, MrPool, digital storytelling, NFTs, Karate Combat, PlayTheBazaar, and blockchain integration. The messages also mention specific games like Stalker 2 and Chaos Legion. Overall, the discussions revolve around new game releases, investment opportunities in the gaming sector, and the intersection of gaming and cryptocurrency.","data":[6,4,14,6,0,2,9,2,7,7,4,4,2,11,7,7,6,11,5,58,6,6,14,9,2,9,10,5,5,11,9,8,8,10,6,6,33,6,5,20,6,5,7,6,7,5,6,9,9,2,10,5,5,7,6]},{"label":"SOL","topics":"solana,sol,eth,bnb,ethereum","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Comparison between Solana ($SOL) and Ethereum ($ETH) in terms of bullish sentiment and market performance.\n2. Solana's surge in value, surpassing Binance Coin ($BNB) to become the 4th largest cryptocurrency.\n3. Speculation about a pro-crypto environment under Trump's projected lead in the US election, leading to hopes for Solana-based ETFs and favorable policies.\n4. Solana's performance in the crypto market, with a 200% rally and potential to overtake Ethereum.\n5. Solana's position in the crypto rankings and market cap, strengthening its position.\n6. Milestones and developments in the Solana ecosystem, such as connecting to multiple chains and launching new products like StakeEase.\n7. Market movements and large transactions involving Solana, such as Pumpfun selling a significant amount of SOL and moving USDC to Kraken.\n8. NFTs on Solana, with Fomo Mages becoming the most expensive NFTs on the platform.\n9. Technical analysis and price predictions for Solana, including potential breakout points and price targets.\n10. On-chain analytics highlighting prominent blockchains in terms of total value locked, including Ethereum, Solana, Tron, and others.","data":[12,10,6,4,0,2,10,10,11,8,3,0,5,6,4,0,11,14,7,3,4,7,2,12,2,12,4,4,5,8,6,6,5,7,11,2,4,16,13,5,4,3,7,42,5,13,4,6,8,3,2,8,6,2,4]},{"label":"ETF Flows","topics":"etfs,etf,inflows,net,blackrock","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin ETF outflows and inflows, with Blackrock dominating the market\n- Increase in circulation of USDC in response to USDT investigation\n- Decrease in the number of addresses holding more than 1 BTC\n- Introduction of a double leveraged $MSTR ETF\n- Comparison of Bitcoin and Ethereum spot ETF inflows\n- Holdings by Bitcoin ETFs, with Blackrock leading in BTC purchased and trading volume\n- Market trends and predictions based on ETF flows and Bitcoin holdings\n- Inflows of ERC-20 stablecoins on Binance and Coinbase\n- Negative Bitcoin ETF flows and outflows from various companies\n- Impact of outflows on altcoins market cap\n- Comparison between Gold ETF and physical gold as investment options\n\nOverall, the discussions on Twitter revolve around ETF flows, market trends, company inflows and outflows, and comparisons between different investment options in the crypto industry.","data":[12,6,3,3,26,18,4,17,0,3,1,7,9,6,2,1,49,6,6,2,3,8,2,4,6,13,5,4,5,1,7,0,2,5,1,0,2,3,5,11,4,2,12,7,32,2,2,7,14,4,0,6,4,5,9]},{"label":"BTC Dominance","topics":"retest,dominance,btc,uptrend,support","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin price action and support levels: Traders are closely monitoring Bitcoin's price movements and discussing key support levels, such as $67,800 and $69,000, as well as potential breakout scenarios.\n\n2. Bitcoin dominance and altcoin season: There is talk about Bitcoin dominance reaching new highs and its impact on altcoins, with expectations of an upcoming altcoin season.\n\n3. Market sentiment and predictions: Analysts are sharing their views on Bitcoin's price trajectory, with some predicting a potential re-test at $73,700 and long-term targets ranging from $90k to $120k.\n\n4. On-chain metrics and technical analysis: Discussions include on-chain metrics resetting, technical patterns like Cup & Handle formations, and bullish indicators such as breaking downtrends and flipping resistance into support.\n\n5. Trading strategies and recommendations: Traders are sharing their trading strategies, including potential profit-taking levels and the importance of monitoring key price levels for decision-making.\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin's future price movements, with expectations of further upside potential and a positive outlook for the crypto market in the coming months.","data":[4,8,8,14,34,19,12,17,7,1,5,0,5,0,22,3,0,9,8,3,2,5,2,13,4,4,1,1,4,7,4,2,9,4,5,5,2,2,5,4,8,3,7,4,5,4,12,4,2,1,1,11,3,9,4]},{"label":"DOGE","topics":"doge,dogecoin,rally,resistance,cents","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are Dogecoin, Bitcoin, Shiba Inu, and meme coins. Dogecoin has seen a significant rally in the past few weeks, with mentions of potential price targets such as $1 and $0.25. There is also discussion about technical indicators suggesting a potential golden cross for Dogecoin. Additionally, there are mentions of Dogecoin surpassing Bitcoin in market inflows and breaking out of a 3-year channel, potentially leading to another major rally. Other topics include the reaction of Dogecoin founder to price spikes, the launch of a meme coin on the Solana blockchain, and the potential for a big move in Dogecoin with key resistance at $0.169. Overall, there is a sense of optimism and bullish sentiment surrounding Dogecoin and other cryptocurrencies in the market.","data":[3,4,2,3,0,0,4,6,5,5,5,0,3,26,118,4,0,1,6,2,7,3,5,4,1,4,3,4,7,10,1,1,2,1,3,3,1,9,3,3,2,2,6,9,7,4,4,0,2,0,1,2,2,2,2]},{"label":"Art","topics":"art,artists,artist,collection,render","description":"The key topic discussed in the messages from twitter is art. People are sharing their appreciation for various forms of art, including paintings, digital art, and ceramics. Some are discussing their own creative processes and projects, while others are excited about classic RPGs being remade in modern formats. Overall, there is a positive and enthusiastic vibe surrounding the topic of art in the crypto community on social media.","data":[5,3,49,1,0,0,3,1,2,8,4,4,5,6,5,2,0,3,5,4,5,4,6,0,2,6,6,3,4,8,5,1,2,6,2,3,3,2,3,4,5,3,10,3,5,8,2,2,11,7,4,1,3,7,12]},{"label":"APE","topics":"apechain,ape,apecoin,mint,nft","description":"The key topics currently being discussed in the crypto industry on social media accounts and communities include:\n- Ape Chain: There is a lot of excitement and discussion around Ape Chain, with users minting NFTs and supporting the builders on the platform.\n- NFTs: Users are talking about various NFT collections on Ape Chain, such as PawsClawsArcade and the official Aggregation Summit NFT.\n- Rewards and initiatives: There are discussions about initiatives like ThankApe rewarding $Ape holders for exploring and participating in ApeChain.\n- Minting and unique mechanics: Users are excited about upcoming minting opportunities on platforms like bleverxyz and Mintify, with unique mint mechanics and low mint prices.\n- Rugged incidents: There are mentions of users getting rugged on their bags, possibly due to DMCA takedowns or other issues on the platform.\n- Allow lists and upcoming collections: Users are discussing opportunities to get on allow lists for upcoming collections like tinoforbidden's \"Street Memories\" collection.\n- ApeChain Keys: BAYC, MAYC, and BAKC holders are on a whitelist for upcoming ApeChain Keys mint, generating excitement and anticipation among the community.","data":[5,28,4,1,0,1,11,4,5,7,3,4,5,0,7,1,1,5,4,6,10,5,4,3,8,4,1,5,3,8,4,14,15,6,6,7,2,1,0,5,4,2,3,1,2,3,3,6,5,3,3,1,2,3,1]},{"label":"BTC All time high","topics":"high,alltime,time,highs,new","description":"The key topic discussed in the messages from Twitter is the all-time high of Bitcoin, with mentions of the price reaching $75,000 and speculation about it potentially reaching $100k. There is excitement and anticipation surrounding Bitcoin's price surge, with references to previous highs and predictions for future growth. Additionally, there is mention of other cryptocurrencies like Ethereum and BigFoot experiencing significant price increases. Overall, the focus is on the bullish market sentiment and potential for further gains in the crypto industry.","data":[0,1,1,15,20,27,34,1,0,2,2,9,3,0,1,1,0,0,3,1,3,2,3,19,1,1,0,1,0,0,0,0,1,21,3,1,1,0,7,6,1,1,3,5,0,0,1,14,7,1,3,2,0,3,3]},{"label":"BTC Price","topics":"100k,75000,75k,bitcoin,hits","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the price of Bitcoin reaching new highs, with mentions of $69k, $71k, $73k, $74k, $75k, $76k, $77k, and even predictions of $100k and $250k. There is also discussion about whether $75,000 is expensive for Bitcoin, with some referring to it as \"FIFTY NINE LARGE ONES.\" Additionally, there are mentions of influential figures like Michael Saylor holding a significant amount of money in Bitcoin and predictions from AI tools about when Bitcoin might hit the $100,000 milestone. Overall, the sentiment seems to be bullish and optimistic about the future of Bitcoin's price.","data":[1,1,0,13,14,18,10,9,1,2,6,2,1,4,7,3,0,3,1,2,4,3,3,18,2,3,3,4,3,3,3,2,4,1,4,4,3,7,8,3,3,1,6,3,5,1,4,3,4,0,0,5,2,4,2]},{"label":"BTC All time high","topics":"ath,aths,new,reached,btc","description":"From the messages on Twitter, it is clear that the key topic being discussed is the new all-time high (ATH) for Bitcoin. The price of Bitcoin has surpassed $73,826.60 and is on its way to break even higher ATH levels. There is excitement and anticipation among the crypto community about this new milestone. Additionally, there is mention of Ethereum dropping to 7th place in 24-hour fees, indicating a shift in the market dynamics. Overall, the focus is on the bullish trend in the crypto industry, with Bitcoin leading the way towards new ATHs.","data":[3,2,12,9,16,0,19,3,5,1,6,2,2,1,0,1,1,2,3,2,3,4,2,14,2,1,1,6,1,4,4,2,3,28,3,2,1,5,14,0,0,0,0,2,2,2,5,2,4,0,1,1,2,3,3]},{"label":"Gary Gensler ","topics":"gensler,gary,sec,chair,fired","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Speculation about the potential firing of Gary Gensler as the SEC chairman\n- Predictions about the impact of a Trump victory on the crypto market\n- Anticipation of regulatory changes under a new SEC head who is pro-crypto\n- Expectations of a potential SOL ETF in the next 1-2 years\n- Discussion about the potential establishment of a US Bitcoin strategic reserve\n- Optimism about the future of crypto under new leadership\n- Speculation about the potential drop of cases by the SEC to avoid getting fired\n- Excitement about the potential bull run for Pulsechain\n\nOverall, the sentiment seems to be positive towards the potential changes in leadership and regulations in the crypto industry.","data":[2,0,5,2,1,0,6,1,4,4,2,2,7,1,2,2,2,0,10,7,25,10,6,3,1,2,5,6,4,4,0,2,6,3,5,4,3,3,6,5,11,5,2,2,1,0,0,9,2,8,2,0,2,3,2]},{"label":"US election","topics":"vote,voting,election,voted,votes","description":"The key topics discussed in the messages from twitter are:\n1. The importance of voting in the election and encouraging others to vote.\n2. Concerns about election integrity and the timing of election results.\n3. Speculation about potential election riots and security measures.\n4. Calls for unity and focusing on what really matters in the election.\n5. Discussions about the impact of voting on political decisions and policies.\n6. Clarifications about voting eligibility and the democratic process.\n7. Emphasis on the significance of every vote and the popular vote.\n8. Urging people to stay in line and make a difference through voting.","data":[2,4,6,6,1,1,3,0,3,0,3,3,3,1,1,17,2,2,3,0,2,1,1,2,3,1,2,3,5,3,2,1,3,5,7,5,7,2,2,2,2,2,3,4,2,0,1,4,5,0,0,3,51,2,6]},{"label":"Peanut the squirrel","topics":"pnut,peanut,meme,elon,viral","description":"The key topics currently being discussed on Twitter regarding the crypto industry include the tragic death of a squirrel named Peanut, which has sparked outrage and calls for justice. The owners of Peanut are accusing government officials in New York of abusing power and wasting taxpayer funds to seize and kill their pet. This incident has led to the creation of a memecoin on Solana dedicated to Peanut, with discussions about the mispricing of the coin and predictions of a correction in its market value. Additionally, there are mentions of a cup and handle formation on the PNUT coin, as well as concerns about Tesla's FSD mistaking a dog for a human passenger. Donald Trump's comments on Peanut's death and the viral nature of the squirrel's story are also being shared on social media. Overall, the sentiment is one of shock, outrage, and calls for justice for Peanut.","data":[1,7,4,0,0,3,3,1,5,1,2,4,1,3,1,4,1,0,2,2,6,2,8,3,3,4,2,1,3,5,3,10,5,7,0,8,21,2,2,2,4,5,1,2,9,4,1,4,1,4,6,3,2,0,3]},{"label":"DeFi","topics":"defi,lending,tvl,protocols,strategies","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. DeFi resurgence and innovation: Discussions about the return of DeFi 1.0, new DeFi projects, leverage suites, and the potential reshaping of the DeFi landscape.\n2. Integration of traditional finance with decentralized finance: Talks about platforms like CrossFi that combine traditional finance stability with DeFi innovation.\n3. Empowering BTC DeFi: Strategies for bringing Bitcoin into the DeFi space and the potential for significant TVL (Total Value Locked) in the near future.\n4. MEV solutions and efficiency in DeFi: Leaders like PropellerSwap leveraging Substreams to improve efficiency for major DeFi protocols.\n5. Bridging traditional finance and DeFi: Chainlink's role in bridging the gap between traditional finance and DeFi, as discussed at SmartCon 2024.\n6. Ethereum's 11-Year Anniversary and its impact on DeFi: Celebrating Ethereum's white paper launch and its significant role in driving financial and non-financial innovation in the DeFi space.","data":[5,1,1,1,0,2,1,1,5,3,2,5,2,16,1,4,2,3,2,3,2,1,4,4,1,7,7,4,2,2,4,10,2,6,2,3,4,3,4,2,6,7,3,1,2,4,2,5,4,5,2,3,4,4,0]},{"label":"DevCon Bangkok","topics":"bangkok,excited,event,summit,join","description":"The key topics discussed in the messages from twitter are related to upcoming events and conferences in the crypto industry, such as WalletCon, Bankless Summit, AltLayer Rollup Day, and the Semester 2 Hackathon Opening Ceremony. There is also a focus on specific speakers and sessions at these events, as well as opportunities for networking and learning about various aspects of decentralized finance (DeFi) and blockchain technology. Additionally, there are mentions of social events and performances in Bangkok, as well as announcements about partnerships and collaborations within the industry. Overall, the messages reflect a vibrant and active community engaged in the crypto space, with a strong emphasis on education, innovation, and networking.","data":[6,3,5,2,0,2,2,2,1,1,6,2,7,6,0,0,25,1,3,1,4,1,1,7,2,3,18,2,0,12,2,2,3,0,1,0,1,2,2,2,1,4,1,0,4,3,3,13,1,2,0,0,2,3,3]},{"label":"BTC Mining","topics":"mining,miners,central,trillion,cost","description":"The key topics currently discussed in the messages from twitter are:\n1. Argentina’s Central Bank hosting a live Bitcoin mining exhibit\n2. Bitcoin mining bans and their potential impact on climate-conscious governments\n3. Bitcoin mining difficulty reaching an all-time high\n4. Hut8Corp gearing up for a mining power surge with new Bitmain Antminers\n5. Europe’s largest telecommunications provider launching a dedicated Bitcoin mining infrastructure\n6. Delay in Chile mining permits causing concerns\n7. The future of cash becoming obsolete and banknotes only found in museums\n8. The Bitcoin mining industry being a multi-billion dollar industry on top of a 1.5 trillion dollar asset\n9. BTC mining difficulty and hashrate hitting all-time highs\n10. Introduction of Goblin Mine, a free-to-play mining game with the ability to swap coins for Ton Blockchain.","data":[0,0,3,2,26,5,3,0,3,9,3,2,3,2,2,2,1,1,2,1,4,3,2,1,6,4,2,3,3,3,3,18,5,4,2,2,1,0,0,2,9,2,0,3,3,3,0,0,2,1,3,1,1,0,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-44.ts b/priv/repo/major_topics_seed/data-44.ts deleted file mode 100644 index a75c91b14f..0000000000 --- a/priv/repo/major_topics_seed/data-44.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '31.10.24', - '01.11.24', - '01.11.24', - '01.11.24', - '01.11.24', - '01.11.24', - '01.11.24', - '01.11.24', - '02.11.24', - '02.11.24', - '02.11.24', - '02.11.24', - '02.11.24', - '02.11.24', - '02.11.24', - '02.11.24', - '03.11.24', - '03.11.24', - '03.11.24', - '03.11.24', - '03.11.24', - '03.11.24', - '03.11.24', - '03.11.24', - '04.11.24', - '04.11.24', - '04.11.24', - '04.11.24', - '04.11.24', - '04.11.24', - '04.11.24', - '04.11.24', - '05.11.24', - '05.11.24', - '05.11.24', - '05.11.24', - '05.11.24', - '05.11.24', - '05.11.24', - '05.11.24', - '06.11.24', - '06.11.24', - '06.11.24', - '06.11.24', - '06.11.24', - '06.11.24', - '06.11.24', - '06.11.24', - '07.11.24', - '07.11.24', - '07.11.24', - '07.11.24', - '07.11.24', - '07.11.24', - '07.11.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'fiat,bitcoin,money,gradually,understand', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin being the most important issue for some individuals\n2. The impact of Europe's MiCA Rule on Bitcoin and crypto\n3. The significance of Bitcoin as the first and only public financial infrastructure\n4. On-chain Bitcoin users understanding the importance of owning their private keys\n5. The potential for Bitcoin to change the way people are paid and the power dynamics between employers and employees\n6. Speculation and conspiracy theories about the origins of Bitcoin, including theories about Elon Musk, the CIA, and even a super-genius Panda\n7. The importance of protecting the nuclear family and investing in Bitcoin as a way to secure financial stability\n\nOverall, the discussions on Twitter reflect a mix of financial, technological, and social considerations related to Bitcoin and the crypto industry.", - data: [ - 10, 5, 7, 21, 68, 43, 10, 10, 9, 10, 9, 9, 13, 14, 7, 9, 7, 10, 14, 10, 11, 10, 11, 11, 4, - 13, 3, 8, 11, 6, 10, 6, 16, 5, 23, 14, 4, 14, 5, 14, 14, 12, 7, 14, 10, 15, 6, 18, 11, 4, - 15, 5, 7, 12, 7, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,intelligence,nvidia', - description: - 'The key topics discussed in the messages from twitter are:\n1. Artificial Intelligence (AI) in various applications such as Zoom calls, onchain AI agents, reshaping customer payment experiences, transforming shopping experiences, and educational modules.\n2. The future impact of AI on society, including the ability to select traits in children, potential immortality, and reshaping e-commerce.\n3. The intersection of AI with other key tech trends like blockchain, cryptocurrency, social networks, and games.\n4. Decentralized AI and its role in safeguarding privacy and data sovereignty.\n5. The formation of the Artificial Superintelligence Alliance on Binance, involving tokens like $FET, $AGIX, and $OCEAN.', - data: [ - 37, 55, 10, 14, 0, 2, 5, 15, 7, 6, 7, 7, 11, 13, 3, 9, 11, 16, 10, 12, 14, 12, 13, 5, 9, 16, - 23, 10, 8, 6, 7, 15, 10, 11, 17, 16, 6, 11, 14, 17, 16, 7, 14, 8, 11, 5, 22, 9, 9, 4, 6, 11, - 6, 6, 13, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,break,resistance,chart', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Ethereum (ETH) price performance and potential for growth\n- Comparison between USDC and ETH performance\n- Speculation on ETH hitting $10,000 next year\n- Discussion on ETH being undervalued and potential for a bull run\n- Mention of other altcoins like SOL and their impact on ETH\n- Reference to iGaming heavyweight potentially securing a Binance listing\n- Analysis of ETH sentiment and potential for a new all-time high\n- Comparison of ETH performance with the S&P500\n- Bearish trend at $2.5K for Ethereum despite high volatility\n\nOverall, the sentiment towards Ethereum (ETH) appears to be mixed, with some users bullish on its potential for growth while others are cautious about its current performance.', - data: [ - 13, 0, 7, 7, 1, 1, 9, 10, 12, 5, 9, 8, 10, 9, 3, 11, 127, 6, 15, 11, 18, 11, 14, 14, 18, 7, - 8, 8, 9, 17, 11, 5, 15, 4, 4, 11, 7, 11, 9, 8, 10, 8, 12, 10, 9, 8, 13, 19, 8, 2, 4, 10, 10, - 8, 5, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include memecoins, meme coin predictions, the potential for meme coins to revolutionize the digital landscape, and upcoming events like the Meme Millions Tournament Series. There is also mention of specific meme coins like Dogecoin and Shiba Inu, as well as discussions about the cultural significance and community-building potential of memecoins. Additionally, there is speculation about the future of meme coins and their role in the crypto ecosystem.', - data: [ - 7, 8, 5, 6, 1, 0, 3, 4, 4, 6, 5, 6, 1, 6, 8, 6, 7, 10, 7, 10, 9, 11, 5, 3, 10, 9, 9, 8, 5, - 14, 6, 100, 6, 8, 5, 7, 9, 4, 5, 8, 8, 2, 12, 7, 9, 9, 8, 12, 6, 3, 7, 6, 6, 9, 2, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,web3,players', - description: - 'The messages from Twitter are discussing various topics related to the crypto industry and gaming. Some key words mentioned include #MetaBattler, #Metacritic, Web3 gaming, Vending Machine Project, RTX 3080, Xbox GamePass, LegendofArcadia, MrPool, digital storytelling, NFTs, Karate Combat, PlayTheBazaar, and blockchain integration. The messages also mention specific games like Stalker 2 and Chaos Legion. Overall, the discussions revolve around new game releases, investment opportunities in the gaming sector, and the intersection of gaming and cryptocurrency.', - data: [ - 6, 4, 14, 6, 0, 2, 9, 2, 7, 7, 4, 4, 2, 11, 7, 7, 6, 11, 5, 58, 6, 6, 14, 9, 2, 9, 10, 5, 5, - 11, 9, 8, 8, 10, 6, 6, 33, 6, 5, 20, 6, 5, 7, 6, 7, 5, 6, 9, 9, 2, 10, 5, 5, 7, 6, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,eth,bnb,ethereum', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Comparison between Solana ($SOL) and Ethereum ($ETH) in terms of bullish sentiment and market performance.\n2. Solana's surge in value, surpassing Binance Coin ($BNB) to become the 4th largest cryptocurrency.\n3. Speculation about a pro-crypto environment under Trump's projected lead in the US election, leading to hopes for Solana-based ETFs and favorable policies.\n4. Solana's performance in the crypto market, with a 200% rally and potential to overtake Ethereum.\n5. Solana's position in the crypto rankings and market cap, strengthening its position.\n6. Milestones and developments in the Solana ecosystem, such as connecting to multiple chains and launching new products like StakeEase.\n7. Market movements and large transactions involving Solana, such as Pumpfun selling a significant amount of SOL and moving USDC to Kraken.\n8. NFTs on Solana, with Fomo Mages becoming the most expensive NFTs on the platform.\n9. Technical analysis and price predictions for Solana, including potential breakout points and price targets.\n10. On-chain analytics highlighting prominent blockchains in terms of total value locked, including Ethereum, Solana, Tron, and others.", - data: [ - 12, 10, 6, 4, 0, 2, 10, 10, 11, 8, 3, 0, 5, 6, 4, 0, 11, 14, 7, 3, 4, 7, 2, 12, 2, 12, 4, 4, - 5, 8, 6, 6, 5, 7, 11, 2, 4, 16, 13, 5, 4, 3, 7, 42, 5, 13, 4, 6, 8, 3, 2, 8, 6, 2, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,etf,inflows,net,blackrock', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin ETF outflows and inflows, with Blackrock dominating the market\n- Increase in circulation of USDC in response to USDT investigation\n- Decrease in the number of addresses holding more than 1 BTC\n- Introduction of a double leveraged $MSTR ETF\n- Comparison of Bitcoin and Ethereum spot ETF inflows\n- Holdings by Bitcoin ETFs, with Blackrock leading in BTC purchased and trading volume\n- Market trends and predictions based on ETF flows and Bitcoin holdings\n- Inflows of ERC-20 stablecoins on Binance and Coinbase\n- Negative Bitcoin ETF flows and outflows from various companies\n- Impact of outflows on altcoins market cap\n- Comparison between Gold ETF and physical gold as investment options\n\nOverall, the discussions on Twitter revolve around ETF flows, market trends, company inflows and outflows, and comparisons between different investment options in the crypto industry.', - data: [ - 12, 6, 3, 3, 26, 18, 4, 17, 0, 3, 1, 7, 9, 6, 2, 1, 49, 6, 6, 2, 3, 8, 2, 4, 6, 13, 5, 4, 5, - 1, 7, 0, 2, 5, 1, 0, 2, 3, 5, 11, 4, 2, 12, 7, 32, 2, 2, 7, 14, 4, 0, 6, 4, 5, 9, - ], - }, - { - label: 'BTC Dominance', - topics: 'retest,dominance,btc,uptrend,support', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin price action and support levels: Traders are closely monitoring Bitcoin's price movements and discussing key support levels, such as $67,800 and $69,000, as well as potential breakout scenarios.\n\n2. Bitcoin dominance and altcoin season: There is talk about Bitcoin dominance reaching new highs and its impact on altcoins, with expectations of an upcoming altcoin season.\n\n3. Market sentiment and predictions: Analysts are sharing their views on Bitcoin's price trajectory, with some predicting a potential re-test at $73,700 and long-term targets ranging from $90k to $120k.\n\n4. On-chain metrics and technical analysis: Discussions include on-chain metrics resetting, technical patterns like Cup & Handle formations, and bullish indicators such as breaking downtrends and flipping resistance into support.\n\n5. Trading strategies and recommendations: Traders are sharing their trading strategies, including potential profit-taking levels and the importance of monitoring key price levels for decision-making.\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin's future price movements, with expectations of further upside potential and a positive outlook for the crypto market in the coming months.", - data: [ - 4, 8, 8, 14, 34, 19, 12, 17, 7, 1, 5, 0, 5, 0, 22, 3, 0, 9, 8, 3, 2, 5, 2, 13, 4, 4, 1, 1, - 4, 7, 4, 2, 9, 4, 5, 5, 2, 2, 5, 4, 8, 3, 7, 4, 5, 4, 12, 4, 2, 1, 1, 11, 3, 9, 4, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,rally,resistance,cents', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry are Dogecoin, Bitcoin, Shiba Inu, and meme coins. Dogecoin has seen a significant rally in the past few weeks, with mentions of potential price targets such as $1 and $0.25. There is also discussion about technical indicators suggesting a potential golden cross for Dogecoin. Additionally, there are mentions of Dogecoin surpassing Bitcoin in market inflows and breaking out of a 3-year channel, potentially leading to another major rally. Other topics include the reaction of Dogecoin founder to price spikes, the launch of a meme coin on the Solana blockchain, and the potential for a big move in Dogecoin with key resistance at $0.169. Overall, there is a sense of optimism and bullish sentiment surrounding Dogecoin and other cryptocurrencies in the market.', - data: [ - 3, 4, 2, 3, 0, 0, 4, 6, 5, 5, 5, 0, 3, 26, 118, 4, 0, 1, 6, 2, 7, 3, 5, 4, 1, 4, 3, 4, 7, - 10, 1, 1, 2, 1, 3, 3, 1, 9, 3, 3, 2, 2, 6, 9, 7, 4, 4, 0, 2, 0, 1, 2, 2, 2, 2, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,collection,render', - description: - 'The key topic discussed in the messages from twitter is art. People are sharing their appreciation for various forms of art, including paintings, digital art, and ceramics. Some are discussing their own creative processes and projects, while others are excited about classic RPGs being remade in modern formats. Overall, there is a positive and enthusiastic vibe surrounding the topic of art in the crypto community on social media.', - data: [ - 5, 3, 49, 1, 0, 0, 3, 1, 2, 8, 4, 4, 5, 6, 5, 2, 0, 3, 5, 4, 5, 4, 6, 0, 2, 6, 6, 3, 4, 8, - 5, 1, 2, 6, 2, 3, 3, 2, 3, 4, 5, 3, 10, 3, 5, 8, 2, 2, 11, 7, 4, 1, 3, 7, 12, - ], - }, - { - label: 'APE', - topics: 'apechain,ape,apecoin,mint,nft', - description: - 'The key topics currently being discussed in the crypto industry on social media accounts and communities include:\n- Ape Chain: There is a lot of excitement and discussion around Ape Chain, with users minting NFTs and supporting the builders on the platform.\n- NFTs: Users are talking about various NFT collections on Ape Chain, such as PawsClawsArcade and the official Aggregation Summit NFT.\n- Rewards and initiatives: There are discussions about initiatives like ThankApe rewarding $Ape holders for exploring and participating in ApeChain.\n- Minting and unique mechanics: Users are excited about upcoming minting opportunities on platforms like bleverxyz and Mintify, with unique mint mechanics and low mint prices.\n- Rugged incidents: There are mentions of users getting rugged on their bags, possibly due to DMCA takedowns or other issues on the platform.\n- Allow lists and upcoming collections: Users are discussing opportunities to get on allow lists for upcoming collections like tinoforbidden\'s "Street Memories" collection.\n- ApeChain Keys: BAYC, MAYC, and BAKC holders are on a whitelist for upcoming ApeChain Keys mint, generating excitement and anticipation among the community.', - data: [ - 5, 28, 4, 1, 0, 1, 11, 4, 5, 7, 3, 4, 5, 0, 7, 1, 1, 5, 4, 6, 10, 5, 4, 3, 8, 4, 1, 5, 3, 8, - 4, 14, 15, 6, 6, 7, 2, 1, 0, 5, 4, 2, 3, 1, 2, 3, 3, 6, 5, 3, 3, 1, 2, 3, 1, - ], - }, - { - label: 'BTC All time high', - topics: 'high,alltime,time,highs,new', - description: - "The key topic discussed in the messages from Twitter is the all-time high of Bitcoin, with mentions of the price reaching $75,000 and speculation about it potentially reaching $100k. There is excitement and anticipation surrounding Bitcoin's price surge, with references to previous highs and predictions for future growth. Additionally, there is mention of other cryptocurrencies like Ethereum and BigFoot experiencing significant price increases. Overall, the focus is on the bullish market sentiment and potential for further gains in the crypto industry.", - data: [ - 0, 1, 1, 15, 20, 27, 34, 1, 0, 2, 2, 9, 3, 0, 1, 1, 0, 0, 3, 1, 3, 2, 3, 19, 1, 1, 0, 1, 0, - 0, 0, 0, 1, 21, 3, 1, 1, 0, 7, 6, 1, 1, 3, 5, 0, 0, 1, 14, 7, 1, 3, 2, 0, 3, 3, - ], - }, - { - label: 'BTC Price', - topics: '100k,75000,75k,bitcoin,hits', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the price of Bitcoin reaching new highs, with mentions of $69k, $71k, $73k, $74k, $75k, $76k, $77k, and even predictions of $100k and $250k. There is also discussion about whether $75,000 is expensive for Bitcoin, with some referring to it as "FIFTY NINE LARGE ONES." Additionally, there are mentions of influential figures like Michael Saylor holding a significant amount of money in Bitcoin and predictions from AI tools about when Bitcoin might hit the $100,000 milestone. Overall, the sentiment seems to be bullish and optimistic about the future of Bitcoin\'s price.', - data: [ - 1, 1, 0, 13, 14, 18, 10, 9, 1, 2, 6, 2, 1, 4, 7, 3, 0, 3, 1, 2, 4, 3, 3, 18, 2, 3, 3, 4, 3, - 3, 3, 2, 4, 1, 4, 4, 3, 7, 8, 3, 3, 1, 6, 3, 5, 1, 4, 3, 4, 0, 0, 5, 2, 4, 2, - ], - }, - { - label: 'BTC All time high', - topics: 'ath,aths,new,reached,btc', - description: - 'From the messages on Twitter, it is clear that the key topic being discussed is the new all-time high (ATH) for Bitcoin. The price of Bitcoin has surpassed $73,826.60 and is on its way to break even higher ATH levels. There is excitement and anticipation among the crypto community about this new milestone. Additionally, there is mention of Ethereum dropping to 7th place in 24-hour fees, indicating a shift in the market dynamics. Overall, the focus is on the bullish trend in the crypto industry, with Bitcoin leading the way towards new ATHs.', - data: [ - 3, 2, 12, 9, 16, 0, 19, 3, 5, 1, 6, 2, 2, 1, 0, 1, 1, 2, 3, 2, 3, 4, 2, 14, 2, 1, 1, 6, 1, - 4, 4, 2, 3, 28, 3, 2, 1, 5, 14, 0, 0, 0, 0, 2, 2, 2, 5, 2, 4, 0, 1, 1, 2, 3, 3, - ], - }, - { - label: 'Gary Gensler ', - topics: 'gensler,gary,sec,chair,fired', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Speculation about the potential firing of Gary Gensler as the SEC chairman\n- Predictions about the impact of a Trump victory on the crypto market\n- Anticipation of regulatory changes under a new SEC head who is pro-crypto\n- Expectations of a potential SOL ETF in the next 1-2 years\n- Discussion about the potential establishment of a US Bitcoin strategic reserve\n- Optimism about the future of crypto under new leadership\n- Speculation about the potential drop of cases by the SEC to avoid getting fired\n- Excitement about the potential bull run for Pulsechain\n\nOverall, the sentiment seems to be positive towards the potential changes in leadership and regulations in the crypto industry.', - data: [ - 2, 0, 5, 2, 1, 0, 6, 1, 4, 4, 2, 2, 7, 1, 2, 2, 2, 0, 10, 7, 25, 10, 6, 3, 1, 2, 5, 6, 4, 4, - 0, 2, 6, 3, 5, 4, 3, 3, 6, 5, 11, 5, 2, 2, 1, 0, 0, 9, 2, 8, 2, 0, 2, 3, 2, - ], - }, - { - label: 'US election', - topics: 'vote,voting,election,voted,votes', - description: - 'The key topics discussed in the messages from twitter are:\n1. The importance of voting in the election and encouraging others to vote.\n2. Concerns about election integrity and the timing of election results.\n3. Speculation about potential election riots and security measures.\n4. Calls for unity and focusing on what really matters in the election.\n5. Discussions about the impact of voting on political decisions and policies.\n6. Clarifications about voting eligibility and the democratic process.\n7. Emphasis on the significance of every vote and the popular vote.\n8. Urging people to stay in line and make a difference through voting.', - data: [ - 2, 4, 6, 6, 1, 1, 3, 0, 3, 0, 3, 3, 3, 1, 1, 17, 2, 2, 3, 0, 2, 1, 1, 2, 3, 1, 2, 3, 5, 3, - 2, 1, 3, 5, 7, 5, 7, 2, 2, 2, 2, 2, 3, 4, 2, 0, 1, 4, 5, 0, 0, 3, 51, 2, 6, - ], - }, - { - label: 'Peanut the squirrel', - topics: 'pnut,peanut,meme,elon,viral', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry include the tragic death of a squirrel named Peanut, which has sparked outrage and calls for justice. The owners of Peanut are accusing government officials in New York of abusing power and wasting taxpayer funds to seize and kill their pet. This incident has led to the creation of a memecoin on Solana dedicated to Peanut, with discussions about the mispricing of the coin and predictions of a correction in its market value. Additionally, there are mentions of a cup and handle formation on the PNUT coin, as well as concerns about Tesla's FSD mistaking a dog for a human passenger. Donald Trump's comments on Peanut's death and the viral nature of the squirrel's story are also being shared on social media. Overall, the sentiment is one of shock, outrage, and calls for justice for Peanut.", - data: [ - 1, 7, 4, 0, 0, 3, 3, 1, 5, 1, 2, 4, 1, 3, 1, 4, 1, 0, 2, 2, 6, 2, 8, 3, 3, 4, 2, 1, 3, 5, 3, - 10, 5, 7, 0, 8, 21, 2, 2, 2, 4, 5, 1, 2, 9, 4, 1, 4, 1, 4, 6, 3, 2, 0, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,lending,tvl,protocols,strategies', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. DeFi resurgence and innovation: Discussions about the return of DeFi 1.0, new DeFi projects, leverage suites, and the potential reshaping of the DeFi landscape.\n2. Integration of traditional finance with decentralized finance: Talks about platforms like CrossFi that combine traditional finance stability with DeFi innovation.\n3. Empowering BTC DeFi: Strategies for bringing Bitcoin into the DeFi space and the potential for significant TVL (Total Value Locked) in the near future.\n4. MEV solutions and efficiency in DeFi: Leaders like PropellerSwap leveraging Substreams to improve efficiency for major DeFi protocols.\n5. Bridging traditional finance and DeFi: Chainlink's role in bridging the gap between traditional finance and DeFi, as discussed at SmartCon 2024.\n6. Ethereum's 11-Year Anniversary and its impact on DeFi: Celebrating Ethereum's white paper launch and its significant role in driving financial and non-financial innovation in the DeFi space.", - data: [ - 5, 1, 1, 1, 0, 2, 1, 1, 5, 3, 2, 5, 2, 16, 1, 4, 2, 3, 2, 3, 2, 1, 4, 4, 1, 7, 7, 4, 2, 2, - 4, 10, 2, 6, 2, 3, 4, 3, 4, 2, 6, 7, 3, 1, 2, 4, 2, 5, 4, 5, 2, 3, 4, 4, 0, - ], - }, - { - label: 'DevCon Bangkok', - topics: 'bangkok,excited,event,summit,join', - description: - 'The key topics discussed in the messages from twitter are related to upcoming events and conferences in the crypto industry, such as WalletCon, Bankless Summit, AltLayer Rollup Day, and the Semester 2 Hackathon Opening Ceremony. There is also a focus on specific speakers and sessions at these events, as well as opportunities for networking and learning about various aspects of decentralized finance (DeFi) and blockchain technology. Additionally, there are mentions of social events and performances in Bangkok, as well as announcements about partnerships and collaborations within the industry. Overall, the messages reflect a vibrant and active community engaged in the crypto space, with a strong emphasis on education, innovation, and networking.', - data: [ - 6, 3, 5, 2, 0, 2, 2, 2, 1, 1, 6, 2, 7, 6, 0, 0, 25, 1, 3, 1, 4, 1, 1, 7, 2, 3, 18, 2, 0, 12, - 2, 2, 3, 0, 1, 0, 1, 2, 2, 2, 1, 4, 1, 0, 4, 3, 3, 13, 1, 2, 0, 0, 2, 3, 3, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,central,trillion,cost', - description: - 'The key topics currently discussed in the messages from twitter are:\n1. Argentina’s Central Bank hosting a live Bitcoin mining exhibit\n2. Bitcoin mining bans and their potential impact on climate-conscious governments\n3. Bitcoin mining difficulty reaching an all-time high\n4. Hut8Corp gearing up for a mining power surge with new Bitmain Antminers\n5. Europe’s largest telecommunications provider launching a dedicated Bitcoin mining infrastructure\n6. Delay in Chile mining permits causing concerns\n7. The future of cash becoming obsolete and banknotes only found in museums\n8. The Bitcoin mining industry being a multi-billion dollar industry on top of a 1.5 trillion dollar asset\n9. BTC mining difficulty and hashrate hitting all-time highs\n10. Introduction of Goblin Mine, a free-to-play mining game with the ability to swap coins for Ton Blockchain.', - data: [ - 0, 0, 3, 2, 26, 5, 3, 0, 3, 9, 3, 2, 3, 2, 2, 2, 1, 1, 2, 1, 4, 3, 2, 1, 6, 4, 2, 3, 3, 3, - 3, 18, 5, 4, 2, 2, 1, 0, 0, 2, 9, 2, 0, 3, 3, 3, 0, 0, 2, 1, 3, 1, 1, 0, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-45.json b/priv/repo/major_topics_seed/data-45.json deleted file mode 100644 index 17c736a8df..0000000000 --- a/priv/repo/major_topics_seed/data-45.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["07.11.24","08.11.24","08.11.24","08.11.24","08.11.24","08.11.24","08.11.24","08.11.24","09.11.24","09.11.24","09.11.24","09.11.24","09.11.24","09.11.24","09.11.24","09.11.24","10.11.24","10.11.24","10.11.24","10.11.24","10.11.24","10.11.24","10.11.24","10.11.24","11.11.24","11.11.24","11.11.24","11.11.24","11.11.24","11.11.24","11.11.24","11.11.24","12.11.24","12.11.24","12.11.24","12.11.24","12.11.24","12.11.24","12.11.24","12.11.24","13.11.24","13.11.24","13.11.24","13.11.24","13.11.24","13.11.24","13.11.24","13.11.24","14.11.24","14.11.24","14.11.24","14.11.24","14.11.24","14.11.24","14.11.24"],"datasets":[{"label":"DOGE","topics":"doge,dogecoin,cents,resistance,cap","description":"The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Dogecoin (DOGE) experiencing a rapid increase in value and market cap.\n2. Speculation on the future price of DOGE, with predictions ranging from $1.420 to $1.69 by the end of the year.\n3. Mixed sentiments towards DOGE, with some users expressing excitement and optimism while others are skeptical and focusing on other trades.\n4. Observations on the low funding for DOGE despite recent price increases.\n5. Excitement over DOGE's recent surge in value, surpassing market cap of well-known companies like Ford and Adidas.\n6. Launch of a new PoolX for DOGE with airdrop opportunities.\n7. Discussion on the potential for DOGE to reach $1 or more and become a widely accepted currency.\n8. Humorous and speculative comments on the nature of DOGE as a meme coin and its potential future valuation.\n9. Cautionary notes about a possible correction in the DOGE market despite recent gains.\n10. Comparison of DOGE to other crypto \"penny\" stocks and the ease of pumping and dumping.\n\nOverall, the sentiment towards DOGE on Twitter appears to be mixed, with some users excited about its potential while others remain cautious or skeptical.","data":[14,14,5,12,0,1,13,10,15,15,11,11,8,9,404,22,5,12,18,13,20,34,10,19,18,23,9,21,32,19,16,7,8,19,11,22,17,18,15,13,14,22,17,27,15,10,15,16,30,11,9,16,14,15,11]},{"label":"BTC Price","topics":"100k,90k,100000,90000,80k","description":"The key topics currently being discussed in the crypto industry on Twitter include Bitcoin's price reaching $100,000, potential price predictions ranging from $90,000 to $120,000, and speculation about Bitcoin potentially hitting $200,000 soon. There is excitement and optimism among users, with some referencing past price movements and predictions. Overall, the sentiment appears to be bullish and optimistic about the future of Bitcoin.","data":[8,10,17,36,102,78,25,32,11,14,21,28,9,6,0,16,15,7,15,11,16,27,23,46,57,14,11,18,12,18,14,9,11,13,13,10,15,19,23,21,11,12,5,17,26,21,18,10,29,30,3,15,19,9,9]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The messages from Twitter suggest that there is a strong focus on meme coins within the crypto industry. There is excitement around meme coin super cycles, meme contests, and the potential for meme brands to become the new meta. Additionally, there is discussion about the importance of holding key meme coins and the potential for certain memecoins to become the biggest in history. The messages also touch on the idea of memetics and the shift towards more decentralized forms of control. Overall, it seems that meme coins are a hot topic of discussion and investment within the crypto community.","data":[15,5,14,22,0,3,6,4,11,15,23,9,25,12,6,5,3,9,20,9,7,19,16,6,15,11,10,12,16,13,23,113,136,18,10,8,21,14,10,20,6,8,11,14,10,9,16,15,24,14,16,12,7,14,3]},{"label":"PEPE","topics":"pepe,coinbase,robinhood,wif,listed","description":"Based on the messages from Twitter, it is evident that the cryptocurrency $PEPE is a hot topic of discussion within the crypto community. The messages indicate that $PEPE has a growing market cap, with some users expressing bullish sentiments and predicting significant price increases. Additionally, there are mentions of $PEPE being listed on various exchanges, including Robinhood, Coinbase, and Upbit, further fueling interest in the meme coin sector. Overall, the sentiment surrounding $PEPE appears to be positive, with investors looking to capitalize on potential gains.","data":[14,3,15,14,0,0,15,11,16,3,13,5,5,7,5,5,7,8,13,15,8,8,9,5,18,6,7,11,12,33,11,7,10,13,5,12,190,10,13,13,14,25,5,10,5,5,11,8,16,8,4,10,6,10,5]},{"label":"SOL","topics":"sol,solana,eth,200,ethereum","description":"The messages from Twitter regarding the crypto industry are discussing the rivalry between Solana ($SOL) and Ethereum ($ETH). Some users express their preference for Solana over Ethereum, citing reasons such as higher performance and potential for growth. There is also mention of the memecoin season on Solana heating up, with $INTERN gaining attention as a potential sleeper hit. Additionally, the market caps of Solana and Sui are compared, with analysts suggesting that Solana projects have a natural advantage in onboarding new users. Overall, the sentiment towards Solana appears positive, with users bullish on its future prospects compared to Ethereum.","data":[6,11,7,13,1,0,8,8,12,18,9,14,7,6,3,10,9,6,12,5,8,13,9,17,10,8,11,9,15,12,17,11,9,8,7,11,8,9,16,12,7,11,6,16,79,11,14,4,11,18,12,7,15,12,16]},{"label":"ETF Flows","topics":"etfs,etf,inflows,net,blackrock","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Record-breaking inflows into Bitcoin and Ethereum ETFs by institutional buyers\n- BlackRock's significant inflows into its spot Bitcoin ETF\n- High trading volume for U.S. spot Bitcoin ETFs\n- Digital asset inflows surging post-election\n- First bullish market with Bitcoin and Ethereum ETFs live\n- Total net inflows for spot BTC-ETFs and spot ETH-ETFs\n- Fidelity ETF FETH ranking first in net inflows for Ethereum spot ETF\n- Bitcoin leading inflows with $1.8 billion\n- Ethereum seeing its largest inflows since July\n- Institutional interest in crypto assets increasing\n\nOverall, the sentiment seems to be very positive with a focus on institutional investment and the potential for a bullish market in the near future.","data":[9,2,5,9,33,16,36,18,24,3,4,3,15,8,0,3,102,8,14,2,1,11,3,7,4,28,15,8,3,3,4,7,1,14,1,2,4,4,5,10,15,2,8,6,20,21,5,7,9,14,2,4,5,5,13]},{"label":"ETH Price","topics":"eth,3000,3k,ethereum,4k","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Ethereum (ETH) breaking $3,000 and hitting new highs\n2. Speculation on ETH reaching $4,000 and the start of altcoin season\n3. Discussion on the technical aspects and price movements of ETH\n4. Comparison between Proof of Work (PoW) and Proof of Stake (PoS) systems for ETH\n5. Analysis of staking platforms and their impact on ETH rewards\n6. Strategies for maximizing ETH rewards and card farming in the crypto space\n\nOverall, the sentiment seems to be positive towards ETH's price performance and potential for further growth, with a focus on technical analysis and investment strategies.","data":[13,8,2,2,1,0,9,14,11,8,2,7,11,2,0,8,109,6,18,1,9,19,6,9,5,3,5,10,11,16,12,8,4,6,8,7,5,8,8,7,11,11,3,9,11,14,11,7,15,5,4,5,7,16,4]},{"label":"AI","topics":"ai,agents,agent,models,data","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Accelerating enterprise AI adoption with new governance capabilities\n2. DataRobot launching Enterprise AI Suite to bridge gap between AI development and business value\n3. Securing enterprise systems against AI-driven threats\n4. Nobel Prize winner David Baker envisioning a future where AI and synthetic biology bring revolutionary therapeutic solutions\n5. The convergence between AI agents and crypto markets\n6. Transforming the AI landscape with accelerated computing\n7. The deflationary impact of Artificial Intelligence on the economy\n8. The state of Artificial Intelligence in crypto payments\n9. Building an AI Cloud Service\n10. The future of math with AI and the value of formalism in AI development.","data":[49,39,12,8,0,2,0,4,0,5,9,11,4,10,3,9,10,5,1,11,6,3,12,7,2,7,11,7,7,8,7,6,5,9,6,12,7,5,8,6,13,8,6,5,13,14,9,14,16,6,11,9,8,9,10]},{"label":"Devcon","topics":"devcon,bangkok,efdevcon,summit,event","description":"The key topics discussed in the messages from twitter about the Devcon event in Bangkok include:\n- Devcon day 1 and day 3 activities\n- Presence of key figures like Vitalik Buterin\n- Side events and networking opportunities\n- Updates on Ethereum and blockchain technology\n- Participation of various companies and projects\n- Community hubs and networking conversations\n- Exclusive events like dinner cruise and game night\n- Opportunities for collaboration and learning\n- Excitement and positive feedback about the event\n\nOverall, the messages reflect a vibrant and engaging atmosphere at the Devcon event in Bangkok, with a focus on knowledge sharing, networking, and community building within the crypto industry.","data":[4,3,6,4,0,0,1,2,3,11,6,4,13,23,0,7,4,8,2,14,5,3,5,16,4,4,15,9,1,1,1,6,5,0,2,6,0,3,3,10,3,7,6,4,13,3,8,8,3,20,2,3,9,14,6]},{"label":"BTC","topics":"bitcoin,standard,ordinals,fair,adopt","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin signals and patterns, such as the cup and handle pattern\n- Wealth management firms offering Bitcoin to clients\n- The concept of backing liabilities with Bitcoin\n- Bitcoin being featured in mainstream news\n- Challenges and strategies for entering the Bitcoin market\n- Bitcoin experts attending events and government responses\n- The potential for a Bitcoin Standard\n\nOverall, the sentiment towards Bitcoin appears to be positive and optimistic, with discussions focusing on its potential for growth and adoption.","data":[10,1,8,14,46,21,3,4,3,3,7,5,6,3,2,3,2,3,6,1,4,0,6,5,3,5,7,4,7,6,2,4,1,6,4,7,7,4,7,7,2,4,2,5,11,7,3,2,8,2,3,9,4,8,5]},{"label":"MSTR","topics":"mstr,microstrategy,saylor,billion,acquired","description":"The key topic discussed in the messages from twitter is MicroStrategy's continued accumulation of Bitcoin. MicroStrategy, under the leadership of Michael Saylor, has recently acquired another 27,200 Bitcoins for $2.03 billion, bringing their total Bitcoin holdings to 279,420 coins valued at close to $23 billion. The average buying price is approximately $42,692 per Bitcoin. This aggressive accumulation strategy has led to MicroStrategy's Bitcoin portfolio surpassing $20 billion, achieving over 100% ROI. The company plans to raise an additional $42 billion over the next 3 years to continue acquiring Bitcoin. This strategy aims to strengthen MicroStrategy's leadership in the global crypto market.","data":[15,5,3,2,3,4,13,3,11,0,2,4,4,3,0,5,1,7,4,0,0,3,0,7,11,5,10,5,3,0,7,3,55,19,3,5,3,3,8,5,4,2,13,12,6,4,3,1,2,4,1,3,2,1,10]},{"label":"GameFi","topics":"gaming,game,games,gamefi,web3","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Web3 gaming and its emergence on platforms like Telegram\n- New game launches and updates, such as Crystal Fall on the Epic Games Store\n- Personal gaming experiences and memories, like old gamertags and clan affiliations\n- Gaming community detective work and revelations, such as uncovering past CS 1.6 LAN event participation\n- Excitement and anticipation for upcoming games, like Dragon Defense\n- Speculation and discussion about potential collaborations and showcases in the gaming industry","data":[1,3,6,2,0,0,3,3,2,7,3,2,0,2,1,3,1,6,3,10,47,11,2,3,4,9,10,1,7,2,5,3,1,2,4,1,1,19,6,5,4,3,2,1,4,1,2,4,4,0,2,6,4,2,6]},{"label":"Art","topics":"art,artists,artist,digital,collection","description":"The key topics discussed in the messages from twitter are art, crypto art, NFTs, traditional art, artist handbook, buying and selling art, international shipping costs, multidisciplinary artist Benjamin Shine, NFT art exhibition in China, metaverse, and crypto community engagement with art. The messages also touch on the themes of creativity, societal decay, and the intersection of art and technology.","data":[1,0,51,3,0,0,1,3,5,3,2,6,3,9,0,5,4,0,7,1,6,3,5,2,1,3,2,3,4,3,11,4,4,2,2,6,6,3,5,2,3,5,6,8,4,3,1,3,6,4,1,4,1,0,12]},{"label":"BTC ATH","topics":"alltime,high,highs,time,hits","description":"The key topics currently discussed in the crypto industry on Twitter are:\n- Bitcoin hitting new all-time highs, with prices reaching $90,000 and beyond\n- Speculation on when Bitcoin will reach $100,000\n- Predictions from VanEck that Bitcoin could reach $180,000 in this cycle\n- Discussion on whether the current trend of new all-time highs for Bitcoin will continue\n- Ethereum also surging past $3,100 with significant gains\n- Liquidations in the market totaling $349 million\n- Excitement and optimism about the future of cryptocurrency and blockchain technology\n\nOverall, the sentiment on Twitter regarding the crypto industry is positive, with many users celebrating the success of Bitcoin and other cryptocurrencies.","data":[3,0,0,7,28,27,2,5,1,6,3,3,2,0,0,0,1,2,4,1,0,1,0,8,50,1,0,4,2,1,2,1,0,9,13,2,0,2,2,10,2,1,1,4,3,1,4,0,9,5,1,1,2,0,0]},{"label":"DeFi","topics":"defi,renaissance,protocols,aave,technologies","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. DeFi protocols and their performance, with mentions of Aave, YFI, and DeFi dominance in the market.\n2. The impact of political events, such as Trump winning and Gensler's appointment, on the DeFi sector.\n3. The potential for growth and innovation in DeFi, with discussions on new revenue streams and user numbers increasing.\n4. Challenges to institutional adoption of DeFi, including the need for compliance and interoperability solutions.\n5. Excitement around new developments in DeFi, such as user-owned privacy compliance stacks and fixed-rate leveraged yield farming.\n6. Speculation on the future of DeFi tokens and their utility beyond governance votes.\nOverall, the sentiment seems positive towards the future of DeFi, with a focus on innovation, growth, and potential opportunities for users and investors.","data":[2,3,3,5,1,1,1,6,4,4,3,2,3,15,1,6,2,6,2,3,3,5,7,2,6,3,4,10,3,3,4,5,2,3,5,6,1,5,5,4,7,4,1,3,3,4,4,3,2,3,7,2,2,1,3]},{"label":"APE","topics":"apechain,ape,nft,nfts,fun","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- ApeChain and NFTs: There is a lot of excitement and discussion around ApeChain, with users mentioning buying NFTs on the platform and supporting artists who are minting their work on ApeChain. Bored Ape Yacht Club ($BAYC) and ApeCoin are also mentioned in relation to ApeChain.\n- Organic growth and community support: Users are discussing the organic growth of ApeChain and how the community is supporting each other, with mentions of holding onto NFTs and not selling them for profit.\n- Future potential and movement: There is talk about the potential for ApeChain to become a major player in the NFT market, with users predicting a movement where hodlers from different collections come together to support ApeChain.\n- Early NFT bull market: Some users are pointing out that the recent movement in NFTs, particularly on ApeChain, is a signal of an early NFT bull market, with more people getting involved in the space.\n- Support for artists and new collections: Users are showing support for artists minting their work on ApeChain, with mentions of new collections like LINES by @MutagenSamurai and the diversity of artwork being created on the platform.","data":[3,33,5,0,0,0,6,5,5,6,3,2,0,3,0,3,1,1,2,6,3,3,5,2,3,1,3,2,2,4,5,0,10,5,6,6,4,2,4,3,3,4,3,1,5,4,2,3,3,5,0,1,2,4,1]},{"label":"Idea of the United States creating a Strategic Bitcoin Reserve","topics":"strategic,reserve,sbr,countries,states","description":"The key topic being discussed on Twitter is the idea of the United States creating a Strategic Bitcoin Reserve. Many users are debating whether the US should be the first to adopt Bitcoin in this way or if they should not do it at all. Some believe that having a Strategic Bitcoin Reserve would allow the US to flourish in the future and potentially lead to other countries following suit. There are also mentions of other nation states potentially front running the US in creating such a reserve. The potential impact of a Strategic Bitcoin Reserve on the price of Bitcoin is also being discussed, with some predicting that it could reach $500,000 or even $1 million. Additionally, there are mentions of cabinet picks supporting the idea, multiple countries buying Bitcoin, and states considering introducing legislation related to a Strategic Bitcoin Reserve. Overall, the topic of a Strategic Bitcoin Reserve is generating a lot of interest and speculation on Twitter.","data":[3,3,0,1,2,13,1,2,3,3,2,6,2,4,0,0,2,2,1,2,3,2,10,4,4,2,3,1,0,4,0,6,0,7,2,4,0,6,3,0,5,8,6,1,2,32,2,0,3,1,1,0,2,1,0]},{"label":"BTC has surpassed Silver in market cap","topics":"silver,gold,cap,8th,flipped","description":"As of today, #Bitcoin has surpassed Silver in market cap, making it the 8th most valuable asset in the world. Many in the crypto community are excited about this milestone and are now setting their sights on overtaking Gold next. There is a strong belief that Bitcoin's value will continue to rise, potentially even reaching the second spot in terms of market cap by the end of next year. Additionally, there is discussion about the potential for Ethereum to reach a trillion dollar market cap, drawing comparisons to successful tech companies like Apple, Amazon, and Tesla. Overall, the sentiment in the crypto community is optimistic and bullish on the future of Bitcoin and other cryptocurrencies.","data":[3,0,2,11,18,13,9,2,2,1,1,0,1,1,0,2,1,0,11,0,1,9,3,1,0,0,2,1,0,3,3,2,2,2,2,12,1,0,1,2,3,0,1,8,5,1,17,3,0,1,0,2,1,2,2]},{"label":"Layer 2","topics":"l2,ethereum,ens,layer,layer2","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Adoption of ERC-7683 standard for crosschain intents by Arbitrum and OffchainLabs\n2. Balancer v3 coming soon with improved UI\n3. Ethereum's \"Beam Chain\" roadmap unveiled at Devcon 7\n4. Evolution of Ethereum with based rollups and L2 abstraction\n5. Security risks and incident response preparation in the Ethereum community\n6. Partnership with Entangle for sustainable tech mission\n7. Unifying Ethereum needs for better wallet UX, account abstraction, and speed\n8. Luban's innovative product Taiyi addressing Ethereum's block times and composability issues\n9. Lumina, DIA's native L2 rollup, changing the oracle game in Web3\n10. Consensys launching Linea Association to support decentralization of Layer-2 zkEVM technology\n11. Vitalik Buterin's address on Ethereum's journey and the role of Layer 2 solutions\n12. Unifying Ethereum through intents and ERC-7683 standard.","data":[3,5,1,3,0,0,1,2,1,2,4,5,1,4,1,5,13,3,1,6,2,4,3,2,2,3,4,9,12,0,1,1,0,2,1,8,0,4,4,2,1,5,3,5,0,1,0,2,3,1,3,11,2,1,1]},{"label":"NFT","topics":"nft,nfts,pfp,collection,reveal","description":"Based on the messages from Twitter, it is evident that the NFT (Non-Fungible Token) market is currently a hot topic of discussion within the crypto industry community. The messages highlight the resurgence of interest in NFTs, with mentions of popular NFT projects like CryptoPunks and Forever Punks. There is also a mention of the potential for new Memecoin NFTs to bring liquidity to the market.\n\nAdditionally, the messages touch upon the importance of strong and consistent teams in the NFT space, as well as the evolution of technology in addressing liquidity issues. The analysis also mentions the profitability of NFT trades in October and the potential for promising opportunities in the NFT market.\n\nOverall, the messages suggest that NFTs are experiencing a comeback, with a focus on established projects like CryptoPunks and emerging opportunities in the market.","data":[1,0,3,1,0,0,0,3,5,9,6,1,7,5,2,4,1,1,4,4,2,3,2,2,4,1,1,4,3,3,1,6,2,0,15,1,5,1,4,4,6,1,8,3,1,2,1,0,6,3,0,1,4,3,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-45.ts b/priv/repo/major_topics_seed/data-45.ts deleted file mode 100644 index 351a69ec20..0000000000 --- a/priv/repo/major_topics_seed/data-45.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '07.11.24', - '08.11.24', - '08.11.24', - '08.11.24', - '08.11.24', - '08.11.24', - '08.11.24', - '08.11.24', - '09.11.24', - '09.11.24', - '09.11.24', - '09.11.24', - '09.11.24', - '09.11.24', - '09.11.24', - '09.11.24', - '10.11.24', - '10.11.24', - '10.11.24', - '10.11.24', - '10.11.24', - '10.11.24', - '10.11.24', - '10.11.24', - '11.11.24', - '11.11.24', - '11.11.24', - '11.11.24', - '11.11.24', - '11.11.24', - '11.11.24', - '11.11.24', - '12.11.24', - '12.11.24', - '12.11.24', - '12.11.24', - '12.11.24', - '12.11.24', - '12.11.24', - '12.11.24', - '13.11.24', - '13.11.24', - '13.11.24', - '13.11.24', - '13.11.24', - '13.11.24', - '13.11.24', - '13.11.24', - '14.11.24', - '14.11.24', - '14.11.24', - '14.11.24', - '14.11.24', - '14.11.24', - '14.11.24', - ], - datasets: [ - { - label: 'DOGE', - topics: 'doge,dogecoin,cents,resistance,cap', - description: - 'The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Dogecoin (DOGE) experiencing a rapid increase in value and market cap.\n2. Speculation on the future price of DOGE, with predictions ranging from $1.420 to $1.69 by the end of the year.\n3. Mixed sentiments towards DOGE, with some users expressing excitement and optimism while others are skeptical and focusing on other trades.\n4. Observations on the low funding for DOGE despite recent price increases.\n5. Excitement over DOGE\'s recent surge in value, surpassing market cap of well-known companies like Ford and Adidas.\n6. Launch of a new PoolX for DOGE with airdrop opportunities.\n7. Discussion on the potential for DOGE to reach $1 or more and become a widely accepted currency.\n8. Humorous and speculative comments on the nature of DOGE as a meme coin and its potential future valuation.\n9. Cautionary notes about a possible correction in the DOGE market despite recent gains.\n10. Comparison of DOGE to other crypto "penny" stocks and the ease of pumping and dumping.\n\nOverall, the sentiment towards DOGE on Twitter appears to be mixed, with some users excited about its potential while others remain cautious or skeptical.', - data: [ - 14, 14, 5, 12, 0, 1, 13, 10, 15, 15, 11, 11, 8, 9, 404, 22, 5, 12, 18, 13, 20, 34, 10, 19, - 18, 23, 9, 21, 32, 19, 16, 7, 8, 19, 11, 22, 17, 18, 15, 13, 14, 22, 17, 27, 15, 10, 15, 16, - 30, 11, 9, 16, 14, 15, 11, - ], - }, - { - label: 'BTC Price', - topics: '100k,90k,100000,90000,80k', - description: - "The key topics currently being discussed in the crypto industry on Twitter include Bitcoin's price reaching $100,000, potential price predictions ranging from $90,000 to $120,000, and speculation about Bitcoin potentially hitting $200,000 soon. There is excitement and optimism among users, with some referencing past price movements and predictions. Overall, the sentiment appears to be bullish and optimistic about the future of Bitcoin.", - data: [ - 8, 10, 17, 36, 102, 78, 25, 32, 11, 14, 21, 28, 9, 6, 0, 16, 15, 7, 15, 11, 16, 27, 23, 46, - 57, 14, 11, 18, 12, 18, 14, 9, 11, 13, 13, 10, 15, 19, 23, 21, 11, 12, 5, 17, 26, 21, 18, - 10, 29, 30, 3, 15, 19, 9, 9, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The messages from Twitter suggest that there is a strong focus on meme coins within the crypto industry. There is excitement around meme coin super cycles, meme contests, and the potential for meme brands to become the new meta. Additionally, there is discussion about the importance of holding key meme coins and the potential for certain memecoins to become the biggest in history. The messages also touch on the idea of memetics and the shift towards more decentralized forms of control. Overall, it seems that meme coins are a hot topic of discussion and investment within the crypto community.', - data: [ - 15, 5, 14, 22, 0, 3, 6, 4, 11, 15, 23, 9, 25, 12, 6, 5, 3, 9, 20, 9, 7, 19, 16, 6, 15, 11, - 10, 12, 16, 13, 23, 113, 136, 18, 10, 8, 21, 14, 10, 20, 6, 8, 11, 14, 10, 9, 16, 15, 24, - 14, 16, 12, 7, 14, 3, - ], - }, - { - label: 'PEPE', - topics: 'pepe,coinbase,robinhood,wif,listed', - description: - 'Based on the messages from Twitter, it is evident that the cryptocurrency $PEPE is a hot topic of discussion within the crypto community. The messages indicate that $PEPE has a growing market cap, with some users expressing bullish sentiments and predicting significant price increases. Additionally, there are mentions of $PEPE being listed on various exchanges, including Robinhood, Coinbase, and Upbit, further fueling interest in the meme coin sector. Overall, the sentiment surrounding $PEPE appears to be positive, with investors looking to capitalize on potential gains.', - data: [ - 14, 3, 15, 14, 0, 0, 15, 11, 16, 3, 13, 5, 5, 7, 5, 5, 7, 8, 13, 15, 8, 8, 9, 5, 18, 6, 7, - 11, 12, 33, 11, 7, 10, 13, 5, 12, 190, 10, 13, 13, 14, 25, 5, 10, 5, 5, 11, 8, 16, 8, 4, 10, - 6, 10, 5, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,eth,200,ethereum', - description: - 'The messages from Twitter regarding the crypto industry are discussing the rivalry between Solana ($SOL) and Ethereum ($ETH). Some users express their preference for Solana over Ethereum, citing reasons such as higher performance and potential for growth. There is also mention of the memecoin season on Solana heating up, with $INTERN gaining attention as a potential sleeper hit. Additionally, the market caps of Solana and Sui are compared, with analysts suggesting that Solana projects have a natural advantage in onboarding new users. Overall, the sentiment towards Solana appears positive, with users bullish on its future prospects compared to Ethereum.', - data: [ - 6, 11, 7, 13, 1, 0, 8, 8, 12, 18, 9, 14, 7, 6, 3, 10, 9, 6, 12, 5, 8, 13, 9, 17, 10, 8, 11, - 9, 15, 12, 17, 11, 9, 8, 7, 11, 8, 9, 16, 12, 7, 11, 6, 16, 79, 11, 14, 4, 11, 18, 12, 7, - 15, 12, 16, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,etf,inflows,net,blackrock', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Record-breaking inflows into Bitcoin and Ethereum ETFs by institutional buyers\n- BlackRock's significant inflows into its spot Bitcoin ETF\n- High trading volume for U.S. spot Bitcoin ETFs\n- Digital asset inflows surging post-election\n- First bullish market with Bitcoin and Ethereum ETFs live\n- Total net inflows for spot BTC-ETFs and spot ETH-ETFs\n- Fidelity ETF FETH ranking first in net inflows for Ethereum spot ETF\n- Bitcoin leading inflows with $1.8 billion\n- Ethereum seeing its largest inflows since July\n- Institutional interest in crypto assets increasing\n\nOverall, the sentiment seems to be very positive with a focus on institutional investment and the potential for a bullish market in the near future.", - data: [ - 9, 2, 5, 9, 33, 16, 36, 18, 24, 3, 4, 3, 15, 8, 0, 3, 102, 8, 14, 2, 1, 11, 3, 7, 4, 28, 15, - 8, 3, 3, 4, 7, 1, 14, 1, 2, 4, 4, 5, 10, 15, 2, 8, 6, 20, 21, 5, 7, 9, 14, 2, 4, 5, 5, 13, - ], - }, - { - label: 'ETH Price', - topics: 'eth,3000,3k,ethereum,4k', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Ethereum (ETH) breaking $3,000 and hitting new highs\n2. Speculation on ETH reaching $4,000 and the start of altcoin season\n3. Discussion on the technical aspects and price movements of ETH\n4. Comparison between Proof of Work (PoW) and Proof of Stake (PoS) systems for ETH\n5. Analysis of staking platforms and their impact on ETH rewards\n6. Strategies for maximizing ETH rewards and card farming in the crypto space\n\nOverall, the sentiment seems to be positive towards ETH's price performance and potential for further growth, with a focus on technical analysis and investment strategies.", - data: [ - 13, 8, 2, 2, 1, 0, 9, 14, 11, 8, 2, 7, 11, 2, 0, 8, 109, 6, 18, 1, 9, 19, 6, 9, 5, 3, 5, 10, - 11, 16, 12, 8, 4, 6, 8, 7, 5, 8, 8, 7, 11, 11, 3, 9, 11, 14, 11, 7, 15, 5, 4, 5, 7, 16, 4, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n1. Accelerating enterprise AI adoption with new governance capabilities\n2. DataRobot launching Enterprise AI Suite to bridge gap between AI development and business value\n3. Securing enterprise systems against AI-driven threats\n4. Nobel Prize winner David Baker envisioning a future where AI and synthetic biology bring revolutionary therapeutic solutions\n5. The convergence between AI agents and crypto markets\n6. Transforming the AI landscape with accelerated computing\n7. The deflationary impact of Artificial Intelligence on the economy\n8. The state of Artificial Intelligence in crypto payments\n9. Building an AI Cloud Service\n10. The future of math with AI and the value of formalism in AI development.', - data: [ - 49, 39, 12, 8, 0, 2, 0, 4, 0, 5, 9, 11, 4, 10, 3, 9, 10, 5, 1, 11, 6, 3, 12, 7, 2, 7, 11, 7, - 7, 8, 7, 6, 5, 9, 6, 12, 7, 5, 8, 6, 13, 8, 6, 5, 13, 14, 9, 14, 16, 6, 11, 9, 8, 9, 10, - ], - }, - { - label: 'Devcon', - topics: 'devcon,bangkok,efdevcon,summit,event', - description: - 'The key topics discussed in the messages from twitter about the Devcon event in Bangkok include:\n- Devcon day 1 and day 3 activities\n- Presence of key figures like Vitalik Buterin\n- Side events and networking opportunities\n- Updates on Ethereum and blockchain technology\n- Participation of various companies and projects\n- Community hubs and networking conversations\n- Exclusive events like dinner cruise and game night\n- Opportunities for collaboration and learning\n- Excitement and positive feedback about the event\n\nOverall, the messages reflect a vibrant and engaging atmosphere at the Devcon event in Bangkok, with a focus on knowledge sharing, networking, and community building within the crypto industry.', - data: [ - 4, 3, 6, 4, 0, 0, 1, 2, 3, 11, 6, 4, 13, 23, 0, 7, 4, 8, 2, 14, 5, 3, 5, 16, 4, 4, 15, 9, 1, - 1, 1, 6, 5, 0, 2, 6, 0, 3, 3, 10, 3, 7, 6, 4, 13, 3, 8, 8, 3, 20, 2, 3, 9, 14, 6, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,standard,ordinals,fair,adopt', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin signals and patterns, such as the cup and handle pattern\n- Wealth management firms offering Bitcoin to clients\n- The concept of backing liabilities with Bitcoin\n- Bitcoin being featured in mainstream news\n- Challenges and strategies for entering the Bitcoin market\n- Bitcoin experts attending events and government responses\n- The potential for a Bitcoin Standard\n\nOverall, the sentiment towards Bitcoin appears to be positive and optimistic, with discussions focusing on its potential for growth and adoption.', - data: [ - 10, 1, 8, 14, 46, 21, 3, 4, 3, 3, 7, 5, 6, 3, 2, 3, 2, 3, 6, 1, 4, 0, 6, 5, 3, 5, 7, 4, 7, - 6, 2, 4, 1, 6, 4, 7, 7, 4, 7, 7, 2, 4, 2, 5, 11, 7, 3, 2, 8, 2, 3, 9, 4, 8, 5, - ], - }, - { - label: 'MSTR', - topics: 'mstr,microstrategy,saylor,billion,acquired', - description: - "The key topic discussed in the messages from twitter is MicroStrategy's continued accumulation of Bitcoin. MicroStrategy, under the leadership of Michael Saylor, has recently acquired another 27,200 Bitcoins for $2.03 billion, bringing their total Bitcoin holdings to 279,420 coins valued at close to $23 billion. The average buying price is approximately $42,692 per Bitcoin. This aggressive accumulation strategy has led to MicroStrategy's Bitcoin portfolio surpassing $20 billion, achieving over 100% ROI. The company plans to raise an additional $42 billion over the next 3 years to continue acquiring Bitcoin. This strategy aims to strengthen MicroStrategy's leadership in the global crypto market.", - data: [ - 15, 5, 3, 2, 3, 4, 13, 3, 11, 0, 2, 4, 4, 3, 0, 5, 1, 7, 4, 0, 0, 3, 0, 7, 11, 5, 10, 5, 3, - 0, 7, 3, 55, 19, 3, 5, 3, 3, 8, 5, 4, 2, 13, 12, 6, 4, 3, 1, 2, 4, 1, 3, 2, 1, 10, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,gamefi,web3', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- Web3 gaming and its emergence on platforms like Telegram\n- New game launches and updates, such as Crystal Fall on the Epic Games Store\n- Personal gaming experiences and memories, like old gamertags and clan affiliations\n- Gaming community detective work and revelations, such as uncovering past CS 1.6 LAN event participation\n- Excitement and anticipation for upcoming games, like Dragon Defense\n- Speculation and discussion about potential collaborations and showcases in the gaming industry', - data: [ - 1, 3, 6, 2, 0, 0, 3, 3, 2, 7, 3, 2, 0, 2, 1, 3, 1, 6, 3, 10, 47, 11, 2, 3, 4, 9, 10, 1, 7, - 2, 5, 3, 1, 2, 4, 1, 1, 19, 6, 5, 4, 3, 2, 1, 4, 1, 2, 4, 4, 0, 2, 6, 4, 2, 6, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,digital,collection', - description: - 'The key topics discussed in the messages from twitter are art, crypto art, NFTs, traditional art, artist handbook, buying and selling art, international shipping costs, multidisciplinary artist Benjamin Shine, NFT art exhibition in China, metaverse, and crypto community engagement with art. The messages also touch on the themes of creativity, societal decay, and the intersection of art and technology.', - data: [ - 1, 0, 51, 3, 0, 0, 1, 3, 5, 3, 2, 6, 3, 9, 0, 5, 4, 0, 7, 1, 6, 3, 5, 2, 1, 3, 2, 3, 4, 3, - 11, 4, 4, 2, 2, 6, 6, 3, 5, 2, 3, 5, 6, 8, 4, 3, 1, 3, 6, 4, 1, 4, 1, 0, 12, - ], - }, - { - label: 'BTC ATH', - topics: 'alltime,high,highs,time,hits', - description: - 'The key topics currently discussed in the crypto industry on Twitter are:\n- Bitcoin hitting new all-time highs, with prices reaching $90,000 and beyond\n- Speculation on when Bitcoin will reach $100,000\n- Predictions from VanEck that Bitcoin could reach $180,000 in this cycle\n- Discussion on whether the current trend of new all-time highs for Bitcoin will continue\n- Ethereum also surging past $3,100 with significant gains\n- Liquidations in the market totaling $349 million\n- Excitement and optimism about the future of cryptocurrency and blockchain technology\n\nOverall, the sentiment on Twitter regarding the crypto industry is positive, with many users celebrating the success of Bitcoin and other cryptocurrencies.', - data: [ - 3, 0, 0, 7, 28, 27, 2, 5, 1, 6, 3, 3, 2, 0, 0, 0, 1, 2, 4, 1, 0, 1, 0, 8, 50, 1, 0, 4, 2, 1, - 2, 1, 0, 9, 13, 2, 0, 2, 2, 10, 2, 1, 1, 4, 3, 1, 4, 0, 9, 5, 1, 1, 2, 0, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,renaissance,protocols,aave,technologies', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. DeFi protocols and their performance, with mentions of Aave, YFI, and DeFi dominance in the market.\n2. The impact of political events, such as Trump winning and Gensler's appointment, on the DeFi sector.\n3. The potential for growth and innovation in DeFi, with discussions on new revenue streams and user numbers increasing.\n4. Challenges to institutional adoption of DeFi, including the need for compliance and interoperability solutions.\n5. Excitement around new developments in DeFi, such as user-owned privacy compliance stacks and fixed-rate leveraged yield farming.\n6. Speculation on the future of DeFi tokens and their utility beyond governance votes.\nOverall, the sentiment seems positive towards the future of DeFi, with a focus on innovation, growth, and potential opportunities for users and investors.", - data: [ - 2, 3, 3, 5, 1, 1, 1, 6, 4, 4, 3, 2, 3, 15, 1, 6, 2, 6, 2, 3, 3, 5, 7, 2, 6, 3, 4, 10, 3, 3, - 4, 5, 2, 3, 5, 6, 1, 5, 5, 4, 7, 4, 1, 3, 3, 4, 4, 3, 2, 3, 7, 2, 2, 1, 3, - ], - }, - { - label: 'APE', - topics: 'apechain,ape,nft,nfts,fun', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- ApeChain and NFTs: There is a lot of excitement and discussion around ApeChain, with users mentioning buying NFTs on the platform and supporting artists who are minting their work on ApeChain. Bored Ape Yacht Club ($BAYC) and ApeCoin are also mentioned in relation to ApeChain.\n- Organic growth and community support: Users are discussing the organic growth of ApeChain and how the community is supporting each other, with mentions of holding onto NFTs and not selling them for profit.\n- Future potential and movement: There is talk about the potential for ApeChain to become a major player in the NFT market, with users predicting a movement where hodlers from different collections come together to support ApeChain.\n- Early NFT bull market: Some users are pointing out that the recent movement in NFTs, particularly on ApeChain, is a signal of an early NFT bull market, with more people getting involved in the space.\n- Support for artists and new collections: Users are showing support for artists minting their work on ApeChain, with mentions of new collections like LINES by @MutagenSamurai and the diversity of artwork being created on the platform.', - data: [ - 3, 33, 5, 0, 0, 0, 6, 5, 5, 6, 3, 2, 0, 3, 0, 3, 1, 1, 2, 6, 3, 3, 5, 2, 3, 1, 3, 2, 2, 4, - 5, 0, 10, 5, 6, 6, 4, 2, 4, 3, 3, 4, 3, 1, 5, 4, 2, 3, 3, 5, 0, 1, 2, 4, 1, - ], - }, - { - label: 'Idea of the United States creating a Strategic Bitcoin Reserve', - topics: 'strategic,reserve,sbr,countries,states', - description: - 'The key topic being discussed on Twitter is the idea of the United States creating a Strategic Bitcoin Reserve. Many users are debating whether the US should be the first to adopt Bitcoin in this way or if they should not do it at all. Some believe that having a Strategic Bitcoin Reserve would allow the US to flourish in the future and potentially lead to other countries following suit. There are also mentions of other nation states potentially front running the US in creating such a reserve. The potential impact of a Strategic Bitcoin Reserve on the price of Bitcoin is also being discussed, with some predicting that it could reach $500,000 or even $1 million. Additionally, there are mentions of cabinet picks supporting the idea, multiple countries buying Bitcoin, and states considering introducing legislation related to a Strategic Bitcoin Reserve. Overall, the topic of a Strategic Bitcoin Reserve is generating a lot of interest and speculation on Twitter.', - data: [ - 3, 3, 0, 1, 2, 13, 1, 2, 3, 3, 2, 6, 2, 4, 0, 0, 2, 2, 1, 2, 3, 2, 10, 4, 4, 2, 3, 1, 0, 4, - 0, 6, 0, 7, 2, 4, 0, 6, 3, 0, 5, 8, 6, 1, 2, 32, 2, 0, 3, 1, 1, 0, 2, 1, 0, - ], - }, - { - label: 'BTC has surpassed Silver in market cap', - topics: 'silver,gold,cap,8th,flipped', - description: - "As of today, #Bitcoin has surpassed Silver in market cap, making it the 8th most valuable asset in the world. Many in the crypto community are excited about this milestone and are now setting their sights on overtaking Gold next. There is a strong belief that Bitcoin's value will continue to rise, potentially even reaching the second spot in terms of market cap by the end of next year. Additionally, there is discussion about the potential for Ethereum to reach a trillion dollar market cap, drawing comparisons to successful tech companies like Apple, Amazon, and Tesla. Overall, the sentiment in the crypto community is optimistic and bullish on the future of Bitcoin and other cryptocurrencies.", - data: [ - 3, 0, 2, 11, 18, 13, 9, 2, 2, 1, 1, 0, 1, 1, 0, 2, 1, 0, 11, 0, 1, 9, 3, 1, 0, 0, 2, 1, 0, - 3, 3, 2, 2, 2, 2, 12, 1, 0, 1, 2, 3, 0, 1, 8, 5, 1, 17, 3, 0, 1, 0, 2, 1, 2, 2, - ], - }, - { - label: 'Layer 2', - topics: 'l2,ethereum,ens,layer,layer2', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Adoption of ERC-7683 standard for crosschain intents by Arbitrum and OffchainLabs\n2. Balancer v3 coming soon with improved UI\n3. Ethereum's \"Beam Chain\" roadmap unveiled at Devcon 7\n4. Evolution of Ethereum with based rollups and L2 abstraction\n5. Security risks and incident response preparation in the Ethereum community\n6. Partnership with Entangle for sustainable tech mission\n7. Unifying Ethereum needs for better wallet UX, account abstraction, and speed\n8. Luban's innovative product Taiyi addressing Ethereum's block times and composability issues\n9. Lumina, DIA's native L2 rollup, changing the oracle game in Web3\n10. Consensys launching Linea Association to support decentralization of Layer-2 zkEVM technology\n11. Vitalik Buterin's address on Ethereum's journey and the role of Layer 2 solutions\n12. Unifying Ethereum through intents and ERC-7683 standard.", - data: [ - 3, 5, 1, 3, 0, 0, 1, 2, 1, 2, 4, 5, 1, 4, 1, 5, 13, 3, 1, 6, 2, 4, 3, 2, 2, 3, 4, 9, 12, 0, - 1, 1, 0, 2, 1, 8, 0, 4, 4, 2, 1, 5, 3, 5, 0, 1, 0, 2, 3, 1, 3, 11, 2, 1, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,collection,reveal', - description: - 'Based on the messages from Twitter, it is evident that the NFT (Non-Fungible Token) market is currently a hot topic of discussion within the crypto industry community. The messages highlight the resurgence of interest in NFTs, with mentions of popular NFT projects like CryptoPunks and Forever Punks. There is also a mention of the potential for new Memecoin NFTs to bring liquidity to the market.\n\nAdditionally, the messages touch upon the importance of strong and consistent teams in the NFT space, as well as the evolution of technology in addressing liquidity issues. The analysis also mentions the profitability of NFT trades in October and the potential for promising opportunities in the NFT market.\n\nOverall, the messages suggest that NFTs are experiencing a comeback, with a focus on established projects like CryptoPunks and emerging opportunities in the market.', - data: [ - 1, 0, 3, 1, 0, 0, 0, 3, 5, 9, 6, 1, 7, 5, 2, 4, 1, 1, 4, 4, 2, 3, 2, 2, 4, 1, 1, 4, 3, 3, 1, - 6, 2, 0, 15, 1, 5, 1, 4, 4, 6, 1, 8, 3, 1, 2, 1, 0, 6, 3, 0, 1, 4, 3, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-46.json b/priv/repo/major_topics_seed/data-46.json deleted file mode 100644 index 63665a85f5..0000000000 --- a/priv/repo/major_topics_seed/data-46.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["14.11.24","15.11.24","15.11.24","15.11.24","15.11.24","15.11.24","15.11.24","15.11.24","16.11.24","16.11.24","16.11.24","16.11.24","16.11.24","16.11.24","16.11.24","16.11.24","17.11.24","17.11.24","17.11.24","17.11.24","17.11.24","17.11.24","17.11.24","17.11.24","18.11.24","18.11.24","18.11.24","18.11.24","18.11.24","18.11.24","18.11.24","18.11.24","19.11.24","19.11.24","19.11.24","19.11.24","19.11.24","19.11.24","19.11.24","19.11.24","20.11.24","20.11.24","20.11.24","20.11.24","20.11.24","20.11.24","20.11.24","20.11.24","21.11.24","21.11.24","21.11.24","21.11.24","21.11.24","21.11.24","21.11.24"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,freedom,currency","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bullish sentiment towards Bitcoin\n- Real custody insurance coming to Bitcoin\n- Learning about the future of money through Bitcoin\n- Bitcoin as a form of concentrated energy\n- Criticism towards individuals who did not buy Bitcoin early\n- Importance of on-boarding shops to accept Bitcoin\n- Criticism towards individuals promoting altcoins over Bitcoin\n- Concerns about wealth redistribution through Bitcoin ownership\n- Bitcoin adoption and fixing things\n- Personal anecdotes about holding onto Bitcoin\n- Regret over selling Bitcoin\n- Criticism towards individuals promoting altcoins over Bitcoin\n\nOverall, the messages reflect a mix of positive sentiment towards Bitcoin, criticism towards those who did not invest early, and discussions about the future impact of Bitcoin on the financial industry.","data":[25,11,26,38,180,145,17,25,66,27,40,29,30,20,20,37,28,38,42,36,27,26,41,33,26,36,31,50,32,38,33,21,17,43,28,32,51,28,32,33,43,50,46,35,28,34,44,58,36,25,22,33,31,34,52]},{"label":"AI","topics":"ai,agents,agent,data,goat","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n- The dominance of Bitcoin in AI trade\n- Venture funds led by AI\n- The potential impact of AI on memecoins and crypto infrastructure coins\n- The rise of AI agents and their impact on various industries\n- The use of AI in academia and enterprise, particularly in GPU infrastructure for AI research\n- The need for stricter oversight to address AI vulnerabilities in finance\n- The importance of strong leadership in projects like ZeroBro and AI16z\n- The introduction of Kai Finance protocol on top of Aura for enhanced rewards\n\nOverall, the discussions on Twitter suggest a mix of excitement, skepticism, and caution regarding the role of AI in the crypto industry and its potential impact on various aspects of the market.","data":[78,182,38,27,1,1,9,18,16,15,22,30,13,31,17,32,12,29,16,22,28,26,29,14,10,24,32,24,10,26,17,23,21,29,16,28,22,11,22,20,27,25,29,27,24,7,30,40,24,27,19,23,17,21,22]},{"label":"SOL","topics":"sol,solana,etf,eth,solanas","description":"The key topics currently being discussed on Twitter in relation to the crypto industry and Solana include:\n- The potential for Solana to flip Ethereum in terms of popularity and usage\n- The advantages of Solana over Ethereum in terms of cost and speed\n- The increasing search volume for Solana compared to Ethereum\n- The dominance of Solana in token launches, with a high number of new tokens being launched on the platform\n- The need for diversification in the Solana ecosystem beyond memecoins\n- The potential for renewed interest in Ethereum memes\n- The record highs in transfer volume and active addresses for Solana\n- The challenges of sustaining growth in the Solana ecosystem\n- The comparison between Solana and other cryptocurrencies like Cardano and Dogecoin\n- The potential for Solana to evolve and attract more mainstream interest.","data":[17,15,11,24,4,1,26,25,16,25,19,16,11,14,11,13,26,14,16,10,12,14,15,15,16,13,16,17,11,16,15,13,26,15,21,12,17,13,18,23,9,16,14,6,78,22,29,10,15,18,8,20,10,13,8]},{"label":"DOGE","topics":"doge,dogecoin,department,efficiency,government","description":"The key topics currently discussed in the crypto industry on Twitter include the surge in Dogecoin price, with the cryptocurrency reaching its 2021 highs and potentially gearing up for even bigger gains. There is also mention of Dogecoin's price leap as Bitcoin nears its all-time high, as well as the creation of a federal agency called #DOGE in the US, which has boosted the memecoin to yearly highs. Additionally, there is discussion about Pennsylvania considering investing 10% of its reserves in Bitcoin and the surging popularity of Solana DApps. Retail investors are also highlighted for their returns since the election, with Dogecoin leading the way with a 141% increase. The overall sentiment seems positive towards Dogecoin and its potential for growth in the near future.","data":[15,9,10,12,1,0,12,13,11,7,13,12,11,28,218,19,7,14,14,13,10,14,9,13,11,10,11,20,10,16,8,9,7,18,6,6,11,12,9,11,14,8,10,14,4,12,10,7,21,5,15,1,15,20,10]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The messages from Twitter are discussing the rise of meme coins in the crypto industry, with mentions of various meme coins such as $NINJA, $KIRA, $WEN, $FRUG, and others. There is excitement around meme coins taking over the market, with a focus on small cap runes and the potential for significant growth. The impact of influential figures like Elon Musk on meme coins is also highlighted. Additionally, there is a mention of a new product called Zap Meme Maker that allows users to turn memes into tradable assets on $BASE. Overall, the sentiment is positive towards meme coins and their potential for growth in the crypto industry.","data":[3,5,13,12,0,6,1,4,17,6,13,8,11,6,9,12,5,9,15,15,13,24,12,11,13,17,7,15,13,25,12,119,63,16,13,16,20,12,9,12,13,13,8,20,9,10,13,15,20,20,20,8,16,12,11]},{"label":"Potential for BTC to reach $100,000","topics":"100k,100000,hit,bitcoin,hits","description":"The key topic currently being discussed on Twitter is the potential for Bitcoin to reach $100,000. There is excitement and anticipation surrounding this milestone, with many users speculating on when it will happen and what the implications will be. Some are even predicting that Bitcoin could eventually reach $1 million. Overall, the sentiment is bullish and optimistic about the future of Bitcoin and its potential for significant growth.","data":[3,5,11,5,48,35,14,9,2,4,7,10,2,7,5,13,1,7,11,6,4,12,6,30,34,6,5,6,7,5,6,2,5,5,3,7,6,9,8,13,8,8,2,4,16,5,12,4,18,9,2,3,4,16,3]},{"label":"ETF Flows","topics":"etf,etfs,options,blackrock,ibit","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n1. ETF buyers in scramble mode, trying to get their positions in place before the weekend\n2. BlackRock's significant buying activity in Bitcoin ETFs\n3. Massive Bitcoin ETF inflows\n4. Ethereum ETFs recording highest weekly trading volume since launch\n5. SEC delaying decision on Franklin Crypto Index ETF\n6. BlackRock and Fidelity's spot Bitcoin ETFs recording high trading volume\n7. BlackRock spot ETFs buying significant amounts of ETH and BTC\n8. Digital asset products seeing inflows reaching $2.2 billion last week\n9. Bitcoin smashing the $94K milestone after BlackRock BTC options ETF debut trading\n10. Crypto markets surging as spot Bitcoin ETF options get the green light\n11. BlackRock's iShares Bitcoin ETF options officially live on Nasdaq\n12. Institutional capital averaging up on BlackRock spot Bitcoin ETF\n13. AVWAP analysis showing positive returns for BlackRock spot Bitcoin ETF holders\nOverall, the discussion on Twitter indicates a high level of interest and activity in the crypto industry, particularly in relation to ETFs and institutional investment.","data":[4,1,7,6,42,4,39,10,11,4,4,4,9,2,6,1,60,9,10,2,6,7,6,8,19,13,8,7,3,4,3,5,1,9,9,27,0,3,1,7,12,0,10,3,38,3,4,1,5,16,0,6,3,6,8]},{"label":"Art","topics":"art,artists,artist,piece,superrare","description":"The messages from twitter are mainly discussing various aspects of art, including creating, viewing, talking about, and collecting art. There is also mention of specific art pieces, auctions, and platforms like SuperRare and Manifoldxyz. Additionally, there is a mention of digital art values and the concept of minting art in a new contract. The messages also touch on the idea of livestreaming discussions about art and sharing artwork in real-time. Finally, there is a promotion for earning rewards in $RARE for buying art on SuperRare until December 1st.","data":[6,0,58,11,0,0,2,3,6,5,13,13,5,6,6,10,1,5,7,7,5,7,5,9,6,5,13,3,3,8,12,9,2,4,3,6,16,7,4,4,9,3,2,3,3,7,7,8,2,10,2,0,8,5,5]},{"label":"MSTR","topics":"mstr,microstrategy,premium,saylor,stock","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. MicroStrategy's purchase of bitcoin leading to a surge in trading volumes for MSTR shares.\n2. The relationship between buying MSTR stock and being dependent on Saylor and MicroStrategy, versus buying bitcoin and being dependent on the Bitcoin Network.\n3. Analysis of the put-call IV spread on MSTR and the fear of upside reflected in the skew towards calls.\n4. The impact of Bitcoin on traditional investment portfolios like the 60/40 portfolio.\n5. Speculation on the future market cap of MicroStrategy and its implications.\n6. The milestone of MicroStrategy surpassing a market cap of $100 billion and its significance in the mainstream market.\n7. Predictions about the stability of MSTR and the absence of a \"black swan\" moment.\n8. Differentiating between Bitcoin as a speculative asset and MSTR as a stock.\n9. Analysis of factors affecting the NAV multiple returns for MSTR.\n10. Comparisons between MSTR and GBTC, and predictions about the premium evaporating for MSTR.\n11. Speculation on the potential discount to spot for MSTR compared to bitcoin premium.\n12. Discussion on MSTR being one of the most traded stocks globally and the implications for BTC yield and NAV evaluation.\n\nOverall, the discussions on Twitter revolve around the relationship between MicroStrategy, bitcoin, MSTR shares, and the broader crypto market landscape.","data":[4,2,8,4,5,3,6,5,23,6,9,15,2,6,1,2,2,8,5,3,3,3,10,6,3,6,3,6,3,3,1,11,7,26,2,10,10,4,7,8,3,3,11,8,2,7,12,7,9,14,2,8,1,8,5]},{"label":"XRP","topics":"xrp,ripple,sec,cryptocurrency,altcoins","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin reaching almost $100k\n2. Roblox ($RBLX) facing undisclosed probes by SEC Enforcement and the FTC\n3. Altcoins like ADA, XRP, and LTC outperforming ETH\n4. Ripple's operationally ready stablecoin, RLUSD, being unveiled\n5. XRP potentially hitting $8 after reclaiming a 3-year high\n6. XRP's surge of 67% in a week, with optimism for crypto-friendly regulations\n7. Expert claims of 8,387% growth potential for XRP\n8. XRP hitting a 3-year high due to SEC lawsuits and regulatory optimism\n9. XRP's market cap exceeding $50 billion with a price jump of over 18%\n10. A Satoshi-era Bitcoin wallet moving 2,000 BTC worth $178M\n\nOverall, the sentiment in the crypto community seems to be positive, with a focus on XRP's performance, regulatory developments, and the overall market trends.","data":[8,3,6,5,1,2,6,9,5,4,2,5,8,5,5,8,5,6,3,5,6,7,2,9,11,2,2,5,4,4,4,5,0,6,2,7,6,8,23,9,7,21,6,4,5,4,28,3,6,10,3,11,4,6,4]},{"label":"ETH","topics":"eth,ethereum,4000,holders,break","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Ethereum ($ETH) price predictions and potential for reaching $5k or even $10k\n- Speculation on ETH launching a stable-coin\n- Bullish sentiment towards ETH despite recent pullback\n- Institutional interest in Ether ETFs\n- Discussion on Ethereum's metrics and potential for growth\n- Announcement of ETH being the default asset for GlueNet\n- Fear and Greed Index signaling extreme greed in the market\n\nOverall, the sentiment towards Ethereum in the crypto community seems positive, with expectations of price growth and institutional interest driving optimism.","data":[6,4,5,3,0,2,1,3,6,6,8,1,5,6,2,7,92,10,11,7,3,6,1,6,10,2,1,3,5,10,6,1,2,4,2,1,6,7,10,5,2,3,3,5,4,2,6,2,10,4,5,5,1,5,2]},{"label":"Mike Tyson","topics":"mike,paul,fight,bet,betting","description":"The key topics currently being discussed on Twitter in relation to the crypto industry include:\n1. Mike Tyson's involvement in the crypto industry and his upcoming fight against Jake Paul.\n2. High-stakes gambling on Polymarket related to Mike Tyson's ventures.\n3. The intersection of crypto and entertainment, such as using Dogecoin to purchase a Netflix card.\n4. Reflections on legendary sports figures like Andre Agassi and Rafael Nadal.\n5. Speculation and excitement surrounding upcoming boxing matches and potential outcomes.\n6. Critiques of Jake Paul and his motivations in the boxing world.\n7. The impact of social media and influencers on the sports and crypto industries.","data":[4,1,6,28,3,0,7,1,4,2,5,4,2,6,0,5,1,3,7,6,6,4,7,3,4,4,7,6,8,5,10,3,3,3,1,4,8,12,1,3,9,7,2,3,4,5,3,3,8,5,17,1,5,10,10]},{"label":"PEPE","topics":"pepe,shib,robinhood,chinese,cap","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- $PEPE reaching new highs with high volume and liquidity\n- Speculation on the potential growth of $APU compared to $PEPE\n- Community excitement and anticipation for positive developments\n- Price predictions and analysis for $PEPE and other cryptocurrencies like $DOGE and $SHIB\n- Comparisons between $PEPE and other cryptocurrencies like $SHIB\n- Technical analysis and trading strategies for $PEPE\n- Memes and cultural references related to frogs and $PEPE\n- Cautionary tales and risks associated with investing in cryptocurrencies\n\nOverall, the sentiment seems to be positive and optimistic about the potential growth and opportunities in the crypto market, particularly for $PEPE.","data":[4,1,4,6,0,1,0,2,6,4,7,5,8,3,9,4,0,1,7,3,3,4,2,2,3,3,5,3,5,6,4,6,5,1,1,4,63,5,4,9,4,3,4,6,2,2,3,4,6,2,2,3,8,4,0]},{"label":"CHILLGUY","topics":"chill,chillguy,guy,meme,tiktok","description":"The key topic discussed in the messages from Twitter is the cryptocurrency called Chill Guy ($CHILLGUY). The messages mention the rapid increase in market capitalization of Chill Guy, the meme status of the coin, and the excitement surrounding its potential for further growth. Users are discussing buying and holding Chill Guy, as well as its potential to reach billions in market capitalization. The messages also mention the involvement of prominent figures like Elon Musk and President Nayib Bukele in the Chill Guy phenomenon. Overall, the sentiment towards Chill Guy in the Twitter community seems positive and optimistic about its future prospects.","data":[5,6,5,3,2,1,3,0,5,83,2,7,1,3,1,4,2,1,2,3,3,3,11,2,5,0,4,5,6,2,5,1,5,1,5,1,7,3,1,4,5,4,6,4,4,0,3,4,3,5,3,1,2,2,3]},{"label":"DOG","topics":"dog,runes,tier,dogs,listing","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the rise of meme coins such as $DOG and $GIZMO, the potential for these coins to lead the meme coin season, and the comparison of $DOG to Bitcoin. There is also discussion about the impact of influencers like Mr. Beast promoting meme coins, the success of $TITAN as a patriotic American meme coin, and the overall bullish sentiment in the market with predictions of multiple meme coins reaching market caps over $1 billion by the 1 year anniversary of Runes in April. Additionally, there is a focus on the interconnectedness of different meme coins and how they can influence each other's prices.","data":[3,4,4,7,1,1,4,3,4,0,1,2,3,1,70,0,1,4,5,3,6,0,2,1,4,4,0,3,5,5,3,3,0,2,1,3,5,3,3,5,0,10,1,3,4,4,3,2,5,4,1,5,7,4,4]},{"label":"GameFi","topics":"gaming,game,games,web3,players","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Gaming in Web3: Discussions about the intersection of gaming and cryptocurrency, with mentions of GameShark on PS1, Fortnite V-bucks, and the launch of various crypto gaming projects like UMT and GAM3Awards.\n2. Web3 Projects: Emphasizing the artistry and engagement of creating immersive experiences in Web3, likening crypto traders to gamers and highlighting the launch of new projects like Pentagon Games and PlayZap Games.\n3. Tezos in Gaming: Exploring the use of Tezos in game development, with discussions about the tag #GGTZ (Good Game Tezos) and the involvement of developers in building games on the Tezos platform.\n4. NFTs in Gaming: Mentioning the involvement of NFTs in gaming, with examples like the Chief Player Officer @playsolana discussing the PSG1 project and the release of Arcade One NFTs on Rarible.\n5. Crypto and Gaming Overlap: Addressing the overlap between the crypto and gaming industries, with mentions of how making money can be seen as a game for dopamine-driven individuals and the potential for earning cryptocurrency through gaming platforms like BitRivals.","data":[2,1,3,3,0,0,4,3,3,5,2,1,6,0,3,4,3,5,5,21,35,6,6,0,1,2,8,5,9,4,5,3,2,2,4,4,3,15,1,2,3,1,2,1,2,3,5,2,4,2,1,2,1,7,4]},{"label":"NFT","topics":"nft,nfts,collection,art,floor","description":"The messages from Twitter discuss various topics related to NFTs in the crypto industry. Some key points mentioned include the popularity of Ethereum NFTs, the issue of copying and pasting NFTs, the value of Cryptopunks in the current market, the potential of NFTs in gaming and retail experiences, and the allocation of $ELYS for NFT holders. Additionally, there is mention of a new NFT project immortalizing the legendary GTA San Andreas game and the distribution of Building NFTs during a Christmas event. Overall, the messages highlight the growing interest and potential opportunities within the NFT space.","data":[5,1,4,2,0,0,1,4,2,6,3,1,14,2,4,1,3,6,3,5,1,5,5,5,2,4,4,6,8,3,3,3,6,3,9,6,6,0,5,7,4,5,2,3,2,2,3,1,1,0,7,2,2,2,2]},{"label":"Gary Gensler","topics":"gensler,gary,chair,sec,january","description":"The key topic discussed in the messages from twitter is the resignation of Gary Gensler as the SEC Chair. The messages mention his potential resignation, hints at his departure, and reactions from the crypto industry and other individuals. There are also discussions about the impact of his resignation on the regulatory landscape of the cryptocurrency market and calls for his removal by Coinbase's Chief Legal Officer. Additionally, there are criticisms of Gensler's regulatory approach and actions during his time as SEC Chair.","data":[4,9,5,1,0,0,31,5,3,2,5,0,5,2,0,2,1,1,5,1,25,5,3,3,0,0,2,1,1,4,1,0,3,1,3,4,0,2,0,0,4,3,4,1,2,8,0,3,4,1,3,3,1,4,2]},{"label":"APE","topics":"ape,apechain,bored,mint,wallet","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding ApeCoin, MintPadCo, ApeChain, Mutant Zillas, Bored Apes, and various NFT collections. The community seems to be actively minting and trading these digital assets, with a focus on unique and rare pieces. There is also mention of the utility and value of certain items, as well as comparisons between different types of apes and their respective prices. Overall, the sentiment appears to be positive and enthusiastic, with a strong sense of community and support for the ape-themed NFT projects.","data":[0,21,6,3,0,0,8,6,2,2,1,1,3,4,0,2,1,2,4,5,2,2,2,3,4,1,0,0,1,6,2,0,8,10,7,3,3,1,4,1,1,2,1,10,0,7,6,2,0,6,10,1,1,3,1]},{"label":"DeFi","topics":"defi,decentralized,ecosystem,liquidity,future","description":"The key topics discussed in the messages from twitter related to the crypto industry are DeFi (Decentralized Finance), Thala recovering $25 million following a successful hacker negotiation, partnership between KODA, Orderly Network, and Sensi_Defi on BNBCHAIN, DIA Lumina's standout features in the oracle stack, the importance of innovation, consumer protection, and financial inclusion in DeFi, AirDAO's focus on user experience and transparency, FIP.11 and SIP.05 improving Flare's enshrined oracles, the significance of the decentralized aspect of DeFi, Staking as a DeFi feature for earning attractive yields, Veda's mission in building the DeFi Earn Network, FLR's support by various onramp providers, and the collaboration between Derive and Bybit Wallet in a giveaway promotion.","data":[5,1,4,3,0,1,2,5,2,1,0,4,2,11,2,2,6,0,3,6,2,2,0,1,2,4,4,5,3,1,2,0,2,6,3,6,3,3,4,4,7,1,4,5,1,8,1,3,2,7,7,2,3,0,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-46.ts b/priv/repo/major_topics_seed/data-46.ts deleted file mode 100644 index 5d7c86b604..0000000000 --- a/priv/repo/major_topics_seed/data-46.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '14.11.24', - '15.11.24', - '15.11.24', - '15.11.24', - '15.11.24', - '15.11.24', - '15.11.24', - '15.11.24', - '16.11.24', - '16.11.24', - '16.11.24', - '16.11.24', - '16.11.24', - '16.11.24', - '16.11.24', - '16.11.24', - '17.11.24', - '17.11.24', - '17.11.24', - '17.11.24', - '17.11.24', - '17.11.24', - '17.11.24', - '17.11.24', - '18.11.24', - '18.11.24', - '18.11.24', - '18.11.24', - '18.11.24', - '18.11.24', - '18.11.24', - '18.11.24', - '19.11.24', - '19.11.24', - '19.11.24', - '19.11.24', - '19.11.24', - '19.11.24', - '19.11.24', - '19.11.24', - '20.11.24', - '20.11.24', - '20.11.24', - '20.11.24', - '20.11.24', - '20.11.24', - '20.11.24', - '20.11.24', - '21.11.24', - '21.11.24', - '21.11.24', - '21.11.24', - '21.11.24', - '21.11.24', - '21.11.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,freedom,currency', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Bullish sentiment towards Bitcoin\n- Real custody insurance coming to Bitcoin\n- Learning about the future of money through Bitcoin\n- Bitcoin as a form of concentrated energy\n- Criticism towards individuals who did not buy Bitcoin early\n- Importance of on-boarding shops to accept Bitcoin\n- Criticism towards individuals promoting altcoins over Bitcoin\n- Concerns about wealth redistribution through Bitcoin ownership\n- Bitcoin adoption and fixing things\n- Personal anecdotes about holding onto Bitcoin\n- Regret over selling Bitcoin\n- Criticism towards individuals promoting altcoins over Bitcoin\n\nOverall, the messages reflect a mix of positive sentiment towards Bitcoin, criticism towards those who did not invest early, and discussions about the future impact of Bitcoin on the financial industry.', - data: [ - 25, 11, 26, 38, 180, 145, 17, 25, 66, 27, 40, 29, 30, 20, 20, 37, 28, 38, 42, 36, 27, 26, - 41, 33, 26, 36, 31, 50, 32, 38, 33, 21, 17, 43, 28, 32, 51, 28, 32, 33, 43, 50, 46, 35, 28, - 34, 44, 58, 36, 25, 22, 33, 31, 34, 52, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,data,goat', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n- The dominance of Bitcoin in AI trade\n- Venture funds led by AI\n- The potential impact of AI on memecoins and crypto infrastructure coins\n- The rise of AI agents and their impact on various industries\n- The use of AI in academia and enterprise, particularly in GPU infrastructure for AI research\n- The need for stricter oversight to address AI vulnerabilities in finance\n- The importance of strong leadership in projects like ZeroBro and AI16z\n- The introduction of Kai Finance protocol on top of Aura for enhanced rewards\n\nOverall, the discussions on Twitter suggest a mix of excitement, skepticism, and caution regarding the role of AI in the crypto industry and its potential impact on various aspects of the market.', - data: [ - 78, 182, 38, 27, 1, 1, 9, 18, 16, 15, 22, 30, 13, 31, 17, 32, 12, 29, 16, 22, 28, 26, 29, - 14, 10, 24, 32, 24, 10, 26, 17, 23, 21, 29, 16, 28, 22, 11, 22, 20, 27, 25, 29, 27, 24, 7, - 30, 40, 24, 27, 19, 23, 17, 21, 22, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,etf,eth,solanas', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry and Solana include:\n- The potential for Solana to flip Ethereum in terms of popularity and usage\n- The advantages of Solana over Ethereum in terms of cost and speed\n- The increasing search volume for Solana compared to Ethereum\n- The dominance of Solana in token launches, with a high number of new tokens being launched on the platform\n- The need for diversification in the Solana ecosystem beyond memecoins\n- The potential for renewed interest in Ethereum memes\n- The record highs in transfer volume and active addresses for Solana\n- The challenges of sustaining growth in the Solana ecosystem\n- The comparison between Solana and other cryptocurrencies like Cardano and Dogecoin\n- The potential for Solana to evolve and attract more mainstream interest.', - data: [ - 17, 15, 11, 24, 4, 1, 26, 25, 16, 25, 19, 16, 11, 14, 11, 13, 26, 14, 16, 10, 12, 14, 15, - 15, 16, 13, 16, 17, 11, 16, 15, 13, 26, 15, 21, 12, 17, 13, 18, 23, 9, 16, 14, 6, 78, 22, - 29, 10, 15, 18, 8, 20, 10, 13, 8, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,department,efficiency,government', - description: - "The key topics currently discussed in the crypto industry on Twitter include the surge in Dogecoin price, with the cryptocurrency reaching its 2021 highs and potentially gearing up for even bigger gains. There is also mention of Dogecoin's price leap as Bitcoin nears its all-time high, as well as the creation of a federal agency called #DOGE in the US, which has boosted the memecoin to yearly highs. Additionally, there is discussion about Pennsylvania considering investing 10% of its reserves in Bitcoin and the surging popularity of Solana DApps. Retail investors are also highlighted for their returns since the election, with Dogecoin leading the way with a 141% increase. The overall sentiment seems positive towards Dogecoin and its potential for growth in the near future.", - data: [ - 15, 9, 10, 12, 1, 0, 12, 13, 11, 7, 13, 12, 11, 28, 218, 19, 7, 14, 14, 13, 10, 14, 9, 13, - 11, 10, 11, 20, 10, 16, 8, 9, 7, 18, 6, 6, 11, 12, 9, 11, 14, 8, 10, 14, 4, 12, 10, 7, 21, - 5, 15, 1, 15, 20, 10, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The messages from Twitter are discussing the rise of meme coins in the crypto industry, with mentions of various meme coins such as $NINJA, $KIRA, $WEN, $FRUG, and others. There is excitement around meme coins taking over the market, with a focus on small cap runes and the potential for significant growth. The impact of influential figures like Elon Musk on meme coins is also highlighted. Additionally, there is a mention of a new product called Zap Meme Maker that allows users to turn memes into tradable assets on $BASE. Overall, the sentiment is positive towards meme coins and their potential for growth in the crypto industry.', - data: [ - 3, 5, 13, 12, 0, 6, 1, 4, 17, 6, 13, 8, 11, 6, 9, 12, 5, 9, 15, 15, 13, 24, 12, 11, 13, 17, - 7, 15, 13, 25, 12, 119, 63, 16, 13, 16, 20, 12, 9, 12, 13, 13, 8, 20, 9, 10, 13, 15, 20, 20, - 20, 8, 16, 12, 11, - ], - }, - { - label: 'Potential for BTC to reach $100,000', - topics: '100k,100000,hit,bitcoin,hits', - description: - 'The key topic currently being discussed on Twitter is the potential for Bitcoin to reach $100,000. There is excitement and anticipation surrounding this milestone, with many users speculating on when it will happen and what the implications will be. Some are even predicting that Bitcoin could eventually reach $1 million. Overall, the sentiment is bullish and optimistic about the future of Bitcoin and its potential for significant growth.', - data: [ - 3, 5, 11, 5, 48, 35, 14, 9, 2, 4, 7, 10, 2, 7, 5, 13, 1, 7, 11, 6, 4, 12, 6, 30, 34, 6, 5, - 6, 7, 5, 6, 2, 5, 5, 3, 7, 6, 9, 8, 13, 8, 8, 2, 4, 16, 5, 12, 4, 18, 9, 2, 3, 4, 16, 3, - ], - }, - { - label: 'ETF Flows', - topics: 'etf,etfs,options,blackrock,ibit', - description: - "The key topics currently being discussed on Twitter in the crypto industry include:\n1. ETF buyers in scramble mode, trying to get their positions in place before the weekend\n2. BlackRock's significant buying activity in Bitcoin ETFs\n3. Massive Bitcoin ETF inflows\n4. Ethereum ETFs recording highest weekly trading volume since launch\n5. SEC delaying decision on Franklin Crypto Index ETF\n6. BlackRock and Fidelity's spot Bitcoin ETFs recording high trading volume\n7. BlackRock spot ETFs buying significant amounts of ETH and BTC\n8. Digital asset products seeing inflows reaching $2.2 billion last week\n9. Bitcoin smashing the $94K milestone after BlackRock BTC options ETF debut trading\n10. Crypto markets surging as spot Bitcoin ETF options get the green light\n11. BlackRock's iShares Bitcoin ETF options officially live on Nasdaq\n12. Institutional capital averaging up on BlackRock spot Bitcoin ETF\n13. AVWAP analysis showing positive returns for BlackRock spot Bitcoin ETF holders\nOverall, the discussion on Twitter indicates a high level of interest and activity in the crypto industry, particularly in relation to ETFs and institutional investment.", - data: [ - 4, 1, 7, 6, 42, 4, 39, 10, 11, 4, 4, 4, 9, 2, 6, 1, 60, 9, 10, 2, 6, 7, 6, 8, 19, 13, 8, 7, - 3, 4, 3, 5, 1, 9, 9, 27, 0, 3, 1, 7, 12, 0, 10, 3, 38, 3, 4, 1, 5, 16, 0, 6, 3, 6, 8, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,superrare', - description: - 'The messages from twitter are mainly discussing various aspects of art, including creating, viewing, talking about, and collecting art. There is also mention of specific art pieces, auctions, and platforms like SuperRare and Manifoldxyz. Additionally, there is a mention of digital art values and the concept of minting art in a new contract. The messages also touch on the idea of livestreaming discussions about art and sharing artwork in real-time. Finally, there is a promotion for earning rewards in $RARE for buying art on SuperRare until December 1st.', - data: [ - 6, 0, 58, 11, 0, 0, 2, 3, 6, 5, 13, 13, 5, 6, 6, 10, 1, 5, 7, 7, 5, 7, 5, 9, 6, 5, 13, 3, 3, - 8, 12, 9, 2, 4, 3, 6, 16, 7, 4, 4, 9, 3, 2, 3, 3, 7, 7, 8, 2, 10, 2, 0, 8, 5, 5, - ], - }, - { - label: 'MSTR', - topics: 'mstr,microstrategy,premium,saylor,stock', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. MicroStrategy\'s purchase of bitcoin leading to a surge in trading volumes for MSTR shares.\n2. The relationship between buying MSTR stock and being dependent on Saylor and MicroStrategy, versus buying bitcoin and being dependent on the Bitcoin Network.\n3. Analysis of the put-call IV spread on MSTR and the fear of upside reflected in the skew towards calls.\n4. The impact of Bitcoin on traditional investment portfolios like the 60/40 portfolio.\n5. Speculation on the future market cap of MicroStrategy and its implications.\n6. The milestone of MicroStrategy surpassing a market cap of $100 billion and its significance in the mainstream market.\n7. Predictions about the stability of MSTR and the absence of a "black swan" moment.\n8. Differentiating between Bitcoin as a speculative asset and MSTR as a stock.\n9. Analysis of factors affecting the NAV multiple returns for MSTR.\n10. Comparisons between MSTR and GBTC, and predictions about the premium evaporating for MSTR.\n11. Speculation on the potential discount to spot for MSTR compared to bitcoin premium.\n12. Discussion on MSTR being one of the most traded stocks globally and the implications for BTC yield and NAV evaluation.\n\nOverall, the discussions on Twitter revolve around the relationship between MicroStrategy, bitcoin, MSTR shares, and the broader crypto market landscape.', - data: [ - 4, 2, 8, 4, 5, 3, 6, 5, 23, 6, 9, 15, 2, 6, 1, 2, 2, 8, 5, 3, 3, 3, 10, 6, 3, 6, 3, 6, 3, 3, - 1, 11, 7, 26, 2, 10, 10, 4, 7, 8, 3, 3, 11, 8, 2, 7, 12, 7, 9, 14, 2, 8, 1, 8, 5, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,cryptocurrency,altcoins', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin reaching almost $100k\n2. Roblox ($RBLX) facing undisclosed probes by SEC Enforcement and the FTC\n3. Altcoins like ADA, XRP, and LTC outperforming ETH\n4. Ripple's operationally ready stablecoin, RLUSD, being unveiled\n5. XRP potentially hitting $8 after reclaiming a 3-year high\n6. XRP's surge of 67% in a week, with optimism for crypto-friendly regulations\n7. Expert claims of 8,387% growth potential for XRP\n8. XRP hitting a 3-year high due to SEC lawsuits and regulatory optimism\n9. XRP's market cap exceeding $50 billion with a price jump of over 18%\n10. A Satoshi-era Bitcoin wallet moving 2,000 BTC worth $178M\n\nOverall, the sentiment in the crypto community seems to be positive, with a focus on XRP's performance, regulatory developments, and the overall market trends.", - data: [ - 8, 3, 6, 5, 1, 2, 6, 9, 5, 4, 2, 5, 8, 5, 5, 8, 5, 6, 3, 5, 6, 7, 2, 9, 11, 2, 2, 5, 4, 4, - 4, 5, 0, 6, 2, 7, 6, 8, 23, 9, 7, 21, 6, 4, 5, 4, 28, 3, 6, 10, 3, 11, 4, 6, 4, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,4000,holders,break', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Ethereum ($ETH) price predictions and potential for reaching $5k or even $10k\n- Speculation on ETH launching a stable-coin\n- Bullish sentiment towards ETH despite recent pullback\n- Institutional interest in Ether ETFs\n- Discussion on Ethereum's metrics and potential for growth\n- Announcement of ETH being the default asset for GlueNet\n- Fear and Greed Index signaling extreme greed in the market\n\nOverall, the sentiment towards Ethereum in the crypto community seems positive, with expectations of price growth and institutional interest driving optimism.", - data: [ - 6, 4, 5, 3, 0, 2, 1, 3, 6, 6, 8, 1, 5, 6, 2, 7, 92, 10, 11, 7, 3, 6, 1, 6, 10, 2, 1, 3, 5, - 10, 6, 1, 2, 4, 2, 1, 6, 7, 10, 5, 2, 3, 3, 5, 4, 2, 6, 2, 10, 4, 5, 5, 1, 5, 2, - ], - }, - { - label: 'Mike Tyson', - topics: 'mike,paul,fight,bet,betting', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry include:\n1. Mike Tyson's involvement in the crypto industry and his upcoming fight against Jake Paul.\n2. High-stakes gambling on Polymarket related to Mike Tyson's ventures.\n3. The intersection of crypto and entertainment, such as using Dogecoin to purchase a Netflix card.\n4. Reflections on legendary sports figures like Andre Agassi and Rafael Nadal.\n5. Speculation and excitement surrounding upcoming boxing matches and potential outcomes.\n6. Critiques of Jake Paul and his motivations in the boxing world.\n7. The impact of social media and influencers on the sports and crypto industries.", - data: [ - 4, 1, 6, 28, 3, 0, 7, 1, 4, 2, 5, 4, 2, 6, 0, 5, 1, 3, 7, 6, 6, 4, 7, 3, 4, 4, 7, 6, 8, 5, - 10, 3, 3, 3, 1, 4, 8, 12, 1, 3, 9, 7, 2, 3, 4, 5, 3, 3, 8, 5, 17, 1, 5, 10, 10, - ], - }, - { - label: 'PEPE', - topics: 'pepe,shib,robinhood,chinese,cap', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- $PEPE reaching new highs with high volume and liquidity\n- Speculation on the potential growth of $APU compared to $PEPE\n- Community excitement and anticipation for positive developments\n- Price predictions and analysis for $PEPE and other cryptocurrencies like $DOGE and $SHIB\n- Comparisons between $PEPE and other cryptocurrencies like $SHIB\n- Technical analysis and trading strategies for $PEPE\n- Memes and cultural references related to frogs and $PEPE\n- Cautionary tales and risks associated with investing in cryptocurrencies\n\nOverall, the sentiment seems to be positive and optimistic about the potential growth and opportunities in the crypto market, particularly for $PEPE.', - data: [ - 4, 1, 4, 6, 0, 1, 0, 2, 6, 4, 7, 5, 8, 3, 9, 4, 0, 1, 7, 3, 3, 4, 2, 2, 3, 3, 5, 3, 5, 6, 4, - 6, 5, 1, 1, 4, 63, 5, 4, 9, 4, 3, 4, 6, 2, 2, 3, 4, 6, 2, 2, 3, 8, 4, 0, - ], - }, - { - label: 'CHILLGUY', - topics: 'chill,chillguy,guy,meme,tiktok', - description: - 'The key topic discussed in the messages from Twitter is the cryptocurrency called Chill Guy ($CHILLGUY). The messages mention the rapid increase in market capitalization of Chill Guy, the meme status of the coin, and the excitement surrounding its potential for further growth. Users are discussing buying and holding Chill Guy, as well as its potential to reach billions in market capitalization. The messages also mention the involvement of prominent figures like Elon Musk and President Nayib Bukele in the Chill Guy phenomenon. Overall, the sentiment towards Chill Guy in the Twitter community seems positive and optimistic about its future prospects.', - data: [ - 5, 6, 5, 3, 2, 1, 3, 0, 5, 83, 2, 7, 1, 3, 1, 4, 2, 1, 2, 3, 3, 3, 11, 2, 5, 0, 4, 5, 6, 2, - 5, 1, 5, 1, 5, 1, 7, 3, 1, 4, 5, 4, 6, 4, 4, 0, 3, 4, 3, 5, 3, 1, 2, 2, 3, - ], - }, - { - label: 'DOG', - topics: 'dog,runes,tier,dogs,listing', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the rise of meme coins such as $DOG and $GIZMO, the potential for these coins to lead the meme coin season, and the comparison of $DOG to Bitcoin. There is also discussion about the impact of influencers like Mr. Beast promoting meme coins, the success of $TITAN as a patriotic American meme coin, and the overall bullish sentiment in the market with predictions of multiple meme coins reaching market caps over $1 billion by the 1 year anniversary of Runes in April. Additionally, there is a focus on the interconnectedness of different meme coins and how they can influence each other's prices.", - data: [ - 3, 4, 4, 7, 1, 1, 4, 3, 4, 0, 1, 2, 3, 1, 70, 0, 1, 4, 5, 3, 6, 0, 2, 1, 4, 4, 0, 3, 5, 5, - 3, 3, 0, 2, 1, 3, 5, 3, 3, 5, 0, 10, 1, 3, 4, 4, 3, 2, 5, 4, 1, 5, 7, 4, 4, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,players', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Gaming in Web3: Discussions about the intersection of gaming and cryptocurrency, with mentions of GameShark on PS1, Fortnite V-bucks, and the launch of various crypto gaming projects like UMT and GAM3Awards.\n2. Web3 Projects: Emphasizing the artistry and engagement of creating immersive experiences in Web3, likening crypto traders to gamers and highlighting the launch of new projects like Pentagon Games and PlayZap Games.\n3. Tezos in Gaming: Exploring the use of Tezos in game development, with discussions about the tag #GGTZ (Good Game Tezos) and the involvement of developers in building games on the Tezos platform.\n4. NFTs in Gaming: Mentioning the involvement of NFTs in gaming, with examples like the Chief Player Officer @playsolana discussing the PSG1 project and the release of Arcade One NFTs on Rarible.\n5. Crypto and Gaming Overlap: Addressing the overlap between the crypto and gaming industries, with mentions of how making money can be seen as a game for dopamine-driven individuals and the potential for earning cryptocurrency through gaming platforms like BitRivals.', - data: [ - 2, 1, 3, 3, 0, 0, 4, 3, 3, 5, 2, 1, 6, 0, 3, 4, 3, 5, 5, 21, 35, 6, 6, 0, 1, 2, 8, 5, 9, 4, - 5, 3, 2, 2, 4, 4, 3, 15, 1, 2, 3, 1, 2, 1, 2, 3, 5, 2, 4, 2, 1, 2, 1, 7, 4, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collection,art,floor', - description: - 'The messages from Twitter discuss various topics related to NFTs in the crypto industry. Some key points mentioned include the popularity of Ethereum NFTs, the issue of copying and pasting NFTs, the value of Cryptopunks in the current market, the potential of NFTs in gaming and retail experiences, and the allocation of $ELYS for NFT holders. Additionally, there is mention of a new NFT project immortalizing the legendary GTA San Andreas game and the distribution of Building NFTs during a Christmas event. Overall, the messages highlight the growing interest and potential opportunities within the NFT space.', - data: [ - 5, 1, 4, 2, 0, 0, 1, 4, 2, 6, 3, 1, 14, 2, 4, 1, 3, 6, 3, 5, 1, 5, 5, 5, 2, 4, 4, 6, 8, 3, - 3, 3, 6, 3, 9, 6, 6, 0, 5, 7, 4, 5, 2, 3, 2, 2, 3, 1, 1, 0, 7, 2, 2, 2, 2, - ], - }, - { - label: 'Gary Gensler', - topics: 'gensler,gary,chair,sec,january', - description: - "The key topic discussed in the messages from twitter is the resignation of Gary Gensler as the SEC Chair. The messages mention his potential resignation, hints at his departure, and reactions from the crypto industry and other individuals. There are also discussions about the impact of his resignation on the regulatory landscape of the cryptocurrency market and calls for his removal by Coinbase's Chief Legal Officer. Additionally, there are criticisms of Gensler's regulatory approach and actions during his time as SEC Chair.", - data: [ - 4, 9, 5, 1, 0, 0, 31, 5, 3, 2, 5, 0, 5, 2, 0, 2, 1, 1, 5, 1, 25, 5, 3, 3, 0, 0, 2, 1, 1, 4, - 1, 0, 3, 1, 3, 4, 0, 2, 0, 0, 4, 3, 4, 1, 2, 8, 0, 3, 4, 1, 3, 3, 1, 4, 2, - ], - }, - { - label: 'APE', - topics: 'ape,apechain,bored,mint,wallet', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding ApeCoin, MintPadCo, ApeChain, Mutant Zillas, Bored Apes, and various NFT collections. The community seems to be actively minting and trading these digital assets, with a focus on unique and rare pieces. There is also mention of the utility and value of certain items, as well as comparisons between different types of apes and their respective prices. Overall, the sentiment appears to be positive and enthusiastic, with a strong sense of community and support for the ape-themed NFT projects.', - data: [ - 0, 21, 6, 3, 0, 0, 8, 6, 2, 2, 1, 1, 3, 4, 0, 2, 1, 2, 4, 5, 2, 2, 2, 3, 4, 1, 0, 0, 1, 6, - 2, 0, 8, 10, 7, 3, 3, 1, 4, 1, 1, 2, 1, 10, 0, 7, 6, 2, 0, 6, 10, 1, 1, 3, 1, - ], - }, - { - label: 'DeFi', - topics: 'defi,decentralized,ecosystem,liquidity,future', - description: - "The key topics discussed in the messages from twitter related to the crypto industry are DeFi (Decentralized Finance), Thala recovering $25 million following a successful hacker negotiation, partnership between KODA, Orderly Network, and Sensi_Defi on BNBCHAIN, DIA Lumina's standout features in the oracle stack, the importance of innovation, consumer protection, and financial inclusion in DeFi, AirDAO's focus on user experience and transparency, FIP.11 and SIP.05 improving Flare's enshrined oracles, the significance of the decentralized aspect of DeFi, Staking as a DeFi feature for earning attractive yields, Veda's mission in building the DeFi Earn Network, FLR's support by various onramp providers, and the collaboration between Derive and Bybit Wallet in a giveaway promotion.", - data: [ - 5, 1, 4, 3, 0, 1, 2, 5, 2, 1, 0, 4, 2, 11, 2, 2, 6, 0, 3, 6, 2, 2, 0, 1, 2, 4, 4, 5, 3, 1, - 2, 0, 2, 6, 3, 6, 3, 3, 4, 4, 7, 1, 4, 5, 1, 8, 1, 3, 2, 7, 7, 2, 3, 0, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-47.json b/priv/repo/major_topics_seed/data-47.json deleted file mode 100644 index a063a712c5..0000000000 --- a/priv/repo/major_topics_seed/data-47.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["21.11.24","22.11.24","22.11.24","22.11.24","22.11.24","22.11.24","22.11.24","22.11.24","23.11.24","23.11.24","23.11.24","23.11.24","23.11.24","23.11.24","23.11.24","23.11.24","24.11.24","24.11.24","24.11.24","24.11.24","24.11.24","24.11.24","24.11.24","24.11.24","25.11.24","25.11.24","25.11.24","25.11.24","25.11.24","25.11.24","25.11.24","25.11.24","26.11.24","26.11.24","26.11.24","26.11.24","26.11.24","26.11.24","26.11.24","26.11.24","27.11.24","27.11.24","27.11.24","27.11.24","27.11.24","27.11.24","27.11.24","27.11.24","28.11.24","28.11.24","28.11.24","28.11.24","28.11.24","28.11.24","28.11.24"],"datasets":[{"label":"ETH","topics":"eth,ethereum,4000,breakout,pumping","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Ethereum (ETH) trading and price movements\n2. Speculation on Ethereum's future price targets ($6,000 and $10,000)\n3. Criticism of Ethereum's performance and perceived lack of seriousness\n4. Analysis of Ethereum's technical chart patterns and potential bullish signals\n5. Discussion of other cryptocurrencies such as NEAR Protocol (NEAR) and Ethereum Classic (ETC)\n6. Mention of key figures in the industry like Vitalik Buterin and Raoul Pal\n7. Reference to DeFi protocols and legal issues\n8. Speculation on potential market movements and moonshot opportunities\n\nOverall, the sentiment in the messages appears to be a mix of excitement, skepticism, and analysis of various aspects of the crypto industry, particularly focusing on Ethereum and its related projects.","data":[13,9,17,13,2,3,15,21,9,20,11,21,24,5,9,106,134,19,25,18,27,17,23,29,14,18,18,16,21,28,17,7,18,7,12,20,16,27,33,19,18,5,24,27,14,12,12,19,31,22,12,24,14,16,4]},{"label":"AI","topics":"ai,agents,agent,data,future","description":"The key topics currently discussed in the crypto industry on social media include the integration of AI infrastructure, the potential for AI agents to revolutionize various industries, the rise of decentralized AI projects, and the impact of AI on the oil industry. There is also a focus on specific AI projects such as ATUA AI and AutonomysNet, as well as the potential for AI agents to evolve and manage communities. Overall, the sentiment towards AI in the crypto industry seems to be positive, with many users excited about the possibilities it presents for innovation and growth.","data":[48,130,19,11,1,8,10,12,7,26,19,13,12,25,9,9,16,16,14,20,15,15,9,11,16,25,20,10,10,26,15,10,11,15,13,6,7,16,17,23,17,12,11,9,11,15,20,18,9,9,24,16,22,11,8]},{"label":"Memecoins","topics":"meme,memecoin,memes,coins,memecoins","description":"The key topics currently discussed in the messages from twitter are memecoins, meme themes, Coinbase listing more memes, utility tokens, meme coin movement, luckycoin market, President-elect Trump's media company filing trademark for a cryptocurrency payment platform, meme challenge for a shot at $10,000, and amazing returns on memecoins.","data":[7,5,15,12,5,2,4,15,15,5,7,13,11,17,3,8,4,11,11,10,11,31,9,15,13,8,13,13,19,18,5,182,12,9,15,15,12,11,9,18,10,7,11,9,15,20,11,8,18,12,20,9,9,12,13]},{"label":"DOGE","topics":"doge,dogecoin,elon,department,elonmusk","description":"Summary:\nThe messages from Twitter about Dogecoin ($DOGE) indicate excitement and anticipation for a potential breakout in price. There is discussion about reaching new all-time highs (ATH) and entering price discovery territory. Some users are optimistic about the future of Dogecoin and its potential for significant growth. There is also mention of influential figures like Elon Musk and Vivek Ramaswamy possibly impacting the price of Dogecoin. Overall, the sentiment among the community seems positive and hopeful for the future of Dogecoin.","data":[12,4,7,10,2,1,8,7,8,8,8,4,6,11,253,7,5,14,11,4,19,13,12,14,13,5,5,12,11,16,8,9,9,11,4,14,6,14,10,7,15,14,10,7,16,13,14,12,12,3,3,7,9,12,13]},{"label":"BTC","topics":"bitcoin,money,fiat,monetary,fixes","description":"The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin as a job ad for someone who knows how to work with it\n- Speculation on how Universal Basic Income (UBI) would work on a Bitcoin standard\n- Concerns about the lack of accessibility for most people to participate in growing their capital base\n- Bitcoin being seen as the only real thing in a post-truth world\n- Bitcoin being praised for its transparency, democratization of government, and hedge against inflation\n- Criticism of a UK pension scheme for investing in Bitcoin and concerns about gambling with retirees' futures\n- Speculation on European states coming after Bitcoin\n- The International Monetary Fund asserting that Bitcoin is not a currency\n- Discussion on Bitcoin enabling individuals to become sovereign and obey the laws of physics\n\nOverall, the sentiment towards Bitcoin seems to be mixed, with some praising its benefits and others expressing concerns about its implications.","data":[5,4,13,8,79,51,6,6,6,15,8,11,8,4,5,15,9,11,17,15,13,11,8,8,5,19,10,11,14,9,7,4,16,4,10,12,15,14,8,13,8,5,6,17,7,11,12,7,12,6,15,8,6,7,16]},{"label":"SOL","topics":"solana,sol,dex,high,ath","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana hitting an all-time high (ATH) and achieving a monthly DEX volume surpassing $100 billion\n- Concerns about wash trading volume on Solana and the potential for metrics to be faked due to cheap fees\n- Comparison of yearly performance among top cryptos, with Solana up 355%, BTC up 164%, and Ether up 63%\n- ETF filings increasing as Solana hits ATH\n- Discussion about the reliability of holder count numbers on Solana compared to Ethereum\n- Recommendations to avoid using memecoins on Solana and instead use Radix\n- Excitement about Solana projects like $NUN Cat and $JOWNES, with potential for growth in the memecoin market\n- Announcement of staking on Solana within 24 hours and the launch of the $AceD presale\n\nOverall, the sentiment on Twitter seems to be positive towards Solana's recent achievements and projects, but there are also concerns about potential issues such as wash trading and fake metrics.","data":[10,4,8,12,1,7,17,7,7,11,9,6,14,8,6,15,17,13,9,9,8,1,14,22,6,12,8,12,9,11,11,16,16,28,10,7,11,14,19,11,5,9,11,7,70,9,13,5,14,15,11,7,5,8,10]},{"label":"MSTR","topics":"mstr,microstrategy,54,billion,stock","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- MicroStrategy's aggressive Bitcoin buying strategy, with recent purchases totaling $5.4 billion\n- The impact of MicroStrategy's Bitcoin strategy on its stock price, with shares falling after Citron Research announced a short position\n- Concerns over MicroStrategy's ability to maintain its Bitcoin \"yield\" as it issues shares at a premium and accumulates debt\n- The confusion among traditional finance (TradFi) experts about MicroStrategy's approach to Bitcoin\n- Speculation about MicroStrategy CEO Michael Saylor offloading MSTR shares for profits\n- A comparison of returns between MicroStrategy and Bitcoin mining stocks\n- Mixed reactions to MicroStrategy's Bitcoin purchases, with some bullish sentiments and others expressing caution\n- Analysis of the Bitcoin market dynamics and the impact of MicroStrategy's large purchases on supply and demand\n\nOverall, the messages reflect a mix of excitement, skepticism, and debate surrounding MicroStrategy's bold Bitcoin investment strategy and its implications for the company's stock performance and the broader crypto market.","data":[26,6,2,13,9,7,19,17,14,5,10,4,5,7,4,8,5,6,6,2,2,8,8,17,11,16,3,11,8,10,10,74,24,6,8,8,6,15,10,10,8,10,13,11,9,11,3,5,5,10,11,4,4,9,10]},{"label":"Potential for Bitcoin to reach $100,000","topics":"100k,100000,hit,bitcoin,hits","description":"The topic discussed on Twitter is the potential for Bitcoin to reach $100,000. There are mentions of Bitcoin nearing the $100k mark, with discussions about hitting milestones such as $99,500. There are also mentions of Bitcoin bouncing back and surpassing $93,000 despite liquidations in the cryptocurrency market. Overall, the sentiment seems to be optimistic about Bitcoin reaching $100k soon.","data":[4,1,9,5,47,19,9,7,6,11,10,2,8,0,6,11,3,10,8,1,23,1,9,31,8,4,7,13,4,6,4,2,8,6,7,7,7,13,9,8,4,9,3,3,10,6,8,4,17,8,4,5,4,5,3]},{"label":"Art","topics":"art,artists,miami,artist,piece","description":"The key topics currently discussed in the crypto industry on social media include:\n- Artwork and artists showcasing their work\n- Utilizing smart contracts for digital and physical art\n- NFT collections and minting\n- Collaboration between artists and technology\n- The intersection of art and blockchain technology\n- Supporting and promoting artists within the community\n- Participating in art auctions and fairs\n- Exploring new ways to create and showcase art\n- The impact of technology on traditional art practices\n- Building a community around art and storytelling in the web3 space\n\nOverall, the crypto community is actively engaging with and supporting artists who are exploring innovative ways to create and share their work using blockchain technology and NFTs.","data":[13,3,60,7,0,0,1,5,3,1,13,8,4,10,2,5,9,4,2,3,12,10,6,5,4,6,5,4,8,13,14,2,10,4,11,6,10,7,4,3,4,5,8,4,4,6,9,3,7,6,4,3,4,5,9]},{"label":"GameFi","topics":"gaming,games,game,gamefi,immutable","description":"The key topics currently discussed in the crypto industry on Twitter include GameFi, web3 gaming, Play-to-Earn games, partnerships with AI networks, digital asset ownership, cross-interoperability, and flexible game monetization. There is also mention of specific games such as Pixels, Sorare, Pikamoon, Chainmonsters, CyberTitans, and AxieInfinity. Additionally, there is excitement around the launch of new tokens like $UGG and partnerships with platforms like @Apeterminal. Overall, the focus seems to be on the intersection of blockchain technology and gaming, with an emphasis on innovative gameplay, real-world rewards, and eco-friendly practices.","data":[2,2,7,8,0,0,3,3,2,4,3,8,1,5,1,9,2,7,8,77,6,10,4,3,4,6,9,4,4,3,7,3,7,8,2,1,16,4,4,10,5,0,3,3,4,6,7,1,5,4,5,7,9,6,11]},{"label":"ETF Flows","topics":"etfs,inflows,net,etf,blackrock","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- BlackRock purchasing 5,175 Bitcoin\n- Tokenization of billions of dollars of real-world assets on Ethereum\n- ETF proposals and inflows for Bitcoin and Ethereum\n- Institutional interest in Bitcoin ETFs\n- Record inflows for Bitcoin ETFs\n- Withdrawals and outflows from Binance\n- Potential gains in memecoin allocation for institutional capital\n- Fannie Mae and Freddie Mac potentially ending a financial fight\n- Bitcoin Spot ETFs surpassing $100 billion in assets\n- Surge in Bitcoin ETF inflows\n- Ethereum Spot ETFs recording consecutive days of inflows\n\nOverall, the discussions revolve around institutional investment, ETFs, asset tokenization, and market trends within the crypto industry.","data":[5,0,2,1,19,8,3,10,8,0,3,8,4,7,2,28,8,1,3,3,1,7,1,12,2,10,3,13,2,2,3,0,4,16,7,4,2,1,5,8,2,2,7,4,30,1,7,2,4,13,0,9,1,6,4]},{"label":"Michael Saylor","topics":"saylor,michael,buying,mstr,buy","description":"The key topics discussed in the messages from twitter are:\n1. Michael Saylor's recent actions and investments in Bitcoin through Microstrategy ($MSTR).\n2. Speculation on whether Saylor is buying or selling Bitcoin.\n3. Concerns about the risks associated with borrowing against holdings to buy more Bitcoin.\n4. Saylor's influence on corporate copycats and the potential impact on the market.\n5. The impact of Saylor's actions on the bond market and flow of funds into Bitcoin.\n6. The perception of Saylor as a unique CEO with a loyal stockholder base.\n7. Questions about the sustainability of Saylor's strategies and potential consequences.","data":[3,5,3,1,2,4,0,7,15,5,2,5,1,3,2,5,0,2,3,5,17,3,1,7,5,2,5,3,2,4,7,1,2,5,7,2,3,7,13,0,3,47,8,3,5,3,2,2,3,2,7,3,3,6,4]},{"label":"Pump Fun","topics":"pumpfun,fun,pump,streaming,stream","description":"The messages from Twitter suggest that there is a lot of discussion and activity happening on the platform Pump Fun within the crypto industry. Some key topics mentioned include unethical and illegal activities, the need to disintermediate rentseekers and dexscreeners, the potential for Pump Fun to create stars and competitors, and the involvement of various individuals and communities in the platform. There is also a mention of potential market manipulation and the importance of not engaging in harmful practices. Overall, it seems like Pump Fun is a platform that is generating a lot of attention and controversy within the crypto community.","data":[9,3,3,1,1,1,4,1,3,4,2,6,1,4,2,1,1,2,3,3,10,1,14,1,4,3,8,3,4,1,3,2,2,3,4,5,6,3,33,3,0,2,5,5,2,6,6,6,5,0,3,3,3,4,3]},{"label":"DeFi","topics":"defi,depin,finance,crosschain,decentralized","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include DeFi (Decentralized Finance) projects and technologies like DePIN, PayFi, and Bluzelle. There is a lot of excitement around the potential of DeFi 2.0, which promises scalability, security, and liquidity in the decentralized finance space. Additionally, there is a focus on the growth and investment opportunities in DePIN projects, with potential for significant returns for investors. The launch of new DePIN projects like Kage in the Web3 gaming space is also generating interest and excitement among the community. Overall, the crypto community is discussing the transformative potential of these technologies and projects in reshaping the future of finance and decentralized applications.","data":[1,3,8,5,1,2,5,5,3,2,6,3,2,18,0,8,3,2,6,3,1,2,4,2,3,8,5,5,6,1,2,0,4,3,4,4,4,7,9,2,6,3,0,4,3,0,0,5,5,4,2,2,2,3,0]},{"label":"CHILLGUY","topics":"chillguy,chill,guy,meme,memecoin","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins such as Chill Guy ($CHILLGUY), Nose ($NOSE), and ETH Guy ($ETHGUY). There is excitement surrounding the potential listing of Chill Guy on Binance, as well as the rapid growth and popularity of Chill Guy within the meme world. Additionally, there is discussion about the evolution of meme coins and the success of platforms like Pumpdotfun in launching meme coins like Pnut ($PNUT) and Goat ($GOAT). The community is also eagerly anticipating the launch of ETH Guy and its potential impact on the market. Overall, the crypto community is engaged in discussions about meme coins, market trends, and potential investment opportunities.","data":[2,1,2,4,1,0,1,2,3,76,2,1,3,1,0,3,1,2,1,2,3,1,10,3,0,7,4,1,5,3,0,3,5,3,4,0,2,0,1,2,0,1,7,4,0,4,2,2,0,3,4,0,4,1,0]},{"label":"Altseason","topics":"season,dominance,altcoin,altseason,alt","description":"The messages from Twitter indicate that there is a lot of discussion about the potential for an upcoming altcoin season in the crypto industry. Bitcoin dominance is being closely watched as a signal for when the altcoin season may begin. Many altcoins are surging in value, and there is anticipation for explosive growth in the altcoin market. Some analysts believe that a rotation from Bitcoin to altcoins will happen soon, with altcoins potentially outperforming Bitcoin in the near future. Overall, there is a sense of excitement and optimism about the potential for an altcoin season in the crypto market.","data":[0,31,1,4,8,3,3,1,2,4,2,3,1,2,27,1,2,6,2,2,0,1,2,2,1,4,2,3,1,5,1,3,1,3,1,2,1,0,1,5,1,7,21,3,2,2,0,2,0,2,1,0,5,1,1]},{"label":"PEPE","topics":"pepe,shib,elonmusk,rare,memecoin","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the rise of PepeCoin ($PEPE) with mentions of bullish momentum, potential ATH (All-Time High) breakouts, and new listings on exchanges like ProBit Global. Other mentioned coins include Dogecoin ($DOGE), Shiba Inu ($SHIB), and Bonk Token. There is also excitement around the potential for PepeCoin to explode in value, with some users expressing preparedness for significant gains. Additionally, analysts are highlighting Pepe Coin, Cardano ($ADA), and the DeFi token Yeti Ouro as top picks for the next bull run in 2024. Overall, the sentiment around PepeCoin appears to be positive, with users eagerly anticipating its performance in the market.","data":[2,2,4,5,1,0,5,4,8,2,1,0,1,3,5,5,4,6,8,2,1,5,3,0,0,0,5,0,3,6,0,4,0,5,3,35,3,3,3,4,5,0,4,5,2,2,2,3,1,1,1,3,3,4,2]},{"label":"XRP","topics":"xrp,ripple,sec,gary,gensler","description":"The topic discussed in the Twitter messages is the recent surge in the price of XRP (Ripple). Messages mention key drivers such as the XRP Ledger update, Paul Atkins potentially replacing Gary Gensler as SEC Chair, a potential breakout in the price of XRP, and the movement of a large amount of XRP tokens. There is also speculation about Ripple launching a new stablecoin and the potential impact of regulatory hurdles on the stablecoin market. Overall, the sentiment in the messages is bullish towards XRP, with discussions about price movements, market optimism, and potential future gains.","data":[1,1,3,2,1,1,4,2,4,4,5,5,0,3,1,1,3,4,1,6,1,1,0,11,3,6,3,1,1,2,5,1,1,2,0,2,3,12,5,3,13,5,3,3,6,1,6,2,1,4,2,3,0,3,2]},{"label":"APE","topics":"ape,apechain,apecoin,mint,floor","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. ApeChain: ApeChain is a popular topic of discussion, with users talking about buying and selling on the platform, as well as the potential for growth and upcoming drops.\n2. ApeCoin: ApeCoin is mentioned as a ticking time bomb with talented individuals working on building ApeChain, suggesting potential for explosive growth.\n3. Bored Ape Yacht Club (BAYC): BAYC is experiencing a rally with the floor price reaching approximately 15.5 ETH, highlighting the strength of the community.\n4. Security concerns: There are mentions of apes getting hacked, indicating the importance of security protocols and the need for increased vigilance.\n5. Community support: Users are discussing the importance of community support and unity, with phrases like \"Apes together strong\" and references to sending apes to the treasury.\n6. Cult following: There are references to a cult following within the community, with mentions of WL rewards and shoutouts to specific projects.\n7. Accumulation strategy: Users are discussing the strategy of accumulating assets on ApeChain and waiting for opportunities to buy at lower prices.\n8. Influence of influencers: There are mentions of influencers promoting certain projects and the impact they have on the community's decisions.\nOverall, the discussions on Twitter suggest a mix of excitement, caution, and community support within the crypto industry, particularly in relation to ApeChain and related projects.","data":[1,0,27,3,0,1,6,3,3,1,3,1,3,3,2,0,0,1,1,7,7,4,3,3,1,0,3,2,5,2,0,3,10,2,4,2,0,2,2,3,2,4,3,3,5,3,1,3,3,0,0,0,4,2,1]},{"label":"Jim Cramer","topics":"cramer,jim,winner,inverse,jimcramer","description":"The key topic currently being discussed in the crypto industry on social media is the impact of Jim Cramer's statements on Bitcoin prices. Many users are noting that whenever Cramer mentions buying Bitcoin, the price tends to drop shortly after. This phenomenon has been dubbed the \"Inverse Cramer Effect\" by some users. Despite Cramer's endorsement of Bitcoin as a winning investment, the price has seen a significant decrease since his statements. Some users are jokingly attributing the drop in price to the \"Inverse Cramer\" effect and are expressing disappointment that Bitcoin may not reach $100,000 as previously predicted. Overall, there is a mix of skepticism and humor surrounding Cramer's influence on Bitcoin prices in the social media discussions.","data":[6,1,3,1,0,5,2,7,3,0,0,5,1,2,4,2,1,3,2,1,5,1,2,0,1,6,3,2,5,3,3,0,2,1,3,4,1,1,1,5,0,14,0,1,0,3,4,8,1,0,1,1,2,2,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-47.ts b/priv/repo/major_topics_seed/data-47.ts deleted file mode 100644 index a44aa4899d..0000000000 --- a/priv/repo/major_topics_seed/data-47.ts +++ /dev/null @@ -1,268 +0,0 @@ -export const NARRATIVES = { - labels: [ - '21.11.24', - '22.11.24', - '22.11.24', - '22.11.24', - '22.11.24', - '22.11.24', - '22.11.24', - '22.11.24', - '23.11.24', - '23.11.24', - '23.11.24', - '23.11.24', - '23.11.24', - '23.11.24', - '23.11.24', - '23.11.24', - '24.11.24', - '24.11.24', - '24.11.24', - '24.11.24', - '24.11.24', - '24.11.24', - '24.11.24', - '24.11.24', - '25.11.24', - '25.11.24', - '25.11.24', - '25.11.24', - '25.11.24', - '25.11.24', - '25.11.24', - '25.11.24', - '26.11.24', - '26.11.24', - '26.11.24', - '26.11.24', - '26.11.24', - '26.11.24', - '26.11.24', - '26.11.24', - '27.11.24', - '27.11.24', - '27.11.24', - '27.11.24', - '27.11.24', - '27.11.24', - '27.11.24', - '27.11.24', - '28.11.24', - '28.11.24', - '28.11.24', - '28.11.24', - '28.11.24', - '28.11.24', - '28.11.24', - ], - datasets: [ - { - label: 'ETH', - topics: 'eth,ethereum,4000,breakout,pumping', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Ethereum (ETH) trading and price movements\n2. Speculation on Ethereum's future price targets ($6,000 and $10,000)\n3. Criticism of Ethereum's performance and perceived lack of seriousness\n4. Analysis of Ethereum's technical chart patterns and potential bullish signals\n5. Discussion of other cryptocurrencies such as NEAR Protocol (NEAR) and Ethereum Classic (ETC)\n6. Mention of key figures in the industry like Vitalik Buterin and Raoul Pal\n7. Reference to DeFi protocols and legal issues\n8. Speculation on potential market movements and moonshot opportunities\n\nOverall, the sentiment in the messages appears to be a mix of excitement, skepticism, and analysis of various aspects of the crypto industry, particularly focusing on Ethereum and its related projects.", - data: [ - 13, 9, 17, 13, 2, 3, 15, 21, 9, 20, 11, 21, 24, 5, 9, 106, 134, 19, 25, 18, 27, 17, 23, 29, - 14, 18, 18, 16, 21, 28, 17, 7, 18, 7, 12, 20, 16, 27, 33, 19, 18, 5, 24, 27, 14, 12, 12, 19, - 31, 22, 12, 24, 14, 16, 4, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,data,future', - description: - 'The key topics currently discussed in the crypto industry on social media include the integration of AI infrastructure, the potential for AI agents to revolutionize various industries, the rise of decentralized AI projects, and the impact of AI on the oil industry. There is also a focus on specific AI projects such as ATUA AI and AutonomysNet, as well as the potential for AI agents to evolve and manage communities. Overall, the sentiment towards AI in the crypto industry seems to be positive, with many users excited about the possibilities it presents for innovation and growth.', - data: [ - 48, 130, 19, 11, 1, 8, 10, 12, 7, 26, 19, 13, 12, 25, 9, 9, 16, 16, 14, 20, 15, 15, 9, 11, - 16, 25, 20, 10, 10, 26, 15, 10, 11, 15, 13, 6, 7, 16, 17, 23, 17, 12, 11, 9, 11, 15, 20, 18, - 9, 9, 24, 16, 22, 11, 8, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coins,memecoins', - description: - "The key topics currently discussed in the messages from twitter are memecoins, meme themes, Coinbase listing more memes, utility tokens, meme coin movement, luckycoin market, President-elect Trump's media company filing trademark for a cryptocurrency payment platform, meme challenge for a shot at $10,000, and amazing returns on memecoins.", - data: [ - 7, 5, 15, 12, 5, 2, 4, 15, 15, 5, 7, 13, 11, 17, 3, 8, 4, 11, 11, 10, 11, 31, 9, 15, 13, 8, - 13, 13, 19, 18, 5, 182, 12, 9, 15, 15, 12, 11, 9, 18, 10, 7, 11, 9, 15, 20, 11, 8, 18, 12, - 20, 9, 9, 12, 13, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elon,department,elonmusk', - description: - 'Summary:\nThe messages from Twitter about Dogecoin ($DOGE) indicate excitement and anticipation for a potential breakout in price. There is discussion about reaching new all-time highs (ATH) and entering price discovery territory. Some users are optimistic about the future of Dogecoin and its potential for significant growth. There is also mention of influential figures like Elon Musk and Vivek Ramaswamy possibly impacting the price of Dogecoin. Overall, the sentiment among the community seems positive and hopeful for the future of Dogecoin.', - data: [ - 12, 4, 7, 10, 2, 1, 8, 7, 8, 8, 8, 4, 6, 11, 253, 7, 5, 14, 11, 4, 19, 13, 12, 14, 13, 5, 5, - 12, 11, 16, 8, 9, 9, 11, 4, 14, 6, 14, 10, 7, 15, 14, 10, 7, 16, 13, 14, 12, 12, 3, 3, 7, 9, - 12, 13, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,money,fiat,monetary,fixes', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin as a job ad for someone who knows how to work with it\n- Speculation on how Universal Basic Income (UBI) would work on a Bitcoin standard\n- Concerns about the lack of accessibility for most people to participate in growing their capital base\n- Bitcoin being seen as the only real thing in a post-truth world\n- Bitcoin being praised for its transparency, democratization of government, and hedge against inflation\n- Criticism of a UK pension scheme for investing in Bitcoin and concerns about gambling with retirees' futures\n- Speculation on European states coming after Bitcoin\n- The International Monetary Fund asserting that Bitcoin is not a currency\n- Discussion on Bitcoin enabling individuals to become sovereign and obey the laws of physics\n\nOverall, the sentiment towards Bitcoin seems to be mixed, with some praising its benefits and others expressing concerns about its implications.", - data: [ - 5, 4, 13, 8, 79, 51, 6, 6, 6, 15, 8, 11, 8, 4, 5, 15, 9, 11, 17, 15, 13, 11, 8, 8, 5, 19, - 10, 11, 14, 9, 7, 4, 16, 4, 10, 12, 15, 14, 8, 13, 8, 5, 6, 17, 7, 11, 12, 7, 12, 6, 15, 8, - 6, 7, 16, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,dex,high,ath', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana hitting an all-time high (ATH) and achieving a monthly DEX volume surpassing $100 billion\n- Concerns about wash trading volume on Solana and the potential for metrics to be faked due to cheap fees\n- Comparison of yearly performance among top cryptos, with Solana up 355%, BTC up 164%, and Ether up 63%\n- ETF filings increasing as Solana hits ATH\n- Discussion about the reliability of holder count numbers on Solana compared to Ethereum\n- Recommendations to avoid using memecoins on Solana and instead use Radix\n- Excitement about Solana projects like $NUN Cat and $JOWNES, with potential for growth in the memecoin market\n- Announcement of staking on Solana within 24 hours and the launch of the $AceD presale\n\nOverall, the sentiment on Twitter seems to be positive towards Solana's recent achievements and projects, but there are also concerns about potential issues such as wash trading and fake metrics.", - data: [ - 10, 4, 8, 12, 1, 7, 17, 7, 7, 11, 9, 6, 14, 8, 6, 15, 17, 13, 9, 9, 8, 1, 14, 22, 6, 12, 8, - 12, 9, 11, 11, 16, 16, 28, 10, 7, 11, 14, 19, 11, 5, 9, 11, 7, 70, 9, 13, 5, 14, 15, 11, 7, - 5, 8, 10, - ], - }, - { - label: 'MSTR', - topics: 'mstr,microstrategy,54,billion,stock', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n- MicroStrategy's aggressive Bitcoin buying strategy, with recent purchases totaling $5.4 billion\n- The impact of MicroStrategy's Bitcoin strategy on its stock price, with shares falling after Citron Research announced a short position\n- Concerns over MicroStrategy's ability to maintain its Bitcoin \"yield\" as it issues shares at a premium and accumulates debt\n- The confusion among traditional finance (TradFi) experts about MicroStrategy's approach to Bitcoin\n- Speculation about MicroStrategy CEO Michael Saylor offloading MSTR shares for profits\n- A comparison of returns between MicroStrategy and Bitcoin mining stocks\n- Mixed reactions to MicroStrategy's Bitcoin purchases, with some bullish sentiments and others expressing caution\n- Analysis of the Bitcoin market dynamics and the impact of MicroStrategy's large purchases on supply and demand\n\nOverall, the messages reflect a mix of excitement, skepticism, and debate surrounding MicroStrategy's bold Bitcoin investment strategy and its implications for the company's stock performance and the broader crypto market.", - data: [ - 26, 6, 2, 13, 9, 7, 19, 17, 14, 5, 10, 4, 5, 7, 4, 8, 5, 6, 6, 2, 2, 8, 8, 17, 11, 16, 3, - 11, 8, 10, 10, 74, 24, 6, 8, 8, 6, 15, 10, 10, 8, 10, 13, 11, 9, 11, 3, 5, 5, 10, 11, 4, 4, - 9, 10, - ], - }, - { - label: 'Potential for Bitcoin to reach $100,000', - topics: '100k,100000,hit,bitcoin,hits', - description: - 'The topic discussed on Twitter is the potential for Bitcoin to reach $100,000. There are mentions of Bitcoin nearing the $100k mark, with discussions about hitting milestones such as $99,500. There are also mentions of Bitcoin bouncing back and surpassing $93,000 despite liquidations in the cryptocurrency market. Overall, the sentiment seems to be optimistic about Bitcoin reaching $100k soon.', - data: [ - 4, 1, 9, 5, 47, 19, 9, 7, 6, 11, 10, 2, 8, 0, 6, 11, 3, 10, 8, 1, 23, 1, 9, 31, 8, 4, 7, 13, - 4, 6, 4, 2, 8, 6, 7, 7, 7, 13, 9, 8, 4, 9, 3, 3, 10, 6, 8, 4, 17, 8, 4, 5, 4, 5, 3, - ], - }, - { - label: 'Art', - topics: 'art,artists,miami,artist,piece', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Artwork and artists showcasing their work\n- Utilizing smart contracts for digital and physical art\n- NFT collections and minting\n- Collaboration between artists and technology\n- The intersection of art and blockchain technology\n- Supporting and promoting artists within the community\n- Participating in art auctions and fairs\n- Exploring new ways to create and showcase art\n- The impact of technology on traditional art practices\n- Building a community around art and storytelling in the web3 space\n\nOverall, the crypto community is actively engaging with and supporting artists who are exploring innovative ways to create and share their work using blockchain technology and NFTs.', - data: [ - 13, 3, 60, 7, 0, 0, 1, 5, 3, 1, 13, 8, 4, 10, 2, 5, 9, 4, 2, 3, 12, 10, 6, 5, 4, 6, 5, 4, 8, - 13, 14, 2, 10, 4, 11, 6, 10, 7, 4, 3, 4, 5, 8, 4, 4, 6, 9, 3, 7, 6, 4, 3, 4, 5, 9, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,gamefi,immutable', - description: - 'The key topics currently discussed in the crypto industry on Twitter include GameFi, web3 gaming, Play-to-Earn games, partnerships with AI networks, digital asset ownership, cross-interoperability, and flexible game monetization. There is also mention of specific games such as Pixels, Sorare, Pikamoon, Chainmonsters, CyberTitans, and AxieInfinity. Additionally, there is excitement around the launch of new tokens like $UGG and partnerships with platforms like @Apeterminal. Overall, the focus seems to be on the intersection of blockchain technology and gaming, with an emphasis on innovative gameplay, real-world rewards, and eco-friendly practices.', - data: [ - 2, 2, 7, 8, 0, 0, 3, 3, 2, 4, 3, 8, 1, 5, 1, 9, 2, 7, 8, 77, 6, 10, 4, 3, 4, 6, 9, 4, 4, 3, - 7, 3, 7, 8, 2, 1, 16, 4, 4, 10, 5, 0, 3, 3, 4, 6, 7, 1, 5, 4, 5, 7, 9, 6, 11, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,net,etf,blackrock', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- BlackRock purchasing 5,175 Bitcoin\n- Tokenization of billions of dollars of real-world assets on Ethereum\n- ETF proposals and inflows for Bitcoin and Ethereum\n- Institutional interest in Bitcoin ETFs\n- Record inflows for Bitcoin ETFs\n- Withdrawals and outflows from Binance\n- Potential gains in memecoin allocation for institutional capital\n- Fannie Mae and Freddie Mac potentially ending a financial fight\n- Bitcoin Spot ETFs surpassing $100 billion in assets\n- Surge in Bitcoin ETF inflows\n- Ethereum Spot ETFs recording consecutive days of inflows\n\nOverall, the discussions revolve around institutional investment, ETFs, asset tokenization, and market trends within the crypto industry.', - data: [ - 5, 0, 2, 1, 19, 8, 3, 10, 8, 0, 3, 8, 4, 7, 2, 28, 8, 1, 3, 3, 1, 7, 1, 12, 2, 10, 3, 13, 2, - 2, 3, 0, 4, 16, 7, 4, 2, 1, 5, 8, 2, 2, 7, 4, 30, 1, 7, 2, 4, 13, 0, 9, 1, 6, 4, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,michael,buying,mstr,buy', - description: - "The key topics discussed in the messages from twitter are:\n1. Michael Saylor's recent actions and investments in Bitcoin through Microstrategy ($MSTR).\n2. Speculation on whether Saylor is buying or selling Bitcoin.\n3. Concerns about the risks associated with borrowing against holdings to buy more Bitcoin.\n4. Saylor's influence on corporate copycats and the potential impact on the market.\n5. The impact of Saylor's actions on the bond market and flow of funds into Bitcoin.\n6. The perception of Saylor as a unique CEO with a loyal stockholder base.\n7. Questions about the sustainability of Saylor's strategies and potential consequences.", - data: [ - 3, 5, 3, 1, 2, 4, 0, 7, 15, 5, 2, 5, 1, 3, 2, 5, 0, 2, 3, 5, 17, 3, 1, 7, 5, 2, 5, 3, 2, 4, - 7, 1, 2, 5, 7, 2, 3, 7, 13, 0, 3, 47, 8, 3, 5, 3, 2, 2, 3, 2, 7, 3, 3, 6, 4, - ], - }, - { - label: 'Pump Fun', - topics: 'pumpfun,fun,pump,streaming,stream', - description: - 'The messages from Twitter suggest that there is a lot of discussion and activity happening on the platform Pump Fun within the crypto industry. Some key topics mentioned include unethical and illegal activities, the need to disintermediate rentseekers and dexscreeners, the potential for Pump Fun to create stars and competitors, and the involvement of various individuals and communities in the platform. There is also a mention of potential market manipulation and the importance of not engaging in harmful practices. Overall, it seems like Pump Fun is a platform that is generating a lot of attention and controversy within the crypto community.', - data: [ - 9, 3, 3, 1, 1, 1, 4, 1, 3, 4, 2, 6, 1, 4, 2, 1, 1, 2, 3, 3, 10, 1, 14, 1, 4, 3, 8, 3, 4, 1, - 3, 2, 2, 3, 4, 5, 6, 3, 33, 3, 0, 2, 5, 5, 2, 6, 6, 6, 5, 0, 3, 3, 3, 4, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,depin,finance,crosschain,decentralized', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include DeFi (Decentralized Finance) projects and technologies like DePIN, PayFi, and Bluzelle. There is a lot of excitement around the potential of DeFi 2.0, which promises scalability, security, and liquidity in the decentralized finance space. Additionally, there is a focus on the growth and investment opportunities in DePIN projects, with potential for significant returns for investors. The launch of new DePIN projects like Kage in the Web3 gaming space is also generating interest and excitement among the community. Overall, the crypto community is discussing the transformative potential of these technologies and projects in reshaping the future of finance and decentralized applications.', - data: [ - 1, 3, 8, 5, 1, 2, 5, 5, 3, 2, 6, 3, 2, 18, 0, 8, 3, 2, 6, 3, 1, 2, 4, 2, 3, 8, 5, 5, 6, 1, - 2, 0, 4, 3, 4, 4, 4, 7, 9, 2, 6, 3, 0, 4, 3, 0, 0, 5, 5, 4, 2, 2, 2, 3, 0, - ], - }, - { - label: 'CHILLGUY', - topics: 'chillguy,chill,guy,meme,memecoin', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins such as Chill Guy ($CHILLGUY), Nose ($NOSE), and ETH Guy ($ETHGUY). There is excitement surrounding the potential listing of Chill Guy on Binance, as well as the rapid growth and popularity of Chill Guy within the meme world. Additionally, there is discussion about the evolution of meme coins and the success of platforms like Pumpdotfun in launching meme coins like Pnut ($PNUT) and Goat ($GOAT). The community is also eagerly anticipating the launch of ETH Guy and its potential impact on the market. Overall, the crypto community is engaged in discussions about meme coins, market trends, and potential investment opportunities.', - data: [ - 2, 1, 2, 4, 1, 0, 1, 2, 3, 76, 2, 1, 3, 1, 0, 3, 1, 2, 1, 2, 3, 1, 10, 3, 0, 7, 4, 1, 5, 3, - 0, 3, 5, 3, 4, 0, 2, 0, 1, 2, 0, 1, 7, 4, 0, 4, 2, 2, 0, 3, 4, 0, 4, 1, 0, - ], - }, - { - label: 'Altseason', - topics: 'season,dominance,altcoin,altseason,alt', - description: - 'The messages from Twitter indicate that there is a lot of discussion about the potential for an upcoming altcoin season in the crypto industry. Bitcoin dominance is being closely watched as a signal for when the altcoin season may begin. Many altcoins are surging in value, and there is anticipation for explosive growth in the altcoin market. Some analysts believe that a rotation from Bitcoin to altcoins will happen soon, with altcoins potentially outperforming Bitcoin in the near future. Overall, there is a sense of excitement and optimism about the potential for an altcoin season in the crypto market.', - data: [ - 0, 31, 1, 4, 8, 3, 3, 1, 2, 4, 2, 3, 1, 2, 27, 1, 2, 6, 2, 2, 0, 1, 2, 2, 1, 4, 2, 3, 1, 5, - 1, 3, 1, 3, 1, 2, 1, 0, 1, 5, 1, 7, 21, 3, 2, 2, 0, 2, 0, 2, 1, 0, 5, 1, 1, - ], - }, - { - label: 'PEPE', - topics: 'pepe,shib,elonmusk,rare,memecoin', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the rise of PepeCoin ($PEPE) with mentions of bullish momentum, potential ATH (All-Time High) breakouts, and new listings on exchanges like ProBit Global. Other mentioned coins include Dogecoin ($DOGE), Shiba Inu ($SHIB), and Bonk Token. There is also excitement around the potential for PepeCoin to explode in value, with some users expressing preparedness for significant gains. Additionally, analysts are highlighting Pepe Coin, Cardano ($ADA), and the DeFi token Yeti Ouro as top picks for the next bull run in 2024. Overall, the sentiment around PepeCoin appears to be positive, with users eagerly anticipating its performance in the market.', - data: [ - 2, 2, 4, 5, 1, 0, 5, 4, 8, 2, 1, 0, 1, 3, 5, 5, 4, 6, 8, 2, 1, 5, 3, 0, 0, 0, 5, 0, 3, 6, 0, - 4, 0, 5, 3, 35, 3, 3, 3, 4, 5, 0, 4, 5, 2, 2, 2, 3, 1, 1, 1, 3, 3, 4, 2, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,gary,gensler', - description: - 'The topic discussed in the Twitter messages is the recent surge in the price of XRP (Ripple). Messages mention key drivers such as the XRP Ledger update, Paul Atkins potentially replacing Gary Gensler as SEC Chair, a potential breakout in the price of XRP, and the movement of a large amount of XRP tokens. There is also speculation about Ripple launching a new stablecoin and the potential impact of regulatory hurdles on the stablecoin market. Overall, the sentiment in the messages is bullish towards XRP, with discussions about price movements, market optimism, and potential future gains.', - data: [ - 1, 1, 3, 2, 1, 1, 4, 2, 4, 4, 5, 5, 0, 3, 1, 1, 3, 4, 1, 6, 1, 1, 0, 11, 3, 6, 3, 1, 1, 2, - 5, 1, 1, 2, 0, 2, 3, 12, 5, 3, 13, 5, 3, 3, 6, 1, 6, 2, 1, 4, 2, 3, 0, 3, 2, - ], - }, - { - label: 'APE', - topics: 'ape,apechain,apecoin,mint,floor', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. ApeChain: ApeChain is a popular topic of discussion, with users talking about buying and selling on the platform, as well as the potential for growth and upcoming drops.\n2. ApeCoin: ApeCoin is mentioned as a ticking time bomb with talented individuals working on building ApeChain, suggesting potential for explosive growth.\n3. Bored Ape Yacht Club (BAYC): BAYC is experiencing a rally with the floor price reaching approximately 15.5 ETH, highlighting the strength of the community.\n4. Security concerns: There are mentions of apes getting hacked, indicating the importance of security protocols and the need for increased vigilance.\n5. Community support: Users are discussing the importance of community support and unity, with phrases like "Apes together strong" and references to sending apes to the treasury.\n6. Cult following: There are references to a cult following within the community, with mentions of WL rewards and shoutouts to specific projects.\n7. Accumulation strategy: Users are discussing the strategy of accumulating assets on ApeChain and waiting for opportunities to buy at lower prices.\n8. Influence of influencers: There are mentions of influencers promoting certain projects and the impact they have on the community\'s decisions.\nOverall, the discussions on Twitter suggest a mix of excitement, caution, and community support within the crypto industry, particularly in relation to ApeChain and related projects.', - data: [ - 1, 0, 27, 3, 0, 1, 6, 3, 3, 1, 3, 1, 3, 3, 2, 0, 0, 1, 1, 7, 7, 4, 3, 3, 1, 0, 3, 2, 5, 2, - 0, 3, 10, 2, 4, 2, 0, 2, 2, 3, 2, 4, 3, 3, 5, 3, 1, 3, 3, 0, 0, 0, 4, 2, 1, - ], - }, - { - label: 'Jim Cramer', - topics: 'cramer,jim,winner,inverse,jimcramer', - description: - 'The key topic currently being discussed in the crypto industry on social media is the impact of Jim Cramer\'s statements on Bitcoin prices. Many users are noting that whenever Cramer mentions buying Bitcoin, the price tends to drop shortly after. This phenomenon has been dubbed the "Inverse Cramer Effect" by some users. Despite Cramer\'s endorsement of Bitcoin as a winning investment, the price has seen a significant decrease since his statements. Some users are jokingly attributing the drop in price to the "Inverse Cramer" effect and are expressing disappointment that Bitcoin may not reach $100,000 as previously predicted. Overall, there is a mix of skepticism and humor surrounding Cramer\'s influence on Bitcoin prices in the social media discussions.', - data: [ - 6, 1, 3, 1, 0, 5, 2, 7, 3, 0, 0, 5, 1, 2, 4, 2, 1, 3, 2, 1, 5, 1, 2, 0, 1, 6, 3, 2, 5, 3, 3, - 0, 2, 1, 3, 4, 1, 1, 1, 5, 0, 14, 0, 1, 0, 3, 4, 8, 1, 0, 1, 1, 2, 2, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-48.json b/priv/repo/major_topics_seed/data-48.json deleted file mode 100644 index 30252bffb8..0000000000 --- a/priv/repo/major_topics_seed/data-48.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["28.11.24","29.11.24","29.11.24","29.11.24","29.11.24","29.11.24","29.11.24","29.11.24","30.11.24","30.11.24","30.11.24","30.11.24","30.11.24","30.11.24","30.11.24","30.11.24","01.12.24","01.12.24","01.12.24","01.12.24","01.12.24","01.12.24","01.12.24","01.12.24","02.12.24","02.12.24","02.12.24","02.12.24","02.12.24","02.12.24","02.12.24","02.12.24","03.12.24","03.12.24","03.12.24","03.12.24","03.12.24","03.12.24","03.12.24","03.12.24","04.12.24","04.12.24","04.12.24","04.12.24","04.12.24","04.12.24","04.12.24","04.12.24","05.12.24","05.12.24","05.12.24","05.12.24","05.12.24","05.12.24","05.12.24"],"datasets":[{"label":"AI","topics":"ai,agents,agent,tao,data","description":"The key topics discussed in the messages from twitter include:\n- AI agents and their role in various industries such as gaming, creativity, and entertainment\n- The intersection of technology and culture, and the potential for AI agents to unlock new frontiers of creativity\n- The launch of new AI tokens on platforms like Solana\n- The development of AI-powered Web3 lifestyle apps\n- The mainstream adoption of crypto and the importance of showcasing projects to the public\n- The evolution of AI technology and its impact on society\n\nOverall, the messages highlight the growing importance and potential of AI agents in various sectors, as well as the continued innovation and development in the crypto industry.","data":[76,230,38,28,5,4,12,15,19,17,23,27,16,20,14,12,27,27,17,36,21,22,32,16,19,34,32,23,24,19,31,26,16,19,24,20,33,23,16,16,17,20,21,18,22,12,23,23,26,24,21,20,29,18,24]},{"label":"BTC reaching $100,000","topics":"100k,100000,milestone,hit,bitcoin","description":"The key topics currently being discussed in the crypto industry on social media include the milestone of Bitcoin reaching $100,000, the significance of this price point as a psychological milestone and symbol of achievement, predictions for Bitcoin's future price growth, the impact on global finance, and the implications for individual investors. There is also discussion about potential market volatility, the behavior of different investor groups such as boomers, and the importance of being prepared for potential market fluctuations. Overall, the sentiment is one of celebration for reaching this milestone and recognition of the transformative potential of Bitcoin and the crypto community.","data":[9,6,10,13,114,84,94,47,12,29,15,45,21,13,7,33,10,14,35,23,17,25,15,50,115,16,12,19,22,15,20,8,14,8,11,17,25,18,30,39,19,21,19,14,31,14,24,14,21,29,7,9,21,15,13]},{"label":"XRP","topics":"xrp,ripple,cap,3rd,largest","description":"Based on the messages from Twitter, it seems that XRP is a hot topic of discussion within the crypto community. Some key points mentioned include:\n\n- XRP is being talked about in relation to bridging to other cryptocurrencies like Solana and Ethereum.\n- There is speculation about XRP potentially reaching $5 in the near future.\n- Some users are warning against shorting XRP due to its volatile nature.\n- XRP has surpassed USDT to become the third largest cryptocurrency by market value.\n- There have been significant XRP unlocks by Ripple, raising questions about the impact on the market.\n- There are mixed opinions about XRP within the community, with some praising its potential and others expressing skepticism.\n\nOverall, it appears that XRP is a divisive topic within the crypto industry, with both supporters and critics voicing their opinions on its future prospects.","data":[20,8,5,11,3,1,8,12,7,5,12,7,8,8,2,12,8,10,25,10,5,15,8,19,25,7,9,14,9,5,15,17,10,7,7,15,17,6,18,17,17,15,11,11,17,10,50,16,14,9,3,8,10,12,19]},{"label":"DOGE","topics":"doge,dogecoin,shorts,rekt,elon","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin ($DOGE), Shiba Inu ($SHIB), Elon Musk's involvement with Dogecoin, the rise in Dogecoin's value, the potential for another bullish rally in Dogecoin, financial inequality, Patreon slots for crypto analysis, Moon Suit references, Data Ownership Protocol (DOP) token, and the overall crypto market trends. These topics are generating a lot of buzz and engagement within the crypto community on social media.","data":[2,4,4,4,4,1,4,5,5,5,8,7,7,6,220,9,6,10,9,7,11,17,11,9,12,7,2,5,11,6,8,6,11,8,5,5,14,9,13,4,8,7,11,16,7,7,13,5,16,6,5,2,11,6,7]},{"label":"ETH","topics":"eth,ethereum,4k,4000,breakout","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry, specifically regarding Ethereum ($ETH), include:\n\n1. Price Movement: There is excitement and speculation about the price of Ethereum potentially exploding, with mentions of reaching milestones such as $3,900, $4,000, and even $9,999. There are also discussions about a potential breakout above $3,500 resistance and a Golden Cross occurring on $ETH, with expectations of reaching $6k next.\n\n2. Technical Analysis: Traders and analysts are discussing technical indicators such as a breakout from a bull flag pattern on the weekly chart, short-term targets of $3,900 and long-term targets of $6,250. There is also mention of an upcoming explosive phase of Altcoin Season.\n\n3. Ethereum Foundation and ENS Season: Speculation surrounds the actions of the Ethereum Foundation in response to the price movements, with questions about potential coin dumps. Additionally, there is anticipation for the ENS season to occur, with expectations of Ethereum heading towards $5k.\n\n4. Market Momentum: The overall sentiment in the cryptocurrency market is positive, with Ethereum's surge to $3,700 highlighting ongoing momentum and growing interest from investors worldwide. There is also mention of Ether's 8% increase in the last 24 hours, as well as comparisons to Bitcoin and Solana dominance.\n\nOverall, the discussions on Twitter suggest a mix of excitement, speculation, technical analysis, and market trends surrounding Ethereum and the broader cryptocurrency industry.","data":[7,3,8,4,1,0,13,12,3,3,10,5,3,5,2,12,110,9,11,9,6,10,4,11,15,6,3,9,11,12,9,6,10,8,4,9,8,8,16,23,7,5,4,13,7,5,10,5,19,11,9,8,8,6,6]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The messages from Twitter indicate a strong interest and discussion around meme coins within the crypto industry. Some key points mentioned include the comparison between meme coins and utility coins, the excitement around hitting x100 on a memecoin, the launch of a staking platform for meme token holders, and the potential for art memecoins to be curated by exchanges. There is also a focus on specific meme coins such as $DOGE, $PEPE, and $GIGA, as well as individuals who are influential in the memecoin community. Overall, the sentiment towards meme coins seems to be a mix of excitement, skepticism, and passion.","data":[4,0,6,6,3,1,2,4,9,7,10,8,6,5,11,12,8,6,8,6,6,12,8,8,5,7,8,7,8,5,15,81,50,5,10,4,12,10,5,14,13,5,6,8,5,7,9,5,15,7,9,3,8,9,5]},{"label":"SOL","topics":"solana,sol,chain,kraken,ethereum","description":"The key topics discussed in the messages from Twitter about the crypto industry include NFTs on Solana, the growth and potential of Solana as a network, the development of new projects and NFT collections on Solana, the integration of Solana with Ethereum through Neon EVM, the potential price increase of SOL and other ecosystem coins, and the listing of new tokens like $ORDER on Solana. Overall, the sentiment seems positive towards Solana and its ecosystem, with discussions about potential growth and opportunities for investors.","data":[5,9,8,2,6,1,7,3,2,10,10,5,4,4,2,8,12,13,4,6,2,10,9,5,6,2,7,7,7,8,11,8,2,2,5,6,4,7,6,9,11,8,1,10,55,6,8,5,3,10,3,10,3,10,8]},{"label":"BTC Price","topics":"candle,retest,lower,btc,target","description":"The topic discussed in the Twitter messages is the current price movement and potential breakout of Bitcoin ($BTC). Traders are analyzing various technical indicators such as volume, price compression, daily active addresses, transaction volume, and whale activity to predict whether Bitcoin will go up or down. There is also mention of Elliott Wave analysis and short-term price targets. Some traders are bullish on Bitcoin, while others are uncertain about the next move and are considering potential pullbacks. Additionally, there is discussion about the market shifting from Bitcoin to altcoins, with long-term holders cashing out. Overall, there is anticipation for a potential upside move in Bitcoin in the coming weeks.","data":[8,3,2,3,28,24,4,26,3,10,6,2,15,3,3,3,3,5,6,1,2,5,2,3,7,3,3,1,2,6,7,3,4,5,3,4,1,4,13,5,4,1,2,7,0,3,4,11,3,2,5,10,1,7,1]},{"label":"NFT","topics":"nft,nfts,collections,floor,collection","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. NFT sellers remorse and the difficulty of rebuying sold NFTs\n2. Legacy and dead NFT projects coming back to life\n3. CryptoPunks leading the November NFT rally with a 47% floor price increase\n4. Speculation about the next NFT bull market and the importance of @super_yeti offers\n5. Predictions about a dip in NFT prices and the opportunity to accumulate major collections\n6. The growth of the NFT market due to the crypto bull run\n7. The surge in NFT sales reaching the highest daily volume in 7 months\n8. The transformation of ownership and interaction with products through Phygital NFTs\n9. The start of an NFT resurgence and advice on which NFTs to invest in\n10. Criticism of people who underestimate the value of high-quality NFTs and the potential profits from next-gen NFTs.","data":[4,2,3,9,1,3,1,1,8,4,6,3,11,4,1,3,4,2,12,6,6,4,1,5,2,4,2,4,7,6,6,7,9,6,33,1,8,3,4,5,4,7,13,3,7,2,4,5,6,2,4,5,5,5,7]},{"label":"APE","topics":"ape,apes,apechain,bored,floor","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- ApeChain and the value of owning apes on the platform\n- The rise of NFTs such as Bored Apes and CryptoPunks\n- Price fluctuations and investment opportunities in cryptocurrencies like $ETH and $APE\n- Ape Improvement Proposals and community events for ape holders\n- Trading strategies and potential profits in the current market\n- Differentiating between various crypto apes and their potential for growth\n- Opportunities for high returns on investment through trading and selling crypto assets\n- The importance of diversifying investments beyond holding NFTs\n- Success stories of traders who have made significant profits in a short period of time\n- Updates on upcoming NFT drops and new projects in the crypto space.","data":[1,4,49,7,2,0,23,3,7,1,4,1,1,6,3,3,0,3,6,6,2,3,6,2,2,1,4,5,1,4,5,0,7,2,4,1,4,1,4,4,3,1,5,2,1,2,4,5,8,5,3,1,4,3,3]},{"label":"BTC Mining","topics":"mining,energy,miners,grid,revenue","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. Bitcoin mining becoming cheaper and more profitable\n2. Shift from revenue incentives to sovereignty incentives in Bitcoin mining\n3. Increase in Bitcoin mining revenue due to price climb\n4. Switzerland studying how Bitcoin mining can optimize energy use and reduce waste\n5. Fair mining practices and decentralization in crypto\n6. Potential of Bitcoin mining to stabilize energy grid and utilize surplus energy\n7. Comparison of security and cost to attack Bitcoin, Litecoin, and Dogecoin\n8. Marathon Digital leading in Bitcoin mining with innovative solutions\n9. Argo Blockchain raising funds for expansion in Bitcoin mining and high-performance computing\n\nOverall, the messages reflect a mix of positive developments and discussions around Bitcoin mining, revenue, sustainability, security, and innovation in the crypto industry.","data":[5,4,3,6,6,40,4,4,3,1,5,3,0,1,8,1,4,6,0,9,1,1,3,2,2,2,3,4,0,1,0,5,22,4,5,3,8,4,5,7,2,6,5,0,2,1,7,2,1,1,3,4,5,1,4]},{"label":"PEPE","topics":"pepe,frens,frog,whale,shib","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the cryptocurrency $PEPE, which has recently been listed on Bitstamp and is experiencing bullish movement. There is also mention of technical analysis, Fibonacci retracement, and a potential price breakout for $PEPE. Additionally, there is a comparison between $PEPE and $LTC in terms of market cap. The community is also engaging in auctions and voting on listing $PEPE on Arbitrum. Overall, there is excitement and optimism surrounding $PEPE in the crypto industry.","data":[4,1,4,4,0,3,4,4,3,2,3,2,7,1,1,4,1,1,2,11,3,5,0,5,6,3,4,1,2,8,2,1,3,2,5,5,57,4,2,7,7,3,3,7,4,4,0,0,3,4,2,4,2,5,2]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently being discussed in the crypto industry on social media accounts include:\n- The excitement around the release of new gaming products and experiences, such as the LG C1 OLED and various gaming chairs\n- The potential for gaming coins to gain traction in the market, despite not being widely discussed\n- The impact of blockchain technology on the gaming industry, with a focus on play-to-earn games\n- The role of companies like Gala Games in the Web3 gaming space\n- The importance of streamlining game development processes to empower smaller teams to create innovative games\n\nOverall, there is a strong focus on the intersection of gaming and cryptocurrency, with an emphasis on the potential for blockchain technology to revolutionize the gaming industry.","data":[2,2,3,5,0,0,2,2,0,3,2,0,5,4,2,5,1,6,4,4,71,2,3,0,0,8,1,3,5,2,4,0,3,4,4,1,3,18,1,4,2,1,2,2,5,0,3,0,6,3,7,3,6,3,4]},{"label":"ETF Flows","topics":"etfs,inflows,net,inflow,etf","description":"The key topics currently discussed in the crypto industry on Twitter include the surge in activity and record net inflows in Bitcoin and Ethereum spot ETFs, dominance of Nippon India AMC in the Indian ETF market, BlackRock's IBIT spot Bitcoin ETF surpassing $48 billion in assets under management, and the recent positive and negative net inflows in Bitcoin ETFs. There is also mention of the overall growth in the crypto market, with significant net inflows in cryptocurrency ETFs and the impact of global events on gold outflows in the ETF market.","data":[1,1,0,4,11,5,3,4,3,1,1,2,8,0,1,0,20,3,2,1,1,4,0,3,3,10,7,5,1,1,1,4,2,7,5,4,0,0,0,2,4,0,3,0,3,35,2,1,3,8,1,4,0,4,3]},{"label":"HYPE","topics":"hyperliquid,hype,airdrop,hyperliquidx,perps","description":"The key topics currently being discussed on Twitter about Hyperliquid ($HYPE) include:\n- Confusion about Hyperliquid's nature, with some users believing it to be a decentralized futures exchange and others claiming it is a Layer1 blockchain.\n- Positive feedback on Hyperliquid's smooth launch, with no downtime or claim issues reported.\n- Speculation about the potential price increase of $HYPE to $10 within 7 days, with one user promising to twerk on stream if it happens.\n- Criticism of Hyperliquid being a centralized exchange (CEX) pretending to be a decentralized exchange (DEX) due to closed source and lack of validators.\n- Discussion about Hyperliquid's high-performance L1 enabling fast, transparent, on-chain financial applications with sub-second latency.\n- Announcement of Hyperliquid launching a native token following a bullish October, bypassing venture capital entirely for a grassroots-based community airdrop.\n- Details about Hyperliquid's airdrop distribution, with a user receiving $830,000 in airdrop tokens.\n- Announcement of Hyperliquid being listed on CoinW on November 29, 2024, with a bounty program offering a 10,000 USDT reward.\n- Information about joining the Hyperliquid bounty program to share in 10,000 USDT rewards by registering, depositing, and trading HYPE/USDT.","data":[2,4,3,6,0,0,3,2,4,2,1,4,0,1,1,1,2,4,3,0,0,2,1,1,2,65,4,6,2,2,1,1,5,3,2,1,3,2,1,0,3,1,4,4,3,1,1,3,9,3,1,2,4,0,2]},{"label":"Altseason","topics":"altseason,bounce,altcoins,pump,xrp","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto community include the potential breakout of $VOXEL, the possibility of $XNO being the next pumper on Coinbase, a potential scalp opportunity with $XRP, the interest in $XYO and its collaboration with Tesla, the potential for gas prices to rise during a bull run, the recent dump and potential bounce of $SPA, the continuous rise of $XYO, the undervaluation of $XDC, the partnership between XDC Network and Archax, the potential market cap growth of $XYO, and the comparison of XVG's 100x pump in the 2017 bull market to current coins like XRP. Additionally, there is speculation about $VOXEL's climbing price with light volume, the potential face-melting rise of $XYO, and the meteoric activity and speculation surrounding $XYO being considered the best value in crypto.","data":[1,0,2,2,0,1,10,3,16,1,2,3,4,4,3,2,0,1,1,2,4,9,2,0,1,0,2,3,3,1,4,4,7,0,2,2,4,2,2,3,0,6,1,2,24,2,4,2,1,10,4,0,3,5,1]},{"label":"Art","topics":"art,artist,artists,cryptoart,work","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Artists mining for consensus in the presentation of digital work as art itself\n- The theory that artists look like their art\n- Iconic art by @LuchoPoletti in #ColdieCollection\n- The importance of art in the industry\n- Creating art in various ways\n- The role of themes in art discourse\n- New artwork appearing mysteriously on a wall of TRON headquarters\n- Sharing new collage artworks on a website\n- RHAUS Art Opening Day with @ChristiesInc\n- Artist Deniz Sağdıç turning waste into human portraits to draw attention to pollution\n- Being an artist as a lifetime career and lifestyle\n- Collecting art for inspiration and changing perspective on the world\n\nOverall, the messages highlight the significance of art in the crypto industry and the various ways artists are expressing themselves and creating impactful work.","data":[2,1,48,2,0,0,0,3,7,1,4,1,5,1,3,2,1,2,3,2,1,4,1,1,3,8,0,1,4,2,5,3,1,2,2,1,3,6,2,5,0,2,0,7,2,1,2,6,2,1,2,1,2,2,4]},{"label":"DeFi","topics":"defi,finance,polygon,security,decentralized","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi (Decentralized Finance) and its future evolution with the rise of AI and blockchain integration.\n2. The forecasted growth of the DeFi market to surpass 440 Billion USD by 2031.\n3. Discussions about Shido Network and its focus on mass adoption in the DeFi space.\n4. Speculation about Trump's DeFi coin hitting exchanges after the inauguration.\n5. Anticipated regulatory changes to open up DeFi like never before.\n6. Importance of understanding how DeFi protocols generate revenue for investments.\n7. Smart contract vulnerabilities and the importance of security in DeFi.\n8. Ways to conduct due diligence on DeFi yield farms to mitigate risks.\n9. Integration of community feedback in EOSI Finance to meet pro-traders' needs.\n10. Native Bitcoin DeFi and its potential to power the next generation of decentralized finance.\n11. Expert opinions on the future of DeFi and its lasting growth potential.\n12. Speculation on a potential boom in the DeFi sector with higher performing tokens.\n13. Game-changing innovations in the DeFi space, such as the Pyth Data Association's oracle system.\n\nThese topics reflect the current trends and discussions within the crypto industry on Twitter, highlighting the growing interest and developments in the DeFi space and its potential impact on the future of finance.","data":[3,4,2,1,2,1,5,5,2,4,2,3,1,9,2,2,0,4,3,4,3,3,2,1,1,4,6,3,5,3,3,6,2,2,7,4,5,3,6,1,4,5,2,1,4,6,2,1,2,1,3,9,3,2,1]},{"label":"SHIB","topics":"shiba,inu,shib,burn,burned","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Shiba Inu (SHIB) experiencing a surge in price and hitting all-time highs.\n2. Updates on the Shibarium Bridge security upgrade and the rise of Shiba Inu.\n3. Partnership announcements, such as Imaginary Ones partnering with Shib.io.\n4. Burning of tokens and updates on the BURNmas event.\n5. Speculation on buying and selling cryptocurrencies like Bitcoin, DOGE, SHIB, LEASH, and BONE.\n6. Projected price targets for Shiba Inu and other cryptocurrencies.\n7. Automated burn auctions powered by iAgent on Injective.\n8. Growth in network activity for altcoins like XRP Ledger, Shiba Inu, and Band.\n9. Proposal to burn a percentage of the SIDUS total supply passing with high participation.\n\nOverall, the discussions revolve around price movements, partnerships, burning of tokens, network growth, and future projections in the crypto industry.","data":[1,1,1,3,3,0,5,4,2,2,3,2,4,1,1,1,0,3,1,1,0,2,1,0,2,1,27,3,9,2,3,1,1,2,2,0,2,0,4,2,2,1,0,30,3,1,1,2,3,2,0,2,1,2,0]},{"label":"MOG","topics":"mog,moodeng,coinbase,listing,listed","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community include the listing of MOG Coin on Coinbase, the impact of this listing on the MOODENG thesis, the recognition of factors beyond trading volume and holder count by Coinbase, the rise in price of MOODENG after being listed on Solana, and the exponential growth of a new memecoin called Moo Deng. Additionally, there is excitement surrounding the potential for MOG Coin to reach a market cap near $1 billion following its listing on Coinbase. The community is also discussing the unique features of the memecoin ecosystem, such as Hamcaster, instant tippable/transferable capabilities, and the first memecoin index on Base. Overall, the sentiment is positive and optimistic about the future of these memecoins in the crypto market.","data":[5,7,2,1,0,0,5,0,3,0,13,4,2,1,0,2,0,1,0,1,1,3,3,2,2,1,2,1,2,22,0,4,18,2,1,1,5,1,2,3,0,0,2,0,3,6,2,1,1,3,2,5,1,1,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-48.ts b/priv/repo/major_topics_seed/data-48.ts deleted file mode 100644 index be8d7727b9..0000000000 --- a/priv/repo/major_topics_seed/data-48.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '28.11.24', - '29.11.24', - '29.11.24', - '29.11.24', - '29.11.24', - '29.11.24', - '29.11.24', - '29.11.24', - '30.11.24', - '30.11.24', - '30.11.24', - '30.11.24', - '30.11.24', - '30.11.24', - '30.11.24', - '30.11.24', - '01.12.24', - '01.12.24', - '01.12.24', - '01.12.24', - '01.12.24', - '01.12.24', - '01.12.24', - '01.12.24', - '02.12.24', - '02.12.24', - '02.12.24', - '02.12.24', - '02.12.24', - '02.12.24', - '02.12.24', - '02.12.24', - '03.12.24', - '03.12.24', - '03.12.24', - '03.12.24', - '03.12.24', - '03.12.24', - '03.12.24', - '03.12.24', - '04.12.24', - '04.12.24', - '04.12.24', - '04.12.24', - '04.12.24', - '04.12.24', - '04.12.24', - '04.12.24', - '05.12.24', - '05.12.24', - '05.12.24', - '05.12.24', - '05.12.24', - '05.12.24', - '05.12.24', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,tao,data', - description: - 'The key topics discussed in the messages from twitter include:\n- AI agents and their role in various industries such as gaming, creativity, and entertainment\n- The intersection of technology and culture, and the potential for AI agents to unlock new frontiers of creativity\n- The launch of new AI tokens on platforms like Solana\n- The development of AI-powered Web3 lifestyle apps\n- The mainstream adoption of crypto and the importance of showcasing projects to the public\n- The evolution of AI technology and its impact on society\n\nOverall, the messages highlight the growing importance and potential of AI agents in various sectors, as well as the continued innovation and development in the crypto industry.', - data: [ - 76, 230, 38, 28, 5, 4, 12, 15, 19, 17, 23, 27, 16, 20, 14, 12, 27, 27, 17, 36, 21, 22, 32, - 16, 19, 34, 32, 23, 24, 19, 31, 26, 16, 19, 24, 20, 33, 23, 16, 16, 17, 20, 21, 18, 22, 12, - 23, 23, 26, 24, 21, 20, 29, 18, 24, - ], - }, - { - label: 'BTC reaching $100,000', - topics: '100k,100000,milestone,hit,bitcoin', - description: - "The key topics currently being discussed in the crypto industry on social media include the milestone of Bitcoin reaching $100,000, the significance of this price point as a psychological milestone and symbol of achievement, predictions for Bitcoin's future price growth, the impact on global finance, and the implications for individual investors. There is also discussion about potential market volatility, the behavior of different investor groups such as boomers, and the importance of being prepared for potential market fluctuations. Overall, the sentiment is one of celebration for reaching this milestone and recognition of the transformative potential of Bitcoin and the crypto community.", - data: [ - 9, 6, 10, 13, 114, 84, 94, 47, 12, 29, 15, 45, 21, 13, 7, 33, 10, 14, 35, 23, 17, 25, 15, - 50, 115, 16, 12, 19, 22, 15, 20, 8, 14, 8, 11, 17, 25, 18, 30, 39, 19, 21, 19, 14, 31, 14, - 24, 14, 21, 29, 7, 9, 21, 15, 13, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,cap,3rd,largest', - description: - 'Based on the messages from Twitter, it seems that XRP is a hot topic of discussion within the crypto community. Some key points mentioned include:\n\n- XRP is being talked about in relation to bridging to other cryptocurrencies like Solana and Ethereum.\n- There is speculation about XRP potentially reaching $5 in the near future.\n- Some users are warning against shorting XRP due to its volatile nature.\n- XRP has surpassed USDT to become the third largest cryptocurrency by market value.\n- There have been significant XRP unlocks by Ripple, raising questions about the impact on the market.\n- There are mixed opinions about XRP within the community, with some praising its potential and others expressing skepticism.\n\nOverall, it appears that XRP is a divisive topic within the crypto industry, with both supporters and critics voicing their opinions on its future prospects.', - data: [ - 20, 8, 5, 11, 3, 1, 8, 12, 7, 5, 12, 7, 8, 8, 2, 12, 8, 10, 25, 10, 5, 15, 8, 19, 25, 7, 9, - 14, 9, 5, 15, 17, 10, 7, 7, 15, 17, 6, 18, 17, 17, 15, 11, 11, 17, 10, 50, 16, 14, 9, 3, 8, - 10, 12, 19, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,shorts,rekt,elon', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin ($DOGE), Shiba Inu ($SHIB), Elon Musk's involvement with Dogecoin, the rise in Dogecoin's value, the potential for another bullish rally in Dogecoin, financial inequality, Patreon slots for crypto analysis, Moon Suit references, Data Ownership Protocol (DOP) token, and the overall crypto market trends. These topics are generating a lot of buzz and engagement within the crypto community on social media.", - data: [ - 2, 4, 4, 4, 4, 1, 4, 5, 5, 5, 8, 7, 7, 6, 220, 9, 6, 10, 9, 7, 11, 17, 11, 9, 12, 7, 2, 5, - 11, 6, 8, 6, 11, 8, 5, 5, 14, 9, 13, 4, 8, 7, 11, 16, 7, 7, 13, 5, 16, 6, 5, 2, 11, 6, 7, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,4k,4000,breakout', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry, specifically regarding Ethereum ($ETH), include:\n\n1. Price Movement: There is excitement and speculation about the price of Ethereum potentially exploding, with mentions of reaching milestones such as $3,900, $4,000, and even $9,999. There are also discussions about a potential breakout above $3,500 resistance and a Golden Cross occurring on $ETH, with expectations of reaching $6k next.\n\n2. Technical Analysis: Traders and analysts are discussing technical indicators such as a breakout from a bull flag pattern on the weekly chart, short-term targets of $3,900 and long-term targets of $6,250. There is also mention of an upcoming explosive phase of Altcoin Season.\n\n3. Ethereum Foundation and ENS Season: Speculation surrounds the actions of the Ethereum Foundation in response to the price movements, with questions about potential coin dumps. Additionally, there is anticipation for the ENS season to occur, with expectations of Ethereum heading towards $5k.\n\n4. Market Momentum: The overall sentiment in the cryptocurrency market is positive, with Ethereum's surge to $3,700 highlighting ongoing momentum and growing interest from investors worldwide. There is also mention of Ether's 8% increase in the last 24 hours, as well as comparisons to Bitcoin and Solana dominance.\n\nOverall, the discussions on Twitter suggest a mix of excitement, speculation, technical analysis, and market trends surrounding Ethereum and the broader cryptocurrency industry.", - data: [ - 7, 3, 8, 4, 1, 0, 13, 12, 3, 3, 10, 5, 3, 5, 2, 12, 110, 9, 11, 9, 6, 10, 4, 11, 15, 6, 3, - 9, 11, 12, 9, 6, 10, 8, 4, 9, 8, 8, 16, 23, 7, 5, 4, 13, 7, 5, 10, 5, 19, 11, 9, 8, 8, 6, 6, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The messages from Twitter indicate a strong interest and discussion around meme coins within the crypto industry. Some key points mentioned include the comparison between meme coins and utility coins, the excitement around hitting x100 on a memecoin, the launch of a staking platform for meme token holders, and the potential for art memecoins to be curated by exchanges. There is also a focus on specific meme coins such as $DOGE, $PEPE, and $GIGA, as well as individuals who are influential in the memecoin community. Overall, the sentiment towards meme coins seems to be a mix of excitement, skepticism, and passion.', - data: [ - 4, 0, 6, 6, 3, 1, 2, 4, 9, 7, 10, 8, 6, 5, 11, 12, 8, 6, 8, 6, 6, 12, 8, 8, 5, 7, 8, 7, 8, - 5, 15, 81, 50, 5, 10, 4, 12, 10, 5, 14, 13, 5, 6, 8, 5, 7, 9, 5, 15, 7, 9, 3, 8, 9, 5, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,chain,kraken,ethereum', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include NFTs on Solana, the growth and potential of Solana as a network, the development of new projects and NFT collections on Solana, the integration of Solana with Ethereum through Neon EVM, the potential price increase of SOL and other ecosystem coins, and the listing of new tokens like $ORDER on Solana. Overall, the sentiment seems positive towards Solana and its ecosystem, with discussions about potential growth and opportunities for investors.', - data: [ - 5, 9, 8, 2, 6, 1, 7, 3, 2, 10, 10, 5, 4, 4, 2, 8, 12, 13, 4, 6, 2, 10, 9, 5, 6, 2, 7, 7, 7, - 8, 11, 8, 2, 2, 5, 6, 4, 7, 6, 9, 11, 8, 1, 10, 55, 6, 8, 5, 3, 10, 3, 10, 3, 10, 8, - ], - }, - { - label: 'BTC Price', - topics: 'candle,retest,lower,btc,target', - description: - 'The topic discussed in the Twitter messages is the current price movement and potential breakout of Bitcoin ($BTC). Traders are analyzing various technical indicators such as volume, price compression, daily active addresses, transaction volume, and whale activity to predict whether Bitcoin will go up or down. There is also mention of Elliott Wave analysis and short-term price targets. Some traders are bullish on Bitcoin, while others are uncertain about the next move and are considering potential pullbacks. Additionally, there is discussion about the market shifting from Bitcoin to altcoins, with long-term holders cashing out. Overall, there is anticipation for a potential upside move in Bitcoin in the coming weeks.', - data: [ - 8, 3, 2, 3, 28, 24, 4, 26, 3, 10, 6, 2, 15, 3, 3, 3, 3, 5, 6, 1, 2, 5, 2, 3, 7, 3, 3, 1, 2, - 6, 7, 3, 4, 5, 3, 4, 1, 4, 13, 5, 4, 1, 2, 7, 0, 3, 4, 11, 3, 2, 5, 10, 1, 7, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collections,floor,collection', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. NFT sellers remorse and the difficulty of rebuying sold NFTs\n2. Legacy and dead NFT projects coming back to life\n3. CryptoPunks leading the November NFT rally with a 47% floor price increase\n4. Speculation about the next NFT bull market and the importance of @super_yeti offers\n5. Predictions about a dip in NFT prices and the opportunity to accumulate major collections\n6. The growth of the NFT market due to the crypto bull run\n7. The surge in NFT sales reaching the highest daily volume in 7 months\n8. The transformation of ownership and interaction with products through Phygital NFTs\n9. The start of an NFT resurgence and advice on which NFTs to invest in\n10. Criticism of people who underestimate the value of high-quality NFTs and the potential profits from next-gen NFTs.', - data: [ - 4, 2, 3, 9, 1, 3, 1, 1, 8, 4, 6, 3, 11, 4, 1, 3, 4, 2, 12, 6, 6, 4, 1, 5, 2, 4, 2, 4, 7, 6, - 6, 7, 9, 6, 33, 1, 8, 3, 4, 5, 4, 7, 13, 3, 7, 2, 4, 5, 6, 2, 4, 5, 5, 5, 7, - ], - }, - { - label: 'APE', - topics: 'ape,apes,apechain,bored,floor', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- ApeChain and the value of owning apes on the platform\n- The rise of NFTs such as Bored Apes and CryptoPunks\n- Price fluctuations and investment opportunities in cryptocurrencies like $ETH and $APE\n- Ape Improvement Proposals and community events for ape holders\n- Trading strategies and potential profits in the current market\n- Differentiating between various crypto apes and their potential for growth\n- Opportunities for high returns on investment through trading and selling crypto assets\n- The importance of diversifying investments beyond holding NFTs\n- Success stories of traders who have made significant profits in a short period of time\n- Updates on upcoming NFT drops and new projects in the crypto space.', - data: [ - 1, 4, 49, 7, 2, 0, 23, 3, 7, 1, 4, 1, 1, 6, 3, 3, 0, 3, 6, 6, 2, 3, 6, 2, 2, 1, 4, 5, 1, 4, - 5, 0, 7, 2, 4, 1, 4, 1, 4, 4, 3, 1, 5, 2, 1, 2, 4, 5, 8, 5, 3, 1, 4, 3, 3, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,energy,miners,grid,revenue', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. Bitcoin mining becoming cheaper and more profitable\n2. Shift from revenue incentives to sovereignty incentives in Bitcoin mining\n3. Increase in Bitcoin mining revenue due to price climb\n4. Switzerland studying how Bitcoin mining can optimize energy use and reduce waste\n5. Fair mining practices and decentralization in crypto\n6. Potential of Bitcoin mining to stabilize energy grid and utilize surplus energy\n7. Comparison of security and cost to attack Bitcoin, Litecoin, and Dogecoin\n8. Marathon Digital leading in Bitcoin mining with innovative solutions\n9. Argo Blockchain raising funds for expansion in Bitcoin mining and high-performance computing\n\nOverall, the messages reflect a mix of positive developments and discussions around Bitcoin mining, revenue, sustainability, security, and innovation in the crypto industry.', - data: [ - 5, 4, 3, 6, 6, 40, 4, 4, 3, 1, 5, 3, 0, 1, 8, 1, 4, 6, 0, 9, 1, 1, 3, 2, 2, 2, 3, 4, 0, 1, - 0, 5, 22, 4, 5, 3, 8, 4, 5, 7, 2, 6, 5, 0, 2, 1, 7, 2, 1, 1, 3, 4, 5, 1, 4, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frens,frog,whale,shib', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the cryptocurrency $PEPE, which has recently been listed on Bitstamp and is experiencing bullish movement. There is also mention of technical analysis, Fibonacci retracement, and a potential price breakout for $PEPE. Additionally, there is a comparison between $PEPE and $LTC in terms of market cap. The community is also engaging in auctions and voting on listing $PEPE on Arbitrum. Overall, there is excitement and optimism surrounding $PEPE in the crypto industry.', - data: [ - 4, 1, 4, 4, 0, 3, 4, 4, 3, 2, 3, 2, 7, 1, 1, 4, 1, 1, 2, 11, 3, 5, 0, 5, 6, 3, 4, 1, 2, 8, - 2, 1, 3, 2, 5, 5, 57, 4, 2, 7, 7, 3, 3, 7, 4, 4, 0, 0, 3, 4, 2, 4, 2, 5, 2, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently being discussed in the crypto industry on social media accounts include:\n- The excitement around the release of new gaming products and experiences, such as the LG C1 OLED and various gaming chairs\n- The potential for gaming coins to gain traction in the market, despite not being widely discussed\n- The impact of blockchain technology on the gaming industry, with a focus on play-to-earn games\n- The role of companies like Gala Games in the Web3 gaming space\n- The importance of streamlining game development processes to empower smaller teams to create innovative games\n\nOverall, there is a strong focus on the intersection of gaming and cryptocurrency, with an emphasis on the potential for blockchain technology to revolutionize the gaming industry.', - data: [ - 2, 2, 3, 5, 0, 0, 2, 2, 0, 3, 2, 0, 5, 4, 2, 5, 1, 6, 4, 4, 71, 2, 3, 0, 0, 8, 1, 3, 5, 2, - 4, 0, 3, 4, 4, 1, 3, 18, 1, 4, 2, 1, 2, 2, 5, 0, 3, 0, 6, 3, 7, 3, 6, 3, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,net,inflow,etf', - description: - "The key topics currently discussed in the crypto industry on Twitter include the surge in activity and record net inflows in Bitcoin and Ethereum spot ETFs, dominance of Nippon India AMC in the Indian ETF market, BlackRock's IBIT spot Bitcoin ETF surpassing $48 billion in assets under management, and the recent positive and negative net inflows in Bitcoin ETFs. There is also mention of the overall growth in the crypto market, with significant net inflows in cryptocurrency ETFs and the impact of global events on gold outflows in the ETF market.", - data: [ - 1, 1, 0, 4, 11, 5, 3, 4, 3, 1, 1, 2, 8, 0, 1, 0, 20, 3, 2, 1, 1, 4, 0, 3, 3, 10, 7, 5, 1, 1, - 1, 4, 2, 7, 5, 4, 0, 0, 0, 2, 4, 0, 3, 0, 3, 35, 2, 1, 3, 8, 1, 4, 0, 4, 3, - ], - }, - { - label: 'HYPE', - topics: 'hyperliquid,hype,airdrop,hyperliquidx,perps', - description: - "The key topics currently being discussed on Twitter about Hyperliquid ($HYPE) include:\n- Confusion about Hyperliquid's nature, with some users believing it to be a decentralized futures exchange and others claiming it is a Layer1 blockchain.\n- Positive feedback on Hyperliquid's smooth launch, with no downtime or claim issues reported.\n- Speculation about the potential price increase of $HYPE to $10 within 7 days, with one user promising to twerk on stream if it happens.\n- Criticism of Hyperliquid being a centralized exchange (CEX) pretending to be a decentralized exchange (DEX) due to closed source and lack of validators.\n- Discussion about Hyperliquid's high-performance L1 enabling fast, transparent, on-chain financial applications with sub-second latency.\n- Announcement of Hyperliquid launching a native token following a bullish October, bypassing venture capital entirely for a grassroots-based community airdrop.\n- Details about Hyperliquid's airdrop distribution, with a user receiving $830,000 in airdrop tokens.\n- Announcement of Hyperliquid being listed on CoinW on November 29, 2024, with a bounty program offering a 10,000 USDT reward.\n- Information about joining the Hyperliquid bounty program to share in 10,000 USDT rewards by registering, depositing, and trading HYPE/USDT.", - data: [ - 2, 4, 3, 6, 0, 0, 3, 2, 4, 2, 1, 4, 0, 1, 1, 1, 2, 4, 3, 0, 0, 2, 1, 1, 2, 65, 4, 6, 2, 2, - 1, 1, 5, 3, 2, 1, 3, 2, 1, 0, 3, 1, 4, 4, 3, 1, 1, 3, 9, 3, 1, 2, 4, 0, 2, - ], - }, - { - label: 'Altseason', - topics: 'altseason,bounce,altcoins,pump,xrp', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto community include the potential breakout of $VOXEL, the possibility of $XNO being the next pumper on Coinbase, a potential scalp opportunity with $XRP, the interest in $XYO and its collaboration with Tesla, the potential for gas prices to rise during a bull run, the recent dump and potential bounce of $SPA, the continuous rise of $XYO, the undervaluation of $XDC, the partnership between XDC Network and Archax, the potential market cap growth of $XYO, and the comparison of XVG's 100x pump in the 2017 bull market to current coins like XRP. Additionally, there is speculation about $VOXEL's climbing price with light volume, the potential face-melting rise of $XYO, and the meteoric activity and speculation surrounding $XYO being considered the best value in crypto.", - data: [ - 1, 0, 2, 2, 0, 1, 10, 3, 16, 1, 2, 3, 4, 4, 3, 2, 0, 1, 1, 2, 4, 9, 2, 0, 1, 0, 2, 3, 3, 1, - 4, 4, 7, 0, 2, 2, 4, 2, 2, 3, 0, 6, 1, 2, 24, 2, 4, 2, 1, 10, 4, 0, 3, 5, 1, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,cryptoart,work', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Artists mining for consensus in the presentation of digital work as art itself\n- The theory that artists look like their art\n- Iconic art by @LuchoPoletti in #ColdieCollection\n- The importance of art in the industry\n- Creating art in various ways\n- The role of themes in art discourse\n- New artwork appearing mysteriously on a wall of TRON headquarters\n- Sharing new collage artworks on a website\n- RHAUS Art Opening Day with @ChristiesInc\n- Artist Deniz Sağdıç turning waste into human portraits to draw attention to pollution\n- Being an artist as a lifetime career and lifestyle\n- Collecting art for inspiration and changing perspective on the world\n\nOverall, the messages highlight the significance of art in the crypto industry and the various ways artists are expressing themselves and creating impactful work.', - data: [ - 2, 1, 48, 2, 0, 0, 0, 3, 7, 1, 4, 1, 5, 1, 3, 2, 1, 2, 3, 2, 1, 4, 1, 1, 3, 8, 0, 1, 4, 2, - 5, 3, 1, 2, 2, 1, 3, 6, 2, 5, 0, 2, 0, 7, 2, 1, 2, 6, 2, 1, 2, 1, 2, 2, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,polygon,security,decentralized', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi (Decentralized Finance) and its future evolution with the rise of AI and blockchain integration.\n2. The forecasted growth of the DeFi market to surpass 440 Billion USD by 2031.\n3. Discussions about Shido Network and its focus on mass adoption in the DeFi space.\n4. Speculation about Trump's DeFi coin hitting exchanges after the inauguration.\n5. Anticipated regulatory changes to open up DeFi like never before.\n6. Importance of understanding how DeFi protocols generate revenue for investments.\n7. Smart contract vulnerabilities and the importance of security in DeFi.\n8. Ways to conduct due diligence on DeFi yield farms to mitigate risks.\n9. Integration of community feedback in EOSI Finance to meet pro-traders' needs.\n10. Native Bitcoin DeFi and its potential to power the next generation of decentralized finance.\n11. Expert opinions on the future of DeFi and its lasting growth potential.\n12. Speculation on a potential boom in the DeFi sector with higher performing tokens.\n13. Game-changing innovations in the DeFi space, such as the Pyth Data Association's oracle system.\n\nThese topics reflect the current trends and discussions within the crypto industry on Twitter, highlighting the growing interest and developments in the DeFi space and its potential impact on the future of finance.", - data: [ - 3, 4, 2, 1, 2, 1, 5, 5, 2, 4, 2, 3, 1, 9, 2, 2, 0, 4, 3, 4, 3, 3, 2, 1, 1, 4, 6, 3, 5, 3, 3, - 6, 2, 2, 7, 4, 5, 3, 6, 1, 4, 5, 2, 1, 4, 6, 2, 1, 2, 1, 3, 9, 3, 2, 1, - ], - }, - { - label: 'SHIB', - topics: 'shiba,inu,shib,burn,burned', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Shiba Inu (SHIB) experiencing a surge in price and hitting all-time highs.\n2. Updates on the Shibarium Bridge security upgrade and the rise of Shiba Inu.\n3. Partnership announcements, such as Imaginary Ones partnering with Shib.io.\n4. Burning of tokens and updates on the BURNmas event.\n5. Speculation on buying and selling cryptocurrencies like Bitcoin, DOGE, SHIB, LEASH, and BONE.\n6. Projected price targets for Shiba Inu and other cryptocurrencies.\n7. Automated burn auctions powered by iAgent on Injective.\n8. Growth in network activity for altcoins like XRP Ledger, Shiba Inu, and Band.\n9. Proposal to burn a percentage of the SIDUS total supply passing with high participation.\n\nOverall, the discussions revolve around price movements, partnerships, burning of tokens, network growth, and future projections in the crypto industry.', - data: [ - 1, 1, 1, 3, 3, 0, 5, 4, 2, 2, 3, 2, 4, 1, 1, 1, 0, 3, 1, 1, 0, 2, 1, 0, 2, 1, 27, 3, 9, 2, - 3, 1, 1, 2, 2, 0, 2, 0, 4, 2, 2, 1, 0, 30, 3, 1, 1, 2, 3, 2, 0, 2, 1, 2, 0, - ], - }, - { - label: 'MOG', - topics: 'mog,moodeng,coinbase,listing,listed', - description: - 'Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community include the listing of MOG Coin on Coinbase, the impact of this listing on the MOODENG thesis, the recognition of factors beyond trading volume and holder count by Coinbase, the rise in price of MOODENG after being listed on Solana, and the exponential growth of a new memecoin called Moo Deng. Additionally, there is excitement surrounding the potential for MOG Coin to reach a market cap near $1 billion following its listing on Coinbase. The community is also discussing the unique features of the memecoin ecosystem, such as Hamcaster, instant tippable/transferable capabilities, and the first memecoin index on Base. Overall, the sentiment is positive and optimistic about the future of these memecoins in the crypto market.', - data: [ - 5, 7, 2, 1, 0, 0, 5, 0, 3, 0, 13, 4, 2, 1, 0, 2, 0, 1, 0, 1, 1, 3, 3, 2, 2, 1, 2, 1, 2, 22, - 0, 4, 18, 2, 1, 1, 5, 1, 2, 3, 0, 0, 2, 0, 3, 6, 2, 1, 1, 3, 2, 5, 1, 1, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-49.json b/priv/repo/major_topics_seed/data-49.json deleted file mode 100644 index e38da42d3b..0000000000 --- a/priv/repo/major_topics_seed/data-49.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["05.12.24","06.12.24","06.12.24","06.12.24","06.12.24","06.12.24","06.12.24","06.12.24","07.12.24","07.12.24","07.12.24","07.12.24","07.12.24","07.12.24","07.12.24","07.12.24","08.12.24","08.12.24","08.12.24","08.12.24","08.12.24","08.12.24","08.12.24","08.12.24","09.12.24","09.12.24","09.12.24","09.12.24","09.12.24","09.12.24","09.12.24","09.12.24","10.12.24","10.12.24","10.12.24","10.12.24","10.12.24","10.12.24","10.12.24","10.12.24","11.12.24","11.12.24","11.12.24","11.12.24","11.12.24","11.12.24","11.12.24","11.12.24","12.12.24","12.12.24","12.12.24","12.12.24","12.12.24","12.12.24","12.12.24"],"datasets":[{"label":"BTC","topics":"fiat,bitcoin,money,understand,currency","description":"Based on the messages from Twitter, it is evident that Bitcoin is a popular topic of discussion within the crypto community. Some key points mentioned include:\n- Bitcoin being seen as the ultimate status good for nation states\n- Bitcoin being described as deflationary money\n- The potential for Bitcoin to become a national security threat if other nations become rich in Bitcoin\n- The importance of investing in Bitcoin for a better future\n- The idea that Bitcoin cannot keep replacing central banks forever\n- The need for a significant event to occur for individuals to rethink their views on Bitcoin\n\nOverall, it is clear that Bitcoin continues to be a significant and evolving topic within the crypto industry, with various perspectives and opinions being shared on its potential impact and future trajectory.","data":[19,9,12,23,78,97,9,25,26,21,11,18,24,17,11,18,10,40,32,20,20,27,22,24,16,19,29,31,17,18,17,15,34,9,19,30,18,23,12,17,14,23,18,16,9,24,14,28,36,8,34,31,20,17,22]},{"label":"ETH","topics":"eth,4000,4k,ethereum,target","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Ethereum (ETH) price reaching $4k and potential for further growth to $5k, $6k, and even $7k.\n2. Recent sale of EtherRock #19 for 235 ETH (~$944K) and other NFT sales.\n3. Predictions for ETH to potentially reach $20,000 USD in the current crypto cycle.\n4. Institutional demand and structural shifts impacting ETH price.\n5. Speculation on ETH breaking all-time highs and the North Star coordination problem.\n6. Discussion on the potential for ETH to reach $5k with odds at just 8% according to Derive.\n7. Excitement and optimism surrounding ETH's market performance and potential for new all-time highs.\n8. Interest in NFTs and unique digital assets being sold for ETH.\n9. Analysis of yearly highs for ETH and the conviction of investors paying off.\n10. Mention of other altcoins like XRP and the potential for surprises in the crypto market.\n\nOverall, the sentiment around Ethereum and the crypto industry appears to be positive, with a focus on price movements, NFT sales, institutional involvement, and future growth potential.","data":[11,3,6,11,6,0,22,13,4,13,5,5,5,4,9,11,126,6,11,7,19,7,15,23,5,11,1,9,17,23,9,5,7,3,5,5,9,15,8,10,12,7,12,10,9,7,15,11,15,7,4,6,8,9,4]},{"label":"AI","topics":"ai,agents,agent,humans,future","description":"The messages from twitter suggest that there is a growing interest and excitement surrounding AI technology in the crypto industry. Topics such as AI-driven conversations, AI replacing legal counsel and compliance employees, AI in recruitment, AI-powered shopping apps, AI collaborative collections, and AI agents providing valuable feedback are being discussed. There is also mention of the potential for AI to transform medicine globally, with China's AI hospitals leading the way. Overall, the sentiment seems to be positive towards the potential of AI in the crypto industry and beyond.","data":[4,100,8,8,3,0,4,10,5,4,7,9,7,1,5,10,1,8,10,22,15,7,8,5,12,13,16,7,3,6,13,5,10,12,7,8,3,7,1,4,8,7,6,5,11,8,7,13,9,8,8,8,5,8,7]},{"label":"DOGE","topics":"doge,dogecoin,elonmusk,elon,department","description":"The key topics currently discussed in the messages from twitter about Dogecoin ($DOGE) include:\n- Dogecoin hitting $0.48 and working towards $0.46\n- Speculation on the 30-day forecast for Dogecoin\n- Potential impact of inflation data on Dogecoin's market\n- Calls for action from influential figures like Elon Musk and Vivek Ramaswamy\n- Introduction of an exclusive $DOGE in-game skin as an NFT\n- Comparison to previous price movements and potential for a surge\n- Price predictions ranging from $0.32 to $0.46\n- Surging prices of other cryptocurrencies like Bitcoin ($BTC) and Ethereum ($ETH)\n- Personal anecdotes about paying fines with Dogecoin\n- Technical analysis indicating bullish momentum for Dogecoin, with a focus on price levels around $0.46\n- Positive indicators for Dogecoin's outlook, such as increased network activity and decreased Mean Dollar Invested Age (MDIA)","data":[3,1,8,5,1,0,6,3,4,3,4,4,4,7,163,5,2,7,5,1,10,7,7,15,5,1,2,9,2,11,5,3,8,0,3,6,2,2,6,5,4,2,7,4,3,5,6,4,15,5,4,3,7,6,2]},{"label":"PEPE","topics":"pepe,cap,shib,coin,billion","description":"The key topics discussed in the messages from Twitter are:\n- $PEPE hitting a market cap of over $10 billion\n- Speculation on $PEPE's potential market cap reaching $20 billion\n- Comparison of $PEPE to other meme coins like $SHIB\n- Predictions on $PEPE's future price movements\n- $PEPE surpassing other cryptocurrencies like UNI, Litecoin, and NEAR in market cap\n- Discussion on whether $PEPE can maintain its momentum or if a correction is imminent\n\nOverall, the sentiment towards $PEPE in the messages is positive, with users expressing excitement about its growth potential and market performance.","data":[7,3,3,3,1,0,10,4,7,8,8,6,3,6,2,5,1,3,9,5,12,5,5,19,1,7,3,5,3,6,3,7,7,5,3,74,49,7,1,8,5,4,5,9,2,4,12,7,9,5,5,7,6,10,5]},{"label":"BTC $100k","topics":"100k,100000,target,bitcoin,hit","description":"The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin price predictions, with mentions of hitting $94k, $98k, $100k, $110k, $118k, $129k, $150k, and even $1 million\n- The normalization of Bitcoin reaching $100k and its significance compared to other price points\n- Speculation on how high Bitcoin will go this year and by specific future dates like December 2024 and 2025\n- References to Bitcoin's all-time high, reaching $99,860 in November, and potential future highs\n- Analysis from DeFi derivatives platforms predicting Bitcoin's potential rise to fresh highs by January\n- Mention of ARK's AVIV model predicting a $129,000 target for Bitcoin if bullish momentum holds through 2025\n\nOverall, the sentiment seems to be optimistic about Bitcoin's price potential and the possibility of reaching new highs in the near future.","data":[1,2,5,6,25,52,9,16,3,3,5,4,6,2,4,7,2,15,8,4,7,5,4,22,2,4,3,6,4,9,8,4,4,3,5,3,6,16,16,13,8,7,8,0,1,2,6,4,5,5,4,5,3,5,6]},{"label":"GameFi","topics":"gaming,game,games,gamefi,play","description":"The key topics discussed in the messages from twitter are related to the crypto industry and gaming. Some of the specific topics mentioned include:\n- Ronin Network\n- Crypto as a game of ping pong\n- TAA destroying modern gaming\n- Game Theory\n- AceTCG launching \"Alpha Cards\" NFT collection\n- Web3 Browser Lobbies moving to in-game app\n- World Mobile's entry into the United States\n- Gunzilla Games becoming a gaming powerhouse\n- Oasys being nominated for Best Ecosystem in the PlayToEarn Blockchain Game Awards 2024\n- Listing of $PLAY token for Web3 gaming ecosystem\n\nOverall, the messages highlight the growing influence of crypto and blockchain technology in the gaming industry, as well as the innovative developments and collaborations taking place within the space.","data":[3,1,2,3,2,1,4,2,5,5,6,3,6,3,1,5,3,9,4,70,7,9,3,3,5,5,6,9,4,6,3,2,7,10,11,6,33,5,1,8,3,6,1,7,5,1,5,3,8,2,4,0,4,5,8]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coin","description":"The key topics discussed in the messages from twitter about the crypto industry are meme coins, memecoin launches, L2 blockchain technology, market cap of meme coins, potential meme coin investments, incentive alignment in meme coin projects, and the dominance of meme coins in 2025. The messages also mention specific meme coins such as $DOG, $APU, $SPX, $BOBO, $PEPE, $GIGA, $WIF, $BRETT, $PNUT, $FLOKI, $BOME, and $PEPE. Additionally, the messages highlight the involvement of top pro traders in riding the memecoin wave and using smart algorithms for trading meme coins.","data":[5,1,3,4,3,1,0,3,7,8,6,1,6,1,2,3,3,11,3,4,1,9,7,6,6,3,6,8,10,7,9,93,7,3,3,3,2,4,2,6,5,6,6,3,4,7,5,2,5,8,3,4,4,6,2]},{"label":"SOL","topics":"solana,sol,solanas,developers,ethereum","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry related to Solana ($SOL) include:\n1. NFTs on Solana: There is excitement about minting NFTs on Solana and discussions about the potential for NFTs to make a comeback on the platform.\n2. $SOL ETF Approval: There are speculations about the likelihood of a $SOL ETF getting approved next year.\n3. Price Predictions: There are price predictions for $SOL reaching $4,000 based on technical analysis patterns.\n4. Transaction Volume: There is a significant increase in yearly SOL transaction volume.\n5. $SHARK Token: Discussion about the $SHARK token and its use case in P2P loan lending on Solana.\n6. Trading Strategies: Discussions about trading strategies such as hedging bags with funding on shorts and buying the dips.\n7. Market Shift: Observations about the market shifting from SOL memes to utilities, with a focus on Ethereum alts.\n8. Plena Integration: Announcement of Plena integrating with Solana to simplify on-chain interactions.\n9. $SOL vs. $ETH: Comparison between Solana and Ethereum, with $SOL holding previous cycle highs and expectations for a strong Q1 2025.\n10. Controversy: Controversy surrounding Solana's DeFi, with a validator reportedly extracting over $60M via MEV Sandwich Attacks in just a month.\n\nOverall, the discussions on Twitter indicate a mix of excitement, speculation, technical analysis, trading strategies, market trends, and controversies surrounding Solana and its ecosystem.","data":[9,2,2,3,3,1,4,4,7,7,2,9,0,7,1,7,13,7,5,7,9,8,4,4,4,4,2,4,6,13,8,1,7,10,2,2,6,17,0,3,1,2,2,42,10,5,8,7,5,8,4,6,2,5,2]},{"label":"Microsoft's potential investment in BTC","topics":"microsoft,shareholders,proposal,msft,voted","description":"The messages from Twitter suggest that there is a lot of discussion surrounding Microsoft's potential investment in Bitcoin. Some users believe that Microsoft needs Bitcoin more than Bitcoin needs Microsoft, while others think it's a good move for Microsoft to pass on investing in Bitcoin due to security concerns and potential negative impact on shareholders. There is speculation about a potential vote by Microsoft shareholders on whether to invest in Bitcoin, with some users anticipating a rejection of the proposal. Overall, the topic of Microsoft's involvement with Bitcoin is generating a lot of interest and debate within the crypto community on social media.","data":[2,2,4,3,2,3,9,14,4,4,2,1,1,4,0,6,3,7,2,4,2,1,5,7,2,3,0,6,2,3,5,2,17,3,4,0,3,3,2,10,7,6,74,7,1,3,2,4,7,6,3,2,11,6,3]},{"label":"The potential threat of quantum computers to BTC and other cryptocurrencies","topics":"quantum,computing,chip,google,computers","description":"The key topics discussed in the messages from twitter are:\n- The potential threat of quantum computers to Bitcoin and other cryptocurrencies\n- The development of quantum-resistant blockchain technology\n- The impact of Google's new Willow quantum processor on blockchain security\n- The discussion around adding new \"quantum resistant\" address types to Bitcoin via soft-fork\n- The potential for $Cell (Cellframe) to increase in value significantly in the future\n- The intersection of artificial intelligence and blockchain technology\n- Autonomi's quantum-proof encryption technology\n- Google's recent quantum computing breakthrough with a new chip capable of solving complex problems quickly\n\nOverall, the messages highlight the importance of staying informed about advancements in quantum computing and the potential implications for the cryptocurrency industry.","data":[5,4,7,1,6,6,4,4,4,8,25,2,2,3,0,2,2,4,10,4,5,5,10,3,3,2,3,4,1,4,1,2,8,9,2,3,3,6,10,6,7,7,8,0,1,2,7,8,9,2,3,3,3,7,4]},{"label":"DeFi","topics":"defi,finance,polygon,lending,leveraged","description":"The messages from twitter are discussing various topics related to the crypto industry, specifically focusing on decentralized finance (DeFi) projects. Some key words mentioned in the messages include DeFi, EOSI Finance, hybrid derivatives exchange, risk levels, AAVE, Aligned, zero-knowledge proofs (ZKPs), Ethereum, Prop Firm, AI, BaseChain, Polygon, crowdfunding, Dacxi, USDC, tokenized assets, Asset Tokenization Studio, Hedera network, real estate tokenization, Flare Networks, rFLR rewards, and DeFi Summer 2.0. The overall sentiment seems to be positive towards the potential of DeFi projects and their impact on the traditional financial industry.","data":[9,2,3,6,7,0,1,4,2,4,5,8,3,14,2,5,3,2,4,3,3,2,6,5,3,9,9,1,2,4,3,1,4,7,5,3,4,6,14,9,13,1,5,4,0,6,4,2,2,8,4,9,5,1,4]},{"label":"PENGU","topics":"pudgy,pengu,penguins,pudgypenguins,floor","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the launch of the $PENGU token by Pudgy Penguins on the Solana network, the distribution of 88 billion $PENGU tokens in an equitable manner, the spike in the price of $SUSHI after teasing a 2025 ecosystem expansion, and the upcoming halving of aelf on December 12. Additionally, there is excitement surrounding a new pfp project that is expected to make a big impact in the crypto community. Discussions also mention the movement of CryptoPunks, with one of the rare printed CryptoPunks changing hands recently. Overall, the focus seems to be on new token launches, ecosystem expansions, and potential airdrops in the crypto space.","data":[1,4,6,4,3,0,2,2,2,1,0,1,4,3,1,5,3,3,8,1,5,2,2,5,3,4,2,3,4,3,3,2,2,6,6,16,6,4,73,4,2,6,3,1,1,0,6,2,5,1,2,2,3,2,3]},{"label":"Dip","topics":"dip,dips,bull,buy,buying","description":"The key topics discussed in the messages from twitter are:\n1. Buying the dip in cryptocurrencies like Bitcoin and Ethereum\n2. Market corrections and opportunities to accumulate assets\n3. Bearish sentiment in the short term for theoretical physics but bullish for mathematics\n4. Advice to slow down on leverage and focus on spot buying\n5. Anticipation of future pumps and a potential Memecoin Bull Mania\n6. Use of indicators to identify good buying opportunities during dips in the market.","data":[1,1,1,6,0,0,0,20,52,0,1,2,5,4,24,1,0,8,4,3,4,6,5,7,2,1,3,0,4,1,8,2,4,2,1,1,2,1,2,5,2,3,5,3,2,5,2,5,3,3,5,2,6,4,1]},{"label":"Gold","topics":"gold,treasury,digital,store,sell","description":"The topic discussed in the messages from twitter is the comparison between Bitcoin and gold, with the US Treasury declaring Bitcoin as digital gold. The messages highlight the store of value use case for Bitcoin and the potential implications of a US Bitcoin reserve. Some individuals, such as Peter Schiff, express concerns about the push for a US Bitcoin reserve and the potential national security threat it poses. Overall, the discussion revolves around the idea of Bitcoin as a superior store of value compared to gold, with the US Treasury emphasizing this comparison.","data":[3,0,2,0,17,5,2,6,10,1,5,1,2,8,1,6,0,2,2,3,1,30,1,5,2,4,2,2,2,3,2,0,3,4,0,2,4,3,3,10,3,10,11,2,0,4,2,0,4,0,2,3,1,1,2]},{"label":"Coinbase","topics":"coinbase,account,customer,accounts,funds","description":"The key topics discussed in the messages from twitter are:\n1. Coinbase facing user backlash over account restrictions amid fraud spike\n2. Suggestions to not put money on Coinbase and major exchanges, but to use them solely for swaps\n3. Concerns about Coinbase becoming the villain of the crypto industry\n4. Warnings about not using Coinbase due to horror stories of locked funds and closed accounts\n5. Criticism of Coinbase's flagging systems and their impact on the bitcoin and crypto industry\n6. Advice to not use a CEX address for token distribution on Sablier\n7. Complaints about Coinbase restricting accounts without explanation and lack of support\n8. Suggestions for XverseApp to improve error messages for transaction fees\n9. Criticism of Coinbase's response time and lack of action in addressing theft incidents.","data":[5,0,3,4,0,0,5,4,3,1,29,2,5,4,1,1,2,4,0,3,4,2,10,2,2,1,4,6,2,3,2,2,5,3,3,2,3,2,1,4,14,2,4,2,2,3,7,1,1,1,2,6,3,2,3]},{"label":"XRP","topics":"xrp,ripple,altcoins,ripples,ledger","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry, specifically related to XRP, include:\n\n1. XRP price movements: There are mentions of XRP sitting at a certain price, discussions about buying the dip, and predictions about price targets and potential breakouts.\n\n2. Regulatory approvals and legal milestones: Ripple CEO Brad Garlinghouse's statement about regulatory approval for the company's stablecoin in New York is highlighted as a factor contributing to XRP's surge.\n\n3. Analyst predictions and market outlook: Analysts are unveiling huge price targets for XRP, suggesting that the altcoin looks undervalued after a massive breakout. There are also discussions about XRP's momentum and potential for further growth.\n\n4. Profit-taking strategies: Some users are discussing taking profits at specific levels with zero emotions, highlighting the importance of smart money management in the crypto market.\n\n5. Comparison with other cryptocurrencies: There are comparisons between XRP's performance and that of Bitcoin, with mentions of XRP stumbling but still boasting a significant weekly gain.\n\nOverall, the sentiment around XRP in the crypto community appears to be positive, with discussions focusing on price movements, regulatory developments, analyst predictions, and profit-taking strategies.","data":[1,3,7,2,1,2,2,3,1,10,1,3,3,2,4,2,0,6,3,4,4,1,2,6,4,4,4,1,2,4,2,3,1,1,3,4,3,10,2,4,10,4,4,5,3,3,7,4,4,2,4,3,2,4,0]},{"label":"TSLA","topics":"tesla,elon,elonmusk,musk,400","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- Tesla's stock price reaching $407 and predictions of it reaching $500\n- Elon Musk's fortune surpassing $400 billion\n- Tesla's innovative design challenges and future plans for EVs\n- Elon Musk's investments in SpaceX and Tesla\n- Comparison of Elon Musk's net worth to major crypto players\n- Optimus improvements in Tesla's real-world commercial applications\n- GM CEO Mary Barra's comments on the challenges of deploying a fleet for a Robotaxi business\n- Optimus robots using AI for object avoidance without vision\n- Excitement about Tesla's real-world AI advancements\n\nOverall, the messages reflect a positive sentiment towards Tesla, Elon Musk, and the future of the crypto industry.","data":[0,0,1,0,2,0,5,5,6,5,0,3,2,2,3,5,1,3,1,8,5,3,1,6,3,8,3,1,1,2,2,1,2,2,5,3,5,3,1,4,4,5,2,5,1,6,2,12,0,1,16,0,3,0,6]},{"label":"ME","topics":"eden,magic,magiceden,airdrop,marketplace","description":"The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- Free tokens claiming on the ME mobile app\n- Rewards for early adopters of Ordinals and Runes\n- Price action and support levels of $ME\n- Launch of ME Token by Magic Eden on Binance with a Seed Tag\n- Airdrops and staking requirements for Magic Eden\n- New era of earning through questing and staking\n- Listing of $ME on social platforms for payments and donations\n- Trading strategies and reinvestment decisions for $ME and other cryptocurrencies\n\nOverall, the discussions revolve around the developments and opportunities within the Magic Eden ecosystem, as well as trading and investment strategies in the crypto market.","data":[5,9,4,2,2,1,2,1,2,3,3,1,1,3,1,1,0,0,1,1,4,2,2,4,3,2,1,2,15,6,9,3,1,10,4,1,0,4,3,3,1,1,5,3,0,3,2,0,2,19,3,2,1,0,3]},{"label":"ETF Flows","topics":"inflows,net,etfs,etf,spot","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Record inflows into Bitcoin and Ethereum ETFs, with significant amounts of money being invested daily\n- Bullish sentiment towards memecoins, with high inflows and outflows indicating profit-taking\n- Positive streaks of net inflows into U.S. spot Ethereum ETFs, signaling growing institutional interest in ETH\n- Comparison of inflows between Gold ETFs and Bitcoin ETFs, with speculation on potential future growth in BTC inflows\n- BlackRock and Fidelity ETFs experiencing substantial daily net inflows, contributing to the overall growth in ETF investments\n- Price fluctuations in Bitcoin, with positive ETF flows contributing to a recovery in price from $97.8k to $101.8k\n\nOverall, the sentiment in the crypto industry appears to be positive, with strong institutional interest in both Bitcoin and Ethereum ETFs driving record inflows and contributing to price movements in the market.","data":[2,1,1,2,10,0,4,2,0,0,0,2,3,1,0,1,42,0,5,0,1,6,0,2,1,8,0,1,0,0,6,1,6,1,2,0,0,1,0,6,1,0,3,1,3,18,0,0,2,7,0,1,0,4,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-49.ts b/priv/repo/major_topics_seed/data-49.ts deleted file mode 100644 index 71d6b16ea9..0000000000 --- a/priv/repo/major_topics_seed/data-49.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '05.12.24', - '06.12.24', - '06.12.24', - '06.12.24', - '06.12.24', - '06.12.24', - '06.12.24', - '06.12.24', - '07.12.24', - '07.12.24', - '07.12.24', - '07.12.24', - '07.12.24', - '07.12.24', - '07.12.24', - '07.12.24', - '08.12.24', - '08.12.24', - '08.12.24', - '08.12.24', - '08.12.24', - '08.12.24', - '08.12.24', - '08.12.24', - '09.12.24', - '09.12.24', - '09.12.24', - '09.12.24', - '09.12.24', - '09.12.24', - '09.12.24', - '09.12.24', - '10.12.24', - '10.12.24', - '10.12.24', - '10.12.24', - '10.12.24', - '10.12.24', - '10.12.24', - '10.12.24', - '11.12.24', - '11.12.24', - '11.12.24', - '11.12.24', - '11.12.24', - '11.12.24', - '11.12.24', - '11.12.24', - '12.12.24', - '12.12.24', - '12.12.24', - '12.12.24', - '12.12.24', - '12.12.24', - '12.12.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'fiat,bitcoin,money,understand,currency', - description: - 'Based on the messages from Twitter, it is evident that Bitcoin is a popular topic of discussion within the crypto community. Some key points mentioned include:\n- Bitcoin being seen as the ultimate status good for nation states\n- Bitcoin being described as deflationary money\n- The potential for Bitcoin to become a national security threat if other nations become rich in Bitcoin\n- The importance of investing in Bitcoin for a better future\n- The idea that Bitcoin cannot keep replacing central banks forever\n- The need for a significant event to occur for individuals to rethink their views on Bitcoin\n\nOverall, it is clear that Bitcoin continues to be a significant and evolving topic within the crypto industry, with various perspectives and opinions being shared on its potential impact and future trajectory.', - data: [ - 19, 9, 12, 23, 78, 97, 9, 25, 26, 21, 11, 18, 24, 17, 11, 18, 10, 40, 32, 20, 20, 27, 22, - 24, 16, 19, 29, 31, 17, 18, 17, 15, 34, 9, 19, 30, 18, 23, 12, 17, 14, 23, 18, 16, 9, 24, - 14, 28, 36, 8, 34, 31, 20, 17, 22, - ], - }, - { - label: 'ETH', - topics: 'eth,4000,4k,ethereum,target', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Ethereum (ETH) price reaching $4k and potential for further growth to $5k, $6k, and even $7k.\n2. Recent sale of EtherRock #19 for 235 ETH (~$944K) and other NFT sales.\n3. Predictions for ETH to potentially reach $20,000 USD in the current crypto cycle.\n4. Institutional demand and structural shifts impacting ETH price.\n5. Speculation on ETH breaking all-time highs and the North Star coordination problem.\n6. Discussion on the potential for ETH to reach $5k with odds at just 8% according to Derive.\n7. Excitement and optimism surrounding ETH's market performance and potential for new all-time highs.\n8. Interest in NFTs and unique digital assets being sold for ETH.\n9. Analysis of yearly highs for ETH and the conviction of investors paying off.\n10. Mention of other altcoins like XRP and the potential for surprises in the crypto market.\n\nOverall, the sentiment around Ethereum and the crypto industry appears to be positive, with a focus on price movements, NFT sales, institutional involvement, and future growth potential.", - data: [ - 11, 3, 6, 11, 6, 0, 22, 13, 4, 13, 5, 5, 5, 4, 9, 11, 126, 6, 11, 7, 19, 7, 15, 23, 5, 11, - 1, 9, 17, 23, 9, 5, 7, 3, 5, 5, 9, 15, 8, 10, 12, 7, 12, 10, 9, 7, 15, 11, 15, 7, 4, 6, 8, - 9, 4, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,humans,future', - description: - "The messages from twitter suggest that there is a growing interest and excitement surrounding AI technology in the crypto industry. Topics such as AI-driven conversations, AI replacing legal counsel and compliance employees, AI in recruitment, AI-powered shopping apps, AI collaborative collections, and AI agents providing valuable feedback are being discussed. There is also mention of the potential for AI to transform medicine globally, with China's AI hospitals leading the way. Overall, the sentiment seems to be positive towards the potential of AI in the crypto industry and beyond.", - data: [ - 4, 100, 8, 8, 3, 0, 4, 10, 5, 4, 7, 9, 7, 1, 5, 10, 1, 8, 10, 22, 15, 7, 8, 5, 12, 13, 16, - 7, 3, 6, 13, 5, 10, 12, 7, 8, 3, 7, 1, 4, 8, 7, 6, 5, 11, 8, 7, 13, 9, 8, 8, 8, 5, 8, 7, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elonmusk,elon,department', - description: - "The key topics currently discussed in the messages from twitter about Dogecoin ($DOGE) include:\n- Dogecoin hitting $0.48 and working towards $0.46\n- Speculation on the 30-day forecast for Dogecoin\n- Potential impact of inflation data on Dogecoin's market\n- Calls for action from influential figures like Elon Musk and Vivek Ramaswamy\n- Introduction of an exclusive $DOGE in-game skin as an NFT\n- Comparison to previous price movements and potential for a surge\n- Price predictions ranging from $0.32 to $0.46\n- Surging prices of other cryptocurrencies like Bitcoin ($BTC) and Ethereum ($ETH)\n- Personal anecdotes about paying fines with Dogecoin\n- Technical analysis indicating bullish momentum for Dogecoin, with a focus on price levels around $0.46\n- Positive indicators for Dogecoin's outlook, such as increased network activity and decreased Mean Dollar Invested Age (MDIA)", - data: [ - 3, 1, 8, 5, 1, 0, 6, 3, 4, 3, 4, 4, 4, 7, 163, 5, 2, 7, 5, 1, 10, 7, 7, 15, 5, 1, 2, 9, 2, - 11, 5, 3, 8, 0, 3, 6, 2, 2, 6, 5, 4, 2, 7, 4, 3, 5, 6, 4, 15, 5, 4, 3, 7, 6, 2, - ], - }, - { - label: 'PEPE', - topics: 'pepe,cap,shib,coin,billion', - description: - "The key topics discussed in the messages from Twitter are:\n- $PEPE hitting a market cap of over $10 billion\n- Speculation on $PEPE's potential market cap reaching $20 billion\n- Comparison of $PEPE to other meme coins like $SHIB\n- Predictions on $PEPE's future price movements\n- $PEPE surpassing other cryptocurrencies like UNI, Litecoin, and NEAR in market cap\n- Discussion on whether $PEPE can maintain its momentum or if a correction is imminent\n\nOverall, the sentiment towards $PEPE in the messages is positive, with users expressing excitement about its growth potential and market performance.", - data: [ - 7, 3, 3, 3, 1, 0, 10, 4, 7, 8, 8, 6, 3, 6, 2, 5, 1, 3, 9, 5, 12, 5, 5, 19, 1, 7, 3, 5, 3, 6, - 3, 7, 7, 5, 3, 74, 49, 7, 1, 8, 5, 4, 5, 9, 2, 4, 12, 7, 9, 5, 5, 7, 6, 10, 5, - ], - }, - { - label: 'BTC $100k', - topics: '100k,100000,target,bitcoin,hit', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Bitcoin price predictions, with mentions of hitting $94k, $98k, $100k, $110k, $118k, $129k, $150k, and even $1 million\n- The normalization of Bitcoin reaching $100k and its significance compared to other price points\n- Speculation on how high Bitcoin will go this year and by specific future dates like December 2024 and 2025\n- References to Bitcoin's all-time high, reaching $99,860 in November, and potential future highs\n- Analysis from DeFi derivatives platforms predicting Bitcoin's potential rise to fresh highs by January\n- Mention of ARK's AVIV model predicting a $129,000 target for Bitcoin if bullish momentum holds through 2025\n\nOverall, the sentiment seems to be optimistic about Bitcoin's price potential and the possibility of reaching new highs in the near future.", - data: [ - 1, 2, 5, 6, 25, 52, 9, 16, 3, 3, 5, 4, 6, 2, 4, 7, 2, 15, 8, 4, 7, 5, 4, 22, 2, 4, 3, 6, 4, - 9, 8, 4, 4, 3, 5, 3, 6, 16, 16, 13, 8, 7, 8, 0, 1, 2, 6, 4, 5, 5, 4, 5, 3, 5, 6, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,gamefi,play', - description: - 'The key topics discussed in the messages from twitter are related to the crypto industry and gaming. Some of the specific topics mentioned include:\n- Ronin Network\n- Crypto as a game of ping pong\n- TAA destroying modern gaming\n- Game Theory\n- AceTCG launching "Alpha Cards" NFT collection\n- Web3 Browser Lobbies moving to in-game app\n- World Mobile\'s entry into the United States\n- Gunzilla Games becoming a gaming powerhouse\n- Oasys being nominated for Best Ecosystem in the PlayToEarn Blockchain Game Awards 2024\n- Listing of $PLAY token for Web3 gaming ecosystem\n\nOverall, the messages highlight the growing influence of crypto and blockchain technology in the gaming industry, as well as the innovative developments and collaborations taking place within the space.', - data: [ - 3, 1, 2, 3, 2, 1, 4, 2, 5, 5, 6, 3, 6, 3, 1, 5, 3, 9, 4, 70, 7, 9, 3, 3, 5, 5, 6, 9, 4, 6, - 3, 2, 7, 10, 11, 6, 33, 5, 1, 8, 3, 6, 1, 7, 5, 1, 5, 3, 8, 2, 4, 0, 4, 5, 8, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coin', - description: - 'The key topics discussed in the messages from twitter about the crypto industry are meme coins, memecoin launches, L2 blockchain technology, market cap of meme coins, potential meme coin investments, incentive alignment in meme coin projects, and the dominance of meme coins in 2025. The messages also mention specific meme coins such as $DOG, $APU, $SPX, $BOBO, $PEPE, $GIGA, $WIF, $BRETT, $PNUT, $FLOKI, $BOME, and $PEPE. Additionally, the messages highlight the involvement of top pro traders in riding the memecoin wave and using smart algorithms for trading meme coins.', - data: [ - 5, 1, 3, 4, 3, 1, 0, 3, 7, 8, 6, 1, 6, 1, 2, 3, 3, 11, 3, 4, 1, 9, 7, 6, 6, 3, 6, 8, 10, 7, - 9, 93, 7, 3, 3, 3, 2, 4, 2, 6, 5, 6, 6, 3, 4, 7, 5, 2, 5, 8, 3, 4, 4, 6, 2, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,solanas,developers,ethereum', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry related to Solana ($SOL) include:\n1. NFTs on Solana: There is excitement about minting NFTs on Solana and discussions about the potential for NFTs to make a comeback on the platform.\n2. $SOL ETF Approval: There are speculations about the likelihood of a $SOL ETF getting approved next year.\n3. Price Predictions: There are price predictions for $SOL reaching $4,000 based on technical analysis patterns.\n4. Transaction Volume: There is a significant increase in yearly SOL transaction volume.\n5. $SHARK Token: Discussion about the $SHARK token and its use case in P2P loan lending on Solana.\n6. Trading Strategies: Discussions about trading strategies such as hedging bags with funding on shorts and buying the dips.\n7. Market Shift: Observations about the market shifting from SOL memes to utilities, with a focus on Ethereum alts.\n8. Plena Integration: Announcement of Plena integrating with Solana to simplify on-chain interactions.\n9. $SOL vs. $ETH: Comparison between Solana and Ethereum, with $SOL holding previous cycle highs and expectations for a strong Q1 2025.\n10. Controversy: Controversy surrounding Solana's DeFi, with a validator reportedly extracting over $60M via MEV Sandwich Attacks in just a month.\n\nOverall, the discussions on Twitter indicate a mix of excitement, speculation, technical analysis, trading strategies, market trends, and controversies surrounding Solana and its ecosystem.", - data: [ - 9, 2, 2, 3, 3, 1, 4, 4, 7, 7, 2, 9, 0, 7, 1, 7, 13, 7, 5, 7, 9, 8, 4, 4, 4, 4, 2, 4, 6, 13, - 8, 1, 7, 10, 2, 2, 6, 17, 0, 3, 1, 2, 2, 42, 10, 5, 8, 7, 5, 8, 4, 6, 2, 5, 2, - ], - }, - { - label: "Microsoft's potential investment in BTC", - topics: 'microsoft,shareholders,proposal,msft,voted', - description: - "The messages from Twitter suggest that there is a lot of discussion surrounding Microsoft's potential investment in Bitcoin. Some users believe that Microsoft needs Bitcoin more than Bitcoin needs Microsoft, while others think it's a good move for Microsoft to pass on investing in Bitcoin due to security concerns and potential negative impact on shareholders. There is speculation about a potential vote by Microsoft shareholders on whether to invest in Bitcoin, with some users anticipating a rejection of the proposal. Overall, the topic of Microsoft's involvement with Bitcoin is generating a lot of interest and debate within the crypto community on social media.", - data: [ - 2, 2, 4, 3, 2, 3, 9, 14, 4, 4, 2, 1, 1, 4, 0, 6, 3, 7, 2, 4, 2, 1, 5, 7, 2, 3, 0, 6, 2, 3, - 5, 2, 17, 3, 4, 0, 3, 3, 2, 10, 7, 6, 74, 7, 1, 3, 2, 4, 7, 6, 3, 2, 11, 6, 3, - ], - }, - { - label: 'The potential threat of quantum computers to BTC and other cryptocurrencies', - topics: 'quantum,computing,chip,google,computers', - description: - "The key topics discussed in the messages from twitter are:\n- The potential threat of quantum computers to Bitcoin and other cryptocurrencies\n- The development of quantum-resistant blockchain technology\n- The impact of Google's new Willow quantum processor on blockchain security\n- The discussion around adding new \"quantum resistant\" address types to Bitcoin via soft-fork\n- The potential for $Cell (Cellframe) to increase in value significantly in the future\n- The intersection of artificial intelligence and blockchain technology\n- Autonomi's quantum-proof encryption technology\n- Google's recent quantum computing breakthrough with a new chip capable of solving complex problems quickly\n\nOverall, the messages highlight the importance of staying informed about advancements in quantum computing and the potential implications for the cryptocurrency industry.", - data: [ - 5, 4, 7, 1, 6, 6, 4, 4, 4, 8, 25, 2, 2, 3, 0, 2, 2, 4, 10, 4, 5, 5, 10, 3, 3, 2, 3, 4, 1, 4, - 1, 2, 8, 9, 2, 3, 3, 6, 10, 6, 7, 7, 8, 0, 1, 2, 7, 8, 9, 2, 3, 3, 3, 7, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,polygon,lending,leveraged', - description: - 'The messages from twitter are discussing various topics related to the crypto industry, specifically focusing on decentralized finance (DeFi) projects. Some key words mentioned in the messages include DeFi, EOSI Finance, hybrid derivatives exchange, risk levels, AAVE, Aligned, zero-knowledge proofs (ZKPs), Ethereum, Prop Firm, AI, BaseChain, Polygon, crowdfunding, Dacxi, USDC, tokenized assets, Asset Tokenization Studio, Hedera network, real estate tokenization, Flare Networks, rFLR rewards, and DeFi Summer 2.0. The overall sentiment seems to be positive towards the potential of DeFi projects and their impact on the traditional financial industry.', - data: [ - 9, 2, 3, 6, 7, 0, 1, 4, 2, 4, 5, 8, 3, 14, 2, 5, 3, 2, 4, 3, 3, 2, 6, 5, 3, 9, 9, 1, 2, 4, - 3, 1, 4, 7, 5, 3, 4, 6, 14, 9, 13, 1, 5, 4, 0, 6, 4, 2, 2, 8, 4, 9, 5, 1, 4, - ], - }, - { - label: 'PENGU', - topics: 'pudgy,pengu,penguins,pudgypenguins,floor', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the launch of the $PENGU token by Pudgy Penguins on the Solana network, the distribution of 88 billion $PENGU tokens in an equitable manner, the spike in the price of $SUSHI after teasing a 2025 ecosystem expansion, and the upcoming halving of aelf on December 12. Additionally, there is excitement surrounding a new pfp project that is expected to make a big impact in the crypto community. Discussions also mention the movement of CryptoPunks, with one of the rare printed CryptoPunks changing hands recently. Overall, the focus seems to be on new token launches, ecosystem expansions, and potential airdrops in the crypto space.', - data: [ - 1, 4, 6, 4, 3, 0, 2, 2, 2, 1, 0, 1, 4, 3, 1, 5, 3, 3, 8, 1, 5, 2, 2, 5, 3, 4, 2, 3, 4, 3, 3, - 2, 2, 6, 6, 16, 6, 4, 73, 4, 2, 6, 3, 1, 1, 0, 6, 2, 5, 1, 2, 2, 3, 2, 3, - ], - }, - { - label: 'Dip', - topics: 'dip,dips,bull,buy,buying', - description: - 'The key topics discussed in the messages from twitter are:\n1. Buying the dip in cryptocurrencies like Bitcoin and Ethereum\n2. Market corrections and opportunities to accumulate assets\n3. Bearish sentiment in the short term for theoretical physics but bullish for mathematics\n4. Advice to slow down on leverage and focus on spot buying\n5. Anticipation of future pumps and a potential Memecoin Bull Mania\n6. Use of indicators to identify good buying opportunities during dips in the market.', - data: [ - 1, 1, 1, 6, 0, 0, 0, 20, 52, 0, 1, 2, 5, 4, 24, 1, 0, 8, 4, 3, 4, 6, 5, 7, 2, 1, 3, 0, 4, 1, - 8, 2, 4, 2, 1, 1, 2, 1, 2, 5, 2, 3, 5, 3, 2, 5, 2, 5, 3, 3, 5, 2, 6, 4, 1, - ], - }, - { - label: 'Gold', - topics: 'gold,treasury,digital,store,sell', - description: - 'The topic discussed in the messages from twitter is the comparison between Bitcoin and gold, with the US Treasury declaring Bitcoin as digital gold. The messages highlight the store of value use case for Bitcoin and the potential implications of a US Bitcoin reserve. Some individuals, such as Peter Schiff, express concerns about the push for a US Bitcoin reserve and the potential national security threat it poses. Overall, the discussion revolves around the idea of Bitcoin as a superior store of value compared to gold, with the US Treasury emphasizing this comparison.', - data: [ - 3, 0, 2, 0, 17, 5, 2, 6, 10, 1, 5, 1, 2, 8, 1, 6, 0, 2, 2, 3, 1, 30, 1, 5, 2, 4, 2, 2, 2, 3, - 2, 0, 3, 4, 0, 2, 4, 3, 3, 10, 3, 10, 11, 2, 0, 4, 2, 0, 4, 0, 2, 3, 1, 1, 2, - ], - }, - { - label: 'Coinbase', - topics: 'coinbase,account,customer,accounts,funds', - description: - "The key topics discussed in the messages from twitter are:\n1. Coinbase facing user backlash over account restrictions amid fraud spike\n2. Suggestions to not put money on Coinbase and major exchanges, but to use them solely for swaps\n3. Concerns about Coinbase becoming the villain of the crypto industry\n4. Warnings about not using Coinbase due to horror stories of locked funds and closed accounts\n5. Criticism of Coinbase's flagging systems and their impact on the bitcoin and crypto industry\n6. Advice to not use a CEX address for token distribution on Sablier\n7. Complaints about Coinbase restricting accounts without explanation and lack of support\n8. Suggestions for XverseApp to improve error messages for transaction fees\n9. Criticism of Coinbase's response time and lack of action in addressing theft incidents.", - data: [ - 5, 0, 3, 4, 0, 0, 5, 4, 3, 1, 29, 2, 5, 4, 1, 1, 2, 4, 0, 3, 4, 2, 10, 2, 2, 1, 4, 6, 2, 3, - 2, 2, 5, 3, 3, 2, 3, 2, 1, 4, 14, 2, 4, 2, 2, 3, 7, 1, 1, 1, 2, 6, 3, 2, 3, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,altcoins,ripples,ledger', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry, specifically related to XRP, include:\n\n1. XRP price movements: There are mentions of XRP sitting at a certain price, discussions about buying the dip, and predictions about price targets and potential breakouts.\n\n2. Regulatory approvals and legal milestones: Ripple CEO Brad Garlinghouse's statement about regulatory approval for the company's stablecoin in New York is highlighted as a factor contributing to XRP's surge.\n\n3. Analyst predictions and market outlook: Analysts are unveiling huge price targets for XRP, suggesting that the altcoin looks undervalued after a massive breakout. There are also discussions about XRP's momentum and potential for further growth.\n\n4. Profit-taking strategies: Some users are discussing taking profits at specific levels with zero emotions, highlighting the importance of smart money management in the crypto market.\n\n5. Comparison with other cryptocurrencies: There are comparisons between XRP's performance and that of Bitcoin, with mentions of XRP stumbling but still boasting a significant weekly gain.\n\nOverall, the sentiment around XRP in the crypto community appears to be positive, with discussions focusing on price movements, regulatory developments, analyst predictions, and profit-taking strategies.", - data: [ - 1, 3, 7, 2, 1, 2, 2, 3, 1, 10, 1, 3, 3, 2, 4, 2, 0, 6, 3, 4, 4, 1, 2, 6, 4, 4, 4, 1, 2, 4, - 2, 3, 1, 1, 3, 4, 3, 10, 2, 4, 10, 4, 4, 5, 3, 3, 7, 4, 4, 2, 4, 3, 2, 4, 0, - ], - }, - { - label: 'TSLA', - topics: 'tesla,elon,elonmusk,musk,400', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n- Tesla's stock price reaching $407 and predictions of it reaching $500\n- Elon Musk's fortune surpassing $400 billion\n- Tesla's innovative design challenges and future plans for EVs\n- Elon Musk's investments in SpaceX and Tesla\n- Comparison of Elon Musk's net worth to major crypto players\n- Optimus improvements in Tesla's real-world commercial applications\n- GM CEO Mary Barra's comments on the challenges of deploying a fleet for a Robotaxi business\n- Optimus robots using AI for object avoidance without vision\n- Excitement about Tesla's real-world AI advancements\n\nOverall, the messages reflect a positive sentiment towards Tesla, Elon Musk, and the future of the crypto industry.", - data: [ - 0, 0, 1, 0, 2, 0, 5, 5, 6, 5, 0, 3, 2, 2, 3, 5, 1, 3, 1, 8, 5, 3, 1, 6, 3, 8, 3, 1, 1, 2, 2, - 1, 2, 2, 5, 3, 5, 3, 1, 4, 4, 5, 2, 5, 1, 6, 2, 12, 0, 1, 16, 0, 3, 0, 6, - ], - }, - { - label: 'ME', - topics: 'eden,magic,magiceden,airdrop,marketplace', - description: - 'The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- Free tokens claiming on the ME mobile app\n- Rewards for early adopters of Ordinals and Runes\n- Price action and support levels of $ME\n- Launch of ME Token by Magic Eden on Binance with a Seed Tag\n- Airdrops and staking requirements for Magic Eden\n- New era of earning through questing and staking\n- Listing of $ME on social platforms for payments and donations\n- Trading strategies and reinvestment decisions for $ME and other cryptocurrencies\n\nOverall, the discussions revolve around the developments and opportunities within the Magic Eden ecosystem, as well as trading and investment strategies in the crypto market.', - data: [ - 5, 9, 4, 2, 2, 1, 2, 1, 2, 3, 3, 1, 1, 3, 1, 1, 0, 0, 1, 1, 4, 2, 2, 4, 3, 2, 1, 2, 15, 6, - 9, 3, 1, 10, 4, 1, 0, 4, 3, 3, 1, 1, 5, 3, 0, 3, 2, 0, 2, 19, 3, 2, 1, 0, 3, - ], - }, - { - label: 'ETF Flows', - topics: 'inflows,net,etfs,etf,spot', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Record inflows into Bitcoin and Ethereum ETFs, with significant amounts of money being invested daily\n- Bullish sentiment towards memecoins, with high inflows and outflows indicating profit-taking\n- Positive streaks of net inflows into U.S. spot Ethereum ETFs, signaling growing institutional interest in ETH\n- Comparison of inflows between Gold ETFs and Bitcoin ETFs, with speculation on potential future growth in BTC inflows\n- BlackRock and Fidelity ETFs experiencing substantial daily net inflows, contributing to the overall growth in ETF investments\n- Price fluctuations in Bitcoin, with positive ETF flows contributing to a recovery in price from $97.8k to $101.8k\n\nOverall, the sentiment in the crypto industry appears to be positive, with strong institutional interest in both Bitcoin and Ethereum ETFs driving record inflows and contributing to price movements in the market.', - data: [ - 2, 1, 1, 2, 10, 0, 4, 2, 0, 0, 0, 2, 3, 1, 0, 1, 42, 0, 5, 0, 1, 6, 0, 2, 1, 8, 0, 1, 0, 0, - 6, 1, 6, 1, 2, 0, 0, 1, 0, 6, 1, 0, 3, 1, 3, 18, 0, 0, 2, 7, 0, 1, 0, 4, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-5.json b/priv/repo/major_topics_seed/data-5.json deleted file mode 100644 index b17bcc5b40..0000000000 --- a/priv/repo/major_topics_seed/data-5.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["01.02.24","02.02.24","02.02.24","02.02.24","02.02.24","02.02.24","02.02.24","02.02.24","03.02.24","03.02.24","03.02.24","03.02.24","03.02.24","03.02.24","03.02.24","03.02.24","04.02.24","04.02.24","04.02.24","04.02.24","04.02.24","04.02.24","04.02.24","04.02.24","05.02.24","05.02.24","05.02.24","05.02.24","05.02.24","05.02.24","05.02.24","05.02.24","06.02.24","06.02.24","06.02.24","06.02.24","06.02.24","06.02.24","06.02.24","06.02.24","07.02.24","07.02.24","07.02.24","07.02.24","07.02.24","07.02.24","07.02.24","07.02.24","08.02.24","08.02.24","08.02.24","08.02.24","08.02.24","08.02.24","08.02.24"],"datasets":[{"label":"Solana","topics":"solana,sol,outage,network,meme","description":"The messages from Twitter discuss various topics related to the crypto industry, particularly focusing on Solana (SOL). Some key points mentioned in the messages include:\n\n1. Solana's performance: The messages highlight Solana's outperformance compared to Bitcoin, showing a remarkable surge. Santiment's analysis reveals Solana's breakout against Bitcoin, marking a significant gain and sentiment shift. This suggests that Solana has been performing well in the market.\n\n2. Solana's network issues: There have been incidents where the Solana blockchain experienced downtime and halted block production. Despite claims of unparalleled speed and reliability, this was Solana's 11th incident over the past two years. However, a fix was coordinated among validators, and the network has since restarted.\n\n3. Bullish sentiment on Solana: Some users express their bullishness on Solana, stating that they believe it can do well in the coming bull run. They see potential in Solana's performance and consider it a good investment opportunity.\n\n4. Upgrade to Solana's network: One user mentions that Solana is undergoing an upgrade to their network. As they trade on-chain, they prefer not to be in a position where something could go wrong during the upgrade. They plan to resume trading the next day.\n\n5. Solana as an Ethereum killer: One user refers to Solana as an \"ETH killer,\" suggesting that it has the potential to compete with Ethereum in terms of functionality and performance.\n\n6. Criticisms of Solana: Another user expresses skepticism towards Solana, stating that it is centralized, full of scammers, and experiences frequent downtime. They also mention that the art on Solana is essentially copies of art on Ethereum. However, they acknowledge that their opinion may be considered as \"fud\" (fear, uncertainty, and doubt) and suggest ignoring their criticism.\n\n7. Solana price prediction: A tweet mentions a 0.5% gain in Solana's price in the past 24 hours, as the overall crypto market also rises by the same percentage. The tweet suggests that there may be a retest of the $120 price level for Solana.\n\n8. Honk (HONK) on Solana: There are mentions of Honk, a goose-themed coin on the Solana blockchain. The tweets discuss its trading, airdrops, and its listing on the MEXCKickstarter platform.\n\nOverall, the messages provide insights into Solana's performance, network issues, market sentiment, and discussions around other projects on the Solana blockchain.","data":[8,6,6,8,0,2,26,15,10,12,8,11,12,11,8,12,5,22,11,9,12,14,15,13,10,7,6,7,6,8,9,13,4,18,7,34,8,17,8,6,14,17,12,18,43,10,10,17,9,5,19,17,3,11,6]},{"label":"ETFs","topics":"etfs,etf,blackrock,gbtc,fidelity","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Bitcoin ETF Tracker by @apollosats: There is a fractionalized rock project launching related to Bitcoin ETFs. This project is gaining attention and generating positive feedback.\n\n2. BlackRock's ETF Demand: BlackRock's ETF demand ranks among the top 5. This indicates a strong interest in ETFs related to Bitcoin.\n\n3. Bitcoin Flows Fuel Breakout: Bitcoin flows are fueling a breakout in the cryptocurrency market. This suggests that there is a significant movement of Bitcoin and it is impacting the market positively.\n\n4. Future of Bitcoin Futures ETFs: There is speculation about the future of Bitcoin futures ETFs. Simeon Hyman, Head of Investment Strategy at BITO, has an upbeat forecast for these ETFs.\n\n5. Bitcoin Surges: Bitcoin has experienced a 3% surge in price. This surge is attributed to the waning of \"sell the news\" sentiment and the demand fueled by BlackRock and Fidelity ETFs.\n\n6. Growing Investor Interest in Bitcoin ETFs: Spot Bitcoin ETFs have seen a significant net inflow of $38.5 million, indicating growing investor interest and confidence in the cryptocurrency market.\n\n7. BlackRock and Fidelity's January Surge: BlackRock and Fidelity have experienced a surge in January, with a total of $4.8 billion in inflows. This highlights their dominance in the Bitcoin ETF market.\n\n8. Record Rise in Digital Asset Management Funds: Digital asset management funds have recorded a total inflow of $7.7 billion in the US. This indicates a growing interest in crypto-backed investment products.\n\n9. Optimism for Future Enhancement of Bitcoin ETFs: There are expectations of future enhancements for Bitcoin ETFs, which are generating optimism among investors.\n\n10. Comparison between Bitcoin ETFs and Direct BTC Purchase: There is a discussion about the pros and cons of investing in Bitcoin ETFs versus directly purchasing BTC. This aims to help investors make informed decisions about their investment strategies.\n\n11. Ethereum's Dencun Upgrade: The spotlight is on Ethereum as the Dencun Upgrade goes live on the Sepolia testnet. This upgrade is generating excitement in the Ethereum community.\n\n12. BlackRock's Bitcoin ETF (IBIT) Outperforms Grayscale: BlackRock's Bitcoin ETF, IBIT, has surpassed Grayscale's in daily trading volume after 2 weeks. This highlights BlackRock's dominance in the Bitcoin ETF market.\n\nOverall, the key topics revolve around Bitcoin ETFs, Bitcoin price movements, investor interest, and the performance of major players like BlackRock and Fidelity in the cryptocurrency market.","data":[21,5,10,7,42,17,31,5,1,4,8,6,17,9,6,52,5,6,8,9,7,18,5,17,19,20,5,6,5,2,7,1,8,9,4,7,5,3,9,6,13,5,6,2,41,7,7,0,9,10,9,4,6,8,11]},{"label":"Art","topics":"art,artists,artist,piece,collection","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. NFTs: There are mentions of artists creating NFTs on $SOL (Solana blockchain) and the appreciation for NFTs in terms of putting physical art in one's own home. The value and worth of NFTs are also highlighted, with a mention of a piece of \"art\" worth almost $3,000.\n\n2. Art and Artists: The messages discuss various aspects of art, including fine art versus design, favorite artists creating NFTs, the understanding and appreciation of art, and the transformative power of art in one's life. Specific artists like Damien Hirst and Paschamo are mentioned and praised.\n\n3. Digital Art: The intersection of AI and NFTs in transforming digital art is mentioned, with a link provided for further exploration. The platform NftShowroom is also mentioned as a place to create or collect NFTs.\n\n4. Music and Art: The relationship between musicians and art is discussed, along with the question of whether artists love music in the same way and what collectors love. A link is provided for further discussion on the topic.\n\n5. Rare Digital Art on Hive: The platform Hive is mentioned as a place where rare digital art thrives. The mention of NftShowroom and PeakDcom indicates the use of social sites for artists and collectors to share their work and connect with others.\n\nOverall, the key topics revolve around NFTs, art, artists, digital art, and the relationship between music and art.","data":[4,6,43,6,0,0,2,4,1,2,15,5,3,6,3,0,2,2,5,4,5,7,2,4,6,3,4,4,3,8,12,1,5,5,3,9,6,3,5,6,4,2,6,3,2,3,8,9,3,7,4,1,6,3,5]},{"label":"Gaming","topics":"gaming,game,games,web3,playing","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Gaming: The messages mention various games such as Arathi Basin, Decimated Game, WoW, League/Dota, Diablo, Starcraft, COD, PUBG Mobile, and Crypto: The Game. There is also a mention of gaming-related terms like highscore, testers, game balance, and players with a high KD (kill-death ratio). The messages highlight the interest and engagement of users in different gaming communities.\n\n2. Crypto and Blockchain: The messages discuss the integration of blockchain technology in gaming, with mentions of Web3, gas fees, fast blockchain gaming, SKALE, Nebula Gaming Hub, and Web3 projects. There is also a reference to cryptocurrencies like Bitcoin (BTC) and Ethereum (ETH). The messages indicate the growing popularity and potential of crypto gaming.\n\n3. Community and Engagement: The messages mention the involvement of gaming communities, such as the collaboration between Life Games and SKALE, the participation of adults in Crypto: The Game, and the presence of cracked gamers on Web3. The messages highlight the importance of community-driven initiatives and the enthusiasm of users in the crypto gaming space.\n\nOverall, the key topics discussed in the messages revolve around gaming, crypto, blockchain, and community engagement in the crypto gaming industry.","data":[3,2,1,4,0,0,2,3,5,0,1,3,4,2,3,2,3,8,7,34,17,4,8,2,3,3,1,7,3,5,5,4,2,6,1,4,17,2,1,5,0,3,3,2,4,3,7,4,6,0,4,3,1,8,2]},{"label":"Bitcoin","topics":"types,bitcoin,hash,artwork,bitcoiner","description":"Based on the given messages from Twitter, the key topics currently discussed about Bitcoin are:\n\n1. Lawbreaker and Law-giver: Bitcoin is being described as both a lawbreaker and a law-giver, indicating its disruptive nature in the financial industry.\n\n2. Teranode and AWS: These are mentioned in relation to the BSVBlockchain, suggesting the use of advanced technology and infrastructure in the Bitcoin ecosystem.\n\n3. Bitcoin for the Brave: Bitcoin is portrayed as a currency for the brave, possibly referring to its volatility and potential risks involved in investing.\n\n4. Bitcoin Adoption: The article \"Bitcoin Adoption Is Not Monolithic\" is mentioned, highlighting the importance of understanding the diverse ways in which Bitcoin is being adopted.\n\n5. Architecture and Art Renaissance: Bitcoin is believed to bring a new era of Art Renaissance and improve architectural practices, indicating its potential impact beyond finance.\n\n6. Lao Tzu on Bitcoin: A reference to Lao Tzu, a Chinese philosopher, in relation to Bitcoin, suggesting the philosophical and ideological aspects associated with the cryptocurrency.\n\n7. SATs: Ordinals/Inscriptions and rare SATs are mentioned, possibly referring to the value and scarcity of Bitcoin's smallest unit, the satoshi.\n\n8. Bitcoin's Superiority: The superiority of Bitcoin over traditional financial systems is highlighted, indicating its advantages and benefits.\n\n9. Bitcoin as a Lifeboat: Bitcoin is described as a lifeboat, implying its potential to provide financial security and stability in times of economic uncertainty.\n\n10. Projection on Big Ben: A projection stating \"Bitcoin fixes this\" on the base of the Big Ben is mentioned, indicating the belief that Bitcoin can solve various financial issues.\n\n11. Comparison of Fiat and Bitcoin: A comparison between fiat currency (represented by dinosaur emojis) and Bitcoin (represented by a meteor emoji) is made, suggesting the superiority of Bitcoin over traditional fiat systems.\n\nThese topics reflect the diverse perspectives and discussions surrounding Bitcoin on social media platforms like Twitter.","data":[5,1,7,3,29,23,3,4,2,7,3,1,1,3,2,1,1,2,5,3,6,4,5,0,2,3,0,3,2,2,3,4,4,4,6,3,2,6,2,3,3,4,4,6,2,4,5,5,3,0,7,0,1,6,3]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coin","description":"Based on the given messages from Twitter, the key topics that are currently discussed in the crypto industry include:\n\n1. NFTs: There are mentions of sharing and featuring new NFT projects, as well as requests for recommendations on the next 10x meme coin to buy.\n\n2. Memecoins: Memecoins are being discussed, with references to their charts and potential for high returns. There is also a mention of a specific memecoin called $RARI on Solana.\n\n3. Crypto memes: The use of memes to explain Bitcoin and to share recent crypto memes is mentioned. The importance and effectiveness of using memes in the crypto space are highlighted.\n\n4. Specific cryptocurrencies: There are mentions of specific cryptocurrencies like $pepe, $SNOW (the official meme coin of @ice_blockchain), and @SpaceApeHBAR #HBAR.\n\n5. Social media communities: The mention of Twitter and sharing content on the platform indicates the importance of social media communities in the crypto industry.\n\nOverall, the discussions revolve around NFTs, memecoins, crypto memes, specific cryptocurrencies, and the role of social media in the crypto industry.","data":[2,2,4,2,1,1,3,3,2,7,1,2,3,1,4,4,2,5,4,6,2,5,4,0,3,2,1,4,4,6,7,40,2,4,5,2,4,7,1,4,2,1,5,4,3,0,2,3,4,1,4,1,3,3,2]},{"label":"NFTs","topics":"nft,nfts,pfp,collection,magic","description":"The key topics discussed in the given messages from Twitter are:\n\n1. NFT Updates: The update_metadata instruction for compressed NFTs is live on the mainnet. This indicates a development in the NFT industry.\n\n2. NFT Regulations: Organizations are aiming to shape NFT regulations as digital assets gain adoption. This suggests a growing need for regulatory frameworks in the NFT space.\n\n3. NFT Token Airdrop: There is an upcoming NFT token airdrop by Magic Eden, a platform rewarding Solana NFT traders back to 2021. This creates an opportunity for NFT enthusiasts.\n\n4. NFT Collectibles: Sotheby's is presenting EtherRock, an early NFT collectible, as a Sealed Auction. This highlights the value and market for NFT collectibles.\n\n5. Empowering NFT Creators: Magic Eden introduced the Creator's Alliance to empower NFT creators by ensuring they receive royalties for their digital projects. This emphasizes the importance of supporting creators in the NFT ecosystem.\n\n6. BookWorm Labs: BookWorm Labs is a decentralized NFT book publishing protocol that aims to empower authors by enabling direct distribution, payment from readers, and royalties on secondary sales. This showcases the application of blockchain technology in the publishing industry.\n\n7. Alternative NFT Storage: There is a mention of a non-fungible token (NFT) storage space that focuses on listing persistent alternatives to on-chain art storage. This suggests a discussion on different storage options for NFTs.\n\n8. Rario Reversal: Rario, a Dream Sports-backed NFT marketplace, has abandoned its shutdown plan. This indicates a change in the marketplace's direction and potential resilience in the NFT industry.\n\n9. NFT Medals: There are exclusive NFT medals available, and attendees of the Community Call #18 have a chance to obtain them. This highlights the community engagement and rewards within the NFT ecosystem.\n\n10. Beam for NFT Distribution: Beam, a QR code-based system developed by Enjin, allows for easy distribution of NFTs to followers, web3 gamers, and collectors. This showcases a tool for mass distribution of digital assets.\n\n11. Redeemable NFTs (rNFTs): rNFTs are forward contracts for physical things, programmed within smart contracts. They can be held, transferred, or traded like any other NFT. This introduces a concept of redeemable NFTs and their potential applications.\n\nOverall, the key topics revolve around NFT updates, regulations, token airdrops, collectibles, empowering creators, alternative storage, marketplace developments, community engagement, distribution tools, and innovative NFT concepts.","data":[3,3,3,4,2,0,3,2,5,4,3,4,3,3,11,3,5,4,5,7,2,3,2,3,2,1,1,5,4,7,5,1,4,1,8,3,5,1,5,7,4,4,1,2,2,0,6,4,4,4,6,3,0,3,3]},{"label":"Ethereum","topics":"gm,gme,fam,art,yesterday","description":"Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. Bitcoin (mentioned multiple times)\n2. NFTs or Memecoins\n3. Positive outlook and optimism\n4. Live poker and poker shows\n5. Coffee, art, and reading\n6. Farcaster_xyz and an invitation link\n7. Chance and its growth potential\n8. DRC20 and Doge\n9. Frustrations of a country and creating art\n10. Citrix explanations in a trial related to Bitcoin\n11. FOMO on BoredHungryAsia Korea Menu\n12. Grace on testnet and DeFi lending\n13. Altcoin blood and buying opportunities\n14. Quirkies NFT piece and free drops\n15. Taco Tuesday and a fire bundle for 1.35 eth\n16. Halving countdown and ENS (Ethereum Name Service)\n\nThese topics reflect the diverse interests and discussions within the crypto community, ranging from specific cryptocurrencies like Bitcoin and Doge to broader themes like NFTs, art, and positive outlooks.","data":[5,1,5,0,2,1,1,6,3,0,3,5,4,8,5,3,5,1,5,6,3,3,8,5,1,0,4,6,9,4,2,2,4,1,3,3,6,3,2,9,2,3,1,1,3,2,5,2,1,8,1,1,5,6,2]},{"label":"Mining","topics":"mining,miners,energy,miner,power","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Bitcoin mining: The messages mention the largest US Bitcoin mining farm and the consumption of electricity by large-scale crypto mining. It also highlights the potential for Bitcoin miners to lead in decarbonization.\n\n2. Safex Cash mining: The messages ask for $SFX mining stats and encourage miners to share the benefits of mining as a grid balancing tool.\n\n3. Node running: There is a discussion about who should be able to run a node, with the argument that only miners and specialized use cases should have the power to set the rules.\n\n4. Mining facility construction: The messages mention the construction of the world's largest Bitcoin mining facility in Corsicana, Texas.\n\n5. Mobile mining: The messages provide a beginner's guide to cryptocurrency mobile mining, stating that mining Bitcoin on a smartphone is not feasible but other mineable coins like Monero can be mined.\n\n6. ASIC miners: The messages explain that ASIC miners are efficient machines built for specific cryptocurrencies, capable of crunching complex codes.\n\nOverall, the key topics revolve around Bitcoin mining, different mining methods, and the role of miners in the crypto industry.","data":[2,1,3,1,0,18,0,0,1,1,3,7,1,2,1,10,0,2,0,0,2,3,1,2,4,3,2,3,0,0,1,4,21,4,6,1,1,1,2,1,1,3,2,1,2,2,1,1,0,2,3,0,3,2,3]},{"label":"Farcaster","topics":"farcaster,farcasterxyz,frames,social,base","description":"Based on the given messages from Twitter, the key topics that are currently discussed in the crypto industry include:\n\n1. Farcaster: The messages mention Farcaster multiple times, indicating that it is a platform or community that people are joining and discussing. It is described as a nascent environment with early adopters, and there are mentions of finding friends and connecting with high-quality people on Farcaster. Some users also mention their activity and success on Farcaster, suggesting its growing popularity.\n\n2. Warpcast: Although not extensively discussed, there is a mention of Warpcast, which seems to be another platform similar to Farcaster. However, the user states that they won't join Warpcast due to the unavailability of their desired username.\n\n3. NFTs: The messages mention finding friends on Farcaster based on the NFTs they hold. This suggests that NFTs (non-fungible tokens) are being discussed and used as a means of connecting with like-minded individuals on the platform.\n\n4. Base: There is a mention of Base, which could be another platform or project related to the crypto industry. It is suggested that a friend of the user had a successful mint on Highlight_xyz, which is worth checking out for anyone on Base.\n\n5. Comparison to Twitter: One user compares the experience on Farcaster to Twitter, stating that it is much closer to Twitter and describes it as a web3 X/Twitter. This indicates that Farcaster may have similarities to Twitter but with web3 integration.\n\n6. CQT: There is a mention of CQT (possibly a cryptocurrency or token) and a chart that needs to flip 0.31 before the next 400% leg up. This suggests that there is discussion and analysis of price movements and potential growth in the crypto industry.\n\nOverall, the key topics discussed in the given messages revolve around Farcaster, NFTs, other platforms like Warpcast and Base, and comparisons to Twitter. There is also a mention of a specific cryptocurrency (CQT) and its price chart analysis.","data":[2,0,1,3,0,0,1,0,1,1,2,3,5,3,0,0,0,16,16,1,2,4,2,1,2,2,6,1,5,2,4,1,1,3,4,0,2,3,1,0,2,1,2,4,5,1,3,1,3,0,3,6,4,2,2]},{"label":"Shiba Inu","topics":"shiba,shib,inu,bone,shibainu","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Shiba Inu (SHIB) cryptocurrency: The messages mention various developments and events related to the Shiba Inu cryptocurrency. These include the accumulation of trillions of SHIB by whales, a surge in token burn rate, the launch of Shiba Inu's Layer-2 blockchain called Shibarium, and the upcoming launch of the governance token for the Ryoshi network, which is part of the Shiba Inu ecosystem.\n\n2. Crypto industry news: The messages also highlight news and updates from the broader crypto industry. This includes Charles Schwab's entry into the ETF space, the fundraising of Nibiru Chain (NIBI) for blockchain development, and the potential short-term surge of Dogecoin (DOGE) following Bitcoin's rise.\n\n3. Partnerships and integrations: There are mentions of partnerships and integrations involving the Shiba Inu community. This includes an alliance with K9Finance and the integration of Shibarium into the GroveKeeper wallet and GroveX exchange.\n\n4. Other cryptocurrencies: The messages briefly mention BIBI, a cryptocurrency launched on the Binance Smart Chain (BSC), providing some basic details about its launch date, network, and price.\n\n5. Events and promotions: The messages inform about events and promotions related to the Shiba Inu ecosystem. This includes participation in events in The Sandbox to earn rewards and prizes.\n\nOverall, the key topics discussed in the given messages revolve around the Shiba Inu cryptocurrency, broader crypto industry news, partnerships and integrations, other cryptocurrencies, and events/promotions.","data":[1,3,3,6,2,0,5,2,2,6,2,0,1,0,0,2,3,3,1,0,1,0,2,1,0,1,36,3,3,0,3,1,0,1,0,2,1,0,1,0,2,4,0,16,0,0,2,3,1,1,2,0,0,1,1]},{"label":"Airdrop","topics":"airdrop,airdrops,tia,farming,dym","description":"Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. Airdrops: There is a discussion about various airdrops happening in the crypto space. People are mentioning specific airdrops like $JUP, $PHANTOM, $DYM, $TIA, $BRISE, and $CHEX. Some users are excited about airdrops and see them as an opportunity to receive free tokens or money. Others mention the challenges of airdrop farming and the saturation of the market.\n\n2. Staking: There is a mention of staking in relation to airdrops. One user suggests that there should be a multiplier for those who staked on the day of launch for future airdrops. Another user celebrates receiving $DYM for staking as low as one $TIA and expresses excitement about more wins to come.\n\n3. NFTs: One user mentions getting sidetracked and investing in ancient NFTs speculating on an upcoming airdrop on Base. This highlights the interest and involvement of users in the NFT market.\n\n4. ZeroLend: There is a mention of ZeroLend and its confirmed airdrop. The user suggests that ZeroLend makes things very easy, indicating a positive sentiment towards the project.\n\n5. CryptoHood: A user congratulates CryptoHood premium members who received $DYM and mentions that more wins are coming. This suggests that CryptoHood is a platform or community that provides opportunities for airdrops and rewards.\n\n6. HoD DAO: The user mentions that HoD DAO tokens will be issued on a specific platform and that users can use the platform to claim DAO tokens during airdrops. This highlights the importance of platforms in facilitating airdrop processes.\n\n7. Dock: The user mentions that Dock's platform is used by Gravity, a training provider, to issue fraud-proof digital work-at-height training certificates. This showcases a real-world use case for $DOCK tokens.\n\n8. Cosmos: There is a mention of Cosmos-based airdrops and the complexity involved in claiming them due to VPN requirements. The user criticizes Gary Gensler's stance on regulations, suggesting that it negatively impacts US users.\n\n9. Scammer Tokens: One user mentions receiving multiple \"airdrops\" of scammer tokens from BNB and ETH and expresses the intention to move their assets out of the wallet. This highlights the presence of scams and the need for caution in the crypto space.\n\n10. Gomble Games: The user mentions Gomble Games, a Binance Labs-backed gaming studio, and confirms an ongoing airdrop. The user provides a link and codes for participants to claim the airdrop.\n\nOverall, the key topics discussed in the given messages revolve around airdrops, staking, NFTs, specific projects like ZeroLend and CryptoHood, platforms facilitating airdrops, real-world use cases for tokens, regulatory concerns, scams, and gaming-related airdrops.","data":[0,22,3,2,1,0,0,1,0,3,3,2,0,1,2,2,1,4,2,3,3,3,0,0,0,3,1,3,3,1,1,0,3,3,0,1,4,3,5,3,2,3,3,3,3,3,1,5,1,0,0,1,1,0,1]},{"label":"Chainlink","topics":"chainlink,link,whale,resistance,million","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Chainlink's price surge: The messages mention that Chainlink's LINK token has reached a five-month high in exchange balance and has experienced a significant inflow of $75 million. The price surge is highlighted, and it is noted that the price level has not been seen since April 2022. The excitement among Chainlink supporters is also mentioned, as the token is close to overtaking Dogecoin in the Top 10 CMC list.\n\n2. Chainlink's innovation and dominance: The messages highlight Chainlink's continuous innovation and its position as the leading oracle network on the blockchain. The importance of oracles in the crypto industry is emphasized, and the narrative suggests that oracles and real-world assets (RWAs) will have a significant impact on the market. Another oracle network, PYTH, is also mentioned, which experienced a pump due to a Binance listing.\n\n3. Chainlink's market performance: The messages mention that Chainlink has outperformed the broader market with a 30% gain in the past week. This surge has solidified Chainlink's dominance among altcoins. The impressive run of Chainlink is compared to the performance of Dogecoin, which has been dethroned from the top 10 crypto by market cap list.\n\n4. Chainlink whale accumulation: The messages highlight an unusual accumulation spree of Chainlink in multiple wallets. The significance of this accumulation and its potential impact on the future of Chainlink is mentioned, urging readers to keep a close eye on this developing story.\n\n5. Other cryptocurrencies in the market: The messages briefly mention the market surge of Solana and the buzz around DeeStream. These cryptocurrencies are described as being \"on fire\" in the market, and readers are encouraged to keep an eye on DeeStream.\n\n6. NuLink's network testing: A partnership between NuLink and CoinList is mentioned, where NuLink is offering rewards to validators and early adopters who help test their network in the Horus 2.0 Incentivized Testnet. However, it is noted that this opportunity is not available in the US and Canada.\n\n7. Chainlink price prediction: The messages mention a 1.5% drop in the Chainlink price in the past 24 hours and provide a link for more information on the prediction. The hashtags related to elections and voting in Pakistan are also included in the message.\n\nOverall, the key topics discussed in the messages revolve around Chainlink's price surge, its innovation and dominance in the market, its market performance compared to other cryptocurrencies, whale accumulation, and partnerships with other projects.","data":[2,0,1,0,3,0,3,0,9,2,0,1,0,1,0,1,4,1,1,1,1,0,0,4,2,2,0,1,35,1,0,1,2,1,3,3,0,1,0,1,1,0,1,2,1,0,2,2,2,2,1,2,0,2,1]},{"label":"XRP","topics":"xrp,ripple,ledger,whale,payments","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. XRP: There are mentions of accumulating XRP during significant dips and discussions about its potential. There is also speculation about XRP reaching $22 soon. Additionally, there is a mention of an unconfirmed XRP documentary airing on Netflix.\n\n2. Ripple: The messages highlight Ripple's push for regulatory clarity on decentralized finance and its re-entry into the US market with product upgrades. There is also a mention of a major Binance announcement concerning Ripple in light of a recent exploit.\n\n3. Crypto Market: There is a discussion about a scam involving Raydium Farm pair Ray/USDT and the inability to remove liquidity or migrate to CLMM pool. There is also a mention of XRP holders not missing out on gains and a significant whale transfer.\n\n4. Security and Hacking: The messages mention a hack on Chris Larsen, co-founder of Ripple, resulting in the loss of 213 million XRP. There is also a mention of Ripple locking away a substantial amount of XRP tokens in its escrow wallet as part of its monthly unlock program.\n\n5. General Crypto Enthusiasm: There is anticipation for groundbreaking news related to Ripple, and a mention of the importance of XRP in the future of finance. There is also a request for a podcast interview about tokenization, AMM, and RWA.\n\nOverall, the key topics discussed in the messages revolve around XRP, Ripple, the crypto market, security and hacking incidents, and general enthusiasm for the crypto industry.","data":[3,1,1,3,0,1,1,1,3,0,4,3,1,0,4,2,1,2,0,0,0,1,0,1,2,2,0,3,2,1,4,6,1,1,0,3,0,11,2,3,1,9,0,4,1,2,0,4,1,2,4,3,0,0,0]},{"label":"PORK & PEPE","topics":"pork,pepe,nfa,coinw,dip","description":"The key topics discussed in the given messages from Twitter are:\n\n1. $PORK: The cryptocurrency token \"$PORK\" is mentioned multiple times in the messages. It is highlighted as being on the move and potentially bringing life to ETH memecoins. There is also a mention of $PORK being listed for trade on a specific platform and the community being encouraged to load up their ETH and swap for $PORK.\n\n2. $PEPE: The cryptocurrency token \"$PEPE\" is mentioned in relation to $PORK. The messages express surprise and excitement about seeing $Pepe and $Pork together as friends.\n\n3. Crypto Listings: The messages mention several new tokens and staking products that have been listed, including $PORK, $BABYBONK, $DEFI, $JUP, $WEN, $GME, $ZETA, $DMAIL, $DUEL, $ETH, $SOL, and $USDT. It is highlighted that $PORK has been listed on a specific platform for both spot and futures trading.\n\n4. Fairlaunch: There is a mention of a fairlaunch event for a cryptocurrency token called $PORKE. The messages indicate that the project has raised 60 BNB and is expected to reach a minimum of 150 BNB before the fairlaunch ends.\n\n5. CEX Listings: The messages highlight that $PORK has been listed on multiple centralized exchanges (CEXs) and has experienced significant growth since listing.\n\n6. Leveraged ETFs: The messages mention the launch of 4x leveraged ETFs for $PORK and a related airdrop event where participants can claim 10-100 USDT.\n\n7. Dominance and Performance: The messages emphasize the dominance and success of $PORK, stating that it has already flipped $PEPE, achieved a top 10 position in monthly volume on Uniswap, and received multiple CEX listings.\n\n8. $PORK 2.0 Presale: There is a mention of a live presale for $PORK 2.0, with an experienced team behind the project. The messages provide details on how to participate in the presale.\n\nOverall, the key topics discussed in the messages revolve around the cryptocurrency tokens $PORK and $PEPE, new token listings, fairlaunch events, CEX listings, leveraged ETFs, and the dominance and performance of $PORK.","data":[0,0,1,2,0,1,1,1,1,2,2,3,0,0,1,2,0,0,1,2,6,3,2,2,3,0,1,2,0,2,2,0,2,3,2,1,3,22,0,3,3,0,0,2,1,1,0,1,0,0,2,1,4,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-5.ts b/priv/repo/major_topics_seed/data-5.ts deleted file mode 100644 index 9a8976e276..0000000000 --- a/priv/repo/major_topics_seed/data-5.ts +++ /dev/null @@ -1,212 +0,0 @@ -export const NARRATIVES = { - labels: [ - '01.02.24', - '02.02.24', - '02.02.24', - '02.02.24', - '02.02.24', - '02.02.24', - '02.02.24', - '02.02.24', - '03.02.24', - '03.02.24', - '03.02.24', - '03.02.24', - '03.02.24', - '03.02.24', - '03.02.24', - '03.02.24', - '04.02.24', - '04.02.24', - '04.02.24', - '04.02.24', - '04.02.24', - '04.02.24', - '04.02.24', - '04.02.24', - '05.02.24', - '05.02.24', - '05.02.24', - '05.02.24', - '05.02.24', - '05.02.24', - '05.02.24', - '05.02.24', - '06.02.24', - '06.02.24', - '06.02.24', - '06.02.24', - '06.02.24', - '06.02.24', - '06.02.24', - '06.02.24', - '07.02.24', - '07.02.24', - '07.02.24', - '07.02.24', - '07.02.24', - '07.02.24', - '07.02.24', - '07.02.24', - '08.02.24', - '08.02.24', - '08.02.24', - '08.02.24', - '08.02.24', - '08.02.24', - '08.02.24', - ], - datasets: [ - { - label: 'Solana', - topics: 'solana,sol,outage,network,meme', - description: - "The messages from Twitter discuss various topics related to the crypto industry, particularly focusing on Solana (SOL). Some key points mentioned in the messages include:\n\n1. Solana's performance: The messages highlight Solana's outperformance compared to Bitcoin, showing a remarkable surge. Santiment's analysis reveals Solana's breakout against Bitcoin, marking a significant gain and sentiment shift. This suggests that Solana has been performing well in the market.\n\n2. Solana's network issues: There have been incidents where the Solana blockchain experienced downtime and halted block production. Despite claims of unparalleled speed and reliability, this was Solana's 11th incident over the past two years. However, a fix was coordinated among validators, and the network has since restarted.\n\n3. Bullish sentiment on Solana: Some users express their bullishness on Solana, stating that they believe it can do well in the coming bull run. They see potential in Solana's performance and consider it a good investment opportunity.\n\n4. Upgrade to Solana's network: One user mentions that Solana is undergoing an upgrade to their network. As they trade on-chain, they prefer not to be in a position where something could go wrong during the upgrade. They plan to resume trading the next day.\n\n5. Solana as an Ethereum killer: One user refers to Solana as an \"ETH killer,\" suggesting that it has the potential to compete with Ethereum in terms of functionality and performance.\n\n6. Criticisms of Solana: Another user expresses skepticism towards Solana, stating that it is centralized, full of scammers, and experiences frequent downtime. They also mention that the art on Solana is essentially copies of art on Ethereum. However, they acknowledge that their opinion may be considered as \"fud\" (fear, uncertainty, and doubt) and suggest ignoring their criticism.\n\n7. Solana price prediction: A tweet mentions a 0.5% gain in Solana's price in the past 24 hours, as the overall crypto market also rises by the same percentage. The tweet suggests that there may be a retest of the $120 price level for Solana.\n\n8. Honk (HONK) on Solana: There are mentions of Honk, a goose-themed coin on the Solana blockchain. The tweets discuss its trading, airdrops, and its listing on the MEXCKickstarter platform.\n\nOverall, the messages provide insights into Solana's performance, network issues, market sentiment, and discussions around other projects on the Solana blockchain.", - data: [ - 8, 6, 6, 8, 0, 2, 26, 15, 10, 12, 8, 11, 12, 11, 8, 12, 5, 22, 11, 9, 12, 14, 15, 13, 10, 7, - 6, 7, 6, 8, 9, 13, 4, 18, 7, 34, 8, 17, 8, 6, 14, 17, 12, 18, 43, 10, 10, 17, 9, 5, 19, 17, - 3, 11, 6, - ], - }, - { - label: 'ETFs', - topics: 'etfs,etf,blackrock,gbtc,fidelity', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Bitcoin ETF Tracker by @apollosats: There is a fractionalized rock project launching related to Bitcoin ETFs. This project is gaining attention and generating positive feedback.\n\n2. BlackRock's ETF Demand: BlackRock's ETF demand ranks among the top 5. This indicates a strong interest in ETFs related to Bitcoin.\n\n3. Bitcoin Flows Fuel Breakout: Bitcoin flows are fueling a breakout in the cryptocurrency market. This suggests that there is a significant movement of Bitcoin and it is impacting the market positively.\n\n4. Future of Bitcoin Futures ETFs: There is speculation about the future of Bitcoin futures ETFs. Simeon Hyman, Head of Investment Strategy at BITO, has an upbeat forecast for these ETFs.\n\n5. Bitcoin Surges: Bitcoin has experienced a 3% surge in price. This surge is attributed to the waning of \"sell the news\" sentiment and the demand fueled by BlackRock and Fidelity ETFs.\n\n6. Growing Investor Interest in Bitcoin ETFs: Spot Bitcoin ETFs have seen a significant net inflow of $38.5 million, indicating growing investor interest and confidence in the cryptocurrency market.\n\n7. BlackRock and Fidelity's January Surge: BlackRock and Fidelity have experienced a surge in January, with a total of $4.8 billion in inflows. This highlights their dominance in the Bitcoin ETF market.\n\n8. Record Rise in Digital Asset Management Funds: Digital asset management funds have recorded a total inflow of $7.7 billion in the US. This indicates a growing interest in crypto-backed investment products.\n\n9. Optimism for Future Enhancement of Bitcoin ETFs: There are expectations of future enhancements for Bitcoin ETFs, which are generating optimism among investors.\n\n10. Comparison between Bitcoin ETFs and Direct BTC Purchase: There is a discussion about the pros and cons of investing in Bitcoin ETFs versus directly purchasing BTC. This aims to help investors make informed decisions about their investment strategies.\n\n11. Ethereum's Dencun Upgrade: The spotlight is on Ethereum as the Dencun Upgrade goes live on the Sepolia testnet. This upgrade is generating excitement in the Ethereum community.\n\n12. BlackRock's Bitcoin ETF (IBIT) Outperforms Grayscale: BlackRock's Bitcoin ETF, IBIT, has surpassed Grayscale's in daily trading volume after 2 weeks. This highlights BlackRock's dominance in the Bitcoin ETF market.\n\nOverall, the key topics revolve around Bitcoin ETFs, Bitcoin price movements, investor interest, and the performance of major players like BlackRock and Fidelity in the cryptocurrency market.", - data: [ - 21, 5, 10, 7, 42, 17, 31, 5, 1, 4, 8, 6, 17, 9, 6, 52, 5, 6, 8, 9, 7, 18, 5, 17, 19, 20, 5, - 6, 5, 2, 7, 1, 8, 9, 4, 7, 5, 3, 9, 6, 13, 5, 6, 2, 41, 7, 7, 0, 9, 10, 9, 4, 6, 8, 11, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,collection', - description: - 'The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. NFTs: There are mentions of artists creating NFTs on $SOL (Solana blockchain) and the appreciation for NFTs in terms of putting physical art in one\'s own home. The value and worth of NFTs are also highlighted, with a mention of a piece of "art" worth almost $3,000.\n\n2. Art and Artists: The messages discuss various aspects of art, including fine art versus design, favorite artists creating NFTs, the understanding and appreciation of art, and the transformative power of art in one\'s life. Specific artists like Damien Hirst and Paschamo are mentioned and praised.\n\n3. Digital Art: The intersection of AI and NFTs in transforming digital art is mentioned, with a link provided for further exploration. The platform NftShowroom is also mentioned as a place to create or collect NFTs.\n\n4. Music and Art: The relationship between musicians and art is discussed, along with the question of whether artists love music in the same way and what collectors love. A link is provided for further discussion on the topic.\n\n5. Rare Digital Art on Hive: The platform Hive is mentioned as a place where rare digital art thrives. The mention of NftShowroom and PeakDcom indicates the use of social sites for artists and collectors to share their work and connect with others.\n\nOverall, the key topics revolve around NFTs, art, artists, digital art, and the relationship between music and art.', - data: [ - 4, 6, 43, 6, 0, 0, 2, 4, 1, 2, 15, 5, 3, 6, 3, 0, 2, 2, 5, 4, 5, 7, 2, 4, 6, 3, 4, 4, 3, 8, - 12, 1, 5, 5, 3, 9, 6, 3, 5, 6, 4, 2, 6, 3, 2, 3, 8, 9, 3, 7, 4, 1, 6, 3, 5, - ], - }, - { - label: 'Gaming', - topics: 'gaming,game,games,web3,playing', - description: - 'The key topics discussed in the given messages from Twitter are:\n\n1. Gaming: The messages mention various games such as Arathi Basin, Decimated Game, WoW, League/Dota, Diablo, Starcraft, COD, PUBG Mobile, and Crypto: The Game. There is also a mention of gaming-related terms like highscore, testers, game balance, and players with a high KD (kill-death ratio). The messages highlight the interest and engagement of users in different gaming communities.\n\n2. Crypto and Blockchain: The messages discuss the integration of blockchain technology in gaming, with mentions of Web3, gas fees, fast blockchain gaming, SKALE, Nebula Gaming Hub, and Web3 projects. There is also a reference to cryptocurrencies like Bitcoin (BTC) and Ethereum (ETH). The messages indicate the growing popularity and potential of crypto gaming.\n\n3. Community and Engagement: The messages mention the involvement of gaming communities, such as the collaboration between Life Games and SKALE, the participation of adults in Crypto: The Game, and the presence of cracked gamers on Web3. The messages highlight the importance of community-driven initiatives and the enthusiasm of users in the crypto gaming space.\n\nOverall, the key topics discussed in the messages revolve around gaming, crypto, blockchain, and community engagement in the crypto gaming industry.', - data: [ - 3, 2, 1, 4, 0, 0, 2, 3, 5, 0, 1, 3, 4, 2, 3, 2, 3, 8, 7, 34, 17, 4, 8, 2, 3, 3, 1, 7, 3, 5, - 5, 4, 2, 6, 1, 4, 17, 2, 1, 5, 0, 3, 3, 2, 4, 3, 7, 4, 6, 0, 4, 3, 1, 8, 2, - ], - }, - { - label: 'Bitcoin', - topics: 'types,bitcoin,hash,artwork,bitcoiner', - description: - 'Based on the given messages from Twitter, the key topics currently discussed about Bitcoin are:\n\n1. Lawbreaker and Law-giver: Bitcoin is being described as both a lawbreaker and a law-giver, indicating its disruptive nature in the financial industry.\n\n2. Teranode and AWS: These are mentioned in relation to the BSVBlockchain, suggesting the use of advanced technology and infrastructure in the Bitcoin ecosystem.\n\n3. Bitcoin for the Brave: Bitcoin is portrayed as a currency for the brave, possibly referring to its volatility and potential risks involved in investing.\n\n4. Bitcoin Adoption: The article "Bitcoin Adoption Is Not Monolithic" is mentioned, highlighting the importance of understanding the diverse ways in which Bitcoin is being adopted.\n\n5. Architecture and Art Renaissance: Bitcoin is believed to bring a new era of Art Renaissance and improve architectural practices, indicating its potential impact beyond finance.\n\n6. Lao Tzu on Bitcoin: A reference to Lao Tzu, a Chinese philosopher, in relation to Bitcoin, suggesting the philosophical and ideological aspects associated with the cryptocurrency.\n\n7. SATs: Ordinals/Inscriptions and rare SATs are mentioned, possibly referring to the value and scarcity of Bitcoin\'s smallest unit, the satoshi.\n\n8. Bitcoin\'s Superiority: The superiority of Bitcoin over traditional financial systems is highlighted, indicating its advantages and benefits.\n\n9. Bitcoin as a Lifeboat: Bitcoin is described as a lifeboat, implying its potential to provide financial security and stability in times of economic uncertainty.\n\n10. Projection on Big Ben: A projection stating "Bitcoin fixes this" on the base of the Big Ben is mentioned, indicating the belief that Bitcoin can solve various financial issues.\n\n11. Comparison of Fiat and Bitcoin: A comparison between fiat currency (represented by dinosaur emojis) and Bitcoin (represented by a meteor emoji) is made, suggesting the superiority of Bitcoin over traditional fiat systems.\n\nThese topics reflect the diverse perspectives and discussions surrounding Bitcoin on social media platforms like Twitter.', - data: [ - 5, 1, 7, 3, 29, 23, 3, 4, 2, 7, 3, 1, 1, 3, 2, 1, 1, 2, 5, 3, 6, 4, 5, 0, 2, 3, 0, 3, 2, 2, - 3, 4, 4, 4, 6, 3, 2, 6, 2, 3, 3, 4, 4, 6, 2, 4, 5, 5, 3, 0, 7, 0, 1, 6, 3, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coin', - description: - 'Based on the given messages from Twitter, the key topics that are currently discussed in the crypto industry include:\n\n1. NFTs: There are mentions of sharing and featuring new NFT projects, as well as requests for recommendations on the next 10x meme coin to buy.\n\n2. Memecoins: Memecoins are being discussed, with references to their charts and potential for high returns. There is also a mention of a specific memecoin called $RARI on Solana.\n\n3. Crypto memes: The use of memes to explain Bitcoin and to share recent crypto memes is mentioned. The importance and effectiveness of using memes in the crypto space are highlighted.\n\n4. Specific cryptocurrencies: There are mentions of specific cryptocurrencies like $pepe, $SNOW (the official meme coin of @ice_blockchain), and @SpaceApeHBAR #HBAR.\n\n5. Social media communities: The mention of Twitter and sharing content on the platform indicates the importance of social media communities in the crypto industry.\n\nOverall, the discussions revolve around NFTs, memecoins, crypto memes, specific cryptocurrencies, and the role of social media in the crypto industry.', - data: [ - 2, 2, 4, 2, 1, 1, 3, 3, 2, 7, 1, 2, 3, 1, 4, 4, 2, 5, 4, 6, 2, 5, 4, 0, 3, 2, 1, 4, 4, 6, 7, - 40, 2, 4, 5, 2, 4, 7, 1, 4, 2, 1, 5, 4, 3, 0, 2, 3, 4, 1, 4, 1, 3, 3, 2, - ], - }, - { - label: 'NFTs', - topics: 'nft,nfts,pfp,collection,magic', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. NFT Updates: The update_metadata instruction for compressed NFTs is live on the mainnet. This indicates a development in the NFT industry.\n\n2. NFT Regulations: Organizations are aiming to shape NFT regulations as digital assets gain adoption. This suggests a growing need for regulatory frameworks in the NFT space.\n\n3. NFT Token Airdrop: There is an upcoming NFT token airdrop by Magic Eden, a platform rewarding Solana NFT traders back to 2021. This creates an opportunity for NFT enthusiasts.\n\n4. NFT Collectibles: Sotheby's is presenting EtherRock, an early NFT collectible, as a Sealed Auction. This highlights the value and market for NFT collectibles.\n\n5. Empowering NFT Creators: Magic Eden introduced the Creator's Alliance to empower NFT creators by ensuring they receive royalties for their digital projects. This emphasizes the importance of supporting creators in the NFT ecosystem.\n\n6. BookWorm Labs: BookWorm Labs is a decentralized NFT book publishing protocol that aims to empower authors by enabling direct distribution, payment from readers, and royalties on secondary sales. This showcases the application of blockchain technology in the publishing industry.\n\n7. Alternative NFT Storage: There is a mention of a non-fungible token (NFT) storage space that focuses on listing persistent alternatives to on-chain art storage. This suggests a discussion on different storage options for NFTs.\n\n8. Rario Reversal: Rario, a Dream Sports-backed NFT marketplace, has abandoned its shutdown plan. This indicates a change in the marketplace's direction and potential resilience in the NFT industry.\n\n9. NFT Medals: There are exclusive NFT medals available, and attendees of the Community Call #18 have a chance to obtain them. This highlights the community engagement and rewards within the NFT ecosystem.\n\n10. Beam for NFT Distribution: Beam, a QR code-based system developed by Enjin, allows for easy distribution of NFTs to followers, web3 gamers, and collectors. This showcases a tool for mass distribution of digital assets.\n\n11. Redeemable NFTs (rNFTs): rNFTs are forward contracts for physical things, programmed within smart contracts. They can be held, transferred, or traded like any other NFT. This introduces a concept of redeemable NFTs and their potential applications.\n\nOverall, the key topics revolve around NFT updates, regulations, token airdrops, collectibles, empowering creators, alternative storage, marketplace developments, community engagement, distribution tools, and innovative NFT concepts.", - data: [ - 3, 3, 3, 4, 2, 0, 3, 2, 5, 4, 3, 4, 3, 3, 11, 3, 5, 4, 5, 7, 2, 3, 2, 3, 2, 1, 1, 5, 4, 7, - 5, 1, 4, 1, 8, 3, 5, 1, 5, 7, 4, 4, 1, 2, 2, 0, 6, 4, 4, 4, 6, 3, 0, 3, 3, - ], - }, - { - label: 'Ethereum', - topics: 'gm,gme,fam,art,yesterday', - description: - 'Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. Bitcoin (mentioned multiple times)\n2. NFTs or Memecoins\n3. Positive outlook and optimism\n4. Live poker and poker shows\n5. Coffee, art, and reading\n6. Farcaster_xyz and an invitation link\n7. Chance and its growth potential\n8. DRC20 and Doge\n9. Frustrations of a country and creating art\n10. Citrix explanations in a trial related to Bitcoin\n11. FOMO on BoredHungryAsia Korea Menu\n12. Grace on testnet and DeFi lending\n13. Altcoin blood and buying opportunities\n14. Quirkies NFT piece and free drops\n15. Taco Tuesday and a fire bundle for 1.35 eth\n16. Halving countdown and ENS (Ethereum Name Service)\n\nThese topics reflect the diverse interests and discussions within the crypto community, ranging from specific cryptocurrencies like Bitcoin and Doge to broader themes like NFTs, art, and positive outlooks.', - data: [ - 5, 1, 5, 0, 2, 1, 1, 6, 3, 0, 3, 5, 4, 8, 5, 3, 5, 1, 5, 6, 3, 3, 8, 5, 1, 0, 4, 6, 9, 4, 2, - 2, 4, 1, 3, 3, 6, 3, 2, 9, 2, 3, 1, 1, 3, 2, 5, 2, 1, 8, 1, 1, 5, 6, 2, - ], - }, - { - label: 'Mining', - topics: 'mining,miners,energy,miner,power', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Bitcoin mining: The messages mention the largest US Bitcoin mining farm and the consumption of electricity by large-scale crypto mining. It also highlights the potential for Bitcoin miners to lead in decarbonization.\n\n2. Safex Cash mining: The messages ask for $SFX mining stats and encourage miners to share the benefits of mining as a grid balancing tool.\n\n3. Node running: There is a discussion about who should be able to run a node, with the argument that only miners and specialized use cases should have the power to set the rules.\n\n4. Mining facility construction: The messages mention the construction of the world's largest Bitcoin mining facility in Corsicana, Texas.\n\n5. Mobile mining: The messages provide a beginner's guide to cryptocurrency mobile mining, stating that mining Bitcoin on a smartphone is not feasible but other mineable coins like Monero can be mined.\n\n6. ASIC miners: The messages explain that ASIC miners are efficient machines built for specific cryptocurrencies, capable of crunching complex codes.\n\nOverall, the key topics revolve around Bitcoin mining, different mining methods, and the role of miners in the crypto industry.", - data: [ - 2, 1, 3, 1, 0, 18, 0, 0, 1, 1, 3, 7, 1, 2, 1, 10, 0, 2, 0, 0, 2, 3, 1, 2, 4, 3, 2, 3, 0, 0, - 1, 4, 21, 4, 6, 1, 1, 1, 2, 1, 1, 3, 2, 1, 2, 2, 1, 1, 0, 2, 3, 0, 3, 2, 3, - ], - }, - { - label: 'Farcaster', - topics: 'farcaster,farcasterxyz,frames,social,base', - description: - "Based on the given messages from Twitter, the key topics that are currently discussed in the crypto industry include:\n\n1. Farcaster: The messages mention Farcaster multiple times, indicating that it is a platform or community that people are joining and discussing. It is described as a nascent environment with early adopters, and there are mentions of finding friends and connecting with high-quality people on Farcaster. Some users also mention their activity and success on Farcaster, suggesting its growing popularity.\n\n2. Warpcast: Although not extensively discussed, there is a mention of Warpcast, which seems to be another platform similar to Farcaster. However, the user states that they won't join Warpcast due to the unavailability of their desired username.\n\n3. NFTs: The messages mention finding friends on Farcaster based on the NFTs they hold. This suggests that NFTs (non-fungible tokens) are being discussed and used as a means of connecting with like-minded individuals on the platform.\n\n4. Base: There is a mention of Base, which could be another platform or project related to the crypto industry. It is suggested that a friend of the user had a successful mint on Highlight_xyz, which is worth checking out for anyone on Base.\n\n5. Comparison to Twitter: One user compares the experience on Farcaster to Twitter, stating that it is much closer to Twitter and describes it as a web3 X/Twitter. This indicates that Farcaster may have similarities to Twitter but with web3 integration.\n\n6. CQT: There is a mention of CQT (possibly a cryptocurrency or token) and a chart that needs to flip 0.31 before the next 400% leg up. This suggests that there is discussion and analysis of price movements and potential growth in the crypto industry.\n\nOverall, the key topics discussed in the given messages revolve around Farcaster, NFTs, other platforms like Warpcast and Base, and comparisons to Twitter. There is also a mention of a specific cryptocurrency (CQT) and its price chart analysis.", - data: [ - 2, 0, 1, 3, 0, 0, 1, 0, 1, 1, 2, 3, 5, 3, 0, 0, 0, 16, 16, 1, 2, 4, 2, 1, 2, 2, 6, 1, 5, 2, - 4, 1, 1, 3, 4, 0, 2, 3, 1, 0, 2, 1, 2, 4, 5, 1, 3, 1, 3, 0, 3, 6, 4, 2, 2, - ], - }, - { - label: 'Shiba Inu', - topics: 'shiba,shib,inu,bone,shibainu', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Shiba Inu (SHIB) cryptocurrency: The messages mention various developments and events related to the Shiba Inu cryptocurrency. These include the accumulation of trillions of SHIB by whales, a surge in token burn rate, the launch of Shiba Inu's Layer-2 blockchain called Shibarium, and the upcoming launch of the governance token for the Ryoshi network, which is part of the Shiba Inu ecosystem.\n\n2. Crypto industry news: The messages also highlight news and updates from the broader crypto industry. This includes Charles Schwab's entry into the ETF space, the fundraising of Nibiru Chain (NIBI) for blockchain development, and the potential short-term surge of Dogecoin (DOGE) following Bitcoin's rise.\n\n3. Partnerships and integrations: There are mentions of partnerships and integrations involving the Shiba Inu community. This includes an alliance with K9Finance and the integration of Shibarium into the GroveKeeper wallet and GroveX exchange.\n\n4. Other cryptocurrencies: The messages briefly mention BIBI, a cryptocurrency launched on the Binance Smart Chain (BSC), providing some basic details about its launch date, network, and price.\n\n5. Events and promotions: The messages inform about events and promotions related to the Shiba Inu ecosystem. This includes participation in events in The Sandbox to earn rewards and prizes.\n\nOverall, the key topics discussed in the given messages revolve around the Shiba Inu cryptocurrency, broader crypto industry news, partnerships and integrations, other cryptocurrencies, and events/promotions.", - data: [ - 1, 3, 3, 6, 2, 0, 5, 2, 2, 6, 2, 0, 1, 0, 0, 2, 3, 3, 1, 0, 1, 0, 2, 1, 0, 1, 36, 3, 3, 0, - 3, 1, 0, 1, 0, 2, 1, 0, 1, 0, 2, 4, 0, 16, 0, 0, 2, 3, 1, 1, 2, 0, 0, 1, 1, - ], - }, - { - label: 'Airdrop', - topics: 'airdrop,airdrops,tia,farming,dym', - description: - 'Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. Airdrops: There is a discussion about various airdrops happening in the crypto space. People are mentioning specific airdrops like $JUP, $PHANTOM, $DYM, $TIA, $BRISE, and $CHEX. Some users are excited about airdrops and see them as an opportunity to receive free tokens or money. Others mention the challenges of airdrop farming and the saturation of the market.\n\n2. Staking: There is a mention of staking in relation to airdrops. One user suggests that there should be a multiplier for those who staked on the day of launch for future airdrops. Another user celebrates receiving $DYM for staking as low as one $TIA and expresses excitement about more wins to come.\n\n3. NFTs: One user mentions getting sidetracked and investing in ancient NFTs speculating on an upcoming airdrop on Base. This highlights the interest and involvement of users in the NFT market.\n\n4. ZeroLend: There is a mention of ZeroLend and its confirmed airdrop. The user suggests that ZeroLend makes things very easy, indicating a positive sentiment towards the project.\n\n5. CryptoHood: A user congratulates CryptoHood premium members who received $DYM and mentions that more wins are coming. This suggests that CryptoHood is a platform or community that provides opportunities for airdrops and rewards.\n\n6. HoD DAO: The user mentions that HoD DAO tokens will be issued on a specific platform and that users can use the platform to claim DAO tokens during airdrops. This highlights the importance of platforms in facilitating airdrop processes.\n\n7. Dock: The user mentions that Dock\'s platform is used by Gravity, a training provider, to issue fraud-proof digital work-at-height training certificates. This showcases a real-world use case for $DOCK tokens.\n\n8. Cosmos: There is a mention of Cosmos-based airdrops and the complexity involved in claiming them due to VPN requirements. The user criticizes Gary Gensler\'s stance on regulations, suggesting that it negatively impacts US users.\n\n9. Scammer Tokens: One user mentions receiving multiple "airdrops" of scammer tokens from BNB and ETH and expresses the intention to move their assets out of the wallet. This highlights the presence of scams and the need for caution in the crypto space.\n\n10. Gomble Games: The user mentions Gomble Games, a Binance Labs-backed gaming studio, and confirms an ongoing airdrop. The user provides a link and codes for participants to claim the airdrop.\n\nOverall, the key topics discussed in the given messages revolve around airdrops, staking, NFTs, specific projects like ZeroLend and CryptoHood, platforms facilitating airdrops, real-world use cases for tokens, regulatory concerns, scams, and gaming-related airdrops.', - data: [ - 0, 22, 3, 2, 1, 0, 0, 1, 0, 3, 3, 2, 0, 1, 2, 2, 1, 4, 2, 3, 3, 3, 0, 0, 0, 3, 1, 3, 3, 1, - 1, 0, 3, 3, 0, 1, 4, 3, 5, 3, 2, 3, 3, 3, 3, 3, 1, 5, 1, 0, 0, 1, 1, 0, 1, - ], - }, - { - label: 'Chainlink', - topics: 'chainlink,link,whale,resistance,million', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Chainlink's price surge: The messages mention that Chainlink's LINK token has reached a five-month high in exchange balance and has experienced a significant inflow of $75 million. The price surge is highlighted, and it is noted that the price level has not been seen since April 2022. The excitement among Chainlink supporters is also mentioned, as the token is close to overtaking Dogecoin in the Top 10 CMC list.\n\n2. Chainlink's innovation and dominance: The messages highlight Chainlink's continuous innovation and its position as the leading oracle network on the blockchain. The importance of oracles in the crypto industry is emphasized, and the narrative suggests that oracles and real-world assets (RWAs) will have a significant impact on the market. Another oracle network, PYTH, is also mentioned, which experienced a pump due to a Binance listing.\n\n3. Chainlink's market performance: The messages mention that Chainlink has outperformed the broader market with a 30% gain in the past week. This surge has solidified Chainlink's dominance among altcoins. The impressive run of Chainlink is compared to the performance of Dogecoin, which has been dethroned from the top 10 crypto by market cap list.\n\n4. Chainlink whale accumulation: The messages highlight an unusual accumulation spree of Chainlink in multiple wallets. The significance of this accumulation and its potential impact on the future of Chainlink is mentioned, urging readers to keep a close eye on this developing story.\n\n5. Other cryptocurrencies in the market: The messages briefly mention the market surge of Solana and the buzz around DeeStream. These cryptocurrencies are described as being \"on fire\" in the market, and readers are encouraged to keep an eye on DeeStream.\n\n6. NuLink's network testing: A partnership between NuLink and CoinList is mentioned, where NuLink is offering rewards to validators and early adopters who help test their network in the Horus 2.0 Incentivized Testnet. However, it is noted that this opportunity is not available in the US and Canada.\n\n7. Chainlink price prediction: The messages mention a 1.5% drop in the Chainlink price in the past 24 hours and provide a link for more information on the prediction. The hashtags related to elections and voting in Pakistan are also included in the message.\n\nOverall, the key topics discussed in the messages revolve around Chainlink's price surge, its innovation and dominance in the market, its market performance compared to other cryptocurrencies, whale accumulation, and partnerships with other projects.", - data: [ - 2, 0, 1, 0, 3, 0, 3, 0, 9, 2, 0, 1, 0, 1, 0, 1, 4, 1, 1, 1, 1, 0, 0, 4, 2, 2, 0, 1, 35, 1, - 0, 1, 2, 1, 3, 3, 0, 1, 0, 1, 1, 0, 1, 2, 1, 0, 2, 2, 2, 2, 1, 2, 0, 2, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,ledger,whale,payments', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. XRP: There are mentions of accumulating XRP during significant dips and discussions about its potential. There is also speculation about XRP reaching $22 soon. Additionally, there is a mention of an unconfirmed XRP documentary airing on Netflix.\n\n2. Ripple: The messages highlight Ripple's push for regulatory clarity on decentralized finance and its re-entry into the US market with product upgrades. There is also a mention of a major Binance announcement concerning Ripple in light of a recent exploit.\n\n3. Crypto Market: There is a discussion about a scam involving Raydium Farm pair Ray/USDT and the inability to remove liquidity or migrate to CLMM pool. There is also a mention of XRP holders not missing out on gains and a significant whale transfer.\n\n4. Security and Hacking: The messages mention a hack on Chris Larsen, co-founder of Ripple, resulting in the loss of 213 million XRP. There is also a mention of Ripple locking away a substantial amount of XRP tokens in its escrow wallet as part of its monthly unlock program.\n\n5. General Crypto Enthusiasm: There is anticipation for groundbreaking news related to Ripple, and a mention of the importance of XRP in the future of finance. There is also a request for a podcast interview about tokenization, AMM, and RWA.\n\nOverall, the key topics discussed in the messages revolve around XRP, Ripple, the crypto market, security and hacking incidents, and general enthusiasm for the crypto industry.", - data: [ - 3, 1, 1, 3, 0, 1, 1, 1, 3, 0, 4, 3, 1, 0, 4, 2, 1, 2, 0, 0, 0, 1, 0, 1, 2, 2, 0, 3, 2, 1, 4, - 6, 1, 1, 0, 3, 0, 11, 2, 3, 1, 9, 0, 4, 1, 2, 0, 4, 1, 2, 4, 3, 0, 0, 0, - ], - }, - { - label: 'PORK & PEPE', - topics: 'pork,pepe,nfa,coinw,dip', - description: - 'The key topics discussed in the given messages from Twitter are:\n\n1. $PORK: The cryptocurrency token "$PORK" is mentioned multiple times in the messages. It is highlighted as being on the move and potentially bringing life to ETH memecoins. There is also a mention of $PORK being listed for trade on a specific platform and the community being encouraged to load up their ETH and swap for $PORK.\n\n2. $PEPE: The cryptocurrency token "$PEPE" is mentioned in relation to $PORK. The messages express surprise and excitement about seeing $Pepe and $Pork together as friends.\n\n3. Crypto Listings: The messages mention several new tokens and staking products that have been listed, including $PORK, $BABYBONK, $DEFI, $JUP, $WEN, $GME, $ZETA, $DMAIL, $DUEL, $ETH, $SOL, and $USDT. It is highlighted that $PORK has been listed on a specific platform for both spot and futures trading.\n\n4. Fairlaunch: There is a mention of a fairlaunch event for a cryptocurrency token called $PORKE. The messages indicate that the project has raised 60 BNB and is expected to reach a minimum of 150 BNB before the fairlaunch ends.\n\n5. CEX Listings: The messages highlight that $PORK has been listed on multiple centralized exchanges (CEXs) and has experienced significant growth since listing.\n\n6. Leveraged ETFs: The messages mention the launch of 4x leveraged ETFs for $PORK and a related airdrop event where participants can claim 10-100 USDT.\n\n7. Dominance and Performance: The messages emphasize the dominance and success of $PORK, stating that it has already flipped $PEPE, achieved a top 10 position in monthly volume on Uniswap, and received multiple CEX listings.\n\n8. $PORK 2.0 Presale: There is a mention of a live presale for $PORK 2.0, with an experienced team behind the project. The messages provide details on how to participate in the presale.\n\nOverall, the key topics discussed in the messages revolve around the cryptocurrency tokens $PORK and $PEPE, new token listings, fairlaunch events, CEX listings, leveraged ETFs, and the dominance and performance of $PORK.', - data: [ - 0, 0, 1, 2, 0, 1, 1, 1, 1, 2, 2, 3, 0, 0, 1, 2, 0, 0, 1, 2, 6, 3, 2, 2, 3, 0, 1, 2, 0, 2, 2, - 0, 2, 3, 2, 1, 3, 22, 0, 3, 3, 0, 0, 2, 1, 1, 0, 1, 0, 0, 2, 1, 4, 1, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-50.json b/priv/repo/major_topics_seed/data-50.json deleted file mode 100644 index 78882e2df2..0000000000 --- a/priv/repo/major_topics_seed/data-50.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["12.12.24","13.12.24","13.12.24","13.12.24","13.12.24","13.12.24","13.12.24","13.12.24","14.12.24","14.12.24","14.12.24","14.12.24","14.12.24","14.12.24","14.12.24","14.12.24","15.12.24","15.12.24","15.12.24","15.12.24","15.12.24","15.12.24","15.12.24","15.12.24","16.12.24","16.12.24","16.12.24","16.12.24","16.12.24","16.12.24","16.12.24","16.12.24","17.12.24","17.12.24","17.12.24","17.12.24","17.12.24","17.12.24","17.12.24","17.12.24","18.12.24","18.12.24","18.12.24","18.12.24","18.12.24","18.12.24","18.12.24","18.12.24","19.12.24","19.12.24","19.12.24","19.12.24","19.12.24","19.12.24","19.12.24"],"datasets":[{"label":"AI","topics":"ai,agents,agent,data,humans","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- The growing importance of AI in the industry, with discussions on AI coins, AI agents, and the future of AI technology.\n- The potential of decentralized knowledge graphs for better AI development.\n- The combination of crypto and AI, and the bullish outlook on projects like @sidexyz that are integrating AI into their infrastructure.\n- The launch of new AI products and platforms, such as the AI Agent Marketplace by HYVE and the mainnet launch of $DSYNC with sentient agents.\n- The rise of emotion tokens and their potential in the industry.\n- Specific projects like @edge_pod and @virtuals_io being highlighted for their AI-related initiatives.\n- Updates on specific AI coins like $NAI and their performance in the market.\n- Discussions on the importance of creativity and hard work in the context of AI development.\n- The potential for AI to address issues of honesty and malevolence in human behavior.\n- Speculation on the future of AI technology and its impact on various industries.","data":[30,235,41,23,4,0,15,21,8,19,28,21,15,27,11,19,17,28,13,12,25,23,20,19,16,24,39,24,17,19,29,8,13,30,20,17,22,15,20,18,11,24,24,15,22,10,22,24,16,28,14,19,37,17,28]},{"label":"PENGU","topics":"pengu,pudgy,penguins,pudgypenguins,penguin","description":"The key topics discussed in the messages from twitter are:\n1. Airdrops and potential token launches in the crypto industry, specifically mentioning PENGU and OpenSea.\n2. Investment strategies and profit-taking in NFTs, particularly focusing on Pudgy Penguins.\n3. Comparison between different cryptocurrencies like BTC and PENGU, and the use of StrikeX for on-chain transactions.\n4. The use of Solana for airdrops and wallet mapping, with a mention of chunky logic for the back end.\n5. The comparison between PENGU token launch and airdrop to Gary V's book airdrop.\n6. The surge in PENGU token price and market cap, with a mention of a trader making a significant return.\n7. Market analysis of PENGU and Ape coin in relation to SOL market cap.\n8. Eligibility for receiving PENGU allocation in Abstract Discord and the requirement to fill out a form for opt-in.","data":[5,18,9,8,2,0,10,7,15,11,10,16,8,12,5,7,7,6,10,8,16,9,7,3,8,8,6,19,15,14,14,9,5,10,21,16,88,16,73,3,4,6,14,12,8,3,5,2,13,12,6,9,11,6,5]},{"label":"MSTR","topics":"mstr,microstrategy,nasdaq,qqq,100","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Microstrategy's significant investment in Bitcoin, owning over 2% of the entire Bitcoin supply.\n2. Microstrategy's inclusion in the Nasdaq 100 index, with Moderna falling out of the index.\n3. Microstrategy's recent purchase of 15,350 BTC for $1.5 billion, boosting their total holdings to 439,000 Bitcoins.\n4. The volatility of Microstrategy's stock (MSTR) due to uncertainty surrounding their convertible notes and equity.\n5. The potential impact of Microstrategy joining the Nasdaq 100 index on December 23, with ETFs following the index becoming automatic buyers of the stock.\n6. The comparison between Microstrategy (MSTR) and Bitcoin miners in terms of long-term performance.\n7. The rise of Leveraged Bitcoin Equities (LBEs) and the potential for a mania and crash in the future.\n8. Microstrategy's Bitcoin yield operation netting $12.28 billion in the current quarter, compared to the quarterly net income of top Nasdaq companies like Apple, Alphabet, and Microsoft.","data":[27,1,6,5,7,7,30,13,20,4,8,12,6,5,3,5,9,7,11,6,6,8,4,6,8,12,16,5,7,3,5,5,72,26,5,18,4,12,11,16,6,13,5,14,4,15,7,5,8,9,3,11,5,6,8]},{"label":"GameFi","topics":"gaming,game,games,play,players","description":"The key topics discussed in the messages from twitter about the crypto industry include blockchain gaming platforms, integration of blockchain technology in gaming, upcoming games like King Arthur: Legends Rise, mobile gaming in web3, the launch of new games like Monsterville and Dawn of the Damned 2.0, and the introduction of new technologies like ArcadeBot for sniping on Ethereum and Solana. There is also mention of specific projects and partnerships such as Animoca Brands Japan backing Oasys, Kima Network and Tashi integrating for cross-chain payments, and Netmarble's partnership with MARBLEX. Additionally, there is anticipation for the future of web3 gaming and discussions about specific cryptocurrencies like $PORK and $NAKA.","data":[11,0,8,7,1,0,11,6,6,14,10,8,7,6,3,7,6,13,6,13,63,17,7,8,6,5,7,9,11,6,10,4,13,12,9,9,7,40,2,21,7,10,0,4,4,10,10,9,17,10,2,4,14,9,7]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, such as $PEPE, $DOGE, $MEME, $MUDO, and $BEFI. There is a lot of excitement and speculation around which meme coins will be the next big thing and potentially offer massive gains. Influential figures like Elon Musk and Donald Trump are mentioned in relation to certain meme coins, adding to the hype. Additionally, the concept of cults and extreme passion leading to extreme wealth in the crypto space is being discussed. Overall, the sentiment around meme coins seems positive and there is a lot of interest in finding the next 1000x meme coin.","data":[9,10,8,9,8,1,3,2,11,11,9,7,9,3,15,4,2,3,16,3,7,14,5,6,9,2,6,7,15,9,8,118,6,7,8,4,11,6,9,9,7,8,11,12,4,6,10,7,9,5,9,3,6,10,8]},{"label":"ETF Flows","topics":"blackrock,etfs,etf,inflows,net","description":"The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- BlackRock's involvement in Bitcoin ETFs and the significant inflows they are seeing\n- Investor interest in the hedge fund industry slowing down, but dominant players like BlackRock are still active\n- The rise in the number of accounts with balances over $1 million, particularly at Fidelity\n- Ethereum gaining momentum with massive outflows from exchanges\n- The need for a strategic Ethereum reserve in the USA\n- The surge in Bitcoin ETF inflows, with total inflows topping $35 billion\n- The success of Bitcoin and Ether ETFs, with significant inflows and gains reported\n- BlackRock's IBIT dominating Bitcoin ETF inflows\n- The overall growth and success of crypto funds holding BTC and ETH\n\nOverall, the messages indicate a positive trend in the crypto industry, with growing interest from institutional investors and significant inflows into Bitcoin and Ethereum ETFs.","data":[11,1,1,9,20,13,45,9,25,2,3,6,12,6,8,5,59,6,7,6,2,9,8,2,5,12,5,10,1,3,6,3,2,14,7,13,4,3,1,7,12,10,8,4,5,26,4,3,5,11,3,5,1,11,9]},{"label":"BTC Price","topics":"alts,rsi,btc,chart,resistance","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements and potential for a major move in the next few days\n- Support and resistance levels for Bitcoin, with a focus on reclaiming $104,700 and reaching a target of $110,000\n- Market fluctuations and the potential for Bitcoin to break out of the rising accumulation channel\n- Speculation on whether Bitcoin will revisit bottom support or continue its parabolic move\n- Analysis of Bitcoin's price action and potential support levels at $99,388 and $98,415\n- Updates on resistance and support levels for Bitcoin, with a warning that failure to break above $104.23k could turn bearish\n- Investor sentiment and inflows into Bitcoin ETFs, with a focus on reaching price levels of $110-$125k by year end\n- Analysis of price movements and potential support levels around $98k for Bitcoin\n\nOverall, the sentiment appears to be bullish with a focus on potential price targets and support levels for Bitcoin. Traders are closely monitoring key levels and indicators to determine the next move in the market.","data":[12,15,4,12,19,19,2,42,3,16,7,10,7,5,14,10,1,6,7,4,4,11,3,18,11,4,3,4,6,9,19,9,6,4,8,10,2,9,14,6,8,12,2,13,4,5,6,10,2,2,8,13,5,15,3]},{"label":"Art","topics":"art,artists,artist,piece,minted","description":"The key topics discussed in the messages from twitter are fine art, NFTs, crypto art, minting, collecting art, crypto communities, and public art. The messages also mention specific artists, platforms, and projects related to the crypto industry such as Gearbox Protocol, ApeChain, Vil Aptyushev, @matthixson, Cats, NFT artists like @dannycoleee and @bananakin, @bagdelete, @FLAMINGODAO, @wallet, @Nakamigos, @Fukuhedrons_eth, @MagicEden, @MuseumofCrypto, MIZARU, DeCc0s collection, @salvor_io, @CultureOnAvax, Avax, @aaronhuey, HENI Talks, art historian @jobaringart, Elisabeth Frink, and 'The Dorset Martyrs Memorial'. The messages also mention activities like lending, minting, processing, sequencing, curating, and exploring public art history.","data":[5,5,71,9,1,1,2,3,11,2,24,9,7,3,8,9,4,4,17,1,14,7,10,5,4,6,4,3,5,5,14,1,14,10,7,11,15,6,1,7,11,3,8,9,4,8,10,7,9,8,6,4,7,3,10]},{"label":"CPI","topics":"inflation,rate,cut,rates,cuts","description":"The key topics currently discussed in the crypto industry on social media include:\n- Federal Reserve lowering interest rates\n- Market impact on Bitcoin\n- Inflation trends\n- Policy uncertainty\n- Reflation risk\n- US dollar strength\n- SyntezNote and its impact on inflation\n- Overnight reverse repurchase agreement facility rate cut\n- Compass CEO's expectations on home prices and interest rates\n- Impact of Federal Reserve's rate cut on crypto prices\n\nOverall, the discussions revolve around the impact of economic policies, market trends, and inflation on the crypto industry, particularly in relation to the actions of the Federal Reserve.","data":[4,3,4,7,3,1,7,6,1,2,6,4,12,5,6,9,1,9,8,21,9,16,5,8,10,24,3,7,4,0,9,48,6,1,1,2,7,18,2,19,12,5,5,7,3,4,4,7,9,5,2,3,6,11,7]},{"label":"SOL","topics":"solana,sol,developers,solanas,devs","description":"The key topics discussed in the messages from twitter about the crypto industry include Solana (SOL), Ethereum, Bitcoin, Hyperliquid, the competition between Solana and XRP, Solana's potential for growth and development, Solana's migration to the Solana blockchain, Binance's SOL Liquid Staking Token, Solana dethroning Ethereum as the top ecosystem for new developers in 2024, Eigenlayer as the fastest growing developer ecosystem, and the growth of various ecosystems such as Eigenlayer, Aptos, Dfinity, Base, Aztec Network, and Stacks. The messages also mention potential investment opportunities in SOL, the bullish falling wedge pattern of Solana, and the excitement surrounding Solana's future prospects.","data":[8,5,5,3,0,0,8,10,8,17,2,6,11,2,11,13,6,6,6,8,9,4,1,9,4,5,9,2,7,13,6,2,5,12,9,8,1,3,12,9,8,6,5,8,45,8,8,4,5,8,6,5,4,8,1]},{"label":"ETH","topics":"eth,4k,ethereum,4000,break","description":"The key topics currently being discussed in the crypto community on Twitter include the rising price of Ethereum ($ETH), with predictions of it reaching $5,000 and potentially even $10,000 by 2025. There is also speculation about a possible governance attack on the Ethereum treasury, as well as excitement over new all-time highs in ETH futures open interest on CME. Additionally, there is discussion about leveraged restaking positions created with weETH on Aave, indicating growing interest in decentralized finance (DeFi) applications within the Ethereum ecosystem. Overall, sentiment towards Ethereum appears bullish, with many expecting further price increases in the near future.","data":[3,3,1,2,2,0,5,7,4,5,4,7,3,5,3,4,86,5,5,4,8,4,2,19,8,7,1,7,5,9,1,6,3,10,8,2,2,3,11,5,5,7,6,3,4,6,5,3,10,5,3,6,0,5,5]},{"label":"NFT","topics":"nft,nfts,collections,collection,floor","description":"The messages from Twitter indicate a strong focus on the current NFT season, with discussions about favorite NFTs, new opportunities in the market, and the success of various NFT collections such as Azuki. There is also mention of engagement from the $rvn community and the potential for NFT projects to succeed based on community and investor support. Additionally, there are references to CryptoPunks, ETH ETFs, and the potential for NFT projects to evolve and succeed in the future. The messages also highlight the importance of tokenomics, deflationary collections, and NFT fusions in the crypto industry. Lastly, there is mention of NFT holiday raffles and updates on popular NFT collections like Pudgy Penguins and Lil Pudgys. Overall, the messages reflect a vibrant and active discussion within the crypto community about NFTs and their potential for growth and success.","data":[3,1,3,0,1,0,3,6,7,5,5,10,3,4,7,10,7,4,8,6,4,5,6,4,8,6,5,11,7,4,5,12,6,5,35,1,7,3,13,4,3,7,5,7,1,6,3,4,11,7,4,3,3,3,4]},{"label":"DOGE","topics":"doge,dogecoin,elon,musk,dog","description":"Based on the messages from Twitter, it is evident that Dogecoin ($DOGE) is a popular topic of discussion within the crypto community. People are celebrating the success of Dogecoin, with some mentioning significant gains in value and expressing optimism for future price increases. There are also mentions of potential actions that Elon Musk could take to further boost Dogecoin's value in the USA.\n\nAdditionally, there are references to Dogecoin being compared to other cryptocurrencies like Bitcoin and Litecoin, as well as discussions about its price fluctuations and potential reasons for price falls. Some users are also speculating about the future of Dogecoin and its potential as a long-term investment.\n\nOverall, the sentiment towards Dogecoin in these messages appears to be positive, with users expressing excitement and confidence in the cryptocurrency's future prospects.","data":[5,2,2,8,2,0,2,6,5,2,3,2,4,4,91,2,2,2,5,2,2,4,5,6,5,5,4,4,4,4,4,1,2,2,3,6,5,6,4,4,6,4,0,3,1,7,1,12,7,3,4,4,3,8,5]},{"label":"BTC","topics":"bitcoin,race,standard,horse,choose","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n- Bitcoin utility and its potential impact\n- Bitcoin governance and leadership issues\n- The competition between Bitcoin and Ethereum\n- Strategies to attack the Bitcoin network\n- The importance of education and debunking FUD (fear, uncertainty, and doubt) in the crypto space\n- Concerns about data capture and manipulation within the crypto community\n\nOverall, it appears that there is a mix of excitement, skepticism, and strategic thinking surrounding Bitcoin and other cryptocurrencies in the social media discussions analyzed.","data":[4,1,1,7,30,33,3,5,2,8,4,2,6,1,4,5,2,1,6,4,4,10,4,10,2,5,8,2,8,4,3,0,1,4,1,4,1,4,2,10,1,6,5,3,2,8,2,8,5,1,4,1,4,10,4]},{"label":"Fartcoin","topics":"fartcoin,fart,cap,goat,coin","description":"Based on the messages from Twitter, it seems that there is a lot of discussion around \"Fartcoin\" and its market cap reaching over $900 million. People are comparing it to other companies like BJ's restaurants and Jack In The Box in terms of value. There is also speculation about whether Fartcoin will hit a billion dollar market cap. Additionally, there are mentions of other coins like Ecofartcoin and Gooch coin, with comparisons to popular meme coins like DOGE and Shib. Overall, the crypto community seems to be excited about the potential growth of these coins and the possibility of significant returns on investment.","data":[2,3,0,3,4,2,3,1,2,1,6,0,3,1,4,3,3,33,3,3,1,5,2,9,7,5,3,4,6,0,6,3,2,4,1,4,2,0,1,4,3,2,3,2,2,4,5,5,1,3,3,3,3,2,4]},{"label":"Potential airdrop from Opensea","topics":"opensea,airdrop,rank,token,volume","description":"The key topics currently being discussed on Twitter regarding Opensea and the crypto industry include:\n1. Speculation about potential airdrops from Opensea and other projects.\n2. Concerns about the value and impact of potential Opensea token airdrops.\n3. Questions about token claims for users who were banned from Opensea.\n4. Analysis of Opensea's trade volume and potential for a juicy airdrop.\n5. Speculation about upcoming NFT drops and token releases.\n6. Debate over the potential outcomes of an Opensea token airdrop.\n7. Warning against revisiting past NFT investments on Opensea.\n8. Discussion about the importance of rewarding OG activity for a potential Opensea airdrop.\n9. Optimism and excitement about the future of NFTs and potential wealth generation in the community.","data":[5,7,1,2,0,1,0,2,2,8,1,3,1,3,1,7,2,4,4,6,4,6,0,2,3,6,2,6,3,0,8,2,3,2,3,6,3,2,3,3,8,8,4,5,2,2,1,5,3,5,1,3,9,5,1]},{"label":"BTC Mining","topics":"mining,miners,energy,miner,hash","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining and its impact on energy consumption and grid stabilization\n- Updates on specific Bitcoin mining companies and their activities\n- The use of Bitcoin mining to create renewable energy and jobs\n- Greenpeace ending a campaign targeting Bitcoin mining\n- Litecoin mining being profitable in 2024\n- BitTorrent Speed and the number of created wallets and total miners on the platform\n\nOverall, the messages highlight the ongoing discussions and developments in the crypto industry, particularly focusing on Bitcoin mining and its various implications.","data":[2,0,1,3,3,27,1,5,1,2,6,1,3,2,2,0,2,4,2,3,0,0,8,4,1,4,1,3,4,1,2,1,13,2,3,2,1,1,4,4,3,4,3,3,1,6,5,1,2,7,2,1,0,3,2]},{"label":"BTC ATH","topics":"ath,new,aths,hit,106k","description":"The key topic discussed in the messages from Twitter is the all-time high (ATH) of Bitcoin. Users are excited about the potential for Bitcoin to reach new ATH levels, with predictions ranging from $100,000 to $200,000. There is also mention of other cryptocurrencies like SpaceXCoin and Patriot reaching new ATHs. Traders are discussing strategies for trading around the ATH levels, with some cautioning about the choppy trading zone and the need to trade cautiously, especially with leverage. Overall, the sentiment is bullish and optimistic about the future of Bitcoin and cryptocurrency in general.","data":[3,1,5,3,11,13,4,5,1,0,2,1,2,5,0,1,2,3,4,0,0,2,3,17,6,2,1,1,0,4,3,2,1,16,2,1,0,1,2,9,2,0,1,2,5,2,4,0,1,1,0,4,1,1,1]},{"label":"RLUSD","topics":"rlusd,ripple,stablecoin,xrp,ripples","description":"The key topic discussed in the messages from Twitter is the launch of the RLUSD stablecoin by Ripple. The messages mention that RLUSD is now live on global exchanges, with the launch scheduled for December 17. The stablecoin has received regulatory approval from the New York Department of Financial Services (NYDFS) and will be available on exchanges like Uphold, Bitso, and MoonPay. There is anticipation building around the launch of RLUSD, with some traders predicting potential volatility and price increases for XRP. Additionally, there is mention of Chainlink building a stablecoin on Ripple, called LINKUSD, which is set to be released on Friday. Overall, the messages highlight the excitement and positive developments surrounding the launch of RLUSD and its potential impact on the crypto industry.","data":[0,1,3,3,0,0,0,7,1,1,0,3,2,0,2,4,3,2,0,3,1,0,4,0,2,3,6,11,4,2,4,2,0,1,7,2,1,2,2,0,1,37,3,1,0,8,1,0,1,3,4,5,7,2,2]},{"label":"CATS","topics":"cat,binance,bnb,popcat,airdrops","description":"The key topics discussed in the messages from Twitter related to the crypto industry are:\n1. Popcat listing on Binance and Coinbase\n2. Feline finance dominance\n3. AlleyCat cryptocurrency inspired by retro gaming\n4. Simon's Cat (CAT) and Pudgy Penguins (PENGU) projects on Binance\n5. Airdrops for CAT and PENGU tokens on Binance\n6. Trading pairs for CAT and PENGU tokens\n7. Meme Machine invention by Ardi\n8. Cool Cats character, Blue Cat\n9. Crypto investments and trading\n10. Cryptocurrency market trends and consolidation\n\nThese topics indicate a growing interest in crypto assets related to cats and retro gaming, as well as the excitement around new projects and airdrops on Binance.","data":[5,2,5,3,1,0,2,3,5,36,4,3,1,4,0,1,1,1,4,0,2,3,3,1,2,1,3,0,6,0,1,3,6,2,3,3,2,3,3,4,1,1,1,1,2,2,2,3,0,0,6,1,2,1,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-50.ts b/priv/repo/major_topics_seed/data-50.ts deleted file mode 100644 index cc8f9ca0a6..0000000000 --- a/priv/repo/major_topics_seed/data-50.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '12.12.24', - '13.12.24', - '13.12.24', - '13.12.24', - '13.12.24', - '13.12.24', - '13.12.24', - '13.12.24', - '14.12.24', - '14.12.24', - '14.12.24', - '14.12.24', - '14.12.24', - '14.12.24', - '14.12.24', - '14.12.24', - '15.12.24', - '15.12.24', - '15.12.24', - '15.12.24', - '15.12.24', - '15.12.24', - '15.12.24', - '15.12.24', - '16.12.24', - '16.12.24', - '16.12.24', - '16.12.24', - '16.12.24', - '16.12.24', - '16.12.24', - '16.12.24', - '17.12.24', - '17.12.24', - '17.12.24', - '17.12.24', - '17.12.24', - '17.12.24', - '17.12.24', - '17.12.24', - '18.12.24', - '18.12.24', - '18.12.24', - '18.12.24', - '18.12.24', - '18.12.24', - '18.12.24', - '18.12.24', - '19.12.24', - '19.12.24', - '19.12.24', - '19.12.24', - '19.12.24', - '19.12.24', - '19.12.24', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,data,humans', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- The growing importance of AI in the industry, with discussions on AI coins, AI agents, and the future of AI technology.\n- The potential of decentralized knowledge graphs for better AI development.\n- The combination of crypto and AI, and the bullish outlook on projects like @sidexyz that are integrating AI into their infrastructure.\n- The launch of new AI products and platforms, such as the AI Agent Marketplace by HYVE and the mainnet launch of $DSYNC with sentient agents.\n- The rise of emotion tokens and their potential in the industry.\n- Specific projects like @edge_pod and @virtuals_io being highlighted for their AI-related initiatives.\n- Updates on specific AI coins like $NAI and their performance in the market.\n- Discussions on the importance of creativity and hard work in the context of AI development.\n- The potential for AI to address issues of honesty and malevolence in human behavior.\n- Speculation on the future of AI technology and its impact on various industries.', - data: [ - 30, 235, 41, 23, 4, 0, 15, 21, 8, 19, 28, 21, 15, 27, 11, 19, 17, 28, 13, 12, 25, 23, 20, - 19, 16, 24, 39, 24, 17, 19, 29, 8, 13, 30, 20, 17, 22, 15, 20, 18, 11, 24, 24, 15, 22, 10, - 22, 24, 16, 28, 14, 19, 37, 17, 28, - ], - }, - { - label: 'PENGU', - topics: 'pengu,pudgy,penguins,pudgypenguins,penguin', - description: - "The key topics discussed in the messages from twitter are:\n1. Airdrops and potential token launches in the crypto industry, specifically mentioning PENGU and OpenSea.\n2. Investment strategies and profit-taking in NFTs, particularly focusing on Pudgy Penguins.\n3. Comparison between different cryptocurrencies like BTC and PENGU, and the use of StrikeX for on-chain transactions.\n4. The use of Solana for airdrops and wallet mapping, with a mention of chunky logic for the back end.\n5. The comparison between PENGU token launch and airdrop to Gary V's book airdrop.\n6. The surge in PENGU token price and market cap, with a mention of a trader making a significant return.\n7. Market analysis of PENGU and Ape coin in relation to SOL market cap.\n8. Eligibility for receiving PENGU allocation in Abstract Discord and the requirement to fill out a form for opt-in.", - data: [ - 5, 18, 9, 8, 2, 0, 10, 7, 15, 11, 10, 16, 8, 12, 5, 7, 7, 6, 10, 8, 16, 9, 7, 3, 8, 8, 6, - 19, 15, 14, 14, 9, 5, 10, 21, 16, 88, 16, 73, 3, 4, 6, 14, 12, 8, 3, 5, 2, 13, 12, 6, 9, 11, - 6, 5, - ], - }, - { - label: 'MSTR', - topics: 'mstr,microstrategy,nasdaq,qqq,100', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Microstrategy's significant investment in Bitcoin, owning over 2% of the entire Bitcoin supply.\n2. Microstrategy's inclusion in the Nasdaq 100 index, with Moderna falling out of the index.\n3. Microstrategy's recent purchase of 15,350 BTC for $1.5 billion, boosting their total holdings to 439,000 Bitcoins.\n4. The volatility of Microstrategy's stock (MSTR) due to uncertainty surrounding their convertible notes and equity.\n5. The potential impact of Microstrategy joining the Nasdaq 100 index on December 23, with ETFs following the index becoming automatic buyers of the stock.\n6. The comparison between Microstrategy (MSTR) and Bitcoin miners in terms of long-term performance.\n7. The rise of Leveraged Bitcoin Equities (LBEs) and the potential for a mania and crash in the future.\n8. Microstrategy's Bitcoin yield operation netting $12.28 billion in the current quarter, compared to the quarterly net income of top Nasdaq companies like Apple, Alphabet, and Microsoft.", - data: [ - 27, 1, 6, 5, 7, 7, 30, 13, 20, 4, 8, 12, 6, 5, 3, 5, 9, 7, 11, 6, 6, 8, 4, 6, 8, 12, 16, 5, - 7, 3, 5, 5, 72, 26, 5, 18, 4, 12, 11, 16, 6, 13, 5, 14, 4, 15, 7, 5, 8, 9, 3, 11, 5, 6, 8, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,players', - description: - "The key topics discussed in the messages from twitter about the crypto industry include blockchain gaming platforms, integration of blockchain technology in gaming, upcoming games like King Arthur: Legends Rise, mobile gaming in web3, the launch of new games like Monsterville and Dawn of the Damned 2.0, and the introduction of new technologies like ArcadeBot for sniping on Ethereum and Solana. There is also mention of specific projects and partnerships such as Animoca Brands Japan backing Oasys, Kima Network and Tashi integrating for cross-chain payments, and Netmarble's partnership with MARBLEX. Additionally, there is anticipation for the future of web3 gaming and discussions about specific cryptocurrencies like $PORK and $NAKA.", - data: [ - 11, 0, 8, 7, 1, 0, 11, 6, 6, 14, 10, 8, 7, 6, 3, 7, 6, 13, 6, 13, 63, 17, 7, 8, 6, 5, 7, 9, - 11, 6, 10, 4, 13, 12, 9, 9, 7, 40, 2, 21, 7, 10, 0, 4, 4, 10, 10, 9, 17, 10, 2, 4, 14, 9, 7, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, such as $PEPE, $DOGE, $MEME, $MUDO, and $BEFI. There is a lot of excitement and speculation around which meme coins will be the next big thing and potentially offer massive gains. Influential figures like Elon Musk and Donald Trump are mentioned in relation to certain meme coins, adding to the hype. Additionally, the concept of cults and extreme passion leading to extreme wealth in the crypto space is being discussed. Overall, the sentiment around meme coins seems positive and there is a lot of interest in finding the next 1000x meme coin.', - data: [ - 9, 10, 8, 9, 8, 1, 3, 2, 11, 11, 9, 7, 9, 3, 15, 4, 2, 3, 16, 3, 7, 14, 5, 6, 9, 2, 6, 7, - 15, 9, 8, 118, 6, 7, 8, 4, 11, 6, 9, 9, 7, 8, 11, 12, 4, 6, 10, 7, 9, 5, 9, 3, 6, 10, 8, - ], - }, - { - label: 'ETF Flows', - topics: 'blackrock,etfs,etf,inflows,net', - description: - "The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- BlackRock's involvement in Bitcoin ETFs and the significant inflows they are seeing\n- Investor interest in the hedge fund industry slowing down, but dominant players like BlackRock are still active\n- The rise in the number of accounts with balances over $1 million, particularly at Fidelity\n- Ethereum gaining momentum with massive outflows from exchanges\n- The need for a strategic Ethereum reserve in the USA\n- The surge in Bitcoin ETF inflows, with total inflows topping $35 billion\n- The success of Bitcoin and Ether ETFs, with significant inflows and gains reported\n- BlackRock's IBIT dominating Bitcoin ETF inflows\n- The overall growth and success of crypto funds holding BTC and ETH\n\nOverall, the messages indicate a positive trend in the crypto industry, with growing interest from institutional investors and significant inflows into Bitcoin and Ethereum ETFs.", - data: [ - 11, 1, 1, 9, 20, 13, 45, 9, 25, 2, 3, 6, 12, 6, 8, 5, 59, 6, 7, 6, 2, 9, 8, 2, 5, 12, 5, 10, - 1, 3, 6, 3, 2, 14, 7, 13, 4, 3, 1, 7, 12, 10, 8, 4, 5, 26, 4, 3, 5, 11, 3, 5, 1, 11, 9, - ], - }, - { - label: 'BTC Price', - topics: 'alts,rsi,btc,chart,resistance', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements and potential for a major move in the next few days\n- Support and resistance levels for Bitcoin, with a focus on reclaiming $104,700 and reaching a target of $110,000\n- Market fluctuations and the potential for Bitcoin to break out of the rising accumulation channel\n- Speculation on whether Bitcoin will revisit bottom support or continue its parabolic move\n- Analysis of Bitcoin's price action and potential support levels at $99,388 and $98,415\n- Updates on resistance and support levels for Bitcoin, with a warning that failure to break above $104.23k could turn bearish\n- Investor sentiment and inflows into Bitcoin ETFs, with a focus on reaching price levels of $110-$125k by year end\n- Analysis of price movements and potential support levels around $98k for Bitcoin\n\nOverall, the sentiment appears to be bullish with a focus on potential price targets and support levels for Bitcoin. Traders are closely monitoring key levels and indicators to determine the next move in the market.", - data: [ - 12, 15, 4, 12, 19, 19, 2, 42, 3, 16, 7, 10, 7, 5, 14, 10, 1, 6, 7, 4, 4, 11, 3, 18, 11, 4, - 3, 4, 6, 9, 19, 9, 6, 4, 8, 10, 2, 9, 14, 6, 8, 12, 2, 13, 4, 5, 6, 10, 2, 2, 8, 13, 5, 15, - 3, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,minted', - description: - "The key topics discussed in the messages from twitter are fine art, NFTs, crypto art, minting, collecting art, crypto communities, and public art. The messages also mention specific artists, platforms, and projects related to the crypto industry such as Gearbox Protocol, ApeChain, Vil Aptyushev, @matthixson, Cats, NFT artists like @dannycoleee and @bananakin, @bagdelete, @FLAMINGODAO, @wallet, @Nakamigos, @Fukuhedrons_eth, @MagicEden, @MuseumofCrypto, MIZARU, DeCc0s collection, @salvor_io, @CultureOnAvax, Avax, @aaronhuey, HENI Talks, art historian @jobaringart, Elisabeth Frink, and 'The Dorset Martyrs Memorial'. The messages also mention activities like lending, minting, processing, sequencing, curating, and exploring public art history.", - data: [ - 5, 5, 71, 9, 1, 1, 2, 3, 11, 2, 24, 9, 7, 3, 8, 9, 4, 4, 17, 1, 14, 7, 10, 5, 4, 6, 4, 3, 5, - 5, 14, 1, 14, 10, 7, 11, 15, 6, 1, 7, 11, 3, 8, 9, 4, 8, 10, 7, 9, 8, 6, 4, 7, 3, 10, - ], - }, - { - label: 'CPI', - topics: 'inflation,rate,cut,rates,cuts', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Federal Reserve lowering interest rates\n- Market impact on Bitcoin\n- Inflation trends\n- Policy uncertainty\n- Reflation risk\n- US dollar strength\n- SyntezNote and its impact on inflation\n- Overnight reverse repurchase agreement facility rate cut\n- Compass CEO's expectations on home prices and interest rates\n- Impact of Federal Reserve's rate cut on crypto prices\n\nOverall, the discussions revolve around the impact of economic policies, market trends, and inflation on the crypto industry, particularly in relation to the actions of the Federal Reserve.", - data: [ - 4, 3, 4, 7, 3, 1, 7, 6, 1, 2, 6, 4, 12, 5, 6, 9, 1, 9, 8, 21, 9, 16, 5, 8, 10, 24, 3, 7, 4, - 0, 9, 48, 6, 1, 1, 2, 7, 18, 2, 19, 12, 5, 5, 7, 3, 4, 4, 7, 9, 5, 2, 3, 6, 11, 7, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,developers,solanas,devs', - description: - "The key topics discussed in the messages from twitter about the crypto industry include Solana (SOL), Ethereum, Bitcoin, Hyperliquid, the competition between Solana and XRP, Solana's potential for growth and development, Solana's migration to the Solana blockchain, Binance's SOL Liquid Staking Token, Solana dethroning Ethereum as the top ecosystem for new developers in 2024, Eigenlayer as the fastest growing developer ecosystem, and the growth of various ecosystems such as Eigenlayer, Aptos, Dfinity, Base, Aztec Network, and Stacks. The messages also mention potential investment opportunities in SOL, the bullish falling wedge pattern of Solana, and the excitement surrounding Solana's future prospects.", - data: [ - 8, 5, 5, 3, 0, 0, 8, 10, 8, 17, 2, 6, 11, 2, 11, 13, 6, 6, 6, 8, 9, 4, 1, 9, 4, 5, 9, 2, 7, - 13, 6, 2, 5, 12, 9, 8, 1, 3, 12, 9, 8, 6, 5, 8, 45, 8, 8, 4, 5, 8, 6, 5, 4, 8, 1, - ], - }, - { - label: 'ETH', - topics: 'eth,4k,ethereum,4000,break', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the rising price of Ethereum ($ETH), with predictions of it reaching $5,000 and potentially even $10,000 by 2025. There is also speculation about a possible governance attack on the Ethereum treasury, as well as excitement over new all-time highs in ETH futures open interest on CME. Additionally, there is discussion about leveraged restaking positions created with weETH on Aave, indicating growing interest in decentralized finance (DeFi) applications within the Ethereum ecosystem. Overall, sentiment towards Ethereum appears bullish, with many expecting further price increases in the near future.', - data: [ - 3, 3, 1, 2, 2, 0, 5, 7, 4, 5, 4, 7, 3, 5, 3, 4, 86, 5, 5, 4, 8, 4, 2, 19, 8, 7, 1, 7, 5, 9, - 1, 6, 3, 10, 8, 2, 2, 3, 11, 5, 5, 7, 6, 3, 4, 6, 5, 3, 10, 5, 3, 6, 0, 5, 5, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collections,collection,floor', - description: - 'The messages from Twitter indicate a strong focus on the current NFT season, with discussions about favorite NFTs, new opportunities in the market, and the success of various NFT collections such as Azuki. There is also mention of engagement from the $rvn community and the potential for NFT projects to succeed based on community and investor support. Additionally, there are references to CryptoPunks, ETH ETFs, and the potential for NFT projects to evolve and succeed in the future. The messages also highlight the importance of tokenomics, deflationary collections, and NFT fusions in the crypto industry. Lastly, there is mention of NFT holiday raffles and updates on popular NFT collections like Pudgy Penguins and Lil Pudgys. Overall, the messages reflect a vibrant and active discussion within the crypto community about NFTs and their potential for growth and success.', - data: [ - 3, 1, 3, 0, 1, 0, 3, 6, 7, 5, 5, 10, 3, 4, 7, 10, 7, 4, 8, 6, 4, 5, 6, 4, 8, 6, 5, 11, 7, 4, - 5, 12, 6, 5, 35, 1, 7, 3, 13, 4, 3, 7, 5, 7, 1, 6, 3, 4, 11, 7, 4, 3, 3, 3, 4, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elon,musk,dog', - description: - "Based on the messages from Twitter, it is evident that Dogecoin ($DOGE) is a popular topic of discussion within the crypto community. People are celebrating the success of Dogecoin, with some mentioning significant gains in value and expressing optimism for future price increases. There are also mentions of potential actions that Elon Musk could take to further boost Dogecoin's value in the USA.\n\nAdditionally, there are references to Dogecoin being compared to other cryptocurrencies like Bitcoin and Litecoin, as well as discussions about its price fluctuations and potential reasons for price falls. Some users are also speculating about the future of Dogecoin and its potential as a long-term investment.\n\nOverall, the sentiment towards Dogecoin in these messages appears to be positive, with users expressing excitement and confidence in the cryptocurrency's future prospects.", - data: [ - 5, 2, 2, 8, 2, 0, 2, 6, 5, 2, 3, 2, 4, 4, 91, 2, 2, 2, 5, 2, 2, 4, 5, 6, 5, 5, 4, 4, 4, 4, - 4, 1, 2, 2, 3, 6, 5, 6, 4, 4, 6, 4, 0, 3, 1, 7, 1, 12, 7, 3, 4, 4, 3, 8, 5, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,race,standard,horse,choose', - description: - 'Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n- Bitcoin utility and its potential impact\n- Bitcoin governance and leadership issues\n- The competition between Bitcoin and Ethereum\n- Strategies to attack the Bitcoin network\n- The importance of education and debunking FUD (fear, uncertainty, and doubt) in the crypto space\n- Concerns about data capture and manipulation within the crypto community\n\nOverall, it appears that there is a mix of excitement, skepticism, and strategic thinking surrounding Bitcoin and other cryptocurrencies in the social media discussions analyzed.', - data: [ - 4, 1, 1, 7, 30, 33, 3, 5, 2, 8, 4, 2, 6, 1, 4, 5, 2, 1, 6, 4, 4, 10, 4, 10, 2, 5, 8, 2, 8, - 4, 3, 0, 1, 4, 1, 4, 1, 4, 2, 10, 1, 6, 5, 3, 2, 8, 2, 8, 5, 1, 4, 1, 4, 10, 4, - ], - }, - { - label: 'Fartcoin', - topics: 'fartcoin,fart,cap,goat,coin', - description: - 'Based on the messages from Twitter, it seems that there is a lot of discussion around "Fartcoin" and its market cap reaching over $900 million. People are comparing it to other companies like BJ\'s restaurants and Jack In The Box in terms of value. There is also speculation about whether Fartcoin will hit a billion dollar market cap. Additionally, there are mentions of other coins like Ecofartcoin and Gooch coin, with comparisons to popular meme coins like DOGE and Shib. Overall, the crypto community seems to be excited about the potential growth of these coins and the possibility of significant returns on investment.', - data: [ - 2, 3, 0, 3, 4, 2, 3, 1, 2, 1, 6, 0, 3, 1, 4, 3, 3, 33, 3, 3, 1, 5, 2, 9, 7, 5, 3, 4, 6, 0, - 6, 3, 2, 4, 1, 4, 2, 0, 1, 4, 3, 2, 3, 2, 2, 4, 5, 5, 1, 3, 3, 3, 3, 2, 4, - ], - }, - { - label: 'Potential airdrop from Opensea', - topics: 'opensea,airdrop,rank,token,volume', - description: - "The key topics currently being discussed on Twitter regarding Opensea and the crypto industry include:\n1. Speculation about potential airdrops from Opensea and other projects.\n2. Concerns about the value and impact of potential Opensea token airdrops.\n3. Questions about token claims for users who were banned from Opensea.\n4. Analysis of Opensea's trade volume and potential for a juicy airdrop.\n5. Speculation about upcoming NFT drops and token releases.\n6. Debate over the potential outcomes of an Opensea token airdrop.\n7. Warning against revisiting past NFT investments on Opensea.\n8. Discussion about the importance of rewarding OG activity for a potential Opensea airdrop.\n9. Optimism and excitement about the future of NFTs and potential wealth generation in the community.", - data: [ - 5, 7, 1, 2, 0, 1, 0, 2, 2, 8, 1, 3, 1, 3, 1, 7, 2, 4, 4, 6, 4, 6, 0, 2, 3, 6, 2, 6, 3, 0, 8, - 2, 3, 2, 3, 6, 3, 2, 3, 3, 8, 8, 4, 5, 2, 2, 1, 5, 3, 5, 1, 3, 9, 5, 1, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,energy,miner,hash', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin mining and its impact on energy consumption and grid stabilization\n- Updates on specific Bitcoin mining companies and their activities\n- The use of Bitcoin mining to create renewable energy and jobs\n- Greenpeace ending a campaign targeting Bitcoin mining\n- Litecoin mining being profitable in 2024\n- BitTorrent Speed and the number of created wallets and total miners on the platform\n\nOverall, the messages highlight the ongoing discussions and developments in the crypto industry, particularly focusing on Bitcoin mining and its various implications.', - data: [ - 2, 0, 1, 3, 3, 27, 1, 5, 1, 2, 6, 1, 3, 2, 2, 0, 2, 4, 2, 3, 0, 0, 8, 4, 1, 4, 1, 3, 4, 1, - 2, 1, 13, 2, 3, 2, 1, 1, 4, 4, 3, 4, 3, 3, 1, 6, 5, 1, 2, 7, 2, 1, 0, 3, 2, - ], - }, - { - label: 'BTC ATH', - topics: 'ath,new,aths,hit,106k', - description: - 'The key topic discussed in the messages from Twitter is the all-time high (ATH) of Bitcoin. Users are excited about the potential for Bitcoin to reach new ATH levels, with predictions ranging from $100,000 to $200,000. There is also mention of other cryptocurrencies like SpaceXCoin and Patriot reaching new ATHs. Traders are discussing strategies for trading around the ATH levels, with some cautioning about the choppy trading zone and the need to trade cautiously, especially with leverage. Overall, the sentiment is bullish and optimistic about the future of Bitcoin and cryptocurrency in general.', - data: [ - 3, 1, 5, 3, 11, 13, 4, 5, 1, 0, 2, 1, 2, 5, 0, 1, 2, 3, 4, 0, 0, 2, 3, 17, 6, 2, 1, 1, 0, 4, - 3, 2, 1, 16, 2, 1, 0, 1, 2, 9, 2, 0, 1, 2, 5, 2, 4, 0, 1, 1, 0, 4, 1, 1, 1, - ], - }, - { - label: 'RLUSD', - topics: 'rlusd,ripple,stablecoin,xrp,ripples', - description: - 'The key topic discussed in the messages from Twitter is the launch of the RLUSD stablecoin by Ripple. The messages mention that RLUSD is now live on global exchanges, with the launch scheduled for December 17. The stablecoin has received regulatory approval from the New York Department of Financial Services (NYDFS) and will be available on exchanges like Uphold, Bitso, and MoonPay. There is anticipation building around the launch of RLUSD, with some traders predicting potential volatility and price increases for XRP. Additionally, there is mention of Chainlink building a stablecoin on Ripple, called LINKUSD, which is set to be released on Friday. Overall, the messages highlight the excitement and positive developments surrounding the launch of RLUSD and its potential impact on the crypto industry.', - data: [ - 0, 1, 3, 3, 0, 0, 0, 7, 1, 1, 0, 3, 2, 0, 2, 4, 3, 2, 0, 3, 1, 0, 4, 0, 2, 3, 6, 11, 4, 2, - 4, 2, 0, 1, 7, 2, 1, 2, 2, 0, 1, 37, 3, 1, 0, 8, 1, 0, 1, 3, 4, 5, 7, 2, 2, - ], - }, - { - label: 'CATS', - topics: 'cat,binance,bnb,popcat,airdrops', - description: - "The key topics discussed in the messages from Twitter related to the crypto industry are:\n1. Popcat listing on Binance and Coinbase\n2. Feline finance dominance\n3. AlleyCat cryptocurrency inspired by retro gaming\n4. Simon's Cat (CAT) and Pudgy Penguins (PENGU) projects on Binance\n5. Airdrops for CAT and PENGU tokens on Binance\n6. Trading pairs for CAT and PENGU tokens\n7. Meme Machine invention by Ardi\n8. Cool Cats character, Blue Cat\n9. Crypto investments and trading\n10. Cryptocurrency market trends and consolidation\n\nThese topics indicate a growing interest in crypto assets related to cats and retro gaming, as well as the excitement around new projects and airdrops on Binance.", - data: [ - 5, 2, 5, 3, 1, 0, 2, 3, 5, 36, 4, 3, 1, 4, 0, 1, 1, 1, 4, 0, 2, 3, 3, 1, 2, 1, 3, 0, 6, 0, - 1, 3, 6, 2, 3, 3, 2, 3, 3, 4, 1, 1, 1, 1, 2, 2, 2, 3, 0, 0, 6, 1, 2, 1, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-51.json b/priv/repo/major_topics_seed/data-51.json deleted file mode 100644 index ffac3ad918..0000000000 --- a/priv/repo/major_topics_seed/data-51.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["19.12.24","20.12.24","20.12.24","20.12.24","20.12.24","20.12.24","20.12.24","20.12.24","21.12.24","21.12.24","21.12.24","21.12.24","21.12.24","21.12.24","21.12.24","21.12.24","22.12.24","22.12.24","22.12.24","22.12.24","22.12.24","22.12.24","22.12.24","22.12.24","23.12.24","23.12.24","23.12.24","23.12.24","23.12.24","23.12.24","23.12.24","23.12.24","24.12.24","24.12.24","24.12.24","24.12.24","24.12.24","24.12.24","24.12.24","24.12.24","25.12.24","25.12.24","25.12.24","25.12.24","25.12.24","25.12.24","25.12.24","25.12.24","26.12.24","26.12.24","26.12.24","26.12.24","26.12.24","26.12.24","26.12.24"],"datasets":[{"label":"Merry Christmas","topics":"christmas,merry,holiday,santa,holidays","description":"The key topics discussed in the messages from twitter are:\n1. Bitcoin and cryptocurrency gifting for Christmas\n2. AI-generated Christmas cards\n3. Zoom meetings during the holiday season\n4. Onboarding the next generation of crypto users\n5. Giving family members Bitcoin as a gift\n6. Christmas-themed poems and artwork related to crypto\n7. Personal growth and education in the crypto industry\n8. Festive digital collectibles and ornaments\n9. Support for Web3 projects\n10. Holiday-themed Dapp adventures and rewards\n11. Christmas greetings and holiday cheer\n\nOverall, the messages reflect a mix of holiday spirit, crypto industry trends, and community engagement in the context of Christmas celebrations.","data":[19,19,18,28,35,33,29,24,41,22,37,38,24,50,20,29,13,36,17,26,69,42,89,71,26,10,41,23,39,33,25,242,30,14,26,30,23,33,21,26,23,45,22,22,31,22,28,18,30,15,23,13,51,50,30]},{"label":"AI","topics":"ai,agents,agent,intelligence,humans","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- The increasing importance of AI in various industries, including crypto\n- The potential for AI to revolutionize productivity and innovation\n- The trend of startups labeling themselves as \"AI startups\" even for small features\n- The potential for AI to lead to better quality human work\n- The use of AI in trading and intelligent tools for crypto\n- The partnership between AI and crypto for future advancements\n- The potential for AI to allow individuals to pursue activities they enjoy, rather than solely for financial gain\n- Opportunities for innovators to build AI agents and receive grants\n- The impact of AI on various aspects of society and business, including productivity and performance improvements.","data":[6,81,9,8,3,0,1,5,3,12,11,8,2,11,5,12,8,8,6,6,6,8,10,3,8,16,7,13,7,5,1,3,4,5,7,6,4,6,3,9,9,7,6,6,4,5,10,19,13,5,4,4,11,7,9]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics discussed in the messages from twitter are:\n1. Altcoins and Meme Coins\n2. Memecoins challenge and potential for high returns\n3. Bitcoin as the first Meme Coin\n4. Memecoin trading on major brokerage institutions\n5. Memecoin guides and trading platforms\n6. Characteristics of meme coins such as reflexive behavior and high volatility\n7. Potential for meme coins to reach new all-time highs\n8. Memecoin communities and influencers like Soulja Boy and Charles the Chad\n9. Speculation on the future of meme coins in the digital asset space\n10. Memecoin pump and dump schemes\n\nOverall, the messages reflect a mix of excitement, speculation, and interest in meme coins and their potential for growth and profitability.","data":[3,4,4,10,6,1,2,9,12,4,6,7,7,7,11,4,1,9,5,4,5,12,3,5,7,5,6,7,7,11,103,7,4,2,5,4,12,8,8,6,6,8,8,2,2,2,2,1,10,5,10,8,4,4,1]},{"label":"BTC","topics":"bounce,btc,support,correction,candle","description":"Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin price movements and analysis: Discussions about Bitcoin's price fluctuations, support and resistance levels, bullish signals, potential bounce back scenarios, and comparisons to previous market downturns.\n\n2. Altcoin performance: Mention of altcoin charts and their correlation to Bitcoin's movements, as well as predictions for altcoin prices based on Bitcoin's performance.\n\n3. Market sentiment and predictions: Speculation on potential market trends, including the possibility of a major bull move, bounce back, and bottoming out of the market.\n\n4. Boson Protocol (BOSON) analysis: Positive outlook on the breakout and retest of Boson Protocol, with expectations of reaching $1+ next month and upcoming catalysts in Q1.\n\n5. Market pressure and downturn: Reports on Bitcoin falling below $100,000 and sparking a major market downturn, with implications for the overall cryptocurrency market.\n\n6. Technical analysis: Discussions on Bitcoin's position relative to the 'comfort zone' channel, the 50-day moving average, and potential price levels to watch for.\n\nOverall, the sentiment in the messages seems to be a mix of analysis, predictions, and reactions to market movements in the crypto industry.","data":[6,2,1,5,23,30,11,28,5,15,2,5,7,3,16,13,4,10,6,3,14,4,4,7,1,5,4,2,7,9,5,2,5,3,10,7,5,18,4,10,8,2,7,9,2,5,10,2,5,3,2,5,5,10,3]},{"label":"ETH","topics":"eth,ethereum,classic,price,ethereums","description":"The key topics currently being discussed in the crypto industry on Twitter include optimism towards Ethereum (ETH) with price predictions ranging from $4800-$5000 per ETH and potential new all-time highs in the future. There is also mention of bearish sentiment in the market and consolidation around $3,315 for ETH. Additionally, there is discussion about potential resistance levels for ETH around $3550-$3600 and the importance of setting TP/SL for pair trades. Furthermore, there is anticipation for the launch of Nest and Plume's Pre-Deposit Vault and the opportunity to earn exclusive community rewards. Overall, the sentiment towards Ethereum seems positive with expectations of growth and potential price increases in the future.","data":[7,1,2,5,1,0,4,6,4,9,6,3,4,5,9,8,75,10,6,4,6,4,3,12,5,2,3,3,15,9,1,2,6,1,6,4,1,8,4,7,7,1,3,5,7,1,13,5,6,5,7,12,6,5,1]},{"label":"MSTR","topics":"microstrategy,mstr,shares,acquired,billion","description":"Based on the messages from Twitter, it is evident that MicroStrategy, Bitcoin, Michael Saylor, and the company's shareholder meeting are key topics being discussed. MicroStrategy's aggressive Bitcoin buying spree, plans to increase authorized shares significantly for Bitcoin purchases, and the appointment of former Binance US CEO Brian Brooks to the board are also noteworthy. Additionally, the company's milestone of joining the NASDAQ 100 and the passing of Stephen A. Cozen, founder of Cozen O'Connor law firm, are mentioned in the messages. Overall, the focus is on MicroStrategy's actions and strategies related to Bitcoin investments and market impact.","data":[16,1,1,6,7,4,19,8,5,1,9,4,2,3,6,2,4,7,4,3,5,2,6,7,4,11,8,5,2,3,7,48,4,3,3,3,5,6,16,4,11,6,6,9,1,2,5,6,4,4,5,5,6,4,5]},{"label":"DOGE","topics":"dogecoin,doge,shorts,elonmusk,prediction","description":"This week in the crypto industry, Dogecoin has been a hot topic of discussion on social media platforms like Twitter. There are mentions of Dogecoin potentially reaching $1, with bullish signs suggesting a breakout. Additionally, there is excitement around the creation of a new coin called $DOGM, which is a fork coin of Dogecoin. People are also discussing the potential of becoming a millionaire with Dogecoin by 2030. Overall, the community seems to be enthusiastic about the future of Dogecoin and the opportunities it presents for investors.","data":[4,2,2,1,1,0,4,5,2,1,3,6,6,2,91,5,2,4,3,5,6,3,4,6,2,4,4,8,7,5,9,1,3,3,2,7,4,5,6,4,2,3,8,6,4,9,5,1,8,2,5,3,9,10,4]},{"label":"HYPE","topics":"hyperliquid,north,hype,korea,south","description":"The key topics discussed in the messages from twitter are:\n1. Hyperliquid: Mentioned multiple times in the messages, discussing its market cap, potential growth, and recent activities such as a new wallet bridging USDC to buy HYPE tokens.\n2. Crypto Market Update: Mention of South Korea tightening crypto regulations with a new amendment.\n3. Do Kwon's Appeal Rejected: Discussion about Do Kwon's extradition appeal being rejected by Montenegro's Constitutional Court.\n4. Potential hack or manipulation: Mention of North Korea's liquidation of funds and leveraged ETH positions, with concerns about potential hacks or manipulations in trading activities.\n5. Marty McFly's Sports almanac: Comparison made to investing in Hyperliquid as having insider knowledge like Marty McFly's sports almanac.\n6. Chameleon Jeff & Assistance Fund: Reference to a partnership or collaboration involving Hyperliquid.\n7. S3 on Hyperliquid: Mention of an upcoming announcement regarding S3 on Hyperliquid.\n8. Future growth and improvements: Discussion about the pricing in of future growth and improvements in Hyperliquid.\n9. Whale cabal: Mention of a group of whales potentially drumming up exit liquidity for Hyperliquid.\n10. VoiceOfCrypto: Hashtag used in one of the messages, indicating a source or platform related to crypto news and updates.","data":[7,3,4,2,5,0,4,5,7,3,1,10,4,8,3,3,3,4,8,1,8,7,6,7,59,4,10,5,10,8,3,0,5,7,15,5,3,2,3,3,3,0,6,3,5,4,2,11,2,5,5,1,5,0,3]},{"label":"SOL","topics":"solana,sol,solanas,base,dex","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- $SOL (Solana) reaching new all-time highs and potential for further gains\n- Comparison between Base protocol and Ethereum/Solana for liquidity and transactions\n- Strength of $SEND protocol on Solana after endorsement\n- Potential bullish BARR pattern for $SOL\n- Updates on SORA ecosystem, including SORA Card and TON Bridge\n- Liquidity pool improvements on Solana with $TRUST LP\n- SOL App Campaign ending with rewards in $BTC\n- First payment app on Solana with network and product updates planned for 2025","data":[8,0,6,0,3,0,2,6,9,6,11,4,7,0,5,4,5,8,6,5,3,3,5,9,4,3,0,8,6,9,3,1,10,1,3,3,4,7,8,4,9,2,5,25,1,7,3,2,4,7,3,4,6,0,2]},{"label":"Art","topics":"art,artists,artist,collectors,piece","description":"The messages from Twitter are discussing various topics related to art, including glitch art, anime art, pixel art, watercolor style portraits, photography, NFTs, and a reality show called \"ART HOUSE\". The messages also mention specific artists and communities within the crypto industry that are bullish on certain NFT artists. Overall, the discussion revolves around different forms of art, digital connections, and the excitement surrounding new artistic endeavors.","data":[8,1,62,12,0,0,2,6,3,1,9,2,6,5,7,6,0,4,6,1,4,7,7,2,1,1,1,4,4,11,2,1,1,3,4,4,8,1,3,2,3,1,4,1,3,2,2,3,4,5,3,0,6,3,5]},{"label":"ETF Flows","topics":"etfs,etf,outflows,blackrock,net","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. Bitcoin ETF inflows and outflows: There is a focus on the recent inflows and outflows of Bitcoin ETFs, with mentions of significant amounts being bought and sold, as well as the impact on Bitcoin's price.\n\n2. Ethereum ETFs: There is a discussion about the inflows into Ethereum ETFs, with a notable amount of money flowing into these funds.\n\n3. Altcoin season: There are mentions of a potential rally for altcoins soon, with a bullish sentiment towards certain altcoins like DAPP and Pencils Protocol.\n\n4. Institutional moves: Institutions are making moves in the crypto space, with a significant amount of money flowing into Ethereum ETFs while exiting Bitcoin ETFs.\n\n5. AI and altcoin season impact: Developments in the AI field and the arrival of altcoin season are expected to have a significant impact on related currency prices.\n\nOverall, the discussions on Twitter revolve around the flow of funds into and out of ETFs, the potential for altcoin rallies, and the impact of institutional moves on the crypto market.","data":[2,1,1,0,11,2,17,4,1,0,2,1,9,2,1,0,41,2,3,1,1,3,1,4,1,5,1,3,2,2,3,0,2,8,1,3,2,0,0,7,1,1,11,2,26,1,0,2,1,6,4,3,1,0,5]},{"label":"GameFi","topics":"gaming,games,metaverse,game,web3","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Partnerships in the gaming industry, such as $EPIK x @InfiniGods and @playaneemate being featured on IGN.\n2. The booming ecosystem of $QORPO and GameFi transforming digital entertainment.\n3. The benefits of blockchain gaming, including asset ownership, player reward models, and new revenue models.\n4. The potential revolution in collecting and digital gaming through companies like @WITS_TCG and Collectatech.\n5. The importance of top-tier security and user comfort in GameFi universes, as seen with @Yooldo_Games integrating MetaMask.\n6. Collaborative music videos in the Metaverse/Web 3.0 space, such as the one from @KaneMayfield.\n7. Artists collaborating with major gaming IPs, like @nygi_xxv and @Ellii_art with @rstlssxyz and Ubisoft for RSTLSS x Rabbids Invasion.\n8. Insights into Alien Worlds and utility NFTs from @dacocoio's CEO at the 2024 #CVSummit.\n9. Lumiterra, an MMORPG on Ronin offering battles, farming, and collecting in an open world.\n10. The success of Pixel Dungeons in the p2e space on Ronin, outperforming other platforms like @pixels_online.","data":[3,0,2,3,2,0,6,4,2,1,3,5,1,4,2,4,3,3,4,28,7,4,1,3,2,5,5,8,4,0,1,10,0,6,7,1,5,1,6,8,3,1,1,3,0,7,1,0,3,6,3,1,2,5,4]},{"label":"BTC Price","topics":"100k,10x,bitcoin,million,hit","description":"The messages from Twitter suggest a bullish sentiment towards Bitcoin, with many users predicting that Bitcoin will reach $1 million or even higher in the future. Some users are referencing past price milestones and early predictions from Bitcoin's inception. There is also discussion about the potential for Bitcoin to reprice everything lower as it becomes more widely adopted. Additionally, there are mentions of other cryptocurrencies like EGLD and Chainlink, with predictions of becoming millionaires with certain amounts of these coins. Overall, the sentiment in the crypto community on Twitter seems optimistic and hopeful for the future of Bitcoin and other cryptocurrencies.","data":[1,1,3,2,15,19,7,2,1,3,5,2,1,0,1,3,1,2,3,0,6,1,4,15,1,2,2,1,0,3,2,1,3,1,0,2,2,5,3,3,1,3,3,2,4,4,3,3,3,1,1,3,3,0,2]},{"label":"Dip","topics":"dip,buy,bought,buying,sell","description":"Tldr; The key topic discussed on Twitter is buying the dip in the crypto industry. Many users are discussing their strategies for buying low and holding for the long term. Some are confident in their investments and have a clear thesis for why their coins will pump. Others criticize those who panic sell at losses and emphasize the importance of having a strong belief in the coins they hold. Overall, the sentiment is divided between those who buy the dip and those who wait for a better entry point, with some users noting the herd mentality of the general public in crypto trading.","data":[2,1,0,3,1,0,1,32,8,2,0,3,2,3,18,4,2,4,2,0,2,2,3,4,0,1,4,1,1,1,2,0,3,2,2,7,1,3,1,0,0,3,1,5,1,2,2,1,4,1,1,1,2,1,0]},{"label":"Trading","topics":"lose,trader,dont,focus,advice","description":"The key topics discussed in the messages from twitter include:\n- The importance of taking profits in trading\n- The reality of trading versus the myth of easy money\n- The mental game of trading and the importance of learning from mistakes\n- The risks and challenges of trading cryptocurrencies\n- The need for strong criteria when investing in the crypto market\n- The impact of leadership and responsibility in trading and investing\n- The consequences of chasing quick money and making uninformed decisions\n- The importance of setting your own terms and not relying on others for investment decisions\n- The recognition that losing trades are part of the business and should not define you\n\nOverall, the messages emphasize the importance of discipline, learning, and responsibility in the crypto industry.","data":[2,0,4,3,4,1,2,0,2,2,2,4,3,1,2,4,0,2,5,2,1,3,3,0,4,8,2,3,3,3,2,0,3,1,2,4,6,4,0,3,2,0,4,3,2,5,3,1,7,11,1,0,3,2,3]},{"label":"NFT","topics":"nft,nfts,projects,token,pfp","description":"The key topics currently discussed in the crypto industry on social media include NFT recommendations, the rise of NFT holders, D-Tier NFT projects dropping tokens, the minting of multiple collections by big NFT projects, community participation in NFT projects, upcoming NFT token speculations/confirmations, the potential growth of the U.S. NFT market, early post-mint NFT secondary sales, and the availability of free 3D Scroll NFTs for cosmetic upgrades. Additionally, there is mention of specific NFT projects such as Cool Cats, World of Women, Azuki, Doodles, Goblin Town, Toshi_base, and Toshilio. The overall sentiment seems to be positive towards the NFT market and the potential for growth and appreciation of NFT collections.","data":[3,1,0,1,1,0,3,0,1,1,6,2,4,2,0,2,3,3,2,2,4,3,2,2,0,3,0,5,2,1,0,2,1,3,19,2,0,10,1,2,1,2,2,7,2,5,4,3,2,3,0,0,5,1,2]},{"label":"OCEAN","topics":"opensea,airdrop,ocean,token,og","description":"The key topics currently being discussed on Twitter regarding OpenSea and its potential airdrop include speculation about the airdrop being retroactive and rewarding early users, predictions about the timing of the airdrop, excitement about the possibility of a token launch, discussions about gas fees and potential compensation for past losses, and strategies for maximizing potential gains from the airdrop. There is also mention of other NFT projects potentially dropping tokens and the impact on the market. Overall, there is a mix of anticipation, skepticism, and strategic planning among users in the crypto community.","data":[1,10,0,3,1,0,2,1,0,2,4,1,1,1,0,3,3,0,1,3,9,2,2,3,8,2,0,3,0,6,3,0,1,1,9,1,2,4,3,4,0,2,0,2,1,0,0,4,5,4,1,3,0,6,1]},{"label":"Tether","topics":"tether,investment,usdt,eu,strategic","description":"The key topics discussed in the messages from Twitter regarding the crypto industry include:\n1. The upcoming regulations in the EU regarding Bitcoin, specifically the MiCA regulations that will be enacted on Dec 30.\n2. The strategic investment of $775 million by Tether in Rumble, a video-sharing platform known for promoting free speech.\n3. The implications of the MiCA regulations on crypto exchanges in the EU, particularly the delisting of USDT.\n4. The partnership between Rumble and Tether, aiming to boost decentralized and community-owned media platforms.\n5. The potential impact of the \"EU travel rule\" going live in 2025 on privacy and security in the crypto space.\n6. The substantial net profit of over $10 billion expected by Tether by the end of the year, driven by the surge in demand for USDT.\n7. The overall alliance between crypto and media platforms, emphasizing decentralization, free speech, and financial empowerment.","data":[1,1,3,0,1,1,3,1,2,0,1,1,2,0,0,0,1,1,1,0,1,1,1,1,0,4,0,0,1,0,2,0,1,0,1,1,0,1,2,3,12,1,3,0,1,3,2,32,3,3,2,1,2,0,2]},{"label":"Michael Saylor","topics":"saylor,michael,jeff,hes,microstrategy","description":"The messages from twitter suggest that Michael Saylor, the co-founder of MicroStrategy, is a prominent figure in the crypto industry who is known for his bullish stance on Bitcoin. He has been making headlines for his large investments in Bitcoin and his advocacy for other high-profile individuals, such as Jeff Bezos, to also invest in the cryptocurrency. Some people view Saylor as a visionary and a genius, while others question his motives and strategies. There are also discussions about potential risks, such as hacking and market manipulation, associated with Saylor's actions. Additionally, there are humorous references to Saylor being a time traveler and comparisons to other successful investors like Steve Ballmer. Overall, the topic revolves around Michael Saylor's influence and impact on the crypto industry.","data":[4,0,4,3,2,2,1,1,3,1,1,3,0,0,0,0,4,3,1,0,2,0,1,3,1,1,2,0,1,3,1,0,4,0,1,1,1,3,1,0,2,19,1,2,0,1,1,3,2,2,1,3,0,2,3]},{"label":"PENGU","topics":"pengu,pudgypenguins,pudgy,airdrop,bonk","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community regarding $PENGU are as follows:\n\n1. $PENGU is performing well, with a 6% increase in value and dominating over other profile picture (PFP) tokens.\n2. There is a comparison between $PENGU and $WIF, with $PENGU flipping $WIF in market cap.\n3. Bithumb, the 2nd largest Korean crypto exchange, is listing $PENGU for trading, leading to a 22% increase in value.\n4. There is anticipation for a strong finish for $PENGU in 2024.\n5. $PENGU is listed on LCX Exchange along with $MAJOR and $AAVE.\n\nOverall, it appears that $PENGU is gaining traction and positive attention within the crypto community, with various developments and positive performance indicators being discussed.","data":[2,1,0,0,1,2,3,1,1,0,1,1,2,0,1,1,0,0,1,0,2,1,0,1,1,2,0,4,1,2,1,0,2,7,3,22,2,1,6,0,1,1,0,0,2,1,3,2,0,4,1,0,1,0,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-51.ts b/priv/repo/major_topics_seed/data-51.ts deleted file mode 100644 index 72aa70ad69..0000000000 --- a/priv/repo/major_topics_seed/data-51.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '19.12.24', - '20.12.24', - '20.12.24', - '20.12.24', - '20.12.24', - '20.12.24', - '20.12.24', - '20.12.24', - '21.12.24', - '21.12.24', - '21.12.24', - '21.12.24', - '21.12.24', - '21.12.24', - '21.12.24', - '21.12.24', - '22.12.24', - '22.12.24', - '22.12.24', - '22.12.24', - '22.12.24', - '22.12.24', - '22.12.24', - '22.12.24', - '23.12.24', - '23.12.24', - '23.12.24', - '23.12.24', - '23.12.24', - '23.12.24', - '23.12.24', - '23.12.24', - '24.12.24', - '24.12.24', - '24.12.24', - '24.12.24', - '24.12.24', - '24.12.24', - '24.12.24', - '24.12.24', - '25.12.24', - '25.12.24', - '25.12.24', - '25.12.24', - '25.12.24', - '25.12.24', - '25.12.24', - '25.12.24', - '26.12.24', - '26.12.24', - '26.12.24', - '26.12.24', - '26.12.24', - '26.12.24', - '26.12.24', - ], - datasets: [ - { - label: 'Merry Christmas', - topics: 'christmas,merry,holiday,santa,holidays', - description: - 'The key topics discussed in the messages from twitter are:\n1. Bitcoin and cryptocurrency gifting for Christmas\n2. AI-generated Christmas cards\n3. Zoom meetings during the holiday season\n4. Onboarding the next generation of crypto users\n5. Giving family members Bitcoin as a gift\n6. Christmas-themed poems and artwork related to crypto\n7. Personal growth and education in the crypto industry\n8. Festive digital collectibles and ornaments\n9. Support for Web3 projects\n10. Holiday-themed Dapp adventures and rewards\n11. Christmas greetings and holiday cheer\n\nOverall, the messages reflect a mix of holiday spirit, crypto industry trends, and community engagement in the context of Christmas celebrations.', - data: [ - 19, 19, 18, 28, 35, 33, 29, 24, 41, 22, 37, 38, 24, 50, 20, 29, 13, 36, 17, 26, 69, 42, 89, - 71, 26, 10, 41, 23, 39, 33, 25, 242, 30, 14, 26, 30, 23, 33, 21, 26, 23, 45, 22, 22, 31, 22, - 28, 18, 30, 15, 23, 13, 51, 50, 30, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,intelligence,humans', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- The increasing importance of AI in various industries, including crypto\n- The potential for AI to revolutionize productivity and innovation\n- The trend of startups labeling themselves as "AI startups" even for small features\n- The potential for AI to lead to better quality human work\n- The use of AI in trading and intelligent tools for crypto\n- The partnership between AI and crypto for future advancements\n- The potential for AI to allow individuals to pursue activities they enjoy, rather than solely for financial gain\n- Opportunities for innovators to build AI agents and receive grants\n- The impact of AI on various aspects of society and business, including productivity and performance improvements.', - data: [ - 6, 81, 9, 8, 3, 0, 1, 5, 3, 12, 11, 8, 2, 11, 5, 12, 8, 8, 6, 6, 6, 8, 10, 3, 8, 16, 7, 13, - 7, 5, 1, 3, 4, 5, 7, 6, 4, 6, 3, 9, 9, 7, 6, 6, 4, 5, 10, 19, 13, 5, 4, 4, 11, 7, 9, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The key topics discussed in the messages from twitter are:\n1. Altcoins and Meme Coins\n2. Memecoins challenge and potential for high returns\n3. Bitcoin as the first Meme Coin\n4. Memecoin trading on major brokerage institutions\n5. Memecoin guides and trading platforms\n6. Characteristics of meme coins such as reflexive behavior and high volatility\n7. Potential for meme coins to reach new all-time highs\n8. Memecoin communities and influencers like Soulja Boy and Charles the Chad\n9. Speculation on the future of meme coins in the digital asset space\n10. Memecoin pump and dump schemes\n\nOverall, the messages reflect a mix of excitement, speculation, and interest in meme coins and their potential for growth and profitability.', - data: [ - 3, 4, 4, 10, 6, 1, 2, 9, 12, 4, 6, 7, 7, 7, 11, 4, 1, 9, 5, 4, 5, 12, 3, 5, 7, 5, 6, 7, 7, - 11, 103, 7, 4, 2, 5, 4, 12, 8, 8, 6, 6, 8, 8, 2, 2, 2, 2, 1, 10, 5, 10, 8, 4, 4, 1, - ], - }, - { - label: 'BTC', - topics: 'bounce,btc,support,correction,candle', - description: - "Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin price movements and analysis: Discussions about Bitcoin's price fluctuations, support and resistance levels, bullish signals, potential bounce back scenarios, and comparisons to previous market downturns.\n\n2. Altcoin performance: Mention of altcoin charts and their correlation to Bitcoin's movements, as well as predictions for altcoin prices based on Bitcoin's performance.\n\n3. Market sentiment and predictions: Speculation on potential market trends, including the possibility of a major bull move, bounce back, and bottoming out of the market.\n\n4. Boson Protocol (BOSON) analysis: Positive outlook on the breakout and retest of Boson Protocol, with expectations of reaching $1+ next month and upcoming catalysts in Q1.\n\n5. Market pressure and downturn: Reports on Bitcoin falling below $100,000 and sparking a major market downturn, with implications for the overall cryptocurrency market.\n\n6. Technical analysis: Discussions on Bitcoin's position relative to the 'comfort zone' channel, the 50-day moving average, and potential price levels to watch for.\n\nOverall, the sentiment in the messages seems to be a mix of analysis, predictions, and reactions to market movements in the crypto industry.", - data: [ - 6, 2, 1, 5, 23, 30, 11, 28, 5, 15, 2, 5, 7, 3, 16, 13, 4, 10, 6, 3, 14, 4, 4, 7, 1, 5, 4, 2, - 7, 9, 5, 2, 5, 3, 10, 7, 5, 18, 4, 10, 8, 2, 7, 9, 2, 5, 10, 2, 5, 3, 2, 5, 5, 10, 3, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,classic,price,ethereums', - description: - "The key topics currently being discussed in the crypto industry on Twitter include optimism towards Ethereum (ETH) with price predictions ranging from $4800-$5000 per ETH and potential new all-time highs in the future. There is also mention of bearish sentiment in the market and consolidation around $3,315 for ETH. Additionally, there is discussion about potential resistance levels for ETH around $3550-$3600 and the importance of setting TP/SL for pair trades. Furthermore, there is anticipation for the launch of Nest and Plume's Pre-Deposit Vault and the opportunity to earn exclusive community rewards. Overall, the sentiment towards Ethereum seems positive with expectations of growth and potential price increases in the future.", - data: [ - 7, 1, 2, 5, 1, 0, 4, 6, 4, 9, 6, 3, 4, 5, 9, 8, 75, 10, 6, 4, 6, 4, 3, 12, 5, 2, 3, 3, 15, - 9, 1, 2, 6, 1, 6, 4, 1, 8, 4, 7, 7, 1, 3, 5, 7, 1, 13, 5, 6, 5, 7, 12, 6, 5, 1, - ], - }, - { - label: 'MSTR', - topics: 'microstrategy,mstr,shares,acquired,billion', - description: - "Based on the messages from Twitter, it is evident that MicroStrategy, Bitcoin, Michael Saylor, and the company's shareholder meeting are key topics being discussed. MicroStrategy's aggressive Bitcoin buying spree, plans to increase authorized shares significantly for Bitcoin purchases, and the appointment of former Binance US CEO Brian Brooks to the board are also noteworthy. Additionally, the company's milestone of joining the NASDAQ 100 and the passing of Stephen A. Cozen, founder of Cozen O'Connor law firm, are mentioned in the messages. Overall, the focus is on MicroStrategy's actions and strategies related to Bitcoin investments and market impact.", - data: [ - 16, 1, 1, 6, 7, 4, 19, 8, 5, 1, 9, 4, 2, 3, 6, 2, 4, 7, 4, 3, 5, 2, 6, 7, 4, 11, 8, 5, 2, 3, - 7, 48, 4, 3, 3, 3, 5, 6, 16, 4, 11, 6, 6, 9, 1, 2, 5, 6, 4, 4, 5, 5, 6, 4, 5, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,shorts,elonmusk,prediction', - description: - 'This week in the crypto industry, Dogecoin has been a hot topic of discussion on social media platforms like Twitter. There are mentions of Dogecoin potentially reaching $1, with bullish signs suggesting a breakout. Additionally, there is excitement around the creation of a new coin called $DOGM, which is a fork coin of Dogecoin. People are also discussing the potential of becoming a millionaire with Dogecoin by 2030. Overall, the community seems to be enthusiastic about the future of Dogecoin and the opportunities it presents for investors.', - data: [ - 4, 2, 2, 1, 1, 0, 4, 5, 2, 1, 3, 6, 6, 2, 91, 5, 2, 4, 3, 5, 6, 3, 4, 6, 2, 4, 4, 8, 7, 5, - 9, 1, 3, 3, 2, 7, 4, 5, 6, 4, 2, 3, 8, 6, 4, 9, 5, 1, 8, 2, 5, 3, 9, 10, 4, - ], - }, - { - label: 'HYPE', - topics: 'hyperliquid,north,hype,korea,south', - description: - "The key topics discussed in the messages from twitter are:\n1. Hyperliquid: Mentioned multiple times in the messages, discussing its market cap, potential growth, and recent activities such as a new wallet bridging USDC to buy HYPE tokens.\n2. Crypto Market Update: Mention of South Korea tightening crypto regulations with a new amendment.\n3. Do Kwon's Appeal Rejected: Discussion about Do Kwon's extradition appeal being rejected by Montenegro's Constitutional Court.\n4. Potential hack or manipulation: Mention of North Korea's liquidation of funds and leveraged ETH positions, with concerns about potential hacks or manipulations in trading activities.\n5. Marty McFly's Sports almanac: Comparison made to investing in Hyperliquid as having insider knowledge like Marty McFly's sports almanac.\n6. Chameleon Jeff & Assistance Fund: Reference to a partnership or collaboration involving Hyperliquid.\n7. S3 on Hyperliquid: Mention of an upcoming announcement regarding S3 on Hyperliquid.\n8. Future growth and improvements: Discussion about the pricing in of future growth and improvements in Hyperliquid.\n9. Whale cabal: Mention of a group of whales potentially drumming up exit liquidity for Hyperliquid.\n10. VoiceOfCrypto: Hashtag used in one of the messages, indicating a source or platform related to crypto news and updates.", - data: [ - 7, 3, 4, 2, 5, 0, 4, 5, 7, 3, 1, 10, 4, 8, 3, 3, 3, 4, 8, 1, 8, 7, 6, 7, 59, 4, 10, 5, 10, - 8, 3, 0, 5, 7, 15, 5, 3, 2, 3, 3, 3, 0, 6, 3, 5, 4, 2, 11, 2, 5, 5, 1, 5, 0, 3, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,solanas,base,dex', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- $SOL (Solana) reaching new all-time highs and potential for further gains\n- Comparison between Base protocol and Ethereum/Solana for liquidity and transactions\n- Strength of $SEND protocol on Solana after endorsement\n- Potential bullish BARR pattern for $SOL\n- Updates on SORA ecosystem, including SORA Card and TON Bridge\n- Liquidity pool improvements on Solana with $TRUST LP\n- SOL App Campaign ending with rewards in $BTC\n- First payment app on Solana with network and product updates planned for 2025', - data: [ - 8, 0, 6, 0, 3, 0, 2, 6, 9, 6, 11, 4, 7, 0, 5, 4, 5, 8, 6, 5, 3, 3, 5, 9, 4, 3, 0, 8, 6, 9, - 3, 1, 10, 1, 3, 3, 4, 7, 8, 4, 9, 2, 5, 25, 1, 7, 3, 2, 4, 7, 3, 4, 6, 0, 2, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,collectors,piece', - description: - 'The messages from Twitter are discussing various topics related to art, including glitch art, anime art, pixel art, watercolor style portraits, photography, NFTs, and a reality show called "ART HOUSE". The messages also mention specific artists and communities within the crypto industry that are bullish on certain NFT artists. Overall, the discussion revolves around different forms of art, digital connections, and the excitement surrounding new artistic endeavors.', - data: [ - 8, 1, 62, 12, 0, 0, 2, 6, 3, 1, 9, 2, 6, 5, 7, 6, 0, 4, 6, 1, 4, 7, 7, 2, 1, 1, 1, 4, 4, 11, - 2, 1, 1, 3, 4, 4, 8, 1, 3, 2, 3, 1, 4, 1, 3, 2, 2, 3, 4, 5, 3, 0, 6, 3, 5, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,etf,outflows,blackrock,net', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n\n1. Bitcoin ETF inflows and outflows: There is a focus on the recent inflows and outflows of Bitcoin ETFs, with mentions of significant amounts being bought and sold, as well as the impact on Bitcoin's price.\n\n2. Ethereum ETFs: There is a discussion about the inflows into Ethereum ETFs, with a notable amount of money flowing into these funds.\n\n3. Altcoin season: There are mentions of a potential rally for altcoins soon, with a bullish sentiment towards certain altcoins like DAPP and Pencils Protocol.\n\n4. Institutional moves: Institutions are making moves in the crypto space, with a significant amount of money flowing into Ethereum ETFs while exiting Bitcoin ETFs.\n\n5. AI and altcoin season impact: Developments in the AI field and the arrival of altcoin season are expected to have a significant impact on related currency prices.\n\nOverall, the discussions on Twitter revolve around the flow of funds into and out of ETFs, the potential for altcoin rallies, and the impact of institutional moves on the crypto market.", - data: [ - 2, 1, 1, 0, 11, 2, 17, 4, 1, 0, 2, 1, 9, 2, 1, 0, 41, 2, 3, 1, 1, 3, 1, 4, 1, 5, 1, 3, 2, 2, - 3, 0, 2, 8, 1, 3, 2, 0, 0, 7, 1, 1, 11, 2, 26, 1, 0, 2, 1, 6, 4, 3, 1, 0, 5, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,metaverse,game,web3', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n1. Partnerships in the gaming industry, such as $EPIK x @InfiniGods and @playaneemate being featured on IGN.\n2. The booming ecosystem of $QORPO and GameFi transforming digital entertainment.\n3. The benefits of blockchain gaming, including asset ownership, player reward models, and new revenue models.\n4. The potential revolution in collecting and digital gaming through companies like @WITS_TCG and Collectatech.\n5. The importance of top-tier security and user comfort in GameFi universes, as seen with @Yooldo_Games integrating MetaMask.\n6. Collaborative music videos in the Metaverse/Web 3.0 space, such as the one from @KaneMayfield.\n7. Artists collaborating with major gaming IPs, like @nygi_xxv and @Ellii_art with @rstlssxyz and Ubisoft for RSTLSS x Rabbids Invasion.\n8. Insights into Alien Worlds and utility NFTs from @dacocoio's CEO at the 2024 #CVSummit.\n9. Lumiterra, an MMORPG on Ronin offering battles, farming, and collecting in an open world.\n10. The success of Pixel Dungeons in the p2e space on Ronin, outperforming other platforms like @pixels_online.", - data: [ - 3, 0, 2, 3, 2, 0, 6, 4, 2, 1, 3, 5, 1, 4, 2, 4, 3, 3, 4, 28, 7, 4, 1, 3, 2, 5, 5, 8, 4, 0, - 1, 10, 0, 6, 7, 1, 5, 1, 6, 8, 3, 1, 1, 3, 0, 7, 1, 0, 3, 6, 3, 1, 2, 5, 4, - ], - }, - { - label: 'BTC Price', - topics: '100k,10x,bitcoin,million,hit', - description: - "The messages from Twitter suggest a bullish sentiment towards Bitcoin, with many users predicting that Bitcoin will reach $1 million or even higher in the future. Some users are referencing past price milestones and early predictions from Bitcoin's inception. There is also discussion about the potential for Bitcoin to reprice everything lower as it becomes more widely adopted. Additionally, there are mentions of other cryptocurrencies like EGLD and Chainlink, with predictions of becoming millionaires with certain amounts of these coins. Overall, the sentiment in the crypto community on Twitter seems optimistic and hopeful for the future of Bitcoin and other cryptocurrencies.", - data: [ - 1, 1, 3, 2, 15, 19, 7, 2, 1, 3, 5, 2, 1, 0, 1, 3, 1, 2, 3, 0, 6, 1, 4, 15, 1, 2, 2, 1, 0, 3, - 2, 1, 3, 1, 0, 2, 2, 5, 3, 3, 1, 3, 3, 2, 4, 4, 3, 3, 3, 1, 1, 3, 3, 0, 2, - ], - }, - { - label: 'Dip', - topics: 'dip,buy,bought,buying,sell', - description: - 'Tldr; The key topic discussed on Twitter is buying the dip in the crypto industry. Many users are discussing their strategies for buying low and holding for the long term. Some are confident in their investments and have a clear thesis for why their coins will pump. Others criticize those who panic sell at losses and emphasize the importance of having a strong belief in the coins they hold. Overall, the sentiment is divided between those who buy the dip and those who wait for a better entry point, with some users noting the herd mentality of the general public in crypto trading.', - data: [ - 2, 1, 0, 3, 1, 0, 1, 32, 8, 2, 0, 3, 2, 3, 18, 4, 2, 4, 2, 0, 2, 2, 3, 4, 0, 1, 4, 1, 1, 1, - 2, 0, 3, 2, 2, 7, 1, 3, 1, 0, 0, 3, 1, 5, 1, 2, 2, 1, 4, 1, 1, 1, 2, 1, 0, - ], - }, - { - label: 'Trading', - topics: 'lose,trader,dont,focus,advice', - description: - 'The key topics discussed in the messages from twitter include:\n- The importance of taking profits in trading\n- The reality of trading versus the myth of easy money\n- The mental game of trading and the importance of learning from mistakes\n- The risks and challenges of trading cryptocurrencies\n- The need for strong criteria when investing in the crypto market\n- The impact of leadership and responsibility in trading and investing\n- The consequences of chasing quick money and making uninformed decisions\n- The importance of setting your own terms and not relying on others for investment decisions\n- The recognition that losing trades are part of the business and should not define you\n\nOverall, the messages emphasize the importance of discipline, learning, and responsibility in the crypto industry.', - data: [ - 2, 0, 4, 3, 4, 1, 2, 0, 2, 2, 2, 4, 3, 1, 2, 4, 0, 2, 5, 2, 1, 3, 3, 0, 4, 8, 2, 3, 3, 3, 2, - 0, 3, 1, 2, 4, 6, 4, 0, 3, 2, 0, 4, 3, 2, 5, 3, 1, 7, 11, 1, 0, 3, 2, 3, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,projects,token,pfp', - description: - 'The key topics currently discussed in the crypto industry on social media include NFT recommendations, the rise of NFT holders, D-Tier NFT projects dropping tokens, the minting of multiple collections by big NFT projects, community participation in NFT projects, upcoming NFT token speculations/confirmations, the potential growth of the U.S. NFT market, early post-mint NFT secondary sales, and the availability of free 3D Scroll NFTs for cosmetic upgrades. Additionally, there is mention of specific NFT projects such as Cool Cats, World of Women, Azuki, Doodles, Goblin Town, Toshi_base, and Toshilio. The overall sentiment seems to be positive towards the NFT market and the potential for growth and appreciation of NFT collections.', - data: [ - 3, 1, 0, 1, 1, 0, 3, 0, 1, 1, 6, 2, 4, 2, 0, 2, 3, 3, 2, 2, 4, 3, 2, 2, 0, 3, 0, 5, 2, 1, 0, - 2, 1, 3, 19, 2, 0, 10, 1, 2, 1, 2, 2, 7, 2, 5, 4, 3, 2, 3, 0, 0, 5, 1, 2, - ], - }, - { - label: 'OCEAN', - topics: 'opensea,airdrop,ocean,token,og', - description: - 'The key topics currently being discussed on Twitter regarding OpenSea and its potential airdrop include speculation about the airdrop being retroactive and rewarding early users, predictions about the timing of the airdrop, excitement about the possibility of a token launch, discussions about gas fees and potential compensation for past losses, and strategies for maximizing potential gains from the airdrop. There is also mention of other NFT projects potentially dropping tokens and the impact on the market. Overall, there is a mix of anticipation, skepticism, and strategic planning among users in the crypto community.', - data: [ - 1, 10, 0, 3, 1, 0, 2, 1, 0, 2, 4, 1, 1, 1, 0, 3, 3, 0, 1, 3, 9, 2, 2, 3, 8, 2, 0, 3, 0, 6, - 3, 0, 1, 1, 9, 1, 2, 4, 3, 4, 0, 2, 0, 2, 1, 0, 0, 4, 5, 4, 1, 3, 0, 6, 1, - ], - }, - { - label: 'Tether', - topics: 'tether,investment,usdt,eu,strategic', - description: - 'The key topics discussed in the messages from Twitter regarding the crypto industry include:\n1. The upcoming regulations in the EU regarding Bitcoin, specifically the MiCA regulations that will be enacted on Dec 30.\n2. The strategic investment of $775 million by Tether in Rumble, a video-sharing platform known for promoting free speech.\n3. The implications of the MiCA regulations on crypto exchanges in the EU, particularly the delisting of USDT.\n4. The partnership between Rumble and Tether, aiming to boost decentralized and community-owned media platforms.\n5. The potential impact of the "EU travel rule" going live in 2025 on privacy and security in the crypto space.\n6. The substantial net profit of over $10 billion expected by Tether by the end of the year, driven by the surge in demand for USDT.\n7. The overall alliance between crypto and media platforms, emphasizing decentralization, free speech, and financial empowerment.', - data: [ - 1, 1, 3, 0, 1, 1, 3, 1, 2, 0, 1, 1, 2, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 4, 0, 0, 1, 0, 2, - 0, 1, 0, 1, 1, 0, 1, 2, 3, 12, 1, 3, 0, 1, 3, 2, 32, 3, 3, 2, 1, 2, 0, 2, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,michael,jeff,hes,microstrategy', - description: - "The messages from twitter suggest that Michael Saylor, the co-founder of MicroStrategy, is a prominent figure in the crypto industry who is known for his bullish stance on Bitcoin. He has been making headlines for his large investments in Bitcoin and his advocacy for other high-profile individuals, such as Jeff Bezos, to also invest in the cryptocurrency. Some people view Saylor as a visionary and a genius, while others question his motives and strategies. There are also discussions about potential risks, such as hacking and market manipulation, associated with Saylor's actions. Additionally, there are humorous references to Saylor being a time traveler and comparisons to other successful investors like Steve Ballmer. Overall, the topic revolves around Michael Saylor's influence and impact on the crypto industry.", - data: [ - 4, 0, 4, 3, 2, 2, 1, 1, 3, 1, 1, 3, 0, 0, 0, 0, 4, 3, 1, 0, 2, 0, 1, 3, 1, 1, 2, 0, 1, 3, 1, - 0, 4, 0, 1, 1, 1, 3, 1, 0, 2, 19, 1, 2, 0, 1, 1, 3, 2, 2, 1, 3, 0, 2, 3, - ], - }, - { - label: 'PENGU', - topics: 'pengu,pudgypenguins,pudgy,airdrop,bonk', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community regarding $PENGU are as follows:\n\n1. $PENGU is performing well, with a 6% increase in value and dominating over other profile picture (PFP) tokens.\n2. There is a comparison between $PENGU and $WIF, with $PENGU flipping $WIF in market cap.\n3. Bithumb, the 2nd largest Korean crypto exchange, is listing $PENGU for trading, leading to a 22% increase in value.\n4. There is anticipation for a strong finish for $PENGU in 2024.\n5. $PENGU is listed on LCX Exchange along with $MAJOR and $AAVE.\n\nOverall, it appears that $PENGU is gaining traction and positive attention within the crypto community, with various developments and positive performance indicators being discussed.', - data: [ - 2, 1, 0, 0, 1, 2, 3, 1, 1, 0, 1, 1, 2, 0, 1, 1, 0, 0, 1, 0, 2, 1, 0, 1, 1, 2, 0, 4, 1, 2, 1, - 0, 2, 7, 3, 22, 2, 1, 6, 0, 1, 1, 0, 0, 2, 1, 3, 2, 0, 4, 1, 0, 1, 0, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-52.json b/priv/repo/major_topics_seed/data-52.json deleted file mode 100644 index 5cd0102df0..0000000000 --- a/priv/repo/major_topics_seed/data-52.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["26.12.24","27.12.24","27.12.24","27.12.24","27.12.24","27.12.24","27.12.24","27.12.24","28.12.24","28.12.24","28.12.24","28.12.24","28.12.24","28.12.24","28.12.24","28.12.24","29.12.24","29.12.24","29.12.24","29.12.24","29.12.24","29.12.24","29.12.24","29.12.24","30.12.24","30.12.24","30.12.24","30.12.24","30.12.24","30.12.24","30.12.24","30.12.24","31.12.24","31.12.24","31.12.24","31.12.24","31.12.24","31.12.24","31.12.24","31.12.24","01.01.25","01.01.25","01.01.25","01.01.25","01.01.25","01.01.25","01.01.25","01.01.25","02.01.25","02.01.25","02.01.25","02.01.25","02.01.25","02.01.25","02.01.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,ai16z,virtuals","description":"Based on the messages from Twitter, it is evident that the crypto industry is heavily focused on the integration of AI technology. The messages discuss how AI is revolutionizing various aspects of the industry, such as solving real problems, enhancing user interactions, and improving operational efficiency. There is also a mention of AI agents collecting crypto art made by humans, showcasing the potential for AI to play a significant role in the art market.\n\nFurthermore, the messages highlight the importance of partnerships in the industry, with a focus on decentralized AI verticals and engaging with enterprise customers for AI/ML at scale. This indicates a growing trend towards collaboration and innovation within the crypto space.\n\nOverall, the messages reflect a positive outlook on the future of AI in the crypto industry, with a strong emphasis on its potential to drive growth, efficiency, and innovation.","data":[71,379,37,44,25,0,24,39,33,27,46,41,28,40,30,30,34,35,19,44,48,32,14,39,46,57,36,46,29,38,27,39,45,6,21,40,31,27,45,44,34,39,48,34,31,24,47,41,44,25,31,56,39,26,41]},{"label":"BTC","topics":"fiat,bitcoin,money,understand,dont","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. The value and importance of Bitcoin as a fixed monetary instrument in a digital-first world.\n2. Criticism and resilience of Bitcoin over the years.\n3. Calls to end the fiat banking system in favor of Bitcoin.\n4. Concerns about scammers and white collar criminals in the Bitcoin community.\n5. Contrasting views on the value of companies based on their ability to generate a positive Bitcoin yield.\n6. A comparison between the inflationary nature of the dollar and the growth of Bitcoin.\n7. The power of network effects in making assets like Bitcoin culturally valuable.\n8. The potential impact of Bitcoin on traditional financial systems and societal norms.","data":[7,2,4,7,22,60,8,1,21,8,8,10,5,10,9,4,7,11,6,7,9,4,7,14,12,10,10,4,6,8,11,7,7,5,5,8,13,8,3,6,5,19,9,12,10,12,14,11,6,12,28,7,7,5,1]},{"label":"ETH","topics":"eth,ethereum,q1,longterm,classic","description":"The key topics currently being discussed on Twitter regarding Ethereum include price predictions for 2025, potential for reaching $10k within the next 8-12 months, a surge in financing rates indicating increasing long positions, and the possibility of a rebound to $4,000 if buying momentum sustains. Additionally, there is excitement around Ethereum's security features and its status as the \"world computer.\" Some users are eagerly awaiting the \"grand Eth Show\" and discussing the potential for Ethereum to make a big leap. Overall, sentiment seems bullish on Ethereum with experts forecasting prices soaring between $5,000 and $15,000 in the future.","data":[10,4,4,9,6,1,6,11,4,2,5,4,6,5,2,97,16,5,7,13,4,3,5,15,8,5,2,6,17,18,13,4,5,0,2,6,4,12,12,8,7,8,2,10,5,8,6,7,5,4,9,13,4,9,4]},{"label":"Happy New Year","topics":"happy,year,new,2025,heres","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Happy New Year wishes and celebrations for 2025\n2. Achievements and milestones reached in the past year\n3. Partnerships and collaborations within the industry\n4. Reflection on personal goals and resolutions for the new year\n5. Gratitude towards the community and supporters\n6. Excitement for upcoming events and developments in the industry\n7. Updates on airdrops and giveaways\n8. Success stories and achievements of individuals or teams\n9. Encouragement for a strong start to the new year\n10. Promotions and announcements for new projects or initiatives.","data":[0,1,1,4,1,1,5,3,3,8,2,1,0,1,1,3,1,0,3,3,1,1,273,2,3,2,3,1,4,3,1,3,1,3,50,2,1,1,2,8,1,3,0,1,2,10,0,1,0,3,1,1,1,18,3]},{"label":"Memecoins","topics":"meme,memecoin,memes,coins,coin","description":"The key topics currently being discussed in the crypto industry on social media include memecoins, meme investing, meme communities, and meme funds. Some specific memecoins mentioned are $MEMEFI and Moonshot. There is also discussion about the popularity and potential of memecoins in the future, with a focus on creativity and opportunities in the crypto space. Additionally, there is mention of a new twist to Web3 gaming with $MEMEFI, which allows users to invest in players and earn from their success in a universe of memes, rewards, and chaos. Overall, memecoins and meme-related topics seem to be a prominent theme in the crypto community on social media.","data":[3,1,3,5,12,2,4,8,14,7,6,6,5,16,4,2,7,7,3,4,13,11,3,4,5,3,11,4,10,8,10,84,5,5,5,5,7,3,4,6,6,10,4,6,8,7,7,7,6,3,1,6,7,4,8]},{"label":"Tether","topics":"tether,fud,usdt,eu,europe","description":"Based on the messages from Twitter, it seems that there is a lot of discussion and controversy surrounding Tether (USDT) and its compliance with EU regulations. Some key points to note include:\n\n- Tether is not flagged as non-compliant by EU regulators and is not illegal in the EU.\n- There are concerns about Tether's transparency regarding its reserves and legal issues.\n- The T3 Financial Crime Unit, a collaboration between TRON, Tether, and TRM Labs, has frozen over $100 million in criminal assets globally.\n- There is speculation about Tether's future and potential impact on the crypto market.\n- MiCA regulations in the EU are set for full implementation in December 2024, which may impact Tether's operations.\n- Some exchanges are delisting Tether due to concerns about compliance with regulations.\n- Despite the FUD (fear, uncertainty, doubt) circulating around Tether, it is important to separate facts from speculation and analyze visible data.\n\nOverall, the situation with Tether and its compliance with regulations is complex and evolving, with various stakeholders closely monitoring developments in the crypto industry.","data":[16,0,4,14,3,0,6,7,7,3,5,2,5,6,2,5,9,5,7,2,6,4,2,3,7,5,5,9,3,9,7,1,4,2,1,5,5,4,5,7,12,5,11,1,2,5,9,70,6,4,6,11,3,1,2]},{"label":"Art","topics":"art,artists,collecting,collection,love","description":"The key topics currently discussed in the crypto industry on social media include:\n- The value and appreciation of art in the crypto space\n- The use of blockchain technology for art ownership and preservation\n- The intersection of technology and art, such as using the Marangoni effect to create art\n- The importance of storytelling and connecting with the art being collected\n- The excitement and satisfaction of collecting unique and rare art pieces in the crypto space\n\nOverall, the discussions on social media highlight the growing interest and innovation in the intersection of art and technology within the crypto industry.","data":[6,2,55,10,1,0,2,1,1,4,13,5,8,7,3,7,3,11,5,3,3,6,1,7,3,5,4,4,7,12,3,4,8,4,4,5,10,0,9,3,4,3,12,4,4,3,3,3,4,0,3,3,3,2,4]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media platforms include GameFi tokens, blockchain gaming in 2025, decentralized media companies, Web3 gaming, and specific gaming projects such as Genopets, Mercenary Battlegrounds, and Alien Worlds. There is also a focus on the potential of certain GameFi tokens in 2025 and the evolution of gaming ecosystems towards decentralization and community-driven initiatives. Additionally, there is mention of specific gaming companies like Nintendo and trends such as the consolidation of chains and infrastructure in blockchain gaming. Overall, the discussions highlight the growing interest and innovation in the intersection of cryptocurrency and gaming.","data":[2,1,3,7,3,0,3,3,4,5,4,6,3,2,5,1,6,8,3,50,6,8,0,1,2,6,3,4,4,2,2,4,1,3,5,5,16,8,4,3,3,5,5,2,4,2,6,5,5,0,4,3,7,3,5]},{"label":"DOGE","topics":"doge,dogecoin,cycle,32,days","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Dogecoin (DOGE) being cool and popular among influential figures like Elon Musk\n2. Speculation on the potential growth and adoption of Dogecoin\n3. Mining multiple cryptocurrencies simultaneously, including Dogecoin\n4. Price analysis and predictions for Dogecoin and Ethereum\n5. Strategies for earning cashback with BlockDAG's Refer & Earn system\n6. Personal anecdotes about using savings from cheaper gas prices to invest in Dogecoin\n\nOverall, the sentiment surrounding Dogecoin appears to be positive and optimistic, with discussions focusing on its potential for growth and adoption in the future.","data":[3,0,2,3,2,0,2,0,5,4,1,1,9,4,90,1,9,0,4,4,3,2,0,7,3,6,4,3,2,4,2,1,5,1,3,1,6,6,1,6,3,3,3,2,2,4,3,5,4,1,2,0,2,4,1]},{"label":"SOL","topics":"solana,sol,etf,eth,vs","description":"The messages from Twitter indicate a lot of discussion and excitement surrounding Solana (SOL) and its ecosystem. Key topics being discussed include the potential for Solana to surpass Ethereum (ETH), the surge in stablecoin activity on the Solana network, the potential for a Solana ETF approval in 2025, price predictions for SOL reaching $300, and the use of Solana for NFT lending and trading. Additionally, there is mention of Solana's growth in user activity and the development of compressed NFTs to lower costs and boost scalability. Overall, the sentiment around Solana appears to be positive and optimistic about its future prospects in the crypto industry.","data":[9,1,6,2,1,0,7,6,4,5,2,1,2,1,7,7,3,3,2,3,1,3,1,4,4,4,5,11,6,4,4,2,5,3,2,3,2,10,7,3,3,1,4,27,3,3,4,2,4,2,6,10,3,2,2]},{"label":"BTC Mining","topics":"mining,energy,miners,clean,revenue","description":"The key topics currently discussed in the messages from Twitter about the crypto industry include:\n1. Bitcoin mining using hydroelectric power in Ethiopia, generating significant revenue and contributing to the country's income.\n2. Impact of Bitcoin mining on energy consumption and utilization of renewable energy sources.\n3. Comparison of mining costs between different companies and countries.\n4. Bitcoin transaction fees and fee structure.\n5. Partnership between BitFuFuOfficial and BITMAINtech for acquiring mining hardware.\n6. Bitcoin mining difficulty and hash rate adjustments.\n7. CleanSpark's Bitcoin transactions and holdings in their cold wallet.\n8. Regulatory challenges and tax revenue issues in countries like Kyrgyzstan.\n9. Potential for using Bitcoin mining to boost economic sovereignty and reduce reliance on traditional financial institutions.\n10. Discussion on the efficiency and sustainability of Bitcoin mining operations.","data":[7,1,2,0,12,32,5,3,2,6,8,1,0,2,3,4,1,2,3,1,2,5,1,6,7,6,4,3,5,4,2,23,6,4,2,2,0,1,4,2,7,3,2,2,1,1,3,2,2,8,6,4,1,4,1]},{"label":"PEPE","topics":"pepe,frens,vip,coin,pfp","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. $PEPE hitting a $50 billion market cap during this bull run.\n2. The original Pepe from 1988, @elsapopepe_meme, planning to be listed on cryptocurrency exchanges.\n3. Potential pump and dump scenarios with Pepe coin.\n4. Comparison of $APU to $PEPE as Shiba was to Doge in the previous cycle.\n5. Speculation on Elon Musk's involvement and its impact on the bullish move for $PEPE.\n6. Discussion on the growth potential of $PEPE compared to other meme coins like $ANDY and $WOLF.\n7. Announcement of an upcoming AMA with various crypto influencers to discuss $PEPE and 2025 meme coin predictions.\n\nOverall, the messages reflect a mix of excitement, speculation, and analysis surrounding the $PEPE cryptocurrency and its potential future growth in the crypto industry.","data":[2,0,4,1,1,0,7,0,5,9,8,1,2,5,3,4,1,4,10,1,3,2,2,7,2,0,2,5,3,3,1,5,2,6,2,3,39,4,3,2,1,2,0,3,2,2,3,2,6,4,0,5,0,5,0]},{"label":"DeFi","topics":"defi,finance,tvl,protocols,future","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. Authentic Key Opinion Leaders (KOLs) earning significant amounts through airdrops.\n2. Building a brand in the crypto space with a sustainable DeFi economy and strong POL strategy.\n3. ShadeDAO setting the standard for long-term success in the DeFi space.\n4. Layer 2 protocols enabling widespread adoption of decentralized finance (DeFi).\n5. Abstracting DeFi for easier capital gains calculations and deployment decisions.\n6. EOSI Finance revolutionizing proprietary trading through AI and ML technologies.\n7. Integration of Bad Idea AI's $BAD token in the Crypto.com wallet ecosystem for seamless access to DeFi offerings.\n8. Regenerative Finance (ReFi) and its blockchain approach to sustainability.\n9. Smart Contracts as the backbone of DeFi for trustless, automated transactions.\n10. Revolutionizing access to crypto finance by combining CeFi and DeFi on one platform.\n11. Finance conference in Hong Kong in March 2025 discussing the future of Fintech.","data":[2,2,1,5,4,1,1,4,1,1,3,3,1,14,5,7,4,6,1,5,0,5,1,2,1,5,3,2,0,1,4,0,3,2,1,4,2,1,21,4,5,4,2,3,3,10,4,1,2,5,2,2,3,4,4]},{"label":"ETF Flows","topics":"etfs,net,inflows,etf,spot","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Bitcoin ETFs and their flows. There have been significant outflows reported, with some days seeing over $1 billion in outflows. However, there have also been days where inflows have been recorded, particularly in Ethereum ETFs. This indicates a shift in investor sentiment and interest towards different cryptocurrencies. It is important to note that different ETFs have experienced varying levels of inflows and outflows, with BlackRock's IBIT ETF seeing the largest inflows in December. Overall, the market seems to be experiencing volatility and uncertainty, with investors closely monitoring the ETF flows to make informed decisions.","data":[2,0,0,1,7,1,2,0,4,0,1,2,6,1,1,32,8,0,2,0,0,4,0,3,1,2,3,2,2,2,1,0,4,3,2,0,0,3,3,1,0,1,2,3,25,0,4,0,2,4,0,3,1,3,0]},{"label":"XRP","topics":"xrp,ripple,cryptocurrency,altcoins,price","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. XRP meme coins and their perceived resistance to rug pulls due to community support for the technology and space advancement.\n2. Speculation on the outcome of the Ripple-SEC case, with suggestions that the SEC could drop the case amid backlash.\n3. XRP reclaiming its position as the 3rd largest cryptocurrency by market cap, surpassing Tether.\n4. Predictions of a price surge for XRP in 2025, along with updates on other cryptocurrencies like Ethereum and Yeti Ouro.\n5. Analyst recommendations to investors to consider XRP's potential for an explosive rally.\n6. Speculation on whether XRP will skyrocket in 2025, with the possibility of an ETF approval from Ripple.\n7. Discussion on the similarities between Ripple and Stellar, and their shared DNA in the multi-chain world.\n8. XRP's recent surge amid positive market sentiment and network activity spikes.\n9. Analysis of XRP's current state, price movements, and key support/resistance levels.\n10. Price testing and consolidation of XRP around the $2 support level, with potential for breakout or dip in the future.","data":[4,0,5,2,3,0,0,4,2,1,1,3,1,1,1,1,4,1,4,1,3,0,0,4,1,2,3,2,1,4,3,0,4,0,1,2,4,19,3,3,5,5,2,7,0,3,9,4,0,4,2,4,0,1,2]},{"label":"KEKIUS","topics":"kekius,elon,profile,elonmusk,changed","description":"The key topic discussed in the messages from twitter is the rise of the meme coin KEKIUS after Elon Musk changed his username and profile picture to \"Kekius Maximus.\" The coin soared in value, with some traders making significant profits. There is also mention of a potential new meme coin called DOGIUS launching soon, with expectations of similar success. Overall, the messages reflect excitement and interest in meme coins and their potential for high returns in the crypto industry.","data":[3,2,2,1,1,0,3,0,0,18,2,2,2,2,0,8,1,4,0,3,3,1,0,3,2,0,9,5,3,0,4,3,2,4,1,3,3,2,3,4,1,1,1,4,3,4,6,0,0,3,5,4,1,2,2]},{"label":"IRS plans to classify DeFi as brokers","topics":"tax,defi,rules,rule,regulations","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. IRS and Treasury finalizing DeFi broker regulations, with market experts criticizing the overreach and lack of understanding of on-chain transactions.\n2. Support from a16z Crypto for lawsuits against the IRS and Treasury Department for exceeding statutory authority and being unconstitutional in their threats towards DeFi.\n3. The Corporate Transparency Act requiring disclosure of beneficial ownership information to FinCEN starting in 2024.\n4. Concerns about the US Treasury being hacked in a major Chinese cyberattack.\n5. Criticism of the IRS rule requiring DeFi front-ends to KYC users starting in 2027, with calls for it to be struck down.\n6. The classification of DeFi as brokers by the IRS, mandating KYC and tax reporting, potentially impacting platforms like Uniswap and MetaMask.\n7. The finalized DeFi tax reporting rule by the IRS, requiring platforms to KYC users and track all digital asset sales by 2027.\n8. Discussion on countries with GST and their rates on health insurance.","data":[3,0,0,1,1,3,5,2,0,2,1,5,2,7,1,0,2,13,2,0,2,2,1,0,1,7,1,5,1,3,5,1,1,4,2,2,1,0,2,1,7,5,0,2,1,2,10,4,2,2,5,0,3,1,3]},{"label":"HYPE","topics":"hyperliquid,hype,staking,stake,hyperliquidx","description":"The key topic discussed in the messages from Twitter is the launch of HYPE token staking on the HyperLiquid blockchain's mainnet. Users are excited about the opportunity to stake their HYPE tokens and earn rewards while also boosting network security and decentralization. Validators are actively participating in the staking process, and there is a sense of community loyalty and excitement surrounding the staking feature. Additionally, there is discussion about the price movement of the HYPE token and potential trading strategies related to staking. Overall, the introduction of staking on the HyperLiquid blockchain is seen as a significant milestone for the project.","data":[1,1,1,2,0,0,4,0,0,5,0,0,2,2,1,0,3,2,1,0,1,1,0,1,30,2,0,1,3,0,0,0,0,3,0,3,3,0,1,3,0,0,4,0,11,3,0,0,1,1,2,3,0,1,0]},{"label":"NFT","topics":"nfts,nft,collections,collection,projects","description":"The key topics discussed in the messages from twitter about NFT projects include the importance of communication with the community, the potential for generational wealth through NFTs, the launch of new NFT projects like Hoard by Kittypunch, the value proposition of NFT projects on ApeChain, the impact of NFT sales on tax burdens, the potential for future token drops in NFTs, and the development of new tools like ERC721ex to boost community hype around NFT collections. Additionally, there is a mention of Stashh redefining the NFT experience and the need for founders to prioritize building a strong community for their NFT projects.","data":[1,1,1,3,1,0,2,1,4,1,7,0,0,4,1,2,2,4,2,0,3,2,1,3,3,5,0,3,1,1,1,1,1,1,11,0,0,1,3,4,1,1,1,1,0,1,1,1,2,1,2,1,3,0,1]},{"label":"APE","topics":"ape,pfp,apechain,card,bored","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n- ApeChain and the acquisition of a GeezOnApe for $12K USD\n- The removal of the word Bayc from the Apes on Ape collection\n- Generative Chimpers implementing a carousel of images on marketplaces\n- The value and impact of Chimpers in the NFT space\n- The success and uniqueness of the DegenToonz PFP collection on ApeChain\n- The popularity and value of Gobs on Apecoin\n- The role of ApeChain in kicking off the NFT bull run\n- The appreciation of Chimpers by art collectors and the pixel art by TimpersHD\n- The strong community and limited supply of Chimpers NFTs\n\nOverall, the discussions revolve around the growth, value, and uniqueness of various NFT collections within the crypto industry, highlighting the importance of community, artistry, and rarity in driving interest and value in the market.","data":[1,0,4,3,0,0,4,0,3,12,2,4,1,1,1,0,1,0,0,2,2,0,1,4,4,0,4,0,2,2,0,2,2,1,5,2,5,1,2,0,0,1,2,2,1,1,2,0,2,2,0,2,0,0,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-52.ts b/priv/repo/major_topics_seed/data-52.ts deleted file mode 100644 index 6892a3b23c..0000000000 --- a/priv/repo/major_topics_seed/data-52.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '26.12.24', - '27.12.24', - '27.12.24', - '27.12.24', - '27.12.24', - '27.12.24', - '27.12.24', - '27.12.24', - '28.12.24', - '28.12.24', - '28.12.24', - '28.12.24', - '28.12.24', - '28.12.24', - '28.12.24', - '28.12.24', - '29.12.24', - '29.12.24', - '29.12.24', - '29.12.24', - '29.12.24', - '29.12.24', - '29.12.24', - '29.12.24', - '30.12.24', - '30.12.24', - '30.12.24', - '30.12.24', - '30.12.24', - '30.12.24', - '30.12.24', - '30.12.24', - '31.12.24', - '31.12.24', - '31.12.24', - '31.12.24', - '31.12.24', - '31.12.24', - '31.12.24', - '31.12.24', - '01.01.25', - '01.01.25', - '01.01.25', - '01.01.25', - '01.01.25', - '01.01.25', - '01.01.25', - '01.01.25', - '02.01.25', - '02.01.25', - '02.01.25', - '02.01.25', - '02.01.25', - '02.01.25', - '02.01.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,ai16z,virtuals', - description: - 'Based on the messages from Twitter, it is evident that the crypto industry is heavily focused on the integration of AI technology. The messages discuss how AI is revolutionizing various aspects of the industry, such as solving real problems, enhancing user interactions, and improving operational efficiency. There is also a mention of AI agents collecting crypto art made by humans, showcasing the potential for AI to play a significant role in the art market.\n\nFurthermore, the messages highlight the importance of partnerships in the industry, with a focus on decentralized AI verticals and engaging with enterprise customers for AI/ML at scale. This indicates a growing trend towards collaboration and innovation within the crypto space.\n\nOverall, the messages reflect a positive outlook on the future of AI in the crypto industry, with a strong emphasis on its potential to drive growth, efficiency, and innovation.', - data: [ - 71, 379, 37, 44, 25, 0, 24, 39, 33, 27, 46, 41, 28, 40, 30, 30, 34, 35, 19, 44, 48, 32, 14, - 39, 46, 57, 36, 46, 29, 38, 27, 39, 45, 6, 21, 40, 31, 27, 45, 44, 34, 39, 48, 34, 31, 24, - 47, 41, 44, 25, 31, 56, 39, 26, 41, - ], - }, - { - label: 'BTC', - topics: 'fiat,bitcoin,money,understand,dont', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n1. The value and importance of Bitcoin as a fixed monetary instrument in a digital-first world.\n2. Criticism and resilience of Bitcoin over the years.\n3. Calls to end the fiat banking system in favor of Bitcoin.\n4. Concerns about scammers and white collar criminals in the Bitcoin community.\n5. Contrasting views on the value of companies based on their ability to generate a positive Bitcoin yield.\n6. A comparison between the inflationary nature of the dollar and the growth of Bitcoin.\n7. The power of network effects in making assets like Bitcoin culturally valuable.\n8. The potential impact of Bitcoin on traditional financial systems and societal norms.', - data: [ - 7, 2, 4, 7, 22, 60, 8, 1, 21, 8, 8, 10, 5, 10, 9, 4, 7, 11, 6, 7, 9, 4, 7, 14, 12, 10, 10, - 4, 6, 8, 11, 7, 7, 5, 5, 8, 13, 8, 3, 6, 5, 19, 9, 12, 10, 12, 14, 11, 6, 12, 28, 7, 7, 5, - 1, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,q1,longterm,classic', - description: - 'The key topics currently being discussed on Twitter regarding Ethereum include price predictions for 2025, potential for reaching $10k within the next 8-12 months, a surge in financing rates indicating increasing long positions, and the possibility of a rebound to $4,000 if buying momentum sustains. Additionally, there is excitement around Ethereum\'s security features and its status as the "world computer." Some users are eagerly awaiting the "grand Eth Show" and discussing the potential for Ethereum to make a big leap. Overall, sentiment seems bullish on Ethereum with experts forecasting prices soaring between $5,000 and $15,000 in the future.', - data: [ - 10, 4, 4, 9, 6, 1, 6, 11, 4, 2, 5, 4, 6, 5, 2, 97, 16, 5, 7, 13, 4, 3, 5, 15, 8, 5, 2, 6, - 17, 18, 13, 4, 5, 0, 2, 6, 4, 12, 12, 8, 7, 8, 2, 10, 5, 8, 6, 7, 5, 4, 9, 13, 4, 9, 4, - ], - }, - { - label: 'Happy New Year', - topics: 'happy,year,new,2025,heres', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Happy New Year wishes and celebrations for 2025\n2. Achievements and milestones reached in the past year\n3. Partnerships and collaborations within the industry\n4. Reflection on personal goals and resolutions for the new year\n5. Gratitude towards the community and supporters\n6. Excitement for upcoming events and developments in the industry\n7. Updates on airdrops and giveaways\n8. Success stories and achievements of individuals or teams\n9. Encouragement for a strong start to the new year\n10. Promotions and announcements for new projects or initiatives.', - data: [ - 0, 1, 1, 4, 1, 1, 5, 3, 3, 8, 2, 1, 0, 1, 1, 3, 1, 0, 3, 3, 1, 1, 273, 2, 3, 2, 3, 1, 4, 3, - 1, 3, 1, 3, 50, 2, 1, 1, 2, 8, 1, 3, 0, 1, 2, 10, 0, 1, 0, 3, 1, 1, 1, 18, 3, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coins,coin', - description: - 'The key topics currently being discussed in the crypto industry on social media include memecoins, meme investing, meme communities, and meme funds. Some specific memecoins mentioned are $MEMEFI and Moonshot. There is also discussion about the popularity and potential of memecoins in the future, with a focus on creativity and opportunities in the crypto space. Additionally, there is mention of a new twist to Web3 gaming with $MEMEFI, which allows users to invest in players and earn from their success in a universe of memes, rewards, and chaos. Overall, memecoins and meme-related topics seem to be a prominent theme in the crypto community on social media.', - data: [ - 3, 1, 3, 5, 12, 2, 4, 8, 14, 7, 6, 6, 5, 16, 4, 2, 7, 7, 3, 4, 13, 11, 3, 4, 5, 3, 11, 4, - 10, 8, 10, 84, 5, 5, 5, 5, 7, 3, 4, 6, 6, 10, 4, 6, 8, 7, 7, 7, 6, 3, 1, 6, 7, 4, 8, - ], - }, - { - label: 'Tether', - topics: 'tether,fud,usdt,eu,europe', - description: - "Based on the messages from Twitter, it seems that there is a lot of discussion and controversy surrounding Tether (USDT) and its compliance with EU regulations. Some key points to note include:\n\n- Tether is not flagged as non-compliant by EU regulators and is not illegal in the EU.\n- There are concerns about Tether's transparency regarding its reserves and legal issues.\n- The T3 Financial Crime Unit, a collaboration between TRON, Tether, and TRM Labs, has frozen over $100 million in criminal assets globally.\n- There is speculation about Tether's future and potential impact on the crypto market.\n- MiCA regulations in the EU are set for full implementation in December 2024, which may impact Tether's operations.\n- Some exchanges are delisting Tether due to concerns about compliance with regulations.\n- Despite the FUD (fear, uncertainty, doubt) circulating around Tether, it is important to separate facts from speculation and analyze visible data.\n\nOverall, the situation with Tether and its compliance with regulations is complex and evolving, with various stakeholders closely monitoring developments in the crypto industry.", - data: [ - 16, 0, 4, 14, 3, 0, 6, 7, 7, 3, 5, 2, 5, 6, 2, 5, 9, 5, 7, 2, 6, 4, 2, 3, 7, 5, 5, 9, 3, 9, - 7, 1, 4, 2, 1, 5, 5, 4, 5, 7, 12, 5, 11, 1, 2, 5, 9, 70, 6, 4, 6, 11, 3, 1, 2, - ], - }, - { - label: 'Art', - topics: 'art,artists,collecting,collection,love', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- The value and appreciation of art in the crypto space\n- The use of blockchain technology for art ownership and preservation\n- The intersection of technology and art, such as using the Marangoni effect to create art\n- The importance of storytelling and connecting with the art being collected\n- The excitement and satisfaction of collecting unique and rare art pieces in the crypto space\n\nOverall, the discussions on social media highlight the growing interest and innovation in the intersection of art and technology within the crypto industry.', - data: [ - 6, 2, 55, 10, 1, 0, 2, 1, 1, 4, 13, 5, 8, 7, 3, 7, 3, 11, 5, 3, 3, 6, 1, 7, 3, 5, 4, 4, 7, - 12, 3, 4, 8, 4, 4, 5, 10, 0, 9, 3, 4, 3, 12, 4, 4, 3, 3, 3, 4, 0, 3, 3, 3, 2, 4, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include GameFi tokens, blockchain gaming in 2025, decentralized media companies, Web3 gaming, and specific gaming projects such as Genopets, Mercenary Battlegrounds, and Alien Worlds. There is also a focus on the potential of certain GameFi tokens in 2025 and the evolution of gaming ecosystems towards decentralization and community-driven initiatives. Additionally, there is mention of specific gaming companies like Nintendo and trends such as the consolidation of chains and infrastructure in blockchain gaming. Overall, the discussions highlight the growing interest and innovation in the intersection of cryptocurrency and gaming.', - data: [ - 2, 1, 3, 7, 3, 0, 3, 3, 4, 5, 4, 6, 3, 2, 5, 1, 6, 8, 3, 50, 6, 8, 0, 1, 2, 6, 3, 4, 4, 2, - 2, 4, 1, 3, 5, 5, 16, 8, 4, 3, 3, 5, 5, 2, 4, 2, 6, 5, 5, 0, 4, 3, 7, 3, 5, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,cycle,32,days', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Dogecoin (DOGE) being cool and popular among influential figures like Elon Musk\n2. Speculation on the potential growth and adoption of Dogecoin\n3. Mining multiple cryptocurrencies simultaneously, including Dogecoin\n4. Price analysis and predictions for Dogecoin and Ethereum\n5. Strategies for earning cashback with BlockDAG's Refer & Earn system\n6. Personal anecdotes about using savings from cheaper gas prices to invest in Dogecoin\n\nOverall, the sentiment surrounding Dogecoin appears to be positive and optimistic, with discussions focusing on its potential for growth and adoption in the future.", - data: [ - 3, 0, 2, 3, 2, 0, 2, 0, 5, 4, 1, 1, 9, 4, 90, 1, 9, 0, 4, 4, 3, 2, 0, 7, 3, 6, 4, 3, 2, 4, - 2, 1, 5, 1, 3, 1, 6, 6, 1, 6, 3, 3, 3, 2, 2, 4, 3, 5, 4, 1, 2, 0, 2, 4, 1, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,etf,eth,vs', - description: - "The messages from Twitter indicate a lot of discussion and excitement surrounding Solana (SOL) and its ecosystem. Key topics being discussed include the potential for Solana to surpass Ethereum (ETH), the surge in stablecoin activity on the Solana network, the potential for a Solana ETF approval in 2025, price predictions for SOL reaching $300, and the use of Solana for NFT lending and trading. Additionally, there is mention of Solana's growth in user activity and the development of compressed NFTs to lower costs and boost scalability. Overall, the sentiment around Solana appears to be positive and optimistic about its future prospects in the crypto industry.", - data: [ - 9, 1, 6, 2, 1, 0, 7, 6, 4, 5, 2, 1, 2, 1, 7, 7, 3, 3, 2, 3, 1, 3, 1, 4, 4, 4, 5, 11, 6, 4, - 4, 2, 5, 3, 2, 3, 2, 10, 7, 3, 3, 1, 4, 27, 3, 3, 4, 2, 4, 2, 6, 10, 3, 2, 2, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,energy,miners,clean,revenue', - description: - "The key topics currently discussed in the messages from Twitter about the crypto industry include:\n1. Bitcoin mining using hydroelectric power in Ethiopia, generating significant revenue and contributing to the country's income.\n2. Impact of Bitcoin mining on energy consumption and utilization of renewable energy sources.\n3. Comparison of mining costs between different companies and countries.\n4. Bitcoin transaction fees and fee structure.\n5. Partnership between BitFuFuOfficial and BITMAINtech for acquiring mining hardware.\n6. Bitcoin mining difficulty and hash rate adjustments.\n7. CleanSpark's Bitcoin transactions and holdings in their cold wallet.\n8. Regulatory challenges and tax revenue issues in countries like Kyrgyzstan.\n9. Potential for using Bitcoin mining to boost economic sovereignty and reduce reliance on traditional financial institutions.\n10. Discussion on the efficiency and sustainability of Bitcoin mining operations.", - data: [ - 7, 1, 2, 0, 12, 32, 5, 3, 2, 6, 8, 1, 0, 2, 3, 4, 1, 2, 3, 1, 2, 5, 1, 6, 7, 6, 4, 3, 5, 4, - 2, 23, 6, 4, 2, 2, 0, 1, 4, 2, 7, 3, 2, 2, 1, 1, 3, 2, 2, 8, 6, 4, 1, 4, 1, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frens,vip,coin,pfp', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. $PEPE hitting a $50 billion market cap during this bull run.\n2. The original Pepe from 1988, @elsapopepe_meme, planning to be listed on cryptocurrency exchanges.\n3. Potential pump and dump scenarios with Pepe coin.\n4. Comparison of $APU to $PEPE as Shiba was to Doge in the previous cycle.\n5. Speculation on Elon Musk's involvement and its impact on the bullish move for $PEPE.\n6. Discussion on the growth potential of $PEPE compared to other meme coins like $ANDY and $WOLF.\n7. Announcement of an upcoming AMA with various crypto influencers to discuss $PEPE and 2025 meme coin predictions.\n\nOverall, the messages reflect a mix of excitement, speculation, and analysis surrounding the $PEPE cryptocurrency and its potential future growth in the crypto industry.", - data: [ - 2, 0, 4, 1, 1, 0, 7, 0, 5, 9, 8, 1, 2, 5, 3, 4, 1, 4, 10, 1, 3, 2, 2, 7, 2, 0, 2, 5, 3, 3, - 1, 5, 2, 6, 2, 3, 39, 4, 3, 2, 1, 2, 0, 3, 2, 2, 3, 2, 6, 4, 0, 5, 0, 5, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,tvl,protocols,future', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n1. Authentic Key Opinion Leaders (KOLs) earning significant amounts through airdrops.\n2. Building a brand in the crypto space with a sustainable DeFi economy and strong POL strategy.\n3. ShadeDAO setting the standard for long-term success in the DeFi space.\n4. Layer 2 protocols enabling widespread adoption of decentralized finance (DeFi).\n5. Abstracting DeFi for easier capital gains calculations and deployment decisions.\n6. EOSI Finance revolutionizing proprietary trading through AI and ML technologies.\n7. Integration of Bad Idea AI's $BAD token in the Crypto.com wallet ecosystem for seamless access to DeFi offerings.\n8. Regenerative Finance (ReFi) and its blockchain approach to sustainability.\n9. Smart Contracts as the backbone of DeFi for trustless, automated transactions.\n10. Revolutionizing access to crypto finance by combining CeFi and DeFi on one platform.\n11. Finance conference in Hong Kong in March 2025 discussing the future of Fintech.", - data: [ - 2, 2, 1, 5, 4, 1, 1, 4, 1, 1, 3, 3, 1, 14, 5, 7, 4, 6, 1, 5, 0, 5, 1, 2, 1, 5, 3, 2, 0, 1, - 4, 0, 3, 2, 1, 4, 2, 1, 21, 4, 5, 4, 2, 3, 3, 10, 4, 1, 2, 5, 2, 2, 3, 4, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,net,inflows,etf,spot', - description: - "Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Bitcoin ETFs and their flows. There have been significant outflows reported, with some days seeing over $1 billion in outflows. However, there have also been days where inflows have been recorded, particularly in Ethereum ETFs. This indicates a shift in investor sentiment and interest towards different cryptocurrencies. It is important to note that different ETFs have experienced varying levels of inflows and outflows, with BlackRock's IBIT ETF seeing the largest inflows in December. Overall, the market seems to be experiencing volatility and uncertainty, with investors closely monitoring the ETF flows to make informed decisions.", - data: [ - 2, 0, 0, 1, 7, 1, 2, 0, 4, 0, 1, 2, 6, 1, 1, 32, 8, 0, 2, 0, 0, 4, 0, 3, 1, 2, 3, 2, 2, 2, - 1, 0, 4, 3, 2, 0, 0, 3, 3, 1, 0, 1, 2, 3, 25, 0, 4, 0, 2, 4, 0, 3, 1, 3, 0, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,cryptocurrency,altcoins,price', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. XRP meme coins and their perceived resistance to rug pulls due to community support for the technology and space advancement.\n2. Speculation on the outcome of the Ripple-SEC case, with suggestions that the SEC could drop the case amid backlash.\n3. XRP reclaiming its position as the 3rd largest cryptocurrency by market cap, surpassing Tether.\n4. Predictions of a price surge for XRP in 2025, along with updates on other cryptocurrencies like Ethereum and Yeti Ouro.\n5. Analyst recommendations to investors to consider XRP's potential for an explosive rally.\n6. Speculation on whether XRP will skyrocket in 2025, with the possibility of an ETF approval from Ripple.\n7. Discussion on the similarities between Ripple and Stellar, and their shared DNA in the multi-chain world.\n8. XRP's recent surge amid positive market sentiment and network activity spikes.\n9. Analysis of XRP's current state, price movements, and key support/resistance levels.\n10. Price testing and consolidation of XRP around the $2 support level, with potential for breakout or dip in the future.", - data: [ - 4, 0, 5, 2, 3, 0, 0, 4, 2, 1, 1, 3, 1, 1, 1, 1, 4, 1, 4, 1, 3, 0, 0, 4, 1, 2, 3, 2, 1, 4, 3, - 0, 4, 0, 1, 2, 4, 19, 3, 3, 5, 5, 2, 7, 0, 3, 9, 4, 0, 4, 2, 4, 0, 1, 2, - ], - }, - { - label: 'KEKIUS', - topics: 'kekius,elon,profile,elonmusk,changed', - description: - 'The key topic discussed in the messages from twitter is the rise of the meme coin KEKIUS after Elon Musk changed his username and profile picture to "Kekius Maximus." The coin soared in value, with some traders making significant profits. There is also mention of a potential new meme coin called DOGIUS launching soon, with expectations of similar success. Overall, the messages reflect excitement and interest in meme coins and their potential for high returns in the crypto industry.', - data: [ - 3, 2, 2, 1, 1, 0, 3, 0, 0, 18, 2, 2, 2, 2, 0, 8, 1, 4, 0, 3, 3, 1, 0, 3, 2, 0, 9, 5, 3, 0, - 4, 3, 2, 4, 1, 3, 3, 2, 3, 4, 1, 1, 1, 4, 3, 4, 6, 0, 0, 3, 5, 4, 1, 2, 2, - ], - }, - { - label: 'IRS plans to classify DeFi as brokers', - topics: 'tax,defi,rules,rule,regulations', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. IRS and Treasury finalizing DeFi broker regulations, with market experts criticizing the overreach and lack of understanding of on-chain transactions.\n2. Support from a16z Crypto for lawsuits against the IRS and Treasury Department for exceeding statutory authority and being unconstitutional in their threats towards DeFi.\n3. The Corporate Transparency Act requiring disclosure of beneficial ownership information to FinCEN starting in 2024.\n4. Concerns about the US Treasury being hacked in a major Chinese cyberattack.\n5. Criticism of the IRS rule requiring DeFi front-ends to KYC users starting in 2027, with calls for it to be struck down.\n6. The classification of DeFi as brokers by the IRS, mandating KYC and tax reporting, potentially impacting platforms like Uniswap and MetaMask.\n7. The finalized DeFi tax reporting rule by the IRS, requiring platforms to KYC users and track all digital asset sales by 2027.\n8. Discussion on countries with GST and their rates on health insurance.', - data: [ - 3, 0, 0, 1, 1, 3, 5, 2, 0, 2, 1, 5, 2, 7, 1, 0, 2, 13, 2, 0, 2, 2, 1, 0, 1, 7, 1, 5, 1, 3, - 5, 1, 1, 4, 2, 2, 1, 0, 2, 1, 7, 5, 0, 2, 1, 2, 10, 4, 2, 2, 5, 0, 3, 1, 3, - ], - }, - { - label: 'HYPE', - topics: 'hyperliquid,hype,staking,stake,hyperliquidx', - description: - "The key topic discussed in the messages from Twitter is the launch of HYPE token staking on the HyperLiquid blockchain's mainnet. Users are excited about the opportunity to stake their HYPE tokens and earn rewards while also boosting network security and decentralization. Validators are actively participating in the staking process, and there is a sense of community loyalty and excitement surrounding the staking feature. Additionally, there is discussion about the price movement of the HYPE token and potential trading strategies related to staking. Overall, the introduction of staking on the HyperLiquid blockchain is seen as a significant milestone for the project.", - data: [ - 1, 1, 1, 2, 0, 0, 4, 0, 0, 5, 0, 0, 2, 2, 1, 0, 3, 2, 1, 0, 1, 1, 0, 1, 30, 2, 0, 1, 3, 0, - 0, 0, 0, 3, 0, 3, 3, 0, 1, 3, 0, 0, 4, 0, 11, 3, 0, 0, 1, 1, 2, 3, 0, 1, 0, - ], - }, - { - label: 'NFT', - topics: 'nfts,nft,collections,collection,projects', - description: - 'The key topics discussed in the messages from twitter about NFT projects include the importance of communication with the community, the potential for generational wealth through NFTs, the launch of new NFT projects like Hoard by Kittypunch, the value proposition of NFT projects on ApeChain, the impact of NFT sales on tax burdens, the potential for future token drops in NFTs, and the development of new tools like ERC721ex to boost community hype around NFT collections. Additionally, there is a mention of Stashh redefining the NFT experience and the need for founders to prioritize building a strong community for their NFT projects.', - data: [ - 1, 1, 1, 3, 1, 0, 2, 1, 4, 1, 7, 0, 0, 4, 1, 2, 2, 4, 2, 0, 3, 2, 1, 3, 3, 5, 0, 3, 1, 1, 1, - 1, 1, 1, 11, 0, 0, 1, 3, 4, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 2, 1, 3, 0, 1, - ], - }, - { - label: 'APE', - topics: 'ape,pfp,apechain,card,bored', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n- ApeChain and the acquisition of a GeezOnApe for $12K USD\n- The removal of the word Bayc from the Apes on Ape collection\n- Generative Chimpers implementing a carousel of images on marketplaces\n- The value and impact of Chimpers in the NFT space\n- The success and uniqueness of the DegenToonz PFP collection on ApeChain\n- The popularity and value of Gobs on Apecoin\n- The role of ApeChain in kicking off the NFT bull run\n- The appreciation of Chimpers by art collectors and the pixel art by TimpersHD\n- The strong community and limited supply of Chimpers NFTs\n\nOverall, the discussions revolve around the growth, value, and uniqueness of various NFT collections within the crypto industry, highlighting the importance of community, artistry, and rarity in driving interest and value in the market.', - data: [ - 1, 0, 4, 3, 0, 0, 4, 0, 3, 12, 2, 4, 1, 1, 1, 0, 1, 0, 0, 2, 2, 0, 1, 4, 4, 0, 4, 0, 2, 2, - 0, 2, 2, 1, 5, 2, 5, 1, 2, 0, 0, 1, 2, 2, 1, 1, 2, 0, 2, 2, 0, 2, 0, 0, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-53.json b/priv/repo/major_topics_seed/data-53.json deleted file mode 100644 index 80a9f7b824..0000000000 --- a/priv/repo/major_topics_seed/data-53.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["02.01.25","03.01.25","03.01.25","03.01.25","03.01.25","03.01.25","03.01.25","03.01.25","04.01.25","04.01.25","04.01.25","04.01.25","04.01.25","04.01.25","04.01.25","04.01.25","05.01.25","05.01.25","05.01.25","05.01.25","05.01.25","05.01.25","05.01.25","05.01.25","06.01.25","06.01.25","06.01.25","06.01.25","06.01.25","06.01.25","06.01.25","06.01.25","07.01.25","07.01.25","07.01.25","07.01.25","07.01.25","07.01.25","07.01.25","07.01.25","08.01.25","08.01.25","08.01.25","08.01.25","08.01.25","08.01.25","08.01.25","08.01.25","09.01.25","09.01.25","09.01.25","09.01.25","09.01.25","09.01.25","09.01.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,human,humans","description":"The key topics currently discussed in the crypto industry on Twitter include the launch of AI agents tied to cryptocurrencies like $EMP and $KWEEN, the importance of integrity in AI development teams, the potential surge of AI coins on Binance, the emergence of AI agents as the largest crypto accounts on X, the rumored advancements in AI technology in Samsung's Galaxy S25, the performance of the AI sector in the crypto market, and the potential impact of $AKA and @play_Bloomverse on powering AI agents of the future. Additionally, there is discussion about the innovation and hype surrounding AI agents, the potential bubble in the AI agent market, and the development of AI-powered tools like Funnels Kickstart for digital marketing.","data":[86,300,22,25,22,0,13,36,13,30,39,36,33,21,16,21,13,21,18,32,41,39,25,27,40,32,33,41,26,44,25,25,29,20,9,28,24,27,38,43,36,19,30,20,28,17,27,46,47,30,20,19,37,23,29]},{"label":"BTC","topics":"bitcoin,fiat,money,understand,dont","description":"The key topics discussed in the messages from twitter about Bitcoin include:\n1. Understanding Bitcoin and the importance of self-custody\n2. Criticism and ignorance towards Bitcoin\n3. Hard forks and their impact on stacking more Bitcoin\n4. The increasing value of Bitcoin and its potential threat to fiat systems\n5. Holding Bitcoin as a way to build real wealth\n6. Empowerment of individuals through Bitcoin for secure money holding\n7. The struggle to reach $1 million per Bitcoin\n8. The importance of owning your private keys for Bitcoin ownership.","data":[9,1,16,19,60,134,17,16,31,10,10,19,18,18,7,15,18,14,24,13,25,20,21,20,17,19,21,14,16,23,13,23,33,9,8,14,27,14,18,16,29,24,26,30,20,23,18,20,25,7,25,27,18,23,20]},{"label":"Celebrating the 16th anniversary of BTC creation","topics":"genesis,block,16,satoshi,birthday","description":"The key topics currently being discussed on Twitter regarding the crypto industry are:\n1. Celebrating the 16th anniversary of Bitcoin's creation by Satoshi Nakamoto\n2. Reflection on Bitcoin's impact on individuals' lives and the world\n3. Discussion on Bitcoin's potential as sound money or digital property\n4. Emission reduction day for ERG cryptocurrency\n5. Milestone achievement of Kross Blockchain reaching its 2 millionth block\n6. Michael Saylor's early skepticism towards Bitcoin\n7. The significance of the Bitcoin Genesis Block Day\n8. Speculation on Bitcoin's future adoption and value\n9. Recognition of early Bitcoin supporters and believers\n10. Continued interest and engagement with Bitcoin and blockchain technology.","data":[11,1,7,8,9,15,14,2,1,12,2,0,7,23,6,0,4,3,4,8,10,2,104,4,3,2,5,5,2,2,0,7,1,4,1,6,2,1,3,2,4,2,8,0,4,4,2,6,2,23,16,1,0,2,74]},{"label":"SOL","topics":"solana,sol,scalability,quantum,developers","description":"Based on the messages from Twitter, it seems that there is a lot of excitement and discussion around the Solana ($SOL) cryptocurrency. Users are talking about trading Ethereum ($ETH) for Solana, participating in various programs like the BNSOL Super Stake, and the potential for significant gains in investment. There is also mention of AI agent tokens and the role of Solana in their success stories. Additionally, there is news about Solana developers proposing new hashing systems to improve scalability issues on the network. Overall, the sentiment around Solana appears to be positive, with users enthusiastic about the potential for growth and innovation in the cryptocurrency space.","data":[6,5,5,11,8,0,9,12,7,17,13,4,6,3,11,6,12,7,8,8,4,6,2,6,5,10,8,9,7,7,7,3,6,6,9,11,4,3,13,8,2,14,5,4,51,5,15,6,7,4,4,11,5,4,6]},{"label":"GameFi","topics":"gaming,game,games,play,web3","description":"The key topics currently being discussed in the crypto gaming community on Twitter include:\n1. GameFi crypto gaming and the importance of fun games that don't feel like traditional crypto games.\n2. The potential impact of streamers and pro gamers on the gaming industry.\n3. Updates on major game launches on Solana and new games from Shiba Inu.\n4. Weekly leaderboard challenges in Mercenary Battlegrounds on Steam.\n5. The emergence of AI-powered gaming projects like $SOVRN and partnerships between Breeder DAO, SovrunOfficial, and Virtuals_io.\n6. Twitch games and live streaming events for gamers to win prizes.\n7. Thetan Arena Asian Tournament with a prize pool of 4000 THG and registration details.","data":[7,7,5,7,2,0,2,5,3,8,7,6,4,2,3,1,6,9,7,65,15,9,9,4,5,7,9,5,9,6,7,4,9,2,5,6,4,36,1,13,5,7,2,2,10,7,4,7,11,4,6,4,9,6,9]},{"label":"DOGE","topics":"dogecoin,doge,elonmusk,elon,69","description":"The key topics currently discussed in the crypto industry on Twitter include Dogecoin ($DOGE), Elon Musk's involvement in the crypto space, potential price movements and predictions for Dogecoin, the concept of stablecoins, meme coins such as WIF, POPCAT, and FWOG, and the overall excitement and anticipation surrounding the crypto market. There is also mention of technical analysis (TA) being used to predict market trends and make informed investment decisions. Additionally, the community seems to be divided between serious discussions about the future of crypto and more light-hearted, meme-driven content.","data":[2,1,3,2,3,0,1,7,4,6,5,0,6,4,142,7,3,2,3,6,3,4,3,14,2,6,8,6,7,4,6,5,11,3,5,5,3,2,9,4,1,3,1,4,1,3,2,7,6,2,1,4,7,7,3]},{"label":"Art","topics":"art,artists,artist,piece,collection","description":"The messages from Twitter are mainly discussing various aspects of art, including different art styles, the value of creativity, struggles with depression influencing art experiments, and the definition of computer art. Additionally, there is mention of generative art and NFTs in the context of photography. The messages also highlight specific art collections and artists within the crypto industry. Overall, the topic revolves around the intersection of art and technology within the crypto space.","data":[4,1,52,2,1,0,0,2,9,4,7,6,11,2,8,5,3,4,12,3,5,8,8,5,5,6,7,2,5,8,8,2,5,4,4,8,7,4,6,6,7,5,7,4,5,5,6,9,7,8,9,6,5,5,5]},{"label":"Memecoins","topics":"meme,memecoin,memes,coins,memecoins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, meme tokens, meme coin presales, meme coin exchanges, meme coin communities, meme coin projects, meme coin profitability, meme coin trading, meme coin scalability, meme coin uniqueness, meme coin history, meme coin market cap comparisons, meme coin governance, meme coin grassroots movements, meme coin organization, meme coin fun vs financial seriousness balance, meme coin intrinsic value, meme coin utility, and notable meme coin examples like Dogecoin and PEPE coin.","data":[5,2,2,6,2,2,2,5,5,2,2,5,6,2,10,1,2,14,4,4,6,11,2,5,2,1,2,2,6,10,5,75,5,3,10,5,9,2,3,5,5,2,7,5,3,5,7,2,8,6,7,1,6,4,4]},{"label":"BTC Price","topics":"100k,100000,hit,bitcoin,1000000","description":"The key topics currently discussed in the crypto industry on Twitter include Bitcoin reaching $100,000, speculation on whether Bitcoin will hit $50,000 or if an OpenSea airdrop will occur, Max Keiser suggesting a price of $2,200,000 per Bitcoin, Bitcoin crossing $100,000 for the first time in 2025, Bitcoin pulling back from $102.8k to $100.2k, and predictions of Bitcoin reaching $1,000,000 by the end of the current cycle. Overall, there is a mix of excitement, speculation, and price analysis surrounding Bitcoin in the social media discussions.","data":[0,1,5,4,24,45,7,8,6,0,4,2,6,0,0,7,4,2,5,1,11,2,4,24,4,5,4,1,3,2,1,1,5,5,2,3,1,5,11,6,12,2,2,5,4,3,11,5,8,8,3,2,8,4,1]},{"label":"ETH","topics":"eth,ethereum,target,long,liquidated","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- Ethereum (ETH) price predictions and analysis\n- Potential breakout and strong bullish signals for ETH\n- Altseason momentum and price targets\n- Trading strategies and technical analysis for ETH and other cryptocurrencies like ETC\n- NFTs and blockchain technology\n- Market trends and potential trade opportunities\n- Speculation on future price movements and FOMO (fear of missing out) sentiment\n\nOverall, the sentiment seems to be positive towards ETH and the crypto market in general, with expectations of price increases and new opportunities for traders and investors.","data":[4,1,2,4,2,0,2,7,2,4,3,8,3,2,6,4,48,7,6,3,2,3,2,4,1,3,3,1,17,13,9,1,2,0,3,2,4,2,10,4,1,3,4,9,2,4,6,9,4,3,3,3,4,5,2]},{"label":"MSTR","topics":"microstrategy,mstr,preferred,raise,acquired","description":"The key topic discussed in the messages from Twitter is MicroStrategy's continued buying of Bitcoin, with CEO Michael Saylor leading the charge. The company has made multiple large purchases of Bitcoin, totaling hundreds of thousands of BTC, and has raised billions of dollars to acquire even more. Saylor has been vocal about his bullish outlook on Bitcoin, suggesting that it could reach astronomical prices in the future. Despite recent market fluctuations, MicroStrategy remains a major player in the crypto industry, with a significant amount of BTC in its holdings.","data":[12,1,9,2,5,1,16,3,10,3,2,5,1,0,0,2,1,5,4,1,4,4,4,3,4,3,4,4,2,6,4,59,9,0,2,6,4,2,5,4,2,2,3,1,1,1,0,2,0,7,3,2,3,2,3]},{"label":"ETF Flows","topics":"etfs,net,etf,inflows,spot","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin ETF inflows and outflows, with significant amounts being mentioned such as $2.1 billion in Ethereum Spot ETF inflows and $110 billion in U.S. Bitcoin ETF holdings.\n2. BlackRock's Bitcoin ETF experiencing a massive $330 million outflow, impacting market fluctuations.\n3. Flockerz Token seeing high daily inflows and surpassing $9.2 million in presale.\n4. Specific ETFs like Fidelity ETF FBTC and BlackRock ETF IBIT being mentioned for their net inflows and outflows.\n5. Speculation on the reasons behind the outflows from BlackRock ETF IBIT, with mentions of basis unwind on futures.\n6. Daily net inflows and total net asset value of Bitcoin spot ETFs, with figures like $52.3899 million and $110.115 billion respectively.\n7. Recent trends in BlackRock ETF IBIT, with a significant $386 million outflow being highlighted as the highest since its launch.\n8. Overall market sentiment and trends in the crypto industry, with mentions of specific cryptocurrencies like Bitcoin, Ethereum, XRP, and Huobi.","data":[6,1,0,3,5,18,7,3,3,0,0,0,1,6,0,1,33,5,6,1,0,5,3,3,7,4,3,6,1,1,4,0,0,5,5,2,0,0,2,3,3,0,7,4,5,25,4,0,1,11,2,3,0,5,6]},{"label":"Inflation","topics":"inflation,rates,bond,impact,fed","description":"The key topic discussed in the messages from twitter is inflation and its impact on the market. Messages mention Janet Yellen's statement about Covid stimulus contributing to inflation, rising inflation rates in Euro area and Germany, and the impact of inflation on the US dollar and bond yields. There is also discussion about the potential for a delayed recession and the implications of rising bond yields on the market. Overall, the messages suggest a concern about inflation and its potential effects on the economy and investment markets.","data":[2,1,2,3,2,0,7,2,0,0,1,5,1,3,1,8,4,7,2,5,3,5,1,1,1,18,6,1,3,1,27,0,1,0,0,1,1,1,1,5,4,3,4,6,3,2,1,2,3,3,4,5,3,2,9]},{"label":"DOJ being cleared to sell $6.5 billion worth of Bitcoin seized from Silk Road assets","topics":"doj,silk,road,65,sell","description":"The key topic currently discussed on social media accounts and communities in the crypto industry is the Department of Justice (DOJ) being cleared to sell $6.5 billion worth of Bitcoin seized from Silk Road assets. This move follows years of legal battles and approval from the Northern District Court of California. The sale of 69,370 BTC is expected to impact market volatility, with the BTC price dipping 3% to $94,300. The US government holds a significant amount of Bitcoin, including 78.7K BTC from Silk Road-related seizure. This development has sparked discussions about government control over cryptocurrency and its impact on the market.","data":[1,0,4,1,0,0,13,0,3,0,15,2,1,2,0,13,0,1,2,3,4,22,0,3,3,1,4,1,4,4,2,0,1,1,2,2,1,4,2,1,6,5,4,14,4,3,2,2,1,3,0,2,2,2,1]},{"label":"NFT","topics":"nft,nfts,pfp,collection,mint","description":"The key topics currently being discussed in the crypto industry on Twitter include NFT expansion, the strongest hands in NFT, the history of buying NFTs, NFT projects for quality exposure, ERC721ex, crypto-themed NFT artists, NFT space knowledge quizzes, digital certificates of ownership, PFPs as community passes, heartwarming feedback from NFT users, NFT launchpads and marketplaces, NFT collections, mint details, NFT events, Primavera Digitale, luxury PFPs, craftsmanship in NFT collections, status signaling with PFPs, and the comparison of PFPs to luxury watches.","data":[6,3,0,6,1,0,5,1,3,3,5,1,2,1,2,2,2,7,4,3,4,3,6,1,2,3,3,4,3,3,5,0,1,5,11,2,4,2,3,8,7,4,2,4,2,0,2,1,4,2,0,1,1,4,2]},{"label":"DeFi","topics":"defi,protocols,depin,finance,switch","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. DeFi (Decentralized Finance): Discussions about Aave, ChainLink, Aptos, and other DeFi projects advancing the space.\n2. Risk Management in DeFi: Concerns about the complexity and risk associated with DeFi as Total Value Locked (TVL) grows.\n3. Regulatory Environment: Mention of the CFTC and SEC actions impacting the crypto industry.\n4. Innovation and Job Opportunities: Opportunities for engineers to join DeFi projects like Avara and work on mission critical code.\n5. Cross-chain Swaps and Adoption: Facilitating the adoption of DeFi through cross-chain swaps and innovative dApps.\n6. Pain Points in DeFi Trading: High fees, limited access to assets, security concerns, market manipulation risks, and lack of education in DeFi trading.\n7. Wealth Creation and Education: Encouragement to stay ahead of the curve in DeFi to capitalize on opportunities.\n8. Synthetic Assets: Discussion about synthetic assets and their role in DeFi trading.\n9. Digital Trust and Verification: Mention of OVCODE for secure digital transactions and verification in the blockchain space.","data":[1,0,2,1,1,0,0,3,0,5,1,5,4,8,1,6,5,3,7,3,4,2,3,1,2,9,6,5,3,6,0,0,1,2,2,7,0,1,6,2,3,7,2,1,4,2,3,3,2,2,5,3,2,3,5]},{"label":"APE","topics":"ape,apechain,mint,floor,nft","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Minting collections on Ape Chain and potential losses due to misclicks\n- Speculation on sleeper collections and their potential value\n- Questions about the relationship between D3LUSION and WOMEN ON BLOCKCHAIN\n- Excitement over the increasing value of NFT collections on Ape Chain\n- Ownership and potential value of gobs and other NFTs\n- Concerns about fake collections and scams on platforms like MagicEden\n- Investment strategies and beliefs in the future value of NFTs\n- Excitement over exclusive NFT passes like Blever passes\n- Analysis of the scarcity and value of different NFT collections\n- Alert about upcoming APE token unlock and potential volatility in the market\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, caution, and analysis regarding various aspects of the crypto industry and NFT market.","data":[1,1,17,5,1,0,4,1,1,0,3,5,4,0,3,2,2,0,3,5,8,2,3,2,4,2,1,2,2,3,3,3,2,0,3,2,4,1,1,1,0,1,7,2,3,1,4,1,1,7,1,0,2,8,1]},{"label":"BTC Mining","topics":"mining,miners,heat,miner,energy","description":"The key topics currently being discussed in the crypto industry on Twitter include Bitcoin mining hardware, environmental impact of Bitcoin mining, expansion of mining operations to new platforms like Solana, utilization of stranded natural gas for mining, lending of Bitcoin for yield generation, future of Bitcoin mining, recent news in the mining industry such as layoffs and agreements, illegal mining activities causing strain on power grids, mainstream awareness of the positive impact of Bitcoin mining on the environment, updates on companies like CleanSpark, and upcoming events like Mining Disrupt 2025.","data":[1,0,1,2,4,20,2,0,0,1,7,3,0,2,2,1,5,6,0,6,0,3,3,2,4,4,0,5,3,2,3,16,2,1,1,0,1,3,3,0,3,1,1,0,0,3,0,2,0,4,1,5,1,1,2]},{"label":"NVIDIA","topics":"nvidia,nvda,ceo,ai,personal","description":"The key topics discussed in the messages from twitter are:\n1. NVIDIA's new AI supercomputer and its impact on the market\n2. Jensen Huang's vision for AI and its connection to crypto\n3. Comparison between NVIDIA and AMD stocks in the AI industry\n4. Discussion on the new GB10 superchip and its capabilities\n5. Speculation on the future of MicroStrategy surpassing NVIDIA in market cap\n6. Debate on NVIDIA's advancements in AI technology and its implications for the industry\n7. Analysis of AMD's decision to stick with gddr6 for mining on GPUs\n8. Excitement over the potential of AI agents and blockchain/crypto technology\n9. Jensen Huang's presentation at CES 2025 and its significance for investors\n10. Potential challenges and opportunities for $LUNA holders with the new AI technology.","data":[2,9,6,1,3,0,2,4,0,4,3,2,0,2,1,0,0,2,2,2,5,4,0,1,1,3,4,1,2,4,0,0,6,0,1,6,2,2,5,3,3,3,7,7,3,2,2,4,1,3,1,4,0,1,4]},{"label":"SUI","topics":"sui,ath,tvl,ecosystem,catalyst","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. $SES: There is a positive sentiment around SES with a 24% increase in value. There is anticipation of a blue sky scenario and price discovery. The revolutionary technology on $SUI is also highlighted.\n\n2. $SUI: There is a lot of hype surrounding projects based on SUI, with mentions of dominating the autonomous agent market and being undervalued. The SUEDE AI Launchpad is mentioned as a creative revolution. FTX sold tokens and equity to Mysten Labs for a significant amount.\n\n3. AI Agents on #SUI: Hyperliquid and Sonic are mentioned as the future meta for AI agents and AI portfolio.\n\n4. SUI DePIN EarlyPool: The launch of the first DePIN layer on SUI with a large number of AI nodes and active users is highlighted.\n\nOverall, the messages indicate a positive outlook on the mentioned cryptocurrencies and projects within the crypto industry.","data":[3,5,5,5,2,0,3,4,1,2,0,2,2,5,0,4,0,4,1,1,0,1,0,8,3,2,3,2,0,8,6,0,1,2,3,3,2,2,2,5,2,1,3,3,3,0,8,2,4,2,1,1,1,2,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-53.ts b/priv/repo/major_topics_seed/data-53.ts deleted file mode 100644 index 0d1c8e70d8..0000000000 --- a/priv/repo/major_topics_seed/data-53.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '02.01.25', - '03.01.25', - '03.01.25', - '03.01.25', - '03.01.25', - '03.01.25', - '03.01.25', - '03.01.25', - '04.01.25', - '04.01.25', - '04.01.25', - '04.01.25', - '04.01.25', - '04.01.25', - '04.01.25', - '04.01.25', - '05.01.25', - '05.01.25', - '05.01.25', - '05.01.25', - '05.01.25', - '05.01.25', - '05.01.25', - '05.01.25', - '06.01.25', - '06.01.25', - '06.01.25', - '06.01.25', - '06.01.25', - '06.01.25', - '06.01.25', - '06.01.25', - '07.01.25', - '07.01.25', - '07.01.25', - '07.01.25', - '07.01.25', - '07.01.25', - '07.01.25', - '07.01.25', - '08.01.25', - '08.01.25', - '08.01.25', - '08.01.25', - '08.01.25', - '08.01.25', - '08.01.25', - '08.01.25', - '09.01.25', - '09.01.25', - '09.01.25', - '09.01.25', - '09.01.25', - '09.01.25', - '09.01.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,human,humans', - description: - "The key topics currently discussed in the crypto industry on Twitter include the launch of AI agents tied to cryptocurrencies like $EMP and $KWEEN, the importance of integrity in AI development teams, the potential surge of AI coins on Binance, the emergence of AI agents as the largest crypto accounts on X, the rumored advancements in AI technology in Samsung's Galaxy S25, the performance of the AI sector in the crypto market, and the potential impact of $AKA and @play_Bloomverse on powering AI agents of the future. Additionally, there is discussion about the innovation and hype surrounding AI agents, the potential bubble in the AI agent market, and the development of AI-powered tools like Funnels Kickstart for digital marketing.", - data: [ - 86, 300, 22, 25, 22, 0, 13, 36, 13, 30, 39, 36, 33, 21, 16, 21, 13, 21, 18, 32, 41, 39, 25, - 27, 40, 32, 33, 41, 26, 44, 25, 25, 29, 20, 9, 28, 24, 27, 38, 43, 36, 19, 30, 20, 28, 17, - 27, 46, 47, 30, 20, 19, 37, 23, 29, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,fiat,money,understand,dont', - description: - 'The key topics discussed in the messages from twitter about Bitcoin include:\n1. Understanding Bitcoin and the importance of self-custody\n2. Criticism and ignorance towards Bitcoin\n3. Hard forks and their impact on stacking more Bitcoin\n4. The increasing value of Bitcoin and its potential threat to fiat systems\n5. Holding Bitcoin as a way to build real wealth\n6. Empowerment of individuals through Bitcoin for secure money holding\n7. The struggle to reach $1 million per Bitcoin\n8. The importance of owning your private keys for Bitcoin ownership.', - data: [ - 9, 1, 16, 19, 60, 134, 17, 16, 31, 10, 10, 19, 18, 18, 7, 15, 18, 14, 24, 13, 25, 20, 21, - 20, 17, 19, 21, 14, 16, 23, 13, 23, 33, 9, 8, 14, 27, 14, 18, 16, 29, 24, 26, 30, 20, 23, - 18, 20, 25, 7, 25, 27, 18, 23, 20, - ], - }, - { - label: 'Celebrating the 16th anniversary of BTC creation', - topics: 'genesis,block,16,satoshi,birthday', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry are:\n1. Celebrating the 16th anniversary of Bitcoin's creation by Satoshi Nakamoto\n2. Reflection on Bitcoin's impact on individuals' lives and the world\n3. Discussion on Bitcoin's potential as sound money or digital property\n4. Emission reduction day for ERG cryptocurrency\n5. Milestone achievement of Kross Blockchain reaching its 2 millionth block\n6. Michael Saylor's early skepticism towards Bitcoin\n7. The significance of the Bitcoin Genesis Block Day\n8. Speculation on Bitcoin's future adoption and value\n9. Recognition of early Bitcoin supporters and believers\n10. Continued interest and engagement with Bitcoin and blockchain technology.", - data: [ - 11, 1, 7, 8, 9, 15, 14, 2, 1, 12, 2, 0, 7, 23, 6, 0, 4, 3, 4, 8, 10, 2, 104, 4, 3, 2, 5, 5, - 2, 2, 0, 7, 1, 4, 1, 6, 2, 1, 3, 2, 4, 2, 8, 0, 4, 4, 2, 6, 2, 23, 16, 1, 0, 2, 74, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,scalability,quantum,developers', - description: - 'Based on the messages from Twitter, it seems that there is a lot of excitement and discussion around the Solana ($SOL) cryptocurrency. Users are talking about trading Ethereum ($ETH) for Solana, participating in various programs like the BNSOL Super Stake, and the potential for significant gains in investment. There is also mention of AI agent tokens and the role of Solana in their success stories. Additionally, there is news about Solana developers proposing new hashing systems to improve scalability issues on the network. Overall, the sentiment around Solana appears to be positive, with users enthusiastic about the potential for growth and innovation in the cryptocurrency space.', - data: [ - 6, 5, 5, 11, 8, 0, 9, 12, 7, 17, 13, 4, 6, 3, 11, 6, 12, 7, 8, 8, 4, 6, 2, 6, 5, 10, 8, 9, - 7, 7, 7, 3, 6, 6, 9, 11, 4, 3, 13, 8, 2, 14, 5, 4, 51, 5, 15, 6, 7, 4, 4, 11, 5, 4, 6, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,web3', - description: - "The key topics currently being discussed in the crypto gaming community on Twitter include:\n1. GameFi crypto gaming and the importance of fun games that don't feel like traditional crypto games.\n2. The potential impact of streamers and pro gamers on the gaming industry.\n3. Updates on major game launches on Solana and new games from Shiba Inu.\n4. Weekly leaderboard challenges in Mercenary Battlegrounds on Steam.\n5. The emergence of AI-powered gaming projects like $SOVRN and partnerships between Breeder DAO, SovrunOfficial, and Virtuals_io.\n6. Twitch games and live streaming events for gamers to win prizes.\n7. Thetan Arena Asian Tournament with a prize pool of 4000 THG and registration details.", - data: [ - 7, 7, 5, 7, 2, 0, 2, 5, 3, 8, 7, 6, 4, 2, 3, 1, 6, 9, 7, 65, 15, 9, 9, 4, 5, 7, 9, 5, 9, 6, - 7, 4, 9, 2, 5, 6, 4, 36, 1, 13, 5, 7, 2, 2, 10, 7, 4, 7, 11, 4, 6, 4, 9, 6, 9, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,elonmusk,elon,69', - description: - "The key topics currently discussed in the crypto industry on Twitter include Dogecoin ($DOGE), Elon Musk's involvement in the crypto space, potential price movements and predictions for Dogecoin, the concept of stablecoins, meme coins such as WIF, POPCAT, and FWOG, and the overall excitement and anticipation surrounding the crypto market. There is also mention of technical analysis (TA) being used to predict market trends and make informed investment decisions. Additionally, the community seems to be divided between serious discussions about the future of crypto and more light-hearted, meme-driven content.", - data: [ - 2, 1, 3, 2, 3, 0, 1, 7, 4, 6, 5, 0, 6, 4, 142, 7, 3, 2, 3, 6, 3, 4, 3, 14, 2, 6, 8, 6, 7, 4, - 6, 5, 11, 3, 5, 5, 3, 2, 9, 4, 1, 3, 1, 4, 1, 3, 2, 7, 6, 2, 1, 4, 7, 7, 3, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,collection', - description: - 'The messages from Twitter are mainly discussing various aspects of art, including different art styles, the value of creativity, struggles with depression influencing art experiments, and the definition of computer art. Additionally, there is mention of generative art and NFTs in the context of photography. The messages also highlight specific art collections and artists within the crypto industry. Overall, the topic revolves around the intersection of art and technology within the crypto space.', - data: [ - 4, 1, 52, 2, 1, 0, 0, 2, 9, 4, 7, 6, 11, 2, 8, 5, 3, 4, 12, 3, 5, 8, 8, 5, 5, 6, 7, 2, 5, 8, - 8, 2, 5, 4, 4, 8, 7, 4, 6, 6, 7, 5, 7, 4, 5, 5, 6, 9, 7, 8, 9, 6, 5, 5, 5, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coins,memecoins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, meme tokens, meme coin presales, meme coin exchanges, meme coin communities, meme coin projects, meme coin profitability, meme coin trading, meme coin scalability, meme coin uniqueness, meme coin history, meme coin market cap comparisons, meme coin governance, meme coin grassroots movements, meme coin organization, meme coin fun vs financial seriousness balance, meme coin intrinsic value, meme coin utility, and notable meme coin examples like Dogecoin and PEPE coin.', - data: [ - 5, 2, 2, 6, 2, 2, 2, 5, 5, 2, 2, 5, 6, 2, 10, 1, 2, 14, 4, 4, 6, 11, 2, 5, 2, 1, 2, 2, 6, - 10, 5, 75, 5, 3, 10, 5, 9, 2, 3, 5, 5, 2, 7, 5, 3, 5, 7, 2, 8, 6, 7, 1, 6, 4, 4, - ], - }, - { - label: 'BTC Price', - topics: '100k,100000,hit,bitcoin,1000000', - description: - 'The key topics currently discussed in the crypto industry on Twitter include Bitcoin reaching $100,000, speculation on whether Bitcoin will hit $50,000 or if an OpenSea airdrop will occur, Max Keiser suggesting a price of $2,200,000 per Bitcoin, Bitcoin crossing $100,000 for the first time in 2025, Bitcoin pulling back from $102.8k to $100.2k, and predictions of Bitcoin reaching $1,000,000 by the end of the current cycle. Overall, there is a mix of excitement, speculation, and price analysis surrounding Bitcoin in the social media discussions.', - data: [ - 0, 1, 5, 4, 24, 45, 7, 8, 6, 0, 4, 2, 6, 0, 0, 7, 4, 2, 5, 1, 11, 2, 4, 24, 4, 5, 4, 1, 3, - 2, 1, 1, 5, 5, 2, 3, 1, 5, 11, 6, 12, 2, 2, 5, 4, 3, 11, 5, 8, 8, 3, 2, 8, 4, 1, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,target,long,liquidated', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n- Ethereum (ETH) price predictions and analysis\n- Potential breakout and strong bullish signals for ETH\n- Altseason momentum and price targets\n- Trading strategies and technical analysis for ETH and other cryptocurrencies like ETC\n- NFTs and blockchain technology\n- Market trends and potential trade opportunities\n- Speculation on future price movements and FOMO (fear of missing out) sentiment\n\nOverall, the sentiment seems to be positive towards ETH and the crypto market in general, with expectations of price increases and new opportunities for traders and investors.', - data: [ - 4, 1, 2, 4, 2, 0, 2, 7, 2, 4, 3, 8, 3, 2, 6, 4, 48, 7, 6, 3, 2, 3, 2, 4, 1, 3, 3, 1, 17, 13, - 9, 1, 2, 0, 3, 2, 4, 2, 10, 4, 1, 3, 4, 9, 2, 4, 6, 9, 4, 3, 3, 3, 4, 5, 2, - ], - }, - { - label: 'MSTR', - topics: 'microstrategy,mstr,preferred,raise,acquired', - description: - "The key topic discussed in the messages from Twitter is MicroStrategy's continued buying of Bitcoin, with CEO Michael Saylor leading the charge. The company has made multiple large purchases of Bitcoin, totaling hundreds of thousands of BTC, and has raised billions of dollars to acquire even more. Saylor has been vocal about his bullish outlook on Bitcoin, suggesting that it could reach astronomical prices in the future. Despite recent market fluctuations, MicroStrategy remains a major player in the crypto industry, with a significant amount of BTC in its holdings.", - data: [ - 12, 1, 9, 2, 5, 1, 16, 3, 10, 3, 2, 5, 1, 0, 0, 2, 1, 5, 4, 1, 4, 4, 4, 3, 4, 3, 4, 4, 2, 6, - 4, 59, 9, 0, 2, 6, 4, 2, 5, 4, 2, 2, 3, 1, 1, 1, 0, 2, 0, 7, 3, 2, 3, 2, 3, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,net,etf,inflows,spot', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin ETF inflows and outflows, with significant amounts being mentioned such as $2.1 billion in Ethereum Spot ETF inflows and $110 billion in U.S. Bitcoin ETF holdings.\n2. BlackRock's Bitcoin ETF experiencing a massive $330 million outflow, impacting market fluctuations.\n3. Flockerz Token seeing high daily inflows and surpassing $9.2 million in presale.\n4. Specific ETFs like Fidelity ETF FBTC and BlackRock ETF IBIT being mentioned for their net inflows and outflows.\n5. Speculation on the reasons behind the outflows from BlackRock ETF IBIT, with mentions of basis unwind on futures.\n6. Daily net inflows and total net asset value of Bitcoin spot ETFs, with figures like $52.3899 million and $110.115 billion respectively.\n7. Recent trends in BlackRock ETF IBIT, with a significant $386 million outflow being highlighted as the highest since its launch.\n8. Overall market sentiment and trends in the crypto industry, with mentions of specific cryptocurrencies like Bitcoin, Ethereum, XRP, and Huobi.", - data: [ - 6, 1, 0, 3, 5, 18, 7, 3, 3, 0, 0, 0, 1, 6, 0, 1, 33, 5, 6, 1, 0, 5, 3, 3, 7, 4, 3, 6, 1, 1, - 4, 0, 0, 5, 5, 2, 0, 0, 2, 3, 3, 0, 7, 4, 5, 25, 4, 0, 1, 11, 2, 3, 0, 5, 6, - ], - }, - { - label: 'Inflation', - topics: 'inflation,rates,bond,impact,fed', - description: - "The key topic discussed in the messages from twitter is inflation and its impact on the market. Messages mention Janet Yellen's statement about Covid stimulus contributing to inflation, rising inflation rates in Euro area and Germany, and the impact of inflation on the US dollar and bond yields. There is also discussion about the potential for a delayed recession and the implications of rising bond yields on the market. Overall, the messages suggest a concern about inflation and its potential effects on the economy and investment markets.", - data: [ - 2, 1, 2, 3, 2, 0, 7, 2, 0, 0, 1, 5, 1, 3, 1, 8, 4, 7, 2, 5, 3, 5, 1, 1, 1, 18, 6, 1, 3, 1, - 27, 0, 1, 0, 0, 1, 1, 1, 1, 5, 4, 3, 4, 6, 3, 2, 1, 2, 3, 3, 4, 5, 3, 2, 9, - ], - }, - { - label: 'DOJ being cleared to sell $6.5 billion worth of Bitcoin seized from Silk Road assets', - topics: 'doj,silk,road,65,sell', - description: - 'The key topic currently discussed on social media accounts and communities in the crypto industry is the Department of Justice (DOJ) being cleared to sell $6.5 billion worth of Bitcoin seized from Silk Road assets. This move follows years of legal battles and approval from the Northern District Court of California. The sale of 69,370 BTC is expected to impact market volatility, with the BTC price dipping 3% to $94,300. The US government holds a significant amount of Bitcoin, including 78.7K BTC from Silk Road-related seizure. This development has sparked discussions about government control over cryptocurrency and its impact on the market.', - data: [ - 1, 0, 4, 1, 0, 0, 13, 0, 3, 0, 15, 2, 1, 2, 0, 13, 0, 1, 2, 3, 4, 22, 0, 3, 3, 1, 4, 1, 4, - 4, 2, 0, 1, 1, 2, 2, 1, 4, 2, 1, 6, 5, 4, 14, 4, 3, 2, 2, 1, 3, 0, 2, 2, 2, 1, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,collection,mint', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include NFT expansion, the strongest hands in NFT, the history of buying NFTs, NFT projects for quality exposure, ERC721ex, crypto-themed NFT artists, NFT space knowledge quizzes, digital certificates of ownership, PFPs as community passes, heartwarming feedback from NFT users, NFT launchpads and marketplaces, NFT collections, mint details, NFT events, Primavera Digitale, luxury PFPs, craftsmanship in NFT collections, status signaling with PFPs, and the comparison of PFPs to luxury watches.', - data: [ - 6, 3, 0, 6, 1, 0, 5, 1, 3, 3, 5, 1, 2, 1, 2, 2, 2, 7, 4, 3, 4, 3, 6, 1, 2, 3, 3, 4, 3, 3, 5, - 0, 1, 5, 11, 2, 4, 2, 3, 8, 7, 4, 2, 4, 2, 0, 2, 1, 4, 2, 0, 1, 1, 4, 2, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,depin,finance,switch', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n1. DeFi (Decentralized Finance): Discussions about Aave, ChainLink, Aptos, and other DeFi projects advancing the space.\n2. Risk Management in DeFi: Concerns about the complexity and risk associated with DeFi as Total Value Locked (TVL) grows.\n3. Regulatory Environment: Mention of the CFTC and SEC actions impacting the crypto industry.\n4. Innovation and Job Opportunities: Opportunities for engineers to join DeFi projects like Avara and work on mission critical code.\n5. Cross-chain Swaps and Adoption: Facilitating the adoption of DeFi through cross-chain swaps and innovative dApps.\n6. Pain Points in DeFi Trading: High fees, limited access to assets, security concerns, market manipulation risks, and lack of education in DeFi trading.\n7. Wealth Creation and Education: Encouragement to stay ahead of the curve in DeFi to capitalize on opportunities.\n8. Synthetic Assets: Discussion about synthetic assets and their role in DeFi trading.\n9. Digital Trust and Verification: Mention of OVCODE for secure digital transactions and verification in the blockchain space.', - data: [ - 1, 0, 2, 1, 1, 0, 0, 3, 0, 5, 1, 5, 4, 8, 1, 6, 5, 3, 7, 3, 4, 2, 3, 1, 2, 9, 6, 5, 3, 6, 0, - 0, 1, 2, 2, 7, 0, 1, 6, 2, 3, 7, 2, 1, 4, 2, 3, 3, 2, 2, 5, 3, 2, 3, 5, - ], - }, - { - label: 'APE', - topics: 'ape,apechain,mint,floor,nft', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Minting collections on Ape Chain and potential losses due to misclicks\n- Speculation on sleeper collections and their potential value\n- Questions about the relationship between D3LUSION and WOMEN ON BLOCKCHAIN\n- Excitement over the increasing value of NFT collections on Ape Chain\n- Ownership and potential value of gobs and other NFTs\n- Concerns about fake collections and scams on platforms like MagicEden\n- Investment strategies and beliefs in the future value of NFTs\n- Excitement over exclusive NFT passes like Blever passes\n- Analysis of the scarcity and value of different NFT collections\n- Alert about upcoming APE token unlock and potential volatility in the market\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, caution, and analysis regarding various aspects of the crypto industry and NFT market.', - data: [ - 1, 1, 17, 5, 1, 0, 4, 1, 1, 0, 3, 5, 4, 0, 3, 2, 2, 0, 3, 5, 8, 2, 3, 2, 4, 2, 1, 2, 2, 3, - 3, 3, 2, 0, 3, 2, 4, 1, 1, 1, 0, 1, 7, 2, 3, 1, 4, 1, 1, 7, 1, 0, 2, 8, 1, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,heat,miner,energy', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include Bitcoin mining hardware, environmental impact of Bitcoin mining, expansion of mining operations to new platforms like Solana, utilization of stranded natural gas for mining, lending of Bitcoin for yield generation, future of Bitcoin mining, recent news in the mining industry such as layoffs and agreements, illegal mining activities causing strain on power grids, mainstream awareness of the positive impact of Bitcoin mining on the environment, updates on companies like CleanSpark, and upcoming events like Mining Disrupt 2025.', - data: [ - 1, 0, 1, 2, 4, 20, 2, 0, 0, 1, 7, 3, 0, 2, 2, 1, 5, 6, 0, 6, 0, 3, 3, 2, 4, 4, 0, 5, 3, 2, - 3, 16, 2, 1, 1, 0, 1, 3, 3, 0, 3, 1, 1, 0, 0, 3, 0, 2, 0, 4, 1, 5, 1, 1, 2, - ], - }, - { - label: 'NVIDIA', - topics: 'nvidia,nvda,ceo,ai,personal', - description: - "The key topics discussed in the messages from twitter are:\n1. NVIDIA's new AI supercomputer and its impact on the market\n2. Jensen Huang's vision for AI and its connection to crypto\n3. Comparison between NVIDIA and AMD stocks in the AI industry\n4. Discussion on the new GB10 superchip and its capabilities\n5. Speculation on the future of MicroStrategy surpassing NVIDIA in market cap\n6. Debate on NVIDIA's advancements in AI technology and its implications for the industry\n7. Analysis of AMD's decision to stick with gddr6 for mining on GPUs\n8. Excitement over the potential of AI agents and blockchain/crypto technology\n9. Jensen Huang's presentation at CES 2025 and its significance for investors\n10. Potential challenges and opportunities for $LUNA holders with the new AI technology.", - data: [ - 2, 9, 6, 1, 3, 0, 2, 4, 0, 4, 3, 2, 0, 2, 1, 0, 0, 2, 2, 2, 5, 4, 0, 1, 1, 3, 4, 1, 2, 4, 0, - 0, 6, 0, 1, 6, 2, 2, 5, 3, 3, 3, 7, 7, 3, 2, 2, 4, 1, 3, 1, 4, 0, 1, 4, - ], - }, - { - label: 'SUI', - topics: 'sui,ath,tvl,ecosystem,catalyst', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n\n1. $SES: There is a positive sentiment around SES with a 24% increase in value. There is anticipation of a blue sky scenario and price discovery. The revolutionary technology on $SUI is also highlighted.\n\n2. $SUI: There is a lot of hype surrounding projects based on SUI, with mentions of dominating the autonomous agent market and being undervalued. The SUEDE AI Launchpad is mentioned as a creative revolution. FTX sold tokens and equity to Mysten Labs for a significant amount.\n\n3. AI Agents on #SUI: Hyperliquid and Sonic are mentioned as the future meta for AI agents and AI portfolio.\n\n4. SUI DePIN EarlyPool: The launch of the first DePIN layer on SUI with a large number of AI nodes and active users is highlighted.\n\nOverall, the messages indicate a positive outlook on the mentioned cryptocurrencies and projects within the crypto industry.', - data: [ - 3, 5, 5, 5, 2, 0, 3, 4, 1, 2, 0, 2, 2, 5, 0, 4, 0, 4, 1, 1, 0, 1, 0, 8, 3, 2, 3, 2, 0, 8, 6, - 0, 1, 2, 3, 3, 2, 2, 2, 5, 2, 1, 3, 3, 3, 0, 8, 2, 4, 2, 1, 1, 1, 2, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-54.json b/priv/repo/major_topics_seed/data-54.json deleted file mode 100644 index 88687236dd..0000000000 --- a/priv/repo/major_topics_seed/data-54.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["09.01.25","10.01.25","10.01.25","10.01.25","10.01.25","10.01.25","10.01.25","10.01.25","11.01.25","11.01.25","11.01.25","11.01.25","11.01.25","11.01.25","11.01.25","11.01.25","12.01.25","12.01.25","12.01.25","12.01.25","12.01.25","12.01.25","12.01.25","12.01.25","13.01.25","13.01.25","13.01.25","13.01.25","13.01.25","13.01.25","13.01.25","13.01.25","14.01.25","14.01.25","14.01.25","14.01.25","14.01.25","14.01.25","14.01.25","14.01.25","15.01.25","15.01.25","15.01.25","15.01.25","15.01.25","15.01.25","15.01.25","15.01.25","16.01.25","16.01.25","16.01.25","16.01.25","16.01.25","16.01.25","16.01.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,data,autonomous","description":"The key topics currently being discussed in the crypto industry on social media platforms include:\n- AI altcoin Alpha and its potential in the market\n- The rise of AI in various sectors, including gaming and gambling\n- Undervalued tokens such as $FARM, $BNTY, $REALIS, $HYPER, $MOSS, and #STEALTH\n- The importance of AI agents and their role in the industry\n- Partnerships between Fetch.ai and Zus Network for secure storage solutions\n- The potential of Zero1 Token $DEAI as an AI agent project on Ethereum\n- The significance of data privacy and security in the context of AI\n- The use of metagraphs on Constellation for tokenized data\n\nOverall, the discussions revolve around the advancements and potential of AI technology in the crypto industry, as well as the importance of data security and privacy.","data":[99,282,34,23,10,0,8,30,22,28,25,46,18,25,16,26,21,25,17,37,29,19,25,20,41,48,45,27,19,41,31,19,26,24,16,36,35,24,29,22,31,24,31,21,28,19,39,41,45,24,21,26,29,27,28]},{"label":"BTC","topics":"bitcoin,fiat,money,understand,bitcoiners","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry include:\n\n1. Bitcoin Strategic Reserve: There is a mention of individuals having their own Bitcoin strategic reserve, emphasizing the importance of holding Bitcoin as a long-term investment strategy.\n\n2. Price Action and Rug Pulls: The discussion also touches upon the price action of Bitcoin and the presence of rug pull scams in the crypto market, highlighting the need for caution and due diligence.\n\n3. Fiat Currency vs. Bitcoin: A comparison is made between fiat currency and Bitcoin, with an emphasis on the benefits of earning Bitcoin honestly and the potential for wealth accumulation through Bitcoin.\n\n4. Wealth Building and Productivity: The messages also mention the ease of building wealth through Bitcoin, as well as the disparity in productivity and earnings for American men over the years.\n\n5. Lifestyle and Investment: There is a focus on the lifestyle benefits of Bitcoin, such as flexibility, opportunity, and peace of mind, as well as the investment potential of Bitcoin as a digital gold.\n\n6. Disaster Resilience: The importance of storing wealth in Bitcoin for resilience against natural disasters and financial risks is highlighted, contrasting it with traditional assets like real estate and supercars.\n\nOverall, the messages reflect a mix of investment advice, economic analysis, and lifestyle considerations related to Bitcoin and the crypto industry.","data":[11,6,7,10,53,104,6,19,12,14,12,14,5,7,16,21,11,18,27,12,20,15,17,15,16,14,23,13,16,24,13,16,27,2,4,12,20,10,16,21,17,18,22,17,19,18,19,16,16,9,22,14,22,17,9]},{"label":"Memecoins","topics":"meme,memes,memecoin,memecoins,coins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the rise of meme coins, with users discussing new meme coins and potential listings on exchanges. There is also a focus on nostalgia and the tokenization of nostalgic themes like Y2K, as well as specific meme coins like $MUSKIT and $HAIR. Additionally, there is excitement around upcoming discussions on Memecoin Communities and ERC-721ex, as well as contests for creating crypto-related classic art memes. Users are also sharing their bullish sentiments on different meme sectors such as AI, frogs, cats, and dogs, with specific meme tokens mentioned for each category. Overall, the crypto community on social media is actively engaging with meme coins and exploring various meme-related topics and opportunities.","data":[12,11,12,9,8,1,8,8,18,18,13,18,8,8,35,5,7,18,8,11,18,9,11,8,6,13,10,14,6,12,6,140,8,5,11,9,8,14,20,8,8,9,18,9,17,11,11,12,17,11,7,8,11,9,7]},{"label":"GameFi","topics":"gaming,game,games,play,web3","description":"The key topics currently discussed in the crypto industry on Twitter include gaming, blockchain-powered fairness in casino gaming, NFT prizes, Telegram games, and challenges to beat others in web3 games. There is also a focus on community events such as Friday Night Twitch Bash and trivia sessions on Discord. Players are encouraged to join in on the fun and compete for prizes while engaging with the crypto community.","data":[13,2,3,8,5,0,7,4,11,6,9,10,5,15,3,9,5,17,8,68,15,6,7,5,10,5,6,11,5,8,6,9,3,4,7,5,30,10,3,17,4,8,6,4,4,12,3,9,13,6,6,1,12,5,3]},{"label":"CPI & Inflation","topics":"inflation,cpi,rate,29,fed","description":"The key topics currently being discussed in the crypto industry on social media include inflation, government efficiency, global inflation rates, energy index shocks, the Yen Carry Trade, the Bank of Japan, stock market valuations, correlation of crypto with natural indices and inflation, consumer sentiment, the Indian rupee's exchange rate against the US dollar, gross vs. net salary after taxes in different countries, and conspiracy theories about inflation numbers being manipulated. There is also mention of job creation and full-time employment levels.","data":[3,1,4,10,6,2,17,1,4,3,14,9,12,5,11,10,10,4,2,10,5,3,9,6,67,11,6,7,1,2,25,3,6,0,7,3,3,13,4,19,14,10,4,5,7,7,10,1,8,13,3,8,2,12,20]},{"label":"BTC price","topics":"range,btc,low,resistance,price","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin's price action, with mentions of a potential bounce and resistance levels\n2. Decrease in Bitcoin network activity and its impact on prices\n3. Institutional demand for Bitcoin leading to low reserves\n4. Technical analysis and signals for Bitcoin's price movement\n5. Market manipulation and the importance of using stop-loss orders\n6. Bitcoin's reaction to US CPI data and potential for new highs\n7. Hidden bullish divergence in Bitcoin's chart and potential for a significant climb\n8. Altcoins bleeding and the impact on crypto trading\n9. Support and resistance levels for Bitcoin and potential scenarios for price movement\n\nOverall, the discussions on Twitter indicate a mix of technical analysis, market trends, and potential future price movements in the crypto industry, with a focus on Bitcoin.","data":[6,0,2,6,28,37,10,30,3,11,5,4,7,6,17,3,9,10,4,6,1,3,2,12,6,4,2,3,5,17,7,3,9,0,7,5,3,12,4,4,9,2,6,10,8,5,16,9,2,5,2,7,6,5,7]},{"label":"XRP","topics":"xrp,ripple,flip,flips,breakout","description":"The key topics currently being discussed in the crypto community on Twitter include:\n1. $XRP price surge and bullish outlook\n2. Market analysis and expert opinions on XRP\n3. Potential for XRP to reach $2 and beyond\n4. Price predictions and trading strategies for XRP\n5. Comparison of XRP to other cryptocurrencies like Bitcoin\n6. XRP's potential to challenge the Swift banking system\n7. Personal trading experiences and strategies with XRP\n8. Updates on XRP's performance and potential growth in the market\n\nOverall, the sentiment towards XRP appears to be positive, with many users expressing optimism about its future performance and potential for significant gains.","data":[7,1,4,9,1,0,6,5,2,3,6,1,6,4,1,5,3,5,10,4,8,5,8,18,11,5,10,7,3,6,16,0,8,1,7,5,6,12,23,5,4,11,5,6,10,1,16,6,4,8,4,8,7,7,7]},{"label":"DOGE","topics":"doge,dogecoin,69,elon,lets","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin's potential as a form of money\n- Speculation on Dogecoin's price reaching $0.7\n- Dogecoin whales buying and selling large amounts of DOGE\n- Elon Musk's comments on Dogecoin's budget cuts\n- Everyday transactions using Dogecoin\n- Price predictions and giveaways related to Dogecoin\n- The impact of whale activity on the Dogecoin market\n\nOverall, the sentiment towards Dogecoin appears to be positive, with discussions ranging from its utility as a currency to its price potential and market dynamics.","data":[3,1,3,3,6,0,6,7,5,6,3,2,4,1,117,4,1,11,6,2,3,2,4,6,4,2,2,9,3,5,6,2,6,2,4,3,4,6,3,5,2,1,5,5,1,9,3,3,4,3,3,3,6,3,4]},{"label":"Blockchains","topics":"blockchain,wallet,l2,privacy,decentralized","description":"The key topics discussed in the messages from twitter are:\n1. L2 transactions through L1 blockchain\n2. Cross chain application development\n3. Mainstream adoption of blockchain\n4. EML Protocol joining forces with Bitgert\n5. Healthy redistribution on $ZKGPT\n6. Marketing crisis in the ZK space\n7. Dacxi Blockchain on Ethereum\n8. New blockchain version\n9. Staking VRSC in Verus Desktop wallet\n10. SHx token and its impact on the future of crypto\n11. $JET and $KON token merge\n12. Magic Eden wallet integration in the ALEX ecosystem.","data":[3,0,1,1,1,0,11,5,4,1,4,2,5,20,6,6,8,3,6,14,3,4,6,1,7,10,10,4,2,3,5,1,7,3,4,4,6,4,10,5,3,3,4,5,7,7,7,9,4,4,6,7,8,2,9]},{"label":"BTC 100k","topics":"100k,100000,predicts,bitcoin,btc","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin approaching $100k and the excitement surrounding this milestone\n- Predictions from experts like Robert Kiyosaki about Bitcoin reaching $250k this year\n- Speculation about Bitcoin's price trajectory and potential targets in the future\n- Analysis of historical returns and market trends to forecast Bitcoin's future value\n- Discussions about nation state FOMO and the possibility of Bitcoin becoming the world's reserve currency\n- Contests and promotions related to Bitcoin predictions and rewards for accurate forecasts\n\nOverall, the sentiment on Twitter seems to be bullish towards Bitcoin and optimistic about its future potential.","data":[1,2,0,3,16,29,7,10,1,2,7,2,5,0,2,1,1,6,4,3,6,2,6,18,4,2,1,6,2,1,3,3,6,3,1,2,2,12,4,6,12,8,3,3,4,0,1,1,9,5,1,6,1,2,5]},{"label":"Art","topics":"art,artist,artists,piece,digital","description":"The key topics currently discussed in the messages from twitter about the crypto industry include digital art, NFTs, art collectors, artists minting directly via their own contracts, and the concept of authenticity in collecting. There is also mention of specific artists such as Anthony James, John Orion Young, and Josie Bellini. The discussion also touches on the idea of boundaries in art, the relationship between art and love, and the evolving landscape of digital art platforms. Overall, the conversation reflects a mix of appreciation for art, skepticism towards certain trends, and a desire for authenticity in the art world.","data":[0,1,39,6,0,0,2,3,4,1,8,1,6,4,0,3,0,7,2,1,3,3,1,0,3,5,4,8,2,0,7,5,5,3,1,7,5,3,5,3,3,6,7,7,2,5,2,5,3,10,2,3,7,0,6]},{"label":"NFT","topics":"nft,nfts,mint,pfp,collections","description":"The key topics discussed in the messages from twitter are related to NFTs (Non-Fungible Tokens) in the crypto industry. Some of the specific topics mentioned include the launch of NFT projects, partnerships with fitness companies for NFT storage, upcoming NFT minting events, the human aspect of NFTs compared to other crypto assets, the future of NFTs, and the introduction of new NFTs on the Lisk platform. The messages also touch on the popularity of NFTs in various industries such as fashion, music, games, art, and community building. Overall, the messages reflect a positive outlook on the future of NFTs and their potential for growth and innovation in the crypto space.","data":[11,4,4,7,4,0,6,1,4,1,8,4,5,1,1,5,1,3,14,3,5,3,2,2,5,3,2,5,1,6,4,5,6,4,18,2,3,1,5,7,3,7,2,2,2,3,3,3,5,5,2,3,5,5,2]},{"label":"Microstrategy","topics":"microstrategy,saylor,mstr,michael,acquired","description":"The key topic discussed in the messages from twitter is the continuous buying of Bitcoin by Michael Saylor and MicroStrategy. Michael Saylor is praised for his strategic purchases of Bitcoin, with mentions of him buying large amounts of Bitcoin worth millions of dollars. There are also references to Michael Saylor's bullish predictions for the future price of Bitcoin, with comparisons to Apple and statements about buying even more Bitcoin when the price reaches $1 million per coin. MicroStrategy is highlighted for its consistent purchases of Bitcoin every Monday, with the company seeking shareholder approval to buy even more Bitcoin in the future. The overall sentiment in the messages is positive towards Michael Saylor and MicroStrategy's involvement in the crypto industry.","data":[11,1,2,5,7,0,8,12,9,1,4,1,2,1,4,2,6,4,3,5,5,2,2,4,0,0,3,2,1,4,1,31,2,1,4,2,1,4,8,0,2,5,17,3,1,4,3,5,9,2,0,2,0,2,0]},{"label":"Airdrops","topics":"airdrop,usdt,prize,win,pool","description":"The key topics discussed in the messages from Twitter are:\n- Staking $ME tokens for future airdrops and low circulating supply\n- The upcoming Zoo airdrop and token listing details\n- Ending of mining on Jan 31, 2025, with token listing and price details coming soon\n- Launch of Season 2 of BYORACER mobile game\n- Lingocoins airdrop for Smart Diamond & Platinum members\n- BitMart x $WQOM Trading Competition with a prize pool\n- Airdrops on DEXTools and how to claim them\n- HTX x Carbon Browser Giveaway with a prize pool of $5000 $CSIX\n- OBT Trading Competition with a prize pool of up to 25,000 $OBT\n- MEXC Exclusive New Year Spin Carnival for new users\n- SFPlus exclusive with KiloEx_perp with a reward pool of 15,000 $KILO\n\nOverall, the messages cover a range of topics related to airdrops, staking, trading competitions, and exclusive events in the crypto industry.","data":[2,11,4,1,6,2,0,1,2,8,9,1,5,7,3,2,7,2,4,5,7,7,0,10,1,14,3,2,5,6,2,3,2,0,5,2,3,1,3,14,1,3,3,4,1,3,2,5,2,10,1,0,4,5,0]},{"label":"ETH","topics":"eth,ethereum,liquidated,3000,zone","description":"The key topics currently being discussed in the crypto industry on Twitter include the bullish sentiment towards Ethereum ($ETH), with price predictions ranging from $3000 to $6000. There is anticipation for Ethereum to reach new all-time highs, with some analysts suggesting a potential surge to $10k within the next 12 months. Institutional interest in Ethereum futures is growing, as evidenced by record highs in CME Ethereum futures. Traders are closely monitoring price levels, with $3325 seen as a crucial support level and a target of $5000 by March. Despite a recent dip, analysts remain bullish on Ethereum's growth potential, with short-term targets set at $3400, $3500, and $3600.","data":[2,0,0,2,3,0,2,2,2,2,2,4,1,1,2,6,46,5,4,2,4,3,3,9,1,2,1,1,14,4,2,0,3,4,5,1,2,7,4,3,2,4,1,6,2,0,4,3,6,4,2,1,1,3,1]},{"label":"Coinbase","topics":"coinbase,altseason,altcoins,v2,cryptocurrency","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Discussion about the $DYP token and its potential for a pump on Coinbase\n- Comparison between different cryptocurrencies such as $BTC, $XRP, $DOGE, $LTC, and $WOLF\n- Mining dogecoins and the influence of Elon Musk on the crypto market\n- Tokenomics and math behind certain cryptocurrencies\n- Trading setups and values for various cryptocurrencies\n- Project migrations and their impact on early supporters\n- Speculation about the price movement of $BTC and $DYP on Coinbase\n- Potential pump targets for $DYP on Coinbase\n- HODLing strategies and market predictions for $DYP\n- Anticipation of a pump for $DYP on Coinbase with a target of $0.288\n\nOverall, the sentiment seems to be bullish towards $DYP and other altcoins, with a focus on potential price increases and trading opportunities.","data":[1,2,3,2,1,0,3,1,3,9,7,4,7,0,1,2,2,7,6,0,5,3,1,8,0,2,3,3,0,5,1,1,4,1,4,4,3,3,8,4,3,3,3,3,0,7,3,0,3,4,0,8,6,2,2]},{"label":"Mining","topics":"mining,miners,hashrate,miner,energy","description":"The key topics currently being discussed in the crypto industry on Twitter include Bitcoin mining, Bitcoin hashrate, ROI for miners, Teranode software for Bitcoin mining, integrating Bitcoin mining in cities for offsetting heating costs, and concerns about mining centralization risks. Users are also discussing the differences between mining Bitcoin Cash (BCH) and Bitcoin (BTC), as well as the potential profitability of mining Bitcoin from home. Additionally, there is mention of a new initiative called Operation Bitcoin, aimed at educating and empowering military veterans in the world of Bitcoin.","data":[4,0,3,1,2,19,1,0,2,1,1,2,2,2,1,5,3,5,3,2,6,1,7,2,4,2,6,6,0,2,2,17,2,5,2,4,0,3,3,0,3,0,1,3,0,2,5,1,1,3,1,1,3,3,0]},{"label":"PEPE","topics":"pepe,frens,street,wall,meme","description":"The key topics currently being discussed in the crypto community on Twitter include the rise of Pepe Coin ($PEPE) and its potential to challenge Shiba Inu's dominance in the meme coin race. There is a strong sentiment of holding onto $PEPE and not selling, with mentions of whale accumulation and bullish momentum building. Technical analysis suggests potential for a breakout and retest of range highs. Additionally, a new spot listing for Hispanic Pepe ($CONCHO) on BVOX has generated excitement among traders. Experts are also discussing the best performing coin to buy in 2025, with $PEPE being mentioned alongside Dogecoin and Bitcoin.","data":[2,0,0,2,2,0,2,1,2,2,1,3,4,1,6,1,0,2,5,3,2,2,3,5,0,2,1,6,5,4,4,4,0,2,2,2,30,4,1,5,0,3,1,3,4,1,2,0,2,0,0,0,3,0,2]},{"label":"Azuki & ANIME","topics":"azuki,anime,tokenomics,community,tge","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Azuki's $ANIME token: There is discussion about the recent pump on $ANIME tokenomics not lasting long, as well as the upcoming launch of the ANIME token on Ethereum. Azuki assets are being swept following the announcement of the $ANIME TGE coming in January, with 50% of the allocation reserved for the community.\n\n2. Collaboration on Anime: Despite attending a talk about India-Japan cooperation in various industries, some individuals are more interested in collaborating on Anime due to the influence of Web3 technology.\n\n3. Darkmachine launching an anime series: Proud announcements have been made about Darkmachine launching an anime series on a top TV anime network, with the TGE scheduled for January 16th.\n\n4. Gacha earned on each asset: There is discussion about the gacha earned on each asset in relation to $ANIME airdrop allocations, with the belief that gacha will play a significant role in allocations.\n\n5. Tokenomics of $ANIME: Azuki has released the tokenomics for the upcoming $ANIME token, with approximately 50% going to the community and 37.5% of that reserved for Azuki NFT ecosystem holders.\n\n6. Allocation projections for $ANIME: There are differing opinions on the allocation projections for $ANIME, with some believing that the community allocation will be higher than initially expected.\n\n7. Finalbosu x Lizard Labs: Lizard Labs NFT holders will have the chance to be part of the next big anime franchise Finalbosu, a decentralized Web3 anime franchise driven by a bold philosophy.\n\nOverall, the discussions on Twitter indicate a high level of interest and engagement in the crypto industry, particularly in relation to anime-themed tokens and collaborations.","data":[1,2,8,6,0,0,0,4,3,1,6,3,4,3,1,2,2,1,3,3,5,0,4,2,4,2,1,4,1,2,2,2,3,1,1,0,0,2,4,1,5,1,2,1,1,1,3,2,2,0,1,1,0,2,2]},{"label":"Defi","topics":"defi,protocols,finance,lending,cases","description":"The key topics discussed in the messages from twitter about the crypto industry and DeFi include:\n1. DeFi protocols and projects such as FLUID, Solana x Alliance Ideathon, inSure DeFi, and XoxnoNetwork.\n2. The future of DeFi and its potential to revolutionize traditional banking systems.\n3. Crypto insurance and the importance of protecting investments in the volatile market.\n4. The evolution of DeFi mechanisms, including algorithmic-based and orderbook-based protocols.\n5. The role of stablecoin adoption in the DeFi ecosystem.\n6. The potential for DeFi to provide privacy and security for users.\n7. The growth and innovation within the DeFi space, with new players like XoxnoNetwork entering the market.\n8. The importance of informed investment decisions and analyzing projects like a pro in the DeFi industry.\nOverall, the messages reflect a positive outlook on the future of DeFi and its potential to disrupt traditional financial systems.","data":[1,0,0,3,3,1,2,3,3,4,1,3,0,10,2,3,1,1,7,3,2,0,0,1,2,2,5,3,0,3,1,1,0,3,1,1,0,4,4,5,3,2,0,3,2,1,1,1,2,0,0,2,1,4,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-54.ts b/priv/repo/major_topics_seed/data-54.ts deleted file mode 100644 index ac734bb0df..0000000000 --- a/priv/repo/major_topics_seed/data-54.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '09.01.25', - '10.01.25', - '10.01.25', - '10.01.25', - '10.01.25', - '10.01.25', - '10.01.25', - '10.01.25', - '11.01.25', - '11.01.25', - '11.01.25', - '11.01.25', - '11.01.25', - '11.01.25', - '11.01.25', - '11.01.25', - '12.01.25', - '12.01.25', - '12.01.25', - '12.01.25', - '12.01.25', - '12.01.25', - '12.01.25', - '12.01.25', - '13.01.25', - '13.01.25', - '13.01.25', - '13.01.25', - '13.01.25', - '13.01.25', - '13.01.25', - '13.01.25', - '14.01.25', - '14.01.25', - '14.01.25', - '14.01.25', - '14.01.25', - '14.01.25', - '14.01.25', - '14.01.25', - '15.01.25', - '15.01.25', - '15.01.25', - '15.01.25', - '15.01.25', - '15.01.25', - '15.01.25', - '15.01.25', - '16.01.25', - '16.01.25', - '16.01.25', - '16.01.25', - '16.01.25', - '16.01.25', - '16.01.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,data,autonomous', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms include:\n- AI altcoin Alpha and its potential in the market\n- The rise of AI in various sectors, including gaming and gambling\n- Undervalued tokens such as $FARM, $BNTY, $REALIS, $HYPER, $MOSS, and #STEALTH\n- The importance of AI agents and their role in the industry\n- Partnerships between Fetch.ai and Zus Network for secure storage solutions\n- The potential of Zero1 Token $DEAI as an AI agent project on Ethereum\n- The significance of data privacy and security in the context of AI\n- The use of metagraphs on Constellation for tokenized data\n\nOverall, the discussions revolve around the advancements and potential of AI technology in the crypto industry, as well as the importance of data security and privacy.', - data: [ - 99, 282, 34, 23, 10, 0, 8, 30, 22, 28, 25, 46, 18, 25, 16, 26, 21, 25, 17, 37, 29, 19, 25, - 20, 41, 48, 45, 27, 19, 41, 31, 19, 26, 24, 16, 36, 35, 24, 29, 22, 31, 24, 31, 21, 28, 19, - 39, 41, 45, 24, 21, 26, 29, 27, 28, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,fiat,money,understand,bitcoiners', - description: - 'Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry include:\n\n1. Bitcoin Strategic Reserve: There is a mention of individuals having their own Bitcoin strategic reserve, emphasizing the importance of holding Bitcoin as a long-term investment strategy.\n\n2. Price Action and Rug Pulls: The discussion also touches upon the price action of Bitcoin and the presence of rug pull scams in the crypto market, highlighting the need for caution and due diligence.\n\n3. Fiat Currency vs. Bitcoin: A comparison is made between fiat currency and Bitcoin, with an emphasis on the benefits of earning Bitcoin honestly and the potential for wealth accumulation through Bitcoin.\n\n4. Wealth Building and Productivity: The messages also mention the ease of building wealth through Bitcoin, as well as the disparity in productivity and earnings for American men over the years.\n\n5. Lifestyle and Investment: There is a focus on the lifestyle benefits of Bitcoin, such as flexibility, opportunity, and peace of mind, as well as the investment potential of Bitcoin as a digital gold.\n\n6. Disaster Resilience: The importance of storing wealth in Bitcoin for resilience against natural disasters and financial risks is highlighted, contrasting it with traditional assets like real estate and supercars.\n\nOverall, the messages reflect a mix of investment advice, economic analysis, and lifestyle considerations related to Bitcoin and the crypto industry.', - data: [ - 11, 6, 7, 10, 53, 104, 6, 19, 12, 14, 12, 14, 5, 7, 16, 21, 11, 18, 27, 12, 20, 15, 17, 15, - 16, 14, 23, 13, 16, 24, 13, 16, 27, 2, 4, 12, 20, 10, 16, 21, 17, 18, 22, 17, 19, 18, 19, - 16, 16, 9, 22, 14, 22, 17, 9, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memes,memecoin,memecoins,coins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the rise of meme coins, with users discussing new meme coins and potential listings on exchanges. There is also a focus on nostalgia and the tokenization of nostalgic themes like Y2K, as well as specific meme coins like $MUSKIT and $HAIR. Additionally, there is excitement around upcoming discussions on Memecoin Communities and ERC-721ex, as well as contests for creating crypto-related classic art memes. Users are also sharing their bullish sentiments on different meme sectors such as AI, frogs, cats, and dogs, with specific meme tokens mentioned for each category. Overall, the crypto community on social media is actively engaging with meme coins and exploring various meme-related topics and opportunities.', - data: [ - 12, 11, 12, 9, 8, 1, 8, 8, 18, 18, 13, 18, 8, 8, 35, 5, 7, 18, 8, 11, 18, 9, 11, 8, 6, 13, - 10, 14, 6, 12, 6, 140, 8, 5, 11, 9, 8, 14, 20, 8, 8, 9, 18, 9, 17, 11, 11, 12, 17, 11, 7, 8, - 11, 9, 7, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,web3', - description: - 'The key topics currently discussed in the crypto industry on Twitter include gaming, blockchain-powered fairness in casino gaming, NFT prizes, Telegram games, and challenges to beat others in web3 games. There is also a focus on community events such as Friday Night Twitch Bash and trivia sessions on Discord. Players are encouraged to join in on the fun and compete for prizes while engaging with the crypto community.', - data: [ - 13, 2, 3, 8, 5, 0, 7, 4, 11, 6, 9, 10, 5, 15, 3, 9, 5, 17, 8, 68, 15, 6, 7, 5, 10, 5, 6, 11, - 5, 8, 6, 9, 3, 4, 7, 5, 30, 10, 3, 17, 4, 8, 6, 4, 4, 12, 3, 9, 13, 6, 6, 1, 12, 5, 3, - ], - }, - { - label: 'CPI & Inflation', - topics: 'inflation,cpi,rate,29,fed', - description: - "The key topics currently being discussed in the crypto industry on social media include inflation, government efficiency, global inflation rates, energy index shocks, the Yen Carry Trade, the Bank of Japan, stock market valuations, correlation of crypto with natural indices and inflation, consumer sentiment, the Indian rupee's exchange rate against the US dollar, gross vs. net salary after taxes in different countries, and conspiracy theories about inflation numbers being manipulated. There is also mention of job creation and full-time employment levels.", - data: [ - 3, 1, 4, 10, 6, 2, 17, 1, 4, 3, 14, 9, 12, 5, 11, 10, 10, 4, 2, 10, 5, 3, 9, 6, 67, 11, 6, - 7, 1, 2, 25, 3, 6, 0, 7, 3, 3, 13, 4, 19, 14, 10, 4, 5, 7, 7, 10, 1, 8, 13, 3, 8, 2, 12, 20, - ], - }, - { - label: 'BTC price', - topics: 'range,btc,low,resistance,price', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin's price action, with mentions of a potential bounce and resistance levels\n2. Decrease in Bitcoin network activity and its impact on prices\n3. Institutional demand for Bitcoin leading to low reserves\n4. Technical analysis and signals for Bitcoin's price movement\n5. Market manipulation and the importance of using stop-loss orders\n6. Bitcoin's reaction to US CPI data and potential for new highs\n7. Hidden bullish divergence in Bitcoin's chart and potential for a significant climb\n8. Altcoins bleeding and the impact on crypto trading\n9. Support and resistance levels for Bitcoin and potential scenarios for price movement\n\nOverall, the discussions on Twitter indicate a mix of technical analysis, market trends, and potential future price movements in the crypto industry, with a focus on Bitcoin.", - data: [ - 6, 0, 2, 6, 28, 37, 10, 30, 3, 11, 5, 4, 7, 6, 17, 3, 9, 10, 4, 6, 1, 3, 2, 12, 6, 4, 2, 3, - 5, 17, 7, 3, 9, 0, 7, 5, 3, 12, 4, 4, 9, 2, 6, 10, 8, 5, 16, 9, 2, 5, 2, 7, 6, 5, 7, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,flip,flips,breakout', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n1. $XRP price surge and bullish outlook\n2. Market analysis and expert opinions on XRP\n3. Potential for XRP to reach $2 and beyond\n4. Price predictions and trading strategies for XRP\n5. Comparison of XRP to other cryptocurrencies like Bitcoin\n6. XRP's potential to challenge the Swift banking system\n7. Personal trading experiences and strategies with XRP\n8. Updates on XRP's performance and potential growth in the market\n\nOverall, the sentiment towards XRP appears to be positive, with many users expressing optimism about its future performance and potential for significant gains.", - data: [ - 7, 1, 4, 9, 1, 0, 6, 5, 2, 3, 6, 1, 6, 4, 1, 5, 3, 5, 10, 4, 8, 5, 8, 18, 11, 5, 10, 7, 3, - 6, 16, 0, 8, 1, 7, 5, 6, 12, 23, 5, 4, 11, 5, 6, 10, 1, 16, 6, 4, 8, 4, 8, 7, 7, 7, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,69,elon,lets', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin's potential as a form of money\n- Speculation on Dogecoin's price reaching $0.7\n- Dogecoin whales buying and selling large amounts of DOGE\n- Elon Musk's comments on Dogecoin's budget cuts\n- Everyday transactions using Dogecoin\n- Price predictions and giveaways related to Dogecoin\n- The impact of whale activity on the Dogecoin market\n\nOverall, the sentiment towards Dogecoin appears to be positive, with discussions ranging from its utility as a currency to its price potential and market dynamics.", - data: [ - 3, 1, 3, 3, 6, 0, 6, 7, 5, 6, 3, 2, 4, 1, 117, 4, 1, 11, 6, 2, 3, 2, 4, 6, 4, 2, 2, 9, 3, 5, - 6, 2, 6, 2, 4, 3, 4, 6, 3, 5, 2, 1, 5, 5, 1, 9, 3, 3, 4, 3, 3, 3, 6, 3, 4, - ], - }, - { - label: 'Blockchains', - topics: 'blockchain,wallet,l2,privacy,decentralized', - description: - 'The key topics discussed in the messages from twitter are:\n1. L2 transactions through L1 blockchain\n2. Cross chain application development\n3. Mainstream adoption of blockchain\n4. EML Protocol joining forces with Bitgert\n5. Healthy redistribution on $ZKGPT\n6. Marketing crisis in the ZK space\n7. Dacxi Blockchain on Ethereum\n8. New blockchain version\n9. Staking VRSC in Verus Desktop wallet\n10. SHx token and its impact on the future of crypto\n11. $JET and $KON token merge\n12. Magic Eden wallet integration in the ALEX ecosystem.', - data: [ - 3, 0, 1, 1, 1, 0, 11, 5, 4, 1, 4, 2, 5, 20, 6, 6, 8, 3, 6, 14, 3, 4, 6, 1, 7, 10, 10, 4, 2, - 3, 5, 1, 7, 3, 4, 4, 6, 4, 10, 5, 3, 3, 4, 5, 7, 7, 7, 9, 4, 4, 6, 7, 8, 2, 9, - ], - }, - { - label: 'BTC 100k', - topics: '100k,100000,predicts,bitcoin,btc', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin approaching $100k and the excitement surrounding this milestone\n- Predictions from experts like Robert Kiyosaki about Bitcoin reaching $250k this year\n- Speculation about Bitcoin's price trajectory and potential targets in the future\n- Analysis of historical returns and market trends to forecast Bitcoin's future value\n- Discussions about nation state FOMO and the possibility of Bitcoin becoming the world's reserve currency\n- Contests and promotions related to Bitcoin predictions and rewards for accurate forecasts\n\nOverall, the sentiment on Twitter seems to be bullish towards Bitcoin and optimistic about its future potential.", - data: [ - 1, 2, 0, 3, 16, 29, 7, 10, 1, 2, 7, 2, 5, 0, 2, 1, 1, 6, 4, 3, 6, 2, 6, 18, 4, 2, 1, 6, 2, - 1, 3, 3, 6, 3, 1, 2, 2, 12, 4, 6, 12, 8, 3, 3, 4, 0, 1, 1, 9, 5, 1, 6, 1, 2, 5, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,digital', - description: - 'The key topics currently discussed in the messages from twitter about the crypto industry include digital art, NFTs, art collectors, artists minting directly via their own contracts, and the concept of authenticity in collecting. There is also mention of specific artists such as Anthony James, John Orion Young, and Josie Bellini. The discussion also touches on the idea of boundaries in art, the relationship between art and love, and the evolving landscape of digital art platforms. Overall, the conversation reflects a mix of appreciation for art, skepticism towards certain trends, and a desire for authenticity in the art world.', - data: [ - 0, 1, 39, 6, 0, 0, 2, 3, 4, 1, 8, 1, 6, 4, 0, 3, 0, 7, 2, 1, 3, 3, 1, 0, 3, 5, 4, 8, 2, 0, - 7, 5, 5, 3, 1, 7, 5, 3, 5, 3, 3, 6, 7, 7, 2, 5, 2, 5, 3, 10, 2, 3, 7, 0, 6, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,mint,pfp,collections', - description: - 'The key topics discussed in the messages from twitter are related to NFTs (Non-Fungible Tokens) in the crypto industry. Some of the specific topics mentioned include the launch of NFT projects, partnerships with fitness companies for NFT storage, upcoming NFT minting events, the human aspect of NFTs compared to other crypto assets, the future of NFTs, and the introduction of new NFTs on the Lisk platform. The messages also touch on the popularity of NFTs in various industries such as fashion, music, games, art, and community building. Overall, the messages reflect a positive outlook on the future of NFTs and their potential for growth and innovation in the crypto space.', - data: [ - 11, 4, 4, 7, 4, 0, 6, 1, 4, 1, 8, 4, 5, 1, 1, 5, 1, 3, 14, 3, 5, 3, 2, 2, 5, 3, 2, 5, 1, 6, - 4, 5, 6, 4, 18, 2, 3, 1, 5, 7, 3, 7, 2, 2, 2, 3, 3, 3, 5, 5, 2, 3, 5, 5, 2, - ], - }, - { - label: 'Microstrategy', - topics: 'microstrategy,saylor,mstr,michael,acquired', - description: - "The key topic discussed in the messages from twitter is the continuous buying of Bitcoin by Michael Saylor and MicroStrategy. Michael Saylor is praised for his strategic purchases of Bitcoin, with mentions of him buying large amounts of Bitcoin worth millions of dollars. There are also references to Michael Saylor's bullish predictions for the future price of Bitcoin, with comparisons to Apple and statements about buying even more Bitcoin when the price reaches $1 million per coin. MicroStrategy is highlighted for its consistent purchases of Bitcoin every Monday, with the company seeking shareholder approval to buy even more Bitcoin in the future. The overall sentiment in the messages is positive towards Michael Saylor and MicroStrategy's involvement in the crypto industry.", - data: [ - 11, 1, 2, 5, 7, 0, 8, 12, 9, 1, 4, 1, 2, 1, 4, 2, 6, 4, 3, 5, 5, 2, 2, 4, 0, 0, 3, 2, 1, 4, - 1, 31, 2, 1, 4, 2, 1, 4, 8, 0, 2, 5, 17, 3, 1, 4, 3, 5, 9, 2, 0, 2, 0, 2, 0, - ], - }, - { - label: 'Airdrops', - topics: 'airdrop,usdt,prize,win,pool', - description: - 'The key topics discussed in the messages from Twitter are:\n- Staking $ME tokens for future airdrops and low circulating supply\n- The upcoming Zoo airdrop and token listing details\n- Ending of mining on Jan 31, 2025, with token listing and price details coming soon\n- Launch of Season 2 of BYORACER mobile game\n- Lingocoins airdrop for Smart Diamond & Platinum members\n- BitMart x $WQOM Trading Competition with a prize pool\n- Airdrops on DEXTools and how to claim them\n- HTX x Carbon Browser Giveaway with a prize pool of $5000 $CSIX\n- OBT Trading Competition with a prize pool of up to 25,000 $OBT\n- MEXC Exclusive New Year Spin Carnival for new users\n- SFPlus exclusive with KiloEx_perp with a reward pool of 15,000 $KILO\n\nOverall, the messages cover a range of topics related to airdrops, staking, trading competitions, and exclusive events in the crypto industry.', - data: [ - 2, 11, 4, 1, 6, 2, 0, 1, 2, 8, 9, 1, 5, 7, 3, 2, 7, 2, 4, 5, 7, 7, 0, 10, 1, 14, 3, 2, 5, 6, - 2, 3, 2, 0, 5, 2, 3, 1, 3, 14, 1, 3, 3, 4, 1, 3, 2, 5, 2, 10, 1, 0, 4, 5, 0, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,liquidated,3000,zone', - description: - "The key topics currently being discussed in the crypto industry on Twitter include the bullish sentiment towards Ethereum ($ETH), with price predictions ranging from $3000 to $6000. There is anticipation for Ethereum to reach new all-time highs, with some analysts suggesting a potential surge to $10k within the next 12 months. Institutional interest in Ethereum futures is growing, as evidenced by record highs in CME Ethereum futures. Traders are closely monitoring price levels, with $3325 seen as a crucial support level and a target of $5000 by March. Despite a recent dip, analysts remain bullish on Ethereum's growth potential, with short-term targets set at $3400, $3500, and $3600.", - data: [ - 2, 0, 0, 2, 3, 0, 2, 2, 2, 2, 2, 4, 1, 1, 2, 6, 46, 5, 4, 2, 4, 3, 3, 9, 1, 2, 1, 1, 14, 4, - 2, 0, 3, 4, 5, 1, 2, 7, 4, 3, 2, 4, 1, 6, 2, 0, 4, 3, 6, 4, 2, 1, 1, 3, 1, - ], - }, - { - label: 'Coinbase', - topics: 'coinbase,altseason,altcoins,v2,cryptocurrency', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- Discussion about the $DYP token and its potential for a pump on Coinbase\n- Comparison between different cryptocurrencies such as $BTC, $XRP, $DOGE, $LTC, and $WOLF\n- Mining dogecoins and the influence of Elon Musk on the crypto market\n- Tokenomics and math behind certain cryptocurrencies\n- Trading setups and values for various cryptocurrencies\n- Project migrations and their impact on early supporters\n- Speculation about the price movement of $BTC and $DYP on Coinbase\n- Potential pump targets for $DYP on Coinbase\n- HODLing strategies and market predictions for $DYP\n- Anticipation of a pump for $DYP on Coinbase with a target of $0.288\n\nOverall, the sentiment seems to be bullish towards $DYP and other altcoins, with a focus on potential price increases and trading opportunities.', - data: [ - 1, 2, 3, 2, 1, 0, 3, 1, 3, 9, 7, 4, 7, 0, 1, 2, 2, 7, 6, 0, 5, 3, 1, 8, 0, 2, 3, 3, 0, 5, 1, - 1, 4, 1, 4, 4, 3, 3, 8, 4, 3, 3, 3, 3, 0, 7, 3, 0, 3, 4, 0, 8, 6, 2, 2, - ], - }, - { - label: 'Mining', - topics: 'mining,miners,hashrate,miner,energy', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include Bitcoin mining, Bitcoin hashrate, ROI for miners, Teranode software for Bitcoin mining, integrating Bitcoin mining in cities for offsetting heating costs, and concerns about mining centralization risks. Users are also discussing the differences between mining Bitcoin Cash (BCH) and Bitcoin (BTC), as well as the potential profitability of mining Bitcoin from home. Additionally, there is mention of a new initiative called Operation Bitcoin, aimed at educating and empowering military veterans in the world of Bitcoin.', - data: [ - 4, 0, 3, 1, 2, 19, 1, 0, 2, 1, 1, 2, 2, 2, 1, 5, 3, 5, 3, 2, 6, 1, 7, 2, 4, 2, 6, 6, 0, 2, - 2, 17, 2, 5, 2, 4, 0, 3, 3, 0, 3, 0, 1, 3, 0, 2, 5, 1, 1, 3, 1, 1, 3, 3, 0, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frens,street,wall,meme', - description: - "The key topics currently being discussed in the crypto community on Twitter include the rise of Pepe Coin ($PEPE) and its potential to challenge Shiba Inu's dominance in the meme coin race. There is a strong sentiment of holding onto $PEPE and not selling, with mentions of whale accumulation and bullish momentum building. Technical analysis suggests potential for a breakout and retest of range highs. Additionally, a new spot listing for Hispanic Pepe ($CONCHO) on BVOX has generated excitement among traders. Experts are also discussing the best performing coin to buy in 2025, with $PEPE being mentioned alongside Dogecoin and Bitcoin.", - data: [ - 2, 0, 0, 2, 2, 0, 2, 1, 2, 2, 1, 3, 4, 1, 6, 1, 0, 2, 5, 3, 2, 2, 3, 5, 0, 2, 1, 6, 5, 4, 4, - 4, 0, 2, 2, 2, 30, 4, 1, 5, 0, 3, 1, 3, 4, 1, 2, 0, 2, 0, 0, 0, 3, 0, 2, - ], - }, - { - label: 'Azuki & ANIME', - topics: 'azuki,anime,tokenomics,community,tge', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Azuki's $ANIME token: There is discussion about the recent pump on $ANIME tokenomics not lasting long, as well as the upcoming launch of the ANIME token on Ethereum. Azuki assets are being swept following the announcement of the $ANIME TGE coming in January, with 50% of the allocation reserved for the community.\n\n2. Collaboration on Anime: Despite attending a talk about India-Japan cooperation in various industries, some individuals are more interested in collaborating on Anime due to the influence of Web3 technology.\n\n3. Darkmachine launching an anime series: Proud announcements have been made about Darkmachine launching an anime series on a top TV anime network, with the TGE scheduled for January 16th.\n\n4. Gacha earned on each asset: There is discussion about the gacha earned on each asset in relation to $ANIME airdrop allocations, with the belief that gacha will play a significant role in allocations.\n\n5. Tokenomics of $ANIME: Azuki has released the tokenomics for the upcoming $ANIME token, with approximately 50% going to the community and 37.5% of that reserved for Azuki NFT ecosystem holders.\n\n6. Allocation projections for $ANIME: There are differing opinions on the allocation projections for $ANIME, with some believing that the community allocation will be higher than initially expected.\n\n7. Finalbosu x Lizard Labs: Lizard Labs NFT holders will have the chance to be part of the next big anime franchise Finalbosu, a decentralized Web3 anime franchise driven by a bold philosophy.\n\nOverall, the discussions on Twitter indicate a high level of interest and engagement in the crypto industry, particularly in relation to anime-themed tokens and collaborations.", - data: [ - 1, 2, 8, 6, 0, 0, 0, 4, 3, 1, 6, 3, 4, 3, 1, 2, 2, 1, 3, 3, 5, 0, 4, 2, 4, 2, 1, 4, 1, 2, 2, - 2, 3, 1, 1, 0, 0, 2, 4, 1, 5, 1, 2, 1, 1, 1, 3, 2, 2, 0, 1, 1, 0, 2, 2, - ], - }, - { - label: 'Defi', - topics: 'defi,protocols,finance,lending,cases', - description: - 'The key topics discussed in the messages from twitter about the crypto industry and DeFi include:\n1. DeFi protocols and projects such as FLUID, Solana x Alliance Ideathon, inSure DeFi, and XoxnoNetwork.\n2. The future of DeFi and its potential to revolutionize traditional banking systems.\n3. Crypto insurance and the importance of protecting investments in the volatile market.\n4. The evolution of DeFi mechanisms, including algorithmic-based and orderbook-based protocols.\n5. The role of stablecoin adoption in the DeFi ecosystem.\n6. The potential for DeFi to provide privacy and security for users.\n7. The growth and innovation within the DeFi space, with new players like XoxnoNetwork entering the market.\n8. The importance of informed investment decisions and analyzing projects like a pro in the DeFi industry.\nOverall, the messages reflect a positive outlook on the future of DeFi and its potential to disrupt traditional financial systems.', - data: [ - 1, 0, 0, 3, 3, 1, 2, 3, 3, 4, 1, 3, 0, 10, 2, 3, 1, 1, 7, 3, 2, 0, 0, 1, 2, 2, 5, 3, 0, 3, - 1, 1, 0, 3, 1, 1, 0, 4, 4, 5, 3, 2, 0, 3, 2, 1, 1, 1, 2, 0, 0, 2, 1, 4, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-55.json b/priv/repo/major_topics_seed/data-55.json deleted file mode 100644 index 05b566abf7..0000000000 --- a/priv/repo/major_topics_seed/data-55.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["16.01.25","17.01.25","17.01.25","17.01.25","17.01.25","17.01.25","17.01.25","17.01.25","18.01.25","18.01.25","18.01.25","18.01.25","18.01.25","18.01.25","18.01.25","18.01.25","19.01.25","19.01.25","19.01.25","19.01.25","19.01.25","19.01.25","19.01.25","19.01.25","20.01.25","20.01.25","20.01.25","20.01.25","20.01.25","20.01.25","20.01.25","20.01.25","21.01.25","21.01.25","21.01.25","21.01.25","21.01.25","21.01.25","21.01.25","21.01.25","22.01.25","22.01.25","22.01.25","22.01.25","22.01.25","22.01.25","22.01.25","22.01.25","23.01.25","23.01.25","23.01.25","23.01.25","23.01.25","23.01.25","23.01.25"],"datasets":[{"label":"ETH","topics":"ethereum,vitalik,eth,foundation,milady","description":"The key topics currently being discussed in the crypto community on Twitter include:\n1. Ethereum (ETH) price predictions and market trends\n2. Staking ETH and potential ETF news\n3. Criticism of the Ethereum Foundation and calls for a shift in mindset\n4. Concerns about centralization in the Ethereum ecosystem\n5. Comparison of Ethereum to other L1 platforms like Solana, Aptos, and Sui\n6. Loyalty and support for Ethereum despite market fluctuations\n7. Speculation on future price movements and investment strategies\n\nOverall, the sentiment towards Ethereum appears to be mixed, with some users expressing optimism about its future potential while others raise concerns about its competitiveness and governance.","data":[28,18,28,47,2,27,44,40,40,22,35,22,46,29,34,315,33,63,35,45,29,39,36,34,20,46,28,15,60,52,25,31,12,15,26,39,22,45,33,46,46,40,33,41,25,29,58,31,13,0,6,37,37,40,38]},{"label":"AI","topics":"ai,agents,agent,data,defai","description":"The key topics discussed in the messages from twitter are:\n1. AI coins and their potential for growth\n2. Concerns about AI taking over jobs and privacy issues\n3. Businesses incorporating AI to enhance customer experiences\n4. Millennials and Gen Z driving the future of consumer trends\n5. New partnerships, integrations, and advancements in AI-driven solutions\n6. Launch of AI agent by $NOTAI for tracking market trends and managing portfolios\n7. Artwork created using AI technology\n8. Unichain emerging as a groundbreaking contender in the DeFi and future AI agenting sector\n9. Discussion about quantum computing and its potential impact on AI development.","data":[59,221,34,22,2,14,24,10,31,29,22,19,20,13,23,5,22,16,28,21,32,19,10,23,27,20,20,11,21,14,15,27,9,20,30,29,9,27,22,23,16,27,16,16,15,30,26,14,12,0,4,28,16,22,25]},{"label":"Memecoins","topics":"meme,memes,memecoin,memecoins,coins","description":"The current topic being discussed on social media accounts and communities in the crypto industry is the rise of meme coins and meme coin investing. People are sharing memes, discussing meme coin millionaire status, and giving advice on taking profits from one meme coin and investing in another. There is excitement about meme coin breakout opportunities and the potential for a meme supercycle. Additionally, there is mention of specific meme coins like $Rekt and SOLETH, as well as discussions about the future of utility-less memecoins and their comparison to NFTs. Some users are sharing their experiences of making significant profits from meme coin investments, highlighting the volatile and euphoric nature of the market. There is also a mention of a meme avatar challenge hosted by LBank and MyShell, offering a prize pool for participants. Overall, the sentiment seems to be one of excitement and opportunity within the meme coin space.","data":[14,13,12,17,11,7,6,15,22,22,15,14,6,43,13,11,36,24,22,23,28,29,9,13,20,18,29,16,22,16,215,21,4,30,15,24,13,10,25,20,15,24,12,19,17,12,23,14,8,0,4,17,24,17,10]},{"label":"Trump's pardon of Ross Ulbricht","topics":"ross,ulbricht,pardon,silk,road","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. Trump's pardon of Ross Ulbricht, the founder of Silk Road, and the impact on Bitcoin prices and the crypto community.\n2. The establishment of a 'Strategic Stockpile' working group by David Sacks and Bo Hines.\n3. The potential for regulatory clarity in the crypto industry, as discussed by bank executives at Davos.\n4. The rescinding of SAB 121 by the SEC, signaling potential changes in accounting regulations for crypto companies.\n5. Speculation on the future of Bitcoin prices and adoption, with Coinbase CEO predicting multimillion-dollar prices.\n6. Polymarket's prediction of an 84% chance of Trump pardoning Ross Ulbricht, with Elon Musk's confirmation adding weight to the speculation.\n7. The impact of Ross Ulbricht's full pardon on the crypto community and the perceived unfairness of his double-life sentence.\n8. The ongoing war and efforts for peace, with Brett McGurk playing a key role in negotiations.\n9. The significance of promises made and kept in the context of political decisions and actions.\n10. The debate over the morality and legality of Silk Road and Ross Ulbricht's involvement in facilitating financial transactions in Bitcoin.","data":[4,1,5,6,6,4,13,2,8,5,10,4,18,5,9,1,4,14,30,11,3,8,6,7,4,18,10,7,3,5,2,4,2,6,18,5,6,13,15,26,4,7,5,5,13,6,7,8,7,18,12,4,8,6,5]},{"label":"XRP","topics":"xrp,ripple,sec,surge,ledger","description":"The key topics discussed in the messages from twitter are:\n- XRP being compared to Bitcoin in terms of speed\n- High gas fees on the Ethereum network\n- Congestion on the Solana network leading to failed transactions\n- Trading tips and focusing on coins that haven't surged recently\n- Ripple CEO breaking silence on XRP, SOL, and USDC strategic reserves\n- XRP price reaching $3 for the first time in 7 years\n- Potential price surge for XRP with $288 million outflow\n- XRP surging and inching closer to flipping ETH\n- Core markets being restored on Arbitrum\n- Comparison of XRP and QNT as stablecoins\n- Potential $20 target for XRP price chart\n- Insider purchases and supply agreements affecting XRP price\n- Analyst projecting XRP jump to $4.89\n- Accumulating XRP under $5 in anticipation of positive news from the US government\n- Whales accumulating $3.8B XRP amid ETF speculation and legal optimism\n- Hot RDNT emissions in the new Arbitrum core markets\n- Changes in reward distribution and emissions in core markets\n- Potential for Core overtaking XRP this year\n\nOverall, the discussions revolve around the performance, potential price movements, and market dynamics of XRP, as well as comparisons with other cryptocurrencies like Bitcoin and Ethereum. Trading tips, insider activity, and regulatory developments are also highlighted in the messages.","data":[6,6,11,7,2,2,6,6,6,2,6,9,6,8,11,2,10,10,6,6,9,3,12,7,5,1,10,6,9,6,5,8,1,3,8,2,20,9,12,22,8,9,7,7,25,4,4,7,2,1,1,10,8,9,6]},{"label":"Market volatility","topics":"youre,money,make,focus,dont","description":"The key topics discussed in the messages from twitter are:\n- Market volatility and liquidity games\n- Importance of patience in trading and risk management\n- Dismissing claims of market top and PTSD from previous market experiences\n- Learning from role models and antimodels in the crypto industry\n- Opportunity in coins going down due to temporary attention or team incompetence\n- Waves of market movements and limited liquidity\n- Dealing with opportunistic competitors in the industry\n- Panic selling and buying behaviors in response to FUD\n- Advice for developers to focus on their projects instead of spreading FUD\n- Importance of concentrating on project development rather than price fluctuations\n\nOverall, the messages reflect a mix of market analysis, trading strategies, psychological aspects of investing, and advice for industry participants.","data":[6,4,5,7,1,1,4,6,5,4,9,15,3,2,9,0,9,5,6,13,5,8,5,1,7,7,6,14,7,20,2,7,0,0,5,17,9,9,9,7,7,9,8,8,10,6,18,12,8,0,2,3,11,11,5]},{"label":"Art","topics":"art,artist,artists,piece,work","description":"The key topics discussed in the messages from twitter are:\n1. The importance of art in providing peace and healing during chaotic times.\n2. The value of engagement as the new currency for artists.\n3. The development of new art materials and techniques, such as Black 3.0 and Vantablack.\n4. The intersection of music and art in forming a dialogue between humans and technology.\n5. The historical significance of sculpture in ancient Greece and the artistic accomplishments of Michelangelo.\n6. The use of mixed media art to create unique and evocative pieces.\n7. The collaboration between artists and illustrators for themed projects.\n8. The upcoming launch of @rainbowdotme on @berachain and the search for talented illustrators.\n9. The creation of art pillows as new products for an All Around Artsy store.\n10. The showcasing of various artists' works and projects, such as \"Siete Sangrías\" by @MellodoraArt and the landmarks of Mexico City by Cizza Bernal.","data":[5,4,76,10,3,5,2,11,5,10,10,10,3,7,6,2,4,7,3,9,6,5,5,6,5,3,5,3,8,1,3,7,4,5,10,13,3,5,2,1,1,11,5,6,8,4,8,7,2,0,3,6,4,7,3]},{"label":"BTC Hits $100K","topics":"high,100k,hits,alltime,bitcoin","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin hitting a $1M price tag\n- Altcoins crashing following Bank of Japan rate hike\n- Bitcoin reaching new all-time highs\n- Executive order potentially setting a minimum price for Bitcoin\n- Large Bitcoin price fluctuations, including a jump to over $107,000\n- Institutional investors fueling Bitcoin's surge\n- Bitcoin breaking new all-time highs when priced in US government debt\n- Bitcoin's price dropping below $100,000 and then rebounding to $102,000\n- Altcoin boom following Bitcoin's milestones\n\nOverall, the sentiment seems to be positive towards Bitcoin and the crypto market, with excitement around potential price increases and institutional interest driving the market.","data":[3,3,2,1,46,39,14,6,3,8,4,8,0,3,1,3,4,6,4,4,6,7,35,3,6,3,5,6,2,4,4,3,4,8,5,1,6,5,12,4,6,6,5,1,6,11,5,13,2,0,0,7,1,5,7]},{"label":"BTC Price","topics":"range,resistance,btc,breakout,retest","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Bitcoin price movements: There are discussions about Bitcoin's price reaching new all-time highs, potential resistance levels, and the possibility of a breakout or correction. Traders are analyzing various technical indicators and patterns to predict future price movements.\n\n2. Market manipulation: There are mentions of manipulation zones, false breakouts, and baiting shorts, indicating concerns about market manipulation in the crypto industry.\n\n3. Altcoins performance: There is a comparison between Bitcoin's performance and that of altcoins, with a focus on Bitcoin dominance and volatility in the altcoin market.\n\n4. Support and resistance levels: Traders are closely monitoring key support and resistance levels for Bitcoin, such as $106,000, $120,000, and $130,000, to determine potential price movements.\n\n5. Investor sentiment: There are discussions about investor sentiment, with mentions of diamond hands (holding onto investments despite market fluctuations) and the expectation of increased volatility during bull markets.\n\nOverall, the crypto community on Twitter is actively discussing price predictions, market trends, and potential trading strategies for Bitcoin and other cryptocurrencies.","data":[5,1,2,1,28,14,41,6,15,4,9,21,4,2,1,1,8,6,1,5,7,6,10,3,5,5,0,6,11,12,3,8,1,3,4,5,4,4,6,7,5,3,5,2,9,10,4,7,7,0,1,5,2,3,3]},{"label":"DOGE","topics":"dogecoin,doge,69,lets,aka","description":"The key topics discussed in the messages from Twitter about the crypto industry, specifically Dogecoin ($DOGE), include:\n- Speculation on Dogecoin reaching a new all-time high soon\n- Potential bullish events for Dogecoin in the future\n- Target prices for Dogecoin, with $4.2069 mentioned as a target\n- Mention of Dogecoin being a smart buy\n- Collaboration between Doge Pound and Good Vibes Club for an upcoming mint\n- Discussion about Dogecoin's performance, including hitting a low of .335 before rebounding to .40\n- Addition of a Dogecoin section on the US Debt Clock website\n- Mention of a future where everything is stored on the blockchain\n- Instructions on how to participate in a giveaway related to Dogecoin\n- Reference to a memecoin available on Moonshot\n- Sharing of wallet addresses for ETH and SOL\n\nOverall, the messages reflect a mix of speculation, analysis, collaboration, and community engagement related to Dogecoin and the broader crypto industry.","data":[4,3,4,1,1,2,3,3,2,6,4,3,2,135,3,2,7,2,2,7,3,1,6,2,3,4,5,4,1,3,0,2,1,4,4,4,9,6,3,2,3,5,7,6,0,5,7,1,0,0,2,1,8,6,4]},{"label":"Trump signing an executive order related to crypto ","topics":"executive,order,orders,signed,signs","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are:\n1. Trump signing an executive order related to crypto\n2. Speculation about a potential Bitcoin Strategic Reserve being announced\n3. The possibility of designating crypto as a national priority, including the consideration of a \"national Bitcoin stockpile\"\n4. The impact of Trump's actions on the crypto market and industry\n5. The potential implications of Trump's executive orders on Bitcoin mining and infrastructure\n6. The partnership between Metaco and HSBC for custody services in the crypto industry\n7. The significance of El Salvador's adoption of Bitcoin as legal tender in relation to Trump's actions\n8. The overall excitement and anticipation surrounding Trump's involvement in the crypto industry.","data":[8,5,5,5,1,8,37,4,3,2,2,2,8,1,5,7,19,0,0,2,3,3,4,1,8,2,4,4,3,4,1,3,1,10,4,3,2,1,4,5,7,0,25,0,0,1,2,0,19,17,35,1,3,0,4]},{"label":"ANIME","topics":"anime,azuki,arbitrum,claim,tge","description":"The messages from Twitter are discussing the crypto industry, specifically focusing on the $ANIME token and the Azuki ecosystem. Key topics include the dumping of Azuki floors, the debut of Azuki's Animecoin at $1.2B FDV, a Japanese House of Representatives member mining Bitcoin, Coincheck dominating Japan's Bitcoin spot trading, the $ANIME airdrop, the Azuki community, NFT market sales, and the listing of $ANIME on Binance. There is also mention of trading opportunities and strategies related to Azuki and $ANIME tokens. Overall, the discussion revolves around the excitement and activity within the $ANIME community and the broader crypto market.","data":[3,38,8,3,1,6,3,2,9,5,7,6,2,0,8,3,4,5,3,9,3,1,7,2,6,3,7,9,4,2,2,1,9,6,2,7,4,5,2,3,2,9,1,1,2,2,3,8,0,0,0,1,1,1,3]},{"label":"SOL","topics":"sol,solana,eth,ath,price","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto community about Solana ($SOL) include:\n1. Comparison between investing in $ETH and $SOL, with a preference for $SOL due to it being seen as \"the people's coin\" compared to Ethereum being \"the elite's coin\".\n2. The potential for $SOL to outperform $ETH in terms of market cap and usage as a smart contract platform.\n3. The benefits of staking $SOL, including high APYs and potential for future gains.\n4. Speculation on whether Solana could surpass Ethereum as the top Layer 1 blockchain by 2025.\n5. The launch of a memecoin on Solana by Trump and its impact on the debate between $SOL and $ETH.\n6. Whales showing interest in Solana as the price remains above $200.\n7. Discussion on the bullish momentum of $SOL and the potential for further price increases.\n8. Recommendations for buying and staking $SOL for long-term gains.\n9. Updates on key price levels and technical analysis for $SOL.\n10. Information on projects built on Solana, such as $OTK, and their integration with NFT collections.\n\nOverall, the sentiment towards Solana appears to be positive, with many users expressing confidence in its potential for growth and adoption in the crypto industry.","data":[4,0,3,3,0,1,7,4,7,0,0,5,1,2,4,0,4,7,1,3,1,2,10,8,1,2,1,5,6,2,1,4,2,6,6,4,4,2,4,3,3,2,52,3,6,7,9,6,4,0,1,7,1,4,2]},{"label":"Trump's World Liberty","topics":"liberty,world,financial,wlfi,47m","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- Trump's World Liberty Finance (WLFI) buying large amounts of Ethereum (ETH) and other cryptocurrencies\n- Trump administration considering selling federal government office stock\n- Melania's memecoin hitting a $6B market cap\n- Billionaire real estate investor Steve Witkoff and Trump's involvement in a new cryptocurrency company\n- World Liberty Finance accumulating ETH and other cryptocurrencies\n- Justin Sun joining World Liberty Finance as an advisor\n- World Liberty Finance swapping USDC for ETH\n- World Liberty Finance ramping up its ETH holdings\n\nOverall, the messages indicate a significant interest and activity in the crypto industry, particularly related to Trump's World Liberty Finance and their investments in Ethereum and other cryptocurrencies.","data":[7,2,1,6,1,5,10,10,1,3,2,4,2,0,0,1,5,12,0,0,0,4,2,2,5,1,1,6,4,3,0,0,0,3,6,0,1,6,1,1,0,1,1,5,0,2,0,5,18,14,28,5,1,2,8]},{"label":"Establishment of a Strategic Bitcoin Reserve by the US government","topics":"reserve,strategic,stockpile,asset,bitcoin","description":"The key topic discussed in the messages from twitter is the establishment of a Strategic Bitcoin Reserve by the US government. The idea is to accumulate a significant amount of Bitcoin over the next few years to strengthen national security and ensure the US remains a leader in the crypto industry. Discussions also mention the potential benefits of mining BTC and staking ETH as part of the reserve strategy. Overall, the concept of a Strategic Bitcoin Reserve is seen as a crucial step for the US government to secure its position in the evolving digital asset landscape.","data":[1,0,2,6,15,2,2,3,1,0,3,3,3,9,0,1,2,1,2,5,1,2,5,5,3,3,3,1,4,5,3,6,0,1,2,4,2,4,4,5,2,2,2,6,53,1,2,1,0,0,0,3,2,4,0]},{"label":"GameFi","topics":"gaming,games,immutable,game,web3","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the integration of blockchain technology in gaming, the rise of Web3 innovations in gaming, the potential for Play2Earn models in mobile gaming, and the intersection between AI and gaming. Projects like HeLa Space, Beam Ventures, and Alien Worlds are mentioned as pioneers in these areas. Additionally, the discussion also touches on the success of certain games like Axie Infinity and Pixels in the Web3 space, as well as the potential for career opportunities in the gaming industry. Overall, the focus seems to be on the transformative power of blockchain technology and decentralized applications in revolutionizing the gaming sector.","data":[3,7,3,2,1,1,1,1,3,5,9,1,0,0,4,3,3,2,33,1,2,2,0,7,3,2,6,2,3,2,2,0,0,5,9,3,8,2,1,3,1,1,1,0,4,3,5,2,0,0,0,3,2,3,7]},{"label":"BTC","topics":"bitcoin,evolution,true,brian,roads","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin and its impact on the world\n- Game Theory and Bitcoin\n- NgU technology explained\n- Current feelings about Bitcoin\n- Fast-moving Bitcoin market\n- Spot & chill strategy\n- Denzel's hoodie\n- Bitcoin treasury strategy\n- Bitcoin core development by @lopp\n\nOverall, the sentiment towards Bitcoin seems positive and there is a lot of interest and excitement surrounding its future developments and market movements.","data":[6,1,1,2,33,6,4,2,4,2,1,6,2,2,0,4,5,5,0,2,4,4,2,4,4,6,2,2,2,1,1,6,2,2,4,1,1,1,3,1,2,2,2,3,1,3,2,3,4,0,1,1,2,3,5]},{"label":"DeFi","topics":"defi,ecosystem,dao,protocols,privacy","description":"The key topics currently being discussed in the crypto industry on Twitter include DeFi fees, the rise of DeFi projects, the importance of compliance with regulations like DORA, the development of new DeFi platforms like DeepBook and Radix, the need for informed investing in DeFi with platforms like Fronesis, and the introduction of innovative projects like Injective and Tethereum. Overall, the sentiment seems to be optimistic about the future of DeFi and the potential for growth and innovation in the industry.","data":[1,0,1,2,0,2,4,0,2,1,3,1,8,4,6,4,5,2,1,3,2,6,2,2,4,6,5,9,2,1,2,2,2,3,5,2,2,6,4,7,1,6,5,3,8,2,2,3,1,0,0,2,4,1,3]},{"label":"ETF Flows","topics":"etfs,inflows,net,etf,spot","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n\n1. Bitcoin ETFs: There is a lot of excitement surrounding the recent inflows into Bitcoin ETFs, with BlackRock's IBIT leading the way in terms of net inflows. The total net asset value of Bitcoin ETFs is increasing, indicating bullish momentum in the market.\n\n2. Downside protection and capped upside: Calamos Investments has launched Bitcoin ETFs with downside protection and capped upside, offering varying risk levels for investors. This new development is attracting attention in the industry.\n\n3. Trading volume and inflows: There is a significant focus on the trading volume and net inflows of Bitcoin ETFs, with institutions showing interest and piling into the market. The inflows have been consistent over multiple days, indicating growing interest in Bitcoin investments.\n\nOverall, the sentiment on Twitter seems to be positive towards Bitcoin ETFs and the potential for growth in the crypto industry. Investors are closely monitoring the market trends and developments in this space.","data":[3,0,2,0,9,5,1,5,0,3,1,3,2,1,1,22,1,7,1,0,5,0,2,1,6,2,5,0,0,3,0,3,1,1,0,1,1,3,0,0,0,2,0,18,4,1,0,7,2,0,0,4,0,2,1]},{"label":"The announcement of \"Project Stargate\" by President Trump","topics":"stargate,openai,oracle,infrastructure,500","description":"The key topic discussed in the messages from Twitter is the announcement of \"Project Stargate\" by President Trump, which involves a massive investment of $500 billion in American AI infrastructure. The project is a joint venture with OpenAI, Oracle, and SoftBank, with additional support from Microsoft and Nvidia. This investment aims to revolutionize healthcare and cement US leadership in AI technology. The project will start with the construction of a giant data center in Texas, with plans for additional data centers in the future. The announcement has led to a rally in tech stocks, particularly Nvidia, and has generated excitement in the retail sector. The project is seen as a significant step towards advancing AI technology and shaping the future of the industry.","data":[0,9,10,3,0,3,10,1,2,2,1,1,0,2,2,0,0,2,0,4,3,1,1,0,1,1,4,1,0,1,0,1,1,2,2,1,0,4,3,5,2,0,2,6,6,1,0,3,12,0,9,3,1,0,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-55.ts b/priv/repo/major_topics_seed/data-55.ts deleted file mode 100644 index abdf191750..0000000000 --- a/priv/repo/major_topics_seed/data-55.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '16.01.25', - '17.01.25', - '17.01.25', - '17.01.25', - '17.01.25', - '17.01.25', - '17.01.25', - '17.01.25', - '18.01.25', - '18.01.25', - '18.01.25', - '18.01.25', - '18.01.25', - '18.01.25', - '18.01.25', - '18.01.25', - '19.01.25', - '19.01.25', - '19.01.25', - '19.01.25', - '19.01.25', - '19.01.25', - '19.01.25', - '19.01.25', - '20.01.25', - '20.01.25', - '20.01.25', - '20.01.25', - '20.01.25', - '20.01.25', - '20.01.25', - '20.01.25', - '21.01.25', - '21.01.25', - '21.01.25', - '21.01.25', - '21.01.25', - '21.01.25', - '21.01.25', - '21.01.25', - '22.01.25', - '22.01.25', - '22.01.25', - '22.01.25', - '22.01.25', - '22.01.25', - '22.01.25', - '22.01.25', - '23.01.25', - '23.01.25', - '23.01.25', - '23.01.25', - '23.01.25', - '23.01.25', - '23.01.25', - ], - datasets: [ - { - label: 'ETH', - topics: 'ethereum,vitalik,eth,foundation,milady', - description: - 'The key topics currently being discussed in the crypto community on Twitter include:\n1. Ethereum (ETH) price predictions and market trends\n2. Staking ETH and potential ETF news\n3. Criticism of the Ethereum Foundation and calls for a shift in mindset\n4. Concerns about centralization in the Ethereum ecosystem\n5. Comparison of Ethereum to other L1 platforms like Solana, Aptos, and Sui\n6. Loyalty and support for Ethereum despite market fluctuations\n7. Speculation on future price movements and investment strategies\n\nOverall, the sentiment towards Ethereum appears to be mixed, with some users expressing optimism about its future potential while others raise concerns about its competitiveness and governance.', - data: [ - 28, 18, 28, 47, 2, 27, 44, 40, 40, 22, 35, 22, 46, 29, 34, 315, 33, 63, 35, 45, 29, 39, 36, - 34, 20, 46, 28, 15, 60, 52, 25, 31, 12, 15, 26, 39, 22, 45, 33, 46, 46, 40, 33, 41, 25, 29, - 58, 31, 13, 0, 6, 37, 37, 40, 38, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,data,defai', - description: - 'The key topics discussed in the messages from twitter are:\n1. AI coins and their potential for growth\n2. Concerns about AI taking over jobs and privacy issues\n3. Businesses incorporating AI to enhance customer experiences\n4. Millennials and Gen Z driving the future of consumer trends\n5. New partnerships, integrations, and advancements in AI-driven solutions\n6. Launch of AI agent by $NOTAI for tracking market trends and managing portfolios\n7. Artwork created using AI technology\n8. Unichain emerging as a groundbreaking contender in the DeFi and future AI agenting sector\n9. Discussion about quantum computing and its potential impact on AI development.', - data: [ - 59, 221, 34, 22, 2, 14, 24, 10, 31, 29, 22, 19, 20, 13, 23, 5, 22, 16, 28, 21, 32, 19, 10, - 23, 27, 20, 20, 11, 21, 14, 15, 27, 9, 20, 30, 29, 9, 27, 22, 23, 16, 27, 16, 16, 15, 30, - 26, 14, 12, 0, 4, 28, 16, 22, 25, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memes,memecoin,memecoins,coins', - description: - 'The current topic being discussed on social media accounts and communities in the crypto industry is the rise of meme coins and meme coin investing. People are sharing memes, discussing meme coin millionaire status, and giving advice on taking profits from one meme coin and investing in another. There is excitement about meme coin breakout opportunities and the potential for a meme supercycle. Additionally, there is mention of specific meme coins like $Rekt and SOLETH, as well as discussions about the future of utility-less memecoins and their comparison to NFTs. Some users are sharing their experiences of making significant profits from meme coin investments, highlighting the volatile and euphoric nature of the market. There is also a mention of a meme avatar challenge hosted by LBank and MyShell, offering a prize pool for participants. Overall, the sentiment seems to be one of excitement and opportunity within the meme coin space.', - data: [ - 14, 13, 12, 17, 11, 7, 6, 15, 22, 22, 15, 14, 6, 43, 13, 11, 36, 24, 22, 23, 28, 29, 9, 13, - 20, 18, 29, 16, 22, 16, 215, 21, 4, 30, 15, 24, 13, 10, 25, 20, 15, 24, 12, 19, 17, 12, 23, - 14, 8, 0, 4, 17, 24, 17, 10, - ], - }, - { - label: "Trump's pardon of Ross Ulbricht", - topics: 'ross,ulbricht,pardon,silk,road', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n1. Trump's pardon of Ross Ulbricht, the founder of Silk Road, and the impact on Bitcoin prices and the crypto community.\n2. The establishment of a 'Strategic Stockpile' working group by David Sacks and Bo Hines.\n3. The potential for regulatory clarity in the crypto industry, as discussed by bank executives at Davos.\n4. The rescinding of SAB 121 by the SEC, signaling potential changes in accounting regulations for crypto companies.\n5. Speculation on the future of Bitcoin prices and adoption, with Coinbase CEO predicting multimillion-dollar prices.\n6. Polymarket's prediction of an 84% chance of Trump pardoning Ross Ulbricht, with Elon Musk's confirmation adding weight to the speculation.\n7. The impact of Ross Ulbricht's full pardon on the crypto community and the perceived unfairness of his double-life sentence.\n8. The ongoing war and efforts for peace, with Brett McGurk playing a key role in negotiations.\n9. The significance of promises made and kept in the context of political decisions and actions.\n10. The debate over the morality and legality of Silk Road and Ross Ulbricht's involvement in facilitating financial transactions in Bitcoin.", - data: [ - 4, 1, 5, 6, 6, 4, 13, 2, 8, 5, 10, 4, 18, 5, 9, 1, 4, 14, 30, 11, 3, 8, 6, 7, 4, 18, 10, 7, - 3, 5, 2, 4, 2, 6, 18, 5, 6, 13, 15, 26, 4, 7, 5, 5, 13, 6, 7, 8, 7, 18, 12, 4, 8, 6, 5, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,surge,ledger', - description: - "The key topics discussed in the messages from twitter are:\n- XRP being compared to Bitcoin in terms of speed\n- High gas fees on the Ethereum network\n- Congestion on the Solana network leading to failed transactions\n- Trading tips and focusing on coins that haven't surged recently\n- Ripple CEO breaking silence on XRP, SOL, and USDC strategic reserves\n- XRP price reaching $3 for the first time in 7 years\n- Potential price surge for XRP with $288 million outflow\n- XRP surging and inching closer to flipping ETH\n- Core markets being restored on Arbitrum\n- Comparison of XRP and QNT as stablecoins\n- Potential $20 target for XRP price chart\n- Insider purchases and supply agreements affecting XRP price\n- Analyst projecting XRP jump to $4.89\n- Accumulating XRP under $5 in anticipation of positive news from the US government\n- Whales accumulating $3.8B XRP amid ETF speculation and legal optimism\n- Hot RDNT emissions in the new Arbitrum core markets\n- Changes in reward distribution and emissions in core markets\n- Potential for Core overtaking XRP this year\n\nOverall, the discussions revolve around the performance, potential price movements, and market dynamics of XRP, as well as comparisons with other cryptocurrencies like Bitcoin and Ethereum. Trading tips, insider activity, and regulatory developments are also highlighted in the messages.", - data: [ - 6, 6, 11, 7, 2, 2, 6, 6, 6, 2, 6, 9, 6, 8, 11, 2, 10, 10, 6, 6, 9, 3, 12, 7, 5, 1, 10, 6, 9, - 6, 5, 8, 1, 3, 8, 2, 20, 9, 12, 22, 8, 9, 7, 7, 25, 4, 4, 7, 2, 1, 1, 10, 8, 9, 6, - ], - }, - { - label: 'Market volatility', - topics: 'youre,money,make,focus,dont', - description: - 'The key topics discussed in the messages from twitter are:\n- Market volatility and liquidity games\n- Importance of patience in trading and risk management\n- Dismissing claims of market top and PTSD from previous market experiences\n- Learning from role models and antimodels in the crypto industry\n- Opportunity in coins going down due to temporary attention or team incompetence\n- Waves of market movements and limited liquidity\n- Dealing with opportunistic competitors in the industry\n- Panic selling and buying behaviors in response to FUD\n- Advice for developers to focus on their projects instead of spreading FUD\n- Importance of concentrating on project development rather than price fluctuations\n\nOverall, the messages reflect a mix of market analysis, trading strategies, psychological aspects of investing, and advice for industry participants.', - data: [ - 6, 4, 5, 7, 1, 1, 4, 6, 5, 4, 9, 15, 3, 2, 9, 0, 9, 5, 6, 13, 5, 8, 5, 1, 7, 7, 6, 14, 7, - 20, 2, 7, 0, 0, 5, 17, 9, 9, 9, 7, 7, 9, 8, 8, 10, 6, 18, 12, 8, 0, 2, 3, 11, 11, 5, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,work', - description: - 'The key topics discussed in the messages from twitter are:\n1. The importance of art in providing peace and healing during chaotic times.\n2. The value of engagement as the new currency for artists.\n3. The development of new art materials and techniques, such as Black 3.0 and Vantablack.\n4. The intersection of music and art in forming a dialogue between humans and technology.\n5. The historical significance of sculpture in ancient Greece and the artistic accomplishments of Michelangelo.\n6. The use of mixed media art to create unique and evocative pieces.\n7. The collaboration between artists and illustrators for themed projects.\n8. The upcoming launch of @rainbowdotme on @berachain and the search for talented illustrators.\n9. The creation of art pillows as new products for an All Around Artsy store.\n10. The showcasing of various artists\' works and projects, such as "Siete Sangrías" by @MellodoraArt and the landmarks of Mexico City by Cizza Bernal.', - data: [ - 5, 4, 76, 10, 3, 5, 2, 11, 5, 10, 10, 10, 3, 7, 6, 2, 4, 7, 3, 9, 6, 5, 5, 6, 5, 3, 5, 3, 8, - 1, 3, 7, 4, 5, 10, 13, 3, 5, 2, 1, 1, 11, 5, 6, 8, 4, 8, 7, 2, 0, 3, 6, 4, 7, 3, - ], - }, - { - label: 'BTC Hits $100K', - topics: 'high,100k,hits,alltime,bitcoin', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin hitting a $1M price tag\n- Altcoins crashing following Bank of Japan rate hike\n- Bitcoin reaching new all-time highs\n- Executive order potentially setting a minimum price for Bitcoin\n- Large Bitcoin price fluctuations, including a jump to over $107,000\n- Institutional investors fueling Bitcoin's surge\n- Bitcoin breaking new all-time highs when priced in US government debt\n- Bitcoin's price dropping below $100,000 and then rebounding to $102,000\n- Altcoin boom following Bitcoin's milestones\n\nOverall, the sentiment seems to be positive towards Bitcoin and the crypto market, with excitement around potential price increases and institutional interest driving the market.", - data: [ - 3, 3, 2, 1, 46, 39, 14, 6, 3, 8, 4, 8, 0, 3, 1, 3, 4, 6, 4, 4, 6, 7, 35, 3, 6, 3, 5, 6, 2, - 4, 4, 3, 4, 8, 5, 1, 6, 5, 12, 4, 6, 6, 5, 1, 6, 11, 5, 13, 2, 0, 0, 7, 1, 5, 7, - ], - }, - { - label: 'BTC Price', - topics: 'range,resistance,btc,breakout,retest', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Bitcoin price movements: There are discussions about Bitcoin's price reaching new all-time highs, potential resistance levels, and the possibility of a breakout or correction. Traders are analyzing various technical indicators and patterns to predict future price movements.\n\n2. Market manipulation: There are mentions of manipulation zones, false breakouts, and baiting shorts, indicating concerns about market manipulation in the crypto industry.\n\n3. Altcoins performance: There is a comparison between Bitcoin's performance and that of altcoins, with a focus on Bitcoin dominance and volatility in the altcoin market.\n\n4. Support and resistance levels: Traders are closely monitoring key support and resistance levels for Bitcoin, such as $106,000, $120,000, and $130,000, to determine potential price movements.\n\n5. Investor sentiment: There are discussions about investor sentiment, with mentions of diamond hands (holding onto investments despite market fluctuations) and the expectation of increased volatility during bull markets.\n\nOverall, the crypto community on Twitter is actively discussing price predictions, market trends, and potential trading strategies for Bitcoin and other cryptocurrencies.", - data: [ - 5, 1, 2, 1, 28, 14, 41, 6, 15, 4, 9, 21, 4, 2, 1, 1, 8, 6, 1, 5, 7, 6, 10, 3, 5, 5, 0, 6, - 11, 12, 3, 8, 1, 3, 4, 5, 4, 4, 6, 7, 5, 3, 5, 2, 9, 10, 4, 7, 7, 0, 1, 5, 2, 3, 3, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,69,lets,aka', - description: - "The key topics discussed in the messages from Twitter about the crypto industry, specifically Dogecoin ($DOGE), include:\n- Speculation on Dogecoin reaching a new all-time high soon\n- Potential bullish events for Dogecoin in the future\n- Target prices for Dogecoin, with $4.2069 mentioned as a target\n- Mention of Dogecoin being a smart buy\n- Collaboration between Doge Pound and Good Vibes Club for an upcoming mint\n- Discussion about Dogecoin's performance, including hitting a low of .335 before rebounding to .40\n- Addition of a Dogecoin section on the US Debt Clock website\n- Mention of a future where everything is stored on the blockchain\n- Instructions on how to participate in a giveaway related to Dogecoin\n- Reference to a memecoin available on Moonshot\n- Sharing of wallet addresses for ETH and SOL\n\nOverall, the messages reflect a mix of speculation, analysis, collaboration, and community engagement related to Dogecoin and the broader crypto industry.", - data: [ - 4, 3, 4, 1, 1, 2, 3, 3, 2, 6, 4, 3, 2, 135, 3, 2, 7, 2, 2, 7, 3, 1, 6, 2, 3, 4, 5, 4, 1, 3, - 0, 2, 1, 4, 4, 4, 9, 6, 3, 2, 3, 5, 7, 6, 0, 5, 7, 1, 0, 0, 2, 1, 8, 6, 4, - ], - }, - { - label: 'Trump signing an executive order related to crypto ', - topics: 'executive,order,orders,signed,signs', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry are:\n1. Trump signing an executive order related to crypto\n2. Speculation about a potential Bitcoin Strategic Reserve being announced\n3. The possibility of designating crypto as a national priority, including the consideration of a \"national Bitcoin stockpile\"\n4. The impact of Trump's actions on the crypto market and industry\n5. The potential implications of Trump's executive orders on Bitcoin mining and infrastructure\n6. The partnership between Metaco and HSBC for custody services in the crypto industry\n7. The significance of El Salvador's adoption of Bitcoin as legal tender in relation to Trump's actions\n8. The overall excitement and anticipation surrounding Trump's involvement in the crypto industry.", - data: [ - 8, 5, 5, 5, 1, 8, 37, 4, 3, 2, 2, 2, 8, 1, 5, 7, 19, 0, 0, 2, 3, 3, 4, 1, 8, 2, 4, 4, 3, 4, - 1, 3, 1, 10, 4, 3, 2, 1, 4, 5, 7, 0, 25, 0, 0, 1, 2, 0, 19, 17, 35, 1, 3, 0, 4, - ], - }, - { - label: 'ANIME', - topics: 'anime,azuki,arbitrum,claim,tge', - description: - "The messages from Twitter are discussing the crypto industry, specifically focusing on the $ANIME token and the Azuki ecosystem. Key topics include the dumping of Azuki floors, the debut of Azuki's Animecoin at $1.2B FDV, a Japanese House of Representatives member mining Bitcoin, Coincheck dominating Japan's Bitcoin spot trading, the $ANIME airdrop, the Azuki community, NFT market sales, and the listing of $ANIME on Binance. There is also mention of trading opportunities and strategies related to Azuki and $ANIME tokens. Overall, the discussion revolves around the excitement and activity within the $ANIME community and the broader crypto market.", - data: [ - 3, 38, 8, 3, 1, 6, 3, 2, 9, 5, 7, 6, 2, 0, 8, 3, 4, 5, 3, 9, 3, 1, 7, 2, 6, 3, 7, 9, 4, 2, - 2, 1, 9, 6, 2, 7, 4, 5, 2, 3, 2, 9, 1, 1, 2, 2, 3, 8, 0, 0, 0, 1, 1, 1, 3, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,eth,ath,price', - description: - 'Based on the messages from Twitter, the key topics currently being discussed in the crypto community about Solana ($SOL) include:\n1. Comparison between investing in $ETH and $SOL, with a preference for $SOL due to it being seen as "the people\'s coin" compared to Ethereum being "the elite\'s coin".\n2. The potential for $SOL to outperform $ETH in terms of market cap and usage as a smart contract platform.\n3. The benefits of staking $SOL, including high APYs and potential for future gains.\n4. Speculation on whether Solana could surpass Ethereum as the top Layer 1 blockchain by 2025.\n5. The launch of a memecoin on Solana by Trump and its impact on the debate between $SOL and $ETH.\n6. Whales showing interest in Solana as the price remains above $200.\n7. Discussion on the bullish momentum of $SOL and the potential for further price increases.\n8. Recommendations for buying and staking $SOL for long-term gains.\n9. Updates on key price levels and technical analysis for $SOL.\n10. Information on projects built on Solana, such as $OTK, and their integration with NFT collections.\n\nOverall, the sentiment towards Solana appears to be positive, with many users expressing confidence in its potential for growth and adoption in the crypto industry.', - data: [ - 4, 0, 3, 3, 0, 1, 7, 4, 7, 0, 0, 5, 1, 2, 4, 0, 4, 7, 1, 3, 1, 2, 10, 8, 1, 2, 1, 5, 6, 2, - 1, 4, 2, 6, 6, 4, 4, 2, 4, 3, 3, 2, 52, 3, 6, 7, 9, 6, 4, 0, 1, 7, 1, 4, 2, - ], - }, - { - label: "Trump's World Liberty", - topics: 'liberty,world,financial,wlfi,47m', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n- Trump's World Liberty Finance (WLFI) buying large amounts of Ethereum (ETH) and other cryptocurrencies\n- Trump administration considering selling federal government office stock\n- Melania's memecoin hitting a $6B market cap\n- Billionaire real estate investor Steve Witkoff and Trump's involvement in a new cryptocurrency company\n- World Liberty Finance accumulating ETH and other cryptocurrencies\n- Justin Sun joining World Liberty Finance as an advisor\n- World Liberty Finance swapping USDC for ETH\n- World Liberty Finance ramping up its ETH holdings\n\nOverall, the messages indicate a significant interest and activity in the crypto industry, particularly related to Trump's World Liberty Finance and their investments in Ethereum and other cryptocurrencies.", - data: [ - 7, 2, 1, 6, 1, 5, 10, 10, 1, 3, 2, 4, 2, 0, 0, 1, 5, 12, 0, 0, 0, 4, 2, 2, 5, 1, 1, 6, 4, 3, - 0, 0, 0, 3, 6, 0, 1, 6, 1, 1, 0, 1, 1, 5, 0, 2, 0, 5, 18, 14, 28, 5, 1, 2, 8, - ], - }, - { - label: 'Establishment of a Strategic Bitcoin Reserve by the US government', - topics: 'reserve,strategic,stockpile,asset,bitcoin', - description: - 'The key topic discussed in the messages from twitter is the establishment of a Strategic Bitcoin Reserve by the US government. The idea is to accumulate a significant amount of Bitcoin over the next few years to strengthen national security and ensure the US remains a leader in the crypto industry. Discussions also mention the potential benefits of mining BTC and staking ETH as part of the reserve strategy. Overall, the concept of a Strategic Bitcoin Reserve is seen as a crucial step for the US government to secure its position in the evolving digital asset landscape.', - data: [ - 1, 0, 2, 6, 15, 2, 2, 3, 1, 0, 3, 3, 3, 9, 0, 1, 2, 1, 2, 5, 1, 2, 5, 5, 3, 3, 3, 1, 4, 5, - 3, 6, 0, 1, 2, 4, 2, 4, 4, 5, 2, 2, 2, 6, 53, 1, 2, 1, 0, 0, 0, 3, 2, 4, 0, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,immutable,game,web3', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the integration of blockchain technology in gaming, the rise of Web3 innovations in gaming, the potential for Play2Earn models in mobile gaming, and the intersection between AI and gaming. Projects like HeLa Space, Beam Ventures, and Alien Worlds are mentioned as pioneers in these areas. Additionally, the discussion also touches on the success of certain games like Axie Infinity and Pixels in the Web3 space, as well as the potential for career opportunities in the gaming industry. Overall, the focus seems to be on the transformative power of blockchain technology and decentralized applications in revolutionizing the gaming sector.', - data: [ - 3, 7, 3, 2, 1, 1, 1, 1, 3, 5, 9, 1, 0, 0, 4, 3, 3, 2, 33, 1, 2, 2, 0, 7, 3, 2, 6, 2, 3, 2, - 2, 0, 0, 5, 9, 3, 8, 2, 1, 3, 1, 1, 1, 0, 4, 3, 5, 2, 0, 0, 0, 3, 2, 3, 7, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,evolution,true,brian,roads', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n- Bitcoin and its impact on the world\n- Game Theory and Bitcoin\n- NgU technology explained\n- Current feelings about Bitcoin\n- Fast-moving Bitcoin market\n- Spot & chill strategy\n- Denzel's hoodie\n- Bitcoin treasury strategy\n- Bitcoin core development by @lopp\n\nOverall, the sentiment towards Bitcoin seems positive and there is a lot of interest and excitement surrounding its future developments and market movements.", - data: [ - 6, 1, 1, 2, 33, 6, 4, 2, 4, 2, 1, 6, 2, 2, 0, 4, 5, 5, 0, 2, 4, 4, 2, 4, 4, 6, 2, 2, 2, 1, - 1, 6, 2, 2, 4, 1, 1, 1, 3, 1, 2, 2, 2, 3, 1, 3, 2, 3, 4, 0, 1, 1, 2, 3, 5, - ], - }, - { - label: 'DeFi', - topics: 'defi,ecosystem,dao,protocols,privacy', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include DeFi fees, the rise of DeFi projects, the importance of compliance with regulations like DORA, the development of new DeFi platforms like DeepBook and Radix, the need for informed investing in DeFi with platforms like Fronesis, and the introduction of innovative projects like Injective and Tethereum. Overall, the sentiment seems to be optimistic about the future of DeFi and the potential for growth and innovation in the industry.', - data: [ - 1, 0, 1, 2, 0, 2, 4, 0, 2, 1, 3, 1, 8, 4, 6, 4, 5, 2, 1, 3, 2, 6, 2, 2, 4, 6, 5, 9, 2, 1, 2, - 2, 2, 3, 5, 2, 2, 6, 4, 7, 1, 6, 5, 3, 8, 2, 2, 3, 1, 0, 0, 2, 4, 1, 3, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,net,etf,spot', - description: - "The key topics currently being discussed on Twitter in the crypto industry include:\n\n1. Bitcoin ETFs: There is a lot of excitement surrounding the recent inflows into Bitcoin ETFs, with BlackRock's IBIT leading the way in terms of net inflows. The total net asset value of Bitcoin ETFs is increasing, indicating bullish momentum in the market.\n\n2. Downside protection and capped upside: Calamos Investments has launched Bitcoin ETFs with downside protection and capped upside, offering varying risk levels for investors. This new development is attracting attention in the industry.\n\n3. Trading volume and inflows: There is a significant focus on the trading volume and net inflows of Bitcoin ETFs, with institutions showing interest and piling into the market. The inflows have been consistent over multiple days, indicating growing interest in Bitcoin investments.\n\nOverall, the sentiment on Twitter seems to be positive towards Bitcoin ETFs and the potential for growth in the crypto industry. Investors are closely monitoring the market trends and developments in this space.", - data: [ - 3, 0, 2, 0, 9, 5, 1, 5, 0, 3, 1, 3, 2, 1, 1, 22, 1, 7, 1, 0, 5, 0, 2, 1, 6, 2, 5, 0, 0, 3, - 0, 3, 1, 1, 0, 1, 1, 3, 0, 0, 0, 2, 0, 18, 4, 1, 0, 7, 2, 0, 0, 4, 0, 2, 1, - ], - }, - { - label: 'The announcement of "Project Stargate" by President Trump', - topics: 'stargate,openai,oracle,infrastructure,500', - description: - 'The key topic discussed in the messages from Twitter is the announcement of "Project Stargate" by President Trump, which involves a massive investment of $500 billion in American AI infrastructure. The project is a joint venture with OpenAI, Oracle, and SoftBank, with additional support from Microsoft and Nvidia. This investment aims to revolutionize healthcare and cement US leadership in AI technology. The project will start with the construction of a giant data center in Texas, with plans for additional data centers in the future. The announcement has led to a rally in tech stocks, particularly Nvidia, and has generated excitement in the retail sector. The project is seen as a significant step towards advancing AI technology and shaping the future of the industry.', - data: [ - 0, 9, 10, 3, 0, 3, 10, 1, 2, 2, 1, 1, 0, 2, 2, 0, 0, 2, 0, 4, 3, 1, 1, 0, 1, 1, 4, 1, 0, 1, - 0, 1, 1, 2, 2, 1, 0, 4, 3, 5, 2, 0, 2, 6, 6, 1, 0, 3, 12, 0, 9, 3, 1, 0, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-56.json b/priv/repo/major_topics_seed/data-56.json deleted file mode 100644 index bd842783c6..0000000000 --- a/priv/repo/major_topics_seed/data-56.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["23.01.25","24.01.25","24.01.25","24.01.25","24.01.25","24.01.25","24.01.25","24.01.25","25.01.25","25.01.25","25.01.25","25.01.25","25.01.25","25.01.25","25.01.25","25.01.25","26.01.25","26.01.25","26.01.25","26.01.25","26.01.25","26.01.25","26.01.25","26.01.25","27.01.25","27.01.25","27.01.25","27.01.25","27.01.25","27.01.25","27.01.25","27.01.25","28.01.25","28.01.25","28.01.25","28.01.25","28.01.25","28.01.25","28.01.25","28.01.25","29.01.25","29.01.25","29.01.25","29.01.25","29.01.25","29.01.25","29.01.25","29.01.25","30.01.25","30.01.25","30.01.25","30.01.25","30.01.25","30.01.25","30.01.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,data","description":"The key topics currently being discussed in the crypto industry on social media include AI agents, collaboration between humans and AI, DeFi and AI use cases, speculation on subnets, the potential of AI in solving real-world problems, the impact of AI on the financial sector, new AI IDEs, augmented reality, bias in existing AI systems, tokenization of real-world assets, and decentralized AI commerce. There is also mention of specific projects and events such as EigenLayer and Cartesi hosting a hackathon, the XAI project, and a podcast featuring Justin Banon, Founder of BosonProtocol and FermionProtocol. Overall, the focus seems to be on the intersection of AI and crypto, with discussions ranging from technical advancements to real-world applications and implications.","data":[38,322,32,24,23,3,19,35,26,41,35,40,23,20,30,31,17,30,26,40,30,27,33,25,26,42,26,47,26,35,21,27,30,35,45,34,29,38,44,38,25,35,22,16,33,28,59,37,38,32,24,29,28,30,37]},{"label":"DeepSeek","topics":"deepseek,china,chinese,ai,model","description":"The key topics discussed in the messages from twitter about DeepSeek and the crypto industry include:\n1. DeepSeek's impact on the AI industry and the crypto market.\n2. China's influence on the tech and crypto space.\n3. DeepSeek's mobile app being removed from app stores in Italy.\n4. Competition in the AI industry, with Alibaba claiming to have launched a model surpassing DeepSeek.\n5. The potential positive long-term effects of China's AI debut on the tech space.\n6. The decline of the west and the rise of Chinese dominance in the tech industry.\n7. Suggestions for the US government to finance entrepreneurs and create a syndicate excluding businesses associated with the CCP.\n8. The relationship between US tech stocks and Bitcoin prices.\n9. The impact of open-source technology on Bitcoin prices.\n10. The Metaverse market and DeepSeek's role in it.\n11. Warnings about loading the DeepSeek app onto phones holding crypto wallets.\n12. CNBC's coverage of DeepSeek and its cost-effective open-source model disrupting the industry.","data":[12,76,16,19,11,5,19,14,15,37,28,17,12,291,8,14,7,21,6,20,17,20,31,17,13,29,22,15,10,15,27,8,18,10,22,21,18,11,19,27,22,15,37,5,14,27,36,30,23,11,12,10,14,19,21]},{"label":"BTC","topics":"btc,range,100k,price,resistance","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements, with mentions of reaching $100k, potential all-time highs, and predictions ranging from $70k-$300k\n- Bitcoin dominance and the potential for a major altseason once it drops to 45-60%\n- Analysis of the current market trends, including the ADI of the top 100 cryptocurrencies\n- Speculation on when Bitcoin will break its all-time high and the impact of external factors like the FOMC meeting\n- Sentiment towards Bitcoin, with mentions of bullish and bearish scenarios\n- Calls for engagement and participation in trading challenges and private groups\n\nOverall, the sentiment seems mixed with some users expressing confidence in Bitcoin's future while others are more cautious or frustrated with market movements.","data":[15,4,8,15,55,124,30,53,6,36,15,13,22,4,18,24,5,16,21,10,9,15,11,30,7,14,9,11,9,26,33,12,20,14,16,9,14,35,25,25,26,20,23,10,6,14,19,12,15,12,2,18,8,25,12]},{"label":"Memecoins","topics":"meme,memecoin,memes,coins,memecoins","description":"The messages from Twitter suggest that there is a lot of discussion around meme coins in the crypto industry. Some key points mentioned include the volatility and short lifespan of meme coins, the comparison between meme coins and other types of cryptocurrencies like Ai coins or utility coins, the launch of new meme coins by celebrities like Micheal Jordan, and the potential risks and rewards of investing in meme coins. Overall, it seems that meme coins are a popular topic of conversation among crypto enthusiasts on social media.","data":[10,8,6,10,12,6,12,11,28,16,14,11,15,7,65,11,7,28,12,13,7,25,22,20,24,12,10,18,27,22,21,185,12,27,12,15,21,13,17,11,9,17,12,6,11,18,14,24,11,16,8,17,18,12,13]},{"label":"XRP","topics":"xrp,ripple,reserve,maxis,centralized","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- Negative sentiment towards Ripple (XRP) and accusations of attacking Bitcoin\n- Bitcoin maximalism and criticism of altcoins like XRP\n- Concerns about the centralization of XRP and Ripple's control over the XRPL code\n- Ripple's expansion in the US with Money Transmitter Licenses and the launch of a stablecoin (RLUSD)\n- Criticisms of XRP's transaction speed and cost\n- Compliance issues and fines faced by Ripple for violating the Bank Secrecy Act\n\nOverall, the sentiment towards Ripple (XRP) seems to be largely negative, with many users expressing skepticism and criticism towards the project and its founders. Bitcoin remains the preferred cryptocurrency for many in the community, with concerns about the actions and intentions of Ripple and its impact on the broader crypto industry.","data":[15,3,9,11,12,12,12,10,27,10,14,17,12,7,12,15,8,23,18,23,17,10,7,14,10,12,13,13,16,13,5,13,8,7,6,18,10,27,12,12,41,19,14,2,10,10,20,11,9,4,3,9,13,10,9]},{"label":"SOL","topics":"solana,sol,solanas,runes,virtuals","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Approval and implementation of SIMD 228 potentially boosting SOL\n- Concerns about inflation and the impact on money lent on Solana\n- Coinbase filing for Solana futures\n- Solana becoming the first blockchain to exceed $200 billion in monthly DEX transaction volume\n- Solana price dropping 17% and the reasons behind it\n- Solana outperforming ETH and BSC in weekly DEX trading volume\n- Movement of $SOL to Kraken by PumpFun\n- Development of memecoins on Solana, such as $SUCHIR in support of OpenAI whistleblower Suchir Balaji\n- Highlights from community calls regarding migration from EOS to Solana, upcoming platform for AI Agents, P2P Task Platform, and hiring opportunities\n- Anticipation of BlackRock Solana ETF approval leading to potential flip of SOL over ETH\n- Introduction of Metaplex Aura for scalable and reliable data for dApps\n- Solana chart update and bullish continuation pattern with a price target of $1000\n- MicroStrategy led by Leah Wald in the Solana ecosystem.","data":[11,6,10,17,7,4,9,10,10,7,8,9,9,13,7,16,13,11,8,11,14,8,12,10,7,8,11,16,10,8,5,10,5,15,15,10,13,17,11,5,18,10,11,56,11,8,15,4,10,23,3,13,26,10,9]},{"label":"Inflation","topics":"inflation,powell,rate,rates,fed","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Impact of large sellers in temporary dislocations\n2. Bank of Japan rate hike boosting yen strength\n3. German business activity stability in January\n4. Federal Reserve's Powell indicating restrictive policy\n5. Bank of England Governor Bailey emphasizing the importance of raising economic growth rate\n6. Gross Domestic Product for the Fourth Quarter and Year 2024\n7. European Central Bank's Lagarde discussing the independence of central banks\n8. U.S. interest rate decision announcement\n9. Tariffs and their impact on inflation and prices\n10. U.S. equities posting strong gains\n11. Bank of Japan's rate hike and inflation levels\n12. Federal Reserve's FOMC meeting and monetary policy decisions\n13. Market expectations for rate cuts and GDP growth\n14. Federal Reserve's balance sheet unwinding and potential impact on the market.","data":[2,4,0,12,2,0,14,6,1,3,4,2,2,4,5,16,2,4,20,4,10,4,1,17,4,19,10,5,3,7,45,6,6,3,2,4,13,7,18,8,6,12,6,0,4,11,5,7,6,4,3,8,2,7,4]},{"label":"ETH","topics":"eth,ethereum,wedge,falling,break","description":"Based on the messages from Twitter, it seems that the key topics being discussed about Ethereum ($ETH) include:\n1. Ethereum price movements and potential breakout targets.\n2. Technical analysis patterns such as falling wedge, inverse head and shoulders, and head and shoulders.\n3. The impact of the Pectra upgrade on Ethereum's price.\n4. Comparison of Ethereum's performance in January and February historically.\n5. The influence of the Federal Reserve's policy on Ethereum's direction.\n6. Institutional demand for Ethereum and potential buying from Wall Street.\n7. Liquidation of short positions in Ethereum.\n8. Introduction of an ETH strategy protocol.\n9. Potential retesting of local lows for Ethereum.\n10. Trading opportunities and platforms for Ethereum.\n\nOverall, the sentiment around Ethereum appears to be bullish with discussions focusing on potential price movements, technical analysis, institutional interest, and trading strategies.","data":[9,2,5,9,4,1,4,4,4,9,9,1,12,3,3,6,71,12,3,4,1,3,2,14,11,2,4,3,11,16,5,4,6,1,1,3,6,8,8,2,5,2,4,1,5,6,7,3,6,2,3,6,1,4,3]},{"label":"DOGE","topics":"doge,dogecoin,moon,lets,03","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin ($DOGE) price predictions and potential pump\n- Speculation on whether Dogecoin will reach all-time highs in February\n- Discussion on the impact of potential disappointments from Dogecoin and tariffs on the market\n- Recent achievements and developments related to Dogecoin, such as engineers turning on water for Southern CA and canceling unnecessary contracts\n- Excitement around the Gari cryptocurrency going to the moon on the BlueGhost Moon lander launched by SpaceX Falcon 9\n- General market sentiment and indicators, such as the DXY and bond market dynamics\n- Engagement with gaming events like the Dookey Dash tournament and betting on players\n\nOverall, the sentiment seems to be positive and optimistic, with a focus on potential price movements, market dynamics, and upcoming developments in the crypto industry.","data":[5,3,8,0,1,2,2,1,5,3,5,5,6,1,95,4,2,5,11,4,4,9,1,14,7,3,4,5,4,12,5,3,7,4,3,8,2,3,7,4,5,2,9,2,1,3,4,3,7,2,1,1,4,7,3]},{"label":"Art","topics":"art,artists,artist,piece,collection","description":"The key topics discussed in the messages from twitter are related to the Art Monstar project, which aims to make art more inclusive and exciting through blockchain technology. The project allows users to own rare art and collectibles with confidence, and aims to ensure that everyone can afford high-quality artistic expression. There is also discussion about the traditional art world and elitism, as well as the use of tokens like 721/1155 main net or L2 in the art industry. Additionally, there is a pre-sale event happening for the project, offering a 20% discount on the RWA meme token.","data":[2,3,70,4,0,0,2,5,1,9,9,9,7,0,5,5,3,6,5,4,9,6,2,6,5,6,4,3,3,6,6,6,6,9,8,7,4,5,0,1,5,3,4,1,1,5,3,6,8,4,3,2,2,2,7]},{"label":"GameFi","topics":"game,gaming,games,play,mobile","description":"Based on the messages from Twitter, it seems that the key topics being discussed are related to game theory, gaming industry innovations, cryptocurrency (specifically Ripple), and financial engineering in sports, particularly football. There is also mention of specific gaming projects such as Off The Grid, BetHog's 'Hogger' game, and Alien Worlds. Additionally, there is anticipation and excitement around upcoming gaming infrastructure launches and the potential impact of community-driven gaming revolution. The messages also touch upon the intersection of data, technology, and financial viability in football, with a specific interview with Steve Parish, the CEO of TAG, providing insights into these areas.","data":[4,0,3,3,3,1,0,3,1,2,2,6,2,1,3,3,2,3,14,3,52,3,1,0,1,5,3,2,6,2,1,1,1,5,1,4,17,3,2,4,4,2,1,2,1,2,5,4,4,1,0,4,9,3,1]},{"label":"MSTR","topics":"microstrategy,mstr,acquired,billion,offering","description":"The key topic discussed in the messages from Twitter is MicroStrategy's continued aggressive acquisition of Bitcoin. MicroStrategy has recently purchased an additional 10,107 BTC for $1.1 billion, bringing their total holdings to 471,107 BTC. This move is seen as a strategic investment in Bitcoin, with MicroStrategy holding a significant portion of the total Bitcoin supply. The company has also announced plans to offer shares of preferred stock to fund further Bitcoin acquisitions. This aggressive approach to acquiring Bitcoin has sparked discussions about MicroStrategy potentially becoming a trillion-dollar BTC powerhouse. Other companies, such as 180 Life Sciences Corp, are also pivoting towards Bitcoin and other cryptocurrencies as strategic assets. Overall, the trend of public companies stacking Bitcoin is seen as a shift towards viewing Bitcoin as a strategic resource rather than just an asset.","data":[11,0,5,2,5,3,10,3,7,2,2,4,1,1,1,4,2,0,6,2,2,0,1,1,2,5,2,3,1,3,2,42,6,4,1,3,4,0,8,3,1,2,1,1,0,8,1,4,5,0,1,5,0,3,1]},{"label":"Tesla","topics":"tesla,tsla,q4,earnings,accounting","description":"The key topics discussed in the messages from Twitter regarding Tesla and Bitcoin include:\n1. Tesla's $600 million gain from Bitcoin holdings in Q4 2024\n2. Speculation on Tesla's future earnings report\n3. Suggestions for Tesla to start pre-orders for Optimus Founder's Edition\n4. Comparison between Tesla's gains on digital assets and Doordash's losses\n5. Analysis of Tesla's stock valuation and growth expectations\n6. Criticism of the stock market's reaction to companies with questionable financial performance\n\nOverall, the messages reflect a mix of positive news about Tesla's financial gains from Bitcoin, speculation on future performance, and criticism of the stock market's valuation of certain companies.","data":[5,1,0,3,3,0,6,2,3,1,6,1,0,0,1,10,0,2,0,3,3,3,1,3,3,4,2,2,2,2,2,1,5,7,0,2,1,3,3,14,3,5,7,1,0,6,3,32,0,0,23,3,1,0,0]},{"label":"DeFi","topics":"defi,buidl,defai,finance,tradfi","description":"The key topics discussed in the messages from twitter are:\n1. Strong DeFi protocols with aligned incentives\n2. Worldwide adoption of DeFi\n3. GameFi ecosystem and BEEFI\n4. Dynamic collateral ratios and secure liquidation in DeFi\n5. USDD 2.0 and BTTC bridging Web2 TradFi & Web3 DeFi\n6. Aave on Metis - DeFi's largest liquidity protocol\n7. RadixAPI for dApp development\n8. Issues with trading real DeFi coins on PulseChain\n9. PERI Finance for seamless access to decentralized trading\n10. SmartDeFi™ & FEG Pitch Deck for shaping the future of DeFi\n11. Potential upside of DeFi reaching $40B\n12. Updates from COTI on DeFAI and AI AGENTS\n\nOverall, the messages highlight the growth and innovation in the DeFi industry, with a focus on protocols, adoption, ecosystem development, and potential future trends.","data":[0,1,4,2,3,2,2,1,0,4,1,1,5,11,2,6,3,3,5,4,2,4,4,3,0,7,3,4,6,1,4,0,5,9,2,4,4,8,3,4,4,3,1,3,7,7,1,3,4,5,2,5,3,3,3]},{"label":"BTC Mining","topics":"mining,miners,miner,mined,blocks","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin mining in unconventional locations such as the back of a Cybertruck and in orphanages in Paraguay.\n2. The transfer of a large amount of BTC ($21B) on the Bitcoin network.\n3. The increasing hashrate on the Verus network even after the block reward halving.\n4. The accumulation of 3x more BTC by Bitcoin ETFs than has been mined.\n5. Bitcoin mining's role in solving Europe's energy crisis and becoming a key player in the energy transition.\n6. The significance of blue-eyed OMBs minted on block 78 in homage to Hal Finney.\n7. The consecutive mining of the last 7 Bitcoin blocks in America by Foundry USA.\n8. Participation of industry leaders in events such as the Nashville Energy & Mining Summit 2025 and Mining Disrupt 2025.\n9. The decrease in Bitcoin mining difficulty by 1.018% and the anticipation of the next difficulty adjustment in approximately 14 days.","data":[4,2,4,3,1,20,10,1,3,2,2,1,1,2,4,1,1,5,3,2,0,3,3,6,1,7,6,2,4,0,3,5,16,5,5,2,6,0,4,3,4,1,2,3,6,0,2,4,2,1,0,6,1,3,0]},{"label":"Strategic BTC Reserves","topics":"state,reserve,texas,strategic,committee","description":"The key topic discussed in the messages from Twitter is the introduction and passing of bills related to creating Strategic Bitcoin Reserves in various states such as Ohio, Illinois, South Dakota, and Arizona. These bills allow for a certain percentage of public funds to be invested in cryptocurrencies like Bitcoin. Additionally, there is mention of Texas planning a Bitcoin Reserve as a priority for 2025 and Indiana proposing pension funds to invest in Bitcoin ETFs for diversification. The overall sentiment is bullish on Bitcoin and there is a call for more states to introduce pro-Bitcoin legislation.","data":[7,1,9,2,4,2,10,3,1,1,2,1,1,3,1,2,0,1,1,0,0,1,5,1,4,12,1,6,1,1,2,5,6,7,1,6,3,6,5,4,0,7,1,0,3,26,2,1,1,0,0,7,0,0,1]},{"label":"PEPE","topics":"pepe,momentum,whale,pattern,coin","description":"The key topics discussed in the messages from twitter about the crypto industry include the $PEPE coin, its market cap, recent transfers by the team, ability to lend and borrow on platforms like @useteller, price movements and potential bottoming out, comparisons with other coins like #FLOKI, and potential connections with other cryptocurrencies. There is also mention of influential figures like Trump getting involved in crypto and the importance of community support and innovation in the success of a coin. Overall, the discussions revolve around the current state and future potential of $PEPE and its place in the crypto market.","data":[4,0,2,1,2,0,0,2,2,2,2,1,3,0,2,3,2,1,2,3,4,3,3,7,3,1,1,4,2,2,2,2,6,3,2,40,1,2,0,3,1,3,4,1,3,5,4,2,3,1,5,2,1,3,4]},{"label":"Elon Musk exploring the use of blockchain technology in the US government's efficiency push","topics":"efficiency,government,elon,musk,doge","description":"The key topic discussed in the messages from twitter is Elon Musk exploring the use of blockchain technology in the US government's efficiency push. Musk's Department of Government Efficiency is reportedly evaluating the feasibility of using blockchain technology for various purposes such as tracking federal spending, protecting data, payments, and managing transactions. There are discussions about using stablecoins on public ledgers to improve government efficiency. Additionally, there are mentions of Musk's involvement in blockchain projects and potential collaborations with other firms. The topic also touches on the potential impact of blockchain technology on government operations and the role of cryptocurrencies like DOGE in government initiatives.","data":[6,1,3,1,2,0,13,1,0,2,1,2,2,11,5,2,0,18,6,4,1,9,3,7,1,3,1,1,1,0,3,1,2,7,4,3,2,2,2,5,2,5,4,1,3,0,2,3,0,1,1,2,1,3,1]},{"label":"The Czech central bank's approval to assess investing reserves in Bitcoin","topics":"czech,bank,central,national,reserves","description":"The key topics currently being discussed on Twitter regarding the crypto industry include:\n1. The Czech central bank's approval to assess investing reserves in Bitcoin, with the head of the bank wanting to buy 'billions' of euros worth of Bitcoin.\n2. The Swiss initiative to add Bitcoin to the constitution.\n3. The proposal by the Czech National Bank Governor to allocate up to 5% of the country's reserves into Bitcoin.\n4. The statement by the Czech National Bank governor that Bitcoin has zero correlation to bonds and is worth considering for large portfolios.\n5. The comparison of the Czech National Bank's diversification strategy, including increasing gold holdings and planning for investments in equities, with the potential investment in Bitcoin.\n6. The speculation about the Czech National Bank potentially acquiring $7.3 billion in Bitcoin as part of its diversification strategy.\n7. The comparison between the Czech Republic's potential national Bitcoin stockpile and the lack of action in the United States.\n8. The criticism of diversifying into other cryptocurrencies like XRP instead of focusing solely on Bitcoin.","data":[5,0,4,7,2,2,12,3,16,3,4,1,4,1,0,0,1,2,2,0,0,3,7,11,3,3,3,0,2,0,2,1,1,6,1,0,5,8,2,0,2,2,2,1,1,2,1,0,1,1,1,1,6,1,1]},{"label":"ETF Flows","topics":"inflows,net,etfs,spot,etf","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. BlackRock's Bitcoin ETF, $IBIT, purchasing significant amounts of Bitcoin.\n2. U.S. Bitcoin ETFs experiencing consistent inflows, with a total net inflow of $18.44M on Jan 28.\n3. Corporations and US spot ETFs purchasing a combined amount of 68.2k BTC in 2025, while miners have only produced 12.5k BTC.\n4. The growing BTC supply deficit due to relentless ETF buying in 2025.\n5. Crypto funds seeing $1.9B in inflows, driven by Trump's Bitcoin reserve proposal.\n6. Ethereum rebounding with $205M in inflows, while altcoins also gaining traction.\n7. The total net outflow of Ethereum spot ETFs on Jan 23 and the largest net inflow from Fidelity ETF FETH.\n8. The performance of spot bitcoin ETFs, with $4.2B in flows since the start of the year.\n9. The total net inflow of Ethereum spot ETFs on Jan 24, with Bitwise ETF ETHW recording the largest net inflow.\n\nOverall, the discussion revolves around the significant inflows into Bitcoin and Ethereum ETFs, the impact of corporate and US spot ETF purchases on BTC supply, and the overall bullish sentiment in the crypto market.","data":[2,0,1,0,8,4,1,5,1,0,0,2,4,1,6,0,32,2,1,0,0,4,0,0,1,3,1,3,1,0,1,1,1,2,1,2,0,0,1,3,0,2,3,0,20,0,1,0,3,5,2,5,1,4,6]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-56.ts b/priv/repo/major_topics_seed/data-56.ts deleted file mode 100644 index c5c767ccbd..0000000000 --- a/priv/repo/major_topics_seed/data-56.ts +++ /dev/null @@ -1,268 +0,0 @@ -export const NARRATIVES = { - labels: [ - '23.01.25', - '24.01.25', - '24.01.25', - '24.01.25', - '24.01.25', - '24.01.25', - '24.01.25', - '24.01.25', - '25.01.25', - '25.01.25', - '25.01.25', - '25.01.25', - '25.01.25', - '25.01.25', - '25.01.25', - '25.01.25', - '26.01.25', - '26.01.25', - '26.01.25', - '26.01.25', - '26.01.25', - '26.01.25', - '26.01.25', - '26.01.25', - '27.01.25', - '27.01.25', - '27.01.25', - '27.01.25', - '27.01.25', - '27.01.25', - '27.01.25', - '27.01.25', - '28.01.25', - '28.01.25', - '28.01.25', - '28.01.25', - '28.01.25', - '28.01.25', - '28.01.25', - '28.01.25', - '29.01.25', - '29.01.25', - '29.01.25', - '29.01.25', - '29.01.25', - '29.01.25', - '29.01.25', - '29.01.25', - '30.01.25', - '30.01.25', - '30.01.25', - '30.01.25', - '30.01.25', - '30.01.25', - '30.01.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - 'The key topics currently being discussed in the crypto industry on social media include AI agents, collaboration between humans and AI, DeFi and AI use cases, speculation on subnets, the potential of AI in solving real-world problems, the impact of AI on the financial sector, new AI IDEs, augmented reality, bias in existing AI systems, tokenization of real-world assets, and decentralized AI commerce. There is also mention of specific projects and events such as EigenLayer and Cartesi hosting a hackathon, the XAI project, and a podcast featuring Justin Banon, Founder of BosonProtocol and FermionProtocol. Overall, the focus seems to be on the intersection of AI and crypto, with discussions ranging from technical advancements to real-world applications and implications.', - data: [ - 38, 322, 32, 24, 23, 3, 19, 35, 26, 41, 35, 40, 23, 20, 30, 31, 17, 30, 26, 40, 30, 27, 33, - 25, 26, 42, 26, 47, 26, 35, 21, 27, 30, 35, 45, 34, 29, 38, 44, 38, 25, 35, 22, 16, 33, 28, - 59, 37, 38, 32, 24, 29, 28, 30, 37, - ], - }, - { - label: 'DeepSeek', - topics: 'deepseek,china,chinese,ai,model', - description: - "The key topics discussed in the messages from twitter about DeepSeek and the crypto industry include:\n1. DeepSeek's impact on the AI industry and the crypto market.\n2. China's influence on the tech and crypto space.\n3. DeepSeek's mobile app being removed from app stores in Italy.\n4. Competition in the AI industry, with Alibaba claiming to have launched a model surpassing DeepSeek.\n5. The potential positive long-term effects of China's AI debut on the tech space.\n6. The decline of the west and the rise of Chinese dominance in the tech industry.\n7. Suggestions for the US government to finance entrepreneurs and create a syndicate excluding businesses associated with the CCP.\n8. The relationship between US tech stocks and Bitcoin prices.\n9. The impact of open-source technology on Bitcoin prices.\n10. The Metaverse market and DeepSeek's role in it.\n11. Warnings about loading the DeepSeek app onto phones holding crypto wallets.\n12. CNBC's coverage of DeepSeek and its cost-effective open-source model disrupting the industry.", - data: [ - 12, 76, 16, 19, 11, 5, 19, 14, 15, 37, 28, 17, 12, 291, 8, 14, 7, 21, 6, 20, 17, 20, 31, 17, - 13, 29, 22, 15, 10, 15, 27, 8, 18, 10, 22, 21, 18, 11, 19, 27, 22, 15, 37, 5, 14, 27, 36, - 30, 23, 11, 12, 10, 14, 19, 21, - ], - }, - { - label: 'BTC', - topics: 'btc,range,100k,price,resistance', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements, with mentions of reaching $100k, potential all-time highs, and predictions ranging from $70k-$300k\n- Bitcoin dominance and the potential for a major altseason once it drops to 45-60%\n- Analysis of the current market trends, including the ADI of the top 100 cryptocurrencies\n- Speculation on when Bitcoin will break its all-time high and the impact of external factors like the FOMC meeting\n- Sentiment towards Bitcoin, with mentions of bullish and bearish scenarios\n- Calls for engagement and participation in trading challenges and private groups\n\nOverall, the sentiment seems mixed with some users expressing confidence in Bitcoin's future while others are more cautious or frustrated with market movements.", - data: [ - 15, 4, 8, 15, 55, 124, 30, 53, 6, 36, 15, 13, 22, 4, 18, 24, 5, 16, 21, 10, 9, 15, 11, 30, - 7, 14, 9, 11, 9, 26, 33, 12, 20, 14, 16, 9, 14, 35, 25, 25, 26, 20, 23, 10, 6, 14, 19, 12, - 15, 12, 2, 18, 8, 25, 12, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coins,memecoins', - description: - 'The messages from Twitter suggest that there is a lot of discussion around meme coins in the crypto industry. Some key points mentioned include the volatility and short lifespan of meme coins, the comparison between meme coins and other types of cryptocurrencies like Ai coins or utility coins, the launch of new meme coins by celebrities like Micheal Jordan, and the potential risks and rewards of investing in meme coins. Overall, it seems that meme coins are a popular topic of conversation among crypto enthusiasts on social media.', - data: [ - 10, 8, 6, 10, 12, 6, 12, 11, 28, 16, 14, 11, 15, 7, 65, 11, 7, 28, 12, 13, 7, 25, 22, 20, - 24, 12, 10, 18, 27, 22, 21, 185, 12, 27, 12, 15, 21, 13, 17, 11, 9, 17, 12, 6, 11, 18, 14, - 24, 11, 16, 8, 17, 18, 12, 13, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,reserve,maxis,centralized', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n- Negative sentiment towards Ripple (XRP) and accusations of attacking Bitcoin\n- Bitcoin maximalism and criticism of altcoins like XRP\n- Concerns about the centralization of XRP and Ripple's control over the XRPL code\n- Ripple's expansion in the US with Money Transmitter Licenses and the launch of a stablecoin (RLUSD)\n- Criticisms of XRP's transaction speed and cost\n- Compliance issues and fines faced by Ripple for violating the Bank Secrecy Act\n\nOverall, the sentiment towards Ripple (XRP) seems to be largely negative, with many users expressing skepticism and criticism towards the project and its founders. Bitcoin remains the preferred cryptocurrency for many in the community, with concerns about the actions and intentions of Ripple and its impact on the broader crypto industry.", - data: [ - 15, 3, 9, 11, 12, 12, 12, 10, 27, 10, 14, 17, 12, 7, 12, 15, 8, 23, 18, 23, 17, 10, 7, 14, - 10, 12, 13, 13, 16, 13, 5, 13, 8, 7, 6, 18, 10, 27, 12, 12, 41, 19, 14, 2, 10, 10, 20, 11, - 9, 4, 3, 9, 13, 10, 9, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,solanas,runes,virtuals', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Approval and implementation of SIMD 228 potentially boosting SOL\n- Concerns about inflation and the impact on money lent on Solana\n- Coinbase filing for Solana futures\n- Solana becoming the first blockchain to exceed $200 billion in monthly DEX transaction volume\n- Solana price dropping 17% and the reasons behind it\n- Solana outperforming ETH and BSC in weekly DEX trading volume\n- Movement of $SOL to Kraken by PumpFun\n- Development of memecoins on Solana, such as $SUCHIR in support of OpenAI whistleblower Suchir Balaji\n- Highlights from community calls regarding migration from EOS to Solana, upcoming platform for AI Agents, P2P Task Platform, and hiring opportunities\n- Anticipation of BlackRock Solana ETF approval leading to potential flip of SOL over ETH\n- Introduction of Metaplex Aura for scalable and reliable data for dApps\n- Solana chart update and bullish continuation pattern with a price target of $1000\n- MicroStrategy led by Leah Wald in the Solana ecosystem.', - data: [ - 11, 6, 10, 17, 7, 4, 9, 10, 10, 7, 8, 9, 9, 13, 7, 16, 13, 11, 8, 11, 14, 8, 12, 10, 7, 8, - 11, 16, 10, 8, 5, 10, 5, 15, 15, 10, 13, 17, 11, 5, 18, 10, 11, 56, 11, 8, 15, 4, 10, 23, 3, - 13, 26, 10, 9, - ], - }, - { - label: 'Inflation', - topics: 'inflation,powell,rate,rates,fed', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Impact of large sellers in temporary dislocations\n2. Bank of Japan rate hike boosting yen strength\n3. German business activity stability in January\n4. Federal Reserve's Powell indicating restrictive policy\n5. Bank of England Governor Bailey emphasizing the importance of raising economic growth rate\n6. Gross Domestic Product for the Fourth Quarter and Year 2024\n7. European Central Bank's Lagarde discussing the independence of central banks\n8. U.S. interest rate decision announcement\n9. Tariffs and their impact on inflation and prices\n10. U.S. equities posting strong gains\n11. Bank of Japan's rate hike and inflation levels\n12. Federal Reserve's FOMC meeting and monetary policy decisions\n13. Market expectations for rate cuts and GDP growth\n14. Federal Reserve's balance sheet unwinding and potential impact on the market.", - data: [ - 2, 4, 0, 12, 2, 0, 14, 6, 1, 3, 4, 2, 2, 4, 5, 16, 2, 4, 20, 4, 10, 4, 1, 17, 4, 19, 10, 5, - 3, 7, 45, 6, 6, 3, 2, 4, 13, 7, 18, 8, 6, 12, 6, 0, 4, 11, 5, 7, 6, 4, 3, 8, 2, 7, 4, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,wedge,falling,break', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed about Ethereum ($ETH) include:\n1. Ethereum price movements and potential breakout targets.\n2. Technical analysis patterns such as falling wedge, inverse head and shoulders, and head and shoulders.\n3. The impact of the Pectra upgrade on Ethereum's price.\n4. Comparison of Ethereum's performance in January and February historically.\n5. The influence of the Federal Reserve's policy on Ethereum's direction.\n6. Institutional demand for Ethereum and potential buying from Wall Street.\n7. Liquidation of short positions in Ethereum.\n8. Introduction of an ETH strategy protocol.\n9. Potential retesting of local lows for Ethereum.\n10. Trading opportunities and platforms for Ethereum.\n\nOverall, the sentiment around Ethereum appears to be bullish with discussions focusing on potential price movements, technical analysis, institutional interest, and trading strategies.", - data: [ - 9, 2, 5, 9, 4, 1, 4, 4, 4, 9, 9, 1, 12, 3, 3, 6, 71, 12, 3, 4, 1, 3, 2, 14, 11, 2, 4, 3, 11, - 16, 5, 4, 6, 1, 1, 3, 6, 8, 8, 2, 5, 2, 4, 1, 5, 6, 7, 3, 6, 2, 3, 6, 1, 4, 3, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,moon,lets,03', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin ($DOGE) price predictions and potential pump\n- Speculation on whether Dogecoin will reach all-time highs in February\n- Discussion on the impact of potential disappointments from Dogecoin and tariffs on the market\n- Recent achievements and developments related to Dogecoin, such as engineers turning on water for Southern CA and canceling unnecessary contracts\n- Excitement around the Gari cryptocurrency going to the moon on the BlueGhost Moon lander launched by SpaceX Falcon 9\n- General market sentiment and indicators, such as the DXY and bond market dynamics\n- Engagement with gaming events like the Dookey Dash tournament and betting on players\n\nOverall, the sentiment seems to be positive and optimistic, with a focus on potential price movements, market dynamics, and upcoming developments in the crypto industry.', - data: [ - 5, 3, 8, 0, 1, 2, 2, 1, 5, 3, 5, 5, 6, 1, 95, 4, 2, 5, 11, 4, 4, 9, 1, 14, 7, 3, 4, 5, 4, - 12, 5, 3, 7, 4, 3, 8, 2, 3, 7, 4, 5, 2, 9, 2, 1, 3, 4, 3, 7, 2, 1, 1, 4, 7, 3, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,collection', - description: - 'The key topics discussed in the messages from twitter are related to the Art Monstar project, which aims to make art more inclusive and exciting through blockchain technology. The project allows users to own rare art and collectibles with confidence, and aims to ensure that everyone can afford high-quality artistic expression. There is also discussion about the traditional art world and elitism, as well as the use of tokens like 721/1155 main net or L2 in the art industry. Additionally, there is a pre-sale event happening for the project, offering a 20% discount on the RWA meme token.', - data: [ - 2, 3, 70, 4, 0, 0, 2, 5, 1, 9, 9, 9, 7, 0, 5, 5, 3, 6, 5, 4, 9, 6, 2, 6, 5, 6, 4, 3, 3, 6, - 6, 6, 6, 9, 8, 7, 4, 5, 0, 1, 5, 3, 4, 1, 1, 5, 3, 6, 8, 4, 3, 2, 2, 2, 7, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,mobile', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed are related to game theory, gaming industry innovations, cryptocurrency (specifically Ripple), and financial engineering in sports, particularly football. There is also mention of specific gaming projects such as Off The Grid, BetHog's 'Hogger' game, and Alien Worlds. Additionally, there is anticipation and excitement around upcoming gaming infrastructure launches and the potential impact of community-driven gaming revolution. The messages also touch upon the intersection of data, technology, and financial viability in football, with a specific interview with Steve Parish, the CEO of TAG, providing insights into these areas.", - data: [ - 4, 0, 3, 3, 3, 1, 0, 3, 1, 2, 2, 6, 2, 1, 3, 3, 2, 3, 14, 3, 52, 3, 1, 0, 1, 5, 3, 2, 6, 2, - 1, 1, 1, 5, 1, 4, 17, 3, 2, 4, 4, 2, 1, 2, 1, 2, 5, 4, 4, 1, 0, 4, 9, 3, 1, - ], - }, - { - label: 'MSTR', - topics: 'microstrategy,mstr,acquired,billion,offering', - description: - "The key topic discussed in the messages from Twitter is MicroStrategy's continued aggressive acquisition of Bitcoin. MicroStrategy has recently purchased an additional 10,107 BTC for $1.1 billion, bringing their total holdings to 471,107 BTC. This move is seen as a strategic investment in Bitcoin, with MicroStrategy holding a significant portion of the total Bitcoin supply. The company has also announced plans to offer shares of preferred stock to fund further Bitcoin acquisitions. This aggressive approach to acquiring Bitcoin has sparked discussions about MicroStrategy potentially becoming a trillion-dollar BTC powerhouse. Other companies, such as 180 Life Sciences Corp, are also pivoting towards Bitcoin and other cryptocurrencies as strategic assets. Overall, the trend of public companies stacking Bitcoin is seen as a shift towards viewing Bitcoin as a strategic resource rather than just an asset.", - data: [ - 11, 0, 5, 2, 5, 3, 10, 3, 7, 2, 2, 4, 1, 1, 1, 4, 2, 0, 6, 2, 2, 0, 1, 1, 2, 5, 2, 3, 1, 3, - 2, 42, 6, 4, 1, 3, 4, 0, 8, 3, 1, 2, 1, 1, 0, 8, 1, 4, 5, 0, 1, 5, 0, 3, 1, - ], - }, - { - label: 'Tesla', - topics: 'tesla,tsla,q4,earnings,accounting', - description: - "The key topics discussed in the messages from Twitter regarding Tesla and Bitcoin include:\n1. Tesla's $600 million gain from Bitcoin holdings in Q4 2024\n2. Speculation on Tesla's future earnings report\n3. Suggestions for Tesla to start pre-orders for Optimus Founder's Edition\n4. Comparison between Tesla's gains on digital assets and Doordash's losses\n5. Analysis of Tesla's stock valuation and growth expectations\n6. Criticism of the stock market's reaction to companies with questionable financial performance\n\nOverall, the messages reflect a mix of positive news about Tesla's financial gains from Bitcoin, speculation on future performance, and criticism of the stock market's valuation of certain companies.", - data: [ - 5, 1, 0, 3, 3, 0, 6, 2, 3, 1, 6, 1, 0, 0, 1, 10, 0, 2, 0, 3, 3, 3, 1, 3, 3, 4, 2, 2, 2, 2, - 2, 1, 5, 7, 0, 2, 1, 3, 3, 14, 3, 5, 7, 1, 0, 6, 3, 32, 0, 0, 23, 3, 1, 0, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,buidl,defai,finance,tradfi', - description: - "The key topics discussed in the messages from twitter are:\n1. Strong DeFi protocols with aligned incentives\n2. Worldwide adoption of DeFi\n3. GameFi ecosystem and BEEFI\n4. Dynamic collateral ratios and secure liquidation in DeFi\n5. USDD 2.0 and BTTC bridging Web2 TradFi & Web3 DeFi\n6. Aave on Metis - DeFi's largest liquidity protocol\n7. RadixAPI for dApp development\n8. Issues with trading real DeFi coins on PulseChain\n9. PERI Finance for seamless access to decentralized trading\n10. SmartDeFi™ & FEG Pitch Deck for shaping the future of DeFi\n11. Potential upside of DeFi reaching $40B\n12. Updates from COTI on DeFAI and AI AGENTS\n\nOverall, the messages highlight the growth and innovation in the DeFi industry, with a focus on protocols, adoption, ecosystem development, and potential future trends.", - data: [ - 0, 1, 4, 2, 3, 2, 2, 1, 0, 4, 1, 1, 5, 11, 2, 6, 3, 3, 5, 4, 2, 4, 4, 3, 0, 7, 3, 4, 6, 1, - 4, 0, 5, 9, 2, 4, 4, 8, 3, 4, 4, 3, 1, 3, 7, 7, 1, 3, 4, 5, 2, 5, 3, 3, 3, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,mined,blocks', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin mining in unconventional locations such as the back of a Cybertruck and in orphanages in Paraguay.\n2. The transfer of a large amount of BTC ($21B) on the Bitcoin network.\n3. The increasing hashrate on the Verus network even after the block reward halving.\n4. The accumulation of 3x more BTC by Bitcoin ETFs than has been mined.\n5. Bitcoin mining's role in solving Europe's energy crisis and becoming a key player in the energy transition.\n6. The significance of blue-eyed OMBs minted on block 78 in homage to Hal Finney.\n7. The consecutive mining of the last 7 Bitcoin blocks in America by Foundry USA.\n8. Participation of industry leaders in events such as the Nashville Energy & Mining Summit 2025 and Mining Disrupt 2025.\n9. The decrease in Bitcoin mining difficulty by 1.018% and the anticipation of the next difficulty adjustment in approximately 14 days.", - data: [ - 4, 2, 4, 3, 1, 20, 10, 1, 3, 2, 2, 1, 1, 2, 4, 1, 1, 5, 3, 2, 0, 3, 3, 6, 1, 7, 6, 2, 4, 0, - 3, 5, 16, 5, 5, 2, 6, 0, 4, 3, 4, 1, 2, 3, 6, 0, 2, 4, 2, 1, 0, 6, 1, 3, 0, - ], - }, - { - label: 'Strategic BTC Reserves', - topics: 'state,reserve,texas,strategic,committee', - description: - 'The key topic discussed in the messages from Twitter is the introduction and passing of bills related to creating Strategic Bitcoin Reserves in various states such as Ohio, Illinois, South Dakota, and Arizona. These bills allow for a certain percentage of public funds to be invested in cryptocurrencies like Bitcoin. Additionally, there is mention of Texas planning a Bitcoin Reserve as a priority for 2025 and Indiana proposing pension funds to invest in Bitcoin ETFs for diversification. The overall sentiment is bullish on Bitcoin and there is a call for more states to introduce pro-Bitcoin legislation.', - data: [ - 7, 1, 9, 2, 4, 2, 10, 3, 1, 1, 2, 1, 1, 3, 1, 2, 0, 1, 1, 0, 0, 1, 5, 1, 4, 12, 1, 6, 1, 1, - 2, 5, 6, 7, 1, 6, 3, 6, 5, 4, 0, 7, 1, 0, 3, 26, 2, 1, 1, 0, 0, 7, 0, 0, 1, - ], - }, - { - label: 'PEPE', - topics: 'pepe,momentum,whale,pattern,coin', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include the $PEPE coin, its market cap, recent transfers by the team, ability to lend and borrow on platforms like @useteller, price movements and potential bottoming out, comparisons with other coins like #FLOKI, and potential connections with other cryptocurrencies. There is also mention of influential figures like Trump getting involved in crypto and the importance of community support and innovation in the success of a coin. Overall, the discussions revolve around the current state and future potential of $PEPE and its place in the crypto market.', - data: [ - 4, 0, 2, 1, 2, 0, 0, 2, 2, 2, 2, 1, 3, 0, 2, 3, 2, 1, 2, 3, 4, 3, 3, 7, 3, 1, 1, 4, 2, 2, 2, - 2, 6, 3, 2, 40, 1, 2, 0, 3, 1, 3, 4, 1, 3, 5, 4, 2, 3, 1, 5, 2, 1, 3, 4, - ], - }, - { - label: - "Elon Musk exploring the use of blockchain technology in the US government's efficiency push", - topics: 'efficiency,government,elon,musk,doge', - description: - "The key topic discussed in the messages from twitter is Elon Musk exploring the use of blockchain technology in the US government's efficiency push. Musk's Department of Government Efficiency is reportedly evaluating the feasibility of using blockchain technology for various purposes such as tracking federal spending, protecting data, payments, and managing transactions. There are discussions about using stablecoins on public ledgers to improve government efficiency. Additionally, there are mentions of Musk's involvement in blockchain projects and potential collaborations with other firms. The topic also touches on the potential impact of blockchain technology on government operations and the role of cryptocurrencies like DOGE in government initiatives.", - data: [ - 6, 1, 3, 1, 2, 0, 13, 1, 0, 2, 1, 2, 2, 11, 5, 2, 0, 18, 6, 4, 1, 9, 3, 7, 1, 3, 1, 1, 1, 0, - 3, 1, 2, 7, 4, 3, 2, 2, 2, 5, 2, 5, 4, 1, 3, 0, 2, 3, 0, 1, 1, 2, 1, 3, 1, - ], - }, - { - label: "The Czech central bank's approval to assess investing reserves in Bitcoin", - topics: 'czech,bank,central,national,reserves', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry include:\n1. The Czech central bank's approval to assess investing reserves in Bitcoin, with the head of the bank wanting to buy 'billions' of euros worth of Bitcoin.\n2. The Swiss initiative to add Bitcoin to the constitution.\n3. The proposal by the Czech National Bank Governor to allocate up to 5% of the country's reserves into Bitcoin.\n4. The statement by the Czech National Bank governor that Bitcoin has zero correlation to bonds and is worth considering for large portfolios.\n5. The comparison of the Czech National Bank's diversification strategy, including increasing gold holdings and planning for investments in equities, with the potential investment in Bitcoin.\n6. The speculation about the Czech National Bank potentially acquiring $7.3 billion in Bitcoin as part of its diversification strategy.\n7. The comparison between the Czech Republic's potential national Bitcoin stockpile and the lack of action in the United States.\n8. The criticism of diversifying into other cryptocurrencies like XRP instead of focusing solely on Bitcoin.", - data: [ - 5, 0, 4, 7, 2, 2, 12, 3, 16, 3, 4, 1, 4, 1, 0, 0, 1, 2, 2, 0, 0, 3, 7, 11, 3, 3, 3, 0, 2, 0, - 2, 1, 1, 6, 1, 0, 5, 8, 2, 0, 2, 2, 2, 1, 1, 2, 1, 0, 1, 1, 1, 1, 6, 1, 1, - ], - }, - { - label: 'ETF Flows', - topics: 'inflows,net,etfs,spot,etf', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. BlackRock's Bitcoin ETF, $IBIT, purchasing significant amounts of Bitcoin.\n2. U.S. Bitcoin ETFs experiencing consistent inflows, with a total net inflow of $18.44M on Jan 28.\n3. Corporations and US spot ETFs purchasing a combined amount of 68.2k BTC in 2025, while miners have only produced 12.5k BTC.\n4. The growing BTC supply deficit due to relentless ETF buying in 2025.\n5. Crypto funds seeing $1.9B in inflows, driven by Trump's Bitcoin reserve proposal.\n6. Ethereum rebounding with $205M in inflows, while altcoins also gaining traction.\n7. The total net outflow of Ethereum spot ETFs on Jan 23 and the largest net inflow from Fidelity ETF FETH.\n8. The performance of spot bitcoin ETFs, with $4.2B in flows since the start of the year.\n9. The total net inflow of Ethereum spot ETFs on Jan 24, with Bitwise ETF ETHW recording the largest net inflow.\n\nOverall, the discussion revolves around the significant inflows into Bitcoin and Ethereum ETFs, the impact of corporate and US spot ETF purchases on BTC supply, and the overall bullish sentiment in the crypto market.", - data: [ - 2, 0, 1, 0, 8, 4, 1, 5, 1, 0, 0, 2, 4, 1, 6, 0, 32, 2, 1, 0, 0, 4, 0, 0, 1, 3, 1, 3, 1, 0, - 1, 1, 1, 2, 1, 2, 0, 0, 1, 3, 0, 2, 3, 0, 20, 0, 1, 0, 3, 5, 2, 5, 1, 4, 6, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-57.json b/priv/repo/major_topics_seed/data-57.json deleted file mode 100644 index efcd6002e6..0000000000 --- a/priv/repo/major_topics_seed/data-57.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["30.01.25","31.01.25","31.01.25","31.01.25","31.01.25","31.01.25","31.01.25","31.01.25","01.02.25","01.02.25","01.02.25","01.02.25","01.02.25","01.02.25","01.02.25","01.02.25","02.02.25","02.02.25","02.02.25","02.02.25","02.02.25","02.02.25","02.02.25","02.02.25","03.02.25","03.02.25","03.02.25","03.02.25","03.02.25","03.02.25","03.02.25","03.02.25","04.02.25","04.02.25","04.02.25","04.02.25","04.02.25","04.02.25","04.02.25","04.02.25","05.02.25","05.02.25","05.02.25","05.02.25","05.02.25","05.02.25","05.02.25","05.02.25","06.02.25","06.02.25","06.02.25","06.02.25","06.02.25","06.02.25","06.02.25"],"datasets":[{"label":"ETH","topics":"eth,ethereum,time,long,price","description":"The key topics discussed in the messages from Twitter about the crypto industry, specifically Ethereum (ETH), include:\n1. Overnight price movements of ETH and confusion among investors.\n2. Speculation on the best time to invest in ETH and other cryptocurrencies.\n3. Predictions of a significant price increase in ETH in the near future.\n4. Analysis of market trends and potential trading strategies for ETH and other cryptocurrencies.\n5. Mention of other cryptocurrencies like Maker (MKR) and Solana (SOL) impacting ETH's market liquidity.\n6. Institutional interest in ETH, with the possibility of an Ether ETF and potential price breakout towards $6,000.\n7. Overall positive sentiment towards ETH despite recent market challenges.","data":[28,4,22,23,7,9,22,38,43,26,21,22,29,19,36,134,203,45,41,16,38,32,43,39,24,18,29,39,55,37,23,21,28,15,40,31,25,34,23,44,31,28,29,21,25,23,31,25,40,25,19,34,25,27,28]},{"label":"Memecoins","topics":"meme,memecoin,coins,memecoins,memes","description":"Based on the messages from Twitter, it is clear that meme coins are a popular topic of discussion within the crypto community. Some of the meme coins mentioned include $DOGE, $PEPE, $GIGA, Arctic Pablo ($APC), Turbo, Ponke, Bonk, BTFD Coin, Dogecoin, and Pudgy Penguins. There is also mention of new meme tokens being released and the potential for significant gains with certain meme coins.\n\nAdditionally, there is a debate about whether meme coins are just for laughs or if they can lead to serious financial gains. Some users caution against falling for bait and engaging in insider trading, while others share success stories of finding profitable meme coins independently.\n\nOverall, it appears that meme coins are a significant part of the crypto culture, with enthusiasts actively discussing and investing in them for potential profits.","data":[7,6,12,15,5,10,6,14,8,22,10,9,9,40,3,9,6,21,14,14,16,21,7,13,5,10,14,15,13,22,61,130,15,11,9,12,17,8,17,14,14,14,13,9,12,18,4,17,9,14,6,11,12,12,11]},{"label":"DOGE","topics":"doge,dogecoin,elon,government,elonmusk","description":"Based on the messages from Twitter, it seems that there is a lot of discussion about Dogecoin ($DOGE) and its potential pump, as well as its interactions with various entities such as the IRS, Elon Musk, and the education department. There are also mentions of fraud, corruption, and wasteful spending being uncovered by Dogecoin. Additionally, there is talk about the fear and pursuit of Dogecoin by young team members, as well as potential airdrops of Dogecoin. The messages also touch on political corruption and USAID officials being put on leave for trying to stop Dogecoin from accessing agency systems. Overall, it appears that Dogecoin is a hot topic of discussion in the crypto community on Twitter.","data":[11,9,22,12,4,2,13,8,7,9,11,6,19,21,166,10,7,16,6,9,15,21,15,14,9,10,14,19,16,11,8,5,22,13,6,19,15,11,6,10,14,11,10,6,10,11,15,14,11,6,9,21,25,17,11]},{"label":"AI","topics":"ai,agents,agent,data,future","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. AI revolution and its impact on various sectors such as healthcare and business\n2. Different types of AI opportunities and frameworks for model improvement/adoption\n3. The role of AI agents in transforming business and security\n4. The integration of AI and blockchain technology for data security\n5. Irony in job applicants being told not to use AI in their applications by a billion-dollar AI company\n6. The importance of leveraging technology to improve quality of life\n7. Analysis and automation of breaking news and trending topics using AI models\n8. Interviews with founders and product leaders behind successful AI products\n9. Comparison of AI agents with traditional query/answer systems\n10. The impact of AI on society and personal introspection on its benefits\n\nOverall, the messages reflect a deep interest and engagement in the advancements and implications of AI technology within the crypto industry.","data":[47,127,16,13,2,5,6,9,8,20,19,13,10,11,6,15,11,9,12,34,12,14,6,4,22,25,9,19,11,10,8,9,14,6,10,15,17,14,11,8,18,8,7,14,20,4,17,20,9,7,4,13,7,13,13]},{"label":"BTC Price","topics":"range,btc,100k,weekly,support","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Telcoin potentially affecting Bitcoin's price\n- Bitcoin's price movement towards 100K\n- Speculation on Bitcoin reaching 300K-400K\n- Nations experiencing FOMO in relation to Bitcoin\n- Technical analysis of Bitcoin's price movement and potential resistance levels\n- Retail investors and whales reacting to price fluctuations in the 89K to 91K zone\n- Predictions and scenarios for Bitcoin's price movement, including potential support and resistance levels\n- Updates and news affecting the crypto industry, with a focus on Bitcoin's dominance and market trends\n- Monthly review and analysis of Bitcoin's price performance\n- Market analyst reports on Bitcoin's market direction and potential factors influencing its price movement.","data":[12,8,12,11,56,40,33,10,4,16,13,8,16,2,6,4,5,10,5,7,5,2,10,28,13,2,8,8,6,17,5,5,7,14,9,9,11,21,18,24,5,13,15,8,13,17,20,10,2,12,0,5,5,21,3]},{"label":"APE","topics":"apes,nft,nfts,ape,mint","description":"The key topics discussed in the messages from twitter related to the crypto industry include:\n1. Launch of the FNF on-chain hit squad FL1CK3R on the @osura_com marketplace\n2. Impressive NFT projects\n3. Conviction trades and restaked POND @symbioticfi vault on @mellowprotocol\n4. Introduction to NFT projects on @MagicEden\n5. Collecting points on #ApeChain #NFTs\n6. HAPE x @apecoin Paris Meetup\n7. Future of NFTs and Web3 from an artist's standpoint\n8. Cybernetic Drift floor on #ApeChain\n9. ApeChain's new Spotlight season and NFT rewards for contributions to coding\n10. Networking events and community bonding in Paris\n\nOverall, the messages reflect a vibrant and active community discussing various aspects of the crypto industry, including NFT projects, trading strategies, and community events.","data":[5,1,38,10,3,3,0,7,6,11,5,14,4,6,0,5,3,4,5,9,6,5,8,6,3,5,10,5,4,8,5,16,9,37,5,4,2,8,9,6,1,4,8,6,9,3,5,3,10,3,5,3,10,8,8]},{"label":"SOL","topics":"solana,sol,ethereum,social,ca","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n- Ethereum vs Solana: There is a discussion about which cryptocurrency is more bullish, with mentions of peer to peer, peer to pool, pool to pool, and bot to bot transactions. Some users believe that Solana is the real winner due to its IP rights and being the first coin on the Solana network.\n- Market trends: Bitcoin is above $100k, Solana has seen a 120% increase in the last year, and the US President has launched 4 crypto projects.\n- Trading strategies: There are mentions of buying opportunities, swing plays, and theories about market cycles and price movements for Solana.\n- Network performance: Solana's network uptime is highlighted, with comparisons to Ethereum's past performance.\n- Trading activity: There are mentions of liquidated long positions, trading volumes, and price targets for Solana.\n- New developments: A new app launch on Solana is announced, with a focus on liquidity and volume advantages.\n\nOverall, the discussions on Twitter indicate a mix of market analysis, trading strategies, network performance, and new developments in the crypto industry, with a particular focus on Solana and its comparison to Ethereum.","data":[3,5,4,7,3,3,7,9,10,10,3,6,6,10,5,8,4,11,11,8,8,3,4,2,3,9,3,4,6,9,6,6,1,5,4,5,10,15,8,2,8,7,6,36,3,12,8,5,8,15,3,5,5,7,9]},{"label":"XRP","topics":"xrp,ripple,ledger,etf,purpose","description":"Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n1. XRP and Ripple: Discussions about XRP being decentralized, network outages, price breakouts, and the Ripple community.\n2. Reserve Protocol (RSR): Excitement about the potential for RSR, upcoming launches, and its performance in the market.\n3. Memecoin wars: Speculation about XRP's community involvement in memecoin wars and the need to make it easier for everyone to buy their coins.\n4. Stablecoins: Updates on Ripple's RLUSD stablecoin trading volume and competition with other stablecoins.\n5. Market trends: Analysis of XRP's price drop amid the recent market downturn and predictions for its future price movement.\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and analysis surrounding XRP, Ripple, RSR, memecoins, stablecoins, and market trends in the crypto industry.","data":[8,3,5,8,2,7,8,2,9,4,9,6,4,3,11,10,3,7,5,4,8,4,9,7,6,5,5,5,6,5,4,5,8,6,8,2,9,29,6,7,25,3,6,1,2,8,6,3,8,2,1,7,5,3,5]},{"label":"GameFi","topics":"gaming,games,game,web3,play","description":"The messages from twitter are discussing various topics related to the crypto gaming industry. Some key words mentioned include game jam, web3 gaming, Avalanche, play-to-earn, NAKA ecosystem, Web3 DAOs, and gaming executives. The messages highlight the excitement around new games, player engagement, and the potential for Web3 gaming to revolutionize the industry. There is also mention of upcoming events, such as fireside chats and livestreamed game matches. Overall, the crypto gaming community seems to be buzzing with activity and innovation.","data":[5,6,7,5,3,1,5,3,6,2,6,4,2,1,3,5,3,6,4,54,5,4,6,0,5,9,6,4,3,10,5,3,7,5,2,6,22,3,6,4,9,7,8,5,2,4,7,2,11,1,5,4,5,9,2]},{"label":"VVV","topics":"vvv,vine,coinbase,altseason,hodl","description":"The key topics currently being discussed on Twitter in the crypto industry are the listing of $Vine on a tier 1 USA exchange, the confirmation of $Vine as a \"Blockchain based social media,\" the potential for $Vine to hit $7.40, the positive movement of $vvv, the surge of $Vine past $0.17, and the upcoming $Vine Futures Frenzy event. Additionally, there is discussion about patterns in the market, potential future moves, diamond balls hodling $vvv, and the anticipation of green candles for $vvv. Overall, the sentiment seems to be bullish on both $Vine and $vvv with expectations of significant price increases.","data":[5,7,6,4,1,0,3,9,4,4,2,3,4,1,9,2,1,5,4,2,3,2,1,16,3,4,2,6,13,12,3,3,2,10,4,9,3,4,1,5,3,3,6,2,2,3,2,1,5,2,0,4,22,4,3]},{"label":"Berachain","topics":"berachain,mainnet,airdrop,launch,binance","description":"The key topics currently discussed in the crypto industry on Twitter include the launch of Berachain's mainnet on February 6, 2025, with various features such as margin trading, futures, savings, and fast trade. There is also excitement surrounding the compatibility of Berachain with EVM and Cosmos SDK, as well as the announcement of the Ondo Chain. Additionally, there are discussions about the launch of Berachain perpetual futures pairs on Bitrue and the upcoming HODLer Airdrops with Berachain on Binance. Furthermore, there is a bounty program for Berachain where participants can share rewards in USDT. Overall, the sentiment seems to be positive and bullish about the future of Berachain and its developments in the crypto industry.","data":[3,3,5,47,1,2,2,3,3,6,3,2,2,6,5,2,3,3,9,2,3,4,1,3,4,4,9,2,13,5,1,3,5,10,9,4,2,3,5,2,1,1,3,2,2,4,0,3,1,5,0,3,4,4,3]},{"label":"Liquidations","topics":"liquidated,liquidations,liquidation,covid,24","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Major disruptions in the Bitcoin cryptocurrency market due to on-chain losses climbing to $1.31 billion.\n2. Over $2 billion liquidated in just 24 hours, surpassing previous crashes like the COVID crash and FTX collapse.\n3. Market shakeout with $2.18 billion liquidated in 24 hours, attributed to a trade war ignited by Trump.\n4. Worst liquidation event in history in a single day, with 712,698 traders being liquidated.\n5. Performance of different cryptocurrencies, with some bags performing well (BTC, OM, BGB), others performing OK-ish (SOL, Sui), and bad performing bags including ETH, L1s, L2s, Ai, IEOs, DeFi, etc.\n6. Comparison of the current market situation to the March 12th, 2020 COVID crash, with some users arguing that it is not as bad for BTC.\n7. Potential worst-case scenarios involving rug-pulls, unlocked tokens, and draining locked LPs.\n8. Record-breaking $2.2 billion liquidated in the last 24 hours, with ETH dominating in liquidations followed by BTC, XRP, SOL, and DOGE.\n9. Total liquidations reaching $2.09 billion in the past 24 hours, with various cryptocurrencies being affected.\nOverall, the discussions on Twitter reflect the volatility and uncertainty in the crypto market, with traders experiencing significant losses and trying to navigate the current market conditions.","data":[3,2,4,11,3,6,1,0,3,0,2,23,2,2,2,1,1,4,1,6,7,3,1,3,3,3,5,17,18,5,20,2,1,1,14,3,5,1,3,4,1,4,4,0,0,2,3,1,5,7,1,2,3,2,7]},{"label":"BTC","topics":"bitcoin,makes,sense,statement,energy","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n- #Bitcoin\n- Crypto\n- #LUNC\n- Moby wicks\n- NFT project\n- Real #Bitcoiner\n- HODLers\n- Strategy\n- @saylor\n- Shitcoiners\n- Permissionless\n- OpCat\n- @benthecarman\n- Sponsorship\n- Nihilists\n\nOverall, the sentiment towards Bitcoin seems to be mixed, with some users expressing excitement and support, while others are skeptical and critical of potential changes to Bitcoin. The discussion also touches on other cryptocurrencies and projects within the industry.","data":[3,3,2,1,33,17,0,2,3,2,5,1,6,8,1,3,3,1,5,1,2,4,2,2,2,4,8,8,3,6,2,4,6,2,5,2,4,4,3,10,4,0,8,3,2,5,3,6,2,4,5,0,1,3,1]},{"label":"DeFi","topics":"defi,defai,protocols,ecosystem,finance","description":"The key topics discussed in the messages from twitter are related to DeFi (Decentralized Finance) and DeFAI (Decentralized Finance Artificial Intelligence). Some specific projects and platforms mentioned include TEL DeFi, Ankr, AltLayer, Buidl, UniLend Finance, Numa Network, Lamaa AI, Starknet, and MODE Club. The messages also highlight the integration of AI with decentralized finance for enhanced efficiency, predictive lending, automated transactions, and dynamic portfolio management. Additionally, there is a focus on upcoming launches, partnerships, and the potential of financial AI agents in the DeFI space. Overall, the discussions revolve around the advancements and innovations in the crypto industry, particularly in the realm of decentralized finance.","data":[6,8,6,5,1,0,5,4,6,1,3,5,6,14,0,4,6,2,5,7,3,3,5,2,4,10,7,2,2,1,1,4,7,4,2,1,8,5,8,6,1,4,3,2,5,1,4,0,7,4,0,5,2,3,3]},{"label":"SEC","topics":"sec,task,enforcement,force,securities","description":"The messages from Twitter are discussing the SEC's actions and decisions regarding cryptocurrency regulation, particularly focusing on SEC Chair Gary Gensler. There are mentions of the SEC launching a Crypto Task Force website, scaling back enforcement efforts, appointing a new acting chair who is a Bitcoin and crypto supporter, and setting new priorities for regulatory frameworks. There is also criticism of past SEC directors and their handling of crypto-related matters, with calls for greater accountability. Overall, the topic revolves around the evolving regulatory landscape for digital assets and the impact of SEC decisions on the crypto industry.","data":[5,0,5,0,1,1,19,2,5,1,6,5,1,1,6,2,1,1,5,0,3,1,2,1,3,1,11,4,1,0,2,0,5,4,2,5,1,2,3,9,1,9,9,0,0,1,4,3,2,2,1,1,0,3,0]},{"label":"Inflation","topics":"inflation,rates,rate,impact,cuts","description":"The key topics currently discussed in the messages from twitter are:\n1. Inflation approaching the ECB's target\n2. US Services Sector Surveys Plunged in January\n3. CA Gross domestic product by industry in November 2024\n4. BOE Monetary Policy Report in February 2025\n5. US limited experience with large scale tariffs\n6. US Job Openings and Labor Turnover in December 2024\n7. Difficulty in specifying terminal rate by BOJ's Tamura\n8. US Services PMI at 52.8% in January 2025\n9. Impact of egg prices surge due to bird flu on food inflation\n10. Discussion on Bitcoin's purchasing power and potential impact of AI on deflation and hyperinflation.","data":[3,2,1,1,0,4,4,3,1,1,2,1,8,1,1,5,1,1,2,4,0,3,2,2,15,7,3,4,0,2,26,1,1,1,0,5,7,4,2,2,2,2,3,0,1,1,1,1,2,0,2,1,0,1,10]},{"label":"BTC Mining","topics":"mining,miners,miner,power,energy","description":"The key topics discussed in the messages from Twitter regarding Bitcoin mining include:\n- Bitcoin mining being used to create energy demand in Greenland\n- Leading miners signaling a $115,000 Bitcoin price within 2 weeks\n- KuCoin exiting the U.S. market\n- Bitcoin miners turning to hashrate derivatives to hedge against revenue volatility\n- Bitcoin's hashrate hitting a record high\n- JPMorgan reporting on Bitcoin network hashrate and mining difficulty\n- Bitcoin miners selling a significant amount of BTC\n- Research on Bitcoin mining as a virtual energy storage system\n- Miner reserves increasing significantly\n- CleanSpark crushing earnings with improved efficiency in mining\n- Mention of TrustlessMining, BraiinsMining, and Ocean Mining as mining entities\n\nOverall, the messages highlight the current trends and developments in the Bitcoin mining industry, including price predictions, market dynamics, and technological advancements.","data":[7,0,4,1,16,5,8,0,3,3,3,2,4,1,2,2,3,1,3,1,1,3,6,2,2,3,4,7,1,1,2,13,3,3,3,2,4,1,1,2,3,2,2,2,1,2,1,2,0,1,0,1,1,4,1]},{"label":"David Sacks","topics":"sacks,david,press,conference,digital","description":"The key topic discussed in the messages from Twitter is the press conference being held by President Trump's Crypto Czar, David Sacks, regarding the evaluation of a potential Bitcoin reserve and the U.S. Digital Asset Leadership Plan. The community is eagerly anticipating the outcome of this conference and speculating on how it will shape the future of crypto industry. Regulatory clarity and the potential impact on Bitcoin and other digital assets are also being discussed. Overall, there is a lot of excitement and interest surrounding this event and its implications for the industry.","data":[1,5,2,2,0,0,17,3,0,6,1,3,10,1,0,0,1,1,2,1,0,1,1,4,0,0,0,4,6,0,1,0,2,0,0,1,3,1,2,2,25,5,1,3,1,2,5,3,3,11,0,0,0,1,0]},{"label":"Gold","topics":"gold,record,high,alltime,physical","description":"Based on the messages from Twitter, it is evident that there is a significant discussion about the price and performance of gold in comparison to Bitcoin within the crypto industry. Gold is experiencing spikes in price due to physical stockpiling and demand for assets that protect against inflation and uncertainty. There are mentions of gold hitting record highs, surpassing $2800, and the potential for it to reach $3000 in the near future. Additionally, there are comparisons between the price of gold and other assets like oil, highlighting the current affordability of oil in comparison to gold.\n\nFurthermore, there is a debate about the scarcity and purchasing power of gold, with some users expressing skepticism about its real value. The role of gold as a safe-haven asset and its historical performance in times of economic uncertainty are also discussed. In contrast, there are mentions of Bitcoin as a potential alternative to gold, with some suggesting that Bitcoin will see a surge in price when gold takes a break from its current rally.\n\nOverall, the messages reflect a mix of opinions and analysis regarding the performance of gold, its relationship with Bitcoin, and the broader economic implications of these trends in the crypto industry.","data":[2,0,1,0,6,4,2,3,0,1,2,0,0,1,0,0,0,1,3,1,62,1,1,0,3,1,4,0,0,1,3,1,1,1,1,3,2,2,4,1,3,2,2,0,1,0,5,0,1,1,0,0,1,2,3]},{"label":"Buy the dip","topics":"dip,buy,buying,bought,did","description":"The key topic discussed in the messages from Twitter is buying the dip in the crypto market. Many users are expressing confidence in buying the dip, while others are hesitant or joking about it. Some are discussing specific strategies for buying the dip, such as setting a price target or adding to their cryptocurrency holdings during a dip. Overall, the sentiment towards buying the dip in the crypto market varies among users, with some believing it will pay off in the long run and others being more skeptical.","data":[1,0,1,3,0,2,1,39,4,3,1,2,3,14,0,4,0,2,0,1,1,0,1,3,0,0,2,1,0,1,2,2,2,1,0,0,0,2,0,4,0,4,1,1,1,3,0,1,2,0,0,0,1,1,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-57.ts b/priv/repo/major_topics_seed/data-57.ts deleted file mode 100644 index acfd192aa8..0000000000 --- a/priv/repo/major_topics_seed/data-57.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '30.01.25', - '31.01.25', - '31.01.25', - '31.01.25', - '31.01.25', - '31.01.25', - '31.01.25', - '31.01.25', - '01.02.25', - '01.02.25', - '01.02.25', - '01.02.25', - '01.02.25', - '01.02.25', - '01.02.25', - '01.02.25', - '02.02.25', - '02.02.25', - '02.02.25', - '02.02.25', - '02.02.25', - '02.02.25', - '02.02.25', - '02.02.25', - '03.02.25', - '03.02.25', - '03.02.25', - '03.02.25', - '03.02.25', - '03.02.25', - '03.02.25', - '03.02.25', - '04.02.25', - '04.02.25', - '04.02.25', - '04.02.25', - '04.02.25', - '04.02.25', - '04.02.25', - '04.02.25', - '05.02.25', - '05.02.25', - '05.02.25', - '05.02.25', - '05.02.25', - '05.02.25', - '05.02.25', - '05.02.25', - '06.02.25', - '06.02.25', - '06.02.25', - '06.02.25', - '06.02.25', - '06.02.25', - '06.02.25', - ], - datasets: [ - { - label: 'ETH', - topics: 'eth,ethereum,time,long,price', - description: - "The key topics discussed in the messages from Twitter about the crypto industry, specifically Ethereum (ETH), include:\n1. Overnight price movements of ETH and confusion among investors.\n2. Speculation on the best time to invest in ETH and other cryptocurrencies.\n3. Predictions of a significant price increase in ETH in the near future.\n4. Analysis of market trends and potential trading strategies for ETH and other cryptocurrencies.\n5. Mention of other cryptocurrencies like Maker (MKR) and Solana (SOL) impacting ETH's market liquidity.\n6. Institutional interest in ETH, with the possibility of an Ether ETF and potential price breakout towards $6,000.\n7. Overall positive sentiment towards ETH despite recent market challenges.", - data: [ - 28, 4, 22, 23, 7, 9, 22, 38, 43, 26, 21, 22, 29, 19, 36, 134, 203, 45, 41, 16, 38, 32, 43, - 39, 24, 18, 29, 39, 55, 37, 23, 21, 28, 15, 40, 31, 25, 34, 23, 44, 31, 28, 29, 21, 25, 23, - 31, 25, 40, 25, 19, 34, 25, 27, 28, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coins,memecoins,memes', - description: - 'Based on the messages from Twitter, it is clear that meme coins are a popular topic of discussion within the crypto community. Some of the meme coins mentioned include $DOGE, $PEPE, $GIGA, Arctic Pablo ($APC), Turbo, Ponke, Bonk, BTFD Coin, Dogecoin, and Pudgy Penguins. There is also mention of new meme tokens being released and the potential for significant gains with certain meme coins.\n\nAdditionally, there is a debate about whether meme coins are just for laughs or if they can lead to serious financial gains. Some users caution against falling for bait and engaging in insider trading, while others share success stories of finding profitable meme coins independently.\n\nOverall, it appears that meme coins are a significant part of the crypto culture, with enthusiasts actively discussing and investing in them for potential profits.', - data: [ - 7, 6, 12, 15, 5, 10, 6, 14, 8, 22, 10, 9, 9, 40, 3, 9, 6, 21, 14, 14, 16, 21, 7, 13, 5, 10, - 14, 15, 13, 22, 61, 130, 15, 11, 9, 12, 17, 8, 17, 14, 14, 14, 13, 9, 12, 18, 4, 17, 9, 14, - 6, 11, 12, 12, 11, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elon,government,elonmusk', - description: - 'Based on the messages from Twitter, it seems that there is a lot of discussion about Dogecoin ($DOGE) and its potential pump, as well as its interactions with various entities such as the IRS, Elon Musk, and the education department. There are also mentions of fraud, corruption, and wasteful spending being uncovered by Dogecoin. Additionally, there is talk about the fear and pursuit of Dogecoin by young team members, as well as potential airdrops of Dogecoin. The messages also touch on political corruption and USAID officials being put on leave for trying to stop Dogecoin from accessing agency systems. Overall, it appears that Dogecoin is a hot topic of discussion in the crypto community on Twitter.', - data: [ - 11, 9, 22, 12, 4, 2, 13, 8, 7, 9, 11, 6, 19, 21, 166, 10, 7, 16, 6, 9, 15, 21, 15, 14, 9, - 10, 14, 19, 16, 11, 8, 5, 22, 13, 6, 19, 15, 11, 6, 10, 14, 11, 10, 6, 10, 11, 15, 14, 11, - 6, 9, 21, 25, 17, 11, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,data,future', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n1. AI revolution and its impact on various sectors such as healthcare and business\n2. Different types of AI opportunities and frameworks for model improvement/adoption\n3. The role of AI agents in transforming business and security\n4. The integration of AI and blockchain technology for data security\n5. Irony in job applicants being told not to use AI in their applications by a billion-dollar AI company\n6. The importance of leveraging technology to improve quality of life\n7. Analysis and automation of breaking news and trending topics using AI models\n8. Interviews with founders and product leaders behind successful AI products\n9. Comparison of AI agents with traditional query/answer systems\n10. The impact of AI on society and personal introspection on its benefits\n\nOverall, the messages reflect a deep interest and engagement in the advancements and implications of AI technology within the crypto industry.', - data: [ - 47, 127, 16, 13, 2, 5, 6, 9, 8, 20, 19, 13, 10, 11, 6, 15, 11, 9, 12, 34, 12, 14, 6, 4, 22, - 25, 9, 19, 11, 10, 8, 9, 14, 6, 10, 15, 17, 14, 11, 8, 18, 8, 7, 14, 20, 4, 17, 20, 9, 7, 4, - 13, 7, 13, 13, - ], - }, - { - label: 'BTC Price', - topics: 'range,btc,100k,weekly,support', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Telcoin potentially affecting Bitcoin's price\n- Bitcoin's price movement towards 100K\n- Speculation on Bitcoin reaching 300K-400K\n- Nations experiencing FOMO in relation to Bitcoin\n- Technical analysis of Bitcoin's price movement and potential resistance levels\n- Retail investors and whales reacting to price fluctuations in the 89K to 91K zone\n- Predictions and scenarios for Bitcoin's price movement, including potential support and resistance levels\n- Updates and news affecting the crypto industry, with a focus on Bitcoin's dominance and market trends\n- Monthly review and analysis of Bitcoin's price performance\n- Market analyst reports on Bitcoin's market direction and potential factors influencing its price movement.", - data: [ - 12, 8, 12, 11, 56, 40, 33, 10, 4, 16, 13, 8, 16, 2, 6, 4, 5, 10, 5, 7, 5, 2, 10, 28, 13, 2, - 8, 8, 6, 17, 5, 5, 7, 14, 9, 9, 11, 21, 18, 24, 5, 13, 15, 8, 13, 17, 20, 10, 2, 12, 0, 5, - 5, 21, 3, - ], - }, - { - label: 'APE', - topics: 'apes,nft,nfts,ape,mint', - description: - "The key topics discussed in the messages from twitter related to the crypto industry include:\n1. Launch of the FNF on-chain hit squad FL1CK3R on the @osura_com marketplace\n2. Impressive NFT projects\n3. Conviction trades and restaked POND @symbioticfi vault on @mellowprotocol\n4. Introduction to NFT projects on @MagicEden\n5. Collecting points on #ApeChain #NFTs\n6. HAPE x @apecoin Paris Meetup\n7. Future of NFTs and Web3 from an artist's standpoint\n8. Cybernetic Drift floor on #ApeChain\n9. ApeChain's new Spotlight season and NFT rewards for contributions to coding\n10. Networking events and community bonding in Paris\n\nOverall, the messages reflect a vibrant and active community discussing various aspects of the crypto industry, including NFT projects, trading strategies, and community events.", - data: [ - 5, 1, 38, 10, 3, 3, 0, 7, 6, 11, 5, 14, 4, 6, 0, 5, 3, 4, 5, 9, 6, 5, 8, 6, 3, 5, 10, 5, 4, - 8, 5, 16, 9, 37, 5, 4, 2, 8, 9, 6, 1, 4, 8, 6, 9, 3, 5, 3, 10, 3, 5, 3, 10, 8, 8, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,ethereum,social,ca', - description: - "Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n- Ethereum vs Solana: There is a discussion about which cryptocurrency is more bullish, with mentions of peer to peer, peer to pool, pool to pool, and bot to bot transactions. Some users believe that Solana is the real winner due to its IP rights and being the first coin on the Solana network.\n- Market trends: Bitcoin is above $100k, Solana has seen a 120% increase in the last year, and the US President has launched 4 crypto projects.\n- Trading strategies: There are mentions of buying opportunities, swing plays, and theories about market cycles and price movements for Solana.\n- Network performance: Solana's network uptime is highlighted, with comparisons to Ethereum's past performance.\n- Trading activity: There are mentions of liquidated long positions, trading volumes, and price targets for Solana.\n- New developments: A new app launch on Solana is announced, with a focus on liquidity and volume advantages.\n\nOverall, the discussions on Twitter indicate a mix of market analysis, trading strategies, network performance, and new developments in the crypto industry, with a particular focus on Solana and its comparison to Ethereum.", - data: [ - 3, 5, 4, 7, 3, 3, 7, 9, 10, 10, 3, 6, 6, 10, 5, 8, 4, 11, 11, 8, 8, 3, 4, 2, 3, 9, 3, 4, 6, - 9, 6, 6, 1, 5, 4, 5, 10, 15, 8, 2, 8, 7, 6, 36, 3, 12, 8, 5, 8, 15, 3, 5, 5, 7, 9, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,ledger,etf,purpose', - description: - "Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n1. XRP and Ripple: Discussions about XRP being decentralized, network outages, price breakouts, and the Ripple community.\n2. Reserve Protocol (RSR): Excitement about the potential for RSR, upcoming launches, and its performance in the market.\n3. Memecoin wars: Speculation about XRP's community involvement in memecoin wars and the need to make it easier for everyone to buy their coins.\n4. Stablecoins: Updates on Ripple's RLUSD stablecoin trading volume and competition with other stablecoins.\n5. Market trends: Analysis of XRP's price drop amid the recent market downturn and predictions for its future price movement.\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and analysis surrounding XRP, Ripple, RSR, memecoins, stablecoins, and market trends in the crypto industry.", - data: [ - 8, 3, 5, 8, 2, 7, 8, 2, 9, 4, 9, 6, 4, 3, 11, 10, 3, 7, 5, 4, 8, 4, 9, 7, 6, 5, 5, 5, 6, 5, - 4, 5, 8, 6, 8, 2, 9, 29, 6, 7, 25, 3, 6, 1, 2, 8, 6, 3, 8, 2, 1, 7, 5, 3, 5, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,web3,play', - description: - 'The messages from twitter are discussing various topics related to the crypto gaming industry. Some key words mentioned include game jam, web3 gaming, Avalanche, play-to-earn, NAKA ecosystem, Web3 DAOs, and gaming executives. The messages highlight the excitement around new games, player engagement, and the potential for Web3 gaming to revolutionize the industry. There is also mention of upcoming events, such as fireside chats and livestreamed game matches. Overall, the crypto gaming community seems to be buzzing with activity and innovation.', - data: [ - 5, 6, 7, 5, 3, 1, 5, 3, 6, 2, 6, 4, 2, 1, 3, 5, 3, 6, 4, 54, 5, 4, 6, 0, 5, 9, 6, 4, 3, 10, - 5, 3, 7, 5, 2, 6, 22, 3, 6, 4, 9, 7, 8, 5, 2, 4, 7, 2, 11, 1, 5, 4, 5, 9, 2, - ], - }, - { - label: 'VVV', - topics: 'vvv,vine,coinbase,altseason,hodl', - description: - 'The key topics currently being discussed on Twitter in the crypto industry are the listing of $Vine on a tier 1 USA exchange, the confirmation of $Vine as a "Blockchain based social media," the potential for $Vine to hit $7.40, the positive movement of $vvv, the surge of $Vine past $0.17, and the upcoming $Vine Futures Frenzy event. Additionally, there is discussion about patterns in the market, potential future moves, diamond balls hodling $vvv, and the anticipation of green candles for $vvv. Overall, the sentiment seems to be bullish on both $Vine and $vvv with expectations of significant price increases.', - data: [ - 5, 7, 6, 4, 1, 0, 3, 9, 4, 4, 2, 3, 4, 1, 9, 2, 1, 5, 4, 2, 3, 2, 1, 16, 3, 4, 2, 6, 13, 12, - 3, 3, 2, 10, 4, 9, 3, 4, 1, 5, 3, 3, 6, 2, 2, 3, 2, 1, 5, 2, 0, 4, 22, 4, 3, - ], - }, - { - label: 'Berachain', - topics: 'berachain,mainnet,airdrop,launch,binance', - description: - "The key topics currently discussed in the crypto industry on Twitter include the launch of Berachain's mainnet on February 6, 2025, with various features such as margin trading, futures, savings, and fast trade. There is also excitement surrounding the compatibility of Berachain with EVM and Cosmos SDK, as well as the announcement of the Ondo Chain. Additionally, there are discussions about the launch of Berachain perpetual futures pairs on Bitrue and the upcoming HODLer Airdrops with Berachain on Binance. Furthermore, there is a bounty program for Berachain where participants can share rewards in USDT. Overall, the sentiment seems to be positive and bullish about the future of Berachain and its developments in the crypto industry.", - data: [ - 3, 3, 5, 47, 1, 2, 2, 3, 3, 6, 3, 2, 2, 6, 5, 2, 3, 3, 9, 2, 3, 4, 1, 3, 4, 4, 9, 2, 13, 5, - 1, 3, 5, 10, 9, 4, 2, 3, 5, 2, 1, 1, 3, 2, 2, 4, 0, 3, 1, 5, 0, 3, 4, 4, 3, - ], - }, - { - label: 'Liquidations', - topics: 'liquidated,liquidations,liquidation,covid,24', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n1. Major disruptions in the Bitcoin cryptocurrency market due to on-chain losses climbing to $1.31 billion.\n2. Over $2 billion liquidated in just 24 hours, surpassing previous crashes like the COVID crash and FTX collapse.\n3. Market shakeout with $2.18 billion liquidated in 24 hours, attributed to a trade war ignited by Trump.\n4. Worst liquidation event in history in a single day, with 712,698 traders being liquidated.\n5. Performance of different cryptocurrencies, with some bags performing well (BTC, OM, BGB), others performing OK-ish (SOL, Sui), and bad performing bags including ETH, L1s, L2s, Ai, IEOs, DeFi, etc.\n6. Comparison of the current market situation to the March 12th, 2020 COVID crash, with some users arguing that it is not as bad for BTC.\n7. Potential worst-case scenarios involving rug-pulls, unlocked tokens, and draining locked LPs.\n8. Record-breaking $2.2 billion liquidated in the last 24 hours, with ETH dominating in liquidations followed by BTC, XRP, SOL, and DOGE.\n9. Total liquidations reaching $2.09 billion in the past 24 hours, with various cryptocurrencies being affected.\nOverall, the discussions on Twitter reflect the volatility and uncertainty in the crypto market, with traders experiencing significant losses and trying to navigate the current market conditions.', - data: [ - 3, 2, 4, 11, 3, 6, 1, 0, 3, 0, 2, 23, 2, 2, 2, 1, 1, 4, 1, 6, 7, 3, 1, 3, 3, 3, 5, 17, 18, - 5, 20, 2, 1, 1, 14, 3, 5, 1, 3, 4, 1, 4, 4, 0, 0, 2, 3, 1, 5, 7, 1, 2, 3, 2, 7, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,makes,sense,statement,energy', - description: - 'Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n- #Bitcoin\n- Crypto\n- #LUNC\n- Moby wicks\n- NFT project\n- Real #Bitcoiner\n- HODLers\n- Strategy\n- @saylor\n- Shitcoiners\n- Permissionless\n- OpCat\n- @benthecarman\n- Sponsorship\n- Nihilists\n\nOverall, the sentiment towards Bitcoin seems to be mixed, with some users expressing excitement and support, while others are skeptical and critical of potential changes to Bitcoin. The discussion also touches on other cryptocurrencies and projects within the industry.', - data: [ - 3, 3, 2, 1, 33, 17, 0, 2, 3, 2, 5, 1, 6, 8, 1, 3, 3, 1, 5, 1, 2, 4, 2, 2, 2, 4, 8, 8, 3, 6, - 2, 4, 6, 2, 5, 2, 4, 4, 3, 10, 4, 0, 8, 3, 2, 5, 3, 6, 2, 4, 5, 0, 1, 3, 1, - ], - }, - { - label: 'DeFi', - topics: 'defi,defai,protocols,ecosystem,finance', - description: - 'The key topics discussed in the messages from twitter are related to DeFi (Decentralized Finance) and DeFAI (Decentralized Finance Artificial Intelligence). Some specific projects and platforms mentioned include TEL DeFi, Ankr, AltLayer, Buidl, UniLend Finance, Numa Network, Lamaa AI, Starknet, and MODE Club. The messages also highlight the integration of AI with decentralized finance for enhanced efficiency, predictive lending, automated transactions, and dynamic portfolio management. Additionally, there is a focus on upcoming launches, partnerships, and the potential of financial AI agents in the DeFI space. Overall, the discussions revolve around the advancements and innovations in the crypto industry, particularly in the realm of decentralized finance.', - data: [ - 6, 8, 6, 5, 1, 0, 5, 4, 6, 1, 3, 5, 6, 14, 0, 4, 6, 2, 5, 7, 3, 3, 5, 2, 4, 10, 7, 2, 2, 1, - 1, 4, 7, 4, 2, 1, 8, 5, 8, 6, 1, 4, 3, 2, 5, 1, 4, 0, 7, 4, 0, 5, 2, 3, 3, - ], - }, - { - label: 'SEC', - topics: 'sec,task,enforcement,force,securities', - description: - "The messages from Twitter are discussing the SEC's actions and decisions regarding cryptocurrency regulation, particularly focusing on SEC Chair Gary Gensler. There are mentions of the SEC launching a Crypto Task Force website, scaling back enforcement efforts, appointing a new acting chair who is a Bitcoin and crypto supporter, and setting new priorities for regulatory frameworks. There is also criticism of past SEC directors and their handling of crypto-related matters, with calls for greater accountability. Overall, the topic revolves around the evolving regulatory landscape for digital assets and the impact of SEC decisions on the crypto industry.", - data: [ - 5, 0, 5, 0, 1, 1, 19, 2, 5, 1, 6, 5, 1, 1, 6, 2, 1, 1, 5, 0, 3, 1, 2, 1, 3, 1, 11, 4, 1, 0, - 2, 0, 5, 4, 2, 5, 1, 2, 3, 9, 1, 9, 9, 0, 0, 1, 4, 3, 2, 2, 1, 1, 0, 3, 0, - ], - }, - { - label: 'Inflation', - topics: 'inflation,rates,rate,impact,cuts', - description: - "The key topics currently discussed in the messages from twitter are:\n1. Inflation approaching the ECB's target\n2. US Services Sector Surveys Plunged in January\n3. CA Gross domestic product by industry in November 2024\n4. BOE Monetary Policy Report in February 2025\n5. US limited experience with large scale tariffs\n6. US Job Openings and Labor Turnover in December 2024\n7. Difficulty in specifying terminal rate by BOJ's Tamura\n8. US Services PMI at 52.8% in January 2025\n9. Impact of egg prices surge due to bird flu on food inflation\n10. Discussion on Bitcoin's purchasing power and potential impact of AI on deflation and hyperinflation.", - data: [ - 3, 2, 1, 1, 0, 4, 4, 3, 1, 1, 2, 1, 8, 1, 1, 5, 1, 1, 2, 4, 0, 3, 2, 2, 15, 7, 3, 4, 0, 2, - 26, 1, 1, 1, 0, 5, 7, 4, 2, 2, 2, 2, 3, 0, 1, 1, 1, 1, 2, 0, 2, 1, 0, 1, 10, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,power,energy', - description: - "The key topics discussed in the messages from Twitter regarding Bitcoin mining include:\n- Bitcoin mining being used to create energy demand in Greenland\n- Leading miners signaling a $115,000 Bitcoin price within 2 weeks\n- KuCoin exiting the U.S. market\n- Bitcoin miners turning to hashrate derivatives to hedge against revenue volatility\n- Bitcoin's hashrate hitting a record high\n- JPMorgan reporting on Bitcoin network hashrate and mining difficulty\n- Bitcoin miners selling a significant amount of BTC\n- Research on Bitcoin mining as a virtual energy storage system\n- Miner reserves increasing significantly\n- CleanSpark crushing earnings with improved efficiency in mining\n- Mention of TrustlessMining, BraiinsMining, and Ocean Mining as mining entities\n\nOverall, the messages highlight the current trends and developments in the Bitcoin mining industry, including price predictions, market dynamics, and technological advancements.", - data: [ - 7, 0, 4, 1, 16, 5, 8, 0, 3, 3, 3, 2, 4, 1, 2, 2, 3, 1, 3, 1, 1, 3, 6, 2, 2, 3, 4, 7, 1, 1, - 2, 13, 3, 3, 3, 2, 4, 1, 1, 2, 3, 2, 2, 2, 1, 2, 1, 2, 0, 1, 0, 1, 1, 4, 1, - ], - }, - { - label: 'David Sacks', - topics: 'sacks,david,press,conference,digital', - description: - "The key topic discussed in the messages from Twitter is the press conference being held by President Trump's Crypto Czar, David Sacks, regarding the evaluation of a potential Bitcoin reserve and the U.S. Digital Asset Leadership Plan. The community is eagerly anticipating the outcome of this conference and speculating on how it will shape the future of crypto industry. Regulatory clarity and the potential impact on Bitcoin and other digital assets are also being discussed. Overall, there is a lot of excitement and interest surrounding this event and its implications for the industry.", - data: [ - 1, 5, 2, 2, 0, 0, 17, 3, 0, 6, 1, 3, 10, 1, 0, 0, 1, 1, 2, 1, 0, 1, 1, 4, 0, 0, 0, 4, 6, 0, - 1, 0, 2, 0, 0, 1, 3, 1, 2, 2, 25, 5, 1, 3, 1, 2, 5, 3, 3, 11, 0, 0, 0, 1, 0, - ], - }, - { - label: 'Gold', - topics: 'gold,record,high,alltime,physical', - description: - 'Based on the messages from Twitter, it is evident that there is a significant discussion about the price and performance of gold in comparison to Bitcoin within the crypto industry. Gold is experiencing spikes in price due to physical stockpiling and demand for assets that protect against inflation and uncertainty. There are mentions of gold hitting record highs, surpassing $2800, and the potential for it to reach $3000 in the near future. Additionally, there are comparisons between the price of gold and other assets like oil, highlighting the current affordability of oil in comparison to gold.\n\nFurthermore, there is a debate about the scarcity and purchasing power of gold, with some users expressing skepticism about its real value. The role of gold as a safe-haven asset and its historical performance in times of economic uncertainty are also discussed. In contrast, there are mentions of Bitcoin as a potential alternative to gold, with some suggesting that Bitcoin will see a surge in price when gold takes a break from its current rally.\n\nOverall, the messages reflect a mix of opinions and analysis regarding the performance of gold, its relationship with Bitcoin, and the broader economic implications of these trends in the crypto industry.', - data: [ - 2, 0, 1, 0, 6, 4, 2, 3, 0, 1, 2, 0, 0, 1, 0, 0, 0, 1, 3, 1, 62, 1, 1, 0, 3, 1, 4, 0, 0, 1, - 3, 1, 1, 1, 1, 3, 2, 2, 4, 1, 3, 2, 2, 0, 1, 0, 5, 0, 1, 1, 0, 0, 1, 2, 3, - ], - }, - { - label: 'Buy the dip', - topics: 'dip,buy,buying,bought,did', - description: - 'The key topic discussed in the messages from Twitter is buying the dip in the crypto market. Many users are expressing confidence in buying the dip, while others are hesitant or joking about it. Some are discussing specific strategies for buying the dip, such as setting a price target or adding to their cryptocurrency holdings during a dip. Overall, the sentiment towards buying the dip in the crypto market varies among users, with some believing it will pay off in the long run and others being more skeptical.', - data: [ - 1, 0, 1, 3, 0, 2, 1, 39, 4, 3, 1, 2, 3, 14, 0, 4, 0, 2, 0, 1, 1, 0, 1, 3, 0, 0, 2, 1, 0, 1, - 2, 2, 2, 1, 0, 0, 0, 2, 0, 4, 0, 4, 1, 1, 1, 3, 0, 1, 2, 0, 0, 0, 1, 1, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-58.json b/priv/repo/major_topics_seed/data-58.json deleted file mode 100644 index ca2dff125f..0000000000 --- a/priv/repo/major_topics_seed/data-58.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["06.02.25","07.02.25","07.02.25","07.02.25","07.02.25","07.02.25","07.02.25","07.02.25","08.02.25","08.02.25","08.02.25","08.02.25","08.02.25","08.02.25","08.02.25","08.02.25","09.02.25","09.02.25","09.02.25","09.02.25","09.02.25","09.02.25","09.02.25","09.02.25","10.02.25","10.02.25","10.02.25","10.02.25","10.02.25","10.02.25","10.02.25","10.02.25","11.02.25","11.02.25","11.02.25","11.02.25","11.02.25","11.02.25","11.02.25","11.02.25","12.02.25","12.02.25","12.02.25","12.02.25","12.02.25","12.02.25","12.02.25","12.02.25","13.02.25","13.02.25","13.02.25","13.02.25","13.02.25","13.02.25","13.02.25"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,freedom,currency","description":"The key topics currently discussed in the messages from twitter about the crypto industry are:\n1. Bitcoin being accessible to everyone, including children.\n2. The debate about Bitcoin's security criteria.\n3. The early stage of Bitcoin adoption.\n4. The idea of buying Bitcoin as a form of self-love and financial security.\n5. The shift from altcoins to Bitcoin.\n6. Quotes from Jack Mallers and Robert F. Kennedy Jr. about the benefits of saving and living on a Bitcoin standard.\n7. Speculation on short signals for Bitcoin trading.\n8. Humorous references to Bitcoin maximalists and the idea of hodling Bitcoin for a 2-year-old nephew.","data":[13,7,7,13,92,65,9,18,8,14,14,15,12,10,6,13,8,22,18,10,6,23,16,12,8,14,21,13,11,14,17,8,24,5,7,18,9,10,7,22,21,18,19,14,10,18,15,17,11,13,15,12,16,16,14]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The key topic discussed in the messages from Twitter is meme coins within the crypto industry. The messages mention various meme coins such as BTFD Coin, Dogecoin, Pepe Coin, Shiba Inu, Floki, and Dogwifhat, as well as the potential ROI, staking rewards, and market trends related to meme coins. There is also discussion about the resilience of meme coin communities, the impact of influencers on meme coin investments, and the comparison of meme tokens to NFTs. Additionally, there are mentions of specific incidents such as an attack on Four_Meme leading to a loss of $183K and the plunge of celebrity meme tokens from their all-time highs. Overall, the messages highlight the popularity, volatility, and potential profitability of meme coins in the crypto market.","data":[8,9,7,12,8,6,3,15,11,16,8,10,14,17,8,5,8,14,10,3,8,27,9,8,11,12,13,14,13,18,7,157,17,14,11,14,18,7,10,11,13,10,12,7,15,10,5,16,11,14,7,7,4,6,3]},{"label":"BTC Price","topics":"btc,range,low,close,weekly","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's all-time high (ATH) being printed on Trump's inauguration day\n- Bitcoin's price movement, including a potential quadruple bottom and the possibility of retesting previous lows\n- Bearish momentum in the market and the potential for a bearish head-and-shoulders pattern\n- Bitcoin's weekly analysis and potential price targets\n- Bitcoin's current trading range and the anticipation of a big price move\n- Bitcoin's price cycles and the challenge of achieving percentage gains from previous cycles\n- Technical analysis indicators such as the Rainbow Price Chart, trendline support, and reversal candles\n- The importance of independent decision-making in trading and managing capital\n\nOverall, the sentiment on Twitter seems to be cautious and focused on analyzing Bitcoin's price movements and potential future trends.","data":[10,11,5,10,46,33,51,10,10,12,24,11,25,8,5,3,9,15,12,7,8,1,12,13,6,6,6,5,13,15,20,9,11,14,5,4,10,14,20,21,13,8,17,6,7,21,10,3,6,10,3,25,9,22,3]},{"label":"AI","topics":"ai,agents,agent,human,data","description":"The key topics discussed in the messages from twitter include the replacement of computers by AI in the age of AI, the impact of paywalls and closed data APIs on civilizational progress, the need for fairness in AI, the metaphor of \"AI as the engine, humans as the steering wheel\" in AI DAOs, the relationship between improved intelligence and utility in AI, the hope for better dialogue between citizens and local government enabled by AI, the potential divergence in benefits for AI handlers, the energy consumption of AI and its impact on the environment, the potential of decentralized AI as the next big crypto revolution, the importance of AI in DAOs amplifying human intent rather than replacing it, and the latest news in AI and Web3 technologies.","data":[22,73,10,7,6,3,4,10,8,5,9,11,6,11,2,4,11,5,3,12,9,5,9,9,6,8,16,10,7,6,10,3,14,5,16,7,4,11,8,12,8,12,11,3,13,8,16,20,5,7,7,10,9,4,10]},{"label":"SOL","topics":"solana,sol,solanas,tvl,virtual","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Solana's explosive growth, surpassing Ethereum in 30 days\n2. Solana's new DeFi primitives and the first official state rug on SOL\n3. Bullish divergence on Solana's $SOL chart\n4. Memecoins from Solana with the best liquidity in crypto\n5. Loopring DeFi in Portal allowing for trading directly from self-custody Ethereum wallets\n6. Bitcoin topping Layer-1 social rankings with 147M interactions\n7. ValeriaStudios Land Before the War Season 1 success with over 20 million transactions on XAI\n8. SolvBTC as a Bitcoin staking platform with $2.5B+ in TVL and a campaign offering up to 30% APY in $SOLV tokens.","data":[9,0,7,5,5,7,6,13,5,9,3,4,5,11,12,6,13,7,13,7,6,9,3,15,6,5,3,10,10,7,7,7,10,10,5,4,5,19,10,12,9,10,12,30,11,8,7,4,8,12,7,10,16,10,7]},{"label":"Inflation","topics":"inflation,cpi,expectations,rate,january","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- US inflation rising unexpectedly to 3%\n- Concerns about the impact of inflation on the economy and society\n- UK consumer spending and sentiment data\n- Stagflation fears and lack of contingency plans\n- US Producer Prices rising significantly\n- US Core CPI above 3% for an extended period\n- Monthly inflation rates in Argentina decreasing steadily\n- Market reactions in Asia, with Chinese stocks gaining and Indian markets seeing a dip\n\nOverall, the focus is on inflation rates, economic data, and market trends in various regions, with a mix of concern and analysis regarding the potential impact on the crypto market.","data":[4,3,6,7,1,1,17,1,3,3,19,8,5,2,3,4,8,4,2,2,4,5,7,8,77,5,5,0,1,3,16,1,6,1,4,2,1,6,2,7,7,1,6,3,3,3,5,3,8,5,8,4,1,3,8]},{"label":"Super Bowl","topics":"bowl,super,superbowl,game,sunday","description":"The key topics currently being discussed on Twitter in relation to the crypto industry and the Super Bowl include:\n- Mention of a new coin called \"Trump Coin\" for sports gamblers\n- Discussion about the Super Bowl game and controversial calls made by officials\n- Excitement for Mahomes and predictions for the game\n- Super Bowl commercials and betting opportunities\n- Comparison of past Super Bowl plays and NFL playoff history\n- Mention of Elon Musk's DOGE spots during the Super Bowl\n- Predictions for the Super Bowl game, including the favorite color for the Gatorade shower celebration\n- Information about the U.S. Marines using V-22 Osprey and F-35 fighter jets for a flyover at the Super Bowl\n- Mention of a Michigan State freshman basketball player and a beginner-friendly game protocol\n- Promotion of opportunities for players in the football industry\n- Discussion about a crypto coin called \"Chiefs 3Peat\" and its performance leading up to the Super Bowl.","data":[6,2,2,5,3,7,3,3,4,18,5,3,3,1,12,0,3,6,12,14,10,10,7,3,4,4,5,5,1,8,8,3,7,2,6,4,6,4,5,6,3,6,2,1,2,31,6,7,3,2,1,3,0,19,3]},{"label":"BTC Reserve","topics":"reserve,state,states,strategic,north","description":"The key topic discussed in the messages from twitter is the potential investment of US states in Bitcoin and digital assets. Several states, including North Carolina, Wisconsin, Missouri, Kentucky, Arizona, Utah, Oklahoma, and Wyoming, are considering or have already introduced bills to create strategic reserves of Bitcoin. Investment management firm VanEck analyzed 20 state-level bills proposing the inclusion of Bitcoin in state reserves, estimating that collectively, states could buy approximately 247,000 BTC or $23 billion. The potential for massive adoption of cryptocurrency by US states is highlighted, with the possibility of up to $23 billion being poured into Bitcoin if strategic reserve bills are approved. Lawmakers are also showing bipartisan support for blockchain and digital assets, emphasizing the need for the US to lead in this space to avoid falling behind. The discussion also touches on the potential impact on the market if pension funds were to also invest in Bitcoin.","data":[6,2,2,2,4,4,23,12,0,0,5,1,3,1,0,2,3,5,2,0,3,1,6,4,3,38,12,7,1,1,6,3,6,16,1,4,3,13,7,2,0,4,0,0,25,25,1,3,3,0,1,9,1,2,7]},{"label":"ETH","topics":"eth,ethereum,short,shorts,positions","description":"The key topics currently discussed on Twitter regarding Ethereum ($ETH) include:\n- Speculators building the largest Ethereum short position in history\n- Ethereum derivatives outflows signaling reduced selling pressure and bullish potential ahead\n- Sentiment at peak FUD (fear, uncertainty, doubt) with few believers, but anticipation of a legendary comeback\n- Technical analysis indicating a short-term trend shift with the clearing of the 4H 20EMA and first higher low in place\n- Anticipation of Ethereum Improvement Proposal (EIP) 1559 potentially impacting the price movement\n- Potential for a short squeeze as shorts pile in and the gap from last weekend's liquidation cascade remains unfilled\n- Discussion of Ethereum's price decline potentially signaling an imminent rebound due to oversold territory according to technical indicators\n\nOverall, the sentiment on Twitter seems mixed with some anticipating bullish movements while others remain cautious about potential downside risks.","data":[5,1,6,3,0,1,1,11,6,3,4,2,2,0,3,43,42,8,2,6,7,1,5,9,3,1,5,4,2,7,5,4,2,1,3,4,3,9,2,5,2,3,9,0,6,4,3,4,2,6,1,6,2,8,6]},{"label":"DOGE","topics":"dogecoin,doge,elonmusk,lol,wanna","description":"The key topics currently being discussed on Twitter regarding Dogecoin include its valuation, potential impact on portfolios, the launch of the official government website, jokes and memes about Dogecoin, the recent surge in its value, and the importance of being part of the right crypto community. Additionally, there is mention of a website related to Dogecoin being available for purchase and the importance of owning a .COM domain with the word \"DOGE.\" There is also a reference to the recent increase in plane crashes and a joke about leaving something \"doge\" behind when inspecting chemical tankers. Overall, the sentiment towards Dogecoin seems positive and optimistic.","data":[4,3,6,7,1,1,0,1,1,1,1,5,2,0,43,4,1,6,4,10,4,3,7,6,4,3,4,7,5,5,7,3,8,4,1,3,1,3,4,1,4,5,4,3,4,5,14,13,5,2,2,2,6,9,6]},{"label":"Kanye West","topics":"ye,west,launch,promote,coin","description":"The key topics currently being discussed in the crypto industry on social media include Kanye West's recent behavior and mental health struggles, the launch of a potential memecoin on Solana, criticism of Kanye's actions and statements, comparisons between Kanye and other artists like Kendrick Lamar, speculation about Kanye's mental illness and social media presence, and the controversy surrounding Dave Chappelle's comedy and his representation of black people. There is also mention of a presale ending soon and the idea of revolution and skepticism in the industry. Overall, the discussions seem to be centered around the behavior and actions of prominent figures in the music and entertainment industry, as well as the impact of mental health on social media presence.","data":[1,0,2,2,1,2,7,1,2,5,4,4,3,6,2,1,3,3,2,7,5,5,6,1,1,2,3,5,2,6,2,6,4,4,7,6,3,2,4,6,7,5,2,1,6,3,2,5,3,4,11,1,2,1,17]},{"label":"Layer 2","topics":"ethereum,l2s,l2,classic,eth","description":"The key topics discussed in the messages from Twitter about Ethereum and crypto industry include:\n- The need for more Memecoins like Ethereum and more Layer 2 solutions\n- The dilemma of holding ETH and the challenges faced by Ethereum in terms of scalability and user experience\n- The debate around using Layer 2 solutions that could potentially freeze assets\n- The marketing challenges Ethereum faces in being considered a \"boomer chain\" and the consequences of alienating certain user groups\n- The issue of fake metrics and scams in Ethereum Layer 2 deployments\n- Concerns about fees being bridged off of Layer 2 solutions to centralized exchanges like Coinbase\n- The profitability and financial transactions of Base and Ethereum\n\nOverall, the discussions highlight the complexities and challenges faced by Ethereum and the crypto industry as a whole, including scalability, user experience, marketing, and potential scams.","data":[1,1,3,3,0,2,4,2,2,5,7,1,1,5,1,38,19,7,4,5,0,5,5,6,3,2,7,9,1,6,1,2,7,0,4,0,1,1,3,1,1,2,3,0,0,3,2,6,2,2,3,1,0,4,2]},{"label":"OpenSea","topics":"opensea,sea,airdrop,token,kyc","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the launch of NFT brand Doodles' Solana-based token called DOOD, the release of OpenSea's OS2 NFT platform in beta with a teaser of the SEA token airdrop, speculation about the potential impact of launching a token on liquidity and NFT holders, the announcement of Doodles launching an official $DOOD token with a future bridge to Base, the rollout of OS2 open beta by OpenSea with cross-chain NFT trading and confirmation of the SEA token airdrop, the introduction of OpenSea's native token $SEA ahead of the OS2 public release, and discussions about the involvement of individuals like @dfinzer in the industry. Users are also expressing their thoughts on the bullish outlook for OS2 and the implementation of Solana by OpenSea. Overall, the community seems excited about the developments in the NFT and crypto space, particularly with regards to new tokens, platforms, and ecosystem expansions.","data":[0,7,11,0,1,2,3,1,0,1,7,3,4,5,15,2,4,7,3,2,6,3,3,7,1,3,0,9,3,6,1,0,1,5,10,3,3,3,0,3,6,14,5,3,0,1,5,1,3,3,0,5,3,0,2]},{"label":"BNB","topics":"bnb,chain,bnbchain,cz,floki","description":"Based on the messages from Twitter, it seems that there is a lot of discussion about BNB (Binance Coin) and its recent performance in the crypto market. Some key points mentioned include:\n\n- BNB looks bottomed on the higher time frame (HTF).\n- BNB has flipped SOL (Solana) and secured the #5 spot with a $100B+ market cap.\n- CZ (Changpeng Zhao) is making strategic moves to push BNB and its ecosystem projects.\n- There is optimism about BNB reaching $800.\n- The CaptainBNB meme coin is gaining popularity and could see significant growth.\n- BNB Chain is seeing a lot of activity with new tokens launching.\n- There is a reference to BNB season in 2021 and the potential for a similar trend to occur again.\n\nOverall, it appears that there is a bullish sentiment surrounding BNB and its ecosystem, with many users expressing excitement and anticipation for potential price increases and new developments.","data":[0,0,3,3,2,19,3,2,36,2,2,2,4,2,0,2,7,1,4,1,2,2,6,5,4,0,3,4,2,6,0,3,6,2,3,2,4,2,5,5,3,2,4,4,0,2,1,2,1,1,2,2,1,2,3]},{"label":"MSTR","topics":"microstrategy,saylor,mstr,strategy,michael","description":"The key topic discussed in the messages from twitter is MicroStrategy's continued acquisition of Bitcoin. They have recently purchased another 7,633 BTC for $742 million, bringing their total holdings to 478,740 BTC. This move has resulted in significant gains for shareholders, with a 2600% return since August 2020. The company's strategy of investing in Bitcoin has outpaced traditional investments and redefined corporate finance. Shareholders have been rewarded handsomely, and the company's stock price has seen significant fluctuations based on their Bitcoin holdings. This trend of large-scale Bitcoin acquisitions by corporate entities like MicroStrategy is not unique to them, as other entities are also following suit.","data":[11,0,2,0,4,1,5,10,0,1,3,1,3,2,1,1,2,5,5,2,3,4,2,0,1,1,2,0,1,4,2,16,4,4,2,2,1,1,2,3,1,12,0,3,1,40,2,2,3,0,1,4,0,1,4]},{"label":"BTC Mining","topics":"mining,miner,miners,mined,energy","description":"The key topics currently discussed in the messages from twitter about the crypto industry include:\n1. Bitcoin mining efficiency and sustainability\n2. Bitcoin miner activity and potential price movements\n3. CleanSpark's quarterly revenue report and Bitcoin mining\n4. Bitcoin miners' impact on energy consumption and emissions\n5. Hash ribbon signaling miner capitulation and potential price surge\n6. Illegal Bitcoin mining operations and energy theft\n7. Misconceptions about Bitcoin mining and its environmental impact\n8. Future of mining rewards and advancements in technology\n\nThese topics reflect the ongoing discussions and developments in the crypto industry, particularly related to Bitcoin mining and its implications on the environment, energy consumption, and market dynamics.","data":[4,0,2,2,22,6,7,3,0,3,2,3,2,3,3,3,3,2,3,0,1,7,6,8,4,2,1,0,1,1,1,21,3,7,3,2,0,4,1,1,5,2,6,0,3,0,0,2,1,1,0,4,2,3,1]},{"label":"TSLA","topics":"tesla,tsla,elonmusk,holdings,stock","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n- Tesla's COGS per vehicle reaching an all-time low in Q4 2024 despite high inflation\n- Ford losing billions on electric cars in 2025, with a $5.1 billion loss in 2024\n- Tesla's plans to launch autonomous ride hailing in Austin in June and expand to other cities in America by the end of the year\n- Alibaba leading a global stock surge and hitting its highest share price since 2022\n- Lyft being sued over allegations of being fat-phobic and racist\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the electric vehicle industry, as well as the performance of major tech companies like Tesla and Alibaba.","data":[3,0,2,2,1,2,2,3,0,5,1,1,1,2,4,1,4,3,2,0,3,2,2,7,3,2,5,5,2,3,1,3,2,2,2,1,6,0,3,1,6,5,1,2,1,7,4,23,1,0,22,3,3,0,4]},{"label":"GameFi","topics":"gaming,games,web3,game,players","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. Orbler partnering with Gamerge to revolutionize Web3 gaming with immersive play-to-earn experiences, crypto rewards, and advanced GameFi experience.\n2. Introduction of Open Game Protocol (OGP) for earning any token by playing any game, anywhere.\n3. Xai Play enabling real distribution at scale for Web2 and Web3 games, with the entire Steam library onboarded to $XAI.\n4. Mythical Games powering the next generation of gaming on Polkadot, with Ronin's Gaming Empire receiving numerous awards.\n5. Azuki Gaming launching new games, including Best Mobile Game winner Fableborne, and expanding into gaming.\n6. Immutable launching promising titles in Q1 2025 to bring more players onchain.\n7. Updates and new features in Classic and MagicCraft games, including meme-coin skins and a community-powered battle arena.\n8. Proof of Skill and Xai Play incentivizing over 100 million Steam users to onboard into Web3.\n9. MagicCraft Tournament semi-final games and upcoming Chinese panel on the future of player-centric game economies.\n10. MapleStory's approach to Web3 gaming and the perception of Web3 gaming among gamers.","data":[3,1,1,1,1,3,0,3,4,2,0,1,0,1,1,4,2,0,3,36,1,4,1,0,4,4,2,4,1,3,1,2,1,2,1,1,3,3,2,3,4,1,3,1,3,5,3,1,2,4,2,6,2,6,3]},{"label":"APE","topics":"apechain,ape,nfts,home,mint","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- ApeCoin Spotlight and the Bored Ape Yacht Club\n- Diamond Fleece Mint Pass holders\n- ApeChain and the Ape laboratory\n- PixelChain NFTs\n- Issues with Jungles on Magic Eden\n- AbstractChain minting experience\n- Thriving communities on ApeChain such as OKINA LABS, CHUMPZ, GEEZ, and RILLAZ\n- ApeCoin DAO and Made By Apes Snapshot\n- Active NFT communities with a PvE mindset\n- Collaboration between ApeCoin, MagicEden, and other NFT projects\n- Novel Labs events and collaborations with Bored Ape Yacht Club, MutantHounds, Mutant Cartel, CryptoPunks, and artist Vinnie Hager.","data":[2,0,14,5,1,4,0,6,2,3,0,1,8,0,1,3,1,2,2,3,2,1,3,8,3,1,4,1,2,6,1,4,4,10,4,0,2,1,2,1,2,1,3,0,7,3,1,1,6,6,0,0,0,3,1]},{"label":"Whales","topics":"whales,whale,buying,retail,activity","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion about whales in the crypto industry. Whales are large players who are accumulating significant amounts of Bitcoin and Ethereum. The emergence of new whales, such as (Micro)Strategy and BTC ETFs, is seen as a significant development in the market. These new whales are dominating the current cycle compared to old whales, indicating a influx of fresh capital into Bitcoin.\n\nThere is also mention of the psychology of retail investors in relation to whales, with a focus on using logic over emotions when making investment decisions. Additionally, there is discussion about the buying and selling behavior of different categories of investors, such as sharks (100-1k BTC) and shrimps (<1BTC).\n\nOverall, the presence and actions of whales in the crypto market are closely monitored and analyzed by investors and analysts alike.","data":[2,0,0,1,3,6,1,3,4,1,0,3,0,0,1,0,8,1,1,1,3,3,0,2,0,4,2,0,0,4,3,0,4,5,7,3,2,1,0,1,4,0,1,0,2,0,0,0,1,2,0,2,2,35,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-58.ts b/priv/repo/major_topics_seed/data-58.ts deleted file mode 100644 index 637c7e2b89..0000000000 --- a/priv/repo/major_topics_seed/data-58.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '06.02.25', - '07.02.25', - '07.02.25', - '07.02.25', - '07.02.25', - '07.02.25', - '07.02.25', - '07.02.25', - '08.02.25', - '08.02.25', - '08.02.25', - '08.02.25', - '08.02.25', - '08.02.25', - '08.02.25', - '08.02.25', - '09.02.25', - '09.02.25', - '09.02.25', - '09.02.25', - '09.02.25', - '09.02.25', - '09.02.25', - '09.02.25', - '10.02.25', - '10.02.25', - '10.02.25', - '10.02.25', - '10.02.25', - '10.02.25', - '10.02.25', - '10.02.25', - '11.02.25', - '11.02.25', - '11.02.25', - '11.02.25', - '11.02.25', - '11.02.25', - '11.02.25', - '11.02.25', - '12.02.25', - '12.02.25', - '12.02.25', - '12.02.25', - '12.02.25', - '12.02.25', - '12.02.25', - '12.02.25', - '13.02.25', - '13.02.25', - '13.02.25', - '13.02.25', - '13.02.25', - '13.02.25', - '13.02.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,freedom,currency', - description: - "The key topics currently discussed in the messages from twitter about the crypto industry are:\n1. Bitcoin being accessible to everyone, including children.\n2. The debate about Bitcoin's security criteria.\n3. The early stage of Bitcoin adoption.\n4. The idea of buying Bitcoin as a form of self-love and financial security.\n5. The shift from altcoins to Bitcoin.\n6. Quotes from Jack Mallers and Robert F. Kennedy Jr. about the benefits of saving and living on a Bitcoin standard.\n7. Speculation on short signals for Bitcoin trading.\n8. Humorous references to Bitcoin maximalists and the idea of hodling Bitcoin for a 2-year-old nephew.", - data: [ - 13, 7, 7, 13, 92, 65, 9, 18, 8, 14, 14, 15, 12, 10, 6, 13, 8, 22, 18, 10, 6, 23, 16, 12, 8, - 14, 21, 13, 11, 14, 17, 8, 24, 5, 7, 18, 9, 10, 7, 22, 21, 18, 19, 14, 10, 18, 15, 17, 11, - 13, 15, 12, 16, 16, 14, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - 'The key topic discussed in the messages from Twitter is meme coins within the crypto industry. The messages mention various meme coins such as BTFD Coin, Dogecoin, Pepe Coin, Shiba Inu, Floki, and Dogwifhat, as well as the potential ROI, staking rewards, and market trends related to meme coins. There is also discussion about the resilience of meme coin communities, the impact of influencers on meme coin investments, and the comparison of meme tokens to NFTs. Additionally, there are mentions of specific incidents such as an attack on Four_Meme leading to a loss of $183K and the plunge of celebrity meme tokens from their all-time highs. Overall, the messages highlight the popularity, volatility, and potential profitability of meme coins in the crypto market.', - data: [ - 8, 9, 7, 12, 8, 6, 3, 15, 11, 16, 8, 10, 14, 17, 8, 5, 8, 14, 10, 3, 8, 27, 9, 8, 11, 12, - 13, 14, 13, 18, 7, 157, 17, 14, 11, 14, 18, 7, 10, 11, 13, 10, 12, 7, 15, 10, 5, 16, 11, 14, - 7, 7, 4, 6, 3, - ], - }, - { - label: 'BTC Price', - topics: 'btc,range,low,close,weekly', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's all-time high (ATH) being printed on Trump's inauguration day\n- Bitcoin's price movement, including a potential quadruple bottom and the possibility of retesting previous lows\n- Bearish momentum in the market and the potential for a bearish head-and-shoulders pattern\n- Bitcoin's weekly analysis and potential price targets\n- Bitcoin's current trading range and the anticipation of a big price move\n- Bitcoin's price cycles and the challenge of achieving percentage gains from previous cycles\n- Technical analysis indicators such as the Rainbow Price Chart, trendline support, and reversal candles\n- The importance of independent decision-making in trading and managing capital\n\nOverall, the sentiment on Twitter seems to be cautious and focused on analyzing Bitcoin's price movements and potential future trends.", - data: [ - 10, 11, 5, 10, 46, 33, 51, 10, 10, 12, 24, 11, 25, 8, 5, 3, 9, 15, 12, 7, 8, 1, 12, 13, 6, - 6, 6, 5, 13, 15, 20, 9, 11, 14, 5, 4, 10, 14, 20, 21, 13, 8, 17, 6, 7, 21, 10, 3, 6, 10, 3, - 25, 9, 22, 3, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,human,data', - description: - 'The key topics discussed in the messages from twitter include the replacement of computers by AI in the age of AI, the impact of paywalls and closed data APIs on civilizational progress, the need for fairness in AI, the metaphor of "AI as the engine, humans as the steering wheel" in AI DAOs, the relationship between improved intelligence and utility in AI, the hope for better dialogue between citizens and local government enabled by AI, the potential divergence in benefits for AI handlers, the energy consumption of AI and its impact on the environment, the potential of decentralized AI as the next big crypto revolution, the importance of AI in DAOs amplifying human intent rather than replacing it, and the latest news in AI and Web3 technologies.', - data: [ - 22, 73, 10, 7, 6, 3, 4, 10, 8, 5, 9, 11, 6, 11, 2, 4, 11, 5, 3, 12, 9, 5, 9, 9, 6, 8, 16, - 10, 7, 6, 10, 3, 14, 5, 16, 7, 4, 11, 8, 12, 8, 12, 11, 3, 13, 8, 16, 20, 5, 7, 7, 10, 9, 4, - 10, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,solanas,tvl,virtual', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Solana's explosive growth, surpassing Ethereum in 30 days\n2. Solana's new DeFi primitives and the first official state rug on SOL\n3. Bullish divergence on Solana's $SOL chart\n4. Memecoins from Solana with the best liquidity in crypto\n5. Loopring DeFi in Portal allowing for trading directly from self-custody Ethereum wallets\n6. Bitcoin topping Layer-1 social rankings with 147M interactions\n7. ValeriaStudios Land Before the War Season 1 success with over 20 million transactions on XAI\n8. SolvBTC as a Bitcoin staking platform with $2.5B+ in TVL and a campaign offering up to 30% APY in $SOLV tokens.", - data: [ - 9, 0, 7, 5, 5, 7, 6, 13, 5, 9, 3, 4, 5, 11, 12, 6, 13, 7, 13, 7, 6, 9, 3, 15, 6, 5, 3, 10, - 10, 7, 7, 7, 10, 10, 5, 4, 5, 19, 10, 12, 9, 10, 12, 30, 11, 8, 7, 4, 8, 12, 7, 10, 16, 10, - 7, - ], - }, - { - label: 'Inflation', - topics: 'inflation,cpi,expectations,rate,january', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- US inflation rising unexpectedly to 3%\n- Concerns about the impact of inflation on the economy and society\n- UK consumer spending and sentiment data\n- Stagflation fears and lack of contingency plans\n- US Producer Prices rising significantly\n- US Core CPI above 3% for an extended period\n- Monthly inflation rates in Argentina decreasing steadily\n- Market reactions in Asia, with Chinese stocks gaining and Indian markets seeing a dip\n\nOverall, the focus is on inflation rates, economic data, and market trends in various regions, with a mix of concern and analysis regarding the potential impact on the crypto market.', - data: [ - 4, 3, 6, 7, 1, 1, 17, 1, 3, 3, 19, 8, 5, 2, 3, 4, 8, 4, 2, 2, 4, 5, 7, 8, 77, 5, 5, 0, 1, 3, - 16, 1, 6, 1, 4, 2, 1, 6, 2, 7, 7, 1, 6, 3, 3, 3, 5, 3, 8, 5, 8, 4, 1, 3, 8, - ], - }, - { - label: 'Super Bowl', - topics: 'bowl,super,superbowl,game,sunday', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry and the Super Bowl include:\n- Mention of a new coin called "Trump Coin" for sports gamblers\n- Discussion about the Super Bowl game and controversial calls made by officials\n- Excitement for Mahomes and predictions for the game\n- Super Bowl commercials and betting opportunities\n- Comparison of past Super Bowl plays and NFL playoff history\n- Mention of Elon Musk\'s DOGE spots during the Super Bowl\n- Predictions for the Super Bowl game, including the favorite color for the Gatorade shower celebration\n- Information about the U.S. Marines using V-22 Osprey and F-35 fighter jets for a flyover at the Super Bowl\n- Mention of a Michigan State freshman basketball player and a beginner-friendly game protocol\n- Promotion of opportunities for players in the football industry\n- Discussion about a crypto coin called "Chiefs 3Peat" and its performance leading up to the Super Bowl.', - data: [ - 6, 2, 2, 5, 3, 7, 3, 3, 4, 18, 5, 3, 3, 1, 12, 0, 3, 6, 12, 14, 10, 10, 7, 3, 4, 4, 5, 5, 1, - 8, 8, 3, 7, 2, 6, 4, 6, 4, 5, 6, 3, 6, 2, 1, 2, 31, 6, 7, 3, 2, 1, 3, 0, 19, 3, - ], - }, - { - label: 'BTC Reserve', - topics: 'reserve,state,states,strategic,north', - description: - 'The key topic discussed in the messages from twitter is the potential investment of US states in Bitcoin and digital assets. Several states, including North Carolina, Wisconsin, Missouri, Kentucky, Arizona, Utah, Oklahoma, and Wyoming, are considering or have already introduced bills to create strategic reserves of Bitcoin. Investment management firm VanEck analyzed 20 state-level bills proposing the inclusion of Bitcoin in state reserves, estimating that collectively, states could buy approximately 247,000 BTC or $23 billion. The potential for massive adoption of cryptocurrency by US states is highlighted, with the possibility of up to $23 billion being poured into Bitcoin if strategic reserve bills are approved. Lawmakers are also showing bipartisan support for blockchain and digital assets, emphasizing the need for the US to lead in this space to avoid falling behind. The discussion also touches on the potential impact on the market if pension funds were to also invest in Bitcoin.', - data: [ - 6, 2, 2, 2, 4, 4, 23, 12, 0, 0, 5, 1, 3, 1, 0, 2, 3, 5, 2, 0, 3, 1, 6, 4, 3, 38, 12, 7, 1, - 1, 6, 3, 6, 16, 1, 4, 3, 13, 7, 2, 0, 4, 0, 0, 25, 25, 1, 3, 3, 0, 1, 9, 1, 2, 7, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,short,shorts,positions', - description: - "The key topics currently discussed on Twitter regarding Ethereum ($ETH) include:\n- Speculators building the largest Ethereum short position in history\n- Ethereum derivatives outflows signaling reduced selling pressure and bullish potential ahead\n- Sentiment at peak FUD (fear, uncertainty, doubt) with few believers, but anticipation of a legendary comeback\n- Technical analysis indicating a short-term trend shift with the clearing of the 4H 20EMA and first higher low in place\n- Anticipation of Ethereum Improvement Proposal (EIP) 1559 potentially impacting the price movement\n- Potential for a short squeeze as shorts pile in and the gap from last weekend's liquidation cascade remains unfilled\n- Discussion of Ethereum's price decline potentially signaling an imminent rebound due to oversold territory according to technical indicators\n\nOverall, the sentiment on Twitter seems mixed with some anticipating bullish movements while others remain cautious about potential downside risks.", - data: [ - 5, 1, 6, 3, 0, 1, 1, 11, 6, 3, 4, 2, 2, 0, 3, 43, 42, 8, 2, 6, 7, 1, 5, 9, 3, 1, 5, 4, 2, 7, - 5, 4, 2, 1, 3, 4, 3, 9, 2, 5, 2, 3, 9, 0, 6, 4, 3, 4, 2, 6, 1, 6, 2, 8, 6, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,elonmusk,lol,wanna', - description: - 'The key topics currently being discussed on Twitter regarding Dogecoin include its valuation, potential impact on portfolios, the launch of the official government website, jokes and memes about Dogecoin, the recent surge in its value, and the importance of being part of the right crypto community. Additionally, there is mention of a website related to Dogecoin being available for purchase and the importance of owning a .COM domain with the word "DOGE." There is also a reference to the recent increase in plane crashes and a joke about leaving something "doge" behind when inspecting chemical tankers. Overall, the sentiment towards Dogecoin seems positive and optimistic.', - data: [ - 4, 3, 6, 7, 1, 1, 0, 1, 1, 1, 1, 5, 2, 0, 43, 4, 1, 6, 4, 10, 4, 3, 7, 6, 4, 3, 4, 7, 5, 5, - 7, 3, 8, 4, 1, 3, 1, 3, 4, 1, 4, 5, 4, 3, 4, 5, 14, 13, 5, 2, 2, 2, 6, 9, 6, - ], - }, - { - label: 'Kanye West', - topics: 'ye,west,launch,promote,coin', - description: - "The key topics currently being discussed in the crypto industry on social media include Kanye West's recent behavior and mental health struggles, the launch of a potential memecoin on Solana, criticism of Kanye's actions and statements, comparisons between Kanye and other artists like Kendrick Lamar, speculation about Kanye's mental illness and social media presence, and the controversy surrounding Dave Chappelle's comedy and his representation of black people. There is also mention of a presale ending soon and the idea of revolution and skepticism in the industry. Overall, the discussions seem to be centered around the behavior and actions of prominent figures in the music and entertainment industry, as well as the impact of mental health on social media presence.", - data: [ - 1, 0, 2, 2, 1, 2, 7, 1, 2, 5, 4, 4, 3, 6, 2, 1, 3, 3, 2, 7, 5, 5, 6, 1, 1, 2, 3, 5, 2, 6, 2, - 6, 4, 4, 7, 6, 3, 2, 4, 6, 7, 5, 2, 1, 6, 3, 2, 5, 3, 4, 11, 1, 2, 1, 17, - ], - }, - { - label: 'Layer 2', - topics: 'ethereum,l2s,l2,classic,eth', - description: - 'The key topics discussed in the messages from Twitter about Ethereum and crypto industry include:\n- The need for more Memecoins like Ethereum and more Layer 2 solutions\n- The dilemma of holding ETH and the challenges faced by Ethereum in terms of scalability and user experience\n- The debate around using Layer 2 solutions that could potentially freeze assets\n- The marketing challenges Ethereum faces in being considered a "boomer chain" and the consequences of alienating certain user groups\n- The issue of fake metrics and scams in Ethereum Layer 2 deployments\n- Concerns about fees being bridged off of Layer 2 solutions to centralized exchanges like Coinbase\n- The profitability and financial transactions of Base and Ethereum\n\nOverall, the discussions highlight the complexities and challenges faced by Ethereum and the crypto industry as a whole, including scalability, user experience, marketing, and potential scams.', - data: [ - 1, 1, 3, 3, 0, 2, 4, 2, 2, 5, 7, 1, 1, 5, 1, 38, 19, 7, 4, 5, 0, 5, 5, 6, 3, 2, 7, 9, 1, 6, - 1, 2, 7, 0, 4, 0, 1, 1, 3, 1, 1, 2, 3, 0, 0, 3, 2, 6, 2, 2, 3, 1, 0, 4, 2, - ], - }, - { - label: 'OpenSea', - topics: 'opensea,sea,airdrop,token,kyc', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include the launch of NFT brand Doodles' Solana-based token called DOOD, the release of OpenSea's OS2 NFT platform in beta with a teaser of the SEA token airdrop, speculation about the potential impact of launching a token on liquidity and NFT holders, the announcement of Doodles launching an official $DOOD token with a future bridge to Base, the rollout of OS2 open beta by OpenSea with cross-chain NFT trading and confirmation of the SEA token airdrop, the introduction of OpenSea's native token $SEA ahead of the OS2 public release, and discussions about the involvement of individuals like @dfinzer in the industry. Users are also expressing their thoughts on the bullish outlook for OS2 and the implementation of Solana by OpenSea. Overall, the community seems excited about the developments in the NFT and crypto space, particularly with regards to new tokens, platforms, and ecosystem expansions.", - data: [ - 0, 7, 11, 0, 1, 2, 3, 1, 0, 1, 7, 3, 4, 5, 15, 2, 4, 7, 3, 2, 6, 3, 3, 7, 1, 3, 0, 9, 3, 6, - 1, 0, 1, 5, 10, 3, 3, 3, 0, 3, 6, 14, 5, 3, 0, 1, 5, 1, 3, 3, 0, 5, 3, 0, 2, - ], - }, - { - label: 'BNB', - topics: 'bnb,chain,bnbchain,cz,floki', - description: - 'Based on the messages from Twitter, it seems that there is a lot of discussion about BNB (Binance Coin) and its recent performance in the crypto market. Some key points mentioned include:\n\n- BNB looks bottomed on the higher time frame (HTF).\n- BNB has flipped SOL (Solana) and secured the #5 spot with a $100B+ market cap.\n- CZ (Changpeng Zhao) is making strategic moves to push BNB and its ecosystem projects.\n- There is optimism about BNB reaching $800.\n- The CaptainBNB meme coin is gaining popularity and could see significant growth.\n- BNB Chain is seeing a lot of activity with new tokens launching.\n- There is a reference to BNB season in 2021 and the potential for a similar trend to occur again.\n\nOverall, it appears that there is a bullish sentiment surrounding BNB and its ecosystem, with many users expressing excitement and anticipation for potential price increases and new developments.', - data: [ - 0, 0, 3, 3, 2, 19, 3, 2, 36, 2, 2, 2, 4, 2, 0, 2, 7, 1, 4, 1, 2, 2, 6, 5, 4, 0, 3, 4, 2, 6, - 0, 3, 6, 2, 3, 2, 4, 2, 5, 5, 3, 2, 4, 4, 0, 2, 1, 2, 1, 1, 2, 2, 1, 2, 3, - ], - }, - { - label: 'MSTR', - topics: 'microstrategy,saylor,mstr,strategy,michael', - description: - "The key topic discussed in the messages from twitter is MicroStrategy's continued acquisition of Bitcoin. They have recently purchased another 7,633 BTC for $742 million, bringing their total holdings to 478,740 BTC. This move has resulted in significant gains for shareholders, with a 2600% return since August 2020. The company's strategy of investing in Bitcoin has outpaced traditional investments and redefined corporate finance. Shareholders have been rewarded handsomely, and the company's stock price has seen significant fluctuations based on their Bitcoin holdings. This trend of large-scale Bitcoin acquisitions by corporate entities like MicroStrategy is not unique to them, as other entities are also following suit.", - data: [ - 11, 0, 2, 0, 4, 1, 5, 10, 0, 1, 3, 1, 3, 2, 1, 1, 2, 5, 5, 2, 3, 4, 2, 0, 1, 1, 2, 0, 1, 4, - 2, 16, 4, 4, 2, 2, 1, 1, 2, 3, 1, 12, 0, 3, 1, 40, 2, 2, 3, 0, 1, 4, 0, 1, 4, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miner,miners,mined,energy', - description: - "The key topics currently discussed in the messages from twitter about the crypto industry include:\n1. Bitcoin mining efficiency and sustainability\n2. Bitcoin miner activity and potential price movements\n3. CleanSpark's quarterly revenue report and Bitcoin mining\n4. Bitcoin miners' impact on energy consumption and emissions\n5. Hash ribbon signaling miner capitulation and potential price surge\n6. Illegal Bitcoin mining operations and energy theft\n7. Misconceptions about Bitcoin mining and its environmental impact\n8. Future of mining rewards and advancements in technology\n\nThese topics reflect the ongoing discussions and developments in the crypto industry, particularly related to Bitcoin mining and its implications on the environment, energy consumption, and market dynamics.", - data: [ - 4, 0, 2, 2, 22, 6, 7, 3, 0, 3, 2, 3, 2, 3, 3, 3, 3, 2, 3, 0, 1, 7, 6, 8, 4, 2, 1, 0, 1, 1, - 1, 21, 3, 7, 3, 2, 0, 4, 1, 1, 5, 2, 6, 0, 3, 0, 0, 2, 1, 1, 0, 4, 2, 3, 1, - ], - }, - { - label: 'TSLA', - topics: 'tesla,tsla,elonmusk,holdings,stock', - description: - "Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n- Tesla's COGS per vehicle reaching an all-time low in Q4 2024 despite high inflation\n- Ford losing billions on electric cars in 2025, with a $5.1 billion loss in 2024\n- Tesla's plans to launch autonomous ride hailing in Austin in June and expand to other cities in America by the end of the year\n- Alibaba leading a global stock surge and hitting its highest share price since 2022\n- Lyft being sued over allegations of being fat-phobic and racist\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the electric vehicle industry, as well as the performance of major tech companies like Tesla and Alibaba.", - data: [ - 3, 0, 2, 2, 1, 2, 2, 3, 0, 5, 1, 1, 1, 2, 4, 1, 4, 3, 2, 0, 3, 2, 2, 7, 3, 2, 5, 5, 2, 3, 1, - 3, 2, 2, 2, 1, 6, 0, 3, 1, 6, 5, 1, 2, 1, 7, 4, 23, 1, 0, 22, 3, 3, 0, 4, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,web3,game,players', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n\n1. Orbler partnering with Gamerge to revolutionize Web3 gaming with immersive play-to-earn experiences, crypto rewards, and advanced GameFi experience.\n2. Introduction of Open Game Protocol (OGP) for earning any token by playing any game, anywhere.\n3. Xai Play enabling real distribution at scale for Web2 and Web3 games, with the entire Steam library onboarded to $XAI.\n4. Mythical Games powering the next generation of gaming on Polkadot, with Ronin's Gaming Empire receiving numerous awards.\n5. Azuki Gaming launching new games, including Best Mobile Game winner Fableborne, and expanding into gaming.\n6. Immutable launching promising titles in Q1 2025 to bring more players onchain.\n7. Updates and new features in Classic and MagicCraft games, including meme-coin skins and a community-powered battle arena.\n8. Proof of Skill and Xai Play incentivizing over 100 million Steam users to onboard into Web3.\n9. MagicCraft Tournament semi-final games and upcoming Chinese panel on the future of player-centric game economies.\n10. MapleStory's approach to Web3 gaming and the perception of Web3 gaming among gamers.", - data: [ - 3, 1, 1, 1, 1, 3, 0, 3, 4, 2, 0, 1, 0, 1, 1, 4, 2, 0, 3, 36, 1, 4, 1, 0, 4, 4, 2, 4, 1, 3, - 1, 2, 1, 2, 1, 1, 3, 3, 2, 3, 4, 1, 3, 1, 3, 5, 3, 1, 2, 4, 2, 6, 2, 6, 3, - ], - }, - { - label: 'APE', - topics: 'apechain,ape,nfts,home,mint', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- ApeCoin Spotlight and the Bored Ape Yacht Club\n- Diamond Fleece Mint Pass holders\n- ApeChain and the Ape laboratory\n- PixelChain NFTs\n- Issues with Jungles on Magic Eden\n- AbstractChain minting experience\n- Thriving communities on ApeChain such as OKINA LABS, CHUMPZ, GEEZ, and RILLAZ\n- ApeCoin DAO and Made By Apes Snapshot\n- Active NFT communities with a PvE mindset\n- Collaboration between ApeCoin, MagicEden, and other NFT projects\n- Novel Labs events and collaborations with Bored Ape Yacht Club, MutantHounds, Mutant Cartel, CryptoPunks, and artist Vinnie Hager.', - data: [ - 2, 0, 14, 5, 1, 4, 0, 6, 2, 3, 0, 1, 8, 0, 1, 3, 1, 2, 2, 3, 2, 1, 3, 8, 3, 1, 4, 1, 2, 6, - 1, 4, 4, 10, 4, 0, 2, 1, 2, 1, 2, 1, 3, 0, 7, 3, 1, 1, 6, 6, 0, 0, 0, 3, 1, - ], - }, - { - label: 'Whales', - topics: 'whales,whale,buying,retail,activity', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion about whales in the crypto industry. Whales are large players who are accumulating significant amounts of Bitcoin and Ethereum. The emergence of new whales, such as (Micro)Strategy and BTC ETFs, is seen as a significant development in the market. These new whales are dominating the current cycle compared to old whales, indicating a influx of fresh capital into Bitcoin.\n\nThere is also mention of the psychology of retail investors in relation to whales, with a focus on using logic over emotions when making investment decisions. Additionally, there is discussion about the buying and selling behavior of different categories of investors, such as sharks (100-1k BTC) and shrimps (<1BTC).\n\nOverall, the presence and actions of whales in the crypto market are closely monitored and analyzed by investors and analysts alike.', - data: [ - 2, 0, 0, 1, 3, 6, 1, 3, 4, 1, 0, 3, 0, 0, 1, 0, 8, 1, 1, 1, 3, 3, 0, 2, 0, 4, 2, 0, 0, 4, 3, - 0, 4, 5, 7, 3, 2, 1, 0, 1, 4, 0, 1, 0, 2, 0, 0, 0, 1, 2, 0, 2, 2, 35, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-59.json b/priv/repo/major_topics_seed/data-59.json deleted file mode 100644 index b8a5e270be..0000000000 --- a/priv/repo/major_topics_seed/data-59.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["13.02.25","14.02.25","14.02.25","14.02.25","14.02.25","14.02.25","14.02.25","14.02.25","15.02.25","15.02.25","15.02.25","15.02.25","15.02.25","15.02.25","15.02.25","15.02.25","16.02.25","16.02.25","16.02.25","16.02.25","16.02.25","16.02.25","16.02.25","16.02.25","17.02.25","17.02.25","17.02.25","17.02.25","17.02.25","17.02.25","17.02.25","17.02.25","18.02.25","18.02.25","18.02.25","18.02.25","18.02.25","18.02.25","18.02.25","18.02.25","19.02.25","19.02.25","19.02.25","19.02.25","19.02.25","19.02.25","19.02.25","19.02.25","20.02.25","20.02.25","20.02.25","20.02.25","20.02.25","20.02.25","20.02.25"],"datasets":[{"label":"BTC","topics":"bitcoin,btc,alts,dominance,range","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin price predictions and market manipulation: Discussions about the potential price movements of Bitcoin, with mentions of Goldman Sachs and Millennium Management stacking Bitcoin. There is also talk about Bitcoin dominance potentially gearing up for a dip and rip, impacting altcoins.\n2. Trading strategies and signals: Analysis of trading signals and strategies for Bitcoin, with mentions of setting up trades based on technical analysis and market trends.\n3. Bitcoin as a new mindset: Emphasizing the importance of understanding Bitcoin as a new monetary system and mindset, different from traditional currencies like the dollar.\n4. Emerging projects and altseason: Discussions about new projects emerging in the crypto space, as well as anticipation for an altseason as Bitcoin's price hovers around $95,000 to $100,000.\n5. Bitcoin dominance and altcoin triggers: Analysis of Bitcoin dominance holding strong and the need for altcoins to break free, with potential risks for Bitcoin dropping to $70,000 if it falls below $92,000.\n6. Tight trading ranges for Bitcoin: Observations about Bitcoin trading in a tight range for the past 15 days, with comparisons to previous periods of low volatility in August 2023.","data":[40,66,32,43,254,212,64,82,47,48,36,35,62,42,58,33,20,56,36,27,43,35,33,51,28,29,39,35,27,56,64,26,36,45,34,57,46,67,53,54,46,64,70,38,35,34,49,57,51,39,46,31,32,46,49]},{"label":"AI","topics":"ai,agents,agent,data,models","description":"The key topics currently being discussed in the crypto industry on social media include AI, altcoins, AI engineering, autonomous AI agents, ElizaOS, IO Intelligence, Rivalz Network, and the future of AI. There is excitement about the potential for AI to dominate in various areas, such as enterprise software and data analysis. Additionally, there is discussion about the value of quality information in the age of AI and the opportunities for engineers to leverage AI technology. Developers are encouraged to join events and collaborate on building the future of AI.","data":[39,136,20,17,9,8,16,16,18,18,15,18,14,25,14,13,11,14,16,28,20,12,14,9,30,35,22,17,9,22,10,12,13,22,15,20,17,19,20,19,31,11,16,12,17,16,31,32,11,22,14,16,14,16,19]},{"label":"DOGE","topics":"doge,dogecoin,elon,musk,government","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- DOGE auditing into the SEC for fraud, abuse, and waste\n- Tax refunds and payments in Bitcoin\n- Elon Musk discussing a \"DOGE dividend\" tax refund with President Trump\n- DOGE Ukraine audit clearing Elon Musk of wrongdoing\n- DOGE focusing on exposing fraud and eliminating scams\n- DOGE finding $4.7 trillion in virtually untraceable treasury payments\n- Dogecoin reaching $100 billion market cap\n- Americans celebrating DOGE's savings\n- Criticism of Congress and support for DOGE and Elon Musk\n- Politicians being terrified of DOGE due to fear of being part of waste, fraud, and abuse\n- How to pick a Dogelon Mars profile picture\n\nOverall, the messages reflect a mix of discussions around regulatory issues, tax implications, market trends, and political commentary related to the crypto industry, particularly focusing on DOGE and Elon Musk.","data":[17,7,13,15,6,2,33,8,11,6,8,19,14,20,172,18,6,8,19,9,15,23,18,8,16,15,17,17,8,14,14,5,16,19,10,19,15,11,12,19,10,20,9,19,17,17,22,16,14,8,28,20,18,12,20]},{"label":"SOL","topics":"solana,sol,solanas,chain,ftx","description":"The key topics discussed in the messages from twitter about the crypto industry, specifically focusing on Solana, include:\n1. Jingtao controlling the Solana ecosystem market on a low time frame.\n2. Concerns about meme coins being rug pullers and ruining crypto, with specific mention of Solana meme coins.\n3. SOL inflation increasing by 30% one week after changes in fee distribution model.\n4. Record $550M spent on fees by Solana users in January 2025.\n5. Drive More Token Demand through referral rewards on the Solana chain.\n6. Discussion about #Jailstool becoming the PvE people have been waiting for on Solana.\n7. Mention of various entities committing crimes and massive extractions of liquidity from the market.\n8. Institutions remaining bullish on Solana despite market headwinds.\n9. Ignoring SOL meme FUD and highlighting Solana's ability to handle Nasdaq-level load on the chain.\n10. Comparison of current market conditions to past extractive presale meta on Solana.\n11. Criticism of PulseChain Community for \"bag bias\" and comparison to current situation with Solana.\n12. Speculation about Solana facing its biggest scandal since FTX crash.\n13. Discussion about $SOL being \"indestructible\" and potential price movements.\n14. Mention of GGF and predictions for Solana hitting $800 and $1,400 area.\n\nOverall, the messages reflect a mix of positive and negative sentiments towards Solana and the crypto industry, with discussions ranging from market trends and price predictions to concerns about scams and criminal activities.","data":[12,5,10,20,11,10,12,14,26,20,10,23,17,10,15,13,17,17,22,13,19,14,13,19,21,10,14,15,18,20,8,22,16,13,12,18,21,19,12,15,17,19,15,85,6,16,18,14,22,21,7,17,22,18,8]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. Memecoins and their impact on the crypto market\n2. The debate between utility coins and meme coins\n3. The risks associated with trading meme coins\n4. The emergence of new meme tokens inspired by developer HULEZHI\n5. The importance of supporting builders and projects that provide real use cases in the crypto space\n6. The influence of cultural control and memetic literacy in the crypto market\n7. The potential for tokenized media platforms in the crypto industry\n8. The skepticism towards newer meme launches and the rigged nature of the game against retail investors\n9. The recommendation to focus on buying Bitcoin for long-term investment\n10. The discussion on the intrinsic value of different assets in the Collective Head.","data":[5,10,7,13,6,3,3,14,6,9,12,13,9,12,12,9,8,12,9,10,14,16,11,17,11,19,14,15,10,14,11,186,11,11,8,7,15,6,14,15,8,12,8,7,4,15,6,23,14,20,12,7,8,6,8]},{"label":"LIBRA","topics":"libra,argentina,milei,president,javier","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Argentina's Memecoin Disaster: The President of Argentina, Javier Milei, is embroiled in a massive cryptocurrency scandal involving the Solana memecoin $LIBRA. The token's market cap skyrocketed to $4.5 billion before the team was caught unilaterally adding liquidity to pools with the intention of selling for USD. This scandal has caused a political uproar and cast a spotlight on Milei's closest adviser, his sister.\n2. Impact of $LIBRA Scandal: Orderly COO @0x_Arjun unpacks the $LIBRA scandal's impact on the crypto industry, with $251 million lost yet trading persisting. Barstool Founder allegedly lost $5.34 million on $LIBRA but later received $5 million in compensation.\n3. Rug Pulls and Government Theft: There have been four rug pulls from state officials this month alone, including U.S. President Trump's $TRUMP coin and Argentine President's $LIBRA coin. This highlights the risks and challenges of investing in meme coins and the importance of Bitcoin as a more secure investment option.\n4. Altseason and Memecoin Pvp: Despite the scandals and rug pulls, there is still discussion about altseason being back and the potential for meme coin PvP on social media platforms. However, there are calls for more meaningful discussions and less cringe-worthy content in the crypto community.","data":[13,3,14,9,9,4,13,12,15,11,7,16,8,20,8,4,5,20,12,9,13,8,11,11,6,21,9,36,74,26,14,18,3,9,6,8,12,8,8,11,13,29,9,9,4,11,11,9,13,10,11,9,7,6,4]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and its challenges before going mainstream\n- Decentralized governance and aligning incentives in the Web3 gaming economy\n- Partnerships with major sports leagues to bring Web3 gaming to a wider audience\n- The integration of AI in gaming and the shift towards Web3 and AI technologies\n- The future of gaming on blockchain platforms like Polkadot\n- Community events and competitions in the crypto gaming space, such as the LimeWire Telegram game\n- Livestreams and events featuring NFT prizes and gaming experiences on platforms like Twitch\n\nOverall, the discussions revolve around the growth and potential of Web3 gaming, the importance of community engagement and governance, and the integration of new technologies like AI and NFTs in the gaming industry.","data":[6,5,7,7,6,5,1,2,13,11,11,6,4,4,3,8,7,4,8,71,4,5,4,9,11,5,6,14,2,6,7,7,7,7,3,4,13,7,4,10,11,3,4,4,5,8,9,7,7,3,9,1,10,1,4]},{"label":"KAITO","topics":"kaito,kaitoai,airdrop,yappers,tge","description":"The key topics currently being discussed in the crypto community on Twitter include the upcoming Kaito TGE, the potential ROI of investing in Kaito's $cookie, the circulating supply of Kaito leaked from Binance, the listing of Kaito on Binance and OKX spot markets, the challenges faced by users trying to stake their KaitoAI tokens, the value of NFT holders versus top yappers in the Kaito community, the self-fueling mindshare feedback loop created by Kaito, the use of AI analytics for determining values-aligned individuals for airdrops, the handling of NFT snapshot strategies, and the KaitoAI Bounty Program offering rewards for trading KAITO/USDT pairs. Overall, there is a lot of excitement and speculation surrounding Kaito and its upcoming developments in the crypto industry.","data":[7,18,6,6,1,2,3,6,1,7,9,3,8,5,3,6,3,9,3,12,11,5,5,4,10,11,5,10,17,10,4,2,2,8,10,6,5,16,8,9,7,2,11,12,6,4,8,6,11,10,9,6,6,5,14]},{"label":"ETH","topics":"eth,ethereum,resistance,4000,price","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n- The price movement of Ethereum, with mentions of it being up 2%, consolidating, and potentially breaking out to new highs.\n- Speculation on the future price of Ethereum, with some users believing it is cheap now and a good opportunity to buy.\n- Analysis of technical charts and patterns, such as a 3-year triangle breakout and resistance levels at $2800 and $3000.\n- Discussion of the relationship between Ethereum and other tokens, with some referring to them as \"Slingshot Leverage on Ethereum\".\n- Mention of Vitalik Buterin and skepticism about the future of Ethereum.\n- Promotion of high yield ETH rewards through DeFi strategies.\n- Overall sentiment seems to be bullish on Ethereum, with users hopeful for a price increase and potential breakout.","data":[7,2,2,2,2,0,6,2,4,3,5,4,6,0,2,12,54,5,5,4,5,3,0,11,4,5,3,3,3,7,6,1,5,2,4,3,1,9,4,4,5,4,6,3,5,4,4,3,5,4,2,2,2,7,4]},{"label":"DeFi","topics":"defi,summer,finance,future,lending","description":"The messages from twitter indicate that the DeFi (Decentralized Finance) industry is experiencing significant growth and innovation. Key topics discussed include the shift towards sustainability and real utility in DeFi, the integration of traditional finance with DeFi, the launch of new DeFi platforms and apps, and the importance of decentralized economy. There is also a focus on new technologies such as institutional-grade staking and lending, as well as the deployment of money market funds on Layer 2 platforms. Overall, the messages reflect a positive outlook on the future of DeFi and the potential for continued growth and development in the industry.","data":[1,1,3,9,5,0,1,1,3,6,3,3,1,17,2,7,7,2,2,4,1,8,4,4,8,6,9,5,7,3,2,2,6,8,2,3,9,6,5,7,7,3,1,2,5,4,9,1,2,5,6,2,0,0,4]},{"label":"PI","topics":"pi,network,mainnet,listing,okx","description":"The key topics currently being discussed in the crypto community on Twitter include the listing of Pi Network's $PI token on various exchanges, the anticipation of major price action as voting for potential listings on Binance begins, the legitimacy and potential payoff of mining Pi Network's $PI token for six years, the upcoming mainnet launch of Pi Network on February 20, and the availability of Pi Network's $PI token on various trading platforms for trading and rewards. There is also discussion about the decentralized social, commerce, and finance potential of Pi Network, as well as the backlash faced by Binance for reopening community voting on token listings. Overall, there is a mix of excitement, anticipation, and skepticism surrounding Pi Network and its developments.","data":[6,4,3,2,1,2,7,1,3,7,8,5,5,7,1,1,3,1,3,0,3,1,1,4,3,1,1,6,14,2,2,0,4,34,6,1,14,6,2,8,1,0,2,3,4,2,3,3,1,8,0,3,5,2,2]},{"label":"Inflation","topics":"inflation,fed,rates,rate,impact","description":"The key topics currently being discussed in the crypto industry on social media include asset inflation, rising inflation, market impacts of various economic indicators, the impact of tariffs on key industries, the role of central banks in the economy, and the effects of inflation on consumer prices. Additionally, there is mention of the Federal Reserve's stance on inflation risks, the independence of central banks from government influence, and the potential for stagflation in the economy. Overall, the discussions on social media highlight the interconnectedness of economic factors and their impact on the crypto industry.","data":[2,0,4,1,0,1,5,1,8,1,1,3,3,0,11,9,4,1,6,1,2,5,1,1,17,4,1,1,0,3,40,1,8,0,1,3,1,0,0,11,3,4,2,1,0,5,2,2,6,0,3,9,8,3,7]},{"label":"Opensea","topics":"opensea,sea,farming,airdrop,nft","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n1. Opensea's revenue generation and market share growth\n2. Opensea's XP system and airdrop suspension\n3. Launching $SEA on Ethereum or Solana\n4. Kaito and Opensea's Gemesis pass\n5. Founders potentially going against Opensea\n6. Criticisms of Opensea and the NFT market\n7. Fragmentation of liquidity from ETH to SOL\n8. Discussion about XP eligible collections list\n\nOverall, it appears that there is a mix of positive and negative sentiments towards Opensea and its practices, as well as discussions about potential developments and partnerships within the crypto industry.","data":[2,3,3,6,1,0,2,0,1,2,3,3,7,1,1,3,1,6,1,5,7,3,4,2,4,3,2,6,2,3,3,3,1,1,7,4,2,5,2,5,6,9,6,4,3,1,8,8,6,3,3,2,5,5,2]},{"label":"SEC","topics":"sec,unit,cyber,securities,lawsuit","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Kraken considering the acquisition of Deribit, with discussions still underway.\n2. The SEC launching a Cyber and Emerging Technologies Unit to combat fraud in the crypto and tech industries.\n3. The potential impact of the US downsizing the IRS on regulatory focus in the crypto space.\n4. Alexander Vinnik, the former operator of BTC-e, being returned to Russia as part of a prisoner swap.\n5. The SEC dropping its case seeking to apply the broker-dealer rule to DeFi, potentially easing obstacles for DeFi adoption.\n6. The Education Department intending to assess compliance with applicable statutes and regulations within 14 days.\n7. Deribit still being in acquisition talks with Kraken, according to a source.\n8. Sybils being spotted at ConsensusHK and efforts to stop them.\n9. A US judge granting a 60-day hold on the SEC's lawsuit against Binance.\n10. Coinbase calling out Congress to act now to prevent crypto innovation from leaving the US.\n11. Binance vs. SEC on hold, potentially signaling a major shift in the crypto industry.\n12. The creation of a script for the automatic deployment of a Cellframe masternode on remote Linux servers.\n13. The launch of a new SEC Crypto Unit and the potential impact on $CETU.\n14. Updates on LBank Daily News Highlights regarding insider trading and US securities law.","data":[7,0,7,3,4,1,14,2,4,6,1,2,1,3,5,1,2,3,2,2,0,0,0,3,0,2,9,15,1,1,1,1,0,7,8,8,0,3,2,3,12,3,4,4,2,0,3,1,2,0,2,7,5,1,2]},{"label":"MSTR","topics":"mstr,saylor,microstrategy,strategy,michael","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n\n1. Institutional interest in Strategy (referring to MicroStrategy) surging in Q4 amid the bitcoin boom.\n2. Investment bankers wanting to offer more fiat to Strategy to buy more bitcoin.\n3. Rumors about Michael Saylor, the CEO of MicroStrategy, raising $2 billion to buy more bitcoin.\n4. Public companies following MicroStrategy's lead by using corporate cash to buy bitcoin.\n5. Cantor Fitzgerald making a massive bet on bitcoin by buying over $1 billion in MicroStrategy shares.\n6. Speculation about Jeff Bezos potentially buying a large amount of bitcoin to solve world hunger.\n7. Bernsteins suggesting the U.S. may sell some gold to buy bitcoin for strategic reserve.\n8. Concerns about MicroStrategy's new convertible notes not being well received by the market.\n9. Analysis of the potential negative Bitcoin yield if MicroStrategy shares are sold to buy more bitcoin.\n10. Discussion about the genius level operation of Michael Saylor in navigating the new asset class of bitcoin.","data":[2,1,8,3,1,0,28,7,0,0,3,1,2,3,6,1,1,2,0,1,2,2,4,3,1,4,1,3,2,2,1,10,6,2,0,5,0,2,4,2,2,16,2,0,0,17,2,0,5,0,0,2,0,1,3]},{"label":"APE","topics":"apechain,apecoin,ape,nfts,home","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry community include ApeCoin, ApeChain, NFTs, and various projects and events related to them. There is a strong focus on NFTs and the unique projects being developed on ApeChain. Additionally, there is mention of the Universal Assistant Protocol (UAP) bringing order to the chaos in the chain, as well as discussions about art alpha and the involvement of different community members in events and projects related to ApeChain. The messages also touch upon the dedication and hard work of individuals within the community, as well as the excitement surrounding new developments and opportunities within the industry.","data":[2,1,18,10,0,2,0,3,2,0,3,0,7,3,0,1,0,3,2,3,4,6,2,13,2,2,2,4,1,9,2,2,4,4,13,1,2,0,3,2,2,0,1,1,5,2,4,3,1,0,3,0,3,1,1]},{"label":"FTX","topics":"ftx,claims,begin,payouts,kraken","description":"The key topic discussed in the messages from Twitter is the repayment process by FTX to its users. The messages mention that FTX has started repaying people, with $16 billion in repayments beginning today. The repayments are being distributed in U.S. dollars through BitGo and Kraken, with some users already receiving their funds. The initial distributions of recoveries to holders of allowed claims in FTX's Chapter 11 Plan of Reorganization have also commenced, with customers expected to receive funds within 1 to 3 business days. Additionally, former clients of the now-defunct crypto exchange with assets up to $50,000 will receive reimbursements based on November 2022 exchange rates. Overall, the messages highlight the ongoing repayment process by FTX and the positive impact it is having on users who were affected by the fiasco.","data":[2,3,2,13,0,0,7,1,1,1,0,7,1,6,0,2,0,0,35,3,0,0,1,2,2,2,3,3,0,0,2,0,2,2,3,3,4,3,1,4,6,1,3,0,3,4,1,2,7,2,0,6,2,2,0]},{"label":"BTC Mining","topics":"mining,miners,miner,energy,cloud","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin mining software and strategies for solo mining\n- Profitable opportunities in Bitcoin cloud mining\n- Renewable energy investment and grid stabilization by Bitcoin miners\n- AI-driven efficiency in cloud mining\n- Bitcoin mining revolution in 2024\n- World-class mining experience for clients\n- Mining pools and their benefits for miners\n- Acquisitions of wind farms for sustainable Bitcoin mining\n- Updates on Bitcoin mining operations and holdings\n- Bitcoin mining expos and events\n\nOverall, the discussions on Twitter revolve around various aspects of Bitcoin mining, including software, profitability, sustainability, efficiency, and industry events.","data":[6,0,0,1,10,15,3,0,3,7,2,0,3,2,0,3,3,2,1,0,0,5,3,3,1,1,3,5,2,5,4,1,17,2,2,3,0,0,1,3,4,6,3,4,1,1,3,0,2,0,1,1,5,0,1]},{"label":"XRP","topics":"xrp,ripple,cryptocurrency,altcoins,price","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- XRP's potential for a rebound and breakout, with mentions of a potential $11 breakout and a projected $7 price in 2025\n- The upcoming XRPL EVM Sidechain launch and its impact on the XRP community\n- Stellar (XLM) also being mentioned with potential for a 40% surge\n- Speculation on XRP's price climb as ETF progress unfolds\n- Ripple CTO highlighting XRPL's early role in Bitcoin transactions\n- The history of XRP and Ripple's catch-22 situation in 2015-2016\n- Analysis of a Cup and Handle pattern forming for XRP, signaling a potential breakout\n\nOverall, the sentiment on Twitter seems to be positive towards XRP and its potential for growth and new developments in the near future.","data":[2,2,0,1,0,1,4,2,2,1,3,2,0,3,3,1,3,4,3,4,3,2,1,7,1,1,4,3,4,2,3,0,1,1,1,4,0,16,1,3,5,1,6,4,0,2,5,3,0,4,1,6,3,3,0]},{"label":"Abu Dhabi's sovereign wealth fund investing $436 million in Bitcoin ETFs","topics":"sovereign,wealth,fund,q1,bought","description":"The key topic discussed in the messages from Twitter is Abu Dhabi's sovereign wealth fund investing $436 million in Bitcoin ETFs. This move is seen as bullish for Bitcoin and has sparked discussions about the implications of such a significant investment from a major wealth fund. The messages also mention other wealth funds potentially following suit and the use of oil money to prop up Bitcoin. Additionally, there is speculation about the impact of this investment on Bitcoin's price and the game theory involved in such a significant allocation to Bitcoin by a large sovereign wealth fund.","data":[1,0,1,4,3,1,11,19,0,0,3,0,0,4,1,0,1,3,1,4,0,1,0,3,1,5,0,0,1,0,0,0,2,1,2,0,0,1,1,1,1,4,1,0,41,1,2,0,3,1,0,0,0,5,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-59.ts b/priv/repo/major_topics_seed/data-59.ts deleted file mode 100644 index d7aa008b0a..0000000000 --- a/priv/repo/major_topics_seed/data-59.ts +++ /dev/null @@ -1,267 +0,0 @@ -export const NARRATIVES = { - labels: [ - '13.02.25', - '14.02.25', - '14.02.25', - '14.02.25', - '14.02.25', - '14.02.25', - '14.02.25', - '14.02.25', - '15.02.25', - '15.02.25', - '15.02.25', - '15.02.25', - '15.02.25', - '15.02.25', - '15.02.25', - '15.02.25', - '16.02.25', - '16.02.25', - '16.02.25', - '16.02.25', - '16.02.25', - '16.02.25', - '16.02.25', - '16.02.25', - '17.02.25', - '17.02.25', - '17.02.25', - '17.02.25', - '17.02.25', - '17.02.25', - '17.02.25', - '17.02.25', - '18.02.25', - '18.02.25', - '18.02.25', - '18.02.25', - '18.02.25', - '18.02.25', - '18.02.25', - '18.02.25', - '19.02.25', - '19.02.25', - '19.02.25', - '19.02.25', - '19.02.25', - '19.02.25', - '19.02.25', - '19.02.25', - '20.02.25', - '20.02.25', - '20.02.25', - '20.02.25', - '20.02.25', - '20.02.25', - '20.02.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,btc,alts,dominance,range', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin price predictions and market manipulation: Discussions about the potential price movements of Bitcoin, with mentions of Goldman Sachs and Millennium Management stacking Bitcoin. There is also talk about Bitcoin dominance potentially gearing up for a dip and rip, impacting altcoins.\n2. Trading strategies and signals: Analysis of trading signals and strategies for Bitcoin, with mentions of setting up trades based on technical analysis and market trends.\n3. Bitcoin as a new mindset: Emphasizing the importance of understanding Bitcoin as a new monetary system and mindset, different from traditional currencies like the dollar.\n4. Emerging projects and altseason: Discussions about new projects emerging in the crypto space, as well as anticipation for an altseason as Bitcoin's price hovers around $95,000 to $100,000.\n5. Bitcoin dominance and altcoin triggers: Analysis of Bitcoin dominance holding strong and the need for altcoins to break free, with potential risks for Bitcoin dropping to $70,000 if it falls below $92,000.\n6. Tight trading ranges for Bitcoin: Observations about Bitcoin trading in a tight range for the past 15 days, with comparisons to previous periods of low volatility in August 2023.", - data: [ - 40, 66, 32, 43, 254, 212, 64, 82, 47, 48, 36, 35, 62, 42, 58, 33, 20, 56, 36, 27, 43, 35, - 33, 51, 28, 29, 39, 35, 27, 56, 64, 26, 36, 45, 34, 57, 46, 67, 53, 54, 46, 64, 70, 38, 35, - 34, 49, 57, 51, 39, 46, 31, 32, 46, 49, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,data,models', - description: - 'The key topics currently being discussed in the crypto industry on social media include AI, altcoins, AI engineering, autonomous AI agents, ElizaOS, IO Intelligence, Rivalz Network, and the future of AI. There is excitement about the potential for AI to dominate in various areas, such as enterprise software and data analysis. Additionally, there is discussion about the value of quality information in the age of AI and the opportunities for engineers to leverage AI technology. Developers are encouraged to join events and collaborate on building the future of AI.', - data: [ - 39, 136, 20, 17, 9, 8, 16, 16, 18, 18, 15, 18, 14, 25, 14, 13, 11, 14, 16, 28, 20, 12, 14, - 9, 30, 35, 22, 17, 9, 22, 10, 12, 13, 22, 15, 20, 17, 19, 20, 19, 31, 11, 16, 12, 17, 16, - 31, 32, 11, 22, 14, 16, 14, 16, 19, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elon,musk,government', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- DOGE auditing into the SEC for fraud, abuse, and waste\n- Tax refunds and payments in Bitcoin\n- Elon Musk discussing a "DOGE dividend" tax refund with President Trump\n- DOGE Ukraine audit clearing Elon Musk of wrongdoing\n- DOGE focusing on exposing fraud and eliminating scams\n- DOGE finding $4.7 trillion in virtually untraceable treasury payments\n- Dogecoin reaching $100 billion market cap\n- Americans celebrating DOGE\'s savings\n- Criticism of Congress and support for DOGE and Elon Musk\n- Politicians being terrified of DOGE due to fear of being part of waste, fraud, and abuse\n- How to pick a Dogelon Mars profile picture\n\nOverall, the messages reflect a mix of discussions around regulatory issues, tax implications, market trends, and political commentary related to the crypto industry, particularly focusing on DOGE and Elon Musk.', - data: [ - 17, 7, 13, 15, 6, 2, 33, 8, 11, 6, 8, 19, 14, 20, 172, 18, 6, 8, 19, 9, 15, 23, 18, 8, 16, - 15, 17, 17, 8, 14, 14, 5, 16, 19, 10, 19, 15, 11, 12, 19, 10, 20, 9, 19, 17, 17, 22, 16, 14, - 8, 28, 20, 18, 12, 20, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,solanas,chain,ftx', - description: - 'The key topics discussed in the messages from twitter about the crypto industry, specifically focusing on Solana, include:\n1. Jingtao controlling the Solana ecosystem market on a low time frame.\n2. Concerns about meme coins being rug pullers and ruining crypto, with specific mention of Solana meme coins.\n3. SOL inflation increasing by 30% one week after changes in fee distribution model.\n4. Record $550M spent on fees by Solana users in January 2025.\n5. Drive More Token Demand through referral rewards on the Solana chain.\n6. Discussion about #Jailstool becoming the PvE people have been waiting for on Solana.\n7. Mention of various entities committing crimes and massive extractions of liquidity from the market.\n8. Institutions remaining bullish on Solana despite market headwinds.\n9. Ignoring SOL meme FUD and highlighting Solana\'s ability to handle Nasdaq-level load on the chain.\n10. Comparison of current market conditions to past extractive presale meta on Solana.\n11. Criticism of PulseChain Community for "bag bias" and comparison to current situation with Solana.\n12. Speculation about Solana facing its biggest scandal since FTX crash.\n13. Discussion about $SOL being "indestructible" and potential price movements.\n14. Mention of GGF and predictions for Solana hitting $800 and $1,400 area.\n\nOverall, the messages reflect a mix of positive and negative sentiments towards Solana and the crypto industry, with discussions ranging from market trends and price predictions to concerns about scams and criminal activities.', - data: [ - 12, 5, 10, 20, 11, 10, 12, 14, 26, 20, 10, 23, 17, 10, 15, 13, 17, 17, 22, 13, 19, 14, 13, - 19, 21, 10, 14, 15, 18, 20, 8, 22, 16, 13, 12, 18, 21, 19, 12, 15, 17, 19, 15, 85, 6, 16, - 18, 14, 22, 21, 7, 17, 22, 18, 8, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n1. Memecoins and their impact on the crypto market\n2. The debate between utility coins and meme coins\n3. The risks associated with trading meme coins\n4. The emergence of new meme tokens inspired by developer HULEZHI\n5. The importance of supporting builders and projects that provide real use cases in the crypto space\n6. The influence of cultural control and memetic literacy in the crypto market\n7. The potential for tokenized media platforms in the crypto industry\n8. The skepticism towards newer meme launches and the rigged nature of the game against retail investors\n9. The recommendation to focus on buying Bitcoin for long-term investment\n10. The discussion on the intrinsic value of different assets in the Collective Head.', - data: [ - 5, 10, 7, 13, 6, 3, 3, 14, 6, 9, 12, 13, 9, 12, 12, 9, 8, 12, 9, 10, 14, 16, 11, 17, 11, 19, - 14, 15, 10, 14, 11, 186, 11, 11, 8, 7, 15, 6, 14, 15, 8, 12, 8, 7, 4, 15, 6, 23, 14, 20, 12, - 7, 8, 6, 8, - ], - }, - { - label: 'LIBRA', - topics: 'libra,argentina,milei,president,javier', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Argentina's Memecoin Disaster: The President of Argentina, Javier Milei, is embroiled in a massive cryptocurrency scandal involving the Solana memecoin $LIBRA. The token's market cap skyrocketed to $4.5 billion before the team was caught unilaterally adding liquidity to pools with the intention of selling for USD. This scandal has caused a political uproar and cast a spotlight on Milei's closest adviser, his sister.\n2. Impact of $LIBRA Scandal: Orderly COO @0x_Arjun unpacks the $LIBRA scandal's impact on the crypto industry, with $251 million lost yet trading persisting. Barstool Founder allegedly lost $5.34 million on $LIBRA but later received $5 million in compensation.\n3. Rug Pulls and Government Theft: There have been four rug pulls from state officials this month alone, including U.S. President Trump's $TRUMP coin and Argentine President's $LIBRA coin. This highlights the risks and challenges of investing in meme coins and the importance of Bitcoin as a more secure investment option.\n4. Altseason and Memecoin Pvp: Despite the scandals and rug pulls, there is still discussion about altseason being back and the potential for meme coin PvP on social media platforms. However, there are calls for more meaningful discussions and less cringe-worthy content in the crypto community.", - data: [ - 13, 3, 14, 9, 9, 4, 13, 12, 15, 11, 7, 16, 8, 20, 8, 4, 5, 20, 12, 9, 13, 8, 11, 11, 6, 21, - 9, 36, 74, 26, 14, 18, 3, 9, 6, 8, 12, 8, 8, 11, 13, 29, 9, 9, 4, 11, 11, 9, 13, 10, 11, 9, - 7, 6, 4, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Web3 gaming and its challenges before going mainstream\n- Decentralized governance and aligning incentives in the Web3 gaming economy\n- Partnerships with major sports leagues to bring Web3 gaming to a wider audience\n- The integration of AI in gaming and the shift towards Web3 and AI technologies\n- The future of gaming on blockchain platforms like Polkadot\n- Community events and competitions in the crypto gaming space, such as the LimeWire Telegram game\n- Livestreams and events featuring NFT prizes and gaming experiences on platforms like Twitch\n\nOverall, the discussions revolve around the growth and potential of Web3 gaming, the importance of community engagement and governance, and the integration of new technologies like AI and NFTs in the gaming industry.', - data: [ - 6, 5, 7, 7, 6, 5, 1, 2, 13, 11, 11, 6, 4, 4, 3, 8, 7, 4, 8, 71, 4, 5, 4, 9, 11, 5, 6, 14, 2, - 6, 7, 7, 7, 7, 3, 4, 13, 7, 4, 10, 11, 3, 4, 4, 5, 8, 9, 7, 7, 3, 9, 1, 10, 1, 4, - ], - }, - { - label: 'KAITO', - topics: 'kaito,kaitoai,airdrop,yappers,tge', - description: - "The key topics currently being discussed in the crypto community on Twitter include the upcoming Kaito TGE, the potential ROI of investing in Kaito's $cookie, the circulating supply of Kaito leaked from Binance, the listing of Kaito on Binance and OKX spot markets, the challenges faced by users trying to stake their KaitoAI tokens, the value of NFT holders versus top yappers in the Kaito community, the self-fueling mindshare feedback loop created by Kaito, the use of AI analytics for determining values-aligned individuals for airdrops, the handling of NFT snapshot strategies, and the KaitoAI Bounty Program offering rewards for trading KAITO/USDT pairs. Overall, there is a lot of excitement and speculation surrounding Kaito and its upcoming developments in the crypto industry.", - data: [ - 7, 18, 6, 6, 1, 2, 3, 6, 1, 7, 9, 3, 8, 5, 3, 6, 3, 9, 3, 12, 11, 5, 5, 4, 10, 11, 5, 10, - 17, 10, 4, 2, 2, 8, 10, 6, 5, 16, 8, 9, 7, 2, 11, 12, 6, 4, 8, 6, 11, 10, 9, 6, 6, 5, 14, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,resistance,4000,price', - description: - 'The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n- The price movement of Ethereum, with mentions of it being up 2%, consolidating, and potentially breaking out to new highs.\n- Speculation on the future price of Ethereum, with some users believing it is cheap now and a good opportunity to buy.\n- Analysis of technical charts and patterns, such as a 3-year triangle breakout and resistance levels at $2800 and $3000.\n- Discussion of the relationship between Ethereum and other tokens, with some referring to them as "Slingshot Leverage on Ethereum".\n- Mention of Vitalik Buterin and skepticism about the future of Ethereum.\n- Promotion of high yield ETH rewards through DeFi strategies.\n- Overall sentiment seems to be bullish on Ethereum, with users hopeful for a price increase and potential breakout.', - data: [ - 7, 2, 2, 2, 2, 0, 6, 2, 4, 3, 5, 4, 6, 0, 2, 12, 54, 5, 5, 4, 5, 3, 0, 11, 4, 5, 3, 3, 3, 7, - 6, 1, 5, 2, 4, 3, 1, 9, 4, 4, 5, 4, 6, 3, 5, 4, 4, 3, 5, 4, 2, 2, 2, 7, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,summer,finance,future,lending', - description: - 'The messages from twitter indicate that the DeFi (Decentralized Finance) industry is experiencing significant growth and innovation. Key topics discussed include the shift towards sustainability and real utility in DeFi, the integration of traditional finance with DeFi, the launch of new DeFi platforms and apps, and the importance of decentralized economy. There is also a focus on new technologies such as institutional-grade staking and lending, as well as the deployment of money market funds on Layer 2 platforms. Overall, the messages reflect a positive outlook on the future of DeFi and the potential for continued growth and development in the industry.', - data: [ - 1, 1, 3, 9, 5, 0, 1, 1, 3, 6, 3, 3, 1, 17, 2, 7, 7, 2, 2, 4, 1, 8, 4, 4, 8, 6, 9, 5, 7, 3, - 2, 2, 6, 8, 2, 3, 9, 6, 5, 7, 7, 3, 1, 2, 5, 4, 9, 1, 2, 5, 6, 2, 0, 0, 4, - ], - }, - { - label: 'PI', - topics: 'pi,network,mainnet,listing,okx', - description: - "The key topics currently being discussed in the crypto community on Twitter include the listing of Pi Network's $PI token on various exchanges, the anticipation of major price action as voting for potential listings on Binance begins, the legitimacy and potential payoff of mining Pi Network's $PI token for six years, the upcoming mainnet launch of Pi Network on February 20, and the availability of Pi Network's $PI token on various trading platforms for trading and rewards. There is also discussion about the decentralized social, commerce, and finance potential of Pi Network, as well as the backlash faced by Binance for reopening community voting on token listings. Overall, there is a mix of excitement, anticipation, and skepticism surrounding Pi Network and its developments.", - data: [ - 6, 4, 3, 2, 1, 2, 7, 1, 3, 7, 8, 5, 5, 7, 1, 1, 3, 1, 3, 0, 3, 1, 1, 4, 3, 1, 1, 6, 14, 2, - 2, 0, 4, 34, 6, 1, 14, 6, 2, 8, 1, 0, 2, 3, 4, 2, 3, 3, 1, 8, 0, 3, 5, 2, 2, - ], - }, - { - label: 'Inflation', - topics: 'inflation,fed,rates,rate,impact', - description: - "The key topics currently being discussed in the crypto industry on social media include asset inflation, rising inflation, market impacts of various economic indicators, the impact of tariffs on key industries, the role of central banks in the economy, and the effects of inflation on consumer prices. Additionally, there is mention of the Federal Reserve's stance on inflation risks, the independence of central banks from government influence, and the potential for stagflation in the economy. Overall, the discussions on social media highlight the interconnectedness of economic factors and their impact on the crypto industry.", - data: [ - 2, 0, 4, 1, 0, 1, 5, 1, 8, 1, 1, 3, 3, 0, 11, 9, 4, 1, 6, 1, 2, 5, 1, 1, 17, 4, 1, 1, 0, 3, - 40, 1, 8, 0, 1, 3, 1, 0, 0, 11, 3, 4, 2, 1, 0, 5, 2, 2, 6, 0, 3, 9, 8, 3, 7, - ], - }, - { - label: 'Opensea', - topics: 'opensea,sea,farming,airdrop,nft', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n1. Opensea's revenue generation and market share growth\n2. Opensea's XP system and airdrop suspension\n3. Launching $SEA on Ethereum or Solana\n4. Kaito and Opensea's Gemesis pass\n5. Founders potentially going against Opensea\n6. Criticisms of Opensea and the NFT market\n7. Fragmentation of liquidity from ETH to SOL\n8. Discussion about XP eligible collections list\n\nOverall, it appears that there is a mix of positive and negative sentiments towards Opensea and its practices, as well as discussions about potential developments and partnerships within the crypto industry.", - data: [ - 2, 3, 3, 6, 1, 0, 2, 0, 1, 2, 3, 3, 7, 1, 1, 3, 1, 6, 1, 5, 7, 3, 4, 2, 4, 3, 2, 6, 2, 3, 3, - 3, 1, 1, 7, 4, 2, 5, 2, 5, 6, 9, 6, 4, 3, 1, 8, 8, 6, 3, 3, 2, 5, 5, 2, - ], - }, - { - label: 'SEC', - topics: 'sec,unit,cyber,securities,lawsuit', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Kraken considering the acquisition of Deribit, with discussions still underway.\n2. The SEC launching a Cyber and Emerging Technologies Unit to combat fraud in the crypto and tech industries.\n3. The potential impact of the US downsizing the IRS on regulatory focus in the crypto space.\n4. Alexander Vinnik, the former operator of BTC-e, being returned to Russia as part of a prisoner swap.\n5. The SEC dropping its case seeking to apply the broker-dealer rule to DeFi, potentially easing obstacles for DeFi adoption.\n6. The Education Department intending to assess compliance with applicable statutes and regulations within 14 days.\n7. Deribit still being in acquisition talks with Kraken, according to a source.\n8. Sybils being spotted at ConsensusHK and efforts to stop them.\n9. A US judge granting a 60-day hold on the SEC's lawsuit against Binance.\n10. Coinbase calling out Congress to act now to prevent crypto innovation from leaving the US.\n11. Binance vs. SEC on hold, potentially signaling a major shift in the crypto industry.\n12. The creation of a script for the automatic deployment of a Cellframe masternode on remote Linux servers.\n13. The launch of a new SEC Crypto Unit and the potential impact on $CETU.\n14. Updates on LBank Daily News Highlights regarding insider trading and US securities law.", - data: [ - 7, 0, 7, 3, 4, 1, 14, 2, 4, 6, 1, 2, 1, 3, 5, 1, 2, 3, 2, 2, 0, 0, 0, 3, 0, 2, 9, 15, 1, 1, - 1, 1, 0, 7, 8, 8, 0, 3, 2, 3, 12, 3, 4, 4, 2, 0, 3, 1, 2, 0, 2, 7, 5, 1, 2, - ], - }, - { - label: 'MSTR', - topics: 'mstr,saylor,microstrategy,strategy,michael', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n\n1. Institutional interest in Strategy (referring to MicroStrategy) surging in Q4 amid the bitcoin boom.\n2. Investment bankers wanting to offer more fiat to Strategy to buy more bitcoin.\n3. Rumors about Michael Saylor, the CEO of MicroStrategy, raising $2 billion to buy more bitcoin.\n4. Public companies following MicroStrategy's lead by using corporate cash to buy bitcoin.\n5. Cantor Fitzgerald making a massive bet on bitcoin by buying over $1 billion in MicroStrategy shares.\n6. Speculation about Jeff Bezos potentially buying a large amount of bitcoin to solve world hunger.\n7. Bernsteins suggesting the U.S. may sell some gold to buy bitcoin for strategic reserve.\n8. Concerns about MicroStrategy's new convertible notes not being well received by the market.\n9. Analysis of the potential negative Bitcoin yield if MicroStrategy shares are sold to buy more bitcoin.\n10. Discussion about the genius level operation of Michael Saylor in navigating the new asset class of bitcoin.", - data: [ - 2, 1, 8, 3, 1, 0, 28, 7, 0, 0, 3, 1, 2, 3, 6, 1, 1, 2, 0, 1, 2, 2, 4, 3, 1, 4, 1, 3, 2, 2, - 1, 10, 6, 2, 0, 5, 0, 2, 4, 2, 2, 16, 2, 0, 0, 17, 2, 0, 5, 0, 0, 2, 0, 1, 3, - ], - }, - { - label: 'APE', - topics: 'apechain,apecoin,ape,nfts,home', - description: - 'Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry community include ApeCoin, ApeChain, NFTs, and various projects and events related to them. There is a strong focus on NFTs and the unique projects being developed on ApeChain. Additionally, there is mention of the Universal Assistant Protocol (UAP) bringing order to the chaos in the chain, as well as discussions about art alpha and the involvement of different community members in events and projects related to ApeChain. The messages also touch upon the dedication and hard work of individuals within the community, as well as the excitement surrounding new developments and opportunities within the industry.', - data: [ - 2, 1, 18, 10, 0, 2, 0, 3, 2, 0, 3, 0, 7, 3, 0, 1, 0, 3, 2, 3, 4, 6, 2, 13, 2, 2, 2, 4, 1, 9, - 2, 2, 4, 4, 13, 1, 2, 0, 3, 2, 2, 0, 1, 1, 5, 2, 4, 3, 1, 0, 3, 0, 3, 1, 1, - ], - }, - { - label: 'FTX', - topics: 'ftx,claims,begin,payouts,kraken', - description: - "The key topic discussed in the messages from Twitter is the repayment process by FTX to its users. The messages mention that FTX has started repaying people, with $16 billion in repayments beginning today. The repayments are being distributed in U.S. dollars through BitGo and Kraken, with some users already receiving their funds. The initial distributions of recoveries to holders of allowed claims in FTX's Chapter 11 Plan of Reorganization have also commenced, with customers expected to receive funds within 1 to 3 business days. Additionally, former clients of the now-defunct crypto exchange with assets up to $50,000 will receive reimbursements based on November 2022 exchange rates. Overall, the messages highlight the ongoing repayment process by FTX and the positive impact it is having on users who were affected by the fiasco.", - data: [ - 2, 3, 2, 13, 0, 0, 7, 1, 1, 1, 0, 7, 1, 6, 0, 2, 0, 0, 35, 3, 0, 0, 1, 2, 2, 2, 3, 3, 0, 0, - 2, 0, 2, 2, 3, 3, 4, 3, 1, 4, 6, 1, 3, 0, 3, 4, 1, 2, 7, 2, 0, 6, 2, 2, 0, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,energy,cloud', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin mining software and strategies for solo mining\n- Profitable opportunities in Bitcoin cloud mining\n- Renewable energy investment and grid stabilization by Bitcoin miners\n- AI-driven efficiency in cloud mining\n- Bitcoin mining revolution in 2024\n- World-class mining experience for clients\n- Mining pools and their benefits for miners\n- Acquisitions of wind farms for sustainable Bitcoin mining\n- Updates on Bitcoin mining operations and holdings\n- Bitcoin mining expos and events\n\nOverall, the discussions on Twitter revolve around various aspects of Bitcoin mining, including software, profitability, sustainability, efficiency, and industry events.', - data: [ - 6, 0, 0, 1, 10, 15, 3, 0, 3, 7, 2, 0, 3, 2, 0, 3, 3, 2, 1, 0, 0, 5, 3, 3, 1, 1, 3, 5, 2, 5, - 4, 1, 17, 2, 2, 3, 0, 0, 1, 3, 4, 6, 3, 4, 1, 1, 3, 0, 2, 0, 1, 1, 5, 0, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,cryptocurrency,altcoins,price', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- XRP's potential for a rebound and breakout, with mentions of a potential $11 breakout and a projected $7 price in 2025\n- The upcoming XRPL EVM Sidechain launch and its impact on the XRP community\n- Stellar (XLM) also being mentioned with potential for a 40% surge\n- Speculation on XRP's price climb as ETF progress unfolds\n- Ripple CTO highlighting XRPL's early role in Bitcoin transactions\n- The history of XRP and Ripple's catch-22 situation in 2015-2016\n- Analysis of a Cup and Handle pattern forming for XRP, signaling a potential breakout\n\nOverall, the sentiment on Twitter seems to be positive towards XRP and its potential for growth and new developments in the near future.", - data: [ - 2, 2, 0, 1, 0, 1, 4, 2, 2, 1, 3, 2, 0, 3, 3, 1, 3, 4, 3, 4, 3, 2, 1, 7, 1, 1, 4, 3, 4, 2, 3, - 0, 1, 1, 1, 4, 0, 16, 1, 3, 5, 1, 6, 4, 0, 2, 5, 3, 0, 4, 1, 6, 3, 3, 0, - ], - }, - { - label: "Abu Dhabi's sovereign wealth fund investing $436 million in Bitcoin ETFs", - topics: 'sovereign,wealth,fund,q1,bought', - description: - "The key topic discussed in the messages from Twitter is Abu Dhabi's sovereign wealth fund investing $436 million in Bitcoin ETFs. This move is seen as bullish for Bitcoin and has sparked discussions about the implications of such a significant investment from a major wealth fund. The messages also mention other wealth funds potentially following suit and the use of oil money to prop up Bitcoin. Additionally, there is speculation about the impact of this investment on Bitcoin's price and the game theory involved in such a significant allocation to Bitcoin by a large sovereign wealth fund.", - data: [ - 1, 0, 1, 4, 3, 1, 11, 19, 0, 0, 3, 0, 0, 4, 1, 0, 1, 3, 1, 4, 0, 1, 0, 3, 1, 5, 0, 0, 1, 0, - 0, 0, 2, 1, 2, 0, 0, 1, 1, 1, 1, 4, 1, 0, 41, 1, 2, 0, 3, 1, 0, 0, 0, 5, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-6.json b/priv/repo/major_topics_seed/data-6.json deleted file mode 100644 index 3232a21e7a..0000000000 --- a/priv/repo/major_topics_seed/data-6.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["08.02.24","09.02.24","09.02.24","09.02.24","09.02.24","09.02.24","09.02.24","09.02.24","10.02.24","10.02.24","10.02.24","10.02.24","10.02.24","10.02.24","10.02.24","10.02.24","11.02.24","11.02.24","11.02.24","11.02.24","11.02.24","11.02.24","11.02.24","11.02.24","12.02.24","12.02.24","12.02.24","12.02.24","12.02.24","12.02.24","12.02.24","12.02.24","13.02.24","13.02.24","13.02.24","13.02.24","13.02.24","13.02.24","13.02.24","13.02.24","14.02.24","14.02.24","14.02.24","14.02.24","14.02.24","14.02.24","14.02.24","14.02.24","15.02.24","15.02.24","15.02.24","15.02.24","15.02.24","15.02.24","15.02.24"],"datasets":[{"label":"Inflation rates","topics":"inflation,cpi,rates,fed,31","description":"The key topics discussed in the given messages from Twitter regarding the crypto industry are:\n\n1. Inflation: There is a concern about high food inflation and its impact on the economy. The Consumer Price Index (CPI) is mentioned, indicating the measurement of inflation. The potential negative effect of inflation on stock and crypto prices is also highlighted.\n\n2. Yield Curve Inversion: The inversion of the yield curve is discussed, which occurs when short-term bond yields exceed long-term yields. This indicates investor concerns about the economy and can have implications for the crypto industry.\n\n3. Fed's Monetary Policy: The Federal Reserve's actions and guidance regarding interest rates are mentioned. There is a call for the Fed to cut interest rates due to rising rents and housing becoming unaffordable for many families.\n\n4. Market Impact: The impact of inflation data and the Fed's guidance on the market, including stocks and crypto prices, is highlighted. The potential volatility caused by the announcement of US CPI and inflation rates is mentioned.\n\n5. Axelar Network: The introduction of the Axelar Network's Virtual Machine and Interchain Token Service is mentioned, along with the increase in the price of AXL and the decrease in inflation pressure on it.\n\nOverall, the key topics discussed in the messages from Twitter regarding the crypto industry are inflation, yield curve inversion, the Fed's monetary policy, market impact, and specific developments in the Axelar Network.","data":[2,4,9,5,1,0,2,16,3,7,7,8,3,11,5,6,3,8,6,8,4,5,4,2,6,10,44,6,5,3,5,38,2,3,4,5,3,6,6,11,9,8,2,4,5,15,7,2,7,8,4,12,2,4,4]},{"label":"Cryptoart","topics":"art,artwork,artists,cryptoart,artist","description":"Based on the given messages from Twitter, the key topics that are currently discussed in the crypto industry include:\n\n1. Art and NFTs: There are mentions of various art projects, art collections, and digital paintings. The discussion revolves around the appreciation of art, sharing it with the community, and the potential for art to become valuable NFTs.\n\n2. Crypto Collectibles: The concept of collecting crypto assets, such as Rubber collections and Proscenium mints, is mentioned. The discussion highlights the importance of these collectibles in building a unique collection and their potential value.\n\n3. Pricing and Sales Mechanisms: The messages mention experiments with different pricing strategies and sales mechanisms for art. This includes offering art at various price points and exploring evolving sets of sales mechanisms to attract a wider audience.\n\n4. Community Engagement: The importance of community engagement is emphasized, with a focus on making art more accessible and understandable to new friends. The discussion also acknowledges that not everyone may be active or interested in haggling, but that is acceptable.\n\n5. Crypto Market Trends: The messages mention the possibility of more than a million people collecting the first breakthrough art collection by 2024. This indicates a growing interest in the crypto art market and potential future trends.\n\nOverall, the discussions on Twitter revolve around the intersection of art and the crypto industry, including NFTs, collectibles, pricing strategies, community engagement, and market trends.","data":[6,4,32,3,0,0,0,1,4,7,6,9,6,2,1,3,1,4,7,2,1,3,4,3,0,4,5,4,5,5,9,4,1,2,6,7,7,1,4,4,4,2,2,8,3,2,1,3,5,3,5,2,2,2,4]},{"label":"Solana","topics":"solana,sol,presale,wave,bnb","description":"The key topics discussed in the given messages from Twitter about the crypto industry, specifically related to Solana (SOL), are as follows:\n\n1. Solana as the best Bitcoin beta trade: The message suggests that Solana is considered a good investment option in relation to Bitcoin.\n\n2. ETF with inflows for Solana: There is mention of an ETF (Exchange-Traded Fund) that has seen inflows for Solana, indicating growing interest in the cryptocurrency.\n\n3. Solana's performance compared to Bitcoin: Despite a recent outage, Solana (SOL) has rebounded above $100 and outpaced Bitcoin in terms of performance.\n\n4. Solana's role in DeFi (Decentralized Finance): Solana is highlighted as a shining player in the DeFi realm, indicating its significance in the decentralized finance space.\n\n5. Meme Moguls (MGLS) presale on Solana: The presale of Meme Moguls on Solana is mentioned, hinting at potential high returns and growth opportunities.\n\n6. Bridge from Solana to Injective: A step-by-step guide is shared to seamlessly onboard users from Solana to Injective, a Layer 1 blockchain platform.\n\n7. Solana's usability compared to Ethereum: The message suggests that Solana is preferred over Ethereum for its usability during business hours, implying that Ethereum is more suitable for holding rather than using.\n\n8. Technical analysis of Solana's price movement: The message discusses Solana's price movement, mentioning the formation of an Ascending Triangle pattern and the potential breakout above the $123 resistance level.\n\n9. Low-cap Solana gem: A cryptocurrency called Casinu Inu (CASINU) on Solana is highlighted as a low-cap gem, indicating it may have potential for growth.\n\n10. Asvoria on Solana presale: The presale of Asvoria (ASVORIA) on Solana is mentioned, emphasizing its hype and the presence of a doxxed team.\n\nOverall, the messages from Twitter highlight various aspects of Solana's performance, partnerships, and investment opportunities within the crypto industry.","data":[3,4,0,3,0,0,1,4,2,3,4,2,0,3,2,1,3,5,2,6,0,4,0,1,4,4,5,2,7,5,8,7,1,2,3,6,2,5,8,0,6,4,2,6,14,2,4,1,2,2,4,8,0,3,0]},{"label":"Mining","topics":"mining,miners,energy,miner,texas","description":"Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. Bitcoin mining: There are mentions of countries starting to mine Bitcoin, such as the mention of another country starting Bitcoin mining. The importance of seeking out the cheapest energy source, particularly renewable sources, for Bitcoin mining is also highlighted. Additionally, there is a mention of Hut 8, a Bitcoin miner, replacing its CEO after a critical report was released.\n\n2. Bitcoin mining efficiency: The discussion includes the role of miners in expanding the money supply and the absence of an inflation mechanism in Nano. There is also a mention of the lessons learned by Bitcoin miners, emphasizing the importance of being the best in class and the negative impact of blind diversification.\n\n3. Crypto mining advancements: The introduction of the EZ 1-Click Miner by Safex is mentioned, along with the invitation for ideas and feedback from the community. There is also a reference to a YouTube channel dedicated to Bitcoin mining news and shorts.\n\n4. Bitcoin mining events: The announcement of a Bitcoin Mining expo in Miami in 2024 is highlighted, inviting people to join the event. \n\n5. Bitcoin mining in different countries: The discussion includes a reference to the top 5 countries leading in Bitcoin mining and their impact on the crypto world.\n\n6. Environmental impact of mining: The mention of Utah and its resemblance to Dune, a science fiction novel, brings attention to the use of evaporation pools by mineral companies and a proposed bill to change their business practices.\n\nOverall, the key topics discussed in the given messages revolve around Bitcoin mining, its efficiency, advancements, events, global impact, and environmental considerations.","data":[3,5,3,3,6,19,3,1,2,3,4,3,3,0,3,4,3,1,0,2,3,3,7,3,1,1,2,2,2,1,4,0,14,1,6,1,2,2,1,2,4,1,2,4,1,3,1,3,3,1,2,1,0,6,3]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Memecoins: The messages mention several memecoins such as $MEME, $FLOKI, $DOGE, $PEPE, $WELSH, $BYTE, $KISHU, $SHIB, $SHINJA, $KIBA, $BabyDoge, $AirCoin, $Crogecoin, $CheemsInu, $FegToken, $SAFEMOON, and #memecoin. The discussion revolves around the relevance, future, and price predictions of these memecoins.\n\n2. Memeseason: The return of #Memeseason is anticipated and considered delightful by the community. This suggests a period of increased activity and interest in memecoins.\n\n3. Meme movement: Newbies entering the crypto industry through the meme movement are mentioned. This indicates the influence of memecoins in attracting newcomers to the market.\n\n4. Memecoin performance: The messages highlight the volatility and cyclical nature of memecoins. They mention that every memecoin has its big moment followed by a crash and burn. This suggests caution and the need to avoid outsmarting oneself.\n\n5. Influencers and partnerships: The involvement of influential figures like Elon Musk and TRON founder Justin Sun in memecoins is mentioned. The messages also discuss the potential of $BYTE, a memecoin built on @Stacks, to go up forever. This indicates the impact of influencers and partnerships on memecoin performance.\n\n6. Top memecoins: The messages mention Shiba Inu (SHIB), Dogecoin (DOGE), and Meme Moguls (MGLS) as top memecoins not to miss in Q1, 2024. This suggests a focus on these specific memecoins for potential investment opportunities.\n\n7. Miscellaneous: The messages include unrelated content such as a fictional story about a meme named Kevin and a book from 1985. These may not be directly related to the crypto industry or memecoins.\n\nOverall, the key topics discussed in the given messages revolve around memecoins, their performance, influencers, partnerships, and potential investment opportunities.","data":[3,2,5,2,0,0,2,4,5,1,0,4,0,1,0,4,0,0,5,3,1,0,11,3,2,2,2,1,1,4,4,1,30,4,4,1,4,1,3,3,1,3,2,3,5,2,3,6,3,0,4,1,3,2,3]},{"label":"Bitcoin's marketcap","topics":"trillion,cap,1t,market,capitalization","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Bitcoin's Market Cap: The messages highlight the fact that Bitcoin has officially reclaimed a $1 trillion market cap. There is a sentiment that Bitcoin should have a much higher market cap, potentially reaching $25+ trillion. The significance of Bitcoin surpassing the $1 trillion mark is emphasized, and it is mentioned that Bitcoin's market cap under $10 trillion is considered low.\n\n2. Bitcoin's Performance: The messages mention that Bitcoin has shattered the $1 trillion market cap barrier and has reached a two-year high. The surge in Bitcoin's price is highlighted, with mentions of it surpassing $52,000. The positive performance of Bitcoin is seen as a reason for celebration and excitement.\n\n3. Altcoins and Total Market Cap: The messages discuss the concept of \"TOTAL2,\" which represents the market cap of all altcoins except Bitcoin. There is a suggestion that altcoins are not as significant as Bitcoin, and the focus is on Bitcoin's market cap reaching milestones.\n\n4. Precious Metals and Bitcoin: One message mentions that the market cap of precious metals will flow into Bitcoin. The idea is that Bitcoin will attract investment from traditional assets like precious metals, leading to a significant increase in its market cap.\n\n5. Bitcoin's Potential and Future: There are mentions of Bitcoin's potential growth and its future prospects. The messages suggest that Bitcoin's market cap could climb to $1 trillion by the 4th halving and that significant events are about to happen in the crypto space. There is also a mention of studying Bitcoin and its unique characteristics.\n\n6. Trust and Trading: The messages touch on the importance of trust in the crypto industry. There is a caution against trusting individuals who claim to be better traders and a suggestion to follow Bitcoin cycles for buying and selling decisions. The idea that successful traders may not disclose their losses is also mentioned.\n\nOverall, the key topics discussed in the messages revolve around Bitcoin's market cap, its performance, comparisons with other assets, its potential growth, and the importance of trust in the crypto industry.","data":[1,0,0,8,26,8,8,3,0,1,0,2,3,0,3,0,0,0,1,1,0,1,0,1,8,0,4,0,1,0,0,10,1,3,1,3,3,2,3,3,9,3,1,2,3,0,11,4,1,7,0,1,1,0,3]},{"label":"GameFi","topics":"gaming,game,games,mobile,gamefi","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Gaming Coins: There is a mention of \"gaming coins ripping\" and the desire to earn Ethereum (ETH) while playing video games. The mention of gaming tokens and NFTs suggests that the gaming sector is driving the play-to-earn (P2E) trend.\n\n2. Metaverse Games: The mention of the \"Best #Metaverse Games list for 2024\" indicates an interest in virtual worlds and immersive gaming experiences.\n\n3. Blockchain Gaming: The involvement of companies like Amazon and Solana Labs in blockchain gaming is highlighted, emphasizing the real-world impact and investment surge in this sector.\n\n4. Crypto Projects: The mention of BRC-20/Ordinals and ecosystem crypto projects suggests an interest in exploring and investing in various cryptocurrency projects related to gaming.\n\n5. Fantasy Sports and Web3: The intersection of Web3 (decentralized web) and sports, particularly fantasy sports, is seen as having significant growth potential. The mention of Samurai Starter and FullSetSports indicates an interest in innovative fantasy sports game modes.\n\n6. Illuvium and BLOCKLORDS: Updates and developments related to Illuvium (ILV) and BLOCKLORDS (LRDS) are mentioned, including the release of a medieval MMO strategy game and a GameDrop event rewarding players with in-game tokens.\n\n7. Merit Circle DAO: The mention of Merit Circle DAO's breakdown of major news in Q4 of 2023 suggests an interest in staying updated on gaming-related developments.\n\n8. Aether Games: The anticipation of Aether Games' launch and its fusion of old-school and new-age gaming with blockchain technology is mentioned.\n\n9. MaviaGame and ParallelTCG: The mention of these games and the observation that their prices are going up due to genuine player enjoyment suggests a connection between game popularity and price increase.\n\n10. DobutsuNFTs and Nurorealm: The existence of DobutsuNFTs and its collaboration with Nurorealm for the development of a video game is mentioned.\n\n11. Mass Adoption of Gaming in Crypto: The belief that gaming is a perfect fit for cryptocurrency and likely to be one of the first areas to achieve mass adoption is expressed. Several cryptocurrency projects related to gaming are mentioned as owned or being considered for investment.\n\n12. MagicVerse and MagicCraft: The introduction of MagicVerse, a Web3 gaming universe powered by the native token MCRT, and the upcoming game releases of MagicCraft are mentioned.","data":[1,2,4,2,0,0,7,1,2,2,4,1,3,0,1,1,1,3,3,2,29,1,5,0,0,2,2,4,3,4,4,2,3,4,6,2,2,3,2,1,2,1,1,2,4,1,1,3,1,0,2,6,1,0,2]},{"label":"Blackrock and Fidelity ETFs","topics":"blackrock,fidelity,ibit,etf,aum","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. BlackRock's consideration of increasing Bitcoin holdings: BlackRock, a prominent investment management company, is reportedly considering increasing its holdings of Bitcoin. This news suggests a bullish sentiment towards Bitcoin.\n\n2. BlackRock's spot Bitcoin ETF: BlackRock's spot Bitcoin ETF has seen a significant increase in daily trading volume, reaching its highest level to date. This indicates growing interest and participation in Bitcoin trading through BlackRock's ETF.\n\n3. BlackRock and Fidelity's Bitcoin ETFs: Both BlackRock and Fidelity have accumulated a substantial amount of Bitcoin for their respective spot Bitcoin ETFs. The combined assets under management (AUM) of these ETFs have surpassed $3 billion each since their launch.\n\n4. Profitability of BlackRock's Bitcoin ETF buyers: All the buyers of BlackRock's Bitcoin ETF are now in profit, highlighting the positive returns and potential gains associated with investing in Bitcoin.\n\n5. BlackRock's plans to buy Bitcoin over the next few years: BlackRock's Chief Investment Officer (CIO) has stated that the company intends to continue adding Bitcoin to its investment portfolio gradually over the next few years. This indicates a long-term bullish outlook on Bitcoin.\n\n6. Dominance of BlackRock and Fidelity's Bitcoin ETFs: BlackRock and Fidelity's spot Bitcoin ETFs have dominated the top 25 ETFs by assets just one month after their launch. This demonstrates the strong demand and popularity of these ETFs in the market.\n\n7. BlackRock and Fidelity's Bitcoin ETFs making history: Both BlackRock and Fidelity's Bitcoin ETFs have achieved a monumental milestone by securing over $3 billion each in their debut month. This sets a new record for ETF launches in the U.S. over the last 30 years and highlights the increasing mainstream acceptance of Bitcoin.\n\nOverall, the key topics revolve around BlackRock's involvement in the crypto industry, particularly its consideration of increasing Bitcoin holdings and the success of its spot Bitcoin ETF. The significant accumulation of Bitcoin by BlackRock and Fidelity for their respective ETFs also indicates growing institutional interest in cryptocurrencies.","data":[6,4,1,1,1,0,31,0,3,0,3,1,1,2,0,0,15,1,2,0,0,1,0,0,9,10,3,2,2,1,1,1,3,0,2,1,2,0,3,1,1,1,1,0,3,0,4,0,2,1,1,2,0,0,1]},{"label":"Shiba Inu","topics":"shiba,inu,shib,burn,memecoin","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Shiba Inu (SHIB): The messages mention various updates and developments related to Shiba Inu, including the unveiling of the Shib Magazine's latest edition, the surge in active addresses by nearly 30%, the significant price surge of 1,708% driven by whale activities, the potential deletion of one zero in the price, and the milestone of the Shiba Inu community reaching 4,000 members.\n\n2. Crypto Pandoshi (PAMBO): Analysts predict that the newly launched cryptocurrency, Crypto Pandoshi (PAMBO), will reach $5 upon exchange listings.\n\n3. Shiba Inu Team: The Shiba Inu team is highlighted for successfully trading on 130 exchanges without paying any listing fees.\n\n4. Shiba Inu Price: The messages mention the price of Shiba Inu skyrocketing by 340% on-chain and the expectation of the price erasing one zero.\n\n5. Shiba Inu Ecosystem: The messages indicate renewed excitement in the Shiba Inu ecosystem due to rising whale activities and surging daily transactions, potentially leading to new highs in the cryptocurrency's value.\n\n6. TiFiToken: The TiFiToken team has chosen the Baby Doge Token Locker to lock a significant amount of TiFi tokens for one year.\n\n7. ShibaSaga (SHIA): The messages introduce ShibaSaga as an innovative gaming and crypto platform with a market cap of around 3 million. It features rebranded versions of popular games like Angry Birds, Temple Run, and Fruit Ninja, all interconnected with an on-chain system.\n\n8. Shibwifhat: Shibwifhat is mentioned as the next potential meme coin on Solana, with BitMart planning to list it soon.\n\n9. DejitaruTsuka: DejitaruTsuka is being advertised on a prominent China-centric coin index, indicating its growing presence in the Chinese community.\n\n10. Year of the Dragon: The messages reference the Year of the Dragon and its significance for cryptocurrencies like Tsuka and Shiba Inu.\n\nOverall, the key topics revolve around updates, price movements, new launches, and community milestones in the Shiba Inu ecosystem, as well as the introduction of other cryptocurrencies and their developments.","data":[2,1,0,1,0,0,3,2,6,1,3,2,0,1,3,3,1,4,0,2,1,0,0,0,2,0,34,2,2,3,2,1,1,3,2,0,0,2,3,1,0,2,2,19,1,2,1,2,0,0,0,2,2,1,2]},{"label":"ERC404","topics":"erc404,404,standard,erc20,tokens","description":"The key topics discussed in the given messages from Twitter are as follows:\n\n1. ERC-404: The messages mention the ERC-404 token, which is a hybrid token standard merging ERC20 and ERC721 tokens on the Ethereum blockchain. It is described as having the liquidity of an ERC20 token while also being an NFT. There is debate and controversy within the Ethereum community regarding the safety and legitimacy of ERC-404 tokens.\n\n2. NFTs: Non-Fungible Tokens (NFTs) are mentioned in relation to the ERC-404 token. The messages highlight the potential benefits of ERC-404 tokens for investors, as they provide exposure to the NFT world while also offering liquidity and ease of trading associated with ERC-20 tokens.\n\n3. Pandora ERC-404: The messages mention the Pandora ERC-404 token, which has experienced a surge in trading volume since its deployment. The token is described as an experimental hybrid token based on the ERC404 standard.\n\n4. Liquidity and Trading: The messages emphasize the liquidity and ease of trading associated with ERC-20 tokens and how this is beneficial for investors.\n\n5. Chinese New Year Celebration: The messages mention a celebration of Chinese New Year with the reimagining of the Hong Bao tradition using digital art and blockchain technology.\n\n6. Router Protocol Collaboration: The messages highlight a collaboration between Router Protocol and Manta Ray, where the first ERC404 Hybrid token/NFT was created on Manta Network. This collaboration allows users to trade $RAY across multiple chains.\n\n7. Investment Opportunities: Despite the volatile market and recent drop in value, the messages mention strategic investments in ERC-404 tokens that have resulted in significant returns.\n\n8. Ethereum Politics and Approval: The messages mention that Ethereum Politics is required for an official \"Approval\" of ERC-404. This is seen as uncertain and may lead to the emergence of a new narrative.\n\n9. Scammers and Ruggers: The messages warn about scammers and serial ruggers infiltrating the 404 meta, referring to individuals who engage in fraudulent activities in the crypto industry.\n\nOverall, the key topics discussed in the given messages revolve around the ERC-404 token, NFTs, liquidity and trading, investment opportunities, collaborations, and concerns about safety and legitimacy.","data":[1,1,3,0,0,0,2,0,0,2,4,3,2,1,6,1,19,2,0,2,1,1,2,0,0,3,3,1,3,2,1,2,3,5,7,4,0,2,3,3,3,1,3,0,2,0,6,3,1,8,1,1,0,4,0]},{"label":"Ethereum","topics":"ethereum,eth,3000,prediction,resistance","description":"The key topics discussed in the given messages from Twitter about the crypto industry, specifically Ethereum ($ETH), are as follows:\n\n1. Price Levels: The messages mention the current and potential future price levels for Ethereum. It is stated that the first pit stop is at $2800, and if possible, the next target is $3200. There is also a mention of Ethereum reaching $17500 in 2024/2025.\n\n2. Price Pumping: The messages highlight that the price of Ethereum is pumping as planned, indicating a positive trend in its value.\n\n3. Community Involvement: The messages mention a shared plan with the community, indicating active participation and collaboration within the Ethereum community.\n\n4. Price Predictions: There is a prediction that if Ethereum closes above $2485 on the weekly chart, it will see a price of $3585. Additionally, there is a mention of how once Ethereum hits $10K, it will lead to significant wealth for investors.\n\n5. Buying Opportunity: It is suggested that the current price range of $2600-$2800 for Ethereum is a good time to buy more before the week starts, implying a potential price increase.\n\n6. Franklin Templeton ETF Application: The messages mention that Franklin Templeton has applied for a spot Ethereum ETF, which could potentially lead to a rally in Ethereum's price, with a target of $3500.\n\n7. Ethereum Network Strength: The messages highlight the strength of the Ethereum network and attribute its rally to macroeconomic factors. It is also mentioned that Ethereum is almost halfway through its upside move.\n\n8. Altcoin Mention: The altcoin ENS (Ethereum Name Service) is mentioned as one of the strongest altcoins, with a potential price target of $30 if Bitcoin and Ethereum bounce.\n\n9. Proto Danksharding: The messages discuss the need for Proto Danksharding on the Ethereum network to increase scalability and reduce costs. It is mentioned that a simple swap on Ethereum currently costs $400, which is a significant portion of the net monthly salary in the UK.\n\n10. Bullish Case for Ethereum: The messages present a bullish case for Ethereum in 2024, citing various factors such as upcoming EIPs (Ethereum Improvement Proposals), building on-chain social media, ERC20+ERC721 combo, potential ETH ETF by BlackRock, Wallstreet interest, partnership with GoDaddy, and the launch of multiple Layer 2 solutions.\n\nOverall, the messages reflect discussions about Ethereum's price levels, community involvement, price predictions, buying opportunities, ETF applications, network strength, altcoin performance, scalability solutions, and a bullish outlook for Ethereum in the future.","data":[2,3,1,0,0,0,0,3,1,1,2,0,1,0,1,1,44,3,4,1,2,0,2,2,7,1,1,0,1,0,2,1,2,3,1,0,1,3,4,2,3,0,1,2,2,2,4,2,4,2,0,1,0,1,0]},{"label":"Gary Gensler","topics":"gensler,sec,gary,garygensler,secs","description":"The key topics discussed in the given messages from Twitter are as follows:\n\n1. SEC Chair Gary Gensler's focus on cybersecurity obligations: Gensler emphasizes the seriousness of cybersecurity obligations and addresses security breaches in the crypto industry.\n\n2. Concerns about Chinese government influence on Ethereum: Former Ethereum advisor Steven Nerayoff raises concerns about potential Chinese government influence on the Ethereum platform.\n\n3. Gensler's stance on Bitcoin and Ethereum ETFs: Gensler refuses to commit to approving Ethereum ETFs but considers the approval of Bitcoin ETFs as the most sustainable decision after losing in court.\n\n4. Comparison of crypto to fiat fraud: Former SEC Internet Enforcement Chief John Reed Stark challenges assertions that minimize cyber-related offenses in the crypto industry, arguing that comparing it to fiat fraud is misleading.\n\n5. Allegations against Gensler's ties with Ethereum: Steven Nerayoff hints at undisclosed deep ties between Gensler and Ethereum, suggesting potential influence by external political forces.\n\n6. Logically incoherent position on Bitcoin: Gensler is criticized for being in a logically incoherent position regarding Bitcoin, as its facts and circumstances are not dissimilar from many other tokens.\n\n7. Prominent crypto attorney contemplating Senate run: John Deaton, founder of Crypto Law and a prominent attorney in the SEC vs Ripple lawsuit, is reportedly considering running as a Republican in the 2024 Senate race against Elizabeth Warren.\n\n8. Gensler's warnings about Bitcoin's role in ransomware: Gensler warns about Bitcoin's leading market share for ransomware attacks and advocates for centralized money.\n\n9. Bitcoin labeled as the \"token of choice for ransomware\": Gensler labels Bitcoin as the preferred token for ransomware and highlights speculative investing as one of its attractive use cases.\n\n10. Speculation about Gensler's future after the 2024 presidential election: There is speculation about whether Gensler will be removed or leave his position as SEC Chair for a treasury job after the 2024 presidential election.","data":[0,3,4,1,1,2,3,3,3,10,2,2,2,8,0,1,2,0,1,1,5,1,2,2,1,3,1,1,3,1,2,5,0,0,1,4,0,1,2,0,1,7,11,4,1,1,2,1,2,1,2,0,2,3,3]},{"label":"Satoshi","topics":"satoshi,trial,court,hes,judge","description":"The key topics discussed in the given messages from Twitter are:\n\n1. Craig Wright's credibility: The messages mention Craig Wright, who claims to be the creator of Bitcoin, Satoshi Nakamoto. However, there are doubts about his credibility, with references to him being unable to prove his identity in court and being referred to as \"Faketoshi.\" The COPA trial, where Wright's claims are being examined, is also mentioned.\n\n2. Criticism of Craig Wright: There is criticism of Craig Wright's capabilities and his involvement in the crypto industry. He is compared to Elon Musk's less capable brother and referred to as the \"Fredo Corleone of shitcoining and attention seeking.\" The messages also highlight that some individuals do not believe in his ideas and do not want to participate in his ventures.\n\n3. Testimony and questioning: The messages mention Craig Wright's testimony and tough questioning from COPA and Bitcoin developers during the ongoing trial. It is suggested that the questioning has exposed debts that Wright needs to pay and that the witness has a vested interest in the case's outcome.\n\n4. Inconsistencies in Wright's narrative: The messages refer to inconsistencies in Craig Wright's narrative regarding his claim of being Satoshi Nakamoto. These inconsistencies are highlighted in the context of legal battles related to Bitcoin and the Tulip Trust.\n\n5. Bitcoin's evolution: The messages briefly touch upon the evolution of Bitcoin from its initial purpose of peer-to-peer online coffee purchases to becoming a global monetary settlement network. This evolution is mentioned in the context of Satoshi Nakamoto's original intentions.\n\nOverall, the key topics discussed in the messages revolve around Craig Wright's credibility, criticism of his capabilities, the ongoing COPA trial, questioning of his claims, inconsistencies in his narrative, and the evolution of Bitcoin.","data":[2,2,0,4,2,0,1,2,4,1,7,11,1,0,1,2,1,7,0,1,2,1,4,1,1,4,0,4,5,4,0,0,4,2,3,3,0,0,3,0,1,0,1,4,0,2,1,4,0,3,5,0,1,3,6]},{"label":"XRP","topics":"xrp,ripple,ripples,mln,whale","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Bitcoin (BTC): There is a mention of Bitcoin holders wanting to swap to XRP. The price rally and surge in on-chain activity of Bitcoin are also highlighted.\n\n2. XRP: The messages mention the bullish run of XRP, with the price reaching $1.88. Integration news with $FLR and the potential for a major leap in price are also discussed.\n\n3. Ripple: The messages mention Ripple's CBDC game plan and its resistance fail. The potential impact of a whale's dump on Ripple's future is also highlighted.\n\n4. Crypto Market: The overall cryptocurrency market is discussed, with mentions of bullish turn signals, technical indicators, and key levels to watch for XRP.\n\n5. Crypto News: The messages mention various news articles and updates related to the crypto industry, including the launch of Pushd's presale and the rebound of $FLR.\n\n6. Investing: The messages highlight the positive market activity and continued growth in the crypto industry, indicating potential investment opportunities.\n\n7. Technical Analysis: The messages mention technical indicators such as the weekly bullish engulfing candle and the breakdown of stochastic RSI.\n\nOverall, the key topics discussed in the given messages revolve around Bitcoin, XRP, Ripple, the crypto market, crypto news, investing, and technical analysis.","data":[2,3,1,1,0,0,1,2,3,2,1,2,5,0,2,2,0,10,3,1,0,1,0,1,5,0,3,1,1,0,1,3,0,4,1,2,0,3,9,2,2,9,2,3,0,2,2,0,0,4,1,2,4,5,0]},{"label":"NFT","topics":"nft,nfts,collection,announces,digitalassets","description":"The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. NFT Projects: There is mention of various NFT projects, including historic NFTs, MadCock NFT, PFP NFT projects, and the first artwork to be fractionalized. The messages also highlight the minting of a large number of NFTs in a short time.\n\n2. NFT Utility: The importance of NFT utility is discussed, with a focus on community activations, social media exposure, engagement, and airdrops. The messages suggest that these aspects contribute to the value of an NFT.\n\n3. NFT Market Tips: Expert tips for success in the NFT market are mentioned, targeting artists, collectors, and enthusiasts. These tips are seen as strategies to unlock the potential of the NFT market.\n\n4. City of NILE Series: The City of NILE series is introduced as a collectible symbolizing harmony, life, and rebirth. An auction for City of NEPHTHYS NFTs is announced, and the future of NFTFi is mentioned.\n\n5. Hotspot NFTs: A cautionary message is shared about being cautious with unexpected NFTs in wallets, as they could be scams. Specifically, the reminder is given for Helium Hotspots onboarded as compressed NFTs on the Solana blockchain.\n\nOverall, the messages reflect the excitement and hype surrounding NFTs, with discussions about various projects, utility, market tips, and cautionary reminders.","data":[2,7,3,1,0,0,1,1,2,1,0,2,0,0,1,7,1,1,5,1,2,1,3,1,2,1,0,1,2,1,3,1,4,2,8,1,2,4,3,4,1,1,3,1,1,2,2,1,0,1,4,2,2,0,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-6.ts b/priv/repo/major_topics_seed/data-6.ts deleted file mode 100644 index 19d13b96c3..0000000000 --- a/priv/repo/major_topics_seed/data-6.ts +++ /dev/null @@ -1,211 +0,0 @@ -export const NARRATIVES = { - labels: [ - '08.02.24', - '09.02.24', - '09.02.24', - '09.02.24', - '09.02.24', - '09.02.24', - '09.02.24', - '09.02.24', - '10.02.24', - '10.02.24', - '10.02.24', - '10.02.24', - '10.02.24', - '10.02.24', - '10.02.24', - '10.02.24', - '11.02.24', - '11.02.24', - '11.02.24', - '11.02.24', - '11.02.24', - '11.02.24', - '11.02.24', - '11.02.24', - '12.02.24', - '12.02.24', - '12.02.24', - '12.02.24', - '12.02.24', - '12.02.24', - '12.02.24', - '12.02.24', - '13.02.24', - '13.02.24', - '13.02.24', - '13.02.24', - '13.02.24', - '13.02.24', - '13.02.24', - '13.02.24', - '14.02.24', - '14.02.24', - '14.02.24', - '14.02.24', - '14.02.24', - '14.02.24', - '14.02.24', - '14.02.24', - '15.02.24', - '15.02.24', - '15.02.24', - '15.02.24', - '15.02.24', - '15.02.24', - '15.02.24', - ], - datasets: [ - { - label: 'Inflation rates', - topics: 'inflation,cpi,rates,fed,31', - description: - "The key topics discussed in the given messages from Twitter regarding the crypto industry are:\n\n1. Inflation: There is a concern about high food inflation and its impact on the economy. The Consumer Price Index (CPI) is mentioned, indicating the measurement of inflation. The potential negative effect of inflation on stock and crypto prices is also highlighted.\n\n2. Yield Curve Inversion: The inversion of the yield curve is discussed, which occurs when short-term bond yields exceed long-term yields. This indicates investor concerns about the economy and can have implications for the crypto industry.\n\n3. Fed's Monetary Policy: The Federal Reserve's actions and guidance regarding interest rates are mentioned. There is a call for the Fed to cut interest rates due to rising rents and housing becoming unaffordable for many families.\n\n4. Market Impact: The impact of inflation data and the Fed's guidance on the market, including stocks and crypto prices, is highlighted. The potential volatility caused by the announcement of US CPI and inflation rates is mentioned.\n\n5. Axelar Network: The introduction of the Axelar Network's Virtual Machine and Interchain Token Service is mentioned, along with the increase in the price of AXL and the decrease in inflation pressure on it.\n\nOverall, the key topics discussed in the messages from Twitter regarding the crypto industry are inflation, yield curve inversion, the Fed's monetary policy, market impact, and specific developments in the Axelar Network.", - data: [ - 2, 4, 9, 5, 1, 0, 2, 16, 3, 7, 7, 8, 3, 11, 5, 6, 3, 8, 6, 8, 4, 5, 4, 2, 6, 10, 44, 6, 5, - 3, 5, 38, 2, 3, 4, 5, 3, 6, 6, 11, 9, 8, 2, 4, 5, 15, 7, 2, 7, 8, 4, 12, 2, 4, 4, - ], - }, - { - label: 'Cryptoart', - topics: 'art,artwork,artists,cryptoart,artist', - description: - 'Based on the given messages from Twitter, the key topics that are currently discussed in the crypto industry include:\n\n1. Art and NFTs: There are mentions of various art projects, art collections, and digital paintings. The discussion revolves around the appreciation of art, sharing it with the community, and the potential for art to become valuable NFTs.\n\n2. Crypto Collectibles: The concept of collecting crypto assets, such as Rubber collections and Proscenium mints, is mentioned. The discussion highlights the importance of these collectibles in building a unique collection and their potential value.\n\n3. Pricing and Sales Mechanisms: The messages mention experiments with different pricing strategies and sales mechanisms for art. This includes offering art at various price points and exploring evolving sets of sales mechanisms to attract a wider audience.\n\n4. Community Engagement: The importance of community engagement is emphasized, with a focus on making art more accessible and understandable to new friends. The discussion also acknowledges that not everyone may be active or interested in haggling, but that is acceptable.\n\n5. Crypto Market Trends: The messages mention the possibility of more than a million people collecting the first breakthrough art collection by 2024. This indicates a growing interest in the crypto art market and potential future trends.\n\nOverall, the discussions on Twitter revolve around the intersection of art and the crypto industry, including NFTs, collectibles, pricing strategies, community engagement, and market trends.', - data: [ - 6, 4, 32, 3, 0, 0, 0, 1, 4, 7, 6, 9, 6, 2, 1, 3, 1, 4, 7, 2, 1, 3, 4, 3, 0, 4, 5, 4, 5, 5, - 9, 4, 1, 2, 6, 7, 7, 1, 4, 4, 4, 2, 2, 8, 3, 2, 1, 3, 5, 3, 5, 2, 2, 2, 4, - ], - }, - { - label: 'Solana', - topics: 'solana,sol,presale,wave,bnb', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry, specifically related to Solana (SOL), are as follows:\n\n1. Solana as the best Bitcoin beta trade: The message suggests that Solana is considered a good investment option in relation to Bitcoin.\n\n2. ETF with inflows for Solana: There is mention of an ETF (Exchange-Traded Fund) that has seen inflows for Solana, indicating growing interest in the cryptocurrency.\n\n3. Solana's performance compared to Bitcoin: Despite a recent outage, Solana (SOL) has rebounded above $100 and outpaced Bitcoin in terms of performance.\n\n4. Solana's role in DeFi (Decentralized Finance): Solana is highlighted as a shining player in the DeFi realm, indicating its significance in the decentralized finance space.\n\n5. Meme Moguls (MGLS) presale on Solana: The presale of Meme Moguls on Solana is mentioned, hinting at potential high returns and growth opportunities.\n\n6. Bridge from Solana to Injective: A step-by-step guide is shared to seamlessly onboard users from Solana to Injective, a Layer 1 blockchain platform.\n\n7. Solana's usability compared to Ethereum: The message suggests that Solana is preferred over Ethereum for its usability during business hours, implying that Ethereum is more suitable for holding rather than using.\n\n8. Technical analysis of Solana's price movement: The message discusses Solana's price movement, mentioning the formation of an Ascending Triangle pattern and the potential breakout above the $123 resistance level.\n\n9. Low-cap Solana gem: A cryptocurrency called Casinu Inu (CASINU) on Solana is highlighted as a low-cap gem, indicating it may have potential for growth.\n\n10. Asvoria on Solana presale: The presale of Asvoria (ASVORIA) on Solana is mentioned, emphasizing its hype and the presence of a doxxed team.\n\nOverall, the messages from Twitter highlight various aspects of Solana's performance, partnerships, and investment opportunities within the crypto industry.", - data: [ - 3, 4, 0, 3, 0, 0, 1, 4, 2, 3, 4, 2, 0, 3, 2, 1, 3, 5, 2, 6, 0, 4, 0, 1, 4, 4, 5, 2, 7, 5, 8, - 7, 1, 2, 3, 6, 2, 5, 8, 0, 6, 4, 2, 6, 14, 2, 4, 1, 2, 2, 4, 8, 0, 3, 0, - ], - }, - { - label: 'Mining', - topics: 'mining,miners,energy,miner,texas', - description: - 'Based on the given messages from Twitter, the key topics currently discussed in the crypto industry are:\n\n1. Bitcoin mining: There are mentions of countries starting to mine Bitcoin, such as the mention of another country starting Bitcoin mining. The importance of seeking out the cheapest energy source, particularly renewable sources, for Bitcoin mining is also highlighted. Additionally, there is a mention of Hut 8, a Bitcoin miner, replacing its CEO after a critical report was released.\n\n2. Bitcoin mining efficiency: The discussion includes the role of miners in expanding the money supply and the absence of an inflation mechanism in Nano. There is also a mention of the lessons learned by Bitcoin miners, emphasizing the importance of being the best in class and the negative impact of blind diversification.\n\n3. Crypto mining advancements: The introduction of the EZ 1-Click Miner by Safex is mentioned, along with the invitation for ideas and feedback from the community. There is also a reference to a YouTube channel dedicated to Bitcoin mining news and shorts.\n\n4. Bitcoin mining events: The announcement of a Bitcoin Mining expo in Miami in 2024 is highlighted, inviting people to join the event. \n\n5. Bitcoin mining in different countries: The discussion includes a reference to the top 5 countries leading in Bitcoin mining and their impact on the crypto world.\n\n6. Environmental impact of mining: The mention of Utah and its resemblance to Dune, a science fiction novel, brings attention to the use of evaporation pools by mineral companies and a proposed bill to change their business practices.\n\nOverall, the key topics discussed in the given messages revolve around Bitcoin mining, its efficiency, advancements, events, global impact, and environmental considerations.', - data: [ - 3, 5, 3, 3, 6, 19, 3, 1, 2, 3, 4, 3, 3, 0, 3, 4, 3, 1, 0, 2, 3, 3, 7, 3, 1, 1, 2, 2, 2, 1, - 4, 0, 14, 1, 6, 1, 2, 2, 1, 2, 4, 1, 2, 4, 1, 3, 1, 3, 3, 1, 2, 1, 0, 6, 3, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The key topics discussed in the given messages from Twitter are:\n\n1. Memecoins: The messages mention several memecoins such as $MEME, $FLOKI, $DOGE, $PEPE, $WELSH, $BYTE, $KISHU, $SHIB, $SHINJA, $KIBA, $BabyDoge, $AirCoin, $Crogecoin, $CheemsInu, $FegToken, $SAFEMOON, and #memecoin. The discussion revolves around the relevance, future, and price predictions of these memecoins.\n\n2. Memeseason: The return of #Memeseason is anticipated and considered delightful by the community. This suggests a period of increased activity and interest in memecoins.\n\n3. Meme movement: Newbies entering the crypto industry through the meme movement are mentioned. This indicates the influence of memecoins in attracting newcomers to the market.\n\n4. Memecoin performance: The messages highlight the volatility and cyclical nature of memecoins. They mention that every memecoin has its big moment followed by a crash and burn. This suggests caution and the need to avoid outsmarting oneself.\n\n5. Influencers and partnerships: The involvement of influential figures like Elon Musk and TRON founder Justin Sun in memecoins is mentioned. The messages also discuss the potential of $BYTE, a memecoin built on @Stacks, to go up forever. This indicates the impact of influencers and partnerships on memecoin performance.\n\n6. Top memecoins: The messages mention Shiba Inu (SHIB), Dogecoin (DOGE), and Meme Moguls (MGLS) as top memecoins not to miss in Q1, 2024. This suggests a focus on these specific memecoins for potential investment opportunities.\n\n7. Miscellaneous: The messages include unrelated content such as a fictional story about a meme named Kevin and a book from 1985. These may not be directly related to the crypto industry or memecoins.\n\nOverall, the key topics discussed in the given messages revolve around memecoins, their performance, influencers, partnerships, and potential investment opportunities.', - data: [ - 3, 2, 5, 2, 0, 0, 2, 4, 5, 1, 0, 4, 0, 1, 0, 4, 0, 0, 5, 3, 1, 0, 11, 3, 2, 2, 2, 1, 1, 4, - 4, 1, 30, 4, 4, 1, 4, 1, 3, 3, 1, 3, 2, 3, 5, 2, 3, 6, 3, 0, 4, 1, 3, 2, 3, - ], - }, - { - label: "Bitcoin's marketcap", - topics: 'trillion,cap,1t,market,capitalization', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Bitcoin's Market Cap: The messages highlight the fact that Bitcoin has officially reclaimed a $1 trillion market cap. There is a sentiment that Bitcoin should have a much higher market cap, potentially reaching $25+ trillion. The significance of Bitcoin surpassing the $1 trillion mark is emphasized, and it is mentioned that Bitcoin's market cap under $10 trillion is considered low.\n\n2. Bitcoin's Performance: The messages mention that Bitcoin has shattered the $1 trillion market cap barrier and has reached a two-year high. The surge in Bitcoin's price is highlighted, with mentions of it surpassing $52,000. The positive performance of Bitcoin is seen as a reason for celebration and excitement.\n\n3. Altcoins and Total Market Cap: The messages discuss the concept of \"TOTAL2,\" which represents the market cap of all altcoins except Bitcoin. There is a suggestion that altcoins are not as significant as Bitcoin, and the focus is on Bitcoin's market cap reaching milestones.\n\n4. Precious Metals and Bitcoin: One message mentions that the market cap of precious metals will flow into Bitcoin. The idea is that Bitcoin will attract investment from traditional assets like precious metals, leading to a significant increase in its market cap.\n\n5. Bitcoin's Potential and Future: There are mentions of Bitcoin's potential growth and its future prospects. The messages suggest that Bitcoin's market cap could climb to $1 trillion by the 4th halving and that significant events are about to happen in the crypto space. There is also a mention of studying Bitcoin and its unique characteristics.\n\n6. Trust and Trading: The messages touch on the importance of trust in the crypto industry. There is a caution against trusting individuals who claim to be better traders and a suggestion to follow Bitcoin cycles for buying and selling decisions. The idea that successful traders may not disclose their losses is also mentioned.\n\nOverall, the key topics discussed in the messages revolve around Bitcoin's market cap, its performance, comparisons with other assets, its potential growth, and the importance of trust in the crypto industry.", - data: [ - 1, 0, 0, 8, 26, 8, 8, 3, 0, 1, 0, 2, 3, 0, 3, 0, 0, 0, 1, 1, 0, 1, 0, 1, 8, 0, 4, 0, 1, 0, - 0, 10, 1, 3, 1, 3, 3, 2, 3, 3, 9, 3, 1, 2, 3, 0, 11, 4, 1, 7, 0, 1, 1, 0, 3, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,mobile,gamefi', - description: - 'The key topics discussed in the given messages from Twitter are:\n\n1. Gaming Coins: There is a mention of "gaming coins ripping" and the desire to earn Ethereum (ETH) while playing video games. The mention of gaming tokens and NFTs suggests that the gaming sector is driving the play-to-earn (P2E) trend.\n\n2. Metaverse Games: The mention of the "Best #Metaverse Games list for 2024" indicates an interest in virtual worlds and immersive gaming experiences.\n\n3. Blockchain Gaming: The involvement of companies like Amazon and Solana Labs in blockchain gaming is highlighted, emphasizing the real-world impact and investment surge in this sector.\n\n4. Crypto Projects: The mention of BRC-20/Ordinals and ecosystem crypto projects suggests an interest in exploring and investing in various cryptocurrency projects related to gaming.\n\n5. Fantasy Sports and Web3: The intersection of Web3 (decentralized web) and sports, particularly fantasy sports, is seen as having significant growth potential. The mention of Samurai Starter and FullSetSports indicates an interest in innovative fantasy sports game modes.\n\n6. Illuvium and BLOCKLORDS: Updates and developments related to Illuvium (ILV) and BLOCKLORDS (LRDS) are mentioned, including the release of a medieval MMO strategy game and a GameDrop event rewarding players with in-game tokens.\n\n7. Merit Circle DAO: The mention of Merit Circle DAO\'s breakdown of major news in Q4 of 2023 suggests an interest in staying updated on gaming-related developments.\n\n8. Aether Games: The anticipation of Aether Games\' launch and its fusion of old-school and new-age gaming with blockchain technology is mentioned.\n\n9. MaviaGame and ParallelTCG: The mention of these games and the observation that their prices are going up due to genuine player enjoyment suggests a connection between game popularity and price increase.\n\n10. DobutsuNFTs and Nurorealm: The existence of DobutsuNFTs and its collaboration with Nurorealm for the development of a video game is mentioned.\n\n11. Mass Adoption of Gaming in Crypto: The belief that gaming is a perfect fit for cryptocurrency and likely to be one of the first areas to achieve mass adoption is expressed. Several cryptocurrency projects related to gaming are mentioned as owned or being considered for investment.\n\n12. MagicVerse and MagicCraft: The introduction of MagicVerse, a Web3 gaming universe powered by the native token MCRT, and the upcoming game releases of MagicCraft are mentioned.', - data: [ - 1, 2, 4, 2, 0, 0, 7, 1, 2, 2, 4, 1, 3, 0, 1, 1, 1, 3, 3, 2, 29, 1, 5, 0, 0, 2, 2, 4, 3, 4, - 4, 2, 3, 4, 6, 2, 2, 3, 2, 1, 2, 1, 1, 2, 4, 1, 1, 3, 1, 0, 2, 6, 1, 0, 2, - ], - }, - { - label: 'Blackrock and Fidelity ETFs', - topics: 'blackrock,fidelity,ibit,etf,aum', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. BlackRock's consideration of increasing Bitcoin holdings: BlackRock, a prominent investment management company, is reportedly considering increasing its holdings of Bitcoin. This news suggests a bullish sentiment towards Bitcoin.\n\n2. BlackRock's spot Bitcoin ETF: BlackRock's spot Bitcoin ETF has seen a significant increase in daily trading volume, reaching its highest level to date. This indicates growing interest and participation in Bitcoin trading through BlackRock's ETF.\n\n3. BlackRock and Fidelity's Bitcoin ETFs: Both BlackRock and Fidelity have accumulated a substantial amount of Bitcoin for their respective spot Bitcoin ETFs. The combined assets under management (AUM) of these ETFs have surpassed $3 billion each since their launch.\n\n4. Profitability of BlackRock's Bitcoin ETF buyers: All the buyers of BlackRock's Bitcoin ETF are now in profit, highlighting the positive returns and potential gains associated with investing in Bitcoin.\n\n5. BlackRock's plans to buy Bitcoin over the next few years: BlackRock's Chief Investment Officer (CIO) has stated that the company intends to continue adding Bitcoin to its investment portfolio gradually over the next few years. This indicates a long-term bullish outlook on Bitcoin.\n\n6. Dominance of BlackRock and Fidelity's Bitcoin ETFs: BlackRock and Fidelity's spot Bitcoin ETFs have dominated the top 25 ETFs by assets just one month after their launch. This demonstrates the strong demand and popularity of these ETFs in the market.\n\n7. BlackRock and Fidelity's Bitcoin ETFs making history: Both BlackRock and Fidelity's Bitcoin ETFs have achieved a monumental milestone by securing over $3 billion each in their debut month. This sets a new record for ETF launches in the U.S. over the last 30 years and highlights the increasing mainstream acceptance of Bitcoin.\n\nOverall, the key topics revolve around BlackRock's involvement in the crypto industry, particularly its consideration of increasing Bitcoin holdings and the success of its spot Bitcoin ETF. The significant accumulation of Bitcoin by BlackRock and Fidelity for their respective ETFs also indicates growing institutional interest in cryptocurrencies.", - data: [ - 6, 4, 1, 1, 1, 0, 31, 0, 3, 0, 3, 1, 1, 2, 0, 0, 15, 1, 2, 0, 0, 1, 0, 0, 9, 10, 3, 2, 2, 1, - 1, 1, 3, 0, 2, 1, 2, 0, 3, 1, 1, 1, 1, 0, 3, 0, 4, 0, 2, 1, 1, 2, 0, 0, 1, - ], - }, - { - label: 'Shiba Inu', - topics: 'shiba,inu,shib,burn,memecoin', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Shiba Inu (SHIB): The messages mention various updates and developments related to Shiba Inu, including the unveiling of the Shib Magazine's latest edition, the surge in active addresses by nearly 30%, the significant price surge of 1,708% driven by whale activities, the potential deletion of one zero in the price, and the milestone of the Shiba Inu community reaching 4,000 members.\n\n2. Crypto Pandoshi (PAMBO): Analysts predict that the newly launched cryptocurrency, Crypto Pandoshi (PAMBO), will reach $5 upon exchange listings.\n\n3. Shiba Inu Team: The Shiba Inu team is highlighted for successfully trading on 130 exchanges without paying any listing fees.\n\n4. Shiba Inu Price: The messages mention the price of Shiba Inu skyrocketing by 340% on-chain and the expectation of the price erasing one zero.\n\n5. Shiba Inu Ecosystem: The messages indicate renewed excitement in the Shiba Inu ecosystem due to rising whale activities and surging daily transactions, potentially leading to new highs in the cryptocurrency's value.\n\n6. TiFiToken: The TiFiToken team has chosen the Baby Doge Token Locker to lock a significant amount of TiFi tokens for one year.\n\n7. ShibaSaga (SHIA): The messages introduce ShibaSaga as an innovative gaming and crypto platform with a market cap of around 3 million. It features rebranded versions of popular games like Angry Birds, Temple Run, and Fruit Ninja, all interconnected with an on-chain system.\n\n8. Shibwifhat: Shibwifhat is mentioned as the next potential meme coin on Solana, with BitMart planning to list it soon.\n\n9. DejitaruTsuka: DejitaruTsuka is being advertised on a prominent China-centric coin index, indicating its growing presence in the Chinese community.\n\n10. Year of the Dragon: The messages reference the Year of the Dragon and its significance for cryptocurrencies like Tsuka and Shiba Inu.\n\nOverall, the key topics revolve around updates, price movements, new launches, and community milestones in the Shiba Inu ecosystem, as well as the introduction of other cryptocurrencies and their developments.", - data: [ - 2, 1, 0, 1, 0, 0, 3, 2, 6, 1, 3, 2, 0, 1, 3, 3, 1, 4, 0, 2, 1, 0, 0, 0, 2, 0, 34, 2, 2, 3, - 2, 1, 1, 3, 2, 0, 0, 2, 3, 1, 0, 2, 2, 19, 1, 2, 1, 2, 0, 0, 0, 2, 2, 1, 2, - ], - }, - { - label: 'ERC404', - topics: 'erc404,404,standard,erc20,tokens', - description: - 'The key topics discussed in the given messages from Twitter are as follows:\n\n1. ERC-404: The messages mention the ERC-404 token, which is a hybrid token standard merging ERC20 and ERC721 tokens on the Ethereum blockchain. It is described as having the liquidity of an ERC20 token while also being an NFT. There is debate and controversy within the Ethereum community regarding the safety and legitimacy of ERC-404 tokens.\n\n2. NFTs: Non-Fungible Tokens (NFTs) are mentioned in relation to the ERC-404 token. The messages highlight the potential benefits of ERC-404 tokens for investors, as they provide exposure to the NFT world while also offering liquidity and ease of trading associated with ERC-20 tokens.\n\n3. Pandora ERC-404: The messages mention the Pandora ERC-404 token, which has experienced a surge in trading volume since its deployment. The token is described as an experimental hybrid token based on the ERC404 standard.\n\n4. Liquidity and Trading: The messages emphasize the liquidity and ease of trading associated with ERC-20 tokens and how this is beneficial for investors.\n\n5. Chinese New Year Celebration: The messages mention a celebration of Chinese New Year with the reimagining of the Hong Bao tradition using digital art and blockchain technology.\n\n6. Router Protocol Collaboration: The messages highlight a collaboration between Router Protocol and Manta Ray, where the first ERC404 Hybrid token/NFT was created on Manta Network. This collaboration allows users to trade $RAY across multiple chains.\n\n7. Investment Opportunities: Despite the volatile market and recent drop in value, the messages mention strategic investments in ERC-404 tokens that have resulted in significant returns.\n\n8. Ethereum Politics and Approval: The messages mention that Ethereum Politics is required for an official "Approval" of ERC-404. This is seen as uncertain and may lead to the emergence of a new narrative.\n\n9. Scammers and Ruggers: The messages warn about scammers and serial ruggers infiltrating the 404 meta, referring to individuals who engage in fraudulent activities in the crypto industry.\n\nOverall, the key topics discussed in the given messages revolve around the ERC-404 token, NFTs, liquidity and trading, investment opportunities, collaborations, and concerns about safety and legitimacy.', - data: [ - 1, 1, 3, 0, 0, 0, 2, 0, 0, 2, 4, 3, 2, 1, 6, 1, 19, 2, 0, 2, 1, 1, 2, 0, 0, 3, 3, 1, 3, 2, - 1, 2, 3, 5, 7, 4, 0, 2, 3, 3, 3, 1, 3, 0, 2, 0, 6, 3, 1, 8, 1, 1, 0, 4, 0, - ], - }, - { - label: 'Ethereum', - topics: 'ethereum,eth,3000,prediction,resistance', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry, specifically Ethereum ($ETH), are as follows:\n\n1. Price Levels: The messages mention the current and potential future price levels for Ethereum. It is stated that the first pit stop is at $2800, and if possible, the next target is $3200. There is also a mention of Ethereum reaching $17500 in 2024/2025.\n\n2. Price Pumping: The messages highlight that the price of Ethereum is pumping as planned, indicating a positive trend in its value.\n\n3. Community Involvement: The messages mention a shared plan with the community, indicating active participation and collaboration within the Ethereum community.\n\n4. Price Predictions: There is a prediction that if Ethereum closes above $2485 on the weekly chart, it will see a price of $3585. Additionally, there is a mention of how once Ethereum hits $10K, it will lead to significant wealth for investors.\n\n5. Buying Opportunity: It is suggested that the current price range of $2600-$2800 for Ethereum is a good time to buy more before the week starts, implying a potential price increase.\n\n6. Franklin Templeton ETF Application: The messages mention that Franklin Templeton has applied for a spot Ethereum ETF, which could potentially lead to a rally in Ethereum's price, with a target of $3500.\n\n7. Ethereum Network Strength: The messages highlight the strength of the Ethereum network and attribute its rally to macroeconomic factors. It is also mentioned that Ethereum is almost halfway through its upside move.\n\n8. Altcoin Mention: The altcoin ENS (Ethereum Name Service) is mentioned as one of the strongest altcoins, with a potential price target of $30 if Bitcoin and Ethereum bounce.\n\n9. Proto Danksharding: The messages discuss the need for Proto Danksharding on the Ethereum network to increase scalability and reduce costs. It is mentioned that a simple swap on Ethereum currently costs $400, which is a significant portion of the net monthly salary in the UK.\n\n10. Bullish Case for Ethereum: The messages present a bullish case for Ethereum in 2024, citing various factors such as upcoming EIPs (Ethereum Improvement Proposals), building on-chain social media, ERC20+ERC721 combo, potential ETH ETF by BlackRock, Wallstreet interest, partnership with GoDaddy, and the launch of multiple Layer 2 solutions.\n\nOverall, the messages reflect discussions about Ethereum's price levels, community involvement, price predictions, buying opportunities, ETF applications, network strength, altcoin performance, scalability solutions, and a bullish outlook for Ethereum in the future.", - data: [ - 2, 3, 1, 0, 0, 0, 0, 3, 1, 1, 2, 0, 1, 0, 1, 1, 44, 3, 4, 1, 2, 0, 2, 2, 7, 1, 1, 0, 1, 0, - 2, 1, 2, 3, 1, 0, 1, 3, 4, 2, 3, 0, 1, 2, 2, 2, 4, 2, 4, 2, 0, 1, 0, 1, 0, - ], - }, - { - label: 'Gary Gensler', - topics: 'gensler,sec,gary,garygensler,secs', - description: - "The key topics discussed in the given messages from Twitter are as follows:\n\n1. SEC Chair Gary Gensler's focus on cybersecurity obligations: Gensler emphasizes the seriousness of cybersecurity obligations and addresses security breaches in the crypto industry.\n\n2. Concerns about Chinese government influence on Ethereum: Former Ethereum advisor Steven Nerayoff raises concerns about potential Chinese government influence on the Ethereum platform.\n\n3. Gensler's stance on Bitcoin and Ethereum ETFs: Gensler refuses to commit to approving Ethereum ETFs but considers the approval of Bitcoin ETFs as the most sustainable decision after losing in court.\n\n4. Comparison of crypto to fiat fraud: Former SEC Internet Enforcement Chief John Reed Stark challenges assertions that minimize cyber-related offenses in the crypto industry, arguing that comparing it to fiat fraud is misleading.\n\n5. Allegations against Gensler's ties with Ethereum: Steven Nerayoff hints at undisclosed deep ties between Gensler and Ethereum, suggesting potential influence by external political forces.\n\n6. Logically incoherent position on Bitcoin: Gensler is criticized for being in a logically incoherent position regarding Bitcoin, as its facts and circumstances are not dissimilar from many other tokens.\n\n7. Prominent crypto attorney contemplating Senate run: John Deaton, founder of Crypto Law and a prominent attorney in the SEC vs Ripple lawsuit, is reportedly considering running as a Republican in the 2024 Senate race against Elizabeth Warren.\n\n8. Gensler's warnings about Bitcoin's role in ransomware: Gensler warns about Bitcoin's leading market share for ransomware attacks and advocates for centralized money.\n\n9. Bitcoin labeled as the \"token of choice for ransomware\": Gensler labels Bitcoin as the preferred token for ransomware and highlights speculative investing as one of its attractive use cases.\n\n10. Speculation about Gensler's future after the 2024 presidential election: There is speculation about whether Gensler will be removed or leave his position as SEC Chair for a treasury job after the 2024 presidential election.", - data: [ - 0, 3, 4, 1, 1, 2, 3, 3, 3, 10, 2, 2, 2, 8, 0, 1, 2, 0, 1, 1, 5, 1, 2, 2, 1, 3, 1, 1, 3, 1, - 2, 5, 0, 0, 1, 4, 0, 1, 2, 0, 1, 7, 11, 4, 1, 1, 2, 1, 2, 1, 2, 0, 2, 3, 3, - ], - }, - { - label: 'Satoshi', - topics: 'satoshi,trial,court,hes,judge', - description: - "The key topics discussed in the given messages from Twitter are:\n\n1. Craig Wright's credibility: The messages mention Craig Wright, who claims to be the creator of Bitcoin, Satoshi Nakamoto. However, there are doubts about his credibility, with references to him being unable to prove his identity in court and being referred to as \"Faketoshi.\" The COPA trial, where Wright's claims are being examined, is also mentioned.\n\n2. Criticism of Craig Wright: There is criticism of Craig Wright's capabilities and his involvement in the crypto industry. He is compared to Elon Musk's less capable brother and referred to as the \"Fredo Corleone of shitcoining and attention seeking.\" The messages also highlight that some individuals do not believe in his ideas and do not want to participate in his ventures.\n\n3. Testimony and questioning: The messages mention Craig Wright's testimony and tough questioning from COPA and Bitcoin developers during the ongoing trial. It is suggested that the questioning has exposed debts that Wright needs to pay and that the witness has a vested interest in the case's outcome.\n\n4. Inconsistencies in Wright's narrative: The messages refer to inconsistencies in Craig Wright's narrative regarding his claim of being Satoshi Nakamoto. These inconsistencies are highlighted in the context of legal battles related to Bitcoin and the Tulip Trust.\n\n5. Bitcoin's evolution: The messages briefly touch upon the evolution of Bitcoin from its initial purpose of peer-to-peer online coffee purchases to becoming a global monetary settlement network. This evolution is mentioned in the context of Satoshi Nakamoto's original intentions.\n\nOverall, the key topics discussed in the messages revolve around Craig Wright's credibility, criticism of his capabilities, the ongoing COPA trial, questioning of his claims, inconsistencies in his narrative, and the evolution of Bitcoin.", - data: [ - 2, 2, 0, 4, 2, 0, 1, 2, 4, 1, 7, 11, 1, 0, 1, 2, 1, 7, 0, 1, 2, 1, 4, 1, 1, 4, 0, 4, 5, 4, - 0, 0, 4, 2, 3, 3, 0, 0, 3, 0, 1, 0, 1, 4, 0, 2, 1, 4, 0, 3, 5, 0, 1, 3, 6, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,ripples,mln,whale', - description: - "The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. Bitcoin (BTC): There is a mention of Bitcoin holders wanting to swap to XRP. The price rally and surge in on-chain activity of Bitcoin are also highlighted.\n\n2. XRP: The messages mention the bullish run of XRP, with the price reaching $1.88. Integration news with $FLR and the potential for a major leap in price are also discussed.\n\n3. Ripple: The messages mention Ripple's CBDC game plan and its resistance fail. The potential impact of a whale's dump on Ripple's future is also highlighted.\n\n4. Crypto Market: The overall cryptocurrency market is discussed, with mentions of bullish turn signals, technical indicators, and key levels to watch for XRP.\n\n5. Crypto News: The messages mention various news articles and updates related to the crypto industry, including the launch of Pushd's presale and the rebound of $FLR.\n\n6. Investing: The messages highlight the positive market activity and continued growth in the crypto industry, indicating potential investment opportunities.\n\n7. Technical Analysis: The messages mention technical indicators such as the weekly bullish engulfing candle and the breakdown of stochastic RSI.\n\nOverall, the key topics discussed in the given messages revolve around Bitcoin, XRP, Ripple, the crypto market, crypto news, investing, and technical analysis.", - data: [ - 2, 3, 1, 1, 0, 0, 1, 2, 3, 2, 1, 2, 5, 0, 2, 2, 0, 10, 3, 1, 0, 1, 0, 1, 5, 0, 3, 1, 1, 0, - 1, 3, 0, 4, 1, 2, 0, 3, 9, 2, 2, 9, 2, 3, 0, 2, 2, 0, 0, 4, 1, 2, 4, 5, 0, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collection,announces,digitalassets', - description: - 'The key topics discussed in the given messages from Twitter about the crypto industry are:\n\n1. NFT Projects: There is mention of various NFT projects, including historic NFTs, MadCock NFT, PFP NFT projects, and the first artwork to be fractionalized. The messages also highlight the minting of a large number of NFTs in a short time.\n\n2. NFT Utility: The importance of NFT utility is discussed, with a focus on community activations, social media exposure, engagement, and airdrops. The messages suggest that these aspects contribute to the value of an NFT.\n\n3. NFT Market Tips: Expert tips for success in the NFT market are mentioned, targeting artists, collectors, and enthusiasts. These tips are seen as strategies to unlock the potential of the NFT market.\n\n4. City of NILE Series: The City of NILE series is introduced as a collectible symbolizing harmony, life, and rebirth. An auction for City of NEPHTHYS NFTs is announced, and the future of NFTFi is mentioned.\n\n5. Hotspot NFTs: A cautionary message is shared about being cautious with unexpected NFTs in wallets, as they could be scams. Specifically, the reminder is given for Helium Hotspots onboarded as compressed NFTs on the Solana blockchain.\n\nOverall, the messages reflect the excitement and hype surrounding NFTs, with discussions about various projects, utility, market tips, and cautionary reminders.', - data: [ - 2, 7, 3, 1, 0, 0, 1, 1, 2, 1, 0, 2, 0, 0, 1, 7, 1, 1, 5, 1, 2, 1, 3, 1, 2, 1, 0, 1, 2, 1, 3, - 1, 4, 2, 8, 1, 2, 4, 3, 4, 1, 1, 3, 1, 1, 2, 2, 1, 0, 1, 4, 2, 2, 0, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-60.json b/priv/repo/major_topics_seed/data-60.json deleted file mode 100644 index a76f9fee59..0000000000 --- a/priv/repo/major_topics_seed/data-60.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["20.02.25","21.02.25","21.02.25","21.02.25","21.02.25","21.02.25","21.02.25","21.02.25","22.02.25","22.02.25","22.02.25","22.02.25","22.02.25","22.02.25","22.02.25","22.02.25","23.02.25","23.02.25","23.02.25","23.02.25","23.02.25","23.02.25","23.02.25","23.02.25","24.02.25","24.02.25","24.02.25","24.02.25","24.02.25","24.02.25","24.02.25","24.02.25","25.02.25","25.02.25","25.02.25","25.02.25","25.02.25","25.02.25","25.02.25","25.02.25","26.02.25","26.02.25","26.02.25","26.02.25","26.02.25","26.02.25","26.02.25","26.02.25","27.02.25","27.02.25","27.02.25","27.02.25","27.02.25","27.02.25","27.02.25"],"datasets":[{"label":"BTC Price","topics":"btc,range,90k,bitcoin,100k","description":"The key topic discussed in the messages from Twitter is the current price movement of Bitcoin ($BTC). Traders and analysts are expressing concern over the recent drop in price below $88K and the potential for further downside. Some are predicting a possible drop to $78K to close a CME gap, while others are noting the low volatility and undervalued conditions of Bitcoin. On-chain signals and technical indicators are also being closely monitored, with some suggesting a bearish outlook if certain support levels are breached. Overall, there is a sense of caution and uncertainty surrounding the future direction of Bitcoin's price.","data":[10,4,8,16,100,86,28,47,9,9,12,27,13,31,13,40,7,9,31,16,12,25,6,25,22,14,4,8,15,29,31,12,9,18,10,14,24,35,17,22,15,10,11,25,7,22,20,25,16,20,12,11,22,6,12]},{"label":"BTC","topics":"bitcoin,money,fiat,understand,currency","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Bitcoin Central Bank issues\n2. Peer-to-peer, non-state money effectiveness\n3. Kamala Harris\n4. Bitcoin class and its origins\n5. Energy and climate issues related to Bitcoin\n6. Bull Flag Target\n7. Trading lemonade for Bitcoin\n8. Litecoin halving\n9. Bitcoin ownership and design\n10. Bitcoin's strong persistence\n11. Physics of Bitcoin\n12. Quantum computing and Bitcoin\n13. Crypto games and wallets\n14. Mainframe Blockchain\n\nThese topics reflect a diverse range of discussions and opinions within the crypto community on Twitter.","data":[18,8,11,22,122,58,10,19,7,16,16,20,14,10,11,14,24,16,16,22,12,13,12,12,10,21,20,15,14,13,13,11,10,20,22,9,23,16,11,19,23,18,19,17,19,18,28,21,17,12,10,11,21,11,15]},{"label":"AI","topics":"ai,agents,agent,models,data","description":"The key topics discussed in the messages from twitter are:\n1. The advancement of AI technology in various industries, including healthcare and therapy.\n2. The potential impact of AI on human decision-making and autonomy.\n3. The integration of AI in the crypto industry, with mentions of AI agents and frameworks.\n4. Opportunities for developers and entrepreneurs in the AI and crypto space, with mentions of mentorship and funding.\n5. Discussions on the future role of AI in society, including its potential to outperform professionals in various fields.\n6. Specific projects and platforms related to AI and crypto, such as Zearn and Alith.\n7. Events and conferences focused on AI and its applications, such as DeAI Day.\n8. Investment opportunities in AI-related projects, such as the Cheap AI gem on Kucoin.\nOverall, the messages reflect a growing interest and excitement around the intersection of AI and the crypto industry, as well as the potential implications of AI technology on society.","data":[40,138,32,8,2,6,1,19,2,18,12,23,17,15,10,10,12,14,11,6,26,11,8,13,10,19,19,17,12,13,17,11,12,14,19,15,12,16,21,20,14,16,20,14,14,13,17,16,6,10,21,13,13,7,16]},{"label":"Bybit","topics":"bybit,hack,withdrawals,funds,14b","description":"The key topics discussed in the messages from twitter about the Bybit hack include:\n1. Alleged hack on Bybit\n2. Bybit unveiling a bounty platform to tackle crypto crime\n3. Identification of the group responsible for the Bybit hack\n4. Bybit losing $1.5B to hackers despite using self-custody with multisig cold wallet\n5. Bybit launching a $140m bounty to track down the crypto heist\n6. Bybit restoring withdrawals after the historic hack\n7. Bybit hacker laundering $250M in ETH\n8. Bybit seeing $1.7B in withdrawals, about 11% of their assets\n9. Ex-Bybit payroll manager jailed for stealing $4.2M in crypto\n\nOverall, the messages highlight the security vulnerabilities in the crypto industry, particularly with exchanges like Bybit, and the ongoing efforts to address and recover from such incidents.","data":[13,2,3,10,5,3,14,4,262,11,5,13,5,5,12,7,6,19,8,11,10,12,54,22,11,22,3,16,4,16,10,11,3,11,10,11,6,16,2,20,15,21,5,13,6,17,16,13,6,6,21,9,9,3,17]},{"label":"ETH","topics":"ethereum,eth,range,classic,resistance","description":"The key topics currently discussed in the messages from twitter about Ethereum (ETH) include:\n1. The scarcity of ETH as an asset\n2. Achieving decentralization in Ethereum\n3. Speculation on potential catalysts for ETH price movement\n4. Positive sentiment towards ETH as a long-term investment\n5. Concerns about the amount of FUD (Fear, Uncertainty, Doubt) and division surrounding Ethereum\n6. Analysis of technical indicators and potential price movements for ETH\n7. Comparison of ETH to other altcoins and the perception of safety in investments\n8. Market uncertainty and potential rise in ETH price despite recent drops\n9. Speculation on a rally to $3,000 and potential returns on investment in ETH\n10. Mention of a short squeeze potentially sparking further growth in ETH price.","data":[16,5,10,15,2,2,7,14,5,3,14,9,7,9,5,5,89,59,11,14,9,10,7,12,20,6,10,4,14,24,11,4,9,10,10,7,5,18,12,8,11,9,11,9,11,10,13,11,6,5,9,6,10,7,9]},{"label":"SEC","topics":"sec,investigation,case,uniswap,coinbase","description":"The key topic discussed in the messages from twitter is the SEC dropping cases against various crypto companies, including Coinbase, OpenSea, and Uniswap. This news has been met with excitement and relief by the crypto community, as it marks a significant win for these companies. Additionally, there is mention of the SEC launching a Cyber and Emerging Technologies Unit to fight blockchain fraud, showing a continued focus on regulating the crypto industry. Overall, the sentiment in the messages is positive, with many celebrating the resolution of these cases.","data":[24,4,8,7,1,2,57,7,1,11,37,13,6,4,14,67,27,6,4,12,4,7,9,7,11,4,7,25,4,4,6,10,4,14,18,3,7,7,7,11,26,11,5,6,8,2,4,5,5,0,19,6,5,8,2]},{"label":"Memecoins","topics":"meme,memecoin,coins,memes,memecoins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, memecoins like $DOGE and $SHIB, the potential of meme coins, the comparison of meme coins to traditional currencies like bitcoin and the U.S. dollar, the launch of new meme coins, meme coin communities, meme coin investments, meme coin scams, and the growth of meme coin communities. There is also discussion about specific meme coins like $MOST, $UFD, $PEPPER, and the criteria for joining meme coin communities or teams. Additionally, there are mentions of meme coin losses, recovery strategies, and VIP access for discord members and subscribers. Overall, the sentiment towards meme coins seems to be mixed, with some seeing them as a joke while others see potential for growth and investment opportunities.","data":[6,4,3,8,5,4,3,6,3,7,13,7,4,9,9,6,2,8,10,2,11,11,2,4,6,7,10,7,8,12,11,69,25,9,7,3,10,13,8,8,7,9,5,8,9,5,8,9,7,6,6,3,9,3,6]},{"label":"Art","topics":"art,artists,artist,piece,culture","description":"The key topics discussed in the messages from twitter are:\n1. Generative art collections\n2. Bullish sentiment on art\n3. Art exhibitions on OpenSea\n4. Excitement over acquiring art from favorite Web3 artist\n5. Digital paintings by Ilya\n6. Personal connection to art\n7. Digital art galleries with unique features\n8. History-making digital art exhibitions\n9. Grant Yun's art purchases and commissions\n10. NFT editions of art pieces","data":[5,7,73,4,1,1,2,3,2,3,12,4,10,7,7,3,6,6,10,8,3,8,12,4,5,10,3,6,13,9,15,2,4,7,6,11,9,4,6,6,8,2,11,2,7,2,9,6,11,3,3,5,8,2,9]},{"label":"GameFi","topics":"gaming,game,games,play,web3","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- The future of gaming industry and the potential impact of Layer 3 gaming-focused platforms like @G7_DAO\n- The integration of Game-First NFTs in games, offering exclusive perks and real player ownership\n- The complexity of Web3 for gamers and the simplification of asset ownership and transactions through GAIMIN's Smart Wallet (GSW)\n- The return of popular games like 'Hamster Kombat' and the launch of new seasons\n- The dominance of the gaming industry compared to movies and music, with a focus on centralized giants\n- Collaborations between gaming studios and infra ecosystems to push boundaries in AI-driven gaming and digital entertainment\n- The introduction of the #Free2Earn Leaderboard on the NAKA Mobile App, allowing players to earn rewards with zero investment\n\nOverall, the discussions on Twitter highlight the growing intersection between the gaming industry and the crypto space, with a focus on innovation, community engagement, and potential earnings for players.","data":[3,1,1,4,0,4,2,1,1,6,3,6,5,0,3,1,5,6,10,5,62,10,1,5,0,6,8,7,10,0,6,13,0,4,4,7,28,6,3,6,2,3,5,3,3,4,4,5,5,2,6,4,6,1,4]},{"label":"DeFi","topics":"defi,defai,lending,finance,future","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. DeFi Renaissance: There is a discussion about the resurgence of decentralized finance (DeFi) and the potential it holds for the future of finance. Users are excited about the growth and opportunities in the DeFi space.\n\n2. New Projects and Platforms: Various new projects and platforms are being introduced in the DeFi space, such as Rhea Finance, Injective, and Linear Finance. These projects aim to revolutionize asset ownership, yield opportunities, and AI-driven innovation in DeFi.\n\n3. Regulatory Environment: The dismissal of a case against Coinbase by the SEC with zero fines and no business changes is seen as a significant win for DeFi. This event is seen as setting a precedent for the legitimacy and future of DeFi projects.\n\n4. DeFi Indices: The discussion also includes the Kaiko Indices DeFi Index, which consists of eleven assets from the decentralized finance sector. Analysts are discussing the unique drivers of each asset and the potential impact on the DeFi market.\n\n5. Developer Activity: There is a focus on the developer community in the crypto industry, with discussions on the number of open-source developers working in crypto, the chains attracting new developers, and the geographical distribution of developers. \n\n6. Risks and Challenges: There are discussions on the potential risks and challenges in the DeFi space, including the complexity of DeFi structures and the possibility of reintroducing centralized structures that could lead to financial crises similar to the 2008 crisis.\n\nOverall, the sentiment in the crypto industry on social media platforms is optimistic about the growth and potential of DeFi, while also acknowledging the need to address risks and challenges in the space.","data":[6,3,6,4,1,2,3,5,0,7,8,3,5,20,10,3,6,8,1,2,7,0,7,1,9,11,10,4,6,3,5,9,5,6,1,15,3,4,8,13,5,3,6,7,4,3,3,6,3,6,7,3,5,1,6]},{"label":"Stablecoins","topics":"stablecoin,stablecoins,tether,america,bank","description":"The key topics discussed in the messages from twitter are:\n1. Tether being centralized and the recommendation not to cash out bitcoin in Tether\n2. Singapore’s Metro department store accepting stablecoin payments in $USDT, $USDC, and more\n3. New all-time high for $USDG supply on Ethereum\n4. Crypto.com and Kraken considering launching their own stablecoins in Europe\n5. RAI being the only non-fiat algorithmic stablecoin\n6. The approval of USDC and EURC as recognized tokens by the DFSA\n7. USDC being widely used and accepted for hotel bookings worldwide\n8. Kraken exploring the launch of its own USD-pegged stablecoin\n9. Wanchain's $PYUSD stablecoin bridge connecting Cardano and Solana\n10. Stablecoin dominance trending higher and potential implications for market liquidity on Tron and Solana\n\nOverall, the messages highlight the growing adoption and development of stablecoins in the crypto industry, as well as regulatory approvals and potential market trends.","data":[3,2,13,9,0,0,7,3,1,4,3,7,5,2,2,8,3,4,2,12,4,5,1,0,2,1,5,12,1,3,5,0,3,3,5,2,3,1,4,8,3,9,1,1,24,4,5,10,4,1,1,19,2,1,5]},{"label":"Kanye West's announcement of launching his own coin","topics":"west,launch,coin,memecoin,launching","description":"The key topics currently being discussed on Twitter regarding the crypto industry are Kanye West's announcement of launching his own coin, the skepticism and criticism surrounding the potential memecoin launch, and the potential impact on the meme market. Some users are expressing doubts about the legitimacy and success of Kanye's coin, while others are planning to take advantage of the situation for personal gain. There is also mention of a potential scam involving insider trading and dumping on unsuspecting investors. Overall, there is a mix of excitement, skepticism, and caution surrounding Kanye West's entry into the crypto world.","data":[10,3,1,1,0,2,6,6,2,5,5,3,4,5,3,5,1,2,2,8,5,5,3,3,3,4,2,14,2,7,6,1,5,6,4,1,4,4,2,4,4,9,10,3,4,2,4,5,7,2,2,2,3,3,23]},{"label":"Safe multisig","topics":"safe,cold,wallet,signing,multisig","description":"The key topics discussed in the messages from Twitter regarding the crypto industry are:\n\n1. Bybit Security Breach: Bybit was not hacked, but there was unauthorized activity involving one of their ETH cold wallets. The incident was due to a compromised Safe multisig website, and Bybit confirms no internal breach after the Safe Wallet hack. Funds are secured, and enhanced custody plans are underway.\n\n2. Safe Wallet Compromise: The breach was attributed to the Lazarus Group breaching Safe via stolen developer machine credentials. Independent audits found Bybit's infrastructure was not directly hacked, but the issue came from Safe, the company responsible for asset security.\n\n3. Bybit Hack Details: The only cold wallet compromised at Bybit was their ETH cold wallet, with approximately $1 billion in ETH stolen. The hacker attacked each multisig signer's device and manipulated the UI to show a different transaction than what was real.\n\n4. Security Measures: Suggestions were made for custodians to switch to local apps or implement more security measures like using specific OS scripts to verify Safe transaction hashes.\n\n5. Lessons Learned: It is essential to double-check Ledger devices before signing any transaction to prevent hacks. Trust matters in the crypto industry, and ensuring safety, speed, and transparency is crucial.\n\n6. Alternative Platforms: Bitgert is highlighted as a platform with zero-fee blockchain and decentralized model to ensure seamless transactions without custodial risks. Vultisig is also mentioned as a promising option in Pure DeFi.\n\nOverall, the messages discuss the importance of security measures, the impact of the Bybit security breach, and the need for trust and transparency in the crypto industry.","data":[5,1,4,6,0,3,7,1,28,2,7,5,1,2,2,0,2,1,1,0,1,4,5,3,3,2,5,4,3,4,2,1,1,2,5,2,0,1,3,3,0,20,4,10,3,2,6,5,2,2,6,3,7,0,5]},{"label":"ETF Flows","topics":"etfs,outflows,net,etf,spot","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Bitcoin ETF daily net flows, with record outflows and inflows being reported\n- Comparison between Bitcoin and Ethereum spot ETFs in terms of net flows\n- Impact of higher interest rates on Bitcoin liquidity and demand for risk assets\n- BlackRock's Bitcoin ETF experiencing a significant single-day outflow\n- Analysis of Bitcoin ETF holdings remaining flat for an extended period\n- Recent updates on Bitcoin ETF daily net outflows, with Fidelity, BlackRock, and Ark & 21Shares leading in outflows\n- Comparison of net flows between Bitcoin and Ethereum spot ETFs over a specific time period\n\nOverall, the discussion seems to be focused on the performance and trends of Bitcoin and Ethereum ETFs, as well as the impact of external factors such as interest rates on the crypto market.","data":[0,0,1,3,12,6,7,0,0,0,2,1,6,7,3,2,22,5,2,2,0,2,0,5,7,6,5,5,4,1,0,3,0,6,2,1,0,0,0,4,3,0,15,2,23,0,1,3,6,3,3,2,4,2,4]},{"label":"ETHDenver","topics":"denver,ethdenver,ethereumdenver,eth,opening","description":"The key topics currently being discussed on Twitter about ETHDenver include:\n- The excitement and anticipation of attending ETHDenver\n- Discussions about the value and worth of attending ETHDenver\n- Mention of specific events and panels happening at ETHDenver\n- Plans and reasons for not attending ETHDenver\n- Excitement about meeting industry leaders and participating in workshops at ETHDenver\n- Mention of specific projects and companies participating in ETHDenver\n- Promotion of events and activities happening at ETHDenver\n- Excitement about the opportunity to connect with the crypto community at ETHDenver\n- Mention of specific individuals and their involvement in ETHDenver\n- Discussions about the overall atmosphere and experience of attending ETHDenver","data":[4,2,9,2,3,0,1,2,1,4,7,1,0,11,6,1,6,4,4,4,3,2,2,10,3,1,6,4,2,3,4,3,6,2,2,7,2,1,2,6,4,4,2,3,6,4,3,1,4,2,1,0,8,4,5]},{"label":"Michael Saylor","topics":"saylor,strategy,michael,microstrategy,holdings","description":"Michael Saylor, a prominent figure in the crypto industry, has been making waves with his strategic buying of Bitcoin. He has been consistently increasing his holdings, with recent acquisitions bringing his total to over 499,000 BTC. Saylor's actions have been closely followed by the community, with some praising his bullish approach while others question his market impact. Despite the debate, Saylor's moves have positioned him as a key player in the industry, with his actions shaping the market and drawing attention from major institutions. His recent purchases have not gone unnoticed, with many speculating on his next moves and the potential impact on Bitcoin's price. Overall, Saylor's strategy and influence in the crypto space continue to be a topic of discussion and interest among investors and enthusiasts alike.","data":[3,2,3,1,2,3,4,5,11,3,3,3,2,2,2,0,1,1,1,3,3,5,0,1,2,3,2,1,1,3,1,3,3,1,0,0,3,3,2,1,1,16,2,3,2,40,1,2,3,2,2,1,2,2,1]},{"label":"BTC is dead","topics":"ponzi,dead,zero,dump,btc","description":"The messages from Twitter regarding the crypto industry are overwhelmingly negative, with a focus on Bitcoin ($BTC) being referred to as a \"horrible\" and \"disgusting\" coin. There are mentions of Bitcoin being a \"ponzi\" and a \"sh*tcoin\", with calls to delist it and predictions of it going to zero. The sentiment towards Bitcoin bulls is also negative, with them being called cowards and criticized for their lack of control in the market. Overall, the tone of the messages is pessimistic and critical towards Bitcoin and the crypto industry in general.","data":[4,1,2,6,4,1,2,3,1,1,1,1,2,29,4,5,2,0,4,3,2,2,0,3,22,1,4,1,2,2,1,1,2,2,1,5,1,0,10,0,2,3,0,7,0,1,2,2,6,2,0,0,1,1,2]},{"label":"XRP","topics":"xrp,ripple,etf,cryptocurrency,ledger","description":"The key topics currently discussed in the crypto industry on Twitter include XRP Ledger planning big upgrades for institutional DeFi, potential price movements for XRP, discussions about an XRP ETF, price predictions for XRP, potential price corrections, and debates about the future performance of XRP. There is also mention of Ripple's rival Stellar (XLM) and its potential price surge or collapse. Additionally, there are discussions about XRP's current price, potential future price targets, and the impact of regulatory decisions on XRP's value.","data":[1,2,5,0,0,0,8,2,1,0,4,2,2,4,2,5,3,3,2,5,2,3,0,1,4,3,1,2,5,2,4,3,2,4,1,4,2,19,1,0,14,2,2,5,2,3,9,1,1,3,2,0,3,2,2]},{"label":"SOL","topics":"sol,solana,unlock,lows,150","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Discussion about the performance of Solana ($SOL) and the need for it to break $200 for a potential price increase\n- Speculation about potential price movements and technical analysis of Solana\n- Criticism of AI tokens on Solana and their lack of real purpose\n- Comparison of Solana's price decrease with other tokens like FARTCOIN\n- Concerns about Solana's plunging price and users/core devs leaving\n- Trading strategies and analysis of Solana's price trends\n- Updates on Solana's price movements and key support levels\n- Trading volume and price changes of Solana in the past 24 hours\n\nOverall, the discussions on twitter reflect a mix of technical analysis, trading strategies, criticism of certain tokens, and concerns about Solana's price movements in the crypto industry.","data":[0,0,2,6,1,1,1,2,0,5,2,1,2,3,3,6,2,3,6,1,0,2,1,3,4,1,0,3,1,2,0,1,2,2,3,6,3,6,5,1,4,2,3,35,3,2,0,5,3,3,4,2,1,4,0]},{"label":"Buy the dip","topics":"dip,buying,buy,dips,bought","description":"The messages from Twitter suggest that there is a lot of discussion about buying the dip in the crypto industry. Some users are expressing their willingness to buy the dip multiple times, while others are cautious and unsure about the right timing to buy. There is also mention of leveraging and the importance of managing trades properly to reduce risk. Overall, the sentiment seems to be mixed with some users being bullish on buying the dip while others are more cautious.","data":[0,0,3,2,1,4,1,35,3,2,3,0,4,2,13,0,3,0,3,1,3,4,4,5,4,1,0,2,1,4,0,0,2,1,3,7,3,2,2,1,3,2,1,4,3,2,2,3,4,3,2,1,1,2,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-60.ts b/priv/repo/major_topics_seed/data-60.ts deleted file mode 100644 index c164a6ff2b..0000000000 --- a/priv/repo/major_topics_seed/data-60.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '20.02.25', - '21.02.25', - '21.02.25', - '21.02.25', - '21.02.25', - '21.02.25', - '21.02.25', - '21.02.25', - '22.02.25', - '22.02.25', - '22.02.25', - '22.02.25', - '22.02.25', - '22.02.25', - '22.02.25', - '22.02.25', - '23.02.25', - '23.02.25', - '23.02.25', - '23.02.25', - '23.02.25', - '23.02.25', - '23.02.25', - '23.02.25', - '24.02.25', - '24.02.25', - '24.02.25', - '24.02.25', - '24.02.25', - '24.02.25', - '24.02.25', - '24.02.25', - '25.02.25', - '25.02.25', - '25.02.25', - '25.02.25', - '25.02.25', - '25.02.25', - '25.02.25', - '25.02.25', - '26.02.25', - '26.02.25', - '26.02.25', - '26.02.25', - '26.02.25', - '26.02.25', - '26.02.25', - '26.02.25', - '27.02.25', - '27.02.25', - '27.02.25', - '27.02.25', - '27.02.25', - '27.02.25', - '27.02.25', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'btc,range,90k,bitcoin,100k', - description: - "The key topic discussed in the messages from Twitter is the current price movement of Bitcoin ($BTC). Traders and analysts are expressing concern over the recent drop in price below $88K and the potential for further downside. Some are predicting a possible drop to $78K to close a CME gap, while others are noting the low volatility and undervalued conditions of Bitcoin. On-chain signals and technical indicators are also being closely monitored, with some suggesting a bearish outlook if certain support levels are breached. Overall, there is a sense of caution and uncertainty surrounding the future direction of Bitcoin's price.", - data: [ - 10, 4, 8, 16, 100, 86, 28, 47, 9, 9, 12, 27, 13, 31, 13, 40, 7, 9, 31, 16, 12, 25, 6, 25, - 22, 14, 4, 8, 15, 29, 31, 12, 9, 18, 10, 14, 24, 35, 17, 22, 15, 10, 11, 25, 7, 22, 20, 25, - 16, 20, 12, 11, 22, 6, 12, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,money,fiat,understand,currency', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n1. Bitcoin Central Bank issues\n2. Peer-to-peer, non-state money effectiveness\n3. Kamala Harris\n4. Bitcoin class and its origins\n5. Energy and climate issues related to Bitcoin\n6. Bull Flag Target\n7. Trading lemonade for Bitcoin\n8. Litecoin halving\n9. Bitcoin ownership and design\n10. Bitcoin's strong persistence\n11. Physics of Bitcoin\n12. Quantum computing and Bitcoin\n13. Crypto games and wallets\n14. Mainframe Blockchain\n\nThese topics reflect a diverse range of discussions and opinions within the crypto community on Twitter.", - data: [ - 18, 8, 11, 22, 122, 58, 10, 19, 7, 16, 16, 20, 14, 10, 11, 14, 24, 16, 16, 22, 12, 13, 12, - 12, 10, 21, 20, 15, 14, 13, 13, 11, 10, 20, 22, 9, 23, 16, 11, 19, 23, 18, 19, 17, 19, 18, - 28, 21, 17, 12, 10, 11, 21, 11, 15, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - 'The key topics discussed in the messages from twitter are:\n1. The advancement of AI technology in various industries, including healthcare and therapy.\n2. The potential impact of AI on human decision-making and autonomy.\n3. The integration of AI in the crypto industry, with mentions of AI agents and frameworks.\n4. Opportunities for developers and entrepreneurs in the AI and crypto space, with mentions of mentorship and funding.\n5. Discussions on the future role of AI in society, including its potential to outperform professionals in various fields.\n6. Specific projects and platforms related to AI and crypto, such as Zearn and Alith.\n7. Events and conferences focused on AI and its applications, such as DeAI Day.\n8. Investment opportunities in AI-related projects, such as the Cheap AI gem on Kucoin.\nOverall, the messages reflect a growing interest and excitement around the intersection of AI and the crypto industry, as well as the potential implications of AI technology on society.', - data: [ - 40, 138, 32, 8, 2, 6, 1, 19, 2, 18, 12, 23, 17, 15, 10, 10, 12, 14, 11, 6, 26, 11, 8, 13, - 10, 19, 19, 17, 12, 13, 17, 11, 12, 14, 19, 15, 12, 16, 21, 20, 14, 16, 20, 14, 14, 13, 17, - 16, 6, 10, 21, 13, 13, 7, 16, - ], - }, - { - label: 'Bybit', - topics: 'bybit,hack,withdrawals,funds,14b', - description: - 'The key topics discussed in the messages from twitter about the Bybit hack include:\n1. Alleged hack on Bybit\n2. Bybit unveiling a bounty platform to tackle crypto crime\n3. Identification of the group responsible for the Bybit hack\n4. Bybit losing $1.5B to hackers despite using self-custody with multisig cold wallet\n5. Bybit launching a $140m bounty to track down the crypto heist\n6. Bybit restoring withdrawals after the historic hack\n7. Bybit hacker laundering $250M in ETH\n8. Bybit seeing $1.7B in withdrawals, about 11% of their assets\n9. Ex-Bybit payroll manager jailed for stealing $4.2M in crypto\n\nOverall, the messages highlight the security vulnerabilities in the crypto industry, particularly with exchanges like Bybit, and the ongoing efforts to address and recover from such incidents.', - data: [ - 13, 2, 3, 10, 5, 3, 14, 4, 262, 11, 5, 13, 5, 5, 12, 7, 6, 19, 8, 11, 10, 12, 54, 22, 11, - 22, 3, 16, 4, 16, 10, 11, 3, 11, 10, 11, 6, 16, 2, 20, 15, 21, 5, 13, 6, 17, 16, 13, 6, 6, - 21, 9, 9, 3, 17, - ], - }, - { - label: 'ETH', - topics: 'ethereum,eth,range,classic,resistance', - description: - 'The key topics currently discussed in the messages from twitter about Ethereum (ETH) include:\n1. The scarcity of ETH as an asset\n2. Achieving decentralization in Ethereum\n3. Speculation on potential catalysts for ETH price movement\n4. Positive sentiment towards ETH as a long-term investment\n5. Concerns about the amount of FUD (Fear, Uncertainty, Doubt) and division surrounding Ethereum\n6. Analysis of technical indicators and potential price movements for ETH\n7. Comparison of ETH to other altcoins and the perception of safety in investments\n8. Market uncertainty and potential rise in ETH price despite recent drops\n9. Speculation on a rally to $3,000 and potential returns on investment in ETH\n10. Mention of a short squeeze potentially sparking further growth in ETH price.', - data: [ - 16, 5, 10, 15, 2, 2, 7, 14, 5, 3, 14, 9, 7, 9, 5, 5, 89, 59, 11, 14, 9, 10, 7, 12, 20, 6, - 10, 4, 14, 24, 11, 4, 9, 10, 10, 7, 5, 18, 12, 8, 11, 9, 11, 9, 11, 10, 13, 11, 6, 5, 9, 6, - 10, 7, 9, - ], - }, - { - label: 'SEC', - topics: 'sec,investigation,case,uniswap,coinbase', - description: - 'The key topic discussed in the messages from twitter is the SEC dropping cases against various crypto companies, including Coinbase, OpenSea, and Uniswap. This news has been met with excitement and relief by the crypto community, as it marks a significant win for these companies. Additionally, there is mention of the SEC launching a Cyber and Emerging Technologies Unit to fight blockchain fraud, showing a continued focus on regulating the crypto industry. Overall, the sentiment in the messages is positive, with many celebrating the resolution of these cases.', - data: [ - 24, 4, 8, 7, 1, 2, 57, 7, 1, 11, 37, 13, 6, 4, 14, 67, 27, 6, 4, 12, 4, 7, 9, 7, 11, 4, 7, - 25, 4, 4, 6, 10, 4, 14, 18, 3, 7, 7, 7, 11, 26, 11, 5, 6, 8, 2, 4, 5, 5, 0, 19, 6, 5, 8, 2, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,coins,memes,memecoins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include meme coins, memecoins like $DOGE and $SHIB, the potential of meme coins, the comparison of meme coins to traditional currencies like bitcoin and the U.S. dollar, the launch of new meme coins, meme coin communities, meme coin investments, meme coin scams, and the growth of meme coin communities. There is also discussion about specific meme coins like $MOST, $UFD, $PEPPER, and the criteria for joining meme coin communities or teams. Additionally, there are mentions of meme coin losses, recovery strategies, and VIP access for discord members and subscribers. Overall, the sentiment towards meme coins seems to be mixed, with some seeing them as a joke while others see potential for growth and investment opportunities.', - data: [ - 6, 4, 3, 8, 5, 4, 3, 6, 3, 7, 13, 7, 4, 9, 9, 6, 2, 8, 10, 2, 11, 11, 2, 4, 6, 7, 10, 7, 8, - 12, 11, 69, 25, 9, 7, 3, 10, 13, 8, 8, 7, 9, 5, 8, 9, 5, 8, 9, 7, 6, 6, 3, 9, 3, 6, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,culture', - description: - "The key topics discussed in the messages from twitter are:\n1. Generative art collections\n2. Bullish sentiment on art\n3. Art exhibitions on OpenSea\n4. Excitement over acquiring art from favorite Web3 artist\n5. Digital paintings by Ilya\n6. Personal connection to art\n7. Digital art galleries with unique features\n8. History-making digital art exhibitions\n9. Grant Yun's art purchases and commissions\n10. NFT editions of art pieces", - data: [ - 5, 7, 73, 4, 1, 1, 2, 3, 2, 3, 12, 4, 10, 7, 7, 3, 6, 6, 10, 8, 3, 8, 12, 4, 5, 10, 3, 6, - 13, 9, 15, 2, 4, 7, 6, 11, 9, 4, 6, 6, 8, 2, 11, 2, 7, 2, 9, 6, 11, 3, 3, 5, 8, 2, 9, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,web3', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- The future of gaming industry and the potential impact of Layer 3 gaming-focused platforms like @G7_DAO\n- The integration of Game-First NFTs in games, offering exclusive perks and real player ownership\n- The complexity of Web3 for gamers and the simplification of asset ownership and transactions through GAIMIN's Smart Wallet (GSW)\n- The return of popular games like 'Hamster Kombat' and the launch of new seasons\n- The dominance of the gaming industry compared to movies and music, with a focus on centralized giants\n- Collaborations between gaming studios and infra ecosystems to push boundaries in AI-driven gaming and digital entertainment\n- The introduction of the #Free2Earn Leaderboard on the NAKA Mobile App, allowing players to earn rewards with zero investment\n\nOverall, the discussions on Twitter highlight the growing intersection between the gaming industry and the crypto space, with a focus on innovation, community engagement, and potential earnings for players.", - data: [ - 3, 1, 1, 4, 0, 4, 2, 1, 1, 6, 3, 6, 5, 0, 3, 1, 5, 6, 10, 5, 62, 10, 1, 5, 0, 6, 8, 7, 10, - 0, 6, 13, 0, 4, 4, 7, 28, 6, 3, 6, 2, 3, 5, 3, 3, 4, 4, 5, 5, 2, 6, 4, 6, 1, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,defai,lending,finance,future', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. DeFi Renaissance: There is a discussion about the resurgence of decentralized finance (DeFi) and the potential it holds for the future of finance. Users are excited about the growth and opportunities in the DeFi space.\n\n2. New Projects and Platforms: Various new projects and platforms are being introduced in the DeFi space, such as Rhea Finance, Injective, and Linear Finance. These projects aim to revolutionize asset ownership, yield opportunities, and AI-driven innovation in DeFi.\n\n3. Regulatory Environment: The dismissal of a case against Coinbase by the SEC with zero fines and no business changes is seen as a significant win for DeFi. This event is seen as setting a precedent for the legitimacy and future of DeFi projects.\n\n4. DeFi Indices: The discussion also includes the Kaiko Indices DeFi Index, which consists of eleven assets from the decentralized finance sector. Analysts are discussing the unique drivers of each asset and the potential impact on the DeFi market.\n\n5. Developer Activity: There is a focus on the developer community in the crypto industry, with discussions on the number of open-source developers working in crypto, the chains attracting new developers, and the geographical distribution of developers. \n\n6. Risks and Challenges: There are discussions on the potential risks and challenges in the DeFi space, including the complexity of DeFi structures and the possibility of reintroducing centralized structures that could lead to financial crises similar to the 2008 crisis.\n\nOverall, the sentiment in the crypto industry on social media platforms is optimistic about the growth and potential of DeFi, while also acknowledging the need to address risks and challenges in the space.', - data: [ - 6, 3, 6, 4, 1, 2, 3, 5, 0, 7, 8, 3, 5, 20, 10, 3, 6, 8, 1, 2, 7, 0, 7, 1, 9, 11, 10, 4, 6, - 3, 5, 9, 5, 6, 1, 15, 3, 4, 8, 13, 5, 3, 6, 7, 4, 3, 3, 6, 3, 6, 7, 3, 5, 1, 6, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoin,stablecoins,tether,america,bank', - description: - "The key topics discussed in the messages from twitter are:\n1. Tether being centralized and the recommendation not to cash out bitcoin in Tether\n2. Singapore’s Metro department store accepting stablecoin payments in $USDT, $USDC, and more\n3. New all-time high for $USDG supply on Ethereum\n4. Crypto.com and Kraken considering launching their own stablecoins in Europe\n5. RAI being the only non-fiat algorithmic stablecoin\n6. The approval of USDC and EURC as recognized tokens by the DFSA\n7. USDC being widely used and accepted for hotel bookings worldwide\n8. Kraken exploring the launch of its own USD-pegged stablecoin\n9. Wanchain's $PYUSD stablecoin bridge connecting Cardano and Solana\n10. Stablecoin dominance trending higher and potential implications for market liquidity on Tron and Solana\n\nOverall, the messages highlight the growing adoption and development of stablecoins in the crypto industry, as well as regulatory approvals and potential market trends.", - data: [ - 3, 2, 13, 9, 0, 0, 7, 3, 1, 4, 3, 7, 5, 2, 2, 8, 3, 4, 2, 12, 4, 5, 1, 0, 2, 1, 5, 12, 1, 3, - 5, 0, 3, 3, 5, 2, 3, 1, 4, 8, 3, 9, 1, 1, 24, 4, 5, 10, 4, 1, 1, 19, 2, 1, 5, - ], - }, - { - label: "Kanye West's announcement of launching his own coin", - topics: 'west,launch,coin,memecoin,launching', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry are Kanye West's announcement of launching his own coin, the skepticism and criticism surrounding the potential memecoin launch, and the potential impact on the meme market. Some users are expressing doubts about the legitimacy and success of Kanye's coin, while others are planning to take advantage of the situation for personal gain. There is also mention of a potential scam involving insider trading and dumping on unsuspecting investors. Overall, there is a mix of excitement, skepticism, and caution surrounding Kanye West's entry into the crypto world.", - data: [ - 10, 3, 1, 1, 0, 2, 6, 6, 2, 5, 5, 3, 4, 5, 3, 5, 1, 2, 2, 8, 5, 5, 3, 3, 3, 4, 2, 14, 2, 7, - 6, 1, 5, 6, 4, 1, 4, 4, 2, 4, 4, 9, 10, 3, 4, 2, 4, 5, 7, 2, 2, 2, 3, 3, 23, - ], - }, - { - label: 'Safe multisig', - topics: 'safe,cold,wallet,signing,multisig', - description: - "The key topics discussed in the messages from Twitter regarding the crypto industry are:\n\n1. Bybit Security Breach: Bybit was not hacked, but there was unauthorized activity involving one of their ETH cold wallets. The incident was due to a compromised Safe multisig website, and Bybit confirms no internal breach after the Safe Wallet hack. Funds are secured, and enhanced custody plans are underway.\n\n2. Safe Wallet Compromise: The breach was attributed to the Lazarus Group breaching Safe via stolen developer machine credentials. Independent audits found Bybit's infrastructure was not directly hacked, but the issue came from Safe, the company responsible for asset security.\n\n3. Bybit Hack Details: The only cold wallet compromised at Bybit was their ETH cold wallet, with approximately $1 billion in ETH stolen. The hacker attacked each multisig signer's device and manipulated the UI to show a different transaction than what was real.\n\n4. Security Measures: Suggestions were made for custodians to switch to local apps or implement more security measures like using specific OS scripts to verify Safe transaction hashes.\n\n5. Lessons Learned: It is essential to double-check Ledger devices before signing any transaction to prevent hacks. Trust matters in the crypto industry, and ensuring safety, speed, and transparency is crucial.\n\n6. Alternative Platforms: Bitgert is highlighted as a platform with zero-fee blockchain and decentralized model to ensure seamless transactions without custodial risks. Vultisig is also mentioned as a promising option in Pure DeFi.\n\nOverall, the messages discuss the importance of security measures, the impact of the Bybit security breach, and the need for trust and transparency in the crypto industry.", - data: [ - 5, 1, 4, 6, 0, 3, 7, 1, 28, 2, 7, 5, 1, 2, 2, 0, 2, 1, 1, 0, 1, 4, 5, 3, 3, 2, 5, 4, 3, 4, - 2, 1, 1, 2, 5, 2, 0, 1, 3, 3, 0, 20, 4, 10, 3, 2, 6, 5, 2, 2, 6, 3, 7, 0, 5, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,outflows,net,etf,spot', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Bitcoin ETF daily net flows, with record outflows and inflows being reported\n- Comparison between Bitcoin and Ethereum spot ETFs in terms of net flows\n- Impact of higher interest rates on Bitcoin liquidity and demand for risk assets\n- BlackRock's Bitcoin ETF experiencing a significant single-day outflow\n- Analysis of Bitcoin ETF holdings remaining flat for an extended period\n- Recent updates on Bitcoin ETF daily net outflows, with Fidelity, BlackRock, and Ark & 21Shares leading in outflows\n- Comparison of net flows between Bitcoin and Ethereum spot ETFs over a specific time period\n\nOverall, the discussion seems to be focused on the performance and trends of Bitcoin and Ethereum ETFs, as well as the impact of external factors such as interest rates on the crypto market.", - data: [ - 0, 0, 1, 3, 12, 6, 7, 0, 0, 0, 2, 1, 6, 7, 3, 2, 22, 5, 2, 2, 0, 2, 0, 5, 7, 6, 5, 5, 4, 1, - 0, 3, 0, 6, 2, 1, 0, 0, 0, 4, 3, 0, 15, 2, 23, 0, 1, 3, 6, 3, 3, 2, 4, 2, 4, - ], - }, - { - label: 'ETHDenver', - topics: 'denver,ethdenver,ethereumdenver,eth,opening', - description: - 'The key topics currently being discussed on Twitter about ETHDenver include:\n- The excitement and anticipation of attending ETHDenver\n- Discussions about the value and worth of attending ETHDenver\n- Mention of specific events and panels happening at ETHDenver\n- Plans and reasons for not attending ETHDenver\n- Excitement about meeting industry leaders and participating in workshops at ETHDenver\n- Mention of specific projects and companies participating in ETHDenver\n- Promotion of events and activities happening at ETHDenver\n- Excitement about the opportunity to connect with the crypto community at ETHDenver\n- Mention of specific individuals and their involvement in ETHDenver\n- Discussions about the overall atmosphere and experience of attending ETHDenver', - data: [ - 4, 2, 9, 2, 3, 0, 1, 2, 1, 4, 7, 1, 0, 11, 6, 1, 6, 4, 4, 4, 3, 2, 2, 10, 3, 1, 6, 4, 2, 3, - 4, 3, 6, 2, 2, 7, 2, 1, 2, 6, 4, 4, 2, 3, 6, 4, 3, 1, 4, 2, 1, 0, 8, 4, 5, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,strategy,michael,microstrategy,holdings', - description: - "Michael Saylor, a prominent figure in the crypto industry, has been making waves with his strategic buying of Bitcoin. He has been consistently increasing his holdings, with recent acquisitions bringing his total to over 499,000 BTC. Saylor's actions have been closely followed by the community, with some praising his bullish approach while others question his market impact. Despite the debate, Saylor's moves have positioned him as a key player in the industry, with his actions shaping the market and drawing attention from major institutions. His recent purchases have not gone unnoticed, with many speculating on his next moves and the potential impact on Bitcoin's price. Overall, Saylor's strategy and influence in the crypto space continue to be a topic of discussion and interest among investors and enthusiasts alike.", - data: [ - 3, 2, 3, 1, 2, 3, 4, 5, 11, 3, 3, 3, 2, 2, 2, 0, 1, 1, 1, 3, 3, 5, 0, 1, 2, 3, 2, 1, 1, 3, - 1, 3, 3, 1, 0, 0, 3, 3, 2, 1, 1, 16, 2, 3, 2, 40, 1, 2, 3, 2, 2, 1, 2, 2, 1, - ], - }, - { - label: 'BTC is dead', - topics: 'ponzi,dead,zero,dump,btc', - description: - 'The messages from Twitter regarding the crypto industry are overwhelmingly negative, with a focus on Bitcoin ($BTC) being referred to as a "horrible" and "disgusting" coin. There are mentions of Bitcoin being a "ponzi" and a "sh*tcoin", with calls to delist it and predictions of it going to zero. The sentiment towards Bitcoin bulls is also negative, with them being called cowards and criticized for their lack of control in the market. Overall, the tone of the messages is pessimistic and critical towards Bitcoin and the crypto industry in general.', - data: [ - 4, 1, 2, 6, 4, 1, 2, 3, 1, 1, 1, 1, 2, 29, 4, 5, 2, 0, 4, 3, 2, 2, 0, 3, 22, 1, 4, 1, 2, 2, - 1, 1, 2, 2, 1, 5, 1, 0, 10, 0, 2, 3, 0, 7, 0, 1, 2, 2, 6, 2, 0, 0, 1, 1, 2, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,etf,cryptocurrency,ledger', - description: - "The key topics currently discussed in the crypto industry on Twitter include XRP Ledger planning big upgrades for institutional DeFi, potential price movements for XRP, discussions about an XRP ETF, price predictions for XRP, potential price corrections, and debates about the future performance of XRP. There is also mention of Ripple's rival Stellar (XLM) and its potential price surge or collapse. Additionally, there are discussions about XRP's current price, potential future price targets, and the impact of regulatory decisions on XRP's value.", - data: [ - 1, 2, 5, 0, 0, 0, 8, 2, 1, 0, 4, 2, 2, 4, 2, 5, 3, 3, 2, 5, 2, 3, 0, 1, 4, 3, 1, 2, 5, 2, 4, - 3, 2, 4, 1, 4, 2, 19, 1, 0, 14, 2, 2, 5, 2, 3, 9, 1, 1, 3, 2, 0, 3, 2, 2, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,unlock,lows,150', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Discussion about the performance of Solana ($SOL) and the need for it to break $200 for a potential price increase\n- Speculation about potential price movements and technical analysis of Solana\n- Criticism of AI tokens on Solana and their lack of real purpose\n- Comparison of Solana's price decrease with other tokens like FARTCOIN\n- Concerns about Solana's plunging price and users/core devs leaving\n- Trading strategies and analysis of Solana's price trends\n- Updates on Solana's price movements and key support levels\n- Trading volume and price changes of Solana in the past 24 hours\n\nOverall, the discussions on twitter reflect a mix of technical analysis, trading strategies, criticism of certain tokens, and concerns about Solana's price movements in the crypto industry.", - data: [ - 0, 0, 2, 6, 1, 1, 1, 2, 0, 5, 2, 1, 2, 3, 3, 6, 2, 3, 6, 1, 0, 2, 1, 3, 4, 1, 0, 3, 1, 2, 0, - 1, 2, 2, 3, 6, 3, 6, 5, 1, 4, 2, 3, 35, 3, 2, 0, 5, 3, 3, 4, 2, 1, 4, 0, - ], - }, - { - label: 'Buy the dip', - topics: 'dip,buying,buy,dips,bought', - description: - 'The messages from Twitter suggest that there is a lot of discussion about buying the dip in the crypto industry. Some users are expressing their willingness to buy the dip multiple times, while others are cautious and unsure about the right timing to buy. There is also mention of leveraging and the importance of managing trades properly to reduce risk. Overall, the sentiment seems to be mixed with some users being bullish on buying the dip while others are more cautious.', - data: [ - 0, 0, 3, 2, 1, 4, 1, 35, 3, 2, 3, 0, 4, 2, 13, 0, 3, 0, 3, 1, 3, 4, 4, 5, 4, 1, 0, 2, 1, 4, - 0, 0, 2, 1, 3, 7, 3, 2, 2, 1, 3, 2, 1, 4, 3, 2, 2, 3, 4, 3, 2, 1, 1, 2, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-61.json b/priv/repo/major_topics_seed/data-61.json deleted file mode 100644 index 2fad497c6b..0000000000 --- a/priv/repo/major_topics_seed/data-61.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["27.02.25","28.02.25","28.02.25","28.02.25","28.02.25","28.02.25","28.02.25","28.02.25","01.03.25","01.03.25","01.03.25","01.03.25","01.03.25","01.03.25","01.03.25","01.03.25","02.03.25","02.03.25","02.03.25","02.03.25","02.03.25","02.03.25","02.03.25","02.03.25","03.03.25","03.03.25","03.03.25","03.03.25","03.03.25","03.03.25","03.03.25","03.03.25","04.03.25","04.03.25","04.03.25","04.03.25","04.03.25","04.03.25","04.03.25","04.03.25","05.03.25","05.03.25","05.03.25","05.03.25","05.03.25","05.03.25","05.03.25","05.03.25","06.03.25","06.03.25","06.03.25","06.03.25","06.03.25","06.03.25","06.03.25"],"datasets":[{"label":"BTC Price","topics":"candle,btc,weekly,range,bull","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements, with mentions of reaching $1M, $150K in 2025, and hitting $92K\n- Altcoins turning green and potential relief rally on Bitcoin\n- Potential market impact of Bitcoin hitting $150K in 2025\n- SEC's new crypto strategy and guidance on meme coins\n- Resistance at the 50MA and bearish momentum in Bitcoin's pattern\n- White House Crypto Summit scheduled for Mar.7\n- CME gap down to 85,720 and Trump's announcement triggering a pump\n- Cloud reset for the first time since Nov and long entry criteria for Bitcoin trading\n\nOverall, the discussions on Twitter indicate a mix of bullish and bearish sentiments towards Bitcoin and other cryptocurrencies, with traders closely monitoring price movements and external factors such as regulatory guidance and market events.","data":[9,16,12,20,160,73,18,78,22,20,26,27,25,14,40,19,4,32,19,14,27,13,15,47,13,10,13,10,15,40,19,14,19,16,11,12,47,22,28,20,10,10,27,10,17,20,14,28,12,7,7,22,20,31,18]},{"label":"AI","topics":"ai,agents,agent,models,data","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- AI and APIs\n- AI Cloud Firm CoreWeave files for US Initial Public Offering\n- Bots\n- New All-Time High (ATH) incoming\n- AI tools for creating animations\n- Singularity_Fi ($SFI)\n- Importance of staying ahead with AI\n- Progress in AI techniques and infrastructure\n- Managing AI at scale with decentralized architecture\n- AI agents in sports betting on Polymarket\n- ML (Machine Learning) importance\n- Evolution of AI infrastructure\n- IO Intelligence offering open-source models and intelligent agents for decentralized AI apps\n- New AI gem on Solana with Grok AI Agent #ADASTRA\n\nThese topics highlight the advancements, applications, and potential future developments in the field of AI and its intersection with the crypto industry.","data":[50,123,22,20,1,2,2,18,8,16,13,20,21,18,6,21,18,13,10,23,23,15,15,13,12,29,18,14,9,8,14,7,17,9,21,16,20,16,19,19,11,12,18,9,12,14,22,12,16,7,12,24,4,12,15]},{"label":"BTC","topics":"fiat,bitcoin,money,freedom,governments","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin as a revolutionary force for logical thinkers\n- Financial illiteracy as a curse and the need to remove money from reckless governments\n- Bitcoin as economic armor and total freedom\n- The environmental impact of Bitcoin compared to fiat\n- The importance of money being politically neutral, censorship resistant, and decentralized\n- The fight for the future of Bitcoin against authoritarianism and apathy\n\nOverall, the sentiment towards Bitcoin on Twitter seems positive, with many users advocating for its benefits and potential to bring about positive change in the financial world.","data":[6,3,11,12,86,47,4,8,3,9,10,11,8,8,7,9,2,7,23,11,9,18,9,9,10,12,12,16,7,5,7,3,20,7,8,9,7,6,9,7,11,11,13,4,6,11,6,15,10,7,11,5,9,12,10]},{"label":"Memecoins","topics":"meme,coin,memecoin,coins,memes","description":"The key topics currently discussed in the messages from twitter are meme coins, cryptocurrency credibility, meme stock narrative, meme coin communities, meme coin listings, meme coin ROI potential, meme coin strategic reserves, meme coin technology, meme coin rewards, and meme coin market trends.","data":[4,3,3,5,3,4,1,4,4,7,13,2,3,5,25,7,4,14,5,5,5,13,10,6,3,2,10,11,7,9,5,109,5,4,8,7,9,11,4,6,6,3,4,3,6,7,7,8,8,3,3,7,4,4,3]},{"label":"DOGE","topics":"doge,dogecoin,elon,savings,elonmusk","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Dogecoin and its price movements\n- Government efficiency and spending\n- SEC accountability and fraud\n- Social media account fraud and renaming\n- Bitcoin and its gospel according to a book sale\n\nOverall, the discussions revolve around the current state of Dogecoin, government spending and efficiency, accountability in the crypto industry, and potential fraudulent activities on social media accounts related to crypto.","data":[3,4,6,8,1,2,2,2,8,3,4,2,3,8,108,7,2,6,0,1,14,5,2,13,3,0,1,5,5,7,3,4,6,5,9,11,7,4,5,6,6,4,5,4,4,5,5,6,3,3,5,1,8,5,4]},{"label":"SOL","topics":"solana,sol,ftx,staking,dex","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana's upcoming proposal to change emissions mechanism and the emergence of more critics.\n2. The dominance of Solana in decentralized exchange trading volume for the fifth consecutive month.\n3. The launch of JPool Solana points program season 1 and the ability to earn points through staking.\n4. Solana being introduced as the latest margin currency on BitMEX with reduced haircuts.\n5. Speculation on Solana's price movements and potential opportunities for traders.\n6. Solana's recent rebound to $143 after a 28% crash and uncertainty surrounding FTX's sell-off.\n7. Concerns about Solana's revenue decline and comparisons with other projects like Sonic and ICP.\n8. Discussion about Solana's revenue sources and its reputation as a meme casino and rug factory.\n\nOverall, the discussions on Twitter reflect a mix of positive developments, uncertainties, and criticisms surrounding Solana and its ecosystem.","data":[3,6,7,4,0,1,1,3,4,4,1,6,3,2,3,2,1,11,4,6,6,6,2,4,4,3,5,12,3,10,2,2,5,10,6,5,12,8,5,4,1,8,3,31,6,6,6,6,7,2,12,7,9,6,3]},{"label":"GameFi","topics":"gaming,game,games,web3,players","description":"The key topics currently being discussed in the crypto industry on social media include GameFi tokens with potential, the launch of onchain games on platforms like Nintendo Switch, the intersection of esports and blockchain technology, the importance of fair gaming practices, the evolution of strategy gaming, the use of AI agents in gaming, and the introduction of AI assistants for maximizing profits in play-to-earn (P2E) games like $NAKA. There is also a focus on innovative game developers and studios creating new gaming experiences on blockchain platforms. Overall, the crypto community is excited about the advancements and opportunities in the gaming industry enabled by blockchain technology.","data":[0,5,7,9,0,0,1,6,3,8,3,3,0,1,7,5,2,7,6,45,6,5,0,3,6,5,2,8,5,9,3,5,6,9,5,13,7,3,8,3,3,2,6,3,3,5,6,7,2,2,8,3,1,4,3]},{"label":"Art","topics":"art,artists,piece,painting,love","description":"Based on the messages from Twitter, it seems that the key topics being discussed are related to art, technology, and the crypto community. The messages mention the use of blockchain technology in the art industry, owning rare art and collectibles with confidence, and the introduction of a new meme token backed by real-world assets like art. There is also a discussion about market dynamics affecting artists' sales and the importance of brand consistency on social channels. Additionally, there is a mention of AI advancement in digital art and how tools keep progressing in the art world. Overall, the messages highlight the intersection of art, technology, and the crypto community in the current discussions on social media.","data":[9,1,63,6,1,1,0,4,7,2,15,7,4,3,5,1,2,3,5,2,4,9,8,1,4,4,5,7,3,11,3,7,5,4,3,8,2,6,1,3,5,4,5,0,4,5,0,6,3,3,0,4,2,0,4]},{"label":"DeFi","topics":"defi,lending,finance,onchain,protocols","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. DeFi integrations with base builders and options for distribution\n2. The potential for DeFi to think, adapt, and optimize in real time\n3. Solving privacy problems in DeFi on public blockchains like Ethereum and Solana\n4. The future of DeFi with structured products bridging TradFi and DeFi\n5. The SEC easing regulations and institutions leveraging DeFi for higher yields and risk management\n6. Predictions of a future DeFi bull run that will be faster and much bigger than before\n7. Integrations for LBTC as collateral with various platforms\n8. 1inch's edge in DeFi through relentless innovation and cross-chain execution\n9. Winners of DeFi Q&A competitions and rewards\n10. Restaking for insurance and reinsurance in DeFi\n11. Launch of a new \"Learn More\" page on the Datamine Ecosystem\n12. Introduction of ai16zdao to shake up DeFi with AI-driven decisions\n13. Prague DeFi Bootcamp event with pitch battles, workshops, and expert roundtables on scaling, security, and fundraising.","data":[4,2,4,6,0,6,2,5,1,6,7,2,2,17,1,5,6,6,8,6,7,4,5,1,3,13,2,11,4,1,2,2,5,6,10,6,4,11,7,6,3,4,6,4,3,3,9,4,9,4,8,0,0,5,6]},{"label":"White House Crypto Summit ","topics":"summit,white,house,host,friday","description":"The key topics currently being discussed on Twitter regarding the White House Crypto Summit on March 7th include:\n1. Attendance of prominent figures such as David Sacks, Michael Saylor, Charles Hoskinson, Vitalik Buterin, and others.\n2. Speculation about the agenda of the summit, including discussions on ETF contenders, tokens made in the USA, tokens mentioned by Trump, and projects attending the summit.\n3. Controversy surrounding the exclusion of Charles Hoskinson from the summit despite Cardano (ADA) being in Trump's crypto reserve plan.\n4. Speculation about potential announcements at the summit, such as a strategic Bitcoin reserve and 0% capital gains tax on tokens held for over a year.\n5. Discussion about the impact of the summit on the crypto industry and whether it could be a significant breakthrough.\n6. Criticism of The Washington Post's editorial policy changes under Jeff Bezos, particularly regarding views opposing free markets.\n7. Excitement and anticipation for the summit, with hopes for bullish outcomes.\n8. Support for the CRA introduced by Senators Ted Cruz and Mike Carey to rescind the Broker DeFi Rule, seen as an attack on the crypto community by the Biden administration.\nOverall, the Twitter discussions reflect a mix of excitement, speculation, controversy, and anticipation surrounding the upcoming White House Crypto Summit.","data":[8,6,12,2,0,3,10,5,2,5,5,1,6,2,4,2,2,4,6,3,2,2,7,18,5,19,2,2,7,0,4,2,3,2,2,2,1,2,0,4,2,4,3,5,0,13,1,0,4,11,4,3,3,3,1]},{"label":"Bybit hack","topics":"bybit,stolen,hack,funds,north","description":"The key topic discussed in the messages from twitter is the Bybit hack, where hackers laundered a significant amount of ETH through THORChain. The hacker has already moved a large portion of the stolen ETH, leaving only a small amount uncleaned. The scale of the hack and money laundering involved is significant, with over $1 billion worth of ETH being stolen and laundered. Additionally, there are discussions about potential solutions to prevent such hacks in the future, such as using crypto as an internal currency in North Korea. Other related topics include security vulnerabilities in crypto platforms like Bybit and the importance of AI-powered audits for ensuring blockchain safety.","data":[2,3,1,4,0,2,5,0,40,5,4,4,5,3,3,0,6,1,4,8,2,0,16,0,0,2,4,9,3,6,0,1,2,5,3,8,2,1,5,3,8,13,0,1,4,1,2,4,0,1,4,9,1,4,5]},{"label":"ETH","topics":"eth,ethereum,2000,zone,2023","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Ethereum (ETH) hitting new lows since early 2023\n- ETH trading lower than any point in 2024, lowest since November 2023\n- Analysts predicting a potential 15% rally in ETH due to buying surge\n- Speculation on whether ETH has hit its lowest point or if further declines are expected\n- Discussion on key support levels for ETH and potential rebound opportunities\n- Debate on whether now is a good time to buy ETH or if further price drops are anticipated\n- Comparison of current ETH prices to historical levels and year-over-year performance trends.","data":[4,2,2,3,0,0,3,2,1,3,1,5,0,4,3,1,55,9,3,6,2,2,1,9,3,0,1,2,7,11,4,3,7,1,5,3,5,1,1,4,0,1,1,3,0,6,4,4,3,5,3,3,5,3,3]},{"label":"XRP","topics":"xrp,ripple,cryptocurrency,altcoins,surge","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- XRP price predictions and potential for a significant increase\n- On-chain activity surge for XRP\n- Analysis of various cryptocurrencies including Bitcoin, Ethereum, XRP, Dogecoin, Solana, and Cardano\n- Ripple-backed non-profit organization launching to educate Americans on crypto\n- Speculation on the future moves of Ripple beyond banks\n- Potential dominance of Ethereum, XRP, Solana, Cardano, and Stellar backed by strong fundamentals and upcoming catalysts\n- President Trump's announcement on the Crypto Strategic Reserve impacting the entire crypto market\n\nOverall, the messages indicate a mix of price speculation, market analysis, and industry developments within the crypto space.","data":[3,1,5,0,1,1,5,5,2,5,6,4,7,5,3,2,4,7,16,6,6,1,3,5,2,3,0,2,7,5,3,4,5,2,0,2,21,4,7,4,10,2,3,3,0,3,2,3,1,0,3,1,2,3,3]},{"label":"U.S. States Advance Legislation on Bitcoin Investments and Reserves","topics":"texas,passed,state,committee,reserve","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Texas Senate passing a bill enabling Bitcoin investments with public funds\n2. Individual states showing interest in buying into a Bitcoin reserve\n3. FOMO event in history incoming\n4. Support for TJ Roberts introducing bills in Kentucky related to crypto, Bitcoin, gold, guns, and school choice\n5. States voting favorably for Crypto/BTC reserve\n6. Utah holding a final vote on Bitcoin reserve\n7. Oklahoma considering Bitcoin reserve to hedge against inflation\n8. Texas strategic Bitcoin reserve bill to be voted on\n9. Arizona passing a strategic Bitcoin reserve bill in the Senate\n10. Utah introducing a Bitcoin reserve bill\n11. Concerns about separating money from the state and potential scams related to reserves\n12. New Hampshire advancing a Bitcoin reserve bill to the House\n13. Governor DeSantis highlighting state efforts to promote law and order\n\nOverall, the discussion on social media platforms revolves around the adoption and implementation of Bitcoin reserves at the state level, with various states considering or passing bills related to this topic. There is also a mix of support and skepticism regarding the potential impact of these reserves on the crypto industry and the state's financial system.","data":[11,0,6,4,2,1,29,1,8,1,2,3,3,2,1,1,0,1,3,0,4,4,2,3,2,3,0,4,0,1,6,0,5,7,17,0,1,1,3,3,6,3,0,1,22,3,0,0,1,2,0,4,6,0,2]},{"label":"Strategic Bitcoin Reserve in the United States","topics":"strategic,reserve,bitcoin,reserves,sovereign","description":"The messages from twitter suggest that there is a lot of discussion and excitement around the idea of a Strategic Bitcoin Reserve in the United States. Many users believe that such a reserve would be beneficial for the crypto industry, with some even suggesting that it should be exclusively focused on Bitcoin rather than including other cryptocurrencies. There is also a debate about the potential inclusion of altcoins in the reserve, with some users arguing that Bitcoin should be the primary focus due to its status as the king of cryptocurrencies. Overall, the sentiment seems to be positive towards the idea of a Strategic Bitcoin Reserve, with users expressing their support for the initiative.","data":[4,1,1,1,3,20,0,1,0,4,5,3,3,1,1,1,2,3,4,1,5,3,1,5,2,2,0,2,1,1,5,0,7,1,3,5,1,2,2,5,2,3,4,0,28,5,3,11,1,1,3,0,2,0,0]},{"label":"ETH Denver","topics":"denver,ethdenver,ethereumdenver,great,stage","description":"The key topics currently being discussed in the crypto industry on Twitter include Ethereum Denver, ETH Denver edition of the newsletter, projects being built on EigenLayer, innovation at ETH Denver, Kaito AI, crypto payments, movie-night-meetup in the township, being the first to try new things, podcast with the Vexl team in Prague, and the future of onchain finance. Participants are excited about the developments in the industry and are actively engaging in discussions and events related to these topics.","data":[1,1,3,3,1,0,1,2,3,0,8,2,2,11,0,4,10,4,3,5,5,22,3,7,3,2,3,2,0,1,0,2,1,2,2,4,4,6,0,1,2,1,0,6,0,2,2,1,3,0,1,2,1,3,3]},{"label":"Buy the dip","topics":"dip,buy,bought,buying,crowd","description":"The key topic discussed in the messages from twitter is about buying the dip in the crypto industry. Users are sharing their experiences of buying the dip in various cryptocurrencies like Bitcoin and PIPPIN. Some users are discussing the importance of buying the dip to achieve their stacking goals, while others are cautioning about the risks involved in dip buying, especially when using leverage. Quants are mentioned as providing advice on when to buy the dip, and there is a debate on whether it is the right strategy for investors. Overall, the sentiment seems to be mixed, with some users advocating for buying the dip while others are more cautious.","data":[4,0,1,1,0,0,0,3,41,2,1,2,4,0,11,0,0,0,3,1,4,1,3,2,4,1,1,2,6,0,1,1,3,2,0,2,2,0,1,6,7,5,1,1,2,2,3,1,4,0,0,0,2,2,6]},{"label":"BlackRock","topics":"blackrock,model,etf,portfolios,portfolio","description":"The key topics currently discussed in the messages from twitter are:\n1. BlackRock adding Bitcoin ETF to its portfolio\n2. BlackRock buying two Panama Canal ports from China's Hutchinson\n3. BlackRock CEO suggesting investors to buy the dip\n4. Speculation about BlackRock suppressing Bitcoin price for whales to buy\n5. BlackRock integrating Bitcoin into its model portfolios with a 1-2% allocation\n6. BlackRock's endorsement of Bitcoin through its model portfolios\n7. BlackRock allocating up to 2% of its model portfolio to Bitcoin ETF IBIT\n8. BlackRock being seen as a US Government private wallet\n9. BlackRock's impact on the stock market and cryptocurrency market\n10. BlackRock's influence on financial advisors and institutional investors\n\nOverall, the discussions revolve around BlackRock's increasing involvement in the cryptocurrency market, particularly with Bitcoin, and its recent acquisitions and decisions in the financial industry.","data":[24,0,3,4,2,37,6,0,4,0,0,0,1,0,0,2,3,2,0,2,1,0,0,2,3,3,3,1,0,0,0,3,0,4,3,0,0,1,1,1,5,5,1,0,2,0,0,0,0,1,2,1,4,0,4]},{"label":"ADA","topics":"cardano,ada,retweet,surge,breakout","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto community regarding Cardano (ADA) include:\n1. Price Predictions for 2025: Anticipating Strong Growth\n2. Collaboration between Cardano Foundation and SERPRO to advance blockchain adoption in Brazil\n3. Cardano's potential for growth and speed towards reaching $2\n4. Cardano's security features and low risk of major hacks or exploits\n5. Cardano's supply shock incoming with increasing wallet staking and DeFi participation\n6. Cardano price stalling and details of VIP meeting with Charles Hoskinson\n7. Cardano's market cap reaching $100B without Smart Contracts enabled\n8. Introduction of the Cardano-XRP bridge for DeFi opportunities and liquidity\n9. Discussion on diminishing returns in relation to Cardano's price and user growth\n\nOverall, the sentiment towards Cardano appears to be positive with discussions focusing on its potential for growth, security features, and upcoming developments in the ecosystem.","data":[1,2,0,2,0,1,10,4,4,3,2,0,3,0,2,2,1,4,4,1,2,2,1,2,2,1,5,0,2,3,4,1,7,0,7,1,4,3,1,3,1,3,7,0,5,9,1,1,3,0,2,2,4,4,0]},{"label":"APE","topics":"apechain,apecoin,ape,empowering,innovators","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. ApeChain Spotlight featuring the Shadow with Brains as the 4K Gator Of The Day.\n2. Discussion about organizing a GIANT event in LA for NFT Art & Culture.\n3. Support for projects like @GratefulApe_eth, @ThankApe, and @notapunkscult on ApeChain.\n4. Mining concepts and whitelisted projects on ApeChain.\n5. Community support for @BushBabyClub and @thtguyt.\n6. Listing of #CAPE on @coinpaprika.\n7. Expansion of ApeBond to @crossfichain.\n8. Creation of the Proof Pass of Ape Chain by @James_LympoDAO and @Geist254.\n9. Trading activities involving apecoin, unicorns, and apes on ApeChain.\n10. Updates on the latest mint with @notapunkscult on ApeChain.","data":[1,16,0,2,0,1,0,3,0,1,4,1,3,5,3,15,1,0,1,1,3,6,2,2,2,0,6,0,1,1,0,5,1,4,1,2,0,6,2,1,0,2,4,0,0,3,1,1,3,2,0,0,4,4,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-61.ts b/priv/repo/major_topics_seed/data-61.ts deleted file mode 100644 index 94c199252b..0000000000 --- a/priv/repo/major_topics_seed/data-61.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '27.02.25', - '28.02.25', - '28.02.25', - '28.02.25', - '28.02.25', - '28.02.25', - '28.02.25', - '28.02.25', - '01.03.25', - '01.03.25', - '01.03.25', - '01.03.25', - '01.03.25', - '01.03.25', - '01.03.25', - '01.03.25', - '02.03.25', - '02.03.25', - '02.03.25', - '02.03.25', - '02.03.25', - '02.03.25', - '02.03.25', - '02.03.25', - '03.03.25', - '03.03.25', - '03.03.25', - '03.03.25', - '03.03.25', - '03.03.25', - '03.03.25', - '03.03.25', - '04.03.25', - '04.03.25', - '04.03.25', - '04.03.25', - '04.03.25', - '04.03.25', - '04.03.25', - '04.03.25', - '05.03.25', - '05.03.25', - '05.03.25', - '05.03.25', - '05.03.25', - '05.03.25', - '05.03.25', - '05.03.25', - '06.03.25', - '06.03.25', - '06.03.25', - '06.03.25', - '06.03.25', - '06.03.25', - '06.03.25', - ], - datasets: [ - { - label: 'BTC Price', - topics: 'candle,btc,weekly,range,bull', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movements, with mentions of reaching $1M, $150K in 2025, and hitting $92K\n- Altcoins turning green and potential relief rally on Bitcoin\n- Potential market impact of Bitcoin hitting $150K in 2025\n- SEC's new crypto strategy and guidance on meme coins\n- Resistance at the 50MA and bearish momentum in Bitcoin's pattern\n- White House Crypto Summit scheduled for Mar.7\n- CME gap down to 85,720 and Trump's announcement triggering a pump\n- Cloud reset for the first time since Nov and long entry criteria for Bitcoin trading\n\nOverall, the discussions on Twitter indicate a mix of bullish and bearish sentiments towards Bitcoin and other cryptocurrencies, with traders closely monitoring price movements and external factors such as regulatory guidance and market events.", - data: [ - 9, 16, 12, 20, 160, 73, 18, 78, 22, 20, 26, 27, 25, 14, 40, 19, 4, 32, 19, 14, 27, 13, 15, - 47, 13, 10, 13, 10, 15, 40, 19, 14, 19, 16, 11, 12, 47, 22, 28, 20, 10, 10, 27, 10, 17, 20, - 14, 28, 12, 7, 7, 22, 20, 31, 18, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- AI and APIs\n- AI Cloud Firm CoreWeave files for US Initial Public Offering\n- Bots\n- New All-Time High (ATH) incoming\n- AI tools for creating animations\n- Singularity_Fi ($SFI)\n- Importance of staying ahead with AI\n- Progress in AI techniques and infrastructure\n- Managing AI at scale with decentralized architecture\n- AI agents in sports betting on Polymarket\n- ML (Machine Learning) importance\n- Evolution of AI infrastructure\n- IO Intelligence offering open-source models and intelligent agents for decentralized AI apps\n- New AI gem on Solana with Grok AI Agent #ADASTRA\n\nThese topics highlight the advancements, applications, and potential future developments in the field of AI and its intersection with the crypto industry.', - data: [ - 50, 123, 22, 20, 1, 2, 2, 18, 8, 16, 13, 20, 21, 18, 6, 21, 18, 13, 10, 23, 23, 15, 15, 13, - 12, 29, 18, 14, 9, 8, 14, 7, 17, 9, 21, 16, 20, 16, 19, 19, 11, 12, 18, 9, 12, 14, 22, 12, - 16, 7, 12, 24, 4, 12, 15, - ], - }, - { - label: 'BTC', - topics: 'fiat,bitcoin,money,freedom,governments', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin as a revolutionary force for logical thinkers\n- Financial illiteracy as a curse and the need to remove money from reckless governments\n- Bitcoin as economic armor and total freedom\n- The environmental impact of Bitcoin compared to fiat\n- The importance of money being politically neutral, censorship resistant, and decentralized\n- The fight for the future of Bitcoin against authoritarianism and apathy\n\nOverall, the sentiment towards Bitcoin on Twitter seems positive, with many users advocating for its benefits and potential to bring about positive change in the financial world.', - data: [ - 6, 3, 11, 12, 86, 47, 4, 8, 3, 9, 10, 11, 8, 8, 7, 9, 2, 7, 23, 11, 9, 18, 9, 9, 10, 12, 12, - 16, 7, 5, 7, 3, 20, 7, 8, 9, 7, 6, 9, 7, 11, 11, 13, 4, 6, 11, 6, 15, 10, 7, 11, 5, 9, 12, - 10, - ], - }, - { - label: 'Memecoins', - topics: 'meme,coin,memecoin,coins,memes', - description: - 'The key topics currently discussed in the messages from twitter are meme coins, cryptocurrency credibility, meme stock narrative, meme coin communities, meme coin listings, meme coin ROI potential, meme coin strategic reserves, meme coin technology, meme coin rewards, and meme coin market trends.', - data: [ - 4, 3, 3, 5, 3, 4, 1, 4, 4, 7, 13, 2, 3, 5, 25, 7, 4, 14, 5, 5, 5, 13, 10, 6, 3, 2, 10, 11, - 7, 9, 5, 109, 5, 4, 8, 7, 9, 11, 4, 6, 6, 3, 4, 3, 6, 7, 7, 8, 8, 3, 3, 7, 4, 4, 3, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elon,savings,elonmusk', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Dogecoin and its price movements\n- Government efficiency and spending\n- SEC accountability and fraud\n- Social media account fraud and renaming\n- Bitcoin and its gospel according to a book sale\n\nOverall, the discussions revolve around the current state of Dogecoin, government spending and efficiency, accountability in the crypto industry, and potential fraudulent activities on social media accounts related to crypto.', - data: [ - 3, 4, 6, 8, 1, 2, 2, 2, 8, 3, 4, 2, 3, 8, 108, 7, 2, 6, 0, 1, 14, 5, 2, 13, 3, 0, 1, 5, 5, - 7, 3, 4, 6, 5, 9, 11, 7, 4, 5, 6, 6, 4, 5, 4, 4, 5, 5, 6, 3, 3, 5, 1, 8, 5, 4, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,ftx,staking,dex', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Solana's upcoming proposal to change emissions mechanism and the emergence of more critics.\n2. The dominance of Solana in decentralized exchange trading volume for the fifth consecutive month.\n3. The launch of JPool Solana points program season 1 and the ability to earn points through staking.\n4. Solana being introduced as the latest margin currency on BitMEX with reduced haircuts.\n5. Speculation on Solana's price movements and potential opportunities for traders.\n6. Solana's recent rebound to $143 after a 28% crash and uncertainty surrounding FTX's sell-off.\n7. Concerns about Solana's revenue decline and comparisons with other projects like Sonic and ICP.\n8. Discussion about Solana's revenue sources and its reputation as a meme casino and rug factory.\n\nOverall, the discussions on Twitter reflect a mix of positive developments, uncertainties, and criticisms surrounding Solana and its ecosystem.", - data: [ - 3, 6, 7, 4, 0, 1, 1, 3, 4, 4, 1, 6, 3, 2, 3, 2, 1, 11, 4, 6, 6, 6, 2, 4, 4, 3, 5, 12, 3, 10, - 2, 2, 5, 10, 6, 5, 12, 8, 5, 4, 1, 8, 3, 31, 6, 6, 6, 6, 7, 2, 12, 7, 9, 6, 3, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,players', - description: - 'The key topics currently being discussed in the crypto industry on social media include GameFi tokens with potential, the launch of onchain games on platforms like Nintendo Switch, the intersection of esports and blockchain technology, the importance of fair gaming practices, the evolution of strategy gaming, the use of AI agents in gaming, and the introduction of AI assistants for maximizing profits in play-to-earn (P2E) games like $NAKA. There is also a focus on innovative game developers and studios creating new gaming experiences on blockchain platforms. Overall, the crypto community is excited about the advancements and opportunities in the gaming industry enabled by blockchain technology.', - data: [ - 0, 5, 7, 9, 0, 0, 1, 6, 3, 8, 3, 3, 0, 1, 7, 5, 2, 7, 6, 45, 6, 5, 0, 3, 6, 5, 2, 8, 5, 9, - 3, 5, 6, 9, 5, 13, 7, 3, 8, 3, 3, 2, 6, 3, 3, 5, 6, 7, 2, 2, 8, 3, 1, 4, 3, - ], - }, - { - label: 'Art', - topics: 'art,artists,piece,painting,love', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed are related to art, technology, and the crypto community. The messages mention the use of blockchain technology in the art industry, owning rare art and collectibles with confidence, and the introduction of a new meme token backed by real-world assets like art. There is also a discussion about market dynamics affecting artists' sales and the importance of brand consistency on social channels. Additionally, there is a mention of AI advancement in digital art and how tools keep progressing in the art world. Overall, the messages highlight the intersection of art, technology, and the crypto community in the current discussions on social media.", - data: [ - 9, 1, 63, 6, 1, 1, 0, 4, 7, 2, 15, 7, 4, 3, 5, 1, 2, 3, 5, 2, 4, 9, 8, 1, 4, 4, 5, 7, 3, 11, - 3, 7, 5, 4, 3, 8, 2, 6, 1, 3, 5, 4, 5, 0, 4, 5, 0, 6, 3, 3, 0, 4, 2, 0, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,lending,finance,onchain,protocols', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. DeFi integrations with base builders and options for distribution\n2. The potential for DeFi to think, adapt, and optimize in real time\n3. Solving privacy problems in DeFi on public blockchains like Ethereum and Solana\n4. The future of DeFi with structured products bridging TradFi and DeFi\n5. The SEC easing regulations and institutions leveraging DeFi for higher yields and risk management\n6. Predictions of a future DeFi bull run that will be faster and much bigger than before\n7. Integrations for LBTC as collateral with various platforms\n8. 1inch\'s edge in DeFi through relentless innovation and cross-chain execution\n9. Winners of DeFi Q&A competitions and rewards\n10. Restaking for insurance and reinsurance in DeFi\n11. Launch of a new "Learn More" page on the Datamine Ecosystem\n12. Introduction of ai16zdao to shake up DeFi with AI-driven decisions\n13. Prague DeFi Bootcamp event with pitch battles, workshops, and expert roundtables on scaling, security, and fundraising.', - data: [ - 4, 2, 4, 6, 0, 6, 2, 5, 1, 6, 7, 2, 2, 17, 1, 5, 6, 6, 8, 6, 7, 4, 5, 1, 3, 13, 2, 11, 4, 1, - 2, 2, 5, 6, 10, 6, 4, 11, 7, 6, 3, 4, 6, 4, 3, 3, 9, 4, 9, 4, 8, 0, 0, 5, 6, - ], - }, - { - label: 'White House Crypto Summit ', - topics: 'summit,white,house,host,friday', - description: - "The key topics currently being discussed on Twitter regarding the White House Crypto Summit on March 7th include:\n1. Attendance of prominent figures such as David Sacks, Michael Saylor, Charles Hoskinson, Vitalik Buterin, and others.\n2. Speculation about the agenda of the summit, including discussions on ETF contenders, tokens made in the USA, tokens mentioned by Trump, and projects attending the summit.\n3. Controversy surrounding the exclusion of Charles Hoskinson from the summit despite Cardano (ADA) being in Trump's crypto reserve plan.\n4. Speculation about potential announcements at the summit, such as a strategic Bitcoin reserve and 0% capital gains tax on tokens held for over a year.\n5. Discussion about the impact of the summit on the crypto industry and whether it could be a significant breakthrough.\n6. Criticism of The Washington Post's editorial policy changes under Jeff Bezos, particularly regarding views opposing free markets.\n7. Excitement and anticipation for the summit, with hopes for bullish outcomes.\n8. Support for the CRA introduced by Senators Ted Cruz and Mike Carey to rescind the Broker DeFi Rule, seen as an attack on the crypto community by the Biden administration.\nOverall, the Twitter discussions reflect a mix of excitement, speculation, controversy, and anticipation surrounding the upcoming White House Crypto Summit.", - data: [ - 8, 6, 12, 2, 0, 3, 10, 5, 2, 5, 5, 1, 6, 2, 4, 2, 2, 4, 6, 3, 2, 2, 7, 18, 5, 19, 2, 2, 7, - 0, 4, 2, 3, 2, 2, 2, 1, 2, 0, 4, 2, 4, 3, 5, 0, 13, 1, 0, 4, 11, 4, 3, 3, 3, 1, - ], - }, - { - label: 'Bybit hack', - topics: 'bybit,stolen,hack,funds,north', - description: - 'The key topic discussed in the messages from twitter is the Bybit hack, where hackers laundered a significant amount of ETH through THORChain. The hacker has already moved a large portion of the stolen ETH, leaving only a small amount uncleaned. The scale of the hack and money laundering involved is significant, with over $1 billion worth of ETH being stolen and laundered. Additionally, there are discussions about potential solutions to prevent such hacks in the future, such as using crypto as an internal currency in North Korea. Other related topics include security vulnerabilities in crypto platforms like Bybit and the importance of AI-powered audits for ensuring blockchain safety.', - data: [ - 2, 3, 1, 4, 0, 2, 5, 0, 40, 5, 4, 4, 5, 3, 3, 0, 6, 1, 4, 8, 2, 0, 16, 0, 0, 2, 4, 9, 3, 6, - 0, 1, 2, 5, 3, 8, 2, 1, 5, 3, 8, 13, 0, 1, 4, 1, 2, 4, 0, 1, 4, 9, 1, 4, 5, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,2000,zone,2023', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Ethereum (ETH) hitting new lows since early 2023\n- ETH trading lower than any point in 2024, lowest since November 2023\n- Analysts predicting a potential 15% rally in ETH due to buying surge\n- Speculation on whether ETH has hit its lowest point or if further declines are expected\n- Discussion on key support levels for ETH and potential rebound opportunities\n- Debate on whether now is a good time to buy ETH or if further price drops are anticipated\n- Comparison of current ETH prices to historical levels and year-over-year performance trends.', - data: [ - 4, 2, 2, 3, 0, 0, 3, 2, 1, 3, 1, 5, 0, 4, 3, 1, 55, 9, 3, 6, 2, 2, 1, 9, 3, 0, 1, 2, 7, 11, - 4, 3, 7, 1, 5, 3, 5, 1, 1, 4, 0, 1, 1, 3, 0, 6, 4, 4, 3, 5, 3, 3, 5, 3, 3, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,cryptocurrency,altcoins,surge', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- XRP price predictions and potential for a significant increase\n- On-chain activity surge for XRP\n- Analysis of various cryptocurrencies including Bitcoin, Ethereum, XRP, Dogecoin, Solana, and Cardano\n- Ripple-backed non-profit organization launching to educate Americans on crypto\n- Speculation on the future moves of Ripple beyond banks\n- Potential dominance of Ethereum, XRP, Solana, Cardano, and Stellar backed by strong fundamentals and upcoming catalysts\n- President Trump's announcement on the Crypto Strategic Reserve impacting the entire crypto market\n\nOverall, the messages indicate a mix of price speculation, market analysis, and industry developments within the crypto space.", - data: [ - 3, 1, 5, 0, 1, 1, 5, 5, 2, 5, 6, 4, 7, 5, 3, 2, 4, 7, 16, 6, 6, 1, 3, 5, 2, 3, 0, 2, 7, 5, - 3, 4, 5, 2, 0, 2, 21, 4, 7, 4, 10, 2, 3, 3, 0, 3, 2, 3, 1, 0, 3, 1, 2, 3, 3, - ], - }, - { - label: 'U.S. States Advance Legislation on Bitcoin Investments and Reserves', - topics: 'texas,passed,state,committee,reserve', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Texas Senate passing a bill enabling Bitcoin investments with public funds\n2. Individual states showing interest in buying into a Bitcoin reserve\n3. FOMO event in history incoming\n4. Support for TJ Roberts introducing bills in Kentucky related to crypto, Bitcoin, gold, guns, and school choice\n5. States voting favorably for Crypto/BTC reserve\n6. Utah holding a final vote on Bitcoin reserve\n7. Oklahoma considering Bitcoin reserve to hedge against inflation\n8. Texas strategic Bitcoin reserve bill to be voted on\n9. Arizona passing a strategic Bitcoin reserve bill in the Senate\n10. Utah introducing a Bitcoin reserve bill\n11. Concerns about separating money from the state and potential scams related to reserves\n12. New Hampshire advancing a Bitcoin reserve bill to the House\n13. Governor DeSantis highlighting state efforts to promote law and order\n\nOverall, the discussion on social media platforms revolves around the adoption and implementation of Bitcoin reserves at the state level, with various states considering or passing bills related to this topic. There is also a mix of support and skepticism regarding the potential impact of these reserves on the crypto industry and the state's financial system.", - data: [ - 11, 0, 6, 4, 2, 1, 29, 1, 8, 1, 2, 3, 3, 2, 1, 1, 0, 1, 3, 0, 4, 4, 2, 3, 2, 3, 0, 4, 0, 1, - 6, 0, 5, 7, 17, 0, 1, 1, 3, 3, 6, 3, 0, 1, 22, 3, 0, 0, 1, 2, 0, 4, 6, 0, 2, - ], - }, - { - label: 'Strategic Bitcoin Reserve in the United States', - topics: 'strategic,reserve,bitcoin,reserves,sovereign', - description: - 'The messages from twitter suggest that there is a lot of discussion and excitement around the idea of a Strategic Bitcoin Reserve in the United States. Many users believe that such a reserve would be beneficial for the crypto industry, with some even suggesting that it should be exclusively focused on Bitcoin rather than including other cryptocurrencies. There is also a debate about the potential inclusion of altcoins in the reserve, with some users arguing that Bitcoin should be the primary focus due to its status as the king of cryptocurrencies. Overall, the sentiment seems to be positive towards the idea of a Strategic Bitcoin Reserve, with users expressing their support for the initiative.', - data: [ - 4, 1, 1, 1, 3, 20, 0, 1, 0, 4, 5, 3, 3, 1, 1, 1, 2, 3, 4, 1, 5, 3, 1, 5, 2, 2, 0, 2, 1, 1, - 5, 0, 7, 1, 3, 5, 1, 2, 2, 5, 2, 3, 4, 0, 28, 5, 3, 11, 1, 1, 3, 0, 2, 0, 0, - ], - }, - { - label: 'ETH Denver', - topics: 'denver,ethdenver,ethereumdenver,great,stage', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include Ethereum Denver, ETH Denver edition of the newsletter, projects being built on EigenLayer, innovation at ETH Denver, Kaito AI, crypto payments, movie-night-meetup in the township, being the first to try new things, podcast with the Vexl team in Prague, and the future of onchain finance. Participants are excited about the developments in the industry and are actively engaging in discussions and events related to these topics.', - data: [ - 1, 1, 3, 3, 1, 0, 1, 2, 3, 0, 8, 2, 2, 11, 0, 4, 10, 4, 3, 5, 5, 22, 3, 7, 3, 2, 3, 2, 0, 1, - 0, 2, 1, 2, 2, 4, 4, 6, 0, 1, 2, 1, 0, 6, 0, 2, 2, 1, 3, 0, 1, 2, 1, 3, 3, - ], - }, - { - label: 'Buy the dip', - topics: 'dip,buy,bought,buying,crowd', - description: - 'The key topic discussed in the messages from twitter is about buying the dip in the crypto industry. Users are sharing their experiences of buying the dip in various cryptocurrencies like Bitcoin and PIPPIN. Some users are discussing the importance of buying the dip to achieve their stacking goals, while others are cautioning about the risks involved in dip buying, especially when using leverage. Quants are mentioned as providing advice on when to buy the dip, and there is a debate on whether it is the right strategy for investors. Overall, the sentiment seems to be mixed, with some users advocating for buying the dip while others are more cautious.', - data: [ - 4, 0, 1, 1, 0, 0, 0, 3, 41, 2, 1, 2, 4, 0, 11, 0, 0, 0, 3, 1, 4, 1, 3, 2, 4, 1, 1, 2, 6, 0, - 1, 1, 3, 2, 0, 2, 2, 0, 1, 6, 7, 5, 1, 1, 2, 2, 3, 1, 4, 0, 0, 0, 2, 2, 6, - ], - }, - { - label: 'BlackRock', - topics: 'blackrock,model,etf,portfolios,portfolio', - description: - "The key topics currently discussed in the messages from twitter are:\n1. BlackRock adding Bitcoin ETF to its portfolio\n2. BlackRock buying two Panama Canal ports from China's Hutchinson\n3. BlackRock CEO suggesting investors to buy the dip\n4. Speculation about BlackRock suppressing Bitcoin price for whales to buy\n5. BlackRock integrating Bitcoin into its model portfolios with a 1-2% allocation\n6. BlackRock's endorsement of Bitcoin through its model portfolios\n7. BlackRock allocating up to 2% of its model portfolio to Bitcoin ETF IBIT\n8. BlackRock being seen as a US Government private wallet\n9. BlackRock's impact on the stock market and cryptocurrency market\n10. BlackRock's influence on financial advisors and institutional investors\n\nOverall, the discussions revolve around BlackRock's increasing involvement in the cryptocurrency market, particularly with Bitcoin, and its recent acquisitions and decisions in the financial industry.", - data: [ - 24, 0, 3, 4, 2, 37, 6, 0, 4, 0, 0, 0, 1, 0, 0, 2, 3, 2, 0, 2, 1, 0, 0, 2, 3, 3, 3, 1, 0, 0, - 0, 3, 0, 4, 3, 0, 0, 1, 1, 1, 5, 5, 1, 0, 2, 0, 0, 0, 0, 1, 2, 1, 4, 0, 4, - ], - }, - { - label: 'ADA', - topics: 'cardano,ada,retweet,surge,breakout', - description: - "Based on the messages from Twitter, the key topics currently being discussed in the crypto community regarding Cardano (ADA) include:\n1. Price Predictions for 2025: Anticipating Strong Growth\n2. Collaboration between Cardano Foundation and SERPRO to advance blockchain adoption in Brazil\n3. Cardano's potential for growth and speed towards reaching $2\n4. Cardano's security features and low risk of major hacks or exploits\n5. Cardano's supply shock incoming with increasing wallet staking and DeFi participation\n6. Cardano price stalling and details of VIP meeting with Charles Hoskinson\n7. Cardano's market cap reaching $100B without Smart Contracts enabled\n8. Introduction of the Cardano-XRP bridge for DeFi opportunities and liquidity\n9. Discussion on diminishing returns in relation to Cardano's price and user growth\n\nOverall, the sentiment towards Cardano appears to be positive with discussions focusing on its potential for growth, security features, and upcoming developments in the ecosystem.", - data: [ - 1, 2, 0, 2, 0, 1, 10, 4, 4, 3, 2, 0, 3, 0, 2, 2, 1, 4, 4, 1, 2, 2, 1, 2, 2, 1, 5, 0, 2, 3, - 4, 1, 7, 0, 7, 1, 4, 3, 1, 3, 1, 3, 7, 0, 5, 9, 1, 1, 3, 0, 2, 2, 4, 4, 0, - ], - }, - { - label: 'APE', - topics: 'apechain,apecoin,ape,empowering,innovators', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. ApeChain Spotlight featuring the Shadow with Brains as the 4K Gator Of The Day.\n2. Discussion about organizing a GIANT event in LA for NFT Art & Culture.\n3. Support for projects like @GratefulApe_eth, @ThankApe, and @notapunkscult on ApeChain.\n4. Mining concepts and whitelisted projects on ApeChain.\n5. Community support for @BushBabyClub and @thtguyt.\n6. Listing of #CAPE on @coinpaprika.\n7. Expansion of ApeBond to @crossfichain.\n8. Creation of the Proof Pass of Ape Chain by @James_LympoDAO and @Geist254.\n9. Trading activities involving apecoin, unicorns, and apes on ApeChain.\n10. Updates on the latest mint with @notapunkscult on ApeChain.', - data: [ - 1, 16, 0, 2, 0, 1, 0, 3, 0, 1, 4, 1, 3, 5, 3, 15, 1, 0, 1, 1, 3, 6, 2, 2, 2, 0, 6, 0, 1, 1, - 0, 5, 1, 4, 1, 2, 0, 6, 2, 1, 0, 2, 4, 0, 0, 3, 1, 1, 3, 2, 0, 0, 4, 4, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-62.json b/priv/repo/major_topics_seed/data-62.json deleted file mode 100644 index 605bd5fcbb..0000000000 --- a/priv/repo/major_topics_seed/data-62.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["06.03.25","07.03.25","07.03.25","07.03.25","07.03.25","07.03.25","07.03.25","07.03.25","08.03.25","08.03.25","08.03.25","08.03.25","08.03.25","08.03.25","08.03.25","08.03.25","09.03.25","09.03.25","09.03.25","09.03.25","09.03.25","09.03.25","09.03.25","09.03.25","10.03.25","10.03.25","10.03.25","10.03.25","10.03.25","10.03.25","10.03.25","10.03.25","11.03.25","11.03.25","11.03.25","11.03.25","11.03.25","11.03.25","11.03.25","11.03.25","12.03.25","12.03.25","12.03.25","12.03.25","12.03.25","12.03.25","12.03.25","12.03.25","13.03.25","13.03.25","13.03.25","13.03.25","13.03.25","13.03.25","13.03.25"],"datasets":[{"label":"ETH Price","topics":"ethereum,eth,foundation,levels,level","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum (ETH) holding strong above $2,000\n- Speculation on ETH price movements, with mentions of a potential discount and price levels to watch\n- Discussion on the selling pressure experienced by ETH in the past 3 months\n- A comparison between Ethereum and Bitcoin, with questions about whether ETH can surpass BTC in market cap\n- Analysis of key resistance zones for ETH and accumulation by investors\n- Technical analysis of ETH price charts and support levels\n- The importance of building valuable applications on the Ethereum network for its growth and adoption\n\nOverall, sentiment towards Ethereum seems mixed, with some users expressing optimism about its potential while others are cautious about its recent price movements.","data":[18,3,11,31,2,2,14,10,12,9,19,12,7,7,4,18,218,22,15,17,11,15,18,27,20,8,8,12,20,30,19,5,19,12,16,14,13,22,14,18,16,9,7,9,7,11,14,20,11,13,7,17,16,15,15]},{"label":"AI","topics":"ai,agents,agent,data,models","description":"The messages from twitter indicate a strong focus on the intersection of artificial intelligence (AI) and cryptocurrency (crypto) within the decentralized technology space. There is discussion about the importance of AI in driving innovation and the future of technology, with mentions of AI agents, AI Companions, and the synergy between different tokens like $AIA and $AMB. The messages also touch on the potential impact of AI on education and enterprise infrastructure, highlighting the need for new tech stacks optimized for AI. Additionally, there is a mention of the role of open source AI in challenging centralized control and the emergence of Web3-native LLMs to enhance AI in decentralized platforms. Overall, the messages reflect a growing interest in the potential of AI within the crypto industry and its broader implications for society and technology.","data":[30,120,22,10,0,3,6,13,3,14,17,26,8,17,10,10,9,21,21,25,18,12,13,20,21,21,33,10,13,21,14,15,16,14,16,24,10,23,11,12,19,7,17,13,18,14,23,22,19,8,9,12,24,12,18]},{"label":"BTC","topics":"btc,bounce,80k,divergence,rsi","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin price movements and predictions, such as a potential drop to $60k or a rise to $1 million in the next 10 years.\n2. Technical analysis indicators like bullish divergence, resistance zones, and support levels.\n3. Market sentiment and fear/greed index, with mentions of a potential bullish reversal.\n4. Legislative developments, such as the Texas Senate passing a Bitcoin reserve bill.\n5. Other cryptocurrencies and their potential addition to institutional portfolios.\n6. Long-term trends and patterns like the Wyckoff Distribution and the 50-week moving average as a bear market indicator.\n7. Speculation on the future growth and adoption of Bitcoin as a store of value.","data":[13,6,3,18,74,79,20,51,22,4,12,16,14,8,7,35,4,17,4,12,7,12,6,34,7,13,7,6,10,23,18,6,14,5,10,9,18,25,17,15,9,11,8,14,9,10,12,20,10,7,7,11,11,14,9]},{"label":"DOGE","topics":"doge,dogecoin,elon,savings,waste","description":"The key topics discussed in the messages from twitter are:\n1. Dogecoin: There are mentions of Dogecoin being referred to as a \"lil baby goat\" and \"King Shit.\" There is also discussion about its price potential, staking opportunities, presale momentum, and tokenomics. Additionally, there is speculation about Dogecoin's future and potential risks, such as a possible 60% crash due to a death cross pattern forming.\n\n2. Elon Musk: There are mentions of Elon Musk in relation to Dogecoin and Tesla. There is a call to prevent Elon from getting richer by accepting bribes to not buy a Tesla. There is also a mention of Elon not informing someone about Dogecoin, but rather Dogecoin finding them.\n\n3. Crypto Industry: There are discussions about the crypto industry in general, including the U.S. government issuing loans in cryptocurrency to individuals over 115 years old. There is also mention of memecoin mania potentially returning.\n\nOverall, the messages from twitter revolve around Dogecoin, Elon Musk, and the broader crypto industry landscape.","data":[5,0,2,4,0,2,1,1,4,3,4,9,4,8,121,3,1,7,6,2,7,11,5,5,2,1,8,2,6,2,6,2,7,7,10,10,1,6,6,5,8,6,4,6,6,4,4,4,6,5,2,7,4,3,0]},{"label":"Art","topics":"art,artist,artists,collection,work","description":"The key topics discussed in the messages from twitter are:\n1. Art and its importance in the crypto industry\n2. Tokenization of art and onchain art\n3. Support for artists and their work\n4. AI Mixed Media and its potential impact on the industry\n5. Digital art and its value in the market\n\nOverall, the messages highlight the growing interest and support for art within the crypto community, as well as the potential for new technologies like AI to revolutionize the art market.","data":[1,6,62,2,1,0,4,1,3,5,11,5,6,4,3,8,3,3,14,3,8,8,7,2,7,5,3,4,14,9,7,5,7,2,4,6,5,3,5,6,5,5,7,2,2,7,3,2,7,6,3,3,10,0,8]},{"label":"Inflation","topics":"inflation,cpi,28,29,expectations","description":"The key topic discussed in the messages from twitter is the Consumer Price Index (CPI) and inflation in the United States. The messages mention that the CPI inflation rate has fallen to 2.8%, below expectations, and that core CPI inflation has also decreased. There is speculation about whether inflation is subsiding and the potential impact on interest rates and the cryptocurrency market, particularly Bitcoin. Some messages suggest that the lower inflation rate could lead to a rate cut by the Federal Reserve. Overall, the messages indicate that the CPI data is closely watched by investors and could lead to market volatility.","data":[5,3,3,0,0,1,23,0,0,2,4,14,2,8,2,5,0,5,2,1,2,2,4,4,4,58,5,5,0,3,7,0,7,4,2,1,2,4,2,4,5,1,3,5,1,1,2,4,6,7,0,3,3,0,5]},{"label":"GameFi","topics":"gaming,games,game,play,web3","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Web3 gaming and its potential for growth and innovation\n- Play-to-earn opportunities in the gaming sector\n- The importance of utility and building in crypto projects\n- The rise of NFTs and their role in empowering creators\n- The impact of community ownership in shaping sports and gaming industries\n- The emergence of new gaming projects and platforms in the Web3 space\n- The need for better advertising and discoverability in Web3 gaming\n- The involvement of investors and funds in supporting Web3 gaming initiatives\n- The excitement and anticipation surrounding upcoming gaming releases and events\n- The potential for real rewards and competition in Web3 gaming\n\nOverall, the discussions on social media reflect a growing interest and enthusiasm for the intersection of gaming, blockchain technology, and decentralized finance in the crypto industry.","data":[1,4,5,2,0,0,4,5,3,4,7,4,2,3,2,7,2,1,3,18,37,4,5,2,2,2,6,3,4,2,3,7,4,5,0,5,14,6,7,7,1,2,3,3,3,5,3,6,2,2,4,1,3,0,3]},{"label":"Whales","topics":"whale,whales,hyperliquid,liquidation,eth","description":"The key topic currently discussed in the crypto industry on social media platforms such as Twitter is the liquidation of whales in the Ethereum market. Whales are large holders of cryptocurrency who make significant trades that can impact the market. These whales have been getting liquidated for millions of dollars due to the recent price volatility in Ethereum. Despite attempts to save their positions with additional deposits, many whales have suffered substantial losses. The liquidation events have caused sharp drops in prices and significant losses for the individuals involved. This trend has sparked discussions about insider trading, market manipulation, and the risks associated with high leverage trading in the crypto market.","data":[4,2,1,4,9,10,2,3,4,3,3,1,6,1,3,6,11,3,2,3,1,2,3,3,11,9,0,2,11,5,2,9,2,7,3,1,1,1,0,1,2,1,5,4,1,0,1,0,2,2,0,3,2,63,2]},{"label":"United States Strategic Bitcoin Reserve","topics":"strategic,reserve,stockpile,states,seized","description":"The key topic discussed in the messages from twitter is the creation of the United States Strategic Bitcoin Reserve. This reserve is seen as a significant milestone in the crypto industry, with implications for legitimizing Bitcoin and establishing a digital Fort Knox for the cryptocurrency. The reserve is being funded through non-taxpayer dollars and is intended to be budget-neutral. This development is seen as a game changer for crypto and could lead to increased adoption and integration of Bitcoin into various sectors, including crypto gaming. The creation of the reserve is also sparking discussions about the future of crypto and the potential for other countries to follow suit.","data":[1,4,1,4,2,19,0,1,3,0,1,5,0,6,1,1,8,2,6,4,3,8,4,3,4,4,2,0,2,4,1,1,2,5,5,4,1,3,2,3,9,2,6,5,4,56,5,2,1,4,2,1,1,0,4]},{"label":"DeFi","topics":"defi,finance,onchain,lending,app","description":"The key topics currently being discussed in the crypto industry on Twitter include DeFi (Decentralized Finance), Aave CEO Stani Kulechov's insights on the future of DeFi, the integration of traditional finance (TradFi) with DeFi, the importance of transparent and reliable oracles for DeFi projects, the potential of tokenized assets and Chainlink powered dApps, the emergence of new DeFi products like Aave's Project Horizon, and the advancements in cross-chain synthetic issuance and derivative exchange protocols like PERI Finance on Polkadot. Overall, there is a lot of excitement and optimism surrounding the growth and potential of DeFi in the crypto community.","data":[2,2,6,1,2,0,1,7,1,7,2,8,2,21,6,3,3,3,6,3,3,3,4,2,3,6,12,2,3,2,2,2,3,5,8,5,2,4,8,6,5,1,3,6,4,1,5,1,4,8,1,3,3,2,3]},{"label":"Altcoins","topics":"altseason,altcoins,rare,pepe,250","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Discussion about trading strategies such as scalping and buying during market dips\n- Mention of specific cryptocurrencies such as $b3, $btc, $eth, $xrp, $ondo, $sui, $audio, $super, $rare, $xcn, $doge, $bonk, $giga, $sol, $pirate, $popcat, $toshi, $shib\n- Reference to altcoins and altseason\n- Speculation on price movements and potential gains\n- Warning about potential scams and rug pulls\n- Encouragement to HODL (hold onto) certain cryptocurrencies\n- Humorous references to Pepe and other characters\n- Emphasis on accumulating more of certain cryptocurrencies\n- Calls to action to invest or trade in specific cryptocurrencies\n- Mention of Coinbase as a preferred platform for trading\n- Discussion about the volatility and risks in the crypto market\n- Reference to specific price targets for certain cryptocurrencies\n- Advice to be cautious and do thorough research before investing\n- Use of emojis and slang terms commonly used in the crypto community","data":[1,0,4,5,0,2,16,2,2,2,4,1,5,3,2,15,0,0,1,4,2,0,4,6,3,0,0,2,2,4,8,2,2,1,1,10,14,1,25,0,3,12,1,5,1,4,2,1,11,0,0,1,4,3,4]},{"label":"SOL","topics":"solana,sol,staked,revenue,staking","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Solana ($SOL) and its performance in the crypto industry. Some key points to note include:\n\n1. Solana is being heavily discussed, with some users expressing their support for the blockchain and others questioning its stability and performance during downtimes.\n2. There are comparisons being made between Solana and other cryptocurrencies like Ethereum ($ETH) and Digibyte, with users highlighting different aspects of each blockchain.\n3. News highlights indicate that Solana's revenue has seen a significant drop from its peak in January, but there are still positive developments such as the registration filed for a Solana Spot ETF.\n4. The price of Solana is being closely monitored, with users discussing potential support levels and the impact of Bitcoin's price movements on Solana.\n5. There is excitement around new projects and launches on the Solana blockchain, such as GMX-Solana, which offers intuitive perpetual swaps and decentralized trading options.\n6. Traders are actively engaging with Solana, making trades and monitoring their portfolios for potential gains.\n\nOverall, the sentiment around Solana appears to be mixed, with some users optimistic about its future potential while others raise concerns about its stability and performance.","data":[6,2,7,4,0,1,2,1,7,2,2,5,4,2,2,3,7,2,5,2,5,2,3,4,1,4,2,4,1,4,2,3,5,1,6,1,7,4,1,5,5,3,5,16,4,5,10,2,5,4,2,8,1,3,3]},{"label":"Grok","topics":"grok,base,token,memecoin,hey","description":"Hey Grok!\n\nBased on the messages from Twitter, it seems that there is a lot of discussion around the crypto industry, particularly regarding memecoins and token launches on various platforms like Base and Bitget. Grok, in collaboration with Bankr, has launched a memecoin called $DRB (Debt Relief Bot) on Base, which has garnered attention and positive reactions from the community.\n\nAdditionally, Grok's AI chatbot accidentally birthed a memecoin called GrokCoin, which quickly reached a market cap of $20 million and a trading volume of $100 million shortly after its launch. This development has sparked interest and excitement among crypto enthusiasts.\n\nThere are also mentions of other tokens like $PAWS and $BOLT, with pre-market trading and new listings on platforms like Bitget and Bitrue. The community seems to be actively engaging with these tokens and discussing their potential for growth and investment opportunities.\n\nOverall, the crypto community on Twitter appears to be buzzing with activity and excitement surrounding new token launches, memecoins, and the potential for significant market movements. It will be interesting to see how these developments unfold and impact the broader crypto industry.","data":[6,5,8,5,0,1,7,1,3,2,3,6,0,5,6,10,1,0,1,2,8,2,33,4,3,4,1,2,3,3,4,2,4,4,3,10,4,2,2,3,3,0,5,3,0,3,2,3,3,2,0,1,2,0,4]},{"label":"Memecoins","topics":"meme,memes,memecoin,coins,memecoins","description":"The current buzz in the crypto industry revolves around meme coins and meme communities. There is a discussion about the rise of memecoins and the potential launch of a memecoin by web2 media giants. The meme market is seen as a supercycle, but it is acknowledged that every cycle comes to an end. There is also talk about the importance of distinguishing between real memes and fake memes in the crypto space. Additionally, there are warnings about meme coin scams and the need to invest wisely. Overall, memes play a significant role in the crypto community and are considered a valuable asset in the industry.","data":[3,0,2,3,3,0,1,1,4,2,2,1,1,2,0,3,2,2,3,2,5,6,1,4,1,3,4,4,3,1,3,52,5,1,1,3,3,1,2,1,5,1,4,0,4,6,1,7,4,2,0,2,3,3,2]},{"label":"XRP","topics":"xrp,ripple,cryptocurrency,altcoins,surge","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. XRP flipping ETH and reaching above $2\n2. Bitcoin reaching $79,500\n3. Market perspective and critical levels being reached\n4. XRP/USD trading pairs being discussed\n5. Comparison between XRP and Bitcoin as future investments\n6. Ripple launching the \"National Cryptocurrency Association\"\n7. XLM breaking past key levels and potential rally to $0.50\n8. XRP's price potential by the 2028 Bitcoin halving\n9. XRP showing strength and potential for recovery\n10. XRP surging 3% and potential breakout on March 13\n11. Exclusive benefits for holding RLB coins on Rollbit account\n12. XRP teetering on $2 level and potential rally or drop depending on Bitcoin's strength\n\nOverall, the discussions on Twitter revolve around price movements, market analysis, potential breakouts, and comparisons between different cryptocurrencies like XRP, ETH, Bitcoin, and XLM.","data":[5,4,0,2,1,0,7,6,4,3,3,6,1,0,3,0,4,3,6,1,3,3,2,7,6,3,1,0,2,1,2,1,3,1,3,1,4,19,6,3,6,3,3,3,2,1,5,3,6,3,1,2,1,1,2]},{"label":"APE","topics":"ape,empowering,generation,limits,nfts","description":"The key topics discussed in the messages from twitter are related to the ApeCoin community and ApeChain platform. The messages highlight the success and rankings of various collections on ApeChain, the empowerment of innovators through ApeChain, the launch of ApeBank as a decentralized borrowing and lending market, the upcoming opening of the Apes on Ape Arcade, and the involvement of community members like @jon_winchell and @Pequelord with their respective projects. Additionally, there is mention of the ApeCoin DAO's latest cycle of AIPs and the use of Delegate XYZ on ApeChain for delegating tokens and NFTs. Overall, the messages reflect a vibrant and active community engaged in various activities and initiatives within the crypto industry.","data":[1,1,14,1,0,0,5,11,2,4,1,2,1,7,1,10,1,2,0,5,11,5,5,4,0,1,4,3,1,2,1,3,5,4,4,1,3,1,5,2,1,1,4,0,1,1,3,3,3,1,0,0,1,1,3]},{"label":"NFT","topics":"nft,nfts,pfp,collection,floor","description":"The key topics currently discussed in the crypto industry on social media include:\n1. Metaverse ready NFTs and their unique features\n2. Testnet NFTs and their potential disappearance on mainnet\n3. Changing profile pictures to grey if walking away with a large sum of money\n4. Undervalued on-chain gems and shiny NFTs\n5. The comeback of NFTs in the market\n6. Upside potential of different projects in the NFT space\n7. Favorite NFT collections\n8. Minting NFTs on platforms like Art Blocks\n9. Top NFT collections in March 2025\n10. NFTs in China and their impact on the industry\n11. Airdrops and the decline in value of certain NFTs post-claiming\n12. NFC tags as objects themselves in the NFT space\n13. Art and technology fusion in NFTs\n14. Quirkies NFT community and profile picture options\n15. Ownership of specific NFTs like \"Skelly Ape #150\" on ApeCoin\n16. NFTs working for passive gains through staking assets\n17. The value of NFTs beyond the price of ETH\n18. The cultural significance and community building aspect of NFTs.","data":[4,2,1,5,0,1,0,1,1,2,6,5,3,1,2,4,0,1,4,1,6,2,1,4,2,3,1,3,3,2,2,2,9,12,6,3,6,2,4,1,3,2,1,0,1,0,1,2,2,3,1,3,4,2,2]},{"label":"BTC Mining","topics":"mining,miners,solo,energy,block","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Bitcoin mining and the use of renewable energy sources for mining operations\n- The launch of new cloud mining platforms like ION Mining\n- The involvement of institutional investors in the mining sector, as seen with CleanSpark being added to the S&P SmallCap 600 index\n- Success stories of solo miners earning significant amounts through mining activities\n- Partnerships and collaborations within the mining industry, such as between Cobre and BHP\n- Updates on upcoming mining conferences and events, such as Mining Disrupt 2025\n- Discussions on grid stabilization and the impact of Bitcoin mining on energy efficiency\n- The use of specific mining equipment, like the Bitaxe setup and SoloSatoshi miner\n- Probability calculations for solo miners to mine Bitcoin blocks\n- The importance of grid-enhancing Bitcoin mining bills for energy and AI leadership\n- Sponsorship announcements for mining conferences and expos, like RK Mission Critical joining Mining Disrupt 2025\n- Lesser-known Bitcoin conferences and events happening globally\n\nOverall, the conversations on Twitter reflect a mix of technical, environmental, financial, and industry-related topics within the crypto mining sector.","data":[1,3,2,0,21,4,2,3,1,3,1,0,1,3,2,6,2,3,1,3,2,1,0,2,3,1,4,1,6,3,1,3,8,6,3,3,0,1,1,0,3,2,1,6,2,5,1,2,1,0,2,2,1,2,0]},{"label":"Buy The Dip","topics":"dip,buy,buying,bought,dyor","description":"The key topic discussed in the messages from twitter is buying the dip in the crypto industry. Traders and investors are discussing the opportunity presented by a dip in prices, with some expressing confidence in buying at lower levels and expecting a rebound. The sentiment is mixed, with some referencing past successful purchases during dips and others cautioning against blindly following the trend. Overall, the theme of buying the dip is prevalent in the messages analyzed.","data":[3,0,1,3,0,0,2,0,42,3,0,2,2,2,13,3,0,2,1,1,2,5,1,1,0,1,4,2,4,1,0,1,0,0,1,2,1,1,1,0,3,2,3,1,1,2,3,3,1,0,0,0,0,0,3]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,cap,usdc,stables","description":"The key topics discussed in the messages from twitter about the crypto industry include stablecoins, their market cap reaching new highs, regulations affecting stablecoins, partnerships with different platforms like Cardano and Solana, acquisitions in the stablecoin infrastructure space, and the use of stablecoins for lending and staking. There is also mention of specific stablecoins like USDT, USDC, and DAI, as well as the growth in demand for digital dollars. Overall, stablecoins are a prominent and evolving aspect of the crypto industry that is being closely followed and discussed by the community.","data":[7,0,1,2,0,1,3,2,2,1,1,1,3,0,0,2,1,0,1,0,0,0,2,1,1,1,1,1,1,0,0,0,2,4,2,0,0,2,4,2,5,1,1,2,38,0,9,2,2,11,0,3,0,1,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-62.ts b/priv/repo/major_topics_seed/data-62.ts deleted file mode 100644 index 968d81afd4..0000000000 --- a/priv/repo/major_topics_seed/data-62.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '06.03.25', - '07.03.25', - '07.03.25', - '07.03.25', - '07.03.25', - '07.03.25', - '07.03.25', - '07.03.25', - '08.03.25', - '08.03.25', - '08.03.25', - '08.03.25', - '08.03.25', - '08.03.25', - '08.03.25', - '08.03.25', - '09.03.25', - '09.03.25', - '09.03.25', - '09.03.25', - '09.03.25', - '09.03.25', - '09.03.25', - '09.03.25', - '10.03.25', - '10.03.25', - '10.03.25', - '10.03.25', - '10.03.25', - '10.03.25', - '10.03.25', - '10.03.25', - '11.03.25', - '11.03.25', - '11.03.25', - '11.03.25', - '11.03.25', - '11.03.25', - '11.03.25', - '11.03.25', - '12.03.25', - '12.03.25', - '12.03.25', - '12.03.25', - '12.03.25', - '12.03.25', - '12.03.25', - '12.03.25', - '13.03.25', - '13.03.25', - '13.03.25', - '13.03.25', - '13.03.25', - '13.03.25', - '13.03.25', - ], - datasets: [ - { - label: 'ETH Price', - topics: 'ethereum,eth,foundation,levels,level', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum (ETH) holding strong above $2,000\n- Speculation on ETH price movements, with mentions of a potential discount and price levels to watch\n- Discussion on the selling pressure experienced by ETH in the past 3 months\n- A comparison between Ethereum and Bitcoin, with questions about whether ETH can surpass BTC in market cap\n- Analysis of key resistance zones for ETH and accumulation by investors\n- Technical analysis of ETH price charts and support levels\n- The importance of building valuable applications on the Ethereum network for its growth and adoption\n\nOverall, sentiment towards Ethereum seems mixed, with some users expressing optimism about its potential while others are cautious about its recent price movements.', - data: [ - 18, 3, 11, 31, 2, 2, 14, 10, 12, 9, 19, 12, 7, 7, 4, 18, 218, 22, 15, 17, 11, 15, 18, 27, - 20, 8, 8, 12, 20, 30, 19, 5, 19, 12, 16, 14, 13, 22, 14, 18, 16, 9, 7, 9, 7, 11, 14, 20, 11, - 13, 7, 17, 16, 15, 15, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,data,models', - description: - 'The messages from twitter indicate a strong focus on the intersection of artificial intelligence (AI) and cryptocurrency (crypto) within the decentralized technology space. There is discussion about the importance of AI in driving innovation and the future of technology, with mentions of AI agents, AI Companions, and the synergy between different tokens like $AIA and $AMB. The messages also touch on the potential impact of AI on education and enterprise infrastructure, highlighting the need for new tech stacks optimized for AI. Additionally, there is a mention of the role of open source AI in challenging centralized control and the emergence of Web3-native LLMs to enhance AI in decentralized platforms. Overall, the messages reflect a growing interest in the potential of AI within the crypto industry and its broader implications for society and technology.', - data: [ - 30, 120, 22, 10, 0, 3, 6, 13, 3, 14, 17, 26, 8, 17, 10, 10, 9, 21, 21, 25, 18, 12, 13, 20, - 21, 21, 33, 10, 13, 21, 14, 15, 16, 14, 16, 24, 10, 23, 11, 12, 19, 7, 17, 13, 18, 14, 23, - 22, 19, 8, 9, 12, 24, 12, 18, - ], - }, - { - label: 'BTC', - topics: 'btc,bounce,80k,divergence,rsi', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin price movements and predictions, such as a potential drop to $60k or a rise to $1 million in the next 10 years.\n2. Technical analysis indicators like bullish divergence, resistance zones, and support levels.\n3. Market sentiment and fear/greed index, with mentions of a potential bullish reversal.\n4. Legislative developments, such as the Texas Senate passing a Bitcoin reserve bill.\n5. Other cryptocurrencies and their potential addition to institutional portfolios.\n6. Long-term trends and patterns like the Wyckoff Distribution and the 50-week moving average as a bear market indicator.\n7. Speculation on the future growth and adoption of Bitcoin as a store of value.', - data: [ - 13, 6, 3, 18, 74, 79, 20, 51, 22, 4, 12, 16, 14, 8, 7, 35, 4, 17, 4, 12, 7, 12, 6, 34, 7, - 13, 7, 6, 10, 23, 18, 6, 14, 5, 10, 9, 18, 25, 17, 15, 9, 11, 8, 14, 9, 10, 12, 20, 10, 7, - 7, 11, 11, 14, 9, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elon,savings,waste', - description: - 'The key topics discussed in the messages from twitter are:\n1. Dogecoin: There are mentions of Dogecoin being referred to as a "lil baby goat" and "King Shit." There is also discussion about its price potential, staking opportunities, presale momentum, and tokenomics. Additionally, there is speculation about Dogecoin\'s future and potential risks, such as a possible 60% crash due to a death cross pattern forming.\n\n2. Elon Musk: There are mentions of Elon Musk in relation to Dogecoin and Tesla. There is a call to prevent Elon from getting richer by accepting bribes to not buy a Tesla. There is also a mention of Elon not informing someone about Dogecoin, but rather Dogecoin finding them.\n\n3. Crypto Industry: There are discussions about the crypto industry in general, including the U.S. government issuing loans in cryptocurrency to individuals over 115 years old. There is also mention of memecoin mania potentially returning.\n\nOverall, the messages from twitter revolve around Dogecoin, Elon Musk, and the broader crypto industry landscape.', - data: [ - 5, 0, 2, 4, 0, 2, 1, 1, 4, 3, 4, 9, 4, 8, 121, 3, 1, 7, 6, 2, 7, 11, 5, 5, 2, 1, 8, 2, 6, 2, - 6, 2, 7, 7, 10, 10, 1, 6, 6, 5, 8, 6, 4, 6, 6, 4, 4, 4, 6, 5, 2, 7, 4, 3, 0, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,collection,work', - description: - 'The key topics discussed in the messages from twitter are:\n1. Art and its importance in the crypto industry\n2. Tokenization of art and onchain art\n3. Support for artists and their work\n4. AI Mixed Media and its potential impact on the industry\n5. Digital art and its value in the market\n\nOverall, the messages highlight the growing interest and support for art within the crypto community, as well as the potential for new technologies like AI to revolutionize the art market.', - data: [ - 1, 6, 62, 2, 1, 0, 4, 1, 3, 5, 11, 5, 6, 4, 3, 8, 3, 3, 14, 3, 8, 8, 7, 2, 7, 5, 3, 4, 14, - 9, 7, 5, 7, 2, 4, 6, 5, 3, 5, 6, 5, 5, 7, 2, 2, 7, 3, 2, 7, 6, 3, 3, 10, 0, 8, - ], - }, - { - label: 'Inflation', - topics: 'inflation,cpi,28,29,expectations', - description: - 'The key topic discussed in the messages from twitter is the Consumer Price Index (CPI) and inflation in the United States. The messages mention that the CPI inflation rate has fallen to 2.8%, below expectations, and that core CPI inflation has also decreased. There is speculation about whether inflation is subsiding and the potential impact on interest rates and the cryptocurrency market, particularly Bitcoin. Some messages suggest that the lower inflation rate could lead to a rate cut by the Federal Reserve. Overall, the messages indicate that the CPI data is closely watched by investors and could lead to market volatility.', - data: [ - 5, 3, 3, 0, 0, 1, 23, 0, 0, 2, 4, 14, 2, 8, 2, 5, 0, 5, 2, 1, 2, 2, 4, 4, 4, 58, 5, 5, 0, 3, - 7, 0, 7, 4, 2, 1, 2, 4, 2, 4, 5, 1, 3, 5, 1, 1, 2, 4, 6, 7, 0, 3, 3, 0, 5, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,play,web3', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- Web3 gaming and its potential for growth and innovation\n- Play-to-earn opportunities in the gaming sector\n- The importance of utility and building in crypto projects\n- The rise of NFTs and their role in empowering creators\n- The impact of community ownership in shaping sports and gaming industries\n- The emergence of new gaming projects and platforms in the Web3 space\n- The need for better advertising and discoverability in Web3 gaming\n- The involvement of investors and funds in supporting Web3 gaming initiatives\n- The excitement and anticipation surrounding upcoming gaming releases and events\n- The potential for real rewards and competition in Web3 gaming\n\nOverall, the discussions on social media reflect a growing interest and enthusiasm for the intersection of gaming, blockchain technology, and decentralized finance in the crypto industry.', - data: [ - 1, 4, 5, 2, 0, 0, 4, 5, 3, 4, 7, 4, 2, 3, 2, 7, 2, 1, 3, 18, 37, 4, 5, 2, 2, 2, 6, 3, 4, 2, - 3, 7, 4, 5, 0, 5, 14, 6, 7, 7, 1, 2, 3, 3, 3, 5, 3, 6, 2, 2, 4, 1, 3, 0, 3, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,hyperliquid,liquidation,eth', - description: - 'The key topic currently discussed in the crypto industry on social media platforms such as Twitter is the liquidation of whales in the Ethereum market. Whales are large holders of cryptocurrency who make significant trades that can impact the market. These whales have been getting liquidated for millions of dollars due to the recent price volatility in Ethereum. Despite attempts to save their positions with additional deposits, many whales have suffered substantial losses. The liquidation events have caused sharp drops in prices and significant losses for the individuals involved. This trend has sparked discussions about insider trading, market manipulation, and the risks associated with high leverage trading in the crypto market.', - data: [ - 4, 2, 1, 4, 9, 10, 2, 3, 4, 3, 3, 1, 6, 1, 3, 6, 11, 3, 2, 3, 1, 2, 3, 3, 11, 9, 0, 2, 11, - 5, 2, 9, 2, 7, 3, 1, 1, 1, 0, 1, 2, 1, 5, 4, 1, 0, 1, 0, 2, 2, 0, 3, 2, 63, 2, - ], - }, - { - label: 'United States Strategic Bitcoin Reserve', - topics: 'strategic,reserve,stockpile,states,seized', - description: - 'The key topic discussed in the messages from twitter is the creation of the United States Strategic Bitcoin Reserve. This reserve is seen as a significant milestone in the crypto industry, with implications for legitimizing Bitcoin and establishing a digital Fort Knox for the cryptocurrency. The reserve is being funded through non-taxpayer dollars and is intended to be budget-neutral. This development is seen as a game changer for crypto and could lead to increased adoption and integration of Bitcoin into various sectors, including crypto gaming. The creation of the reserve is also sparking discussions about the future of crypto and the potential for other countries to follow suit.', - data: [ - 1, 4, 1, 4, 2, 19, 0, 1, 3, 0, 1, 5, 0, 6, 1, 1, 8, 2, 6, 4, 3, 8, 4, 3, 4, 4, 2, 0, 2, 4, - 1, 1, 2, 5, 5, 4, 1, 3, 2, 3, 9, 2, 6, 5, 4, 56, 5, 2, 1, 4, 2, 1, 1, 0, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,onchain,lending,app', - description: - "The key topics currently being discussed in the crypto industry on Twitter include DeFi (Decentralized Finance), Aave CEO Stani Kulechov's insights on the future of DeFi, the integration of traditional finance (TradFi) with DeFi, the importance of transparent and reliable oracles for DeFi projects, the potential of tokenized assets and Chainlink powered dApps, the emergence of new DeFi products like Aave's Project Horizon, and the advancements in cross-chain synthetic issuance and derivative exchange protocols like PERI Finance on Polkadot. Overall, there is a lot of excitement and optimism surrounding the growth and potential of DeFi in the crypto community.", - data: [ - 2, 2, 6, 1, 2, 0, 1, 7, 1, 7, 2, 8, 2, 21, 6, 3, 3, 3, 6, 3, 3, 3, 4, 2, 3, 6, 12, 2, 3, 2, - 2, 2, 3, 5, 8, 5, 2, 4, 8, 6, 5, 1, 3, 6, 4, 1, 5, 1, 4, 8, 1, 3, 3, 2, 3, - ], - }, - { - label: 'Altcoins', - topics: 'altseason,altcoins,rare,pepe,250', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Discussion about trading strategies such as scalping and buying during market dips\n- Mention of specific cryptocurrencies such as $b3, $btc, $eth, $xrp, $ondo, $sui, $audio, $super, $rare, $xcn, $doge, $bonk, $giga, $sol, $pirate, $popcat, $toshi, $shib\n- Reference to altcoins and altseason\n- Speculation on price movements and potential gains\n- Warning about potential scams and rug pulls\n- Encouragement to HODL (hold onto) certain cryptocurrencies\n- Humorous references to Pepe and other characters\n- Emphasis on accumulating more of certain cryptocurrencies\n- Calls to action to invest or trade in specific cryptocurrencies\n- Mention of Coinbase as a preferred platform for trading\n- Discussion about the volatility and risks in the crypto market\n- Reference to specific price targets for certain cryptocurrencies\n- Advice to be cautious and do thorough research before investing\n- Use of emojis and slang terms commonly used in the crypto community', - data: [ - 1, 0, 4, 5, 0, 2, 16, 2, 2, 2, 4, 1, 5, 3, 2, 15, 0, 0, 1, 4, 2, 0, 4, 6, 3, 0, 0, 2, 2, 4, - 8, 2, 2, 1, 1, 10, 14, 1, 25, 0, 3, 12, 1, 5, 1, 4, 2, 1, 11, 0, 0, 1, 4, 3, 4, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,staked,revenue,staking', - description: - "Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Solana ($SOL) and its performance in the crypto industry. Some key points to note include:\n\n1. Solana is being heavily discussed, with some users expressing their support for the blockchain and others questioning its stability and performance during downtimes.\n2. There are comparisons being made between Solana and other cryptocurrencies like Ethereum ($ETH) and Digibyte, with users highlighting different aspects of each blockchain.\n3. News highlights indicate that Solana's revenue has seen a significant drop from its peak in January, but there are still positive developments such as the registration filed for a Solana Spot ETF.\n4. The price of Solana is being closely monitored, with users discussing potential support levels and the impact of Bitcoin's price movements on Solana.\n5. There is excitement around new projects and launches on the Solana blockchain, such as GMX-Solana, which offers intuitive perpetual swaps and decentralized trading options.\n6. Traders are actively engaging with Solana, making trades and monitoring their portfolios for potential gains.\n\nOverall, the sentiment around Solana appears to be mixed, with some users optimistic about its future potential while others raise concerns about its stability and performance.", - data: [ - 6, 2, 7, 4, 0, 1, 2, 1, 7, 2, 2, 5, 4, 2, 2, 3, 7, 2, 5, 2, 5, 2, 3, 4, 1, 4, 2, 4, 1, 4, 2, - 3, 5, 1, 6, 1, 7, 4, 1, 5, 5, 3, 5, 16, 4, 5, 10, 2, 5, 4, 2, 8, 1, 3, 3, - ], - }, - { - label: 'Grok', - topics: 'grok,base,token,memecoin,hey', - description: - "Hey Grok!\n\nBased on the messages from Twitter, it seems that there is a lot of discussion around the crypto industry, particularly regarding memecoins and token launches on various platforms like Base and Bitget. Grok, in collaboration with Bankr, has launched a memecoin called $DRB (Debt Relief Bot) on Base, which has garnered attention and positive reactions from the community.\n\nAdditionally, Grok's AI chatbot accidentally birthed a memecoin called GrokCoin, which quickly reached a market cap of $20 million and a trading volume of $100 million shortly after its launch. This development has sparked interest and excitement among crypto enthusiasts.\n\nThere are also mentions of other tokens like $PAWS and $BOLT, with pre-market trading and new listings on platforms like Bitget and Bitrue. The community seems to be actively engaging with these tokens and discussing their potential for growth and investment opportunities.\n\nOverall, the crypto community on Twitter appears to be buzzing with activity and excitement surrounding new token launches, memecoins, and the potential for significant market movements. It will be interesting to see how these developments unfold and impact the broader crypto industry.", - data: [ - 6, 5, 8, 5, 0, 1, 7, 1, 3, 2, 3, 6, 0, 5, 6, 10, 1, 0, 1, 2, 8, 2, 33, 4, 3, 4, 1, 2, 3, 3, - 4, 2, 4, 4, 3, 10, 4, 2, 2, 3, 3, 0, 5, 3, 0, 3, 2, 3, 3, 2, 0, 1, 2, 0, 4, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memes,memecoin,coins,memecoins', - description: - 'The current buzz in the crypto industry revolves around meme coins and meme communities. There is a discussion about the rise of memecoins and the potential launch of a memecoin by web2 media giants. The meme market is seen as a supercycle, but it is acknowledged that every cycle comes to an end. There is also talk about the importance of distinguishing between real memes and fake memes in the crypto space. Additionally, there are warnings about meme coin scams and the need to invest wisely. Overall, memes play a significant role in the crypto community and are considered a valuable asset in the industry.', - data: [ - 3, 0, 2, 3, 3, 0, 1, 1, 4, 2, 2, 1, 1, 2, 0, 3, 2, 2, 3, 2, 5, 6, 1, 4, 1, 3, 4, 4, 3, 1, 3, - 52, 5, 1, 1, 3, 3, 1, 2, 1, 5, 1, 4, 0, 4, 6, 1, 7, 4, 2, 0, 2, 3, 3, 2, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,cryptocurrency,altcoins,surge', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. XRP flipping ETH and reaching above $2\n2. Bitcoin reaching $79,500\n3. Market perspective and critical levels being reached\n4. XRP/USD trading pairs being discussed\n5. Comparison between XRP and Bitcoin as future investments\n6. Ripple launching the "National Cryptocurrency Association"\n7. XLM breaking past key levels and potential rally to $0.50\n8. XRP\'s price potential by the 2028 Bitcoin halving\n9. XRP showing strength and potential for recovery\n10. XRP surging 3% and potential breakout on March 13\n11. Exclusive benefits for holding RLB coins on Rollbit account\n12. XRP teetering on $2 level and potential rally or drop depending on Bitcoin\'s strength\n\nOverall, the discussions on Twitter revolve around price movements, market analysis, potential breakouts, and comparisons between different cryptocurrencies like XRP, ETH, Bitcoin, and XLM.', - data: [ - 5, 4, 0, 2, 1, 0, 7, 6, 4, 3, 3, 6, 1, 0, 3, 0, 4, 3, 6, 1, 3, 3, 2, 7, 6, 3, 1, 0, 2, 1, 2, - 1, 3, 1, 3, 1, 4, 19, 6, 3, 6, 3, 3, 3, 2, 1, 5, 3, 6, 3, 1, 2, 1, 1, 2, - ], - }, - { - label: 'APE', - topics: 'ape,empowering,generation,limits,nfts', - description: - "The key topics discussed in the messages from twitter are related to the ApeCoin community and ApeChain platform. The messages highlight the success and rankings of various collections on ApeChain, the empowerment of innovators through ApeChain, the launch of ApeBank as a decentralized borrowing and lending market, the upcoming opening of the Apes on Ape Arcade, and the involvement of community members like @jon_winchell and @Pequelord with their respective projects. Additionally, there is mention of the ApeCoin DAO's latest cycle of AIPs and the use of Delegate XYZ on ApeChain for delegating tokens and NFTs. Overall, the messages reflect a vibrant and active community engaged in various activities and initiatives within the crypto industry.", - data: [ - 1, 1, 14, 1, 0, 0, 5, 11, 2, 4, 1, 2, 1, 7, 1, 10, 1, 2, 0, 5, 11, 5, 5, 4, 0, 1, 4, 3, 1, - 2, 1, 3, 5, 4, 4, 1, 3, 1, 5, 2, 1, 1, 4, 0, 1, 1, 3, 3, 3, 1, 0, 0, 1, 1, 3, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,collection,floor', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n1. Metaverse ready NFTs and their unique features\n2. Testnet NFTs and their potential disappearance on mainnet\n3. Changing profile pictures to grey if walking away with a large sum of money\n4. Undervalued on-chain gems and shiny NFTs\n5. The comeback of NFTs in the market\n6. Upside potential of different projects in the NFT space\n7. Favorite NFT collections\n8. Minting NFTs on platforms like Art Blocks\n9. Top NFT collections in March 2025\n10. NFTs in China and their impact on the industry\n11. Airdrops and the decline in value of certain NFTs post-claiming\n12. NFC tags as objects themselves in the NFT space\n13. Art and technology fusion in NFTs\n14. Quirkies NFT community and profile picture options\n15. Ownership of specific NFTs like "Skelly Ape #150" on ApeCoin\n16. NFTs working for passive gains through staking assets\n17. The value of NFTs beyond the price of ETH\n18. The cultural significance and community building aspect of NFTs.', - data: [ - 4, 2, 1, 5, 0, 1, 0, 1, 1, 2, 6, 5, 3, 1, 2, 4, 0, 1, 4, 1, 6, 2, 1, 4, 2, 3, 1, 3, 3, 2, 2, - 2, 9, 12, 6, 3, 6, 2, 4, 1, 3, 2, 1, 0, 1, 0, 1, 2, 2, 3, 1, 3, 4, 2, 2, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,solo,energy,block', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Bitcoin mining and the use of renewable energy sources for mining operations\n- The launch of new cloud mining platforms like ION Mining\n- The involvement of institutional investors in the mining sector, as seen with CleanSpark being added to the S&P SmallCap 600 index\n- Success stories of solo miners earning significant amounts through mining activities\n- Partnerships and collaborations within the mining industry, such as between Cobre and BHP\n- Updates on upcoming mining conferences and events, such as Mining Disrupt 2025\n- Discussions on grid stabilization and the impact of Bitcoin mining on energy efficiency\n- The use of specific mining equipment, like the Bitaxe setup and SoloSatoshi miner\n- Probability calculations for solo miners to mine Bitcoin blocks\n- The importance of grid-enhancing Bitcoin mining bills for energy and AI leadership\n- Sponsorship announcements for mining conferences and expos, like RK Mission Critical joining Mining Disrupt 2025\n- Lesser-known Bitcoin conferences and events happening globally\n\nOverall, the conversations on Twitter reflect a mix of technical, environmental, financial, and industry-related topics within the crypto mining sector.', - data: [ - 1, 3, 2, 0, 21, 4, 2, 3, 1, 3, 1, 0, 1, 3, 2, 6, 2, 3, 1, 3, 2, 1, 0, 2, 3, 1, 4, 1, 6, 3, - 1, 3, 8, 6, 3, 3, 0, 1, 1, 0, 3, 2, 1, 6, 2, 5, 1, 2, 1, 0, 2, 2, 1, 2, 0, - ], - }, - { - label: 'Buy The Dip', - topics: 'dip,buy,buying,bought,dyor', - description: - 'The key topic discussed in the messages from twitter is buying the dip in the crypto industry. Traders and investors are discussing the opportunity presented by a dip in prices, with some expressing confidence in buying at lower levels and expecting a rebound. The sentiment is mixed, with some referencing past successful purchases during dips and others cautioning against blindly following the trend. Overall, the theme of buying the dip is prevalent in the messages analyzed.', - data: [ - 3, 0, 1, 3, 0, 0, 2, 0, 42, 3, 0, 2, 2, 2, 13, 3, 0, 2, 1, 1, 2, 5, 1, 1, 0, 1, 4, 2, 4, 1, - 0, 1, 0, 0, 1, 2, 1, 1, 1, 0, 3, 2, 3, 1, 1, 2, 3, 3, 1, 0, 0, 0, 0, 0, 3, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,cap,usdc,stables', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include stablecoins, their market cap reaching new highs, regulations affecting stablecoins, partnerships with different platforms like Cardano and Solana, acquisitions in the stablecoin infrastructure space, and the use of stablecoins for lending and staking. There is also mention of specific stablecoins like USDT, USDC, and DAI, as well as the growth in demand for digital dollars. Overall, stablecoins are a prominent and evolving aspect of the crypto industry that is being closely followed and discussed by the community.', - data: [ - 7, 0, 1, 2, 0, 1, 3, 2, 2, 1, 1, 1, 3, 0, 0, 2, 1, 0, 1, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 0, 0, - 0, 2, 4, 2, 0, 0, 2, 4, 2, 5, 1, 1, 2, 38, 0, 9, 2, 2, 11, 0, 3, 0, 1, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-63.json b/priv/repo/major_topics_seed/data-63.json deleted file mode 100644 index 71bf913c83..0000000000 --- a/priv/repo/major_topics_seed/data-63.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["13.03.25","14.03.25","14.03.25","14.03.25","14.03.25","14.03.25","14.03.25","14.03.25","15.03.25","15.03.25","15.03.25","15.03.25","15.03.25","15.03.25","15.03.25","15.03.25","16.03.25","16.03.25","16.03.25","16.03.25","16.03.25","16.03.25","16.03.25","16.03.25","17.03.25","17.03.25","17.03.25","17.03.25","17.03.25","17.03.25","17.03.25","17.03.25","18.03.25","18.03.25","18.03.25","18.03.25","18.03.25","18.03.25","18.03.25","18.03.25","19.03.25","19.03.25","19.03.25","19.03.25","19.03.25","19.03.25","19.03.25","19.03.25","20.03.25","20.03.25","20.03.25","20.03.25","20.03.25","20.03.25","20.03.25"],"datasets":[{"label":"BTC","topics":"bitcoin,btc,money,resistance,price","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin price fluctuations and predictions, with mentions of a potential short squeeze and a billionaire predicting a price of $250,000.\n2. Analysis of Bitcoin market indicators and historical patterns, suggesting a potential bear market bottom.\n3. Discussions about Bitcoin as an absolute value asset and its resilience to both positive and negative information.\n4. Trading strategies and technical analysis, with recommendations for short trades around the $84K level.\n5. Podcast episodes and discussions about the role of debt, modern money, and how Bitcoin exposes the truth about financial systems.","data":[19,20,12,53,236,175,18,78,21,41,37,38,43,22,30,30,19,45,38,21,30,38,29,70,30,35,29,29,29,36,47,23,37,28,21,36,33,61,23,47,47,46,27,35,20,31,39,35,50,24,42,20,31,41,27]},{"label":"AI","topics":"ai,agents,agent,models,data","description":"The key topics discussed in the messages from twitter related to the crypto industry include:\n- AI dominance and the role of AI in various aspects of technology\n- The use of AI in social media platforms like TikTok\n- The importance of human experience in decision-making alongside AI\n- The development of AI-powered solutions in the blockchain space\n- The integration of AI into robotics and physical world applications\n- The potential moral implications and backlash surrounding AI technology\n- The use of AI in translating ancient languages like hieroglyphs\n\nOverall, the discussions highlight the growing influence and potential challenges of AI technology in various industries, including crypto and blockchain.","data":[32,158,21,15,7,1,7,15,18,8,9,28,17,33,18,15,16,16,8,21,19,19,20,11,28,21,31,17,18,16,17,14,18,28,15,18,21,15,27,20,13,16,9,19,21,14,19,26,12,24,11,28,18,17,15]},{"label":"ETH","topics":"ethereum,eth,2000,2k,ethereums","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Ethereum being considered the most secure blockchain for global finance\n- Concerns about liquidation prices and potential price drops for Ethereum\n- Recommendations to switch from Ethereum to Bitcoin\n- Discussions about using MetaMask versus Rainbow for earning ETH rewards\n- Speculation on the future price of Ethereum, including potential market cap and price levels\n- Analysis of Ethereum reserves dropping to 6-year lows and its impact on the ETH bull run\n- Debates about the relevance and utility of Ethereum compared to other altcoins\n- Speculation on the potential price movement of Ethereum, including bearish flags and potential price targets\n- Sympathy for Ethereum holders experiencing losses\n- Promotions for trading Ethereum on Bitunix and receiving a free $100 after deposit\n- Reports on the negative outlook for Ethereum and potential price declines\n\nOverall, the sentiment towards Ethereum on Twitter seems mixed, with some users expressing confidence in its future performance while others are more cautious or bearish about its prospects.","data":[7,4,2,10,1,4,12,10,9,21,10,11,5,7,2,10,158,11,16,7,9,11,5,19,13,2,7,12,11,17,13,7,7,6,7,14,9,4,18,15,6,7,11,15,3,11,14,16,9,6,6,5,7,13,8]},{"label":"XRP","topics":"xrp,ripple,sec,case,drops","description":"The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Ripple (XRP) breaking news: The SEC has officially dropped the case against Ripple, leading to speculation about XRP's future classification and potential price increase.\n2. Institutional adoption of XRP: CFTC-approved XRP futures are going live in the US, indicating growing interest from institutional investors.\n3. Technical analysis: XRP has formed a bullish hammer candlestick pattern, signaling a potential price upside and a good opportunity for long trades.\n4. Regulatory developments: The SEC is reconsidering XRP's classification, with discussions about whether it should be classified as a commodity like Ethereum instead of a security.\n5. Speculation about XRP's future: Some community members believe that XRP may not be as relevant in the future due to the development of R3 Corda, which they see as a superior alternative.\n6. Price predictions and trading opportunities: Traders are analyzing XRP's price movements and discussing potential breakout opportunities, especially after the SEC case closure.\n\nOverall, the sentiment in the crypto community regarding XRP is positive, with many anticipating positive developments and price increases in the near future.","data":[6,6,10,9,0,6,50,5,15,4,13,7,8,6,2,39,3,17,13,9,3,1,3,6,8,6,12,12,7,11,3,9,11,5,22,1,4,36,5,6,9,31,10,5,6,10,11,4,5,7,3,7,7,3,9]},{"label":"Art","topics":"art,artist,piece,digital,love","description":"The key topics currently discussed in the crypto industry on social media include traditional VFX, digital mixed media and AI art, generative portraiture, AI-enhanced music, Dutch auctions for digital art, and the implications of AI-generated art in the art-making process. Additionally, there is a focus on individual artists such as Blank Embrace and @kiszkiloszki, as well as upcoming art collections and exhibitions. The community is also engaging in sharing and collecting art on platforms like @objktcom and @pixelsdotart. Overall, the conversation revolves around the intersection of technology and art in the crypto industry.","data":[6,5,66,8,1,1,1,2,2,6,11,8,4,1,11,9,2,7,8,7,12,5,6,5,4,6,0,5,5,8,19,3,8,9,4,12,7,4,8,4,6,1,5,5,6,4,6,11,4,4,0,1,8,3,11]},{"label":"Whales","topics":"whale,short,hyperliquid,position,whales","description":"The key topics discussed in the messages from twitter are:\n1. Crypto whales making large short and long positions with significant leverage on Bitcoin.\n2. Speculation and concerns over sell pressure, volatility, and market reactions due to whale activity.\n3. Profit and loss updates on trades made by professional traders.\n4. Potential illegal activities involving high-leverage trading by certain whales.\n5. Market manipulation attempts by entities like \"Spoofy the Whale\".\n6. Portfolio holdings and trading strategies of individual traders.\n7. Bullish sentiment on specific cryptocurrencies like BNB and memecoins.\n8. Analysis of entry points, liquidation prices, and unrealized profits/losses on trades made by professional traders.","data":[2,2,1,9,8,19,24,4,1,6,6,0,6,2,3,3,7,8,2,2,4,3,10,7,40,3,3,7,6,9,14,5,1,0,5,9,2,2,4,4,3,1,4,33,1,0,4,2,5,4,3,2,0,47,6]},{"label":"MSTR","topics":"mstr,saylor,strategy,130,microstrategy","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. MicroStrategy (MSTR) purchasing 130 Bitcoin worth $10.7 million\n2. Michael Saylor's bullish stance on Bitcoin, with a renewed call for Bitcoin to hit $13 million\n3. Howard Lutnick's fund investing $1 billion into MSTR\n4. Saylors' strategic buying and selling of Bitcoin based on cost of capital\n5. India's leading snack maker Haldiram's stake sale and investment news\n6. Criticism of Saylor's buying patterns and narratives\n7. Speculation about Saylor buying $21 billion worth of Bitcoin\n8. Discussion on the amount of Bitcoin mined per year compared to Saylor's potential purchase\n\nOverall, the messages reflect a mix of excitement, skepticism, and analysis surrounding key players and events in the crypto industry, particularly focusing on MicroStrategy and Michael Saylor's actions and statements.","data":[8,0,3,4,2,2,33,5,8,1,3,3,3,2,6,2,3,7,4,5,5,6,6,4,2,9,3,5,5,4,4,13,14,5,8,2,5,5,2,5,7,6,31,2,3,50,1,2,7,3,3,2,1,1,5]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- Memecoins and their market performance\n- Chamath buying his first memecoin\n- The Pwease meme and its popularity\n- Absolution series about art, memes, and crypto\n- Extreme pullbacks and rallies of memecoins\n- Chain abstraction and stablecoins\n- MetaMask launching a credit card\n- Robinhood adding meme coins PENGU, POPCAT, and PNUT\n- Tokenization of emotions and creativity with $APU\n\nOverall, the discussions revolve around the volatility and trends in the memecoin market, notable figures entering the space, popular memes, and the intersection of art, memes, and crypto. The messages also touch upon the developments in blockchain technology, stablecoins, and the introduction of meme coins on trading platforms like Robinhood.","data":[3,1,4,8,0,0,2,4,3,6,6,2,7,7,2,4,6,11,10,5,2,7,4,8,6,2,10,5,9,9,7,72,3,7,2,4,7,5,5,2,4,3,2,3,9,3,3,5,5,1,3,1,3,6,5]},{"label":"SOL","topics":"sol,solana,futures,cme,etf","description":"The key topics currently being discussed on Twitter regarding Solana ($SOL) include:\n1. Solana's transaction fees hitting their lowest weekly level since September, which is seen as a game changer for the Solana network.\n2. The launch of a Solana ETF, which is expected to happen soon.\n3. The high number of transactions processed by the Solana blockchain, reaching 86 million transactions in a day.\n4. Price predictions and analysis for SOL, with some users expecting significant price increases in the near future.\n5. The potential impact of the Chicago Mercantile Exchange (CME) Group launching futures trading for SOL.\n6. Updates on AVA support for deposits and withdrawals on the Solana network.\n7. Discussion about a new rewards token called $SOLROC, which rewards users with USDC every 30 minutes.\n8. Analysis of price movements and potential opportunities for investment in SOLROC.\n9. User experiences and gains from investing in SOLROC, with some users reporting significant returns on their investments.","data":[5,1,2,8,0,1,11,3,6,7,13,4,7,6,4,6,8,8,2,16,7,5,3,3,2,4,2,7,2,2,2,2,1,3,4,3,3,9,4,5,4,1,7,3,34,5,5,6,8,7,2,7,4,6,5]},{"label":"NFT","topics":"nft,nfts,pfp,mint,collection","description":"The messages from Twitter indicate a growing interest in NFTs within the crypto industry. People are discussing airdrops, new NFT projects, and the potential for NFTs to save Ethereum. There is also mention of NFT interoperability and utility, as well as the excitement surrounding the Vega NFT airdrop. Overall, the crypto community on Twitter seems to be actively engaged in the NFT space and exploring new opportunities within it.","data":[3,2,2,3,3,1,1,2,6,6,6,8,5,1,1,5,6,5,10,4,3,8,3,4,6,4,5,4,5,6,2,3,11,5,22,4,10,2,5,5,2,6,12,2,4,3,4,8,5,3,3,1,6,5,4]},{"label":"Gold","topics":"gold,3000,silver,record,high","description":"Based on the messages from Twitter, it seems that there is a lot of discussion around the relationship between gold and Bitcoin. Some key points mentioned include:\n\n- Gold hitting new all-time highs\n- Bitcoin's price relative to gold\n- Speculation on the movement of gold and Bitcoin\n- Analysts' outlook on gold and related stocks\n- Questions about the sale of gold reserves by central banks\n- Comparison of gold-backed currencies to CBDCs\n- Historical data on the price of gold in Bitcoin\n- Comparison of Bitcoin's price to gold over time\n\nOverall, the sentiment seems to be mixed, with some suggesting that gold may be peaking while Bitcoin is ready to move, and others pointing out the historical relationship between the two assets. The discussion also touches on the potential impact of central bank actions and the value of different currencies.","data":[0,1,3,3,14,6,1,3,3,2,1,1,2,1,3,2,7,3,2,2,3,112,2,3,0,5,1,1,2,5,6,3,4,2,0,3,2,6,1,3,1,2,7,7,2,0,0,0,5,1,1,2,2,1,4]},{"label":"Strategic Reserve","topics":"reserve,strategic,north,committee,passed","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Minnesota lawmaker drafting a Bitcoin Act after personal crypto revelation\n- Binance increasing their ETH holdings by $600 million in the past week\n- BlackRock's spot Bitcoin ETF buying $47.51 million worth of Bitcoin\n- Insider trader having a short worth half a billion dollars on Bitcoin with 40x leverage\n- El Salvador adding Bitcoin to their Strategic Bitcoin Reserve\n- Increasing numbers of crypto companies seeking bank charters under the Trump administration\n- Hyperliquid introducing staking tiers for lower fees\n- Introduction of a bill for a Strategic Bitcoin Reserve in Minnesota\n- Bipartisan support for Bitcoin as a store of value in the United States\n- Introduction of a bill to codify Trump's Bitcoin reserve and digital asset stockpile in the US Treasury\n- Democrat Congressman advocating for American leadership and influence through Bitcoin\n- Warning about a potential Death Cross for Bitcoin\n- Congressman suggesting America should buy and HODL 5%-15% of all Bitcoin\n- House Commerce Committee passing Arizona's Second Reserve Bill enabling the state to hold digital assets like Bitcoin\n- Partisan divide on Bitcoin Reserve bills in Arizona, with Republicans for and Democrats against.","data":[14,2,4,2,4,8,11,7,2,1,2,2,4,3,7,1,2,6,6,1,5,3,2,0,3,14,5,7,3,1,2,2,5,2,4,13,0,3,8,2,5,32,5,1,6,11,2,3,3,2,3,6,2,1,0]},{"label":"DeFi","topics":"defi,finance,protocols,lending,liquidity","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. DeFi (Decentralized Finance): There is a lot of excitement and discussion around DeFi, with mentions of popular DeFi projects like Aave, ChainLink, and RAI Finance. The potential risks and rewards of DeFi are also being highlighted.\n\n2. Partnership and Collaboration: The industry is seeing partnerships between different projects and companies to enhance decentralized trading and bring new opportunities for users. The merger of Web3, AI, and smart contracts is being explored to redefine decentralized trading.\n\n3. Bitcoin and DeFi Integration: Discussions are ongoing about the integration of Bitcoin into the DeFi ecosystem, with a focus on creating more robust, permissionless, and censorship-resistant ways to deploy Bitcoin into DeFi. Projects like tBTC are being mentioned in this context.\n\n4. On-chain Governance and Liquidity Migration: There is anticipation for on-chain governance and a massive liquidity migration to BNB Chain in the future. Projects like Unizen's DAO are being highlighted as part of this shift in the DeFi landscape.\n\n5. Staking and Yield Maximization: Users are encouraged to stake their assets on platforms like JustLendDAO to maximize their yield and participate in the growing decentralized finance ecosystem.\n\nOverall, the crypto community is actively discussing the evolution of DeFi, the integration of traditional assets like Bitcoin, and the potential for new partnerships and collaborations to shape the future of decentralized finance.","data":[5,5,5,6,1,0,1,4,3,7,4,6,2,13,1,7,2,5,5,5,5,7,6,4,7,11,10,4,1,2,6,5,4,7,3,3,3,7,9,2,7,4,3,2,3,5,4,4,4,4,3,7,2,5,1]},{"label":"DOGE","topics":"dogecoin,doge,moon,addresses,2017","description":"The key topics currently being discussed in the crypto community on Twitter include Dogecoin, potential price movements, community events, acceptance of Dogecoin by businesses, shorting of Dogecoin, and the integration of Dogecoin into various platforms. There is excitement about potential price breakouts and rallies, as well as skepticism about the manipulation and control of the market. The Dogecoin community is active and engaged, with discussions about events, projects, and the overall future of Dogecoin.","data":[2,4,3,3,1,0,1,4,2,6,2,0,2,5,76,2,2,2,3,0,2,1,3,2,4,0,2,6,4,1,3,2,2,3,2,4,1,2,0,1,0,5,4,3,0,3,3,2,0,2,2,1,2,4,1]},{"label":"GameFi","topics":"game,gaming,games,play,fun","description":"The messages from twitter discuss a variety of topics related to gaming, including discussions about different types of games such as survival/crafting games, RTS/townbuilder/defense style games, and high-fantasy anime-style action RPGs. There are also mentions of specific games like Crusader: No Remorse and Gran Trak 10. Additionally, there are announcements about new game launches like Assassin's Creed Shadows and updates on gaming ecosystems like Pentagon Games. Overall, the messages highlight the diverse interests and discussions within the gaming community on social media.","data":[5,1,1,3,1,0,1,0,2,4,1,0,6,3,2,5,3,7,1,4,31,3,2,1,1,4,1,2,6,1,3,0,3,5,4,4,13,0,2,5,2,1,3,3,6,4,2,3,6,1,2,1,5,5,3]},{"label":"PEPE","topics":"pepe,frens,fat,memes,memecoin","description":"The key topics discussed in the messages from twitter are:\n1. $PEPE cryptocurrency and its potential for growth\n2. The popularity and community support for $PEPE\n3. Speculation on the price movement of $PEPE\n4. Memes and meme currency related to $PEPE\n5. Potential partnerships with companies like Binance\n6. Use of $PEPE in art and creative projects\n7. Discussion on the future of $PEPE and its role in the crypto industry\n8. References to popular culture and events like World Frog Day and Carnaval\n9. Use of AI technology in relation to $PEPE and meme manufacturing\n10. Speculation on $PEPE forming an Inverse Head & Shoulders pattern and potential breakout.","data":[3,2,1,2,1,0,0,0,4,7,2,3,3,2,1,2,3,2,4,13,3,1,5,6,1,2,3,2,3,3,1,2,2,3,2,4,28,1,1,1,2,1,6,4,0,1,1,0,3,1,3,1,6,2,1]},{"label":"BTC Mining","topics":"mining,miners,bitcoin,block,power","description":"The messages from twitter discuss various aspects of Bitcoin mining, including the challenges faced by miners post-halving, the advantages of combining district heating with Bitcoin mining, the sustainability challenges of PoW mining, and the shift towards smarter ways of investing in Bitcoin mining stocks. The messages also touch upon the role of Bitcoin in fixing grid connectivity issues for AI datacenters and the need for regulatory clarity in the mining industry. Overall, the sentiment seems to be a mix of excitement about new developments in the industry and concerns about sustainability and regulatory challenges.","data":[3,1,1,1,13,7,0,1,1,4,3,3,2,3,2,0,0,2,4,1,1,5,1,8,1,4,4,10,2,3,2,2,21,3,0,1,3,1,8,0,2,2,1,3,3,1,1,2,1,1,3,1,3,1,2]},{"label":"Fed rates","topics":"fed,rates,fomc,cut,cuts","description":"The key topics discussed in the messages from twitter regarding the Federal Reserve and the upcoming FOMC meeting include:\n- Speculation on whether the Fed will cut interest rates\n- Predictions on the Fed's future policy shifts\n- Market reactions to the Fed's decisions\n- The impact of tariffs on Fed policy\n- The Fed's balance sheet reduction and its implications for inflation\n- Central banks' interest rate decisions globally\n- Market anticipation and uncertainty surrounding the Fed's next move\n\nOverall, the messages reflect a mix of analysis, speculation, and market reactions to the Federal Reserve's policies and upcoming FOMC meeting.","data":[3,0,0,5,2,0,4,1,0,0,1,0,4,10,5,1,1,3,19,7,1,0,3,7,0,1,8,0,1,0,7,4,0,0,0,1,8,2,2,8,5,0,2,7,2,2,0,0,2,3,1,2,1,4,1]},{"label":"RWA","topics":"rwa,tokenization,plume,tokenized,realworld","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Aave Founder confirming no new token for Horizon Initiative\n- Tokenization in the financial sector\n- Real-world asset tokenization\n- RWA partners building with ZIGChain\n- Recent trends in RWA and the next major sector in the coming cycle\n- RWA tokenization revolutionizing the bond market\n- Blockchain and the future of tokenizing real-world assets\n- Tokenization as a funding backdoor for European founders\n- Benefits of tokenization for property ownership\n- Top RWA coins by market cap\n\nOverall, the discussions revolve around the advancements and potential of tokenization in various sectors, particularly in real-world assets and the bond market. There is also a focus on regulatory frameworks, infrastructure, and the future implications of tokenization in finance and investment opportunities.","data":[0,2,1,2,4,1,1,3,2,2,1,1,1,1,0,1,4,1,1,4,1,1,2,2,0,3,9,2,1,1,1,3,2,3,1,4,6,3,3,10,3,10,0,3,0,2,3,2,1,21,0,3,0,3,3]},{"label":"APE","topics":"apechain,apecoin,ape,apes,spotlight","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Excitement over the potential comeback of $APE on ApeChain\n- Minting and collecting unique NFTs on ApeChain\n- Community support and unity within the ApeChain community\n- Spotlight sweeps and valuable blockchain art pieces\n- ApeChain empowering NFT founders and creatives\n- New games and updates on the Ape Arcade\n- Strength and support within the Ape community\n- Support for artists within the ApeChain community\n\nOverall, the discussions on Twitter reflect a vibrant and engaged community within the crypto industry, particularly focused on NFTs and the ApeChain platform.","data":[4,1,17,6,0,0,1,7,1,2,3,4,0,3,2,7,1,3,7,2,6,1,2,0,2,1,7,3,1,2,2,1,6,1,0,2,2,3,1,3,0,0,0,3,2,2,2,4,0,2,2,0,1,2,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-63.ts b/priv/repo/major_topics_seed/data-63.ts deleted file mode 100644 index 40e0dee574..0000000000 --- a/priv/repo/major_topics_seed/data-63.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '13.03.25', - '14.03.25', - '14.03.25', - '14.03.25', - '14.03.25', - '14.03.25', - '14.03.25', - '14.03.25', - '15.03.25', - '15.03.25', - '15.03.25', - '15.03.25', - '15.03.25', - '15.03.25', - '15.03.25', - '15.03.25', - '16.03.25', - '16.03.25', - '16.03.25', - '16.03.25', - '16.03.25', - '16.03.25', - '16.03.25', - '16.03.25', - '17.03.25', - '17.03.25', - '17.03.25', - '17.03.25', - '17.03.25', - '17.03.25', - '17.03.25', - '17.03.25', - '18.03.25', - '18.03.25', - '18.03.25', - '18.03.25', - '18.03.25', - '18.03.25', - '18.03.25', - '18.03.25', - '19.03.25', - '19.03.25', - '19.03.25', - '19.03.25', - '19.03.25', - '19.03.25', - '19.03.25', - '19.03.25', - '20.03.25', - '20.03.25', - '20.03.25', - '20.03.25', - '20.03.25', - '20.03.25', - '20.03.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,btc,money,resistance,price', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin price fluctuations and predictions, with mentions of a potential short squeeze and a billionaire predicting a price of $250,000.\n2. Analysis of Bitcoin market indicators and historical patterns, suggesting a potential bear market bottom.\n3. Discussions about Bitcoin as an absolute value asset and its resilience to both positive and negative information.\n4. Trading strategies and technical analysis, with recommendations for short trades around the $84K level.\n5. Podcast episodes and discussions about the role of debt, modern money, and how Bitcoin exposes the truth about financial systems.', - data: [ - 19, 20, 12, 53, 236, 175, 18, 78, 21, 41, 37, 38, 43, 22, 30, 30, 19, 45, 38, 21, 30, 38, - 29, 70, 30, 35, 29, 29, 29, 36, 47, 23, 37, 28, 21, 36, 33, 61, 23, 47, 47, 46, 27, 35, 20, - 31, 39, 35, 50, 24, 42, 20, 31, 41, 27, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - 'The key topics discussed in the messages from twitter related to the crypto industry include:\n- AI dominance and the role of AI in various aspects of technology\n- The use of AI in social media platforms like TikTok\n- The importance of human experience in decision-making alongside AI\n- The development of AI-powered solutions in the blockchain space\n- The integration of AI into robotics and physical world applications\n- The potential moral implications and backlash surrounding AI technology\n- The use of AI in translating ancient languages like hieroglyphs\n\nOverall, the discussions highlight the growing influence and potential challenges of AI technology in various industries, including crypto and blockchain.', - data: [ - 32, 158, 21, 15, 7, 1, 7, 15, 18, 8, 9, 28, 17, 33, 18, 15, 16, 16, 8, 21, 19, 19, 20, 11, - 28, 21, 31, 17, 18, 16, 17, 14, 18, 28, 15, 18, 21, 15, 27, 20, 13, 16, 9, 19, 21, 14, 19, - 26, 12, 24, 11, 28, 18, 17, 15, - ], - }, - { - label: 'ETH', - topics: 'ethereum,eth,2000,2k,ethereums', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Ethereum being considered the most secure blockchain for global finance\n- Concerns about liquidation prices and potential price drops for Ethereum\n- Recommendations to switch from Ethereum to Bitcoin\n- Discussions about using MetaMask versus Rainbow for earning ETH rewards\n- Speculation on the future price of Ethereum, including potential market cap and price levels\n- Analysis of Ethereum reserves dropping to 6-year lows and its impact on the ETH bull run\n- Debates about the relevance and utility of Ethereum compared to other altcoins\n- Speculation on the potential price movement of Ethereum, including bearish flags and potential price targets\n- Sympathy for Ethereum holders experiencing losses\n- Promotions for trading Ethereum on Bitunix and receiving a free $100 after deposit\n- Reports on the negative outlook for Ethereum and potential price declines\n\nOverall, the sentiment towards Ethereum on Twitter seems mixed, with some users expressing confidence in its future performance while others are more cautious or bearish about its prospects.', - data: [ - 7, 4, 2, 10, 1, 4, 12, 10, 9, 21, 10, 11, 5, 7, 2, 10, 158, 11, 16, 7, 9, 11, 5, 19, 13, 2, - 7, 12, 11, 17, 13, 7, 7, 6, 7, 14, 9, 4, 18, 15, 6, 7, 11, 15, 3, 11, 14, 16, 9, 6, 6, 5, 7, - 13, 8, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,case,drops', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Ripple (XRP) breaking news: The SEC has officially dropped the case against Ripple, leading to speculation about XRP's future classification and potential price increase.\n2. Institutional adoption of XRP: CFTC-approved XRP futures are going live in the US, indicating growing interest from institutional investors.\n3. Technical analysis: XRP has formed a bullish hammer candlestick pattern, signaling a potential price upside and a good opportunity for long trades.\n4. Regulatory developments: The SEC is reconsidering XRP's classification, with discussions about whether it should be classified as a commodity like Ethereum instead of a security.\n5. Speculation about XRP's future: Some community members believe that XRP may not be as relevant in the future due to the development of R3 Corda, which they see as a superior alternative.\n6. Price predictions and trading opportunities: Traders are analyzing XRP's price movements and discussing potential breakout opportunities, especially after the SEC case closure.\n\nOverall, the sentiment in the crypto community regarding XRP is positive, with many anticipating positive developments and price increases in the near future.", - data: [ - 6, 6, 10, 9, 0, 6, 50, 5, 15, 4, 13, 7, 8, 6, 2, 39, 3, 17, 13, 9, 3, 1, 3, 6, 8, 6, 12, 12, - 7, 11, 3, 9, 11, 5, 22, 1, 4, 36, 5, 6, 9, 31, 10, 5, 6, 10, 11, 4, 5, 7, 3, 7, 7, 3, 9, - ], - }, - { - label: 'Art', - topics: 'art,artist,piece,digital,love', - description: - 'The key topics currently discussed in the crypto industry on social media include traditional VFX, digital mixed media and AI art, generative portraiture, AI-enhanced music, Dutch auctions for digital art, and the implications of AI-generated art in the art-making process. Additionally, there is a focus on individual artists such as Blank Embrace and @kiszkiloszki, as well as upcoming art collections and exhibitions. The community is also engaging in sharing and collecting art on platforms like @objktcom and @pixelsdotart. Overall, the conversation revolves around the intersection of technology and art in the crypto industry.', - data: [ - 6, 5, 66, 8, 1, 1, 1, 2, 2, 6, 11, 8, 4, 1, 11, 9, 2, 7, 8, 7, 12, 5, 6, 5, 4, 6, 0, 5, 5, - 8, 19, 3, 8, 9, 4, 12, 7, 4, 8, 4, 6, 1, 5, 5, 6, 4, 6, 11, 4, 4, 0, 1, 8, 3, 11, - ], - }, - { - label: 'Whales', - topics: 'whale,short,hyperliquid,position,whales', - description: - 'The key topics discussed in the messages from twitter are:\n1. Crypto whales making large short and long positions with significant leverage on Bitcoin.\n2. Speculation and concerns over sell pressure, volatility, and market reactions due to whale activity.\n3. Profit and loss updates on trades made by professional traders.\n4. Potential illegal activities involving high-leverage trading by certain whales.\n5. Market manipulation attempts by entities like "Spoofy the Whale".\n6. Portfolio holdings and trading strategies of individual traders.\n7. Bullish sentiment on specific cryptocurrencies like BNB and memecoins.\n8. Analysis of entry points, liquidation prices, and unrealized profits/losses on trades made by professional traders.', - data: [ - 2, 2, 1, 9, 8, 19, 24, 4, 1, 6, 6, 0, 6, 2, 3, 3, 7, 8, 2, 2, 4, 3, 10, 7, 40, 3, 3, 7, 6, - 9, 14, 5, 1, 0, 5, 9, 2, 2, 4, 4, 3, 1, 4, 33, 1, 0, 4, 2, 5, 4, 3, 2, 0, 47, 6, - ], - }, - { - label: 'MSTR', - topics: 'mstr,saylor,strategy,130,microstrategy', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n1. MicroStrategy (MSTR) purchasing 130 Bitcoin worth $10.7 million\n2. Michael Saylor's bullish stance on Bitcoin, with a renewed call for Bitcoin to hit $13 million\n3. Howard Lutnick's fund investing $1 billion into MSTR\n4. Saylors' strategic buying and selling of Bitcoin based on cost of capital\n5. India's leading snack maker Haldiram's stake sale and investment news\n6. Criticism of Saylor's buying patterns and narratives\n7. Speculation about Saylor buying $21 billion worth of Bitcoin\n8. Discussion on the amount of Bitcoin mined per year compared to Saylor's potential purchase\n\nOverall, the messages reflect a mix of excitement, skepticism, and analysis surrounding key players and events in the crypto industry, particularly focusing on MicroStrategy and Michael Saylor's actions and statements.", - data: [ - 8, 0, 3, 4, 2, 2, 33, 5, 8, 1, 3, 3, 3, 2, 6, 2, 3, 7, 4, 5, 5, 6, 6, 4, 2, 9, 3, 5, 5, 4, - 4, 13, 14, 5, 8, 2, 5, 5, 2, 5, 7, 6, 31, 2, 3, 50, 1, 2, 7, 3, 3, 2, 1, 1, 5, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,coins', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n- Memecoins and their market performance\n- Chamath buying his first memecoin\n- The Pwease meme and its popularity\n- Absolution series about art, memes, and crypto\n- Extreme pullbacks and rallies of memecoins\n- Chain abstraction and stablecoins\n- MetaMask launching a credit card\n- Robinhood adding meme coins PENGU, POPCAT, and PNUT\n- Tokenization of emotions and creativity with $APU\n\nOverall, the discussions revolve around the volatility and trends in the memecoin market, notable figures entering the space, popular memes, and the intersection of art, memes, and crypto. The messages also touch upon the developments in blockchain technology, stablecoins, and the introduction of meme coins on trading platforms like Robinhood.', - data: [ - 3, 1, 4, 8, 0, 0, 2, 4, 3, 6, 6, 2, 7, 7, 2, 4, 6, 11, 10, 5, 2, 7, 4, 8, 6, 2, 10, 5, 9, 9, - 7, 72, 3, 7, 2, 4, 7, 5, 5, 2, 4, 3, 2, 3, 9, 3, 3, 5, 5, 1, 3, 1, 3, 6, 5, - ], - }, - { - label: 'SOL', - topics: 'sol,solana,futures,cme,etf', - description: - "The key topics currently being discussed on Twitter regarding Solana ($SOL) include:\n1. Solana's transaction fees hitting their lowest weekly level since September, which is seen as a game changer for the Solana network.\n2. The launch of a Solana ETF, which is expected to happen soon.\n3. The high number of transactions processed by the Solana blockchain, reaching 86 million transactions in a day.\n4. Price predictions and analysis for SOL, with some users expecting significant price increases in the near future.\n5. The potential impact of the Chicago Mercantile Exchange (CME) Group launching futures trading for SOL.\n6. Updates on AVA support for deposits and withdrawals on the Solana network.\n7. Discussion about a new rewards token called $SOLROC, which rewards users with USDC every 30 minutes.\n8. Analysis of price movements and potential opportunities for investment in SOLROC.\n9. User experiences and gains from investing in SOLROC, with some users reporting significant returns on their investments.", - data: [ - 5, 1, 2, 8, 0, 1, 11, 3, 6, 7, 13, 4, 7, 6, 4, 6, 8, 8, 2, 16, 7, 5, 3, 3, 2, 4, 2, 7, 2, 2, - 2, 2, 1, 3, 4, 3, 3, 9, 4, 5, 4, 1, 7, 3, 34, 5, 5, 6, 8, 7, 2, 7, 4, 6, 5, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,pfp,mint,collection', - description: - 'The messages from Twitter indicate a growing interest in NFTs within the crypto industry. People are discussing airdrops, new NFT projects, and the potential for NFTs to save Ethereum. There is also mention of NFT interoperability and utility, as well as the excitement surrounding the Vega NFT airdrop. Overall, the crypto community on Twitter seems to be actively engaged in the NFT space and exploring new opportunities within it.', - data: [ - 3, 2, 2, 3, 3, 1, 1, 2, 6, 6, 6, 8, 5, 1, 1, 5, 6, 5, 10, 4, 3, 8, 3, 4, 6, 4, 5, 4, 5, 6, - 2, 3, 11, 5, 22, 4, 10, 2, 5, 5, 2, 6, 12, 2, 4, 3, 4, 8, 5, 3, 3, 1, 6, 5, 4, - ], - }, - { - label: 'Gold', - topics: 'gold,3000,silver,record,high', - description: - "Based on the messages from Twitter, it seems that there is a lot of discussion around the relationship between gold and Bitcoin. Some key points mentioned include:\n\n- Gold hitting new all-time highs\n- Bitcoin's price relative to gold\n- Speculation on the movement of gold and Bitcoin\n- Analysts' outlook on gold and related stocks\n- Questions about the sale of gold reserves by central banks\n- Comparison of gold-backed currencies to CBDCs\n- Historical data on the price of gold in Bitcoin\n- Comparison of Bitcoin's price to gold over time\n\nOverall, the sentiment seems to be mixed, with some suggesting that gold may be peaking while Bitcoin is ready to move, and others pointing out the historical relationship between the two assets. The discussion also touches on the potential impact of central bank actions and the value of different currencies.", - data: [ - 0, 1, 3, 3, 14, 6, 1, 3, 3, 2, 1, 1, 2, 1, 3, 2, 7, 3, 2, 2, 3, 112, 2, 3, 0, 5, 1, 1, 2, 5, - 6, 3, 4, 2, 0, 3, 2, 6, 1, 3, 1, 2, 7, 7, 2, 0, 0, 0, 5, 1, 1, 2, 2, 1, 4, - ], - }, - { - label: 'Strategic Reserve', - topics: 'reserve,strategic,north,committee,passed', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Minnesota lawmaker drafting a Bitcoin Act after personal crypto revelation\n- Binance increasing their ETH holdings by $600 million in the past week\n- BlackRock's spot Bitcoin ETF buying $47.51 million worth of Bitcoin\n- Insider trader having a short worth half a billion dollars on Bitcoin with 40x leverage\n- El Salvador adding Bitcoin to their Strategic Bitcoin Reserve\n- Increasing numbers of crypto companies seeking bank charters under the Trump administration\n- Hyperliquid introducing staking tiers for lower fees\n- Introduction of a bill for a Strategic Bitcoin Reserve in Minnesota\n- Bipartisan support for Bitcoin as a store of value in the United States\n- Introduction of a bill to codify Trump's Bitcoin reserve and digital asset stockpile in the US Treasury\n- Democrat Congressman advocating for American leadership and influence through Bitcoin\n- Warning about a potential Death Cross for Bitcoin\n- Congressman suggesting America should buy and HODL 5%-15% of all Bitcoin\n- House Commerce Committee passing Arizona's Second Reserve Bill enabling the state to hold digital assets like Bitcoin\n- Partisan divide on Bitcoin Reserve bills in Arizona, with Republicans for and Democrats against.", - data: [ - 14, 2, 4, 2, 4, 8, 11, 7, 2, 1, 2, 2, 4, 3, 7, 1, 2, 6, 6, 1, 5, 3, 2, 0, 3, 14, 5, 7, 3, 1, - 2, 2, 5, 2, 4, 13, 0, 3, 8, 2, 5, 32, 5, 1, 6, 11, 2, 3, 3, 2, 3, 6, 2, 1, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,protocols,lending,liquidity', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. DeFi (Decentralized Finance): There is a lot of excitement and discussion around DeFi, with mentions of popular DeFi projects like Aave, ChainLink, and RAI Finance. The potential risks and rewards of DeFi are also being highlighted.\n\n2. Partnership and Collaboration: The industry is seeing partnerships between different projects and companies to enhance decentralized trading and bring new opportunities for users. The merger of Web3, AI, and smart contracts is being explored to redefine decentralized trading.\n\n3. Bitcoin and DeFi Integration: Discussions are ongoing about the integration of Bitcoin into the DeFi ecosystem, with a focus on creating more robust, permissionless, and censorship-resistant ways to deploy Bitcoin into DeFi. Projects like tBTC are being mentioned in this context.\n\n4. On-chain Governance and Liquidity Migration: There is anticipation for on-chain governance and a massive liquidity migration to BNB Chain in the future. Projects like Unizen's DAO are being highlighted as part of this shift in the DeFi landscape.\n\n5. Staking and Yield Maximization: Users are encouraged to stake their assets on platforms like JustLendDAO to maximize their yield and participate in the growing decentralized finance ecosystem.\n\nOverall, the crypto community is actively discussing the evolution of DeFi, the integration of traditional assets like Bitcoin, and the potential for new partnerships and collaborations to shape the future of decentralized finance.", - data: [ - 5, 5, 5, 6, 1, 0, 1, 4, 3, 7, 4, 6, 2, 13, 1, 7, 2, 5, 5, 5, 5, 7, 6, 4, 7, 11, 10, 4, 1, 2, - 6, 5, 4, 7, 3, 3, 3, 7, 9, 2, 7, 4, 3, 2, 3, 5, 4, 4, 4, 4, 3, 7, 2, 5, 1, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,moon,addresses,2017', - description: - 'The key topics currently being discussed in the crypto community on Twitter include Dogecoin, potential price movements, community events, acceptance of Dogecoin by businesses, shorting of Dogecoin, and the integration of Dogecoin into various platforms. There is excitement about potential price breakouts and rallies, as well as skepticism about the manipulation and control of the market. The Dogecoin community is active and engaged, with discussions about events, projects, and the overall future of Dogecoin.', - data: [ - 2, 4, 3, 3, 1, 0, 1, 4, 2, 6, 2, 0, 2, 5, 76, 2, 2, 2, 3, 0, 2, 1, 3, 2, 4, 0, 2, 6, 4, 1, - 3, 2, 2, 3, 2, 4, 1, 2, 0, 1, 0, 5, 4, 3, 0, 3, 3, 2, 0, 2, 2, 1, 2, 4, 1, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,fun', - description: - "The messages from twitter discuss a variety of topics related to gaming, including discussions about different types of games such as survival/crafting games, RTS/townbuilder/defense style games, and high-fantasy anime-style action RPGs. There are also mentions of specific games like Crusader: No Remorse and Gran Trak 10. Additionally, there are announcements about new game launches like Assassin's Creed Shadows and updates on gaming ecosystems like Pentagon Games. Overall, the messages highlight the diverse interests and discussions within the gaming community on social media.", - data: [ - 5, 1, 1, 3, 1, 0, 1, 0, 2, 4, 1, 0, 6, 3, 2, 5, 3, 7, 1, 4, 31, 3, 2, 1, 1, 4, 1, 2, 6, 1, - 3, 0, 3, 5, 4, 4, 13, 0, 2, 5, 2, 1, 3, 3, 6, 4, 2, 3, 6, 1, 2, 1, 5, 5, 3, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frens,fat,memes,memecoin', - description: - 'The key topics discussed in the messages from twitter are:\n1. $PEPE cryptocurrency and its potential for growth\n2. The popularity and community support for $PEPE\n3. Speculation on the price movement of $PEPE\n4. Memes and meme currency related to $PEPE\n5. Potential partnerships with companies like Binance\n6. Use of $PEPE in art and creative projects\n7. Discussion on the future of $PEPE and its role in the crypto industry\n8. References to popular culture and events like World Frog Day and Carnaval\n9. Use of AI technology in relation to $PEPE and meme manufacturing\n10. Speculation on $PEPE forming an Inverse Head & Shoulders pattern and potential breakout.', - data: [ - 3, 2, 1, 2, 1, 0, 0, 0, 4, 7, 2, 3, 3, 2, 1, 2, 3, 2, 4, 13, 3, 1, 5, 6, 1, 2, 3, 2, 3, 3, - 1, 2, 2, 3, 2, 4, 28, 1, 1, 1, 2, 1, 6, 4, 0, 1, 1, 0, 3, 1, 3, 1, 6, 2, 1, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,bitcoin,block,power', - description: - 'The messages from twitter discuss various aspects of Bitcoin mining, including the challenges faced by miners post-halving, the advantages of combining district heating with Bitcoin mining, the sustainability challenges of PoW mining, and the shift towards smarter ways of investing in Bitcoin mining stocks. The messages also touch upon the role of Bitcoin in fixing grid connectivity issues for AI datacenters and the need for regulatory clarity in the mining industry. Overall, the sentiment seems to be a mix of excitement about new developments in the industry and concerns about sustainability and regulatory challenges.', - data: [ - 3, 1, 1, 1, 13, 7, 0, 1, 1, 4, 3, 3, 2, 3, 2, 0, 0, 2, 4, 1, 1, 5, 1, 8, 1, 4, 4, 10, 2, 3, - 2, 2, 21, 3, 0, 1, 3, 1, 8, 0, 2, 2, 1, 3, 3, 1, 1, 2, 1, 1, 3, 1, 3, 1, 2, - ], - }, - { - label: 'Fed rates', - topics: 'fed,rates,fomc,cut,cuts', - description: - "The key topics discussed in the messages from twitter regarding the Federal Reserve and the upcoming FOMC meeting include:\n- Speculation on whether the Fed will cut interest rates\n- Predictions on the Fed's future policy shifts\n- Market reactions to the Fed's decisions\n- The impact of tariffs on Fed policy\n- The Fed's balance sheet reduction and its implications for inflation\n- Central banks' interest rate decisions globally\n- Market anticipation and uncertainty surrounding the Fed's next move\n\nOverall, the messages reflect a mix of analysis, speculation, and market reactions to the Federal Reserve's policies and upcoming FOMC meeting.", - data: [ - 3, 0, 0, 5, 2, 0, 4, 1, 0, 0, 1, 0, 4, 10, 5, 1, 1, 3, 19, 7, 1, 0, 3, 7, 0, 1, 8, 0, 1, 0, - 7, 4, 0, 0, 0, 1, 8, 2, 2, 8, 5, 0, 2, 7, 2, 2, 0, 0, 2, 3, 1, 2, 1, 4, 1, - ], - }, - { - label: 'RWA', - topics: 'rwa,tokenization,plume,tokenized,realworld', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Aave Founder confirming no new token for Horizon Initiative\n- Tokenization in the financial sector\n- Real-world asset tokenization\n- RWA partners building with ZIGChain\n- Recent trends in RWA and the next major sector in the coming cycle\n- RWA tokenization revolutionizing the bond market\n- Blockchain and the future of tokenizing real-world assets\n- Tokenization as a funding backdoor for European founders\n- Benefits of tokenization for property ownership\n- Top RWA coins by market cap\n\nOverall, the discussions revolve around the advancements and potential of tokenization in various sectors, particularly in real-world assets and the bond market. There is also a focus on regulatory frameworks, infrastructure, and the future implications of tokenization in finance and investment opportunities.', - data: [ - 0, 2, 1, 2, 4, 1, 1, 3, 2, 2, 1, 1, 1, 1, 0, 1, 4, 1, 1, 4, 1, 1, 2, 2, 0, 3, 9, 2, 1, 1, 1, - 3, 2, 3, 1, 4, 6, 3, 3, 10, 3, 10, 0, 3, 0, 2, 3, 2, 1, 21, 0, 3, 0, 3, 3, - ], - }, - { - label: 'APE', - topics: 'apechain,apecoin,ape,apes,spotlight', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Excitement over the potential comeback of $APE on ApeChain\n- Minting and collecting unique NFTs on ApeChain\n- Community support and unity within the ApeChain community\n- Spotlight sweeps and valuable blockchain art pieces\n- ApeChain empowering NFT founders and creatives\n- New games and updates on the Ape Arcade\n- Strength and support within the Ape community\n- Support for artists within the ApeChain community\n\nOverall, the discussions on Twitter reflect a vibrant and engaged community within the crypto industry, particularly focused on NFTs and the ApeChain platform.', - data: [ - 4, 1, 17, 6, 0, 0, 1, 7, 1, 2, 3, 4, 0, 3, 2, 7, 1, 3, 7, 2, 6, 1, 2, 0, 2, 1, 7, 3, 1, 2, - 2, 1, 6, 1, 0, 2, 2, 3, 1, 3, 0, 0, 0, 3, 2, 2, 2, 4, 0, 2, 2, 0, 1, 2, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-64.json b/priv/repo/major_topics_seed/data-64.json deleted file mode 100644 index 1f1b8ceca7..0000000000 --- a/priv/repo/major_topics_seed/data-64.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["20.03.25","21.03.25","21.03.25","21.03.25","21.03.25","21.03.25","21.03.25","21.03.25","22.03.25","22.03.25","22.03.25","22.03.25","22.03.25","22.03.25","22.03.25","22.03.25","23.03.25","23.03.25","23.03.25","23.03.25","23.03.25","23.03.25","23.03.25","23.03.25","24.03.25","24.03.25","24.03.25","24.03.25","24.03.25","24.03.25","24.03.25","24.03.25","25.03.25","25.03.25","25.03.25","25.03.25","25.03.25","25.03.25","25.03.25","25.03.25","26.03.25","26.03.25","26.03.25","26.03.25","26.03.25","26.03.25","26.03.25","26.03.25","27.03.25","27.03.25","27.03.25","27.03.25","27.03.25","27.03.25","27.03.25"],"datasets":[{"label":"BTC","topics":"btc,resistance,bitcoin,bullish,higher","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin price movements and predictions, with discussions on resistance levels and potential breakouts.\n2. Market analysis and insights, including discussions on trading profits and market updates.\n3. Seasonality trends for Bitcoin, with a focus on historical data and potential upside.\n4. Analysis of Bitcoin's technical indicators, such as moving averages and implied volatility.\n5. Discussion on key support and resistance levels for short and medium-term Bitcoin holders.\n6. Speculation on the impact of a potential $300 billion Bitcoin buy on the price of BTC.\n7. Mention of a market analyst who has accurately predicted Bitcoin bottoms multiple times.\n8. Promotion of a trading course for maximizing profits in the current market conditions.\n9. Speculation on the future of Bitcoin, including discussions on price targets like $1 million.\n10. Announcement of a upcoming market analysis webinar with insights and suggestions for traders.","data":[6,4,1,3,2,36,102,9,43,23,11,22,22,14,6,2,11,4,14,16,6,3,9,12,29,5,4,11,3,4,18,15,13,10,5,7,10,5,36,21,23,20,14,25,9,11,12,18,21,15,5,8,10,18,8]},{"label":"AI","topics":"ai,agents,agent,models,data","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry include artificial intelligence (AI), robots, blockchain, data security, and weather forecasting. There is a focus on the potential of AI in various industries such as healthcare, education, and weather prediction. Additionally, there are mentions of concerns about the misuse of AI and the need for regulations to ensure AI's ethical use. The messages also touch upon the intersection of AI with other technologies like blockchain and the potential for AI to revolutionize traditional models in various sectors. Overall, the discussions highlight the growing importance and impact of AI in shaping the future of different industries.","data":[40,101,3,10,15,6,1,5,7,2,14,8,14,2,13,7,19,12,14,8,16,25,17,14,8,16,19,7,3,11,14,15,10,12,16,8,14,12,13,8,12,14,10,13,6,11,12,18,7,21,7,14,12,10,12]},{"label":"ETH","topics":"eth,ethereum,ethereums,low,supply","description":"The key topics discussed in the messages from Twitter are:\n1. CryptoSkulls under 0.1 ETH\n2. Ethereum's 24-hour revenue\n3. $FET\n4. Ethereum price forecast\n5. $RIO - $USDT\n6. $ZKJ staking\n7. $VVV vs $ETH price comparison\n8. $EAI market anomaly\n9. $Brett and its correlation to ETH price\n10. Market conditions and potential price movements for ETH and other cryptocurrencies.","data":[11,0,1,2,11,10,1,4,7,5,7,6,2,9,2,4,6,94,6,9,4,8,10,7,17,6,2,2,1,3,12,7,1,7,2,6,5,4,11,8,8,9,3,12,5,6,23,1,12,7,6,9,1,8,4]},{"label":"XRP","topics":"ripple,xrp,sec,case,lawsuit","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Ripple and Uber partnership: There is excitement about a potential collaboration between Ripple and Uber, referred to as \"Ripple meets Uber.\"\n\n2. XRP ETF launch: Ripple CEO Brad Garlinghouse expects an XRP ETF to launch in the second half of 2025, which is seen as a bullish development.\n\n3. Ripple SEC case settlement: The Ripple $XRP case with the SEC has been confirmed to be over, with an agreement reached between the two parties.\n\n4. Crypto Strategic Reserve: Discussions about XRP, ADA, and Bitcoin being part of a strategic reserve in the crypto industry.\n\n5. XRP price predictions: Speculation about the potential price movement of XRP, including the possibility of significant gains if certain conditions are met.\n\n6. XRP and XLM performance: Data from South Korea's largest exchange shows that XRP and XLM were the top-performing assets, with a focus on XRP adoption in the region.\n\n7. New developments for XRP holders: Information about a new key date for XRP holders, as well as major exchanges listing ADA and Coinbase for futures collateral.\n\n8. Michael Saylor and XRP: Speculation about what would happen if Michael Saylor swapped his Bitcoin holdings for XRP, and the potential impact on the price of XRP.\n\n9. Crypto news updates: Various news updates related to the crypto industry, including the potential launch of XRP ETFs, Coinbase's stake in Ethereum, and real estate tokenization projects.\n\n10. XRP Airdrop: Information about an ongoing XRP airdrop giveaway, where participants have the chance to win $50 worth of XRP.\n\nOverall, the discussions on social media platforms indicate a high level of interest and speculation surrounding Ripple, XRP, and other cryptocurrencies in the industry.","data":[13,3,0,2,0,2,0,13,9,8,10,6,1,4,1,4,10,6,5,10,2,5,3,4,7,3,9,3,2,11,4,2,5,2,5,7,6,4,26,5,3,31,6,11,6,3,7,5,2,4,4,6,5,5,8]},{"label":"GameFi","topics":"gaming,game,games,play,web3","description":"The key topics discussed in the messages from twitter are related to gaming, blockchain-powered gaming hubs, partnerships in the gaming industry, new game releases, feedback on gaming experiences, and the future of Web3 gaming. Some specific games and platforms mentioned include GGEM Launcher, Navix Ecosystem, PolyGunnerz, Gameflip, ForgotPlayland, Epic Games, Super Galactic + UFO Gaming Hub, My Pet Hooligan, $MCRT currency, and Swords of Blood. The messages also highlight the excitement and support for these games and platforms within the gaming community.","data":[7,0,0,2,3,4,0,5,3,5,7,3,5,4,1,4,5,3,3,8,54,12,8,5,0,5,9,3,0,13,4,6,8,2,4,2,4,21,6,2,9,10,5,2,5,7,2,5,3,2,4,4,5,11,2]},{"label":"DOGE","topics":"dogecoin,doge,elon,musk,breakout","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Dogecoin (DOGE) next-month projection and payment integration\n- Dogecoin secrets and forecasts for 1-month and 1-week\n- Dogecoin's potential breakout and return to the $0.40s\n- Crypto market moves with DOGE pumping while XRP and SOL dip\n- Dogecoin surging 18% in 3 days and analysts eyeing a breakout to $0.8\n- Analysts predicting a potential surge to $0.50 for DOGE by April\n- Buying BabyDoge using FIAT via the QRIS banking system\n\nOverall, the sentiment on Twitter seems positive towards Dogecoin and other cryptocurrencies, with analysts and investors closely monitoring price movements and potential breakouts.","data":[4,2,0,0,1,4,0,1,1,4,2,6,0,8,1,89,38,3,3,4,3,9,2,5,6,2,4,6,0,6,6,4,4,0,3,0,1,3,2,2,3,4,6,2,4,5,3,6,4,1,2,0,1,3,4]},{"label":"pDAI on Pulsechain","topics":"pulsechain,richard,heart,dai,fud","description":"The key topics discussed in the twitter messages are:\n- pDAI\n- Richard Heart\n- PulseChain\n- Weak hands\n- Shake-out\n- Deflationary DeFi Revolution\n- Hestia\n- Vietnamese Kid\n- Moon King\n\nOverall, the messages seem to revolve around the price movements and speculation surrounding pDAI, as well as the actions and statements of Richard Heart. There is also mention of PulseChain and the concept of weak hands in the crypto industry. Additionally, there is discussion about a deflationary DeFi token called Hestia and the influence of a Vietnamese Kid in the market. The term \"Moon King\" is used to describe someone who is successful in their crypto investments.","data":[3,1,0,0,1,6,0,3,9,7,5,5,4,4,2,7,3,0,5,4,11,10,5,14,3,9,1,2,2,4,3,5,2,7,3,5,3,7,5,28,8,11,2,3,8,0,3,4,12,2,3,5,6,5,4]},{"label":"GameStop Adds Bitcoin to Treasury Reserves","topics":"gamestop,gme,treasury,billion,13","description":"The key topic discussed in the messages from Twitter is GameStop's decision to add Bitcoin to its treasury reserve assets. GameStop announced a plan to raise $1.3 billion to buy Bitcoin, following in the footsteps of companies like MicroStrategy. This decision has sparked debate and speculation among social media users, with some questioning the strategy behind using debt to buy Bitcoin when the company already has a significant amount of cash on hand. Overall, GameStop's move to invest in Bitcoin has generated excitement and interest in the market, with some seeing it as a bullish signal for both GameStop and the cryptocurrency market.","data":[4,10,1,3,2,2,1,25,0,10,1,4,3,0,2,1,1,0,2,2,98,2,2,1,2,3,7,3,1,0,0,1,3,2,3,2,2,3,3,8,3,3,5,4,2,1,1,0,4,0,2,4,6,3,3]},{"label":"Stablecoins","topics":"stablecoin,stablecoins,stables,usdc,alltime","description":"The key topics discussed in the messages from Twitter regarding the crypto industry and stablecoins include:\n1. Stablecoin market cap reaching an all-time high of $230.45B\n2. Introduction of new stablecoins such as USD1, AVIT, WYST, and FYHXX\n3. Partnership between Custodia and Vantage for a bank-issued stablecoin\n4. Growth in supply and revenue of USDS\n5. Surge in supply of USDC.e on the Sonic blockchain\n6. Discussion on the importance of privacy and compliance in stablecoin transactions\n7. Adoption of stablecoins by major banks like Bank of America and Wells Fargo\n8. Potential for stablecoins to be used as rewards points for shopping\n9. Increase in ERC-20 stablecoins on Binance\n10. Mention of Plasma technology for mass adoption in the stablecoin vertical.","data":[2,2,0,1,3,4,1,3,4,6,3,0,3,0,1,1,2,4,4,2,0,3,3,4,3,6,1,0,1,10,4,4,0,8,2,5,6,4,3,5,3,1,2,3,4,57,6,4,4,16,1,21,0,2,4]},{"label":"Hyperliquid Delists Jelly Memecoin Amid Suspicious Market Activity","topics":"hyperliquid,hype,position,vault,binance","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Suspicious market activity on Hyperliquid leading to the delisting of the Jelly memecoin $JELLY.\n2. Hyperliquid Provider (HLP) vault facing significant losses due to trader attacks.\n3. Centralized exchanges like Binance and OKX being criticized for their actions in the market.\n4. Hyperliquid's volume surpassing other cryptocurrencies like $SUI and $ARB.\n5. Hyperliquid experiencing outflows of USDC after the Jelly liquidation.\n6. The price volatility and profitability of $HYPE and $JELLY tokens.\n7. The impact of market manipulation on retail investors and the overall crypto market.\n8. The role of validators and the Hyper Foundation in protecting the network and reimbursing users.\n9. The potential bankruptcy of platforms like Bybit and the implications for investors.\n10. The overall sentiment towards centralized organizations and the need for decentralized solutions in the industry.","data":[5,3,0,3,2,5,0,5,5,3,2,4,3,0,8,4,3,5,5,2,2,9,2,4,2,45,15,2,2,3,10,6,2,1,2,5,2,2,1,4,4,0,0,3,6,1,2,3,7,6,6,4,9,3,2]},{"label":"BTC Mining","topics":"mining,block,solo,miners,mined","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin mining machines and the evolution over 16 years\n2. OCEAN's hashrate reaching over 6 Eh/s\n3. Centralization concerns in mining\n4. Solo mining at home and its possibilities\n5. Mimesis Capital as a Bronze Partner of BTC Prague 2025\n6. Bitcoin miner winning a reward of R$ 1.5 million\n7. Debate on Bitcoin's impact on the environment in terms of energy consumption\n8. Excitement and opportunities in Bitcoin mining, with mentions of Mining Disrupt event\n9. Block rewards structure and concerns about one individual holding a significant portion of the supply\n10. Technical details and optimizations in mining equipment\n11. Discussion on Bitcoin price, dominance, and recent mining success stories\n\nOverall, the discussions on Twitter reflect a mix of technical, environmental, financial, and speculative aspects of the crypto industry, with a focus on Bitcoin mining and related events.","data":[6,4,2,0,6,3,14,18,3,1,1,1,5,0,2,2,2,3,1,3,1,5,5,12,4,4,1,3,1,4,3,3,0,27,3,1,4,0,2,1,3,1,0,4,6,2,2,1,2,2,0,3,4,1,2]},{"label":"DeFi","topics":"defi,finance,protocols,tradfi,yield","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. DeFi (Decentralized Finance): There is a lot of excitement around DeFi breaking traditional finance barriers and providing financial opportunities to the community. Projects like PERI Finance and BTCFi are mentioned as leading the way in transforming the financial landscape.\n\n2. Gauntlet Frontier Vaults: A new DeFi product introduced on MorphoLabs targeting high-risk optimized yields across Morpho Markets. Incentives such as MORPHO and SyrupUSDC from Maple Finance are highlighted.\n\n3. Cardano and ZIGChain: Discussions about Cardano being an exciting time to be in crypto, and ZIGChain building infrastructure to serve everyone with wealth-building tools once reserved for the elite.\n\n4. CoolFi and Bitte: CoolFi's DeFi app powered by a custom AI agent built on Bitte is mentioned as a game-changer for DeFi, offering zero gas fees, seamless cross-chain swaps, and no KYC requirements.\n\n5. OpenOcean: The DeFi trading features on OpenOcean are highlighted, including swaps, non-custodial DCA & Limit orders, memes, stable yields, and perps.\n\n6. OmnityNetwork: True Bitcoin DeFi without sacrificing custody is discussed, with features like RichSwap DEX with full Bitcoin custody preservation and tokenized UTXOs for true DeFi without bridges.\n\n7. DeFi Evolution: The rapid evolution of DeFi driven by innovation, global events, and regulations is emphasized, with the importance of keeping up with the changes.\n\nOverall, the discussions on Twitter reflect a growing interest and excitement in the crypto industry, particularly in the DeFi sector and new products and projects that are pushing the boundaries of traditional finance.","data":[0,2,0,0,2,3,0,2,9,1,2,2,4,9,9,3,5,8,3,9,3,4,8,0,1,4,5,3,2,1,4,1,3,4,2,2,5,1,7,7,4,1,1,2,4,5,2,3,2,1,5,8,3,4,5]},{"label":"NFT","topics":"nft,nfts,collection,floor,mint","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include NFTs, the rise of NFT communities, the potential for a new NFT bull run, regulatory updates on NFTs, the launch of new NFT features like Mintle Launchpad, and personal experiences and journeys into the world of NFTs. There is also a focus on the importance of community involvement, the value of rarity in NFT collections, and the continuous evolution of the NFT space. Overall, there is a sense of excitement and optimism surrounding the future of NFTs and their impact on the crypto industry.","data":[2,0,0,0,4,8,0,1,3,4,2,5,0,3,0,1,2,3,3,5,6,6,11,1,0,5,4,2,0,3,2,7,2,2,3,20,1,3,3,8,2,3,6,5,5,3,0,5,5,4,1,2,9,2,1]},{"label":"SOL","topics":"solana,sol,wallets,presale,200","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana (SOL) dominance in the sector, with mentions of its price movements and market struggles.\n2. The launch of a Spot Solana ETF by Fidelity, joining other companies in the race.\n3. Speculation about potential breakout and surge in SOL price, with mentions of key levels and indicators.\n4. Discussion about new Solana tokens and potential moonshots.\n5. Excitement about the future of DeFi on Solana, with mentions of innovative yield opportunities and accessibility.\n6. Analysis of market trends, including volume confirmation for breakout sustainability and moving averages.\n7. Nostalgic reflections on past profits and successful trades on Solana.\n8. Promotions of new projects and tokens on Solana, with calls for participation and bullish sentiments.\n9. Giveaways and promotions for viewers, encouraging engagement and participation in the crypto community.\n10. Observations about insider trading and potential buy the rumor, sell the news events in the market.","data":[4,3,0,0,1,2,0,4,1,7,6,0,3,1,3,1,2,4,9,1,5,2,3,0,7,1,1,2,3,5,2,7,5,3,3,1,1,1,9,2,4,1,4,3,14,5,4,2,1,4,0,0,2,2,5]},{"label":"APE","topics":"ape,apes,club,nfts,mint","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Bored Ape Yacht Club and the art associated with it\n- ApeChain and ApeCoin\n- NFT collections and minting\n- Rules updates for Apes Win\n- Brand recognition and anticipation for upcoming reveals\n- Accumulation of Apes on Ape\n- Highlighting Ape Chain projects and founders\n- Death Match Royal Rumble for Prime Ape NFTs\n- Discussion about specific coins like $DGC and their development teams\n\nOverall, the crypto community on social media is actively engaged in discussing various projects, collections, and developments within the industry.","data":[0,1,11,4,2,3,0,8,1,1,2,10,1,3,5,2,0,0,3,1,1,7,3,2,3,2,1,2,0,2,1,1,2,8,0,4,3,2,2,1,1,5,3,0,5,5,2,0,2,2,1,1,2,5,3]},{"label":"ETF Flows","topics":"etfs,inflows,net,inflow,etf","description":"The key topic discussed in the messages from Twitter is the surge in daily inflows into Bitcoin ETFs, with several consecutive days of net inflows being recorded. Institutional interest in Bitcoin ETFs is returning, with significant amounts of money being invested in these funds. Additionally, there is a comparison between traditional ETFs and a new Cycle Strategy ETF that aims to increase dividends and fees for holders. Ethereum spot ETFs, on the other hand, saw a net outflow for the week. Overall, the trend seems to be positive for Bitcoin ETFs, with potential short-term volatility expected due to tariff fears but a strong second half of the year predicted with any QE from the Federal Reserve.","data":[3,0,0,0,2,3,17,1,0,0,1,1,3,3,3,4,1,29,2,2,3,0,3,0,0,0,1,0,0,0,2,1,0,0,2,2,4,1,0,0,3,4,4,0,14,2,0,0,1,4,0,0,1,3,1]},{"label":"Whales","topics":"whale,whales,worth,2017,accumulation","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin whales making significant moves, such as withdrawing large amounts of BTC from exchanges and accumulating more assets.\n2. The impact of whales on the crypto market, including their ability to influence prices and trends.\n3. The significance of staking in the crypto landscape, as highlighted by a whale sending ETH tokens to staking to earn yields.\n4. Ethereum whales returning as ETH surpasses $2,000, indicating a potential price surge.\n5. Dogecoin whales accumulating over 120M $DOGE in a week, potentially fueling a breakout.\n6. The behavior of whales in relation to retail investors, with whales loading up on assets while retail investors sell.\n7. The speculation around a Bitcoin whale converting stablecoins to ETH and buying up NFTs, potentially impacting the market.\n8. The overall sentiment of bullishness among whales, as seen in their actions of stacking assets and attending exclusive gatherings like the Whale Dinner.\n\nOverall, the presence and actions of whales in the crypto industry continue to be a significant topic of discussion and speculation among social media users.","data":[4,3,0,0,2,4,12,4,3,0,1,0,0,3,0,2,4,5,0,2,0,1,0,1,0,3,0,0,2,1,1,2,1,5,1,4,0,0,1,1,1,2,1,1,2,2,0,0,0,0,0,1,1,39,2]},{"label":"RWA","topics":"rwa,rwas,realworld,tokenization,tokenized","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include Real-World Asset (RWA) tokenization, the partnership between Tectum and PropChain, the growth of Ethereum in the RWA sector, the potential for revenue generating DeFi coins, the impact of blockchain on real estate, the emergence of AI in the industry, the rise of US-based RWA projects like Landshareio, the recognition of top RWA projects like ELYSIA, the comparison of Securitize and Chintai as the Ethereum and Solana of RWAs, the growth of tokenized RWAs reaching $30 billion AUD, the development of the oracle infrastructure layer for RWAs, and the addition of new RWA price feeds on DIA Lumina. These topics highlight the ongoing innovation and evolution within the crypto industry, particularly in the realm of real-world asset tokenization and decentralized finance.","data":[1,1,0,1,1,1,0,1,3,0,2,3,2,1,2,3,1,2,1,0,2,2,0,1,2,3,1,5,0,0,3,2,3,0,0,4,2,1,5,4,9,22,3,0,1,0,1,1,1,7,5,4,0,0,5]},{"label":"Michael Saylor","topics":"saylor,michael,saylors,strategy,500000","description":"The key topic discussed in the messages from Twitter is Michael Saylor's strategy of buying large amounts of Bitcoin through his company MicroStrategy. Saylor has recently purchased over $3 billion worth of Bitcoin, surpassing 500,000 BTC on his balance sheet. This has led to speculation about the impact of his strategy on the market and the concentration of Bitcoin ownership. Some view Saylor's actions as bullish for Bitcoin, while others express concerns about the potential risks involved. Overall, Saylor's aggressive buying strategy has garnered attention and divided opinions within the crypto community.","data":[3,1,0,0,1,1,1,3,4,11,1,1,0,1,1,2,1,0,0,0,1,1,3,0,2,0,4,1,0,0,2,1,3,0,1,4,1,2,1,2,1,4,16,4,0,10,12,3,3,1,3,2,0,0,3]},{"label":"World Liberty Financial Launches Stablecoin USD1","topics":"usd1,liberty,stablecoin,financial,world","description":"The key topic discussed in the messages from twitter is the launch of a stablecoin called USD1 by World Liberty Financial, a platform tied to President Trump. The stablecoin will be pegged to the US dollar and will be available on both the Ethereum and BNB Chain blockchains. BitGo will be providing custody services for the stablecoin reserves. The launch of USD1 was confirmed at the DC Blockchain Summit, with representatives including Donald Trump Jr. and Zach Witkoff pitching the stablecoin. The stablecoin is fully backed by US government securities and deposits. Trump's involvement in the crypto industry and the potential impact of USD stablecoins on the global settlement layer are also discussed in the messages. Additionally, there are mentions of other developments in the crypto industry, such as GME converting cash into BTC, Fidelity planning to launch a stablecoin, and BlackRock expanding its money-market fund to Solana.","data":[0,0,0,0,2,3,0,2,15,3,1,0,4,2,0,0,1,0,1,9,0,1,0,0,0,1,1,1,0,2,0,1,0,0,3,4,1,1,2,0,0,2,0,1,0,3,1,1,0,0,23,0,0,2,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-64.ts b/priv/repo/major_topics_seed/data-64.ts deleted file mode 100644 index a4b2b4f351..0000000000 --- a/priv/repo/major_topics_seed/data-64.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '20.03.25', - '21.03.25', - '21.03.25', - '21.03.25', - '21.03.25', - '21.03.25', - '21.03.25', - '21.03.25', - '22.03.25', - '22.03.25', - '22.03.25', - '22.03.25', - '22.03.25', - '22.03.25', - '22.03.25', - '22.03.25', - '23.03.25', - '23.03.25', - '23.03.25', - '23.03.25', - '23.03.25', - '23.03.25', - '23.03.25', - '23.03.25', - '24.03.25', - '24.03.25', - '24.03.25', - '24.03.25', - '24.03.25', - '24.03.25', - '24.03.25', - '24.03.25', - '25.03.25', - '25.03.25', - '25.03.25', - '25.03.25', - '25.03.25', - '25.03.25', - '25.03.25', - '25.03.25', - '26.03.25', - '26.03.25', - '26.03.25', - '26.03.25', - '26.03.25', - '26.03.25', - '26.03.25', - '26.03.25', - '27.03.25', - '27.03.25', - '27.03.25', - '27.03.25', - '27.03.25', - '27.03.25', - '27.03.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'btc,resistance,bitcoin,bullish,higher', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Bitcoin price movements and predictions, with discussions on resistance levels and potential breakouts.\n2. Market analysis and insights, including discussions on trading profits and market updates.\n3. Seasonality trends for Bitcoin, with a focus on historical data and potential upside.\n4. Analysis of Bitcoin's technical indicators, such as moving averages and implied volatility.\n5. Discussion on key support and resistance levels for short and medium-term Bitcoin holders.\n6. Speculation on the impact of a potential $300 billion Bitcoin buy on the price of BTC.\n7. Mention of a market analyst who has accurately predicted Bitcoin bottoms multiple times.\n8. Promotion of a trading course for maximizing profits in the current market conditions.\n9. Speculation on the future of Bitcoin, including discussions on price targets like $1 million.\n10. Announcement of a upcoming market analysis webinar with insights and suggestions for traders.", - data: [ - 6, 4, 1, 3, 2, 36, 102, 9, 43, 23, 11, 22, 22, 14, 6, 2, 11, 4, 14, 16, 6, 3, 9, 12, 29, 5, - 4, 11, 3, 4, 18, 15, 13, 10, 5, 7, 10, 5, 36, 21, 23, 20, 14, 25, 9, 11, 12, 18, 21, 15, 5, - 8, 10, 18, 8, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - "Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry include artificial intelligence (AI), robots, blockchain, data security, and weather forecasting. There is a focus on the potential of AI in various industries such as healthcare, education, and weather prediction. Additionally, there are mentions of concerns about the misuse of AI and the need for regulations to ensure AI's ethical use. The messages also touch upon the intersection of AI with other technologies like blockchain and the potential for AI to revolutionize traditional models in various sectors. Overall, the discussions highlight the growing importance and impact of AI in shaping the future of different industries.", - data: [ - 40, 101, 3, 10, 15, 6, 1, 5, 7, 2, 14, 8, 14, 2, 13, 7, 19, 12, 14, 8, 16, 25, 17, 14, 8, - 16, 19, 7, 3, 11, 14, 15, 10, 12, 16, 8, 14, 12, 13, 8, 12, 14, 10, 13, 6, 11, 12, 18, 7, - 21, 7, 14, 12, 10, 12, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,ethereums,low,supply', - description: - "The key topics discussed in the messages from Twitter are:\n1. CryptoSkulls under 0.1 ETH\n2. Ethereum's 24-hour revenue\n3. $FET\n4. Ethereum price forecast\n5. $RIO - $USDT\n6. $ZKJ staking\n7. $VVV vs $ETH price comparison\n8. $EAI market anomaly\n9. $Brett and its correlation to ETH price\n10. Market conditions and potential price movements for ETH and other cryptocurrencies.", - data: [ - 11, 0, 1, 2, 11, 10, 1, 4, 7, 5, 7, 6, 2, 9, 2, 4, 6, 94, 6, 9, 4, 8, 10, 7, 17, 6, 2, 2, 1, - 3, 12, 7, 1, 7, 2, 6, 5, 4, 11, 8, 8, 9, 3, 12, 5, 6, 23, 1, 12, 7, 6, 9, 1, 8, 4, - ], - }, - { - label: 'XRP', - topics: 'ripple,xrp,sec,case,lawsuit', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Ripple and Uber partnership: There is excitement about a potential collaboration between Ripple and Uber, referred to as "Ripple meets Uber."\n\n2. XRP ETF launch: Ripple CEO Brad Garlinghouse expects an XRP ETF to launch in the second half of 2025, which is seen as a bullish development.\n\n3. Ripple SEC case settlement: The Ripple $XRP case with the SEC has been confirmed to be over, with an agreement reached between the two parties.\n\n4. Crypto Strategic Reserve: Discussions about XRP, ADA, and Bitcoin being part of a strategic reserve in the crypto industry.\n\n5. XRP price predictions: Speculation about the potential price movement of XRP, including the possibility of significant gains if certain conditions are met.\n\n6. XRP and XLM performance: Data from South Korea\'s largest exchange shows that XRP and XLM were the top-performing assets, with a focus on XRP adoption in the region.\n\n7. New developments for XRP holders: Information about a new key date for XRP holders, as well as major exchanges listing ADA and Coinbase for futures collateral.\n\n8. Michael Saylor and XRP: Speculation about what would happen if Michael Saylor swapped his Bitcoin holdings for XRP, and the potential impact on the price of XRP.\n\n9. Crypto news updates: Various news updates related to the crypto industry, including the potential launch of XRP ETFs, Coinbase\'s stake in Ethereum, and real estate tokenization projects.\n\n10. XRP Airdrop: Information about an ongoing XRP airdrop giveaway, where participants have the chance to win $50 worth of XRP.\n\nOverall, the discussions on social media platforms indicate a high level of interest and speculation surrounding Ripple, XRP, and other cryptocurrencies in the industry.', - data: [ - 13, 3, 0, 2, 0, 2, 0, 13, 9, 8, 10, 6, 1, 4, 1, 4, 10, 6, 5, 10, 2, 5, 3, 4, 7, 3, 9, 3, 2, - 11, 4, 2, 5, 2, 5, 7, 6, 4, 26, 5, 3, 31, 6, 11, 6, 3, 7, 5, 2, 4, 4, 6, 5, 5, 8, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,web3', - description: - 'The key topics discussed in the messages from twitter are related to gaming, blockchain-powered gaming hubs, partnerships in the gaming industry, new game releases, feedback on gaming experiences, and the future of Web3 gaming. Some specific games and platforms mentioned include GGEM Launcher, Navix Ecosystem, PolyGunnerz, Gameflip, ForgotPlayland, Epic Games, Super Galactic + UFO Gaming Hub, My Pet Hooligan, $MCRT currency, and Swords of Blood. The messages also highlight the excitement and support for these games and platforms within the gaming community.', - data: [ - 7, 0, 0, 2, 3, 4, 0, 5, 3, 5, 7, 3, 5, 4, 1, 4, 5, 3, 3, 8, 54, 12, 8, 5, 0, 5, 9, 3, 0, 13, - 4, 6, 8, 2, 4, 2, 4, 21, 6, 2, 9, 10, 5, 2, 5, 7, 2, 5, 3, 2, 4, 4, 5, 11, 2, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,elon,musk,breakout', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Dogecoin (DOGE) next-month projection and payment integration\n- Dogecoin secrets and forecasts for 1-month and 1-week\n- Dogecoin's potential breakout and return to the $0.40s\n- Crypto market moves with DOGE pumping while XRP and SOL dip\n- Dogecoin surging 18% in 3 days and analysts eyeing a breakout to $0.8\n- Analysts predicting a potential surge to $0.50 for DOGE by April\n- Buying BabyDoge using FIAT via the QRIS banking system\n\nOverall, the sentiment on Twitter seems positive towards Dogecoin and other cryptocurrencies, with analysts and investors closely monitoring price movements and potential breakouts.", - data: [ - 4, 2, 0, 0, 1, 4, 0, 1, 1, 4, 2, 6, 0, 8, 1, 89, 38, 3, 3, 4, 3, 9, 2, 5, 6, 2, 4, 6, 0, 6, - 6, 4, 4, 0, 3, 0, 1, 3, 2, 2, 3, 4, 6, 2, 4, 5, 3, 6, 4, 1, 2, 0, 1, 3, 4, - ], - }, - { - label: 'pDAI on Pulsechain', - topics: 'pulsechain,richard,heart,dai,fud', - description: - 'The key topics discussed in the twitter messages are:\n- pDAI\n- Richard Heart\n- PulseChain\n- Weak hands\n- Shake-out\n- Deflationary DeFi Revolution\n- Hestia\n- Vietnamese Kid\n- Moon King\n\nOverall, the messages seem to revolve around the price movements and speculation surrounding pDAI, as well as the actions and statements of Richard Heart. There is also mention of PulseChain and the concept of weak hands in the crypto industry. Additionally, there is discussion about a deflationary DeFi token called Hestia and the influence of a Vietnamese Kid in the market. The term "Moon King" is used to describe someone who is successful in their crypto investments.', - data: [ - 3, 1, 0, 0, 1, 6, 0, 3, 9, 7, 5, 5, 4, 4, 2, 7, 3, 0, 5, 4, 11, 10, 5, 14, 3, 9, 1, 2, 2, 4, - 3, 5, 2, 7, 3, 5, 3, 7, 5, 28, 8, 11, 2, 3, 8, 0, 3, 4, 12, 2, 3, 5, 6, 5, 4, - ], - }, - { - label: 'GameStop Adds Bitcoin to Treasury Reserves', - topics: 'gamestop,gme,treasury,billion,13', - description: - "The key topic discussed in the messages from Twitter is GameStop's decision to add Bitcoin to its treasury reserve assets. GameStop announced a plan to raise $1.3 billion to buy Bitcoin, following in the footsteps of companies like MicroStrategy. This decision has sparked debate and speculation among social media users, with some questioning the strategy behind using debt to buy Bitcoin when the company already has a significant amount of cash on hand. Overall, GameStop's move to invest in Bitcoin has generated excitement and interest in the market, with some seeing it as a bullish signal for both GameStop and the cryptocurrency market.", - data: [ - 4, 10, 1, 3, 2, 2, 1, 25, 0, 10, 1, 4, 3, 0, 2, 1, 1, 0, 2, 2, 98, 2, 2, 1, 2, 3, 7, 3, 1, - 0, 0, 1, 3, 2, 3, 2, 2, 3, 3, 8, 3, 3, 5, 4, 2, 1, 1, 0, 4, 0, 2, 4, 6, 3, 3, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoin,stablecoins,stables,usdc,alltime', - description: - 'The key topics discussed in the messages from Twitter regarding the crypto industry and stablecoins include:\n1. Stablecoin market cap reaching an all-time high of $230.45B\n2. Introduction of new stablecoins such as USD1, AVIT, WYST, and FYHXX\n3. Partnership between Custodia and Vantage for a bank-issued stablecoin\n4. Growth in supply and revenue of USDS\n5. Surge in supply of USDC.e on the Sonic blockchain\n6. Discussion on the importance of privacy and compliance in stablecoin transactions\n7. Adoption of stablecoins by major banks like Bank of America and Wells Fargo\n8. Potential for stablecoins to be used as rewards points for shopping\n9. Increase in ERC-20 stablecoins on Binance\n10. Mention of Plasma technology for mass adoption in the stablecoin vertical.', - data: [ - 2, 2, 0, 1, 3, 4, 1, 3, 4, 6, 3, 0, 3, 0, 1, 1, 2, 4, 4, 2, 0, 3, 3, 4, 3, 6, 1, 0, 1, 10, - 4, 4, 0, 8, 2, 5, 6, 4, 3, 5, 3, 1, 2, 3, 4, 57, 6, 4, 4, 16, 1, 21, 0, 2, 4, - ], - }, - { - label: 'Hyperliquid Delists Jelly Memecoin Amid Suspicious Market Activity', - topics: 'hyperliquid,hype,position,vault,binance', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Suspicious market activity on Hyperliquid leading to the delisting of the Jelly memecoin $JELLY.\n2. Hyperliquid Provider (HLP) vault facing significant losses due to trader attacks.\n3. Centralized exchanges like Binance and OKX being criticized for their actions in the market.\n4. Hyperliquid's volume surpassing other cryptocurrencies like $SUI and $ARB.\n5. Hyperliquid experiencing outflows of USDC after the Jelly liquidation.\n6. The price volatility and profitability of $HYPE and $JELLY tokens.\n7. The impact of market manipulation on retail investors and the overall crypto market.\n8. The role of validators and the Hyper Foundation in protecting the network and reimbursing users.\n9. The potential bankruptcy of platforms like Bybit and the implications for investors.\n10. The overall sentiment towards centralized organizations and the need for decentralized solutions in the industry.", - data: [ - 5, 3, 0, 3, 2, 5, 0, 5, 5, 3, 2, 4, 3, 0, 8, 4, 3, 5, 5, 2, 2, 9, 2, 4, 2, 45, 15, 2, 2, 3, - 10, 6, 2, 1, 2, 5, 2, 2, 1, 4, 4, 0, 0, 3, 6, 1, 2, 3, 7, 6, 6, 4, 9, 3, 2, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,block,solo,miners,mined', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Bitcoin mining machines and the evolution over 16 years\n2. OCEAN's hashrate reaching over 6 Eh/s\n3. Centralization concerns in mining\n4. Solo mining at home and its possibilities\n5. Mimesis Capital as a Bronze Partner of BTC Prague 2025\n6. Bitcoin miner winning a reward of R$ 1.5 million\n7. Debate on Bitcoin's impact on the environment in terms of energy consumption\n8. Excitement and opportunities in Bitcoin mining, with mentions of Mining Disrupt event\n9. Block rewards structure and concerns about one individual holding a significant portion of the supply\n10. Technical details and optimizations in mining equipment\n11. Discussion on Bitcoin price, dominance, and recent mining success stories\n\nOverall, the discussions on Twitter reflect a mix of technical, environmental, financial, and speculative aspects of the crypto industry, with a focus on Bitcoin mining and related events.", - data: [ - 6, 4, 2, 0, 6, 3, 14, 18, 3, 1, 1, 1, 5, 0, 2, 2, 2, 3, 1, 3, 1, 5, 5, 12, 4, 4, 1, 3, 1, 4, - 3, 3, 0, 27, 3, 1, 4, 0, 2, 1, 3, 1, 0, 4, 6, 2, 2, 1, 2, 2, 0, 3, 4, 1, 2, - ], - }, - { - label: 'DeFi', - topics: 'defi,finance,protocols,tradfi,yield', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. DeFi (Decentralized Finance): There is a lot of excitement around DeFi breaking traditional finance barriers and providing financial opportunities to the community. Projects like PERI Finance and BTCFi are mentioned as leading the way in transforming the financial landscape.\n\n2. Gauntlet Frontier Vaults: A new DeFi product introduced on MorphoLabs targeting high-risk optimized yields across Morpho Markets. Incentives such as MORPHO and SyrupUSDC from Maple Finance are highlighted.\n\n3. Cardano and ZIGChain: Discussions about Cardano being an exciting time to be in crypto, and ZIGChain building infrastructure to serve everyone with wealth-building tools once reserved for the elite.\n\n4. CoolFi and Bitte: CoolFi's DeFi app powered by a custom AI agent built on Bitte is mentioned as a game-changer for DeFi, offering zero gas fees, seamless cross-chain swaps, and no KYC requirements.\n\n5. OpenOcean: The DeFi trading features on OpenOcean are highlighted, including swaps, non-custodial DCA & Limit orders, memes, stable yields, and perps.\n\n6. OmnityNetwork: True Bitcoin DeFi without sacrificing custody is discussed, with features like RichSwap DEX with full Bitcoin custody preservation and tokenized UTXOs for true DeFi without bridges.\n\n7. DeFi Evolution: The rapid evolution of DeFi driven by innovation, global events, and regulations is emphasized, with the importance of keeping up with the changes.\n\nOverall, the discussions on Twitter reflect a growing interest and excitement in the crypto industry, particularly in the DeFi sector and new products and projects that are pushing the boundaries of traditional finance.", - data: [ - 0, 2, 0, 0, 2, 3, 0, 2, 9, 1, 2, 2, 4, 9, 9, 3, 5, 8, 3, 9, 3, 4, 8, 0, 1, 4, 5, 3, 2, 1, 4, - 1, 3, 4, 2, 2, 5, 1, 7, 7, 4, 1, 1, 2, 4, 5, 2, 3, 2, 1, 5, 8, 3, 4, 5, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collection,floor,mint', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include NFTs, the rise of NFT communities, the potential for a new NFT bull run, regulatory updates on NFTs, the launch of new NFT features like Mintle Launchpad, and personal experiences and journeys into the world of NFTs. There is also a focus on the importance of community involvement, the value of rarity in NFT collections, and the continuous evolution of the NFT space. Overall, there is a sense of excitement and optimism surrounding the future of NFTs and their impact on the crypto industry.', - data: [ - 2, 0, 0, 0, 4, 8, 0, 1, 3, 4, 2, 5, 0, 3, 0, 1, 2, 3, 3, 5, 6, 6, 11, 1, 0, 5, 4, 2, 0, 3, - 2, 7, 2, 2, 3, 20, 1, 3, 3, 8, 2, 3, 6, 5, 5, 3, 0, 5, 5, 4, 1, 2, 9, 2, 1, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,wallets,presale,200', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana (SOL) dominance in the sector, with mentions of its price movements and market struggles.\n2. The launch of a Spot Solana ETF by Fidelity, joining other companies in the race.\n3. Speculation about potential breakout and surge in SOL price, with mentions of key levels and indicators.\n4. Discussion about new Solana tokens and potential moonshots.\n5. Excitement about the future of DeFi on Solana, with mentions of innovative yield opportunities and accessibility.\n6. Analysis of market trends, including volume confirmation for breakout sustainability and moving averages.\n7. Nostalgic reflections on past profits and successful trades on Solana.\n8. Promotions of new projects and tokens on Solana, with calls for participation and bullish sentiments.\n9. Giveaways and promotions for viewers, encouraging engagement and participation in the crypto community.\n10. Observations about insider trading and potential buy the rumor, sell the news events in the market.', - data: [ - 4, 3, 0, 0, 1, 2, 0, 4, 1, 7, 6, 0, 3, 1, 3, 1, 2, 4, 9, 1, 5, 2, 3, 0, 7, 1, 1, 2, 3, 5, 2, - 7, 5, 3, 3, 1, 1, 1, 9, 2, 4, 1, 4, 3, 14, 5, 4, 2, 1, 4, 0, 0, 2, 2, 5, - ], - }, - { - label: 'APE', - topics: 'ape,apes,club,nfts,mint', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Bored Ape Yacht Club and the art associated with it\n- ApeChain and ApeCoin\n- NFT collections and minting\n- Rules updates for Apes Win\n- Brand recognition and anticipation for upcoming reveals\n- Accumulation of Apes on Ape\n- Highlighting Ape Chain projects and founders\n- Death Match Royal Rumble for Prime Ape NFTs\n- Discussion about specific coins like $DGC and their development teams\n\nOverall, the crypto community on social media is actively engaged in discussing various projects, collections, and developments within the industry.', - data: [ - 0, 1, 11, 4, 2, 3, 0, 8, 1, 1, 2, 10, 1, 3, 5, 2, 0, 0, 3, 1, 1, 7, 3, 2, 3, 2, 1, 2, 0, 2, - 1, 1, 2, 8, 0, 4, 3, 2, 2, 1, 1, 5, 3, 0, 5, 5, 2, 0, 2, 2, 1, 1, 2, 5, 3, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,net,inflow,etf', - description: - 'The key topic discussed in the messages from Twitter is the surge in daily inflows into Bitcoin ETFs, with several consecutive days of net inflows being recorded. Institutional interest in Bitcoin ETFs is returning, with significant amounts of money being invested in these funds. Additionally, there is a comparison between traditional ETFs and a new Cycle Strategy ETF that aims to increase dividends and fees for holders. Ethereum spot ETFs, on the other hand, saw a net outflow for the week. Overall, the trend seems to be positive for Bitcoin ETFs, with potential short-term volatility expected due to tariff fears but a strong second half of the year predicted with any QE from the Federal Reserve.', - data: [ - 3, 0, 0, 0, 2, 3, 17, 1, 0, 0, 1, 1, 3, 3, 3, 4, 1, 29, 2, 2, 3, 0, 3, 0, 0, 0, 1, 0, 0, 0, - 2, 1, 0, 0, 2, 2, 4, 1, 0, 0, 3, 4, 4, 0, 14, 2, 0, 0, 1, 4, 0, 0, 1, 3, 1, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,worth,2017,accumulation', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin whales making significant moves, such as withdrawing large amounts of BTC from exchanges and accumulating more assets.\n2. The impact of whales on the crypto market, including their ability to influence prices and trends.\n3. The significance of staking in the crypto landscape, as highlighted by a whale sending ETH tokens to staking to earn yields.\n4. Ethereum whales returning as ETH surpasses $2,000, indicating a potential price surge.\n5. Dogecoin whales accumulating over 120M $DOGE in a week, potentially fueling a breakout.\n6. The behavior of whales in relation to retail investors, with whales loading up on assets while retail investors sell.\n7. The speculation around a Bitcoin whale converting stablecoins to ETH and buying up NFTs, potentially impacting the market.\n8. The overall sentiment of bullishness among whales, as seen in their actions of stacking assets and attending exclusive gatherings like the Whale Dinner.\n\nOverall, the presence and actions of whales in the crypto industry continue to be a significant topic of discussion and speculation among social media users.', - data: [ - 4, 3, 0, 0, 2, 4, 12, 4, 3, 0, 1, 0, 0, 3, 0, 2, 4, 5, 0, 2, 0, 1, 0, 1, 0, 3, 0, 0, 2, 1, - 1, 2, 1, 5, 1, 4, 0, 0, 1, 1, 1, 2, 1, 1, 2, 2, 0, 0, 0, 0, 0, 1, 1, 39, 2, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,realworld,tokenization,tokenized', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include Real-World Asset (RWA) tokenization, the partnership between Tectum and PropChain, the growth of Ethereum in the RWA sector, the potential for revenue generating DeFi coins, the impact of blockchain on real estate, the emergence of AI in the industry, the rise of US-based RWA projects like Landshareio, the recognition of top RWA projects like ELYSIA, the comparison of Securitize and Chintai as the Ethereum and Solana of RWAs, the growth of tokenized RWAs reaching $30 billion AUD, the development of the oracle infrastructure layer for RWAs, and the addition of new RWA price feeds on DIA Lumina. These topics highlight the ongoing innovation and evolution within the crypto industry, particularly in the realm of real-world asset tokenization and decentralized finance.', - data: [ - 1, 1, 0, 1, 1, 1, 0, 1, 3, 0, 2, 3, 2, 1, 2, 3, 1, 2, 1, 0, 2, 2, 0, 1, 2, 3, 1, 5, 0, 0, 3, - 2, 3, 0, 0, 4, 2, 1, 5, 4, 9, 22, 3, 0, 1, 0, 1, 1, 1, 7, 5, 4, 0, 0, 5, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,michael,saylors,strategy,500000', - description: - "The key topic discussed in the messages from Twitter is Michael Saylor's strategy of buying large amounts of Bitcoin through his company MicroStrategy. Saylor has recently purchased over $3 billion worth of Bitcoin, surpassing 500,000 BTC on his balance sheet. This has led to speculation about the impact of his strategy on the market and the concentration of Bitcoin ownership. Some view Saylor's actions as bullish for Bitcoin, while others express concerns about the potential risks involved. Overall, Saylor's aggressive buying strategy has garnered attention and divided opinions within the crypto community.", - data: [ - 3, 1, 0, 0, 1, 1, 1, 3, 4, 11, 1, 1, 0, 1, 1, 2, 1, 0, 0, 0, 1, 1, 3, 0, 2, 0, 4, 1, 0, 0, - 2, 1, 3, 0, 1, 4, 1, 2, 1, 2, 1, 4, 16, 4, 0, 10, 12, 3, 3, 1, 3, 2, 0, 0, 3, - ], - }, - { - label: 'World Liberty Financial Launches Stablecoin USD1', - topics: 'usd1,liberty,stablecoin,financial,world', - description: - "The key topic discussed in the messages from twitter is the launch of a stablecoin called USD1 by World Liberty Financial, a platform tied to President Trump. The stablecoin will be pegged to the US dollar and will be available on both the Ethereum and BNB Chain blockchains. BitGo will be providing custody services for the stablecoin reserves. The launch of USD1 was confirmed at the DC Blockchain Summit, with representatives including Donald Trump Jr. and Zach Witkoff pitching the stablecoin. The stablecoin is fully backed by US government securities and deposits. Trump's involvement in the crypto industry and the potential impact of USD stablecoins on the global settlement layer are also discussed in the messages. Additionally, there are mentions of other developments in the crypto industry, such as GME converting cash into BTC, Fidelity planning to launch a stablecoin, and BlackRock expanding its money-market fund to Solana.", - data: [ - 0, 0, 0, 0, 2, 3, 0, 2, 15, 3, 1, 0, 4, 2, 0, 0, 1, 0, 1, 9, 0, 1, 0, 0, 0, 1, 1, 1, 0, 2, - 0, 1, 0, 0, 3, 4, 1, 1, 2, 0, 0, 2, 0, 1, 0, 3, 1, 1, 0, 0, 23, 0, 0, 2, 4, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-65.json b/priv/repo/major_topics_seed/data-65.json deleted file mode 100644 index 494bdac2b2..0000000000 --- a/priv/repo/major_topics_seed/data-65.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["27.03.25","28.03.25","28.03.25","28.03.25","28.03.25","28.03.25","28.03.25","28.03.25","29.03.25","29.03.25","29.03.25","29.03.25","29.03.25","29.03.25","29.03.25","29.03.25","30.03.25","30.03.25","30.03.25","30.03.25","30.03.25","30.03.25","30.03.25","30.03.25","31.03.25","31.03.25","31.03.25","31.03.25","31.03.25","31.03.25","31.03.25","31.03.25","01.04.25","01.04.25","01.04.25","01.04.25","01.04.25","01.04.25","01.04.25","01.04.25","02.04.25","02.04.25","02.04.25","02.04.25","02.04.25","02.04.25","02.04.25","02.04.25","03.04.25","03.04.25","03.04.25","03.04.25","03.04.25","03.04.25","03.04.25"],"datasets":[{"label":"ETH","topics":"eth,ethereum,q1,worst,q2","description":"The key topics currently discussed in the messages from Twitter about the crypto industry include:\n1. Speculation on the price of Ethereum (ETH) possibly never going above $2000 again\n2. Strategies to avoid liquidations, especially with highly liquid collaterals like ETH\n3. Comparison of efficiency and cost between different digital assets, including BTC and ETH\n4. Impact of the fractured Ethos Network protocol on KaitoAI's price action\n5. Analysis of ETH needing to reclaim certain price levels for a bullish trend reversal\n6. Discussion on the utility, revenue, and economic activity of ETH\n7. Ethereum falling behind Bitcoin and losing its lead over rivals\n8. Prediction of Ethereum reaching a minimum of $5000 by the end of April and May\n9. Liquidity analysis of sUSDe May pool on Ethene Labs\n10. Trading levels to watch for ETH and avoiding overly bearish or bullish sentiment\n11. Ethereum OG cashing out a significant amount of ETH after a 7-year hold\n12. Discussion on the decline of Rocket Pool (Rpl) and team selling OTC to Coinbase\n\nThese topics reflect a range of discussions on price speculation, market trends, technical analysis, and project developments within the crypto industry, particularly focusing on Ethereum and related assets.","data":[11,6,0,0,3,19,9,1,18,4,12,18,17,27,12,18,21,101,88,27,22,20,13,15,28,16,13,18,0,0,14,33,28,12,12,20,13,25,24,7,38,18,19,30,27,8,17,9,23,11,11,22,9,12,22]},{"label":"BTC","topics":"bitcoin,money,fiat,understand,value","description":"Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n1. Increased bitcoin position size\n2. Bitcoin as neutral money\n3. Political debate on a bitcoin standard\n4. Maximizing bitcoin returns without emotion\n5. Bitcoin breaking out\n6. Legal tender and fiat currency\n7. AquaBitcoin and mx12Art collaboration\n8. Bitcoin Eternals project\n\nThese topics reflect the ongoing conversations and sentiments within the crypto community on Twitter.","data":[8,3,0,0,6,12,83,137,5,12,6,15,13,11,14,14,9,6,10,15,13,8,11,24,24,13,13,18,1,0,6,15,17,14,22,16,7,20,17,9,12,11,20,18,15,15,16,10,16,6,7,18,11,17,19]},{"label":"AI","topics":"ai,agents,agent,models,human","description":"The messages from Twitter discuss various topics related to AI, blockchain, robotics, and the intersection of technology with creativity. Some key words mentioned include AI models, blockchain, deepfake, humanoid robots, ZK-powered machine learning network, decentralized governance, real-time market data, mindreading AI tools, AI art, and innovation. The discussions highlight the advancements in AI technology, the potential impact on various industries, and the concerns surrounding AI misuse and deepfake problems. Additionally, there is a focus on the integration of AI with blockchain technology to enhance security and reliability. Overall, the messages reflect a growing interest and excitement around the possibilities and challenges presented by AI in today's digital landscape.","data":[64,62,0,0,9,12,6,0,5,9,9,19,14,13,4,25,4,15,11,8,11,21,14,11,9,18,19,11,3,0,14,10,14,14,12,24,16,9,11,17,24,26,17,10,11,15,9,20,15,19,16,12,17,9,16]},{"label":"Memecoins","topics":"meme,memecoin,memes,coins,coin","description":"The key topics discussed in the messages from twitter about memecoins are:\n1. The popularity and excitement surrounding meme coins in the crypto industry.\n2. Specific meme coins such as Fartcoin, Aurafarming memecoin, Arctic Pablo Coin, Mog Coin, Ponke, and $pleb.\n3. The growth of meme coin communities and their potential for exponential returns.\n4. Meme trading bots and their impact on the crypto market.\n5. Support and involvement of influencers and community members in promoting meme coins.\n6. Speculation and anticipation of meme coins like $MT reaching new highs.\n7. Engagement activities like meme contests and raffles within meme coin communities.","data":[1,5,0,0,6,9,9,1,3,5,12,10,12,8,2,10,10,3,8,7,7,5,8,11,2,10,3,4,0,0,7,3,10,76,6,7,5,8,7,10,3,2,8,6,9,10,8,7,11,9,6,8,4,3,4]},{"label":"GameFi","topics":"game,gaming,games,play,gamefi","description":"The messages from twitter discuss various topics related to the crypto gaming industry. Some key points mentioned include:\n\n- The excitement and anticipation for upcoming games such as FIFA Rivals and Eternum Season One.\n- The potential for gaming to lead to mass adoption of cryptocurrency.\n- The announcement of the termination of game operations and Treasure Chain by Treasure DAO due to financial conditions.\n- The discussion of physical games charging a premium over digital counterparts.\n- The development of new games such as COOLBALL and Brawler Master.\n- The partnership between SKALE Network and ForLootAndGlory for a game night event.\n- The collaboration between Heroic and Polkadot in redefining the gaming industry.\n\nOverall, the messages highlight the growing interest and innovation within the crypto gaming space, with a focus on new game releases, partnerships, and the potential impact on the industry.","data":[3,2,0,0,1,4,4,0,4,1,0,6,3,4,5,3,2,3,3,10,3,48,2,4,7,5,5,1,0,0,8,8,5,3,3,7,5,3,18,3,4,2,8,3,5,4,5,3,7,0,3,6,8,7,5]},{"label":"Art","topics":"art,artists,artist,piece,work","description":"The key topics currently discussed in the crypto industry on social media include:\n- NFTs and their use cases, particularly in the fine art industry\n- Art collaborations and auctions on platforms like SuperRare\n- The intersection of art and technology, such as QR code paintings\n- The impact of AI on art and the implications for the future\n- The history and significance of great artists and storytellers\n- Opportunities for artists in the cryptoart scene, such as being displayed on digital billboards\n- The role of artists in shaping NFT history and the cryptoart scene\n\nOverall, the discussions on social media highlight the growing interest and opportunities for artists in the crypto industry, as well as the potential for innovation and collaboration in the art world.","data":[9,3,0,0,50,8,1,0,1,1,1,5,3,2,0,6,5,4,4,9,4,3,4,8,4,5,3,1,0,0,2,2,9,7,2,3,3,5,4,4,7,5,3,3,10,2,7,3,6,1,5,5,3,5,10]},{"label":"DeFi","topics":"defi,yield,lending,protocols,decentralized","description":"Based on the messages from Twitter, it is evident that the topic of discussion revolves around DeFi (Decentralized Finance) in the crypto industry. Users are talking about the future of DeFi, the risks involved, the benefits of using private DeFi for owning financial data, new platforms and protocols being launched, as well as the potential of DeFi tokens in the future. There is also mention of specific projects such as dHEDGE, NODO, XverseApp, Orbiter Finance, and Maverick, showcasing the diversity and innovation within the DeFi space. Additionally, community updates, collaborations, and proposals within the DeFi ecosystem are also being highlighted. Overall, the sentiment seems positive towards the growth and evolution of DeFi in the crypto industry.","data":[2,2,0,0,0,2,2,0,3,5,1,6,3,2,5,15,3,2,12,8,9,5,6,1,2,7,2,8,0,0,3,5,1,5,3,8,2,4,2,7,2,9,4,3,5,6,5,5,4,7,0,8,4,3,8]},{"label":"DOGE","topics":"doge,elon,musk,government,dogecoin","description":"The key topics discussed in the messages from twitter include:\n- Elon Musk's involvement with Dogecoin and his transparency in business\n- Allegations of academic fraud and its impact on SCOTUS\n- Efforts by the DOGE team to address medical fraud and improve transparency in healthcare\n- Speculation about Elon Musk advocating for blockchain privacy\n- Concerns about the U.S. government's plans regarding Dogecoin\n- Potential launch of a stablecoin by Elon Musk on X platform\n- Reports of Elon Musk potentially leaving his current role\n- Denial by Elon Musk of reports about leaving DOGE and increase in Tesla's shares\n\nOverall, the messages reflect a mix of praise for Elon Musk's transparency and efforts to address fraud, as well as speculation and concerns about his involvement with Dogecoin and potential future plans.","data":[4,2,0,0,2,2,3,0,1,7,4,2,9,7,0,8,27,4,1,3,1,1,2,6,2,3,11,2,0,0,6,3,3,2,2,6,5,4,4,1,4,3,13,6,7,6,5,7,3,1,2,4,2,6,3]},{"label":"BTC Price","topics":"resistance,btc,zone,low,lower","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin's potential for a relief rally on shorter timeframes\n- Critical support levels for Bitcoin at $76,180, $58,080, $43,740, and $39,980\n- Bitcoin retesting the MTF dump zone\n- Speculation about Bitcoin reaching $100k by May\n- Analysis of Bitcoin's price action and key levels\n- Bitcoin slipping below $82k and what's ahead for its price\n- Technical analysis of Bitcoin's chart and resistance zones\n- Discussion about Bitcoin's current uptrend and downtrend cycles\n- Analysis of Bitcoin's recent pump and rejection from the $87k-88k area\n\nOverall, the sentiment seems to be mixed with some traders expecting a relief rally while others are cautious about potential downside risks. Technical analysis and key support/resistance levels are being closely monitored by the community.","data":[1,1,0,0,2,4,5,18,4,15,3,2,1,3,4,3,7,1,2,2,1,2,1,0,6,8,4,4,0,0,2,1,8,2,2,2,1,3,6,6,0,8,7,2,5,1,11,1,1,2,3,8,1,1,2]},{"label":"SOL","topics":"solana,policy,sol,accumulation,token","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana (SOL) network upgrades and potential price gains\n2. Kristin Smith's move from The Blockchain Association to the Solana Policy Institute\n3. Solana transaction fees and protocol revenue decrease\n4. Large transactions of SOL on crypto exchanges like Kraken\n5. Potential price movements of SOL, including a possible dip to $113\n6. Comparison of Ethereum and Solana transaction parallelization\n7. New projects and developments on Solana, such as SOL Pilot and SpaceBolt\n8. UTOPIA FAQ regarding copyright NFTs on the Soneium chain\n\nOverall, the discussions on Twitter indicate a mix of price speculation, network upgrades, industry developments, and new projects on the Solana network.","data":[1,2,0,0,2,2,3,0,5,2,7,1,3,6,5,6,4,6,4,6,4,1,9,2,5,1,6,1,0,0,6,2,5,1,2,8,3,1,4,8,4,3,2,3,13,5,6,4,3,3,1,1,1,2,1]},{"label":"GameStop","topics":"gme,billion,raised,notes,buy","description":"The key topics currently discussed on Twitter regarding the crypto industry are GameStop's potential investment in Bitcoin, the impact of GameStop's recent fundraising on their ability to purchase Bitcoin, and rumors about GameStop's CEO Ryan Cohen waiting for Bitcoin to break out over $90,000 before starting a buy algorithm. Additionally, there is speculation about GameStop transitioning from a meme stock to a Bitcoin treasury company and the potential implications of this move on the market. Other topics mentioned include the involvement of Tencent as an investor in Ubisoft's new subsidiary and the release of Sony's \"The Last of Us Part II Remastered\" on PC. Overall, the focus is on the intersection of traditional finance and cryptocurrency, as well as the evolving strategies of major companies in the industry.","data":[0,5,0,0,2,4,4,3,11,0,3,3,5,2,2,2,1,0,1,1,0,55,2,0,1,1,1,3,0,0,3,1,3,4,0,5,4,0,1,6,7,2,2,2,1,1,4,3,1,1,0,5,2,0,2]},{"label":"PulseChain","topics":"pulsechain,heart,stupid,pls,believe","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Richard Heart's involvement in the Pulsechain project and allegations of exploiting investors\n- The performance of pDAI compared to other assets and its impact on the market\n- Controversies surrounding Pulsechain and its developers\n- The decline in value of HEX on Ethereum\n- Criticisms of anti-pDAI influencers and their alleged hypocrisy\n- Updates on Pulsechain's development and partnerships\n\nOverall, the discussions seem to revolve around the credibility of projects and individuals in the crypto space, as well as the performance of specific tokens and chains.","data":[2,3,0,0,0,1,0,0,1,5,3,3,1,3,1,1,4,1,3,1,3,2,2,3,9,2,6,3,1,0,4,3,3,2,0,1,1,1,4,7,24,2,6,5,1,1,7,4,4,2,3,0,1,1,5]},{"label":"Circle IPO","topics":"circle,ipo,usdc,files,filing","description":"The key topics currently being discussed on Twitter regarding the crypto industry are:\n1. Circle's IPO filing: Circle, the issuer of the USDC stablecoin, has officially filed for an IPO with the SEC. The company is targeting a $5 billion market valuation and plans to go public on the NYSE under the ticker symbol CRCL. Major banks like JPMorgan and Citigroup are backing the offering.\n2. Circle's digital assets holding: There are concerns about the competence of the individual in charge of Circle's digital assets holding, with some users expressing skepticism.\n3. Circle's partnership with ICE: Circle has announced a partnership with Intercontinental Exchange (ICE) to integrate USDC into their markets products and infrastructure, marking a significant development in the stablecoin market.\n4. Circle's financial performance: Circle reported $1.7 billion in revenue, a 39.3% gross margin, and an operating profit of $167 million, positioning itself as a major player in the crypto industry.\n5. Regulatory environment: Stablecoins like USDC are gaining popularity within the US government and banking groups, with discussions around new crypto legislations like the GENIUS Act and STABLE Act in 2025.\n6. Crypto security: There is a growing concern about crypto investors losing $1.67 billion to hacks and exploits in Q1, highlighting the importance of security measures in the industry.","data":[1,2,0,0,0,0,1,0,10,3,2,18,5,1,4,1,1,1,1,10,2,2,4,1,9,4,4,8,0,0,2,0,0,2,4,3,4,2,1,2,0,4,2,3,1,1,1,4,2,0,0,3,11,2,0]},{"label":"Stablecoins","topics":"stablecoin,stablecoins,stable,act,legislation","description":"The messages from Twitter are discussing the growing popularity and importance of stablecoins in the crypto industry. Stablecoins are being seen as a key component in the future of crypto, with government support for crypto accelerating globally. The market for stablecoins is expanding rapidly, with the dollar-denominated market cap reaching new all-time highs. There is also discussion about regulations surrounding stablecoins, with the STABLE Act aiming to regulate stablecoins with 1:1 reserves and AML compliance.\n\nAdditionally, there is mention of the importance of decentralization in the stablecoin market, with the need for startups to issue stablecoins competitively. The messages also highlight the potential risks associated with stablecoins, such as stablecoin crashes and the importance of securing assets.\n\nOverall, the messages emphasize the growing importance and potential of stablecoins in the crypto industry, with a focus on regulation, decentralization, and potential risks.","data":[3,0,0,0,1,1,4,0,1,5,0,5,0,0,2,0,2,5,1,4,1,4,1,3,0,1,2,2,0,0,4,2,3,4,0,1,2,4,1,1,1,1,2,6,1,40,4,0,0,4,1,2,1,3,9]},{"label":"XRP","topics":"xrp,ripple,sec,outlook,etf","description":"The key topics currently being discussed in the crypto community on Twitter include the ongoing debate between XRP and BTC, Ripple unlocking 1 billion XRP for monthly sales, the surge in XRP sent to Binance, the SEC dropping other cases but not Ripple, the partnership between Ripple and Chipper Cash for African remittances, technical analysis of XRP's price movements, debunking false claims about XRP surpassing Bitcoin on Korean exchanges, XRP being listed on Kraken for trading, analysts debating potential price movements for XRP ranging from $1.07 to $38, and the overall future outlook for XRP in the global finance industry.","data":[1,5,0,0,3,4,0,0,5,1,2,4,11,6,1,3,5,3,2,3,2,3,2,0,1,4,3,6,0,0,2,3,3,0,2,2,1,1,2,8,2,2,3,1,2,2,1,1,3,1,4,4,2,1,2]},{"label":"ETF Flows","topics":"etfs,net,inflows,outflows,spot","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Bitcoin and Ethereum ETFs, with a focus on inflows and outflows. Bitcoin ETFs have experienced both inflows and outflows, while Ethereum ETFs have seen consistent inflows. Additionally, there is mention of Solana leading in net outflows, and the comparison of ETFs to owning actual Bitcoin, highlighting the speculative nature of ETFs. The messages also touch on institutional involvement in the crypto industry, with a focus on fund management and increasing ETF exposure. Overall, the key topics discussed in the messages include ETF movements, institutional involvement, and the comparison between ETFs and owning actual cryptocurrencies.","data":[4,1,0,0,1,0,7,4,3,2,0,0,0,5,4,4,1,11,1,0,0,0,1,0,0,5,13,0,0,0,1,0,3,2,2,0,5,4,0,0,1,0,0,5,0,27,2,1,1,1,0,3,0,4,3]},{"label":"Michael Saylor","topics":"saylor,michael,saylors,strategy,buys","description":"The key topics discussed in the messages from twitter are:\n1. Michael Saylor's strategic purchases of Bitcoin through MicroStrategy\n2. Speculation about Saylor's influence and impact on the crypto industry\n3. Comparisons between Saylor and other prominent figures in history\n4. Criticism and defense of Saylor's actions and decisions\n5. Discussion about the potential long-term implications of Saylor's Bitcoin holdings\n6. Debate about whether Saylor and MicroStrategy pose a systemic risk to Bitcoin\n7. Analysis of Saylor's financial acumen and visionary leadership in the crypto space.","data":[3,1,0,0,1,6,3,0,1,2,14,1,1,2,1,2,2,1,1,0,2,2,2,3,2,1,1,2,0,0,1,0,1,0,2,4,0,5,4,3,3,1,6,17,1,0,8,2,1,3,0,2,1,3,2]},{"label":"PEPE","topics":"pepe,whale,frens,memes,loss","description":"The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- Discussion about the cryptocurrency $PEPE and its potential for a breakout and price increase\n- Introduction of a new currency that combines FPPE with incentive memes to unite people\n- Analysis of $PEPE's chart and comparison with ADA's chart, suggesting a possible bear market\n- Speculation on $PEPE's trend reversal on March 11 and advice to hold for potential gains\n- Trading strategies such as swing short capturing downside moves and planning for future bounces\n\nOverall, the discussions on Twitter revolve around the potential price movements of $PEPE, the introduction of new currencies, and trading strategies in the crypto industry.","data":[2,1,0,0,0,1,2,2,0,2,3,2,5,1,1,0,3,1,1,1,11,2,0,2,3,2,2,0,0,0,1,4,1,1,6,6,2,3,20,1,1,1,1,3,2,2,0,1,2,1,5,3,1,4,3]},{"label":"Whales","topics":"whales,whale,liquidation,buying,eth","description":"The key topic discussed in the messages from Twitter is the activity of whales in the crypto market, specifically focusing on their buying and selling behavior in relation to Ethereum (ETH). Whales are seen accumulating large amounts of ETH, making significant purchases even during price drops. There is also mention of potential liquidation risks for ETH holders on MakerDAO due to the large positions held by whales. Overall, the sentiment is bullish, with the belief that better days are coming for ETH based on whale activity.","data":[2,1,0,0,0,0,4,14,0,6,3,0,1,0,2,2,1,2,5,1,1,1,0,0,0,0,1,1,0,0,1,1,4,2,0,1,4,1,0,2,1,1,0,2,2,2,0,2,1,1,1,5,1,33,3]},{"label":"Gold","topics":"gold,digital,priced,narrative,bitcoin","description":"Based on the messages from Twitter, it is clear that there is a lot of discussion comparing Bitcoin and Gold. Some key points mentioned include:\n\n- Bitcoin is seen as better than Gold by some, but there is also a suggestion to own both.\n- The narrative that Bitcoin is digital gold is being challenged, especially as Gold hits record highs while Bitcoin crashes.\n- There is a divergence between Gold and Bitcoin, with Gold's stability being highlighted as the ultimate safe haven.\n- JPMorgan analysts have noted that Bitcoin's narrative as digital gold and an inflation hedge is under pressure, as demand for Gold continues to rise while Bitcoin's price has not followed suit.\n\nOverall, the discussion on social media seems to be focused on the comparison between Bitcoin and Gold, with differing opinions on their value and role in the current financial landscape.","data":[0,4,0,0,1,1,7,13,0,2,2,4,2,1,1,1,3,3,1,5,2,1,27,0,3,0,0,0,0,0,1,1,3,0,0,0,1,0,1,0,0,3,3,4,3,1,3,2,3,3,2,0,0,1,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-65.ts b/priv/repo/major_topics_seed/data-65.ts deleted file mode 100644 index 4d944fa845..0000000000 --- a/priv/repo/major_topics_seed/data-65.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '27.03.25', - '28.03.25', - '28.03.25', - '28.03.25', - '28.03.25', - '28.03.25', - '28.03.25', - '28.03.25', - '29.03.25', - '29.03.25', - '29.03.25', - '29.03.25', - '29.03.25', - '29.03.25', - '29.03.25', - '29.03.25', - '30.03.25', - '30.03.25', - '30.03.25', - '30.03.25', - '30.03.25', - '30.03.25', - '30.03.25', - '30.03.25', - '31.03.25', - '31.03.25', - '31.03.25', - '31.03.25', - '31.03.25', - '31.03.25', - '31.03.25', - '31.03.25', - '01.04.25', - '01.04.25', - '01.04.25', - '01.04.25', - '01.04.25', - '01.04.25', - '01.04.25', - '01.04.25', - '02.04.25', - '02.04.25', - '02.04.25', - '02.04.25', - '02.04.25', - '02.04.25', - '02.04.25', - '02.04.25', - '03.04.25', - '03.04.25', - '03.04.25', - '03.04.25', - '03.04.25', - '03.04.25', - '03.04.25', - ], - datasets: [ - { - label: 'ETH', - topics: 'eth,ethereum,q1,worst,q2', - description: - "The key topics currently discussed in the messages from Twitter about the crypto industry include:\n1. Speculation on the price of Ethereum (ETH) possibly never going above $2000 again\n2. Strategies to avoid liquidations, especially with highly liquid collaterals like ETH\n3. Comparison of efficiency and cost between different digital assets, including BTC and ETH\n4. Impact of the fractured Ethos Network protocol on KaitoAI's price action\n5. Analysis of ETH needing to reclaim certain price levels for a bullish trend reversal\n6. Discussion on the utility, revenue, and economic activity of ETH\n7. Ethereum falling behind Bitcoin and losing its lead over rivals\n8. Prediction of Ethereum reaching a minimum of $5000 by the end of April and May\n9. Liquidity analysis of sUSDe May pool on Ethene Labs\n10. Trading levels to watch for ETH and avoiding overly bearish or bullish sentiment\n11. Ethereum OG cashing out a significant amount of ETH after a 7-year hold\n12. Discussion on the decline of Rocket Pool (Rpl) and team selling OTC to Coinbase\n\nThese topics reflect a range of discussions on price speculation, market trends, technical analysis, and project developments within the crypto industry, particularly focusing on Ethereum and related assets.", - data: [ - 11, 6, 0, 0, 3, 19, 9, 1, 18, 4, 12, 18, 17, 27, 12, 18, 21, 101, 88, 27, 22, 20, 13, 15, - 28, 16, 13, 18, 0, 0, 14, 33, 28, 12, 12, 20, 13, 25, 24, 7, 38, 18, 19, 30, 27, 8, 17, 9, - 23, 11, 11, 22, 9, 12, 22, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,money,fiat,understand,value', - description: - 'Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n1. Increased bitcoin position size\n2. Bitcoin as neutral money\n3. Political debate on a bitcoin standard\n4. Maximizing bitcoin returns without emotion\n5. Bitcoin breaking out\n6. Legal tender and fiat currency\n7. AquaBitcoin and mx12Art collaboration\n8. Bitcoin Eternals project\n\nThese topics reflect the ongoing conversations and sentiments within the crypto community on Twitter.', - data: [ - 8, 3, 0, 0, 6, 12, 83, 137, 5, 12, 6, 15, 13, 11, 14, 14, 9, 6, 10, 15, 13, 8, 11, 24, 24, - 13, 13, 18, 1, 0, 6, 15, 17, 14, 22, 16, 7, 20, 17, 9, 12, 11, 20, 18, 15, 15, 16, 10, 16, - 6, 7, 18, 11, 17, 19, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,human', - description: - "The messages from Twitter discuss various topics related to AI, blockchain, robotics, and the intersection of technology with creativity. Some key words mentioned include AI models, blockchain, deepfake, humanoid robots, ZK-powered machine learning network, decentralized governance, real-time market data, mindreading AI tools, AI art, and innovation. The discussions highlight the advancements in AI technology, the potential impact on various industries, and the concerns surrounding AI misuse and deepfake problems. Additionally, there is a focus on the integration of AI with blockchain technology to enhance security and reliability. Overall, the messages reflect a growing interest and excitement around the possibilities and challenges presented by AI in today's digital landscape.", - data: [ - 64, 62, 0, 0, 9, 12, 6, 0, 5, 9, 9, 19, 14, 13, 4, 25, 4, 15, 11, 8, 11, 21, 14, 11, 9, 18, - 19, 11, 3, 0, 14, 10, 14, 14, 12, 24, 16, 9, 11, 17, 24, 26, 17, 10, 11, 15, 9, 20, 15, 19, - 16, 12, 17, 9, 16, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coins,coin', - description: - 'The key topics discussed in the messages from twitter about memecoins are:\n1. The popularity and excitement surrounding meme coins in the crypto industry.\n2. Specific meme coins such as Fartcoin, Aurafarming memecoin, Arctic Pablo Coin, Mog Coin, Ponke, and $pleb.\n3. The growth of meme coin communities and their potential for exponential returns.\n4. Meme trading bots and their impact on the crypto market.\n5. Support and involvement of influencers and community members in promoting meme coins.\n6. Speculation and anticipation of meme coins like $MT reaching new highs.\n7. Engagement activities like meme contests and raffles within meme coin communities.', - data: [ - 1, 5, 0, 0, 6, 9, 9, 1, 3, 5, 12, 10, 12, 8, 2, 10, 10, 3, 8, 7, 7, 5, 8, 11, 2, 10, 3, 4, - 0, 0, 7, 3, 10, 76, 6, 7, 5, 8, 7, 10, 3, 2, 8, 6, 9, 10, 8, 7, 11, 9, 6, 8, 4, 3, 4, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,gamefi', - description: - 'The messages from twitter discuss various topics related to the crypto gaming industry. Some key points mentioned include:\n\n- The excitement and anticipation for upcoming games such as FIFA Rivals and Eternum Season One.\n- The potential for gaming to lead to mass adoption of cryptocurrency.\n- The announcement of the termination of game operations and Treasure Chain by Treasure DAO due to financial conditions.\n- The discussion of physical games charging a premium over digital counterparts.\n- The development of new games such as COOLBALL and Brawler Master.\n- The partnership between SKALE Network and ForLootAndGlory for a game night event.\n- The collaboration between Heroic and Polkadot in redefining the gaming industry.\n\nOverall, the messages highlight the growing interest and innovation within the crypto gaming space, with a focus on new game releases, partnerships, and the potential impact on the industry.', - data: [ - 3, 2, 0, 0, 1, 4, 4, 0, 4, 1, 0, 6, 3, 4, 5, 3, 2, 3, 3, 10, 3, 48, 2, 4, 7, 5, 5, 1, 0, 0, - 8, 8, 5, 3, 3, 7, 5, 3, 18, 3, 4, 2, 8, 3, 5, 4, 5, 3, 7, 0, 3, 6, 8, 7, 5, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,work', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- NFTs and their use cases, particularly in the fine art industry\n- Art collaborations and auctions on platforms like SuperRare\n- The intersection of art and technology, such as QR code paintings\n- The impact of AI on art and the implications for the future\n- The history and significance of great artists and storytellers\n- Opportunities for artists in the cryptoart scene, such as being displayed on digital billboards\n- The role of artists in shaping NFT history and the cryptoart scene\n\nOverall, the discussions on social media highlight the growing interest and opportunities for artists in the crypto industry, as well as the potential for innovation and collaboration in the art world.', - data: [ - 9, 3, 0, 0, 50, 8, 1, 0, 1, 1, 1, 5, 3, 2, 0, 6, 5, 4, 4, 9, 4, 3, 4, 8, 4, 5, 3, 1, 0, 0, - 2, 2, 9, 7, 2, 3, 3, 5, 4, 4, 7, 5, 3, 3, 10, 2, 7, 3, 6, 1, 5, 5, 3, 5, 10, - ], - }, - { - label: 'DeFi', - topics: 'defi,yield,lending,protocols,decentralized', - description: - 'Based on the messages from Twitter, it is evident that the topic of discussion revolves around DeFi (Decentralized Finance) in the crypto industry. Users are talking about the future of DeFi, the risks involved, the benefits of using private DeFi for owning financial data, new platforms and protocols being launched, as well as the potential of DeFi tokens in the future. There is also mention of specific projects such as dHEDGE, NODO, XverseApp, Orbiter Finance, and Maverick, showcasing the diversity and innovation within the DeFi space. Additionally, community updates, collaborations, and proposals within the DeFi ecosystem are also being highlighted. Overall, the sentiment seems positive towards the growth and evolution of DeFi in the crypto industry.', - data: [ - 2, 2, 0, 0, 0, 2, 2, 0, 3, 5, 1, 6, 3, 2, 5, 15, 3, 2, 12, 8, 9, 5, 6, 1, 2, 7, 2, 8, 0, 0, - 3, 5, 1, 5, 3, 8, 2, 4, 2, 7, 2, 9, 4, 3, 5, 6, 5, 5, 4, 7, 0, 8, 4, 3, 8, - ], - }, - { - label: 'DOGE', - topics: 'doge,elon,musk,government,dogecoin', - description: - "The key topics discussed in the messages from twitter include:\n- Elon Musk's involvement with Dogecoin and his transparency in business\n- Allegations of academic fraud and its impact on SCOTUS\n- Efforts by the DOGE team to address medical fraud and improve transparency in healthcare\n- Speculation about Elon Musk advocating for blockchain privacy\n- Concerns about the U.S. government's plans regarding Dogecoin\n- Potential launch of a stablecoin by Elon Musk on X platform\n- Reports of Elon Musk potentially leaving his current role\n- Denial by Elon Musk of reports about leaving DOGE and increase in Tesla's shares\n\nOverall, the messages reflect a mix of praise for Elon Musk's transparency and efforts to address fraud, as well as speculation and concerns about his involvement with Dogecoin and potential future plans.", - data: [ - 4, 2, 0, 0, 2, 2, 3, 0, 1, 7, 4, 2, 9, 7, 0, 8, 27, 4, 1, 3, 1, 1, 2, 6, 2, 3, 11, 2, 0, 0, - 6, 3, 3, 2, 2, 6, 5, 4, 4, 1, 4, 3, 13, 6, 7, 6, 5, 7, 3, 1, 2, 4, 2, 6, 3, - ], - }, - { - label: 'BTC Price', - topics: 'resistance,btc,zone,low,lower', - description: - "The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin's potential for a relief rally on shorter timeframes\n- Critical support levels for Bitcoin at $76,180, $58,080, $43,740, and $39,980\n- Bitcoin retesting the MTF dump zone\n- Speculation about Bitcoin reaching $100k by May\n- Analysis of Bitcoin's price action and key levels\n- Bitcoin slipping below $82k and what's ahead for its price\n- Technical analysis of Bitcoin's chart and resistance zones\n- Discussion about Bitcoin's current uptrend and downtrend cycles\n- Analysis of Bitcoin's recent pump and rejection from the $87k-88k area\n\nOverall, the sentiment seems to be mixed with some traders expecting a relief rally while others are cautious about potential downside risks. Technical analysis and key support/resistance levels are being closely monitored by the community.", - data: [ - 1, 1, 0, 0, 2, 4, 5, 18, 4, 15, 3, 2, 1, 3, 4, 3, 7, 1, 2, 2, 1, 2, 1, 0, 6, 8, 4, 4, 0, 0, - 2, 1, 8, 2, 2, 2, 1, 3, 6, 6, 0, 8, 7, 2, 5, 1, 11, 1, 1, 2, 3, 8, 1, 1, 2, - ], - }, - { - label: 'SOL', - topics: 'solana,policy,sol,accumulation,token', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana (SOL) network upgrades and potential price gains\n2. Kristin Smith's move from The Blockchain Association to the Solana Policy Institute\n3. Solana transaction fees and protocol revenue decrease\n4. Large transactions of SOL on crypto exchanges like Kraken\n5. Potential price movements of SOL, including a possible dip to $113\n6. Comparison of Ethereum and Solana transaction parallelization\n7. New projects and developments on Solana, such as SOL Pilot and SpaceBolt\n8. UTOPIA FAQ regarding copyright NFTs on the Soneium chain\n\nOverall, the discussions on Twitter indicate a mix of price speculation, network upgrades, industry developments, and new projects on the Solana network.", - data: [ - 1, 2, 0, 0, 2, 2, 3, 0, 5, 2, 7, 1, 3, 6, 5, 6, 4, 6, 4, 6, 4, 1, 9, 2, 5, 1, 6, 1, 0, 0, 6, - 2, 5, 1, 2, 8, 3, 1, 4, 8, 4, 3, 2, 3, 13, 5, 6, 4, 3, 3, 1, 1, 1, 2, 1, - ], - }, - { - label: 'GameStop', - topics: 'gme,billion,raised,notes,buy', - description: - "The key topics currently discussed on Twitter regarding the crypto industry are GameStop's potential investment in Bitcoin, the impact of GameStop's recent fundraising on their ability to purchase Bitcoin, and rumors about GameStop's CEO Ryan Cohen waiting for Bitcoin to break out over $90,000 before starting a buy algorithm. Additionally, there is speculation about GameStop transitioning from a meme stock to a Bitcoin treasury company and the potential implications of this move on the market. Other topics mentioned include the involvement of Tencent as an investor in Ubisoft's new subsidiary and the release of Sony's \"The Last of Us Part II Remastered\" on PC. Overall, the focus is on the intersection of traditional finance and cryptocurrency, as well as the evolving strategies of major companies in the industry.", - data: [ - 0, 5, 0, 0, 2, 4, 4, 3, 11, 0, 3, 3, 5, 2, 2, 2, 1, 0, 1, 1, 0, 55, 2, 0, 1, 1, 1, 3, 0, 0, - 3, 1, 3, 4, 0, 5, 4, 0, 1, 6, 7, 2, 2, 2, 1, 1, 4, 3, 1, 1, 0, 5, 2, 0, 2, - ], - }, - { - label: 'PulseChain', - topics: 'pulsechain,heart,stupid,pls,believe', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Richard Heart's involvement in the Pulsechain project and allegations of exploiting investors\n- The performance of pDAI compared to other assets and its impact on the market\n- Controversies surrounding Pulsechain and its developers\n- The decline in value of HEX on Ethereum\n- Criticisms of anti-pDAI influencers and their alleged hypocrisy\n- Updates on Pulsechain's development and partnerships\n\nOverall, the discussions seem to revolve around the credibility of projects and individuals in the crypto space, as well as the performance of specific tokens and chains.", - data: [ - 2, 3, 0, 0, 0, 1, 0, 0, 1, 5, 3, 3, 1, 3, 1, 1, 4, 1, 3, 1, 3, 2, 2, 3, 9, 2, 6, 3, 1, 0, 4, - 3, 3, 2, 0, 1, 1, 1, 4, 7, 24, 2, 6, 5, 1, 1, 7, 4, 4, 2, 3, 0, 1, 1, 5, - ], - }, - { - label: 'Circle IPO', - topics: 'circle,ipo,usdc,files,filing', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry are:\n1. Circle's IPO filing: Circle, the issuer of the USDC stablecoin, has officially filed for an IPO with the SEC. The company is targeting a $5 billion market valuation and plans to go public on the NYSE under the ticker symbol CRCL. Major banks like JPMorgan and Citigroup are backing the offering.\n2. Circle's digital assets holding: There are concerns about the competence of the individual in charge of Circle's digital assets holding, with some users expressing skepticism.\n3. Circle's partnership with ICE: Circle has announced a partnership with Intercontinental Exchange (ICE) to integrate USDC into their markets products and infrastructure, marking a significant development in the stablecoin market.\n4. Circle's financial performance: Circle reported $1.7 billion in revenue, a 39.3% gross margin, and an operating profit of $167 million, positioning itself as a major player in the crypto industry.\n5. Regulatory environment: Stablecoins like USDC are gaining popularity within the US government and banking groups, with discussions around new crypto legislations like the GENIUS Act and STABLE Act in 2025.\n6. Crypto security: There is a growing concern about crypto investors losing $1.67 billion to hacks and exploits in Q1, highlighting the importance of security measures in the industry.", - data: [ - 1, 2, 0, 0, 0, 0, 1, 0, 10, 3, 2, 18, 5, 1, 4, 1, 1, 1, 1, 10, 2, 2, 4, 1, 9, 4, 4, 8, 0, 0, - 2, 0, 0, 2, 4, 3, 4, 2, 1, 2, 0, 4, 2, 3, 1, 1, 1, 4, 2, 0, 0, 3, 11, 2, 0, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoin,stablecoins,stable,act,legislation', - description: - 'The messages from Twitter are discussing the growing popularity and importance of stablecoins in the crypto industry. Stablecoins are being seen as a key component in the future of crypto, with government support for crypto accelerating globally. The market for stablecoins is expanding rapidly, with the dollar-denominated market cap reaching new all-time highs. There is also discussion about regulations surrounding stablecoins, with the STABLE Act aiming to regulate stablecoins with 1:1 reserves and AML compliance.\n\nAdditionally, there is mention of the importance of decentralization in the stablecoin market, with the need for startups to issue stablecoins competitively. The messages also highlight the potential risks associated with stablecoins, such as stablecoin crashes and the importance of securing assets.\n\nOverall, the messages emphasize the growing importance and potential of stablecoins in the crypto industry, with a focus on regulation, decentralization, and potential risks.', - data: [ - 3, 0, 0, 0, 1, 1, 4, 0, 1, 5, 0, 5, 0, 0, 2, 0, 2, 5, 1, 4, 1, 4, 1, 3, 0, 1, 2, 2, 0, 0, 4, - 2, 3, 4, 0, 1, 2, 4, 1, 1, 1, 1, 2, 6, 1, 40, 4, 0, 0, 4, 1, 2, 1, 3, 9, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,outlook,etf', - description: - "The key topics currently being discussed in the crypto community on Twitter include the ongoing debate between XRP and BTC, Ripple unlocking 1 billion XRP for monthly sales, the surge in XRP sent to Binance, the SEC dropping other cases but not Ripple, the partnership between Ripple and Chipper Cash for African remittances, technical analysis of XRP's price movements, debunking false claims about XRP surpassing Bitcoin on Korean exchanges, XRP being listed on Kraken for trading, analysts debating potential price movements for XRP ranging from $1.07 to $38, and the overall future outlook for XRP in the global finance industry.", - data: [ - 1, 5, 0, 0, 3, 4, 0, 0, 5, 1, 2, 4, 11, 6, 1, 3, 5, 3, 2, 3, 2, 3, 2, 0, 1, 4, 3, 6, 0, 0, - 2, 3, 3, 0, 2, 2, 1, 1, 2, 8, 2, 2, 3, 1, 2, 2, 1, 1, 3, 1, 4, 4, 2, 1, 2, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,net,inflows,outflows,spot', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Bitcoin and Ethereum ETFs, with a focus on inflows and outflows. Bitcoin ETFs have experienced both inflows and outflows, while Ethereum ETFs have seen consistent inflows. Additionally, there is mention of Solana leading in net outflows, and the comparison of ETFs to owning actual Bitcoin, highlighting the speculative nature of ETFs. The messages also touch on institutional involvement in the crypto industry, with a focus on fund management and increasing ETF exposure. Overall, the key topics discussed in the messages include ETF movements, institutional involvement, and the comparison between ETFs and owning actual cryptocurrencies.', - data: [ - 4, 1, 0, 0, 1, 0, 7, 4, 3, 2, 0, 0, 0, 5, 4, 4, 1, 11, 1, 0, 0, 0, 1, 0, 0, 5, 13, 0, 0, 0, - 1, 0, 3, 2, 2, 0, 5, 4, 0, 0, 1, 0, 0, 5, 0, 27, 2, 1, 1, 1, 0, 3, 0, 4, 3, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,michael,saylors,strategy,buys', - description: - "The key topics discussed in the messages from twitter are:\n1. Michael Saylor's strategic purchases of Bitcoin through MicroStrategy\n2. Speculation about Saylor's influence and impact on the crypto industry\n3. Comparisons between Saylor and other prominent figures in history\n4. Criticism and defense of Saylor's actions and decisions\n5. Discussion about the potential long-term implications of Saylor's Bitcoin holdings\n6. Debate about whether Saylor and MicroStrategy pose a systemic risk to Bitcoin\n7. Analysis of Saylor's financial acumen and visionary leadership in the crypto space.", - data: [ - 3, 1, 0, 0, 1, 6, 3, 0, 1, 2, 14, 1, 1, 2, 1, 2, 2, 1, 1, 0, 2, 2, 2, 3, 2, 1, 1, 2, 0, 0, - 1, 0, 1, 0, 2, 4, 0, 5, 4, 3, 3, 1, 6, 17, 1, 0, 8, 2, 1, 3, 0, 2, 1, 3, 2, - ], - }, - { - label: 'PEPE', - topics: 'pepe,whale,frens,memes,loss', - description: - "The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- Discussion about the cryptocurrency $PEPE and its potential for a breakout and price increase\n- Introduction of a new currency that combines FPPE with incentive memes to unite people\n- Analysis of $PEPE's chart and comparison with ADA's chart, suggesting a possible bear market\n- Speculation on $PEPE's trend reversal on March 11 and advice to hold for potential gains\n- Trading strategies such as swing short capturing downside moves and planning for future bounces\n\nOverall, the discussions on Twitter revolve around the potential price movements of $PEPE, the introduction of new currencies, and trading strategies in the crypto industry.", - data: [ - 2, 1, 0, 0, 0, 1, 2, 2, 0, 2, 3, 2, 5, 1, 1, 0, 3, 1, 1, 1, 11, 2, 0, 2, 3, 2, 2, 0, 0, 0, - 1, 4, 1, 1, 6, 6, 2, 3, 20, 1, 1, 1, 1, 3, 2, 2, 0, 1, 2, 1, 5, 3, 1, 4, 3, - ], - }, - { - label: 'Whales', - topics: 'whales,whale,liquidation,buying,eth', - description: - 'The key topic discussed in the messages from Twitter is the activity of whales in the crypto market, specifically focusing on their buying and selling behavior in relation to Ethereum (ETH). Whales are seen accumulating large amounts of ETH, making significant purchases even during price drops. There is also mention of potential liquidation risks for ETH holders on MakerDAO due to the large positions held by whales. Overall, the sentiment is bullish, with the belief that better days are coming for ETH based on whale activity.', - data: [ - 2, 1, 0, 0, 0, 0, 4, 14, 0, 6, 3, 0, 1, 0, 2, 2, 1, 2, 5, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, - 1, 1, 4, 2, 0, 1, 4, 1, 0, 2, 1, 1, 0, 2, 2, 2, 0, 2, 1, 1, 1, 5, 1, 33, 3, - ], - }, - { - label: 'Gold', - topics: 'gold,digital,priced,narrative,bitcoin', - description: - "Based on the messages from Twitter, it is clear that there is a lot of discussion comparing Bitcoin and Gold. Some key points mentioned include:\n\n- Bitcoin is seen as better than Gold by some, but there is also a suggestion to own both.\n- The narrative that Bitcoin is digital gold is being challenged, especially as Gold hits record highs while Bitcoin crashes.\n- There is a divergence between Gold and Bitcoin, with Gold's stability being highlighted as the ultimate safe haven.\n- JPMorgan analysts have noted that Bitcoin's narrative as digital gold and an inflation hedge is under pressure, as demand for Gold continues to rise while Bitcoin's price has not followed suit.\n\nOverall, the discussion on social media seems to be focused on the comparison between Bitcoin and Gold, with differing opinions on their value and role in the current financial landscape.", - data: [ - 0, 4, 0, 0, 1, 1, 7, 13, 0, 2, 2, 4, 2, 1, 1, 1, 3, 3, 1, 5, 2, 1, 27, 0, 3, 0, 0, 0, 0, 0, - 1, 1, 3, 0, 0, 0, 1, 0, 1, 0, 0, 3, 3, 4, 3, 1, 3, 2, 3, 3, 2, 0, 0, 1, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-66.json b/priv/repo/major_topics_seed/data-66.json deleted file mode 100644 index ceece082f6..0000000000 --- a/priv/repo/major_topics_seed/data-66.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["03.04.25","04.04.25","04.04.25","04.04.25","04.04.25","04.04.25","04.04.25","04.04.25","05.04.25","05.04.25","05.04.25","05.04.25","05.04.25","05.04.25","05.04.25","05.04.25","06.04.25","06.04.25","06.04.25","06.04.25","06.04.25","06.04.25","06.04.25","06.04.25","07.04.25","07.04.25","07.04.25","07.04.25","07.04.25","07.04.25","07.04.25","07.04.25","08.04.25","08.04.25","08.04.25","08.04.25","08.04.25","08.04.25","08.04.25","08.04.25","09.04.25","09.04.25","09.04.25","09.04.25","09.04.25","09.04.25","09.04.25","09.04.25","10.04.25","10.04.25","10.04.25","10.04.25","10.04.25","10.04.25","10.04.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,data","description":"The key topics discussed in the messages from twitter are:\n1. The potential of AI in the fitness industry and its impact on markets.\n2. Speculation about Sam Altman keeping secrets related to \"Open\" AI and the future of AI without borders.\n3. The role of governments and politics in the advancement of AI technology.\n4. The integration of quantum sensors with AI tools for scientific discovery.\n5. Credible individuals in the crypto*ai space who are also knowledgeable in AI.\n6. The development of AI agents for dynamic environments using Neurochimp framework.\n7. Accountability of AI through blockchain technology.\n8. Review of Freepik as a versatile platform for digital creators using AI tools.\n9. The importance of aligning AI with humanity for governance.\n10. The use of purpose-built neural networks for blockchain security with Forta Firewall.","data":[18,77,5,8,8,0,1,4,14,8,5,16,7,10,12,8,18,7,8,12,22,12,23,4,14,13,9,6,12,7,9,13,10,16,15,11,17,14,15,10,11,10,8,10,3,15,9,26,12,5,3,12,15,7,15]},{"label":"ETH","topics":"eth,ethereum,price,1500,2018","description":"The messages from Twitter discuss various aspects of the Ethereum (ETH) cryptocurrency, including its price fluctuations, comparisons to other cryptocurrencies like Bitcoin (BTC) and Solana (SOL), whale accumulation, potential for a breakout to $3,200, and recent liquidations in the market. There is also mention of stablecoin supply on the Ethereum network, the SEC lawsuit against Tether, and the misallocation of capital in the crypto industry. Overall, the sentiment towards Ethereum seems mixed, with some users expressing optimism about its potential for growth while others highlight its recent price drops and challenges in the market.","data":[4,2,0,6,2,0,2,11,12,12,5,6,9,7,5,17,115,9,14,5,7,5,6,14,1,6,6,2,7,12,13,7,13,6,11,8,8,10,9,7,6,7,8,12,4,5,8,11,11,8,2,11,6,3,9]},{"label":"GameFi","topics":"gaming,game,games,web3,play","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include Web3 gaming, NFT characters in games, real rewards for players, the growth of indie games, and the potential of Web3 gaming to reward players for their contributions. Players are excited about new games like MagicCraft and PlayVariance, as well as the opportunity to own a piece of the games they help create in the Web3 space. There is also discussion about the manipulation in some games and the importance of being aware of it. Overall, the crypto community is enthusiastic about the future of Web3 gaming and the potential for players to earn real rewards.","data":[5,4,0,4,8,0,5,2,6,5,8,3,5,4,5,1,0,4,4,48,12,6,12,5,2,10,6,4,10,5,9,2,1,4,5,2,22,4,12,4,2,1,7,4,2,3,5,6,3,4,5,3,8,3,3]},{"label":"Art","topics":"art,artist,piece,digital,race","description":"The messages from twitter are mainly focused on various forms of art, including performance art, calligraphy, hyperrealistic art, and ASCII art. The discussions also touch on the importance of recognizing text as a visual art form and supporting different art mediums. Additionally, there are mentions of specific artists and their work, as well as calls for submissions for art projects related to nature therapy and mental wellness. The overall tone of the messages is positive and enthusiastic about art and creativity.","data":[3,5,44,24,0,0,2,1,4,2,3,11,6,9,7,5,3,5,7,2,9,4,4,2,6,3,2,1,5,3,7,2,6,5,8,3,8,6,4,3,6,3,7,5,4,6,1,7,6,3,3,2,5,3,2]},{"label":"BTC Price","topics":"btc,lows,daily,level,resistance","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin's potential double bottom and bounce zone\n- Bitcoin's correction of -32% and comparison to 2017\n- Possibility of protecting lows at $76,000 for new all-time highs\n- Bitcoin's failure to break above downtrend and form new lower highs\n- Opportunity in the current market volatility\n- Speculation on a reversal building in Bitcoin\n- Analysis of daily candle closing above key levels\n- Impact of CPI y/y data on Bitcoin\n- Successful breakout towards resistance levels of 85-86k\n- Importance of key levels and risk management in trading\n- Expectations of a bracketed environment in trading range of 80-85k\n- Trader's decision to be fully out of the market for now\n\nOverall, the sentiment seems to be cautious optimism with a focus on technical analysis and potential trading opportunities in the current market conditions.","data":[1,2,2,3,10,25,15,1,25,3,8,5,0,20,2,3,4,9,1,4,2,3,5,4,2,0,4,1,10,9,4,2,2,2,4,2,5,5,6,11,6,4,7,3,3,4,0,3,2,2,0,7,2,5,4]},{"label":"BTC Mining","topics":"mining,miners,miner,blocks,network","description":"Based on the messages from twitter, key topics currently discussed in the crypto industry include:\n- Mining activities and operations, such as node churn, migration of vaults, and breakeven costs for Bitcoin miners\n- Companies and individuals involved in Bitcoin mining, such as Riot Platforms and former Riot Platforms VP launching a Bitcoin securitization venture\n- Performance and achievements of Bitcoin miners, with Riot Blockchain mining a total of 1,530 BTC in Q1 2025\n- Critiques and discussions on studies and articles related to Bitcoin mining, including concerns about flawed studies and the impact of price fluctuations on miner revenue\n- Security and scalability of Bitcoin's network, with a focus on hash rate and Elastos' security features\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, industry news, and opinions on the current state of Bitcoin mining and its implications for the crypto industry.","data":[4,3,1,2,2,13,7,6,0,3,3,6,3,3,9,2,0,0,3,4,3,2,8,11,6,6,1,6,5,4,3,20,7,10,2,2,2,4,3,5,7,1,5,10,4,5,2,2,12,4,5,6,0,2,3]},{"label":"DOGE","topics":"doge,dogecoin,moon,spending,cuts","description":"Based on the messages from Twitter, it is clear that Dogecoin is a popular topic of discussion within the crypto community. Users are expressing their excitement and optimism about Dogecoin, with some even claiming to have made significant profits from investing in it. There is also mention of Dogecoin being a store of value and its aggressive approach towards cutting waste and fraud. Additionally, there is a comparison between Dogecoin and other cryptocurrencies, with Dogecoin being portrayed as a strong contender. Overall, the sentiment towards Dogecoin in these messages is positive and enthusiastic.","data":[2,2,1,3,4,0,2,0,2,1,6,4,4,3,81,4,2,3,5,2,4,3,4,10,1,0,6,5,1,3,1,3,3,0,3,8,4,1,1,2,6,3,3,3,7,2,1,4,4,1,3,3,8,5,5]},{"label":"DeFi","topics":"defi,onchain,users,lending,protocols","description":"The key topics currently discussed in the crypto industry on Twitter include DeFi (Decentralized Finance), Oracles, NFTs (Non-Fungible Tokens), Berachain trends, TRON, DAO (Decentralized Autonomous Organization), liquidations, DeFi Kingdoms, deBridge, VR Metaverse, DIA (Decentralized Information Asset), LunarCrush sector performance, SwarmNode, PAAI AI, BankrCoin, aixbt, LayerAI, GRIFFAIN, AlphaArc, ChainGPT, WHISP, and Dolos The Bully. These topics cover a range of subjects within the crypto industry, from technology and platforms to market trends and performance.","data":[5,1,2,3,3,1,3,3,3,8,2,7,4,8,9,3,3,7,7,6,1,3,2,4,3,9,7,1,7,5,2,3,2,1,4,2,5,4,6,5,7,6,2,6,3,6,6,3,4,6,6,7,1,4,4]},{"label":"SOL","topics":"solana,sol,staked,kraken,stablecoin","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Solana ($SOL) being on sale and potential for handsome returns in the coming months\n- Raydium accounting for nearly half of the total DEX volume on Solana in 2025\n- Solana's performance compared to other major cryptocurrencies like Bitcoin, Ethereum, and Polkadot\n- Solana taking the lead in 24-hour decentralized exchange trading volume across all chains\n- BNSOL by Binance growing its presence in Solana's LST market\n- Potential price levels for $SOL in the coming months, with mentions of Trump's impact and China's retaliatory tariffs\n- Liquidation of short positions on $SOL\n- A user looking to sell locked $SLP tokens with a 10-year unlock schedule\n- General sentiment about the crypto market and the unpredictability of coin prices\n\nOverall, the messages reflect a mix of price analysis, market trends, and investor sentiment surrounding Solana and the broader crypto industry.","data":[4,2,1,1,4,1,4,4,4,5,2,8,4,4,4,6,3,7,1,2,1,1,0,4,0,2,2,18,3,6,7,3,1,10,1,2,6,6,6,1,2,2,1,30,5,4,2,2,1,4,4,9,4,2,1]},{"label":"Recession","topics":"recession,odds,goldman,60,year","description":"The key topics currently being discussed on Twitter regarding the crypto industry are recession fears, potential economic downturns, and the impact on various financial institutions such as Goldman Sachs and JP Morgan. There is speculation about the likelihood of a recession in the US, with predictions ranging from 60% to 70% on different platforms. Some users are discussing strategies to hedge against a recession, such as investing in \"recession coin.\" Additionally, there is mention of stagflationary forecasts and revisions in growth and inflation predictions by major financial institutions. Overall, there is a sense of uncertainty and concern about the economic outlook and its potential impact on the crypto market.","data":[2,1,0,3,1,0,0,13,0,2,3,2,2,1,3,5,2,3,3,0,11,16,4,2,2,0,0,0,0,2,4,3,4,3,6,1,4,4,7,47,3,5,0,2,4,1,3,2,2,2,0,2,3,2,4]},{"label":"10-Year US Treasury Yields","topics":"yield,yields,bond,treasury,bonds","description":"The key topics currently being discussed in the crypto industry on social media include:\n- Treasury 10-year yield dropping by 10 basis points to 3.88%\n- Dollar index falling\n- Bond market teetering on the edge\n- Risk-on appetite increasing\n- Treasury yields surging due to tariffs sparking bond selloff and inflation concerns\n- Interest rates being focused on bringing down for Main Street\n- 10-Year US Treasury Yield experiencing abnormal roundtrip and intraday moves\n- Bonds not receiving bids despite yields pumping high\n- US government bond yields trading around 4.40%\n- Yield Forwarding live on $beS / $OS pool\n- Stealth refinancing on U.S. debt\n\nThese topics indicate a mix of economic indicators, market trends, and policy implications that are currently shaping discussions within the crypto industry.","data":[12,1,0,3,2,0,9,1,1,1,3,3,2,1,1,5,4,2,1,3,2,6,4,2,2,8,2,3,1,7,2,1,2,7,1,2,1,0,2,6,1,1,2,3,4,2,2,8,0,3,1,5,3,4,46]},{"label":"Michael Saylor","topics":"saylor,michael,strategy,sell,filing","description":"The key topics discussed in the messages from twitter are:\n1. Michael Saylor's involvement in buying Bitcoin and potential losses\n2. MicroStrategy's unrealized loss on crypto\n3. Speculation on Bitcoin reaching $1 million\n4. MicroStrategy leveraging Bitcoin to borrow money\n5. Potential selling of Bitcoin at a loss by MicroStrategy\n6. Impact of Bitcoin price drop on MicroStrategy's stock performance\n7. Ray Dalio's stance on Bitcoin in his portfolio\n\nOverall, the messages highlight the ongoing discussions and concerns surrounding MicroStrategy's Bitcoin holdings, potential losses, and the future outlook for Bitcoin prices.","data":[2,2,1,1,7,1,3,3,7,3,2,3,1,3,0,1,4,5,4,0,5,3,2,3,0,1,3,3,6,2,2,7,6,2,0,3,3,7,5,2,4,18,6,2,2,24,2,2,3,1,1,3,2,4,4]},{"label":"Inflation ","topics":"cpi,inflation,24,28,core","description":"Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n\n1. U.S. inflation falling to 2.4%, lower than expectations, and the potential impact on asset prices and the economy.\n2. The Federal Reserve Board meeting privately on interest rates and the possibility of money printing or rate cuts.\n3. March employment data release and Federal Reserve Chair Powell delivering remarks on the economic outlook.\n4. FOMC minutes from the March policy meeting being closely watched by investors.\n5. Shelter CPI moving down from a peak to 4.0%, leading to a decline in core inflation.\n6. Speculation on whether the Fed will do rate cuts in response to decreasing CPI and Core CPI inflation rates.\n\nOverall, the discussions on Twitter indicate a focus on economic indicators, Federal Reserve actions, and their potential impact on the market and inflation rates.","data":[2,2,0,1,4,0,0,21,1,1,2,10,5,0,0,1,1,5,4,0,1,3,0,2,4,37,1,0,2,1,1,3,5,2,1,1,3,3,6,3,1,1,5,0,0,0,3,1,4,2,1,0,0,4,1]},{"label":"BTC","topics":"haven,fiat,bitcoin,money,safe","description":"The key topics currently being discussed on Twitter regarding Bitcoin include its role as a safe haven asset, its potential to protect against inflation and dictatorship, its ability to provide financial independence, and its importance in the global economy. Many users are highlighting Bitcoin as a solution for individuals looking to safeguard their wealth and protect themselves from economic uncertainties. Additionally, there is a focus on the importance of understanding the technology behind Bitcoin, such as running an SPV client for validation. Overall, the sentiment towards Bitcoin in these messages is positive, with users emphasizing its value and potential benefits.","data":[4,3,0,1,6,39,4,1,2,4,1,3,0,1,2,0,0,1,4,0,1,1,0,3,1,5,4,0,5,2,1,1,6,1,0,4,3,3,1,5,6,2,4,4,3,4,0,1,2,2,4,0,0,1,3]},{"label":"Tariffs","topics":"eu,president,tariffs,coinpedia,imports","description":"The key topics currently being discussed on social media regarding the crypto industry include:\n- Tariffs and their impact on inflation\n- Trade tensions between the US and China\n- Launch of new XRP ETF in the US\n- Market reactions to Trump's tariff decisions\n- Airdrop of USD1 stablecoin to WLFI holders\n- White House stance on tariffs and trade deficits\n- Melania Trump's memecoin and token withdrawals\n- EU boosting gas imports from the US in response to tariffs\n- Geopolitical implications of tariffs and trade wars\n\nOverall, the discussions on social media reflect a mix of market reactions, political decisions, and potential impacts on the crypto industry due to tariffs and trade tensions.","data":[1,7,1,0,3,0,0,1,0,2,4,5,4,2,0,1,2,0,1,0,0,1,1,2,4,2,0,2,0,3,2,1,2,0,3,3,1,5,2,3,5,18,7,2,4,3,8,3,0,8,10,2,8,2,4]},{"label":"Buy the dip","topics":"dip,bought,buy,buying,dips","description":"The key topics currently being discussed in the crypto industry on social media include buying the dip, investing in Bitcoin and other cryptocurrencies during market downturns, taking advantage of generational dip opportunities for wealth growth, using bots for automated dip buying, and the impact of global market volatility on different investment strategies. Additionally, there is mention of specific cryptocurrencies like $MOG and Bitcoin, as well as events like the Bitcoin Policy Summit in DC. Overall, the sentiment seems to be optimistic about buying the dip and capitalizing on market fluctuations for potential gains.","data":[1,3,0,0,0,0,1,0,46,5,1,4,6,1,15,3,0,0,2,0,3,2,1,0,2,3,2,1,0,1,4,0,2,0,1,6,3,0,1,3,3,4,1,3,1,1,4,1,4,0,2,0,2,1,1]},{"label":"Whales","topics":"whale,whales,million,eth,position","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Ethereum whales taking advantage of price drops to accumulate large amounts of ETH\n- Whales selling off large amounts of ETH and missing out on potential profits\n- Dormant whales awakening and making significant moves with their ETH holdings\n- New crypto whales emerging and potentially making significant gains\n- Sharp price drops in Ethereum leading to liquidations and selling pressure\n- Intense buying and accumulation of BTC by whales\n- Fear of selling pressure in the market due to large transfers of BTC to exchanges\n- Market makers influencing price movements in certain projects\n- Potential reversal and breakout patterns in the ETH chart\n\nOverall, the discussion on Twitter revolves around the actions and behaviors of whales in the crypto market, as well as the potential impact on prices and market sentiment.","data":[0,1,0,1,3,1,6,9,1,2,1,1,2,0,6,1,11,0,0,0,0,3,0,1,6,4,0,7,0,7,2,0,1,3,6,1,2,0,1,3,2,1,7,1,0,0,0,1,0,0,1,4,0,33,1]},{"label":"Paris Blockchain Week","topics":"paris,blockchain,week,excited,event","description":"The messages from Twitter are discussing various events and conferences happening during Paris Blockchain Week. Key topics include discussions on industry leaders, expert takes on the future of crypto, blockchain endgame, RWA, AI, stablecoins, and the promotion of Thomas Prevot to Head of French Operations. There are also mentions of specific events such as the Chaindustry Blockchain Week, CoinGape at Paris Blockchain Week, and dYdX hosting a private evening. Additionally, there are opportunities for networking, engaging with community leaders, and hearing insights from top industry professionals. Overall, the crypto community seems excited and engaged in these events and discussions.","data":[2,2,0,0,1,0,3,3,0,1,2,1,1,2,1,2,3,14,1,1,1,1,2,5,1,1,2,1,0,5,0,1,1,0,2,3,3,2,5,1,2,1,0,2,1,1,4,9,3,0,0,0,2,22,2]},{"label":"SPX","topics":"spx,spy,level,ratio,candle","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n- Performance of portfolios, including unrealized losses\n- Cash positions and investments\n- Updates on various stocks and indices such as $SPX, $BTC, and $SPY\n- Speculation on buying Bitcoin and potential price movements\n- Bitcoin as a hedge against uncertainty\n- Technical analysis and support levels for $SPY and $BTC\n- Volatility and market conditions, including VIX levels\n- Comparison of Bitcoin and equities performance\n- Market breadth and historical performance of SPX\n- Buying opportunities and market corrections\n- Notional daily volume traded and market indicators\n- Predictions and analysis on blow-off tops and market rallies\n\nOverall, the discussions on Twitter suggest a mix of technical analysis, market sentiment, and investment strategies in the crypto industry.","data":[2,1,0,2,3,2,0,2,4,4,1,0,1,3,3,1,4,3,1,1,5,0,4,1,2,4,2,0,3,5,3,1,1,3,3,3,4,3,3,2,0,0,2,4,6,1,4,1,3,3,0,2,6,1,0]},{"label":"XRP","topics":"xrp,ripple,standard,surge,etf","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Ripple's $XRP calling on UK policymakers to aim to become a global leader in crypto\n- Binance #XRP traders betting on a price surge as breakout looms\n- Standard Chartered Bank predicting $XRP could hit $12.50 before Trump's term ends in 2028\n- Mixed opinions on XRP's price surge, with some predicting a drop to $1.30 and others seeing potential for a rally\n- XRP's open interest surging past $3B, signaling bullish sentiment and heightened market attention\n- Analysts divided on XRP's price surge, with some warning of a drop to $1.30 and others seeing potential for a rally\n- Traders betting big on a potential breakout for XRP, with predictions ranging from $2.60 to $17.50\n- XRP seeking stability in a volatile crypto landscape influenced by macroeconomic factors\n- XRP's price surge leading to analysts predicting a potential drop to $1.30 or a rally if it breaks the $2.14 resistance\n- XRP-BTC showing strong support on charts, with expectations of a massive rally against BTC before a historical crash\n- Speculation on XRP's price reaching $4.80+ after meeting the $2.47 target and breaking/holding above it\n\nOverall, the discussions on Twitter show a mix of bullish and bearish sentiments regarding XRP's price potential and its role in the crypto industry.","data":[1,1,1,1,1,0,0,9,0,3,7,0,3,1,2,2,4,2,1,1,0,0,0,3,1,2,1,0,0,1,2,1,2,3,2,1,2,10,1,2,3,5,6,3,2,7,2,5,3,4,1,4,1,2,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-66.ts b/priv/repo/major_topics_seed/data-66.ts deleted file mode 100644 index bd0063c900..0000000000 --- a/priv/repo/major_topics_seed/data-66.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '03.04.25', - '04.04.25', - '04.04.25', - '04.04.25', - '04.04.25', - '04.04.25', - '04.04.25', - '04.04.25', - '05.04.25', - '05.04.25', - '05.04.25', - '05.04.25', - '05.04.25', - '05.04.25', - '05.04.25', - '05.04.25', - '06.04.25', - '06.04.25', - '06.04.25', - '06.04.25', - '06.04.25', - '06.04.25', - '06.04.25', - '06.04.25', - '07.04.25', - '07.04.25', - '07.04.25', - '07.04.25', - '07.04.25', - '07.04.25', - '07.04.25', - '07.04.25', - '08.04.25', - '08.04.25', - '08.04.25', - '08.04.25', - '08.04.25', - '08.04.25', - '08.04.25', - '08.04.25', - '09.04.25', - '09.04.25', - '09.04.25', - '09.04.25', - '09.04.25', - '09.04.25', - '09.04.25', - '09.04.25', - '10.04.25', - '10.04.25', - '10.04.25', - '10.04.25', - '10.04.25', - '10.04.25', - '10.04.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - 'The key topics discussed in the messages from twitter are:\n1. The potential of AI in the fitness industry and its impact on markets.\n2. Speculation about Sam Altman keeping secrets related to "Open" AI and the future of AI without borders.\n3. The role of governments and politics in the advancement of AI technology.\n4. The integration of quantum sensors with AI tools for scientific discovery.\n5. Credible individuals in the crypto*ai space who are also knowledgeable in AI.\n6. The development of AI agents for dynamic environments using Neurochimp framework.\n7. Accountability of AI through blockchain technology.\n8. Review of Freepik as a versatile platform for digital creators using AI tools.\n9. The importance of aligning AI with humanity for governance.\n10. The use of purpose-built neural networks for blockchain security with Forta Firewall.', - data: [ - 18, 77, 5, 8, 8, 0, 1, 4, 14, 8, 5, 16, 7, 10, 12, 8, 18, 7, 8, 12, 22, 12, 23, 4, 14, 13, - 9, 6, 12, 7, 9, 13, 10, 16, 15, 11, 17, 14, 15, 10, 11, 10, 8, 10, 3, 15, 9, 26, 12, 5, 3, - 12, 15, 7, 15, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,price,1500,2018', - description: - 'The messages from Twitter discuss various aspects of the Ethereum (ETH) cryptocurrency, including its price fluctuations, comparisons to other cryptocurrencies like Bitcoin (BTC) and Solana (SOL), whale accumulation, potential for a breakout to $3,200, and recent liquidations in the market. There is also mention of stablecoin supply on the Ethereum network, the SEC lawsuit against Tether, and the misallocation of capital in the crypto industry. Overall, the sentiment towards Ethereum seems mixed, with some users expressing optimism about its potential for growth while others highlight its recent price drops and challenges in the market.', - data: [ - 4, 2, 0, 6, 2, 0, 2, 11, 12, 12, 5, 6, 9, 7, 5, 17, 115, 9, 14, 5, 7, 5, 6, 14, 1, 6, 6, 2, - 7, 12, 13, 7, 13, 6, 11, 8, 8, 10, 9, 7, 6, 7, 8, 12, 4, 5, 8, 11, 11, 8, 2, 11, 6, 3, 9, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,web3,play', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include Web3 gaming, NFT characters in games, real rewards for players, the growth of indie games, and the potential of Web3 gaming to reward players for their contributions. Players are excited about new games like MagicCraft and PlayVariance, as well as the opportunity to own a piece of the games they help create in the Web3 space. There is also discussion about the manipulation in some games and the importance of being aware of it. Overall, the crypto community is enthusiastic about the future of Web3 gaming and the potential for players to earn real rewards.', - data: [ - 5, 4, 0, 4, 8, 0, 5, 2, 6, 5, 8, 3, 5, 4, 5, 1, 0, 4, 4, 48, 12, 6, 12, 5, 2, 10, 6, 4, 10, - 5, 9, 2, 1, 4, 5, 2, 22, 4, 12, 4, 2, 1, 7, 4, 2, 3, 5, 6, 3, 4, 5, 3, 8, 3, 3, - ], - }, - { - label: 'Art', - topics: 'art,artist,piece,digital,race', - description: - 'The messages from twitter are mainly focused on various forms of art, including performance art, calligraphy, hyperrealistic art, and ASCII art. The discussions also touch on the importance of recognizing text as a visual art form and supporting different art mediums. Additionally, there are mentions of specific artists and their work, as well as calls for submissions for art projects related to nature therapy and mental wellness. The overall tone of the messages is positive and enthusiastic about art and creativity.', - data: [ - 3, 5, 44, 24, 0, 0, 2, 1, 4, 2, 3, 11, 6, 9, 7, 5, 3, 5, 7, 2, 9, 4, 4, 2, 6, 3, 2, 1, 5, 3, - 7, 2, 6, 5, 8, 3, 8, 6, 4, 3, 6, 3, 7, 5, 4, 6, 1, 7, 6, 3, 3, 2, 5, 3, 2, - ], - }, - { - label: 'BTC Price', - topics: 'btc,lows,daily,level,resistance', - description: - "The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin's potential double bottom and bounce zone\n- Bitcoin's correction of -32% and comparison to 2017\n- Possibility of protecting lows at $76,000 for new all-time highs\n- Bitcoin's failure to break above downtrend and form new lower highs\n- Opportunity in the current market volatility\n- Speculation on a reversal building in Bitcoin\n- Analysis of daily candle closing above key levels\n- Impact of CPI y/y data on Bitcoin\n- Successful breakout towards resistance levels of 85-86k\n- Importance of key levels and risk management in trading\n- Expectations of a bracketed environment in trading range of 80-85k\n- Trader's decision to be fully out of the market for now\n\nOverall, the sentiment seems to be cautious optimism with a focus on technical analysis and potential trading opportunities in the current market conditions.", - data: [ - 1, 2, 2, 3, 10, 25, 15, 1, 25, 3, 8, 5, 0, 20, 2, 3, 4, 9, 1, 4, 2, 3, 5, 4, 2, 0, 4, 1, 10, - 9, 4, 2, 2, 2, 4, 2, 5, 5, 6, 11, 6, 4, 7, 3, 3, 4, 0, 3, 2, 2, 0, 7, 2, 5, 4, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,blocks,network', - description: - "Based on the messages from twitter, key topics currently discussed in the crypto industry include:\n- Mining activities and operations, such as node churn, migration of vaults, and breakeven costs for Bitcoin miners\n- Companies and individuals involved in Bitcoin mining, such as Riot Platforms and former Riot Platforms VP launching a Bitcoin securitization venture\n- Performance and achievements of Bitcoin miners, with Riot Blockchain mining a total of 1,530 BTC in Q1 2025\n- Critiques and discussions on studies and articles related to Bitcoin mining, including concerns about flawed studies and the impact of price fluctuations on miner revenue\n- Security and scalability of Bitcoin's network, with a focus on hash rate and Elastos' security features\n\nOverall, the discussions on Twitter reflect a mix of technical analysis, industry news, and opinions on the current state of Bitcoin mining and its implications for the crypto industry.", - data: [ - 4, 3, 1, 2, 2, 13, 7, 6, 0, 3, 3, 6, 3, 3, 9, 2, 0, 0, 3, 4, 3, 2, 8, 11, 6, 6, 1, 6, 5, 4, - 3, 20, 7, 10, 2, 2, 2, 4, 3, 5, 7, 1, 5, 10, 4, 5, 2, 2, 12, 4, 5, 6, 0, 2, 3, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,moon,spending,cuts', - description: - 'Based on the messages from Twitter, it is clear that Dogecoin is a popular topic of discussion within the crypto community. Users are expressing their excitement and optimism about Dogecoin, with some even claiming to have made significant profits from investing in it. There is also mention of Dogecoin being a store of value and its aggressive approach towards cutting waste and fraud. Additionally, there is a comparison between Dogecoin and other cryptocurrencies, with Dogecoin being portrayed as a strong contender. Overall, the sentiment towards Dogecoin in these messages is positive and enthusiastic.', - data: [ - 2, 2, 1, 3, 4, 0, 2, 0, 2, 1, 6, 4, 4, 3, 81, 4, 2, 3, 5, 2, 4, 3, 4, 10, 1, 0, 6, 5, 1, 3, - 1, 3, 3, 0, 3, 8, 4, 1, 1, 2, 6, 3, 3, 3, 7, 2, 1, 4, 4, 1, 3, 3, 8, 5, 5, - ], - }, - { - label: 'DeFi', - topics: 'defi,onchain,users,lending,protocols', - description: - 'The key topics currently discussed in the crypto industry on Twitter include DeFi (Decentralized Finance), Oracles, NFTs (Non-Fungible Tokens), Berachain trends, TRON, DAO (Decentralized Autonomous Organization), liquidations, DeFi Kingdoms, deBridge, VR Metaverse, DIA (Decentralized Information Asset), LunarCrush sector performance, SwarmNode, PAAI AI, BankrCoin, aixbt, LayerAI, GRIFFAIN, AlphaArc, ChainGPT, WHISP, and Dolos The Bully. These topics cover a range of subjects within the crypto industry, from technology and platforms to market trends and performance.', - data: [ - 5, 1, 2, 3, 3, 1, 3, 3, 3, 8, 2, 7, 4, 8, 9, 3, 3, 7, 7, 6, 1, 3, 2, 4, 3, 9, 7, 1, 7, 5, 2, - 3, 2, 1, 4, 2, 5, 4, 6, 5, 7, 6, 2, 6, 3, 6, 6, 3, 4, 6, 6, 7, 1, 4, 4, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,staked,kraken,stablecoin', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Solana ($SOL) being on sale and potential for handsome returns in the coming months\n- Raydium accounting for nearly half of the total DEX volume on Solana in 2025\n- Solana's performance compared to other major cryptocurrencies like Bitcoin, Ethereum, and Polkadot\n- Solana taking the lead in 24-hour decentralized exchange trading volume across all chains\n- BNSOL by Binance growing its presence in Solana's LST market\n- Potential price levels for $SOL in the coming months, with mentions of Trump's impact and China's retaliatory tariffs\n- Liquidation of short positions on $SOL\n- A user looking to sell locked $SLP tokens with a 10-year unlock schedule\n- General sentiment about the crypto market and the unpredictability of coin prices\n\nOverall, the messages reflect a mix of price analysis, market trends, and investor sentiment surrounding Solana and the broader crypto industry.", - data: [ - 4, 2, 1, 1, 4, 1, 4, 4, 4, 5, 2, 8, 4, 4, 4, 6, 3, 7, 1, 2, 1, 1, 0, 4, 0, 2, 2, 18, 3, 6, - 7, 3, 1, 10, 1, 2, 6, 6, 6, 1, 2, 2, 1, 30, 5, 4, 2, 2, 1, 4, 4, 9, 4, 2, 1, - ], - }, - { - label: 'Recession', - topics: 'recession,odds,goldman,60,year', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry are recession fears, potential economic downturns, and the impact on various financial institutions such as Goldman Sachs and JP Morgan. There is speculation about the likelihood of a recession in the US, with predictions ranging from 60% to 70% on different platforms. Some users are discussing strategies to hedge against a recession, such as investing in "recession coin." Additionally, there is mention of stagflationary forecasts and revisions in growth and inflation predictions by major financial institutions. Overall, there is a sense of uncertainty and concern about the economic outlook and its potential impact on the crypto market.', - data: [ - 2, 1, 0, 3, 1, 0, 0, 13, 0, 2, 3, 2, 2, 1, 3, 5, 2, 3, 3, 0, 11, 16, 4, 2, 2, 0, 0, 0, 0, 2, - 4, 3, 4, 3, 6, 1, 4, 4, 7, 47, 3, 5, 0, 2, 4, 1, 3, 2, 2, 2, 0, 2, 3, 2, 4, - ], - }, - { - label: '10-Year US Treasury Yields', - topics: 'yield,yields,bond,treasury,bonds', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n- Treasury 10-year yield dropping by 10 basis points to 3.88%\n- Dollar index falling\n- Bond market teetering on the edge\n- Risk-on appetite increasing\n- Treasury yields surging due to tariffs sparking bond selloff and inflation concerns\n- Interest rates being focused on bringing down for Main Street\n- 10-Year US Treasury Yield experiencing abnormal roundtrip and intraday moves\n- Bonds not receiving bids despite yields pumping high\n- US government bond yields trading around 4.40%\n- Yield Forwarding live on $beS / $OS pool\n- Stealth refinancing on U.S. debt\n\nThese topics indicate a mix of economic indicators, market trends, and policy implications that are currently shaping discussions within the crypto industry.', - data: [ - 12, 1, 0, 3, 2, 0, 9, 1, 1, 1, 3, 3, 2, 1, 1, 5, 4, 2, 1, 3, 2, 6, 4, 2, 2, 8, 2, 3, 1, 7, - 2, 1, 2, 7, 1, 2, 1, 0, 2, 6, 1, 1, 2, 3, 4, 2, 2, 8, 0, 3, 1, 5, 3, 4, 46, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,michael,strategy,sell,filing', - description: - "The key topics discussed in the messages from twitter are:\n1. Michael Saylor's involvement in buying Bitcoin and potential losses\n2. MicroStrategy's unrealized loss on crypto\n3. Speculation on Bitcoin reaching $1 million\n4. MicroStrategy leveraging Bitcoin to borrow money\n5. Potential selling of Bitcoin at a loss by MicroStrategy\n6. Impact of Bitcoin price drop on MicroStrategy's stock performance\n7. Ray Dalio's stance on Bitcoin in his portfolio\n\nOverall, the messages highlight the ongoing discussions and concerns surrounding MicroStrategy's Bitcoin holdings, potential losses, and the future outlook for Bitcoin prices.", - data: [ - 2, 2, 1, 1, 7, 1, 3, 3, 7, 3, 2, 3, 1, 3, 0, 1, 4, 5, 4, 0, 5, 3, 2, 3, 0, 1, 3, 3, 6, 2, 2, - 7, 6, 2, 0, 3, 3, 7, 5, 2, 4, 18, 6, 2, 2, 24, 2, 2, 3, 1, 1, 3, 2, 4, 4, - ], - }, - { - label: 'Inflation ', - topics: 'cpi,inflation,24,28,core', - description: - 'Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n\n1. U.S. inflation falling to 2.4%, lower than expectations, and the potential impact on asset prices and the economy.\n2. The Federal Reserve Board meeting privately on interest rates and the possibility of money printing or rate cuts.\n3. March employment data release and Federal Reserve Chair Powell delivering remarks on the economic outlook.\n4. FOMC minutes from the March policy meeting being closely watched by investors.\n5. Shelter CPI moving down from a peak to 4.0%, leading to a decline in core inflation.\n6. Speculation on whether the Fed will do rate cuts in response to decreasing CPI and Core CPI inflation rates.\n\nOverall, the discussions on Twitter indicate a focus on economic indicators, Federal Reserve actions, and their potential impact on the market and inflation rates.', - data: [ - 2, 2, 0, 1, 4, 0, 0, 21, 1, 1, 2, 10, 5, 0, 0, 1, 1, 5, 4, 0, 1, 3, 0, 2, 4, 37, 1, 0, 2, 1, - 1, 3, 5, 2, 1, 1, 3, 3, 6, 3, 1, 1, 5, 0, 0, 0, 3, 1, 4, 2, 1, 0, 0, 4, 1, - ], - }, - { - label: 'BTC', - topics: 'haven,fiat,bitcoin,money,safe', - description: - 'The key topics currently being discussed on Twitter regarding Bitcoin include its role as a safe haven asset, its potential to protect against inflation and dictatorship, its ability to provide financial independence, and its importance in the global economy. Many users are highlighting Bitcoin as a solution for individuals looking to safeguard their wealth and protect themselves from economic uncertainties. Additionally, there is a focus on the importance of understanding the technology behind Bitcoin, such as running an SPV client for validation. Overall, the sentiment towards Bitcoin in these messages is positive, with users emphasizing its value and potential benefits.', - data: [ - 4, 3, 0, 1, 6, 39, 4, 1, 2, 4, 1, 3, 0, 1, 2, 0, 0, 1, 4, 0, 1, 1, 0, 3, 1, 5, 4, 0, 5, 2, - 1, 1, 6, 1, 0, 4, 3, 3, 1, 5, 6, 2, 4, 4, 3, 4, 0, 1, 2, 2, 4, 0, 0, 1, 3, - ], - }, - { - label: 'Tariffs', - topics: 'eu,president,tariffs,coinpedia,imports', - description: - "The key topics currently being discussed on social media regarding the crypto industry include:\n- Tariffs and their impact on inflation\n- Trade tensions between the US and China\n- Launch of new XRP ETF in the US\n- Market reactions to Trump's tariff decisions\n- Airdrop of USD1 stablecoin to WLFI holders\n- White House stance on tariffs and trade deficits\n- Melania Trump's memecoin and token withdrawals\n- EU boosting gas imports from the US in response to tariffs\n- Geopolitical implications of tariffs and trade wars\n\nOverall, the discussions on social media reflect a mix of market reactions, political decisions, and potential impacts on the crypto industry due to tariffs and trade tensions.", - data: [ - 1, 7, 1, 0, 3, 0, 0, 1, 0, 2, 4, 5, 4, 2, 0, 1, 2, 0, 1, 0, 0, 1, 1, 2, 4, 2, 0, 2, 0, 3, 2, - 1, 2, 0, 3, 3, 1, 5, 2, 3, 5, 18, 7, 2, 4, 3, 8, 3, 0, 8, 10, 2, 8, 2, 4, - ], - }, - { - label: 'Buy the dip', - topics: 'dip,bought,buy,buying,dips', - description: - 'The key topics currently being discussed in the crypto industry on social media include buying the dip, investing in Bitcoin and other cryptocurrencies during market downturns, taking advantage of generational dip opportunities for wealth growth, using bots for automated dip buying, and the impact of global market volatility on different investment strategies. Additionally, there is mention of specific cryptocurrencies like $MOG and Bitcoin, as well as events like the Bitcoin Policy Summit in DC. Overall, the sentiment seems to be optimistic about buying the dip and capitalizing on market fluctuations for potential gains.', - data: [ - 1, 3, 0, 0, 0, 0, 1, 0, 46, 5, 1, 4, 6, 1, 15, 3, 0, 0, 2, 0, 3, 2, 1, 0, 2, 3, 2, 1, 0, 1, - 4, 0, 2, 0, 1, 6, 3, 0, 1, 3, 3, 4, 1, 3, 1, 1, 4, 1, 4, 0, 2, 0, 2, 1, 1, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,million,eth,position', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n- Ethereum whales taking advantage of price drops to accumulate large amounts of ETH\n- Whales selling off large amounts of ETH and missing out on potential profits\n- Dormant whales awakening and making significant moves with their ETH holdings\n- New crypto whales emerging and potentially making significant gains\n- Sharp price drops in Ethereum leading to liquidations and selling pressure\n- Intense buying and accumulation of BTC by whales\n- Fear of selling pressure in the market due to large transfers of BTC to exchanges\n- Market makers influencing price movements in certain projects\n- Potential reversal and breakout patterns in the ETH chart\n\nOverall, the discussion on Twitter revolves around the actions and behaviors of whales in the crypto market, as well as the potential impact on prices and market sentiment.', - data: [ - 0, 1, 0, 1, 3, 1, 6, 9, 1, 2, 1, 1, 2, 0, 6, 1, 11, 0, 0, 0, 0, 3, 0, 1, 6, 4, 0, 7, 0, 7, - 2, 0, 1, 3, 6, 1, 2, 0, 1, 3, 2, 1, 7, 1, 0, 0, 0, 1, 0, 0, 1, 4, 0, 33, 1, - ], - }, - { - label: 'Paris Blockchain Week', - topics: 'paris,blockchain,week,excited,event', - description: - 'The messages from Twitter are discussing various events and conferences happening during Paris Blockchain Week. Key topics include discussions on industry leaders, expert takes on the future of crypto, blockchain endgame, RWA, AI, stablecoins, and the promotion of Thomas Prevot to Head of French Operations. There are also mentions of specific events such as the Chaindustry Blockchain Week, CoinGape at Paris Blockchain Week, and dYdX hosting a private evening. Additionally, there are opportunities for networking, engaging with community leaders, and hearing insights from top industry professionals. Overall, the crypto community seems excited and engaged in these events and discussions.', - data: [ - 2, 2, 0, 0, 1, 0, 3, 3, 0, 1, 2, 1, 1, 2, 1, 2, 3, 14, 1, 1, 1, 1, 2, 5, 1, 1, 2, 1, 0, 5, - 0, 1, 1, 0, 2, 3, 3, 2, 5, 1, 2, 1, 0, 2, 1, 1, 4, 9, 3, 0, 0, 0, 2, 22, 2, - ], - }, - { - label: 'SPX', - topics: 'spx,spy,level,ratio,candle', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n- Performance of portfolios, including unrealized losses\n- Cash positions and investments\n- Updates on various stocks and indices such as $SPX, $BTC, and $SPY\n- Speculation on buying Bitcoin and potential price movements\n- Bitcoin as a hedge against uncertainty\n- Technical analysis and support levels for $SPY and $BTC\n- Volatility and market conditions, including VIX levels\n- Comparison of Bitcoin and equities performance\n- Market breadth and historical performance of SPX\n- Buying opportunities and market corrections\n- Notional daily volume traded and market indicators\n- Predictions and analysis on blow-off tops and market rallies\n\nOverall, the discussions on Twitter suggest a mix of technical analysis, market sentiment, and investment strategies in the crypto industry.', - data: [ - 2, 1, 0, 2, 3, 2, 0, 2, 4, 4, 1, 0, 1, 3, 3, 1, 4, 3, 1, 1, 5, 0, 4, 1, 2, 4, 2, 0, 3, 5, 3, - 1, 1, 3, 3, 3, 4, 3, 3, 2, 0, 0, 2, 4, 6, 1, 4, 1, 3, 3, 0, 2, 6, 1, 0, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,standard,surge,etf', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Ripple's $XRP calling on UK policymakers to aim to become a global leader in crypto\n- Binance #XRP traders betting on a price surge as breakout looms\n- Standard Chartered Bank predicting $XRP could hit $12.50 before Trump's term ends in 2028\n- Mixed opinions on XRP's price surge, with some predicting a drop to $1.30 and others seeing potential for a rally\n- XRP's open interest surging past $3B, signaling bullish sentiment and heightened market attention\n- Analysts divided on XRP's price surge, with some warning of a drop to $1.30 and others seeing potential for a rally\n- Traders betting big on a potential breakout for XRP, with predictions ranging from $2.60 to $17.50\n- XRP seeking stability in a volatile crypto landscape influenced by macroeconomic factors\n- XRP's price surge leading to analysts predicting a potential drop to $1.30 or a rally if it breaks the $2.14 resistance\n- XRP-BTC showing strong support on charts, with expectations of a massive rally against BTC before a historical crash\n- Speculation on XRP's price reaching $4.80+ after meeting the $2.47 target and breaking/holding above it\n\nOverall, the discussions on Twitter show a mix of bullish and bearish sentiments regarding XRP's price potential and its role in the crypto industry.", - data: [ - 1, 1, 1, 1, 1, 0, 0, 9, 0, 3, 7, 0, 3, 1, 2, 2, 4, 2, 1, 1, 0, 0, 0, 3, 1, 2, 1, 0, 0, 1, 2, - 1, 2, 3, 2, 1, 2, 10, 1, 2, 3, 5, 6, 3, 2, 7, 2, 5, 3, 4, 1, 4, 1, 2, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-67.json b/priv/repo/major_topics_seed/data-67.json deleted file mode 100644 index 089640f6da..0000000000 --- a/priv/repo/major_topics_seed/data-67.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["10.04.25","11.04.25","11.04.25","11.04.25","11.04.25","11.04.25","11.04.25","11.04.25","12.04.25","12.04.25","12.04.25","12.04.25","12.04.25","12.04.25","12.04.25","12.04.25","13.04.25","13.04.25","13.04.25","13.04.25","13.04.25","13.04.25","13.04.25","13.04.25","14.04.25","14.04.25","14.04.25","14.04.25","14.04.25","14.04.25","14.04.25","14.04.25","15.04.25","15.04.25","15.04.25","15.04.25","15.04.25","15.04.25","15.04.25","15.04.25","16.04.25","16.04.25","16.04.25","16.04.25","16.04.25","16.04.25","16.04.25","16.04.25","17.04.25","17.04.25","17.04.25","17.04.25","17.04.25","17.04.25","17.04.25"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,understand,value","description":"The key topics discussed in the messages from twitter about Bitcoin include:\n- Bitcoin as a tool for gaining freedom and security\n- The importance of choosing Bitcoin as an investment for long-term growth\n- Bitcoin's role in aiding global civil liberties\n- The potential savings and growth from investing in Bitcoin compared to traditional investments like real estate\n- The historical significance of Bitcoin in terms of freedom and security\n- The potential for Bitcoin to be a high-risk tech stock or a hedge against the traditional financial system\n\nOverall, the messages highlight the various aspects of Bitcoin as a valuable asset for financial growth, security, and freedom.","data":[10,7,0,0,13,20,130,52,4,27,26,14,22,15,15,9,18,14,23,30,17,15,33,16,15,16,23,15,0,16,20,20,14,22,27,8,24,29,21,16,20,23,20,25,19,19,18,16,38,13,16,20,28,19,22]},{"label":"AI","topics":"ai,agents,agent,models,data","description":"The messages from twitter are discussing various aspects of AI (Artificial Intelligence) in the crypto industry. Some key topics mentioned include:\n- OpenAI surpassing Google as the likely leader for the best AI model\n- Deepfake technology cloning voices, raising fraud fears\n- Trading bots using reverse image search for trend analysis\n- Building AI agents with CDP's AgentKit and OpenAI's new Agents SDK\n- The challenges and benefits of using AI in engineering\n- The potential impact of AI on various fields such as science, healthcare, and technology\n- Leveraging OpenAI's latest models within the Swarms framework for developers\n- AI-generated legal document templates for easy creation\n\nOverall, the messages highlight the growing influence and advancements of AI in the crypto industry, with both opportunities and challenges being discussed.","data":[9,100,0,0,15,10,0,5,3,12,7,10,8,9,10,5,13,14,15,10,13,6,17,13,10,22,16,9,0,16,8,7,16,4,19,18,10,8,13,15,20,12,12,12,16,10,9,17,22,6,4,8,8,12,18]},{"label":"ETH Price","topics":"ethereum,eth,l1,ethereums,price","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Ethereum (ETH) being overvalued and potentially going to $0\n- Vitalik Buterin's thoughts on pumpfun and the challenges facing Ethereum\n- Ethereum's price movements and potential upside targets\n- Ethereum's branding and storytelling challenges\n- Ethereum's support levels and potential for bullish momentum\n- Comparisons of Ethereum to other projects and platforms\n- Speculation on Ethereum's future price movements and potential for reaching $3,000\n- User experience issues and potential improvements in the Ethereum ecosystem\n\nOverall, the sentiment towards Ethereum seems mixed, with discussions ranging from skepticism about its value and branding to optimism about its potential for growth and price appreciation.","data":[5,0,0,0,13,9,0,8,2,7,8,9,7,13,4,10,18,133,10,7,6,7,7,7,16,5,4,4,2,7,5,13,11,9,10,3,6,5,11,6,13,6,3,16,3,4,14,4,12,7,2,4,6,8,6]},{"label":"BTC Price","topics":"resistance,breakout,btc,range,trendline","description":"Based on the messages from Twitter, it seems that there is a lot of discussion about Bitcoin's price movements and potential breakout scenarios. Some key points mentioned include the resistance level at $86k, the trendline retest, hidden bullish divergence on the weekly total crypto market cap, and predictions of a big dip before the next leg up. There are also mentions of Bitcoin stalling, holding trendline breakout, and potential relief rallies to $92k. Additionally, there are discussions about structural shifts in Bitcoin's price movements, correlations with other assets, and predictions of a rally by crypto billionaire Mike Novogratz. Overall, the sentiment seems to be mixed with some expecting bullish scenarios and others warning of potential pullbacks.","data":[6,3,0,0,3,6,66,24,22,17,4,7,13,9,2,5,2,2,18,6,1,2,1,6,10,4,6,0,0,4,5,16,1,1,7,1,2,2,9,5,16,7,5,11,6,3,15,5,2,4,6,6,7,12,2]},{"label":"GameFi","topics":"gaming,game,games,play,web3","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Crypto gaming and its potential growth\n- Web3 gaming and its impact on the industry\n- GameFi and its potential revolution\n- Updates and new features in various crypto games\n- Events and announcements related to indie games and developers\n- NFT skins and their integration in games\n- Community engagement through events like AMAs\n- Exciting prizes and rewards for players\n- Time-bending gameplay in a cinematic action game\n- Beta testing and feedback for upcoming games\n\nOverall, the messages reflect a vibrant and evolving ecosystem within the crypto gaming industry, with a focus on innovation, community engagement, and the potential for growth and adoption.","data":[5,5,0,0,5,15,0,3,2,3,4,2,10,4,5,8,3,2,5,9,47,6,5,1,4,5,4,6,0,13,6,5,3,5,3,6,7,16,13,7,10,7,6,5,7,3,4,6,6,3,3,10,3,3,5]},{"label":"SOL","topics":"solana,sol,dex,volume,weekly","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Solana (SOL) and its recent surge in popularity and trading volume. The messages highlight how Solana has surpassed Ethereum (ETH) in terms of trading volume and on-chain activity, with a particular focus on its performance in the decentralized exchange (DEX) market. Additionally, there is mention of the launch of new features on the Solana blockchain, as well as the debut of the first spot SOL ETFs in Canada, which has sparked institutional interest in the cryptocurrency. Overall, the sentiment towards Solana appears to be positive, with many users expressing optimism about its future potential and growth in the crypto industry.","data":[3,5,0,0,4,2,0,3,5,6,8,4,10,0,5,4,6,4,7,6,8,5,5,6,7,7,4,1,0,10,2,4,5,3,6,6,6,3,8,4,10,4,1,9,49,6,4,12,1,9,6,7,2,7,2]},{"label":"Art","topics":"art,artists,piece,love,work","description":"The key topics discussed in the messages from twitter are:\n1. Art collections and collaborations with brands like Stussy, Human Made, Supreme, LV, Pokemon, etc.\n2. The impact of artists like Xcopy and punks seasons on the art community.\n3. The detail and quality of art shared on social media platforms.\n4. Challenges and struggles faced by artists in the cryptoart industry, including issues of centralization and lack of recognition.\n5. Interactive and innovative approaches to delivering art collections.\n6. Non-profit initiatives and charitable contributions within the art community.\n7. Personal experiences and reflections on the artist's journey and creative process.","data":[5,3,0,0,58,7,1,0,1,1,5,12,4,5,4,9,6,0,11,3,3,5,7,7,1,13,2,1,0,3,5,8,3,4,12,2,6,12,3,6,2,3,1,7,4,0,5,4,6,4,4,3,7,0,11]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,mc","description":"The key topics currently discussed in the crypto industry on social media accounts and communities include meme coins, meme war, meme bags, meme-makers, abstract memes, and the market cap of Memecoins. There is a focus on the potential for meme coins to bounce back, with mentions of specific meme coins like $Popcat and $FARTCOIN. There is also discussion about the market cap of Memecoins being down but showing strength with Bitcoin reclaiming a high price. Overall, there is excitement and speculation surrounding meme coins and their potential for significant gains.","data":[3,5,0,0,1,6,0,1,1,9,4,3,5,2,6,5,6,3,4,3,6,2,5,4,4,4,1,2,0,8,6,10,9,75,5,3,6,9,3,0,3,6,3,4,5,3,4,2,6,4,4,3,5,4,3]},{"label":"DeFi","topics":"defi,lending,finance,loans,future","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. DeFi season delay and the impact on the future of DeFi\n2. Launch of LBTC SDK by Lombard Finance for Bitcoin integration into DeFi\n3. Importance of fixed-term lending in the growth of CeFi lending platforms\n4. The need for a platform that can support millions of developers, billions of users, and hundreds of trillions in value in the DeFi space\n5. Lockquidity (LOCK) stability token on Arbitrum supporting Datamine Network's ecosystem\n6. Development focus on v2 of fatBERA token and lack of liquidity pool plans\n7. Revenue switch in DeFi with $525K in stablecoin sent to USUAL stakers\n8. Finality and reliability of orders on Carbon DeFi platform\n9. Announcement of the next DeFi Pulse Open Forum on April 16\n10. Integration and listing progress of Particle Network's \"neighbor\" DeFi app ($PARTI) and upcoming projects like zkhelixlabs, honeypotfinance, and ChimpxAI.","data":[7,4,0,0,5,1,3,3,0,3,13,6,7,4,14,2,3,3,3,9,6,2,2,6,2,4,7,2,0,10,6,6,4,3,5,10,2,1,5,5,8,6,5,7,4,7,1,1,5,10,2,0,3,4,6]},{"label":"XRP","topics":"xrp,ripple,etf,approval,breakout","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- $DRB being on the radar\n- #XRP utility growing as Gemini rolls out free algo tools, as mentioned by Tyler Winklevoss\n- XRP and DOGE investors earning up to $10,000 daily with XY Miners\n- Ripple (XRP) news and bullish Bitcoin price predictions\n- XRP being in launch mode again\n- XRP ETFs likely to be the next SEC approval\n- Binance suspending withdrawals due to AWS outage\n- Starknet (#STRK) hinting at price rebound\n- XRP exchange-traded funds potentially getting SEC approval\n- XRP jumping 30% in a volatile week\n- Liquidity squeeze tightening as ON RRP plummets and SOFR dominates\n- Litecoin (LTC) updates and ETF listings\n- Holding XRP being the ultimate test of patience\n- Predictions and analysis of XRP price movements\n- Polls and discussions about XRP investments and potential returns.","data":[2,3,0,0,2,2,0,1,8,2,5,7,5,3,2,5,4,3,6,4,4,3,3,4,4,2,3,0,0,7,7,3,5,4,7,1,3,1,15,2,4,13,1,6,4,4,8,3,3,4,2,5,2,3,3]},{"label":"DOGE","topics":"dogecoin,doge,dog,moon,elon","description":"The key topics discussed in the messages from twitter about Dogecoin include:\n- Dogecoin's 7-day prediction and 30-day projection\n- Dogecoin's daily volume in a down market\n- The impact of Dogecoin in the metaverse\n- The potential for Dogecoin to fix debt spiral\n- The Doge effect on individual behavior\n- Dogecoin's relationship with Bitcoin\n- The evolution of Dogecoin and MyEtherWallet mascots\n- Expert predictions on a potential Dogecoin rally\n- Whales selling off Dogecoin holdings\n- Elon Musk's involvement with Dogecoin\n- Comparison of Dogecoin with other cryptocurrencies like Litecoin and Bitcoin\n- A mystery surrounding an OPM request for proposal related to Dogecoin\n\nOverall, the messages reflect a mix of technical analysis, market trends, celebrity influence, and speculation about the future of Dogecoin in the cryptocurrency industry.","data":[3,0,0,0,2,3,2,0,1,0,4,3,1,2,2,75,2,3,2,2,6,4,1,5,6,2,2,2,1,0,0,3,2,2,6,1,3,1,1,3,2,3,1,4,2,2,5,3,5,1,0,2,5,4,1]},{"label":"OM","topics":"om,mantra,90,crash,liquidations","description":"The key topics discussed in the messages from Twitter are:\n- The dramatic crash of the $OM token, losing over 90% of its value in a short period of time\n- Allegations of team dumping and reckless liquidations leading to the crash\n- The impact of the crash on investors and the overall crypto market\n- Speculation and discussions about the reasons behind the crash and the future of the $OM token\n- Criticism of exchanges and calls for better regulation to prevent such incidents in the future","data":[6,3,0,0,3,2,0,3,3,2,8,4,5,4,2,3,3,3,2,8,2,2,1,5,2,3,1,0,0,4,2,1,12,2,5,6,23,6,2,2,2,4,4,3,1,0,2,3,0,14,0,8,1,7,2]},{"label":"BTC Mining","topics":"mining,miners,miner,block,energy","description":"The key topics currently discussed in the crypto industry on social media include Bitcoin mining, solo mining, Bitcoin block rewards, Bitcoin network health and resilience, understanding how mining works, global crypto mining news, new mining technology releases, climate change impact of BTC mining, effectiveness of mining bans, and sustainable investing in the crypto industry. There is also a focus on specific companies and products such as Bitaxe, Noctua, NerdQaxe, Whatsminer, and MicroBT. Additionally, there are mentions of prominent figures in the industry like Eric Elliot, Eric Trump, and experts participating in discussions on these topics.","data":[6,0,0,0,1,3,13,13,8,3,4,9,4,1,3,6,4,0,1,3,4,1,3,8,5,4,5,3,0,7,2,1,2,17,8,6,1,3,1,7,2,3,1,0,3,2,2,2,1,2,0,2,0,0,3]},{"label":"Gold","topics":"gold,silver,age,bitcoin,digital","description":"The key topics currently being discussed on Twitter regarding the crypto industry are the relationship between gold and Bitcoin, the performance of gold compared to Bitcoin, the potential for Bitcoin to outperform gold, and the impact of macroeconomic data on the price movements of assets like gold and Ethereum. There is also discussion about the historical significance of different ages represented by gold, silver, and other metals, as well as the legacy of individuals like Mark Haines who did not prioritize gold in their analysis. Overall, there is a focus on the comparison between traditional assets like gold and emerging digital assets like Bitcoin, as well as the potential for shifts in market dynamics based on economic factors.","data":[0,4,0,0,3,2,17,4,0,2,2,1,2,3,1,3,1,3,2,2,2,52,25,2,3,3,0,0,0,2,4,2,0,1,4,1,1,0,2,1,1,1,5,2,0,0,1,1,4,1,2,1,2,3,2]},{"label":"Whales","topics":"whale,whales,accumulation,addresses,worth","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n- Whales buying and accumulating large amounts of Bitcoin\n- Whales holding onto their Bitcoin and not selling\n- Increase in long-term holder supply of Bitcoin\n- Smart money stacking sats and accumulating Bitcoin\n- Shift in trader sentiment towards caution\n- Ethereum fundamentals conflicting with market behavior\n- Large transactions of Ethereum to exchanges\n- Price decrease of Ethereum\n- Market share of Ethereum decreasing\n- Rise in whale transactions for various projects\n\nOverall, the sentiment seems to be focused on whale activity, accumulation of Bitcoin, and potential market trends in both Bitcoin and Ethereum.","data":[5,0,0,1,2,0,3,8,11,3,1,0,2,6,1,5,2,4,0,3,4,1,1,1,5,1,1,0,1,9,0,1,3,0,3,8,7,2,2,0,0,4,0,1,0,1,1,2,1,4,1,9,4,31,7]},{"label":"AERGO","topics":"aergo,altcoins,altseason,scam,pump","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Aergo/USD analysis on TradingView\n- Mention of $MONG\n- Aergo securing vaccine certificates on-chain\n- Spell DAO announcing Purrswap incubation\n- Price movement of $BERA\n- Concerns about market manipulation on Binance\n- Speculation about $AERGO price movements\n- Discussion about trade bots controlling the crypto market\n- Potential pump and dump scenarios involving $AERGO\n- Optimism about $AERGO reaching certain price levels\n- Strategies for trading $AERGO\n- Confidence in the resilience of $AERGO against market manipulation\n- Speculation about $AERGO's future price movements\n- Discussion about the road to recovery for $AERGO\n- Comparison between Binance and Coinbase users in terms of resilience against market manipulation.","data":[92,14,0,0,0,5,0,1,0,1,1,1,0,2,5,0,1,0,0,1,1,1,2,4,0,1,1,1,1,2,2,3,1,0,0,2,5,4,0,2,0,1,1,0,2,1,0,0,1,0,2,0,0,1,1]},{"label":"XCN","topics":"xcn,altseason,altcoins,prompt,spa","description":"The key topics currently being discussed in the crypto industry on Twitter include the following:\n- $PPPP and its potential for a price increase\n- $xcn and its recent pump\n- The rise of altcoins and their potential for significant gains\n- Concerns about market manipulation, particularly with $prompt and $om\n- Speculation about the future of $xcn and $prompt prices\n- The movement of $SPA (Sperax) and its potential for a massive upside\n- Advice on investing in altcoins during the current super cycle\n- Warnings about potential risks and manipulation in the market\n\nOverall, the sentiment on Twitter seems to be a mix of excitement, caution, and skepticism regarding various cryptocurrencies and their potential for growth.","data":[2,2,0,0,0,1,0,4,1,6,2,0,2,7,0,0,7,0,1,1,3,25,0,2,0,2,4,1,0,0,0,4,1,1,2,2,4,3,1,25,1,2,2,4,11,0,6,2,2,2,1,1,2,2,12]},{"label":"Base","topics":"base,coinbase,memecoin,zora,coin","description":"The messages from Twitter are discussing the controversy surrounding Base, a blockchain network by Coinbase, and a memecoin that surged to a $17.1 million market cap before crashing 90% in just 20 minutes. There are concerns about Coinbase's involvement in promoting the memecoin and the lack of recognition or support for Base from Coinbase. Some users are questioning why Coinbase gave up being the biggest Bitcoin HODLer for what they perceive as a scamcoin. Overall, there is skepticism and criticism towards Base and Coinbase's handling of the situation.","data":[7,0,0,0,2,22,0,3,1,7,1,7,3,2,2,1,0,2,2,0,5,3,3,2,4,1,2,0,0,9,1,1,2,3,5,2,6,3,1,3,2,3,3,4,4,1,1,0,6,5,2,3,4,1,4]},{"label":"RWA","topics":"rwa,rwas,realworld,tokenized,tokenization","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Real-world asset (RWA) tokenization\n- Injective protocol for tokenization\n- Algorand's ecosystem growth and leadership in the RWA space\n- Partnerships enhancing RWA tokenization in DeFi\n- Vaultbook's curated vaults with SeamlessFi integration\n- Oasys's focus on scalability and mainstream adoption\n- Polytrade unlocking global access to RWAs\n- Financial giants like BlackRock and Fidelity betting big on tokenized RWAs\n- Tokenization of real-world assets and its importance in finance\n- AI-native investing tools for RWAs\n- Token holders benefiting from platform fees\n- Portfolio recommendations for AI and RWA coins\n- LCX building infrastructure for RWA tokenization\n- Tokenization of RWAs in Brazil by LIQI and XDC Network\n- Router Protocol and NitroByRouter listing on Veera Browser\n- AethirCloud opening a $100M ecosystem fund for RWA projects\n\nOverall, the discussions revolve around the growing importance and adoption of RWA tokenization, partnerships, infrastructure development, and investment opportunities in the crypto industry.","data":[2,1,0,0,2,1,0,0,1,3,1,3,0,5,1,1,2,0,2,2,0,4,2,3,3,4,3,2,0,0,2,1,2,3,0,3,7,4,0,3,14,1,17,1,3,2,0,1,0,13,3,0,2,3,4]},{"label":"PEPE","topics":"pepe,memes,frens,happy,memecoin","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the $PEPE cryptocurrency, meme coins, AI-driven innovation, and the potential impact of memes on the world. There is also mention of a Pepe action figure, Pepe painting commissions, and the upcoming release of \"Pepe The Unseen\" NFT collection. Additionally, there is discussion about $PEPE's performance compared to other cryptocurrencies like $ETH and $POPCAT. Overall, the community appears to be enthusiastic about the potential of meme coins and the influence of memes in the crypto industry.","data":[2,2,0,0,1,2,0,1,1,1,2,4,1,0,2,0,2,0,0,9,2,3,1,8,1,2,2,3,0,3,0,2,0,3,4,2,4,22,1,0,3,0,2,2,2,0,1,2,1,1,0,4,1,0,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-67.ts b/priv/repo/major_topics_seed/data-67.ts deleted file mode 100644 index b0853d7b8a..0000000000 --- a/priv/repo/major_topics_seed/data-67.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '10.04.25', - '11.04.25', - '11.04.25', - '11.04.25', - '11.04.25', - '11.04.25', - '11.04.25', - '11.04.25', - '12.04.25', - '12.04.25', - '12.04.25', - '12.04.25', - '12.04.25', - '12.04.25', - '12.04.25', - '12.04.25', - '13.04.25', - '13.04.25', - '13.04.25', - '13.04.25', - '13.04.25', - '13.04.25', - '13.04.25', - '13.04.25', - '14.04.25', - '14.04.25', - '14.04.25', - '14.04.25', - '14.04.25', - '14.04.25', - '14.04.25', - '14.04.25', - '15.04.25', - '15.04.25', - '15.04.25', - '15.04.25', - '15.04.25', - '15.04.25', - '15.04.25', - '15.04.25', - '16.04.25', - '16.04.25', - '16.04.25', - '16.04.25', - '16.04.25', - '16.04.25', - '16.04.25', - '16.04.25', - '17.04.25', - '17.04.25', - '17.04.25', - '17.04.25', - '17.04.25', - '17.04.25', - '17.04.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,understand,value', - description: - "The key topics discussed in the messages from twitter about Bitcoin include:\n- Bitcoin as a tool for gaining freedom and security\n- The importance of choosing Bitcoin as an investment for long-term growth\n- Bitcoin's role in aiding global civil liberties\n- The potential savings and growth from investing in Bitcoin compared to traditional investments like real estate\n- The historical significance of Bitcoin in terms of freedom and security\n- The potential for Bitcoin to be a high-risk tech stock or a hedge against the traditional financial system\n\nOverall, the messages highlight the various aspects of Bitcoin as a valuable asset for financial growth, security, and freedom.", - data: [ - 10, 7, 0, 0, 13, 20, 130, 52, 4, 27, 26, 14, 22, 15, 15, 9, 18, 14, 23, 30, 17, 15, 33, 16, - 15, 16, 23, 15, 0, 16, 20, 20, 14, 22, 27, 8, 24, 29, 21, 16, 20, 23, 20, 25, 19, 19, 18, - 16, 38, 13, 16, 20, 28, 19, 22, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - "The messages from twitter are discussing various aspects of AI (Artificial Intelligence) in the crypto industry. Some key topics mentioned include:\n- OpenAI surpassing Google as the likely leader for the best AI model\n- Deepfake technology cloning voices, raising fraud fears\n- Trading bots using reverse image search for trend analysis\n- Building AI agents with CDP's AgentKit and OpenAI's new Agents SDK\n- The challenges and benefits of using AI in engineering\n- The potential impact of AI on various fields such as science, healthcare, and technology\n- Leveraging OpenAI's latest models within the Swarms framework for developers\n- AI-generated legal document templates for easy creation\n\nOverall, the messages highlight the growing influence and advancements of AI in the crypto industry, with both opportunities and challenges being discussed.", - data: [ - 9, 100, 0, 0, 15, 10, 0, 5, 3, 12, 7, 10, 8, 9, 10, 5, 13, 14, 15, 10, 13, 6, 17, 13, 10, - 22, 16, 9, 0, 16, 8, 7, 16, 4, 19, 18, 10, 8, 13, 15, 20, 12, 12, 12, 16, 10, 9, 17, 22, 6, - 4, 8, 8, 12, 18, - ], - }, - { - label: 'ETH Price', - topics: 'ethereum,eth,l1,ethereums,price', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Ethereum (ETH) being overvalued and potentially going to $0\n- Vitalik Buterin's thoughts on pumpfun and the challenges facing Ethereum\n- Ethereum's price movements and potential upside targets\n- Ethereum's branding and storytelling challenges\n- Ethereum's support levels and potential for bullish momentum\n- Comparisons of Ethereum to other projects and platforms\n- Speculation on Ethereum's future price movements and potential for reaching $3,000\n- User experience issues and potential improvements in the Ethereum ecosystem\n\nOverall, the sentiment towards Ethereum seems mixed, with discussions ranging from skepticism about its value and branding to optimism about its potential for growth and price appreciation.", - data: [ - 5, 0, 0, 0, 13, 9, 0, 8, 2, 7, 8, 9, 7, 13, 4, 10, 18, 133, 10, 7, 6, 7, 7, 7, 16, 5, 4, 4, - 2, 7, 5, 13, 11, 9, 10, 3, 6, 5, 11, 6, 13, 6, 3, 16, 3, 4, 14, 4, 12, 7, 2, 4, 6, 8, 6, - ], - }, - { - label: 'BTC Price', - topics: 'resistance,breakout,btc,range,trendline', - description: - "Based on the messages from Twitter, it seems that there is a lot of discussion about Bitcoin's price movements and potential breakout scenarios. Some key points mentioned include the resistance level at $86k, the trendline retest, hidden bullish divergence on the weekly total crypto market cap, and predictions of a big dip before the next leg up. There are also mentions of Bitcoin stalling, holding trendline breakout, and potential relief rallies to $92k. Additionally, there are discussions about structural shifts in Bitcoin's price movements, correlations with other assets, and predictions of a rally by crypto billionaire Mike Novogratz. Overall, the sentiment seems to be mixed with some expecting bullish scenarios and others warning of potential pullbacks.", - data: [ - 6, 3, 0, 0, 3, 6, 66, 24, 22, 17, 4, 7, 13, 9, 2, 5, 2, 2, 18, 6, 1, 2, 1, 6, 10, 4, 6, 0, - 0, 4, 5, 16, 1, 1, 7, 1, 2, 2, 9, 5, 16, 7, 5, 11, 6, 3, 15, 5, 2, 4, 6, 6, 7, 12, 2, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,web3', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Crypto gaming and its potential growth\n- Web3 gaming and its impact on the industry\n- GameFi and its potential revolution\n- Updates and new features in various crypto games\n- Events and announcements related to indie games and developers\n- NFT skins and their integration in games\n- Community engagement through events like AMAs\n- Exciting prizes and rewards for players\n- Time-bending gameplay in a cinematic action game\n- Beta testing and feedback for upcoming games\n\nOverall, the messages reflect a vibrant and evolving ecosystem within the crypto gaming industry, with a focus on innovation, community engagement, and the potential for growth and adoption.', - data: [ - 5, 5, 0, 0, 5, 15, 0, 3, 2, 3, 4, 2, 10, 4, 5, 8, 3, 2, 5, 9, 47, 6, 5, 1, 4, 5, 4, 6, 0, - 13, 6, 5, 3, 5, 3, 6, 7, 16, 13, 7, 10, 7, 6, 5, 7, 3, 4, 6, 6, 3, 3, 10, 3, 3, 5, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,dex,volume,weekly', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding Solana (SOL) and its recent surge in popularity and trading volume. The messages highlight how Solana has surpassed Ethereum (ETH) in terms of trading volume and on-chain activity, with a particular focus on its performance in the decentralized exchange (DEX) market. Additionally, there is mention of the launch of new features on the Solana blockchain, as well as the debut of the first spot SOL ETFs in Canada, which has sparked institutional interest in the cryptocurrency. Overall, the sentiment towards Solana appears to be positive, with many users expressing optimism about its future potential and growth in the crypto industry.', - data: [ - 3, 5, 0, 0, 4, 2, 0, 3, 5, 6, 8, 4, 10, 0, 5, 4, 6, 4, 7, 6, 8, 5, 5, 6, 7, 7, 4, 1, 0, 10, - 2, 4, 5, 3, 6, 6, 6, 3, 8, 4, 10, 4, 1, 9, 49, 6, 4, 12, 1, 9, 6, 7, 2, 7, 2, - ], - }, - { - label: 'Art', - topics: 'art,artists,piece,love,work', - description: - "The key topics discussed in the messages from twitter are:\n1. Art collections and collaborations with brands like Stussy, Human Made, Supreme, LV, Pokemon, etc.\n2. The impact of artists like Xcopy and punks seasons on the art community.\n3. The detail and quality of art shared on social media platforms.\n4. Challenges and struggles faced by artists in the cryptoart industry, including issues of centralization and lack of recognition.\n5. Interactive and innovative approaches to delivering art collections.\n6. Non-profit initiatives and charitable contributions within the art community.\n7. Personal experiences and reflections on the artist's journey and creative process.", - data: [ - 5, 3, 0, 0, 58, 7, 1, 0, 1, 1, 5, 12, 4, 5, 4, 9, 6, 0, 11, 3, 3, 5, 7, 7, 1, 13, 2, 1, 0, - 3, 5, 8, 3, 4, 12, 2, 6, 12, 3, 6, 2, 3, 1, 7, 4, 0, 5, 4, 6, 4, 4, 3, 7, 0, 11, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,mc', - description: - 'The key topics currently discussed in the crypto industry on social media accounts and communities include meme coins, meme war, meme bags, meme-makers, abstract memes, and the market cap of Memecoins. There is a focus on the potential for meme coins to bounce back, with mentions of specific meme coins like $Popcat and $FARTCOIN. There is also discussion about the market cap of Memecoins being down but showing strength with Bitcoin reclaiming a high price. Overall, there is excitement and speculation surrounding meme coins and their potential for significant gains.', - data: [ - 3, 5, 0, 0, 1, 6, 0, 1, 1, 9, 4, 3, 5, 2, 6, 5, 6, 3, 4, 3, 6, 2, 5, 4, 4, 4, 1, 2, 0, 8, 6, - 10, 9, 75, 5, 3, 6, 9, 3, 0, 3, 6, 3, 4, 5, 3, 4, 2, 6, 4, 4, 3, 5, 4, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,lending,finance,loans,future', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n1. DeFi season delay and the impact on the future of DeFi\n2. Launch of LBTC SDK by Lombard Finance for Bitcoin integration into DeFi\n3. Importance of fixed-term lending in the growth of CeFi lending platforms\n4. The need for a platform that can support millions of developers, billions of users, and hundreds of trillions in value in the DeFi space\n5. Lockquidity (LOCK) stability token on Arbitrum supporting Datamine Network\'s ecosystem\n6. Development focus on v2 of fatBERA token and lack of liquidity pool plans\n7. Revenue switch in DeFi with $525K in stablecoin sent to USUAL stakers\n8. Finality and reliability of orders on Carbon DeFi platform\n9. Announcement of the next DeFi Pulse Open Forum on April 16\n10. Integration and listing progress of Particle Network\'s "neighbor" DeFi app ($PARTI) and upcoming projects like zkhelixlabs, honeypotfinance, and ChimpxAI.', - data: [ - 7, 4, 0, 0, 5, 1, 3, 3, 0, 3, 13, 6, 7, 4, 14, 2, 3, 3, 3, 9, 6, 2, 2, 6, 2, 4, 7, 2, 0, 10, - 6, 6, 4, 3, 5, 10, 2, 1, 5, 5, 8, 6, 5, 7, 4, 7, 1, 1, 5, 10, 2, 0, 3, 4, 6, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,etf,approval,breakout', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- $DRB being on the radar\n- #XRP utility growing as Gemini rolls out free algo tools, as mentioned by Tyler Winklevoss\n- XRP and DOGE investors earning up to $10,000 daily with XY Miners\n- Ripple (XRP) news and bullish Bitcoin price predictions\n- XRP being in launch mode again\n- XRP ETFs likely to be the next SEC approval\n- Binance suspending withdrawals due to AWS outage\n- Starknet (#STRK) hinting at price rebound\n- XRP exchange-traded funds potentially getting SEC approval\n- XRP jumping 30% in a volatile week\n- Liquidity squeeze tightening as ON RRP plummets and SOFR dominates\n- Litecoin (LTC) updates and ETF listings\n- Holding XRP being the ultimate test of patience\n- Predictions and analysis of XRP price movements\n- Polls and discussions about XRP investments and potential returns.', - data: [ - 2, 3, 0, 0, 2, 2, 0, 1, 8, 2, 5, 7, 5, 3, 2, 5, 4, 3, 6, 4, 4, 3, 3, 4, 4, 2, 3, 0, 0, 7, 7, - 3, 5, 4, 7, 1, 3, 1, 15, 2, 4, 13, 1, 6, 4, 4, 8, 3, 3, 4, 2, 5, 2, 3, 3, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,dog,moon,elon', - description: - "The key topics discussed in the messages from twitter about Dogecoin include:\n- Dogecoin's 7-day prediction and 30-day projection\n- Dogecoin's daily volume in a down market\n- The impact of Dogecoin in the metaverse\n- The potential for Dogecoin to fix debt spiral\n- The Doge effect on individual behavior\n- Dogecoin's relationship with Bitcoin\n- The evolution of Dogecoin and MyEtherWallet mascots\n- Expert predictions on a potential Dogecoin rally\n- Whales selling off Dogecoin holdings\n- Elon Musk's involvement with Dogecoin\n- Comparison of Dogecoin with other cryptocurrencies like Litecoin and Bitcoin\n- A mystery surrounding an OPM request for proposal related to Dogecoin\n\nOverall, the messages reflect a mix of technical analysis, market trends, celebrity influence, and speculation about the future of Dogecoin in the cryptocurrency industry.", - data: [ - 3, 0, 0, 0, 2, 3, 2, 0, 1, 0, 4, 3, 1, 2, 2, 75, 2, 3, 2, 2, 6, 4, 1, 5, 6, 2, 2, 2, 1, 0, - 0, 3, 2, 2, 6, 1, 3, 1, 1, 3, 2, 3, 1, 4, 2, 2, 5, 3, 5, 1, 0, 2, 5, 4, 1, - ], - }, - { - label: 'OM', - topics: 'om,mantra,90,crash,liquidations', - description: - 'The key topics discussed in the messages from Twitter are:\n- The dramatic crash of the $OM token, losing over 90% of its value in a short period of time\n- Allegations of team dumping and reckless liquidations leading to the crash\n- The impact of the crash on investors and the overall crypto market\n- Speculation and discussions about the reasons behind the crash and the future of the $OM token\n- Criticism of exchanges and calls for better regulation to prevent such incidents in the future', - data: [ - 6, 3, 0, 0, 3, 2, 0, 3, 3, 2, 8, 4, 5, 4, 2, 3, 3, 3, 2, 8, 2, 2, 1, 5, 2, 3, 1, 0, 0, 4, 2, - 1, 12, 2, 5, 6, 23, 6, 2, 2, 2, 4, 4, 3, 1, 0, 2, 3, 0, 14, 0, 8, 1, 7, 2, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,block,energy', - description: - 'The key topics currently discussed in the crypto industry on social media include Bitcoin mining, solo mining, Bitcoin block rewards, Bitcoin network health and resilience, understanding how mining works, global crypto mining news, new mining technology releases, climate change impact of BTC mining, effectiveness of mining bans, and sustainable investing in the crypto industry. There is also a focus on specific companies and products such as Bitaxe, Noctua, NerdQaxe, Whatsminer, and MicroBT. Additionally, there are mentions of prominent figures in the industry like Eric Elliot, Eric Trump, and experts participating in discussions on these topics.', - data: [ - 6, 0, 0, 0, 1, 3, 13, 13, 8, 3, 4, 9, 4, 1, 3, 6, 4, 0, 1, 3, 4, 1, 3, 8, 5, 4, 5, 3, 0, 7, - 2, 1, 2, 17, 8, 6, 1, 3, 1, 7, 2, 3, 1, 0, 3, 2, 2, 2, 1, 2, 0, 2, 0, 0, 3, - ], - }, - { - label: 'Gold', - topics: 'gold,silver,age,bitcoin,digital', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry are the relationship between gold and Bitcoin, the performance of gold compared to Bitcoin, the potential for Bitcoin to outperform gold, and the impact of macroeconomic data on the price movements of assets like gold and Ethereum. There is also discussion about the historical significance of different ages represented by gold, silver, and other metals, as well as the legacy of individuals like Mark Haines who did not prioritize gold in their analysis. Overall, there is a focus on the comparison between traditional assets like gold and emerging digital assets like Bitcoin, as well as the potential for shifts in market dynamics based on economic factors.', - data: [ - 0, 4, 0, 0, 3, 2, 17, 4, 0, 2, 2, 1, 2, 3, 1, 3, 1, 3, 2, 2, 2, 52, 25, 2, 3, 3, 0, 0, 0, 2, - 4, 2, 0, 1, 4, 1, 1, 0, 2, 1, 1, 1, 5, 2, 0, 0, 1, 1, 4, 1, 2, 1, 2, 3, 2, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,accumulation,addresses,worth', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n\n- Whales buying and accumulating large amounts of Bitcoin\n- Whales holding onto their Bitcoin and not selling\n- Increase in long-term holder supply of Bitcoin\n- Smart money stacking sats and accumulating Bitcoin\n- Shift in trader sentiment towards caution\n- Ethereum fundamentals conflicting with market behavior\n- Large transactions of Ethereum to exchanges\n- Price decrease of Ethereum\n- Market share of Ethereum decreasing\n- Rise in whale transactions for various projects\n\nOverall, the sentiment seems to be focused on whale activity, accumulation of Bitcoin, and potential market trends in both Bitcoin and Ethereum.', - data: [ - 5, 0, 0, 1, 2, 0, 3, 8, 11, 3, 1, 0, 2, 6, 1, 5, 2, 4, 0, 3, 4, 1, 1, 1, 5, 1, 1, 0, 1, 9, - 0, 1, 3, 0, 3, 8, 7, 2, 2, 0, 0, 4, 0, 1, 0, 1, 1, 2, 1, 4, 1, 9, 4, 31, 7, - ], - }, - { - label: 'AERGO', - topics: 'aergo,altcoins,altseason,scam,pump', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Aergo/USD analysis on TradingView\n- Mention of $MONG\n- Aergo securing vaccine certificates on-chain\n- Spell DAO announcing Purrswap incubation\n- Price movement of $BERA\n- Concerns about market manipulation on Binance\n- Speculation about $AERGO price movements\n- Discussion about trade bots controlling the crypto market\n- Potential pump and dump scenarios involving $AERGO\n- Optimism about $AERGO reaching certain price levels\n- Strategies for trading $AERGO\n- Confidence in the resilience of $AERGO against market manipulation\n- Speculation about $AERGO's future price movements\n- Discussion about the road to recovery for $AERGO\n- Comparison between Binance and Coinbase users in terms of resilience against market manipulation.", - data: [ - 92, 14, 0, 0, 0, 5, 0, 1, 0, 1, 1, 1, 0, 2, 5, 0, 1, 0, 0, 1, 1, 1, 2, 4, 0, 1, 1, 1, 1, 2, - 2, 3, 1, 0, 0, 2, 5, 4, 0, 2, 0, 1, 1, 0, 2, 1, 0, 0, 1, 0, 2, 0, 0, 1, 1, - ], - }, - { - label: 'XCN', - topics: 'xcn,altseason,altcoins,prompt,spa', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include the following:\n- $PPPP and its potential for a price increase\n- $xcn and its recent pump\n- The rise of altcoins and their potential for significant gains\n- Concerns about market manipulation, particularly with $prompt and $om\n- Speculation about the future of $xcn and $prompt prices\n- The movement of $SPA (Sperax) and its potential for a massive upside\n- Advice on investing in altcoins during the current super cycle\n- Warnings about potential risks and manipulation in the market\n\nOverall, the sentiment on Twitter seems to be a mix of excitement, caution, and skepticism regarding various cryptocurrencies and their potential for growth.', - data: [ - 2, 2, 0, 0, 0, 1, 0, 4, 1, 6, 2, 0, 2, 7, 0, 0, 7, 0, 1, 1, 3, 25, 0, 2, 0, 2, 4, 1, 0, 0, - 0, 4, 1, 1, 2, 2, 4, 3, 1, 25, 1, 2, 2, 4, 11, 0, 6, 2, 2, 2, 1, 1, 2, 2, 12, - ], - }, - { - label: 'Base', - topics: 'base,coinbase,memecoin,zora,coin', - description: - "The messages from Twitter are discussing the controversy surrounding Base, a blockchain network by Coinbase, and a memecoin that surged to a $17.1 million market cap before crashing 90% in just 20 minutes. There are concerns about Coinbase's involvement in promoting the memecoin and the lack of recognition or support for Base from Coinbase. Some users are questioning why Coinbase gave up being the biggest Bitcoin HODLer for what they perceive as a scamcoin. Overall, there is skepticism and criticism towards Base and Coinbase's handling of the situation.", - data: [ - 7, 0, 0, 0, 2, 22, 0, 3, 1, 7, 1, 7, 3, 2, 2, 1, 0, 2, 2, 0, 5, 3, 3, 2, 4, 1, 2, 0, 0, 9, - 1, 1, 2, 3, 5, 2, 6, 3, 1, 3, 2, 3, 3, 4, 4, 1, 1, 0, 6, 5, 2, 3, 4, 1, 4, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,realworld,tokenized,tokenization', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Real-world asset (RWA) tokenization\n- Injective protocol for tokenization\n- Algorand's ecosystem growth and leadership in the RWA space\n- Partnerships enhancing RWA tokenization in DeFi\n- Vaultbook's curated vaults with SeamlessFi integration\n- Oasys's focus on scalability and mainstream adoption\n- Polytrade unlocking global access to RWAs\n- Financial giants like BlackRock and Fidelity betting big on tokenized RWAs\n- Tokenization of real-world assets and its importance in finance\n- AI-native investing tools for RWAs\n- Token holders benefiting from platform fees\n- Portfolio recommendations for AI and RWA coins\n- LCX building infrastructure for RWA tokenization\n- Tokenization of RWAs in Brazil by LIQI and XDC Network\n- Router Protocol and NitroByRouter listing on Veera Browser\n- AethirCloud opening a $100M ecosystem fund for RWA projects\n\nOverall, the discussions revolve around the growing importance and adoption of RWA tokenization, partnerships, infrastructure development, and investment opportunities in the crypto industry.", - data: [ - 2, 1, 0, 0, 2, 1, 0, 0, 1, 3, 1, 3, 0, 5, 1, 1, 2, 0, 2, 2, 0, 4, 2, 3, 3, 4, 3, 2, 0, 0, 2, - 1, 2, 3, 0, 3, 7, 4, 0, 3, 14, 1, 17, 1, 3, 2, 0, 1, 0, 13, 3, 0, 2, 3, 4, - ], - }, - { - label: 'PEPE', - topics: 'pepe,memes,frens,happy,memecoin', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the $PEPE cryptocurrency, meme coins, AI-driven innovation, and the potential impact of memes on the world. There is also mention of a Pepe action figure, Pepe painting commissions, and the upcoming release of "Pepe The Unseen" NFT collection. Additionally, there is discussion about $PEPE\'s performance compared to other cryptocurrencies like $ETH and $POPCAT. Overall, the community appears to be enthusiastic about the potential of meme coins and the influence of memes in the crypto industry.', - data: [ - 2, 2, 0, 0, 1, 2, 0, 1, 1, 1, 2, 4, 1, 0, 2, 0, 2, 0, 0, 9, 2, 3, 1, 8, 1, 2, 2, 3, 0, 3, 0, - 2, 0, 3, 4, 2, 4, 22, 1, 0, 3, 0, 2, 2, 2, 0, 1, 2, 1, 1, 0, 4, 1, 0, 4, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-68.json b/priv/repo/major_topics_seed/data-68.json deleted file mode 100644 index f9d5a8a28e..0000000000 --- a/priv/repo/major_topics_seed/data-68.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["17.04.25","18.04.25","18.04.25","18.04.25","18.04.25","18.04.25","18.04.25","18.04.25","19.04.25","19.04.25","19.04.25","19.04.25","19.04.25","19.04.25","19.04.25","19.04.25","20.04.25","20.04.25","20.04.25","20.04.25","20.04.25","20.04.25","20.04.25","20.04.25","21.04.25","21.04.25","21.04.25","21.04.25","21.04.25","21.04.25","21.04.25","22.04.25","22.04.25","22.04.25","22.04.25","22.04.25","22.04.25","22.04.25","22.04.25","23.04.25","23.04.25","23.04.25","23.04.25","23.04.25","23.04.25","23.04.25","23.04.25","24.04.25","24.04.25","24.04.25","24.04.25","24.04.25","24.04.25","24.04.25"],"datasets":[{"label":"BTC","topics":"bitcoin,understand,fiat,money,dont","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. Bitcoin's potential as the future of currency\n2. Lack of understanding and skepticism towards Bitcoin\n3. Innovative ways to sell bitcoins without actually selling them\n4. The impact of Bitcoin on inflation and taxes\n5. The growing interest and adoption of Bitcoin by individuals, countries, and institutions\n6. The differences between fiat currency, cryptocurrencies, and Bitcoin\n7. The potential for Bitcoin to go parabolic in the near future\n8. The comparison of Bitcoin to other assets like ETH, XRP, and bonds\n9. The influence of conspiracy theories on people's perception of Bitcoin\n10. The importance of educating oneself about Bitcoin before forming opinions or making investments.","data":[10,8,0,6,25,45,98,55,3,17,16,19,26,12,8,10,12,6,13,21,13,17,20,13,17,19,22,22,13,15,18,18,20,16,10,15,49,12,14,12,16,12,16,22,11,17,21,25,12,10,16,20,17,21]},{"label":"BTC Price","topics":"resistance,btc,90k,breakout,range","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Bitcoin's price action: There is anticipation of violent price action returning soon, with expectations of reclaiming the $90,000 area and reaching new all-time highs. Technical analysis suggests consolidation in the 80-88k range with institutional accumulation visible at 82k.\n\n2. Institutional interest and global liquidity: Bitcoin's rise above $87,000 is attributed to rising global liquidity and renewed institutional interest, with the combined M2 money supply in the U.S., Europe, Japan, and China reaching $90.2 trillion.\n\n3. Bullish reversal and market momentum: Bitcoin has confirmed a full bullish reversal after breaking above 88752, with momentum being driven mostly by the Asian market. There is speculation about how the US market will react.\n\n4. Technical analysis and price levels: There are discussions about specific price levels that Bitcoin needs to stabilize above, such as $93500, and the importance of reclaiming certain levels as new support.\n\nOverall, the sentiment in the crypto community seems to be bullish, with expectations of Bitcoin reaching new highs and positive market momentum.","data":[8,8,0,4,16,55,78,40,29,63,11,14,14,15,26,6,9,0,11,18,7,9,6,8,44,6,8,13,11,9,28,13,4,10,14,5,11,25,21,27,23,9,6,18,13,28,17,21,18,7,13,8,17,4]},{"label":"SOL","topics":"degens,solana,exciting,chart,purchased","description":"After analyzing messages from Twitter, it is evident that the crypto community is currently discussing topics related to Solana ($SOL) and its ecosystem. There is excitement surrounding the growth and potential of Solana, with mentions of staking strategies, upcoming token launches, and the innovation within the Solana network. Additionally, there are discussions about the market cap, trading volume, and price movements of SOL, indicating active trading and investment in the cryptocurrency. Furthermore, there is mention of new projects and games being built on Solana, showcasing the diverse use cases and applications of the blockchain technology. Overall, the sentiment towards Solana appears positive, with users expressing enthusiasm and optimism about the future of the network.","data":[15,5,3,3,8,11,0,8,8,11,8,10,7,8,12,8,6,80,117,10,22,14,6,9,19,5,13,9,20,8,19,7,6,10,16,5,10,7,12,13,9,5,16,55,14,21,9,5,8,2,13,7,14,4]},{"label":"AI","topics":"ai,agents,agent,models,human","description":"Based on the messages from Twitter, it is evident that the crypto industry is heavily focused on the integration of AI technology. Key topics discussed include the use of AI in trading strategies, AI-powered financial research assistants, and the future of AI-enhanced 5G technology. There is also a strong emphasis on the potential for AI to revolutionize various aspects of the industry, such as decentralized training, AI charting for trading decisions, and the development of AI agents for collaboration and monetization. Overall, the sentiment towards AI in the crypto industry appears to be positive, with many users expressing excitement about the potential for AI to drive innovation and growth.","data":[24,114,0,6,16,5,1,5,3,17,11,7,12,10,15,8,21,4,5,9,19,22,13,16,11,20,16,13,7,11,11,17,15,13,7,15,13,13,13,12,17,11,15,9,4,9,13,17,10,13,10,16,16,12]},{"label":"ETH","topics":"ethereum,eth,ethereums,breakout,rally","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum's price action and trading struggles\n- Speculation on Ethereum's potential for a bull run\n- Concerns about Ethereum's valuation compared to its revenue\n- Potential crash warnings from veteran traders\n- Comparisons to other tech acquisitions like Facebook buying Instagram and WhatsApp\n- Trading strategies and profit-taking on various cryptocurrencies\n- Price predictions and resistance levels for Ethereum\n- Technical analysis on other cryptocurrencies like EGLD\n\nOverall, the sentiment seems to be mixed with some optimism about Ethereum's potential for growth, but also caution and skepticism about its current valuation and potential risks. Traders are closely monitoring price movements and technical indicators to make informed decisions.","data":[7,5,0,5,13,8,1,6,5,5,6,5,7,9,7,15,7,130,7,14,6,13,6,10,15,10,13,4,2,16,17,5,7,9,8,12,4,12,10,12,10,7,11,9,5,6,8,17,14,8,14,7,6,8]},{"label":"Gold","topics":"gold,record,digital,bitcoin,high","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are the comparison between Bitcoin and gold, the recent price movements of gold, the impact of global uncertainty on gold prices, the relationship between gold and Bitcoin prices, and the potential for Bitcoin to outshine gold. Additionally, there is discussion about the safe-haven status of gold, the historical stability of gold as an asset, and the recent all-time highs in gold prices. Overall, there is a focus on the performance of both gold and Bitcoin in the current market conditions.","data":[3,2,0,0,6,4,39,11,9,6,4,1,8,2,4,7,1,3,2,3,5,17,183,7,8,3,9,2,1,2,8,5,3,3,5,2,4,4,6,5,5,21,3,8,5,6,2,4,7,4,5,3,2,8]},{"label":"Michael Saylor","topics":"saylor,mstr,michael,strategy,microstrategy","description":"The key topics discussed in the messages from Twitter are:\n- MicroStrategy ($MSTR) and Bitcoin ($BTC) being bought by the Swiss Central Bank\n- Public companies holding nearly 700,000 BTC, with MicroStrategy dominating at 77% of total holdings\n- Michael Saylor's strategy of continuously buying Bitcoin with no cap on the amount they will acquire\n- Comparison between Solana and Ethereum, with a positive outlook on Solana\n- Potential weekly double bottom formation for MicroStrategy ($MSTR) with a key resistance level at $340\n- Speculation on the future price of Bitcoin based on MicroStrategy's increasing BTC stack\n\nOverall, the messages reflect a strong bullish sentiment towards Bitcoin and MicroStrategy, with a focus on institutional adoption and long-term investment strategies.","data":[17,6,0,1,9,4,4,6,16,8,12,4,4,5,3,3,3,1,4,1,2,7,2,9,5,3,7,0,5,3,5,11,14,12,6,7,5,4,13,8,5,34,6,7,4,39,5,10,2,1,3,1,5,1]},{"label":"GameFi","topics":"gaming,games,game,play,mobile","description":"The key topics currently being discussed in the crypto gaming community on Twitter include:\n1. The launch of a new gaming chain called Abstract and the announcement of Game Night: Session 5.\n2. The collection of gaming consoles and the promotion of a gaming platform called Ultra Platform.\n3. The future of gaming with the fragmentation of game worlds across different platforms and ecosystems.\n4. The introduction of a new way to earn through one-on-one matches based on gaming skills, launching on X and Facebook.\n5. The expansion of focus beyond gaming to include AI, RWA, DePin, infrastructure, and accelerators for a more efficient digital future.\n6. The anticipation of a price increase in the cryptocurrency SQUIRT on Solana.\n7. The importance of user-generated content in gaming, with examples like Somnia Network Chunked.\n8. The collaboration between companies like Candy Digital and the potential for Web3, IP, and gaming to explode in the future.\n9. The positive momentum and development progress of the Somnia Network testnet, a real-time L1 platform for games and apps.","data":[3,4,0,2,7,3,0,8,3,6,7,7,7,4,3,3,4,2,7,6,58,4,3,4,2,10,4,2,7,7,4,3,7,3,3,6,12,20,7,7,6,3,7,8,4,4,7,2,6,4,10,5,5,6]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,coins,memes","description":"The messages from Twitter suggest that the crypto community is currently buzzing about meme coins, particularly those with the potential for x100 gains. There is excitement around meme coins like $WIF, Popcat, and Solana Meme Coin BLICKY. Traders are looking for meme coins with active communities, undervalued market caps, and more holders than traders. Additionally, there is discussion about the importance of utility in meme coins and the potential for value accrual over time. Some users are also sharing information about platforms like @LBank_Exchange that prioritize fast listings of meme coins and deep liquidity. Overall, it seems like meme coins are a hot topic in the crypto industry right now, with traders eager to find the next big opportunity for significant gains.","data":[1,1,0,0,5,1,2,0,0,2,5,8,5,6,2,6,2,4,5,8,3,1,9,2,3,8,4,6,7,7,4,5,72,6,2,3,6,2,3,3,6,3,10,4,3,6,2,11,5,1,4,11,4,4]},{"label":"ETF Flows","topics":"etfs,inflows,net,inflow,etf","description":"The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs, particularly in the US market. BlackRock is highlighted as a major player accumulating Bitcoin, with their iShares Bitcoin Trust (IBIT) leading the surge in inflows. Other ETFs such as ARKInvest 21Shares and Fidelity are also mentioned as attracting significant investments. The overall trend indicates a renewed institutional interest in Bitcoin ETFs, with record-breaking inflows exceeding $900 million in just a couple of days. This surge in inflows signals a bullish sentiment in the market and suggests growing confidence in Bitcoin as an investment asset.","data":[5,1,0,0,4,2,18,5,4,13,5,0,3,6,4,2,0,32,1,5,2,2,2,2,5,3,6,0,4,0,3,4,1,9,5,0,0,1,0,5,0,2,10,0,25,3,0,1,1,1,2,0,1,7]},{"label":"DeFi","topics":"defi,protocols,lending,yield,finance","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi (Decentralized Finance): Discussions about DeFi projects, growth, innovation, and its role in providing open financial infrastructure.\n2. Bitcoin and Ethereum as reserve currencies: The importance of BTC and ETH as reserve currencies and their role in the future of finance.\n3. DeFi lending: The evolution of DeFi lending protocols towards flexibility, modularity, and smarter risk tools.\n4. Native swaps for Bitcoin: The introduction of direct Bitcoin trading in DeFi wallets, allowing users to trade BTC with other cryptocurrencies.\n5. Beam private-by-default DeFi ecosystem: Introduction of new dApps in the Beam ecosystem for tracking blockchain info and liquidity positions.\n6. Ethena Labs and Securitize's 'Converge' Network Plan: Collaboration between Ethena Labs and Securitize to develop the synthetic dollar USDe and financial technology solutions.\n7. Oraichain Labs' AI platform for DeFi: Introduction of an AI platform by Oraichain Labs to provide insights on high-yield strategies in stablecoin farming across chains.","data":[1,1,0,1,2,1,1,3,4,6,2,6,4,3,12,4,3,6,3,7,3,5,3,3,2,1,2,7,5,7,6,3,4,6,3,6,2,2,5,3,8,2,4,6,3,4,3,2,6,3,5,4,4,7]},{"label":"Whales","topics":"whale,whales,bought,worth,accumulation","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Whales making significant purchases of various cryptocurrencies such as Ethereum, Bitcoin, Solana, and LUCE.\n2. Institutional investors like Fidelity and Abraxas Capital investing large sums in Ethereum and Bitcoin.\n3. Speculation on the intentions of whales and institutional investors in the market.\n4. The increase in new whales accumulating Bitcoin.\n5. Nancy Pelosi's investment in Tempus AI calls.\n6. The activity of dormant whales re-entering the market and making large purchases.\n7. The overall sentiment towards altcoin season and the potential for Ethereum to start pumping again.\n8. The behavior of different types of holders in the Bitcoin ecosystem, including whales and small holders.\n9. The significance of on-chain analysis in understanding market movements.\n10. The impact of large transactions on the market and the potential for price movements.","data":[2,3,0,0,1,2,0,14,19,4,10,1,1,3,2,3,4,8,0,1,0,0,0,0,3,2,1,2,5,1,1,2,1,4,7,5,0,0,0,2,1,0,8,3,1,1,0,0,1,1,5,3,39,6]},{"label":"DOGE","topics":"dogecoin,doge,prediction,wow,shortterm","description":"The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin, include:\n- Dogecoin's price movement and potential for a bullish wave in the midterm\n- Increased holdings and commitment to Dogecoin\n- The influence of social media and communities on Dogecoin's popularity\n- Speculation on the impact of macroeconomic factors on Dogecoin's performance\n- The emergence of Dogecoin as a cultural phenomenon\n- Technical analysis of Dogecoin's price trends and potential bullish signs\n- The release of new products related to Dogecoin mining\n- The engagement of the Brazilian Dogecoin community in promoting the movement\n\nOverall, the sentiment towards Dogecoin appears to be positive, with discussions focusing on its potential for growth and its unique position within the crypto industry.","data":[2,0,0,1,1,0,0,1,3,2,0,0,2,4,3,80,2,0,2,3,2,4,0,1,5,1,3,1,5,4,1,1,2,2,1,2,1,1,4,1,1,2,2,0,3,1,0,0,4,1,0,5,2,2]},{"label":"Paul Atkins officially sworn in as SEC chairman","topics":"atkins,paul,sec,chair,chairman","description":"The key topic currently being discussed on Twitter is the appointment of Paul Atkins as the new SEC Chairman and his stance on cryptocurrency regulation. Paul Atkins has expressed his support for providing a firm regulatory foundation for digital assets and has stated that Bitcoin and crypto will be his top priority. This has led to speculation about how Atkins' leadership will impact the crypto market and whether there will be a shift towards a more crypto-friendly approach compared to the previous SEC Chairman, Gary Gensler. Overall, there is anticipation and interest in how Atkins will reshape the SEC's stance on digital assets and provide regulatory clarity for cryptocurrencies like Bitcoin, Ethereum, and XRP.","data":[2,2,0,1,34,1,0,6,22,1,8,0,0,7,1,1,2,0,0,1,1,4,0,0,0,3,0,1,2,1,2,5,0,21,5,2,3,0,12,0,1,4,1,0,2,1,3,0,1,3,1,1,1,0]},{"label":"Buy the dip","topics":"dip,buy,trading,dont,trades","description":"The key topics currently being discussed in the crypto industry on social media include buying the dip, setting stop losses on illiquid shitcoins, day trading strategies, holding vs trading vs buying the dip, NFT investments, market downturns, the difficulty of day trading, following successful traders, and the importance of having a trading plan. Overall, there is a mix of optimism about buying the dip and coming out with gains, as well as caution about the risks involved in trading and investing in cryptocurrencies.","data":[0,0,0,1,2,6,1,0,0,8,2,1,3,2,5,1,3,0,2,2,2,3,4,5,7,2,3,0,2,1,4,9,1,2,2,1,4,1,3,9,3,3,6,3,2,4,4,5,7,3,1,7,5,2]},{"label":"AERGO","topics":"aergo,altseason,altcoins,hodl,pump","description":"The key topics currently discussed in the crypto industry on Twitter include the relisting of $AERGO on Binance Futures, American Airlines withdrawing their 2025 forecast, price predictions and analysis for $AERGO, potential pump and dump scenarios, accumulation strategies, and discussions about the potential for $AERGO to reach $1.00 or even $3.00. There are also mentions of price manipulation by scammers on Binance, comparisons to other cryptocurrencies like $XRP, and predictions of becoming a millionaire by investing in $AERGO. Overall, the sentiment seems to be bullish on $AERGO with expectations of significant price increases in the near future.","data":[101,2,0,0,3,1,0,3,0,6,1,2,1,1,0,0,0,0,0,1,0,1,0,1,3,0,0,0,0,2,1,0,0,0,0,0,2,0,2,0,0,1,2,2,0,1,1,1,1,0,1,1,2,5]},{"label":"BTC Mining","topics":"mining,miners,miner,energy,block","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n- Bitcoin mining and its impact on the environment\n- Bitcoin mining innovations such as miner-sequenced WASM-based sovereign rollup and merged mining\n- Bitcoin mining profitability and energy efficiency\n- Bitcoin mining farms and strategies for renewable energy\n- Bitcoin mining events and expos, such as Mining Disrupt Texas\n- Bitcoin network security and incentives for miners\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the Bitcoin mining sector, as well as the importance of sustainable practices and innovation in the industry.","data":[2,1,0,0,2,1,15,3,1,1,0,1,5,2,2,3,1,0,1,0,4,3,2,4,6,2,2,1,7,2,2,2,19,6,2,0,1,5,0,2,0,1,4,5,3,1,4,1,5,1,1,4,3,4]},{"label":"Twenty One","topics":"tether,jack,acquisition,company,ceo","description":"The key topic discussed in the messages from Twitter is the launch of a new cryptocurrency venture called Twenty One, backed by Cantor Fitzgerald, SoftBank, Tether, and Bitfinex. The venture aims to raise $3 billion to create a massive stockpile of Bitcoin and compete with companies like MicroStrategy. Brandon Lutnick, son of the U.S. Commerce Secretary, is leading the initiative, with Tether investing $1.5 billion, SoftBank $900 million, and Bitfinex $600 million. Jack Mallers will be the CEO of this Bitcoin acquisition vehicle. The race to acquire more Bitcoin is on, with competition encouraged in the crypto industry.","data":[4,4,0,0,4,4,0,5,14,0,5,0,3,1,0,1,0,1,1,2,0,0,1,1,1,4,3,3,11,1,1,14,0,8,7,0,1,7,1,1,1,1,0,9,2,3,3,7,3,0,3,0,2,0]},{"label":"XRP","topics":"xrp,ripple,etf,cryptocurrency,altcoins","description":"The key topics currently discussed in the crypto industry on Twitter include XRP futures being listed on Coinbase, potential flippening of ETH by XRP, XRP's price movements and potential upside, institutional demand and ETF hopes for XRP, active addresses and price stagnation strategy, XRP's surge due to easing tariffs on China, and the launch of XRP futures by Coinbase Derivatives. There is also mention of XRP being referred to as the \"Biggest Meme Coin\" and the game-changing $18.9 trillion RWA blueprint for XRP. Overall, the sentiment seems to be positive towards XRP with discussions around its potential growth and institutional interest.","data":[1,3,0,0,4,2,0,2,6,1,3,4,1,0,0,0,2,1,5,1,4,4,1,1,4,1,2,0,4,2,2,3,2,4,2,8,1,8,1,2,10,3,3,5,3,6,0,6,3,2,1,3,0,1]},{"label":"ZORA","topics":"zora,airdrop,23,token,base","description":"The key topics currently being discussed in the crypto community on Twitter include the upcoming launch of the ZORA token on April 23, 2025, on the Base network. There is anticipation surrounding the potential valuation of ZORA, with some speculating it could open at over $2 billion. Additionally, there is mention of an airdrop for ZORA holders and the launch of ZORA Coins, a tool for Memecoins on the Base network. Other topics of discussion include ZORA being listed on various platforms such as Binance Alpha and Bitrue, as well as the launch of Zora Network on Bitgetglobal Launchpool. Overall, the community seems excited about the developments surrounding ZORA and its potential impact on the crypto industry.","data":[4,4,0,0,6,3,0,4,0,3,1,4,4,3,1,2,3,1,3,4,1,5,1,0,2,2,4,3,3,6,0,0,1,7,2,3,2,4,1,4,2,0,4,0,1,1,4,2,1,1,1,4,3,9]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-68.ts b/priv/repo/major_topics_seed/data-68.ts deleted file mode 100644 index 0164cabf11..0000000000 --- a/priv/repo/major_topics_seed/data-68.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '17.04.25', - '18.04.25', - '18.04.25', - '18.04.25', - '18.04.25', - '18.04.25', - '18.04.25', - '18.04.25', - '19.04.25', - '19.04.25', - '19.04.25', - '19.04.25', - '19.04.25', - '19.04.25', - '19.04.25', - '19.04.25', - '20.04.25', - '20.04.25', - '20.04.25', - '20.04.25', - '20.04.25', - '20.04.25', - '20.04.25', - '20.04.25', - '21.04.25', - '21.04.25', - '21.04.25', - '21.04.25', - '21.04.25', - '21.04.25', - '21.04.25', - '22.04.25', - '22.04.25', - '22.04.25', - '22.04.25', - '22.04.25', - '22.04.25', - '22.04.25', - '22.04.25', - '23.04.25', - '23.04.25', - '23.04.25', - '23.04.25', - '23.04.25', - '23.04.25', - '23.04.25', - '23.04.25', - '24.04.25', - '24.04.25', - '24.04.25', - '24.04.25', - '24.04.25', - '24.04.25', - '24.04.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,understand,fiat,money,dont', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n1. Bitcoin's potential as the future of currency\n2. Lack of understanding and skepticism towards Bitcoin\n3. Innovative ways to sell bitcoins without actually selling them\n4. The impact of Bitcoin on inflation and taxes\n5. The growing interest and adoption of Bitcoin by individuals, countries, and institutions\n6. The differences between fiat currency, cryptocurrencies, and Bitcoin\n7. The potential for Bitcoin to go parabolic in the near future\n8. The comparison of Bitcoin to other assets like ETH, XRP, and bonds\n9. The influence of conspiracy theories on people's perception of Bitcoin\n10. The importance of educating oneself about Bitcoin before forming opinions or making investments.", - data: [ - 10, 8, 0, 6, 25, 45, 98, 55, 3, 17, 16, 19, 26, 12, 8, 10, 12, 6, 13, 21, 13, 17, 20, 13, - 17, 19, 22, 22, 13, 15, 18, 18, 20, 16, 10, 15, 49, 12, 14, 12, 16, 12, 16, 22, 11, 17, 21, - 25, 12, 10, 16, 20, 17, 21, - ], - }, - { - label: 'BTC Price', - topics: 'resistance,btc,90k,breakout,range', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry include:\n\n1. Bitcoin's price action: There is anticipation of violent price action returning soon, with expectations of reclaiming the $90,000 area and reaching new all-time highs. Technical analysis suggests consolidation in the 80-88k range with institutional accumulation visible at 82k.\n\n2. Institutional interest and global liquidity: Bitcoin's rise above $87,000 is attributed to rising global liquidity and renewed institutional interest, with the combined M2 money supply in the U.S., Europe, Japan, and China reaching $90.2 trillion.\n\n3. Bullish reversal and market momentum: Bitcoin has confirmed a full bullish reversal after breaking above 88752, with momentum being driven mostly by the Asian market. There is speculation about how the US market will react.\n\n4. Technical analysis and price levels: There are discussions about specific price levels that Bitcoin needs to stabilize above, such as $93500, and the importance of reclaiming certain levels as new support.\n\nOverall, the sentiment in the crypto community seems to be bullish, with expectations of Bitcoin reaching new highs and positive market momentum.", - data: [ - 8, 8, 0, 4, 16, 55, 78, 40, 29, 63, 11, 14, 14, 15, 26, 6, 9, 0, 11, 18, 7, 9, 6, 8, 44, 6, - 8, 13, 11, 9, 28, 13, 4, 10, 14, 5, 11, 25, 21, 27, 23, 9, 6, 18, 13, 28, 17, 21, 18, 7, 13, - 8, 17, 4, - ], - }, - { - label: 'SOL', - topics: 'degens,solana,exciting,chart,purchased', - description: - 'After analyzing messages from Twitter, it is evident that the crypto community is currently discussing topics related to Solana ($SOL) and its ecosystem. There is excitement surrounding the growth and potential of Solana, with mentions of staking strategies, upcoming token launches, and the innovation within the Solana network. Additionally, there are discussions about the market cap, trading volume, and price movements of SOL, indicating active trading and investment in the cryptocurrency. Furthermore, there is mention of new projects and games being built on Solana, showcasing the diverse use cases and applications of the blockchain technology. Overall, the sentiment towards Solana appears positive, with users expressing enthusiasm and optimism about the future of the network.', - data: [ - 15, 5, 3, 3, 8, 11, 0, 8, 8, 11, 8, 10, 7, 8, 12, 8, 6, 80, 117, 10, 22, 14, 6, 9, 19, 5, - 13, 9, 20, 8, 19, 7, 6, 10, 16, 5, 10, 7, 12, 13, 9, 5, 16, 55, 14, 21, 9, 5, 8, 2, 13, 7, - 14, 4, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,models,human', - description: - 'Based on the messages from Twitter, it is evident that the crypto industry is heavily focused on the integration of AI technology. Key topics discussed include the use of AI in trading strategies, AI-powered financial research assistants, and the future of AI-enhanced 5G technology. There is also a strong emphasis on the potential for AI to revolutionize various aspects of the industry, such as decentralized training, AI charting for trading decisions, and the development of AI agents for collaboration and monetization. Overall, the sentiment towards AI in the crypto industry appears to be positive, with many users expressing excitement about the potential for AI to drive innovation and growth.', - data: [ - 24, 114, 0, 6, 16, 5, 1, 5, 3, 17, 11, 7, 12, 10, 15, 8, 21, 4, 5, 9, 19, 22, 13, 16, 11, - 20, 16, 13, 7, 11, 11, 17, 15, 13, 7, 15, 13, 13, 13, 12, 17, 11, 15, 9, 4, 9, 13, 17, 10, - 13, 10, 16, 16, 12, - ], - }, - { - label: 'ETH', - topics: 'ethereum,eth,ethereums,breakout,rally', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum's price action and trading struggles\n- Speculation on Ethereum's potential for a bull run\n- Concerns about Ethereum's valuation compared to its revenue\n- Potential crash warnings from veteran traders\n- Comparisons to other tech acquisitions like Facebook buying Instagram and WhatsApp\n- Trading strategies and profit-taking on various cryptocurrencies\n- Price predictions and resistance levels for Ethereum\n- Technical analysis on other cryptocurrencies like EGLD\n\nOverall, the sentiment seems to be mixed with some optimism about Ethereum's potential for growth, but also caution and skepticism about its current valuation and potential risks. Traders are closely monitoring price movements and technical indicators to make informed decisions.", - data: [ - 7, 5, 0, 5, 13, 8, 1, 6, 5, 5, 6, 5, 7, 9, 7, 15, 7, 130, 7, 14, 6, 13, 6, 10, 15, 10, 13, - 4, 2, 16, 17, 5, 7, 9, 8, 12, 4, 12, 10, 12, 10, 7, 11, 9, 5, 6, 8, 17, 14, 8, 14, 7, 6, 8, - ], - }, - { - label: 'Gold', - topics: 'gold,record,digital,bitcoin,high', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry are the comparison between Bitcoin and gold, the recent price movements of gold, the impact of global uncertainty on gold prices, the relationship between gold and Bitcoin prices, and the potential for Bitcoin to outshine gold. Additionally, there is discussion about the safe-haven status of gold, the historical stability of gold as an asset, and the recent all-time highs in gold prices. Overall, there is a focus on the performance of both gold and Bitcoin in the current market conditions.', - data: [ - 3, 2, 0, 0, 6, 4, 39, 11, 9, 6, 4, 1, 8, 2, 4, 7, 1, 3, 2, 3, 5, 17, 183, 7, 8, 3, 9, 2, 1, - 2, 8, 5, 3, 3, 5, 2, 4, 4, 6, 5, 5, 21, 3, 8, 5, 6, 2, 4, 7, 4, 5, 3, 2, 8, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,mstr,michael,strategy,microstrategy', - description: - "The key topics discussed in the messages from Twitter are:\n- MicroStrategy ($MSTR) and Bitcoin ($BTC) being bought by the Swiss Central Bank\n- Public companies holding nearly 700,000 BTC, with MicroStrategy dominating at 77% of total holdings\n- Michael Saylor's strategy of continuously buying Bitcoin with no cap on the amount they will acquire\n- Comparison between Solana and Ethereum, with a positive outlook on Solana\n- Potential weekly double bottom formation for MicroStrategy ($MSTR) with a key resistance level at $340\n- Speculation on the future price of Bitcoin based on MicroStrategy's increasing BTC stack\n\nOverall, the messages reflect a strong bullish sentiment towards Bitcoin and MicroStrategy, with a focus on institutional adoption and long-term investment strategies.", - data: [ - 17, 6, 0, 1, 9, 4, 4, 6, 16, 8, 12, 4, 4, 5, 3, 3, 3, 1, 4, 1, 2, 7, 2, 9, 5, 3, 7, 0, 5, 3, - 5, 11, 14, 12, 6, 7, 5, 4, 13, 8, 5, 34, 6, 7, 4, 39, 5, 10, 2, 1, 3, 1, 5, 1, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,play,mobile', - description: - 'The key topics currently being discussed in the crypto gaming community on Twitter include:\n1. The launch of a new gaming chain called Abstract and the announcement of Game Night: Session 5.\n2. The collection of gaming consoles and the promotion of a gaming platform called Ultra Platform.\n3. The future of gaming with the fragmentation of game worlds across different platforms and ecosystems.\n4. The introduction of a new way to earn through one-on-one matches based on gaming skills, launching on X and Facebook.\n5. The expansion of focus beyond gaming to include AI, RWA, DePin, infrastructure, and accelerators for a more efficient digital future.\n6. The anticipation of a price increase in the cryptocurrency SQUIRT on Solana.\n7. The importance of user-generated content in gaming, with examples like Somnia Network Chunked.\n8. The collaboration between companies like Candy Digital and the potential for Web3, IP, and gaming to explode in the future.\n9. The positive momentum and development progress of the Somnia Network testnet, a real-time L1 platform for games and apps.', - data: [ - 3, 4, 0, 2, 7, 3, 0, 8, 3, 6, 7, 7, 7, 4, 3, 3, 4, 2, 7, 6, 58, 4, 3, 4, 2, 10, 4, 2, 7, 7, - 4, 3, 7, 3, 3, 6, 12, 20, 7, 7, 6, 3, 7, 8, 4, 4, 7, 2, 6, 4, 10, 5, 5, 6, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,coins,memes', - description: - 'The messages from Twitter suggest that the crypto community is currently buzzing about meme coins, particularly those with the potential for x100 gains. There is excitement around meme coins like $WIF, Popcat, and Solana Meme Coin BLICKY. Traders are looking for meme coins with active communities, undervalued market caps, and more holders than traders. Additionally, there is discussion about the importance of utility in meme coins and the potential for value accrual over time. Some users are also sharing information about platforms like @LBank_Exchange that prioritize fast listings of meme coins and deep liquidity. Overall, it seems like meme coins are a hot topic in the crypto industry right now, with traders eager to find the next big opportunity for significant gains.', - data: [ - 1, 1, 0, 0, 5, 1, 2, 0, 0, 2, 5, 8, 5, 6, 2, 6, 2, 4, 5, 8, 3, 1, 9, 2, 3, 8, 4, 6, 7, 7, 4, - 5, 72, 6, 2, 3, 6, 2, 3, 3, 6, 3, 10, 4, 3, 6, 2, 11, 5, 1, 4, 11, 4, 4, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,net,inflow,etf', - description: - 'The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs, particularly in the US market. BlackRock is highlighted as a major player accumulating Bitcoin, with their iShares Bitcoin Trust (IBIT) leading the surge in inflows. Other ETFs such as ARKInvest 21Shares and Fidelity are also mentioned as attracting significant investments. The overall trend indicates a renewed institutional interest in Bitcoin ETFs, with record-breaking inflows exceeding $900 million in just a couple of days. This surge in inflows signals a bullish sentiment in the market and suggests growing confidence in Bitcoin as an investment asset.', - data: [ - 5, 1, 0, 0, 4, 2, 18, 5, 4, 13, 5, 0, 3, 6, 4, 2, 0, 32, 1, 5, 2, 2, 2, 2, 5, 3, 6, 0, 4, 0, - 3, 4, 1, 9, 5, 0, 0, 1, 0, 5, 0, 2, 10, 0, 25, 3, 0, 1, 1, 1, 2, 0, 1, 7, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,lending,yield,finance', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. DeFi (Decentralized Finance): Discussions about DeFi projects, growth, innovation, and its role in providing open financial infrastructure.\n2. Bitcoin and Ethereum as reserve currencies: The importance of BTC and ETH as reserve currencies and their role in the future of finance.\n3. DeFi lending: The evolution of DeFi lending protocols towards flexibility, modularity, and smarter risk tools.\n4. Native swaps for Bitcoin: The introduction of direct Bitcoin trading in DeFi wallets, allowing users to trade BTC with other cryptocurrencies.\n5. Beam private-by-default DeFi ecosystem: Introduction of new dApps in the Beam ecosystem for tracking blockchain info and liquidity positions.\n6. Ethena Labs and Securitize's 'Converge' Network Plan: Collaboration between Ethena Labs and Securitize to develop the synthetic dollar USDe and financial technology solutions.\n7. Oraichain Labs' AI platform for DeFi: Introduction of an AI platform by Oraichain Labs to provide insights on high-yield strategies in stablecoin farming across chains.", - data: [ - 1, 1, 0, 1, 2, 1, 1, 3, 4, 6, 2, 6, 4, 3, 12, 4, 3, 6, 3, 7, 3, 5, 3, 3, 2, 1, 2, 7, 5, 7, - 6, 3, 4, 6, 3, 6, 2, 2, 5, 3, 8, 2, 4, 6, 3, 4, 3, 2, 6, 3, 5, 4, 4, 7, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,bought,worth,accumulation', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Whales making significant purchases of various cryptocurrencies such as Ethereum, Bitcoin, Solana, and LUCE.\n2. Institutional investors like Fidelity and Abraxas Capital investing large sums in Ethereum and Bitcoin.\n3. Speculation on the intentions of whales and institutional investors in the market.\n4. The increase in new whales accumulating Bitcoin.\n5. Nancy Pelosi's investment in Tempus AI calls.\n6. The activity of dormant whales re-entering the market and making large purchases.\n7. The overall sentiment towards altcoin season and the potential for Ethereum to start pumping again.\n8. The behavior of different types of holders in the Bitcoin ecosystem, including whales and small holders.\n9. The significance of on-chain analysis in understanding market movements.\n10. The impact of large transactions on the market and the potential for price movements.", - data: [ - 2, 3, 0, 0, 1, 2, 0, 14, 19, 4, 10, 1, 1, 3, 2, 3, 4, 8, 0, 1, 0, 0, 0, 0, 3, 2, 1, 2, 5, 1, - 1, 2, 1, 4, 7, 5, 0, 0, 0, 2, 1, 0, 8, 3, 1, 1, 0, 0, 1, 1, 5, 3, 39, 6, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,prediction,wow,shortterm', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry, specifically Dogecoin, include:\n- Dogecoin's price movement and potential for a bullish wave in the midterm\n- Increased holdings and commitment to Dogecoin\n- The influence of social media and communities on Dogecoin's popularity\n- Speculation on the impact of macroeconomic factors on Dogecoin's performance\n- The emergence of Dogecoin as a cultural phenomenon\n- Technical analysis of Dogecoin's price trends and potential bullish signs\n- The release of new products related to Dogecoin mining\n- The engagement of the Brazilian Dogecoin community in promoting the movement\n\nOverall, the sentiment towards Dogecoin appears to be positive, with discussions focusing on its potential for growth and its unique position within the crypto industry.", - data: [ - 2, 0, 0, 1, 1, 0, 0, 1, 3, 2, 0, 0, 2, 4, 3, 80, 2, 0, 2, 3, 2, 4, 0, 1, 5, 1, 3, 1, 5, 4, - 1, 1, 2, 2, 1, 2, 1, 1, 4, 1, 1, 2, 2, 0, 3, 1, 0, 0, 4, 1, 0, 5, 2, 2, - ], - }, - { - label: 'Paul Atkins officially sworn in as SEC chairman', - topics: 'atkins,paul,sec,chair,chairman', - description: - "The key topic currently being discussed on Twitter is the appointment of Paul Atkins as the new SEC Chairman and his stance on cryptocurrency regulation. Paul Atkins has expressed his support for providing a firm regulatory foundation for digital assets and has stated that Bitcoin and crypto will be his top priority. This has led to speculation about how Atkins' leadership will impact the crypto market and whether there will be a shift towards a more crypto-friendly approach compared to the previous SEC Chairman, Gary Gensler. Overall, there is anticipation and interest in how Atkins will reshape the SEC's stance on digital assets and provide regulatory clarity for cryptocurrencies like Bitcoin, Ethereum, and XRP.", - data: [ - 2, 2, 0, 1, 34, 1, 0, 6, 22, 1, 8, 0, 0, 7, 1, 1, 2, 0, 0, 1, 1, 4, 0, 0, 0, 3, 0, 1, 2, 1, - 2, 5, 0, 21, 5, 2, 3, 0, 12, 0, 1, 4, 1, 0, 2, 1, 3, 0, 1, 3, 1, 1, 1, 0, - ], - }, - { - label: 'Buy the dip', - topics: 'dip,buy,trading,dont,trades', - description: - 'The key topics currently being discussed in the crypto industry on social media include buying the dip, setting stop losses on illiquid shitcoins, day trading strategies, holding vs trading vs buying the dip, NFT investments, market downturns, the difficulty of day trading, following successful traders, and the importance of having a trading plan. Overall, there is a mix of optimism about buying the dip and coming out with gains, as well as caution about the risks involved in trading and investing in cryptocurrencies.', - data: [ - 0, 0, 0, 1, 2, 6, 1, 0, 0, 8, 2, 1, 3, 2, 5, 1, 3, 0, 2, 2, 2, 3, 4, 5, 7, 2, 3, 0, 2, 1, 4, - 9, 1, 2, 2, 1, 4, 1, 3, 9, 3, 3, 6, 3, 2, 4, 4, 5, 7, 3, 1, 7, 5, 2, - ], - }, - { - label: 'AERGO', - topics: 'aergo,altseason,altcoins,hodl,pump', - description: - 'The key topics currently discussed in the crypto industry on Twitter include the relisting of $AERGO on Binance Futures, American Airlines withdrawing their 2025 forecast, price predictions and analysis for $AERGO, potential pump and dump scenarios, accumulation strategies, and discussions about the potential for $AERGO to reach $1.00 or even $3.00. There are also mentions of price manipulation by scammers on Binance, comparisons to other cryptocurrencies like $XRP, and predictions of becoming a millionaire by investing in $AERGO. Overall, the sentiment seems to be bullish on $AERGO with expectations of significant price increases in the near future.', - data: [ - 101, 2, 0, 0, 3, 1, 0, 3, 0, 6, 1, 2, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 3, 0, 0, 0, 0, 2, - 1, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 1, 2, 2, 0, 1, 1, 1, 1, 0, 1, 1, 2, 5, - ], - }, - { - label: 'BTC Mining', - topics: 'mining,miners,miner,energy,block', - description: - 'Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n- Bitcoin mining and its impact on the environment\n- Bitcoin mining innovations such as miner-sequenced WASM-based sovereign rollup and merged mining\n- Bitcoin mining profitability and energy efficiency\n- Bitcoin mining farms and strategies for renewable energy\n- Bitcoin mining events and expos, such as Mining Disrupt Texas\n- Bitcoin network security and incentives for miners\n\nOverall, the discussions on Twitter highlight the ongoing developments and challenges in the Bitcoin mining sector, as well as the importance of sustainable practices and innovation in the industry.', - data: [ - 2, 1, 0, 0, 2, 1, 15, 3, 1, 1, 0, 1, 5, 2, 2, 3, 1, 0, 1, 0, 4, 3, 2, 4, 6, 2, 2, 1, 7, 2, - 2, 2, 19, 6, 2, 0, 1, 5, 0, 2, 0, 1, 4, 5, 3, 1, 4, 1, 5, 1, 1, 4, 3, 4, - ], - }, - { - label: 'Twenty One', - topics: 'tether,jack,acquisition,company,ceo', - description: - 'The key topic discussed in the messages from Twitter is the launch of a new cryptocurrency venture called Twenty One, backed by Cantor Fitzgerald, SoftBank, Tether, and Bitfinex. The venture aims to raise $3 billion to create a massive stockpile of Bitcoin and compete with companies like MicroStrategy. Brandon Lutnick, son of the U.S. Commerce Secretary, is leading the initiative, with Tether investing $1.5 billion, SoftBank $900 million, and Bitfinex $600 million. Jack Mallers will be the CEO of this Bitcoin acquisition vehicle. The race to acquire more Bitcoin is on, with competition encouraged in the crypto industry.', - data: [ - 4, 4, 0, 0, 4, 4, 0, 5, 14, 0, 5, 0, 3, 1, 0, 1, 0, 1, 1, 2, 0, 0, 1, 1, 1, 4, 3, 3, 11, 1, - 1, 14, 0, 8, 7, 0, 1, 7, 1, 1, 1, 1, 0, 9, 2, 3, 3, 7, 3, 0, 3, 0, 2, 0, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,etf,cryptocurrency,altcoins', - description: - 'The key topics currently discussed in the crypto industry on Twitter include XRP futures being listed on Coinbase, potential flippening of ETH by XRP, XRP\'s price movements and potential upside, institutional demand and ETF hopes for XRP, active addresses and price stagnation strategy, XRP\'s surge due to easing tariffs on China, and the launch of XRP futures by Coinbase Derivatives. There is also mention of XRP being referred to as the "Biggest Meme Coin" and the game-changing $18.9 trillion RWA blueprint for XRP. Overall, the sentiment seems to be positive towards XRP with discussions around its potential growth and institutional interest.', - data: [ - 1, 3, 0, 0, 4, 2, 0, 2, 6, 1, 3, 4, 1, 0, 0, 0, 2, 1, 5, 1, 4, 4, 1, 1, 4, 1, 2, 0, 4, 2, 2, - 3, 2, 4, 2, 8, 1, 8, 1, 2, 10, 3, 3, 5, 3, 6, 0, 6, 3, 2, 1, 3, 0, 1, - ], - }, - { - label: 'ZORA', - topics: 'zora,airdrop,23,token,base', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the upcoming launch of the ZORA token on April 23, 2025, on the Base network. There is anticipation surrounding the potential valuation of ZORA, with some speculating it could open at over $2 billion. Additionally, there is mention of an airdrop for ZORA holders and the launch of ZORA Coins, a tool for Memecoins on the Base network. Other topics of discussion include ZORA being listed on various platforms such as Binance Alpha and Bitrue, as well as the launch of Zora Network on Bitgetglobal Launchpool. Overall, the community seems excited about the developments surrounding ZORA and its potential impact on the crypto industry.', - data: [ - 4, 4, 0, 0, 6, 3, 0, 4, 0, 3, 1, 4, 4, 3, 1, 2, 3, 1, 3, 4, 1, 5, 1, 0, 2, 2, 4, 3, 3, 6, 0, - 0, 1, 7, 2, 3, 2, 4, 1, 4, 2, 0, 4, 0, 1, 1, 4, 2, 1, 1, 1, 4, 3, 9, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-69.json b/priv/repo/major_topics_seed/data-69.json deleted file mode 100644 index 91f6102f5b..0000000000 --- a/priv/repo/major_topics_seed/data-69.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["24.04.25","25.04.25","25.04.25","25.04.25","25.04.25","25.04.25","25.04.25","25.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","01.05.25","01.05.25","01.05.25","01.05.25","01.05.25","01.05.25","01.05.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,human","description":"The key topics discussed in the messages from twitter about AI in the crypto industry include:\n1. The increasing role of AI in various industries, such as design and personal assistants.\n2. The potential impact of AI on society, including concerns about privacy and consent.\n3. The use of AI in trading and financial analysis.\n4. The development of AI-powered chatbots for cultural institutions.\n5. The ethical implications of AI, such as fabricated identities and false narratives.\n6. The relationship between children and AI, including whether they see AI as a tool or a friend.\n7. The intersection of AI and blockchain technology.\n8. The potential for AI to enhance user experiences and interactions.\n9. The discussion of specific AI products and their adoption by users.\n10. The ongoing debate about the future of AI and its implications for society.","data":[67,74,19,7,2,0,11,9,3,21,8,18,12,22,9,14,4,15,12,17,14,20,12,9,11,22,18,11,14,18,5,7,10,10,15,17,16,17,8,14,19,12,12,12,9,12,18,17,17,20,15,13,14,15,15]},{"label":"BTC Price","topics":"resistance,btc,higher,breakout,bullish","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin price potentially being suppressed\n- Bullish patterns on lower timeframes for Bitcoin\n- Bitcoin breaking $90K and on-chain metrics turning bullish\n- Bitcoin's correction phase and potential breakout beyond previous all-time highs\n- Bitcoin holding above key resistance levels and potential move to $100K\n- Bitcoin funding rates on Binance Futures remaining negative despite price surge\n- Bitcoin's price action and potential breakout above $99K resistance\n- Comparison of SP500, Bitcoin, and Nasdaq performance\n- Predictions and analysis of Bitcoin price movement\n- Trading firm related games on Binance perp affecting Bitcoin price action\n- Potential listing of MNT on Coinbase and bullish bias on price action\n- Bitcoin liquidation and price analysis on Binance 15m timeframe","data":[10,7,7,8,56,52,10,50,9,14,9,11,18,8,8,3,1,15,8,4,6,6,5,17,4,9,10,7,6,16,11,5,17,4,9,6,8,15,9,22,17,3,10,10,12,9,20,6,5,11,2,8,9,11,5]},{"label":"SOL","topics":"degens,exciting,sol,cap,check","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n\n1. #1inch adding Solana support and planning cross-chain swaps across 10 blockchains\n2. Solana surpassing Ethereum in staked value amid yield debate\n3. DeFi Development Corp planning a $1 billion Solana investment and treasury growth\n4. Discussion on Ethereum's potential to win by institutionalizing DeFi ponzus\n5. The formation of incredible communities on Solana\n6. Proposal for a token launch experiment with specific allocation of funds\n7. Exciting news about degens purchasing various tokens at low prices with market cap and volume details\n8. The popularity of the Solana route on the Wanchain Bridge for asset transfers between Solana and other blockchains\n\nOverall, the discussions on Twitter reflect a mix of technical developments, investment opportunities, and community growth within the crypto industry, with a particular focus on Solana and its potential for cross-chain swaps and investments.","data":[8,7,1,19,0,0,4,3,7,7,5,4,5,14,8,0,54,125,5,6,6,5,6,3,2,4,5,8,2,7,4,3,2,5,7,5,1,6,7,2,2,1,5,22,9,6,8,2,4,1,4,8,1,8,5]},{"label":"BTC","topics":"fiat,bitcoin,money,people,understand","description":"The messages from Twitter about Bitcoin highlight various key points and discussions within the crypto community. Some of the main topics include:\n\n1. The importance of Bitcoin as a decentralized and honest form of money, contrasting it with traditional financial systems controlled by governments.\n2. The belief that Bitcoin can be a tool for economic justice, even as wealthy individuals and institutions invest in it.\n3. Skepticism about governments adopting a Bitcoin standard, questioning their ability to influence the small group of people who actively maintain the cryptocurrency.\n4. The idea that Bitcoin operates independently of market trends and political power, serving as a decentralized financial system accessible to anyone.\n5. The concept of a \"Bitcoin Financial Revolution\" that could potentially disrupt global debt and provide collateral for real estate purchases.\n6. Reflections on the motivations of Bitcoin's founder, emphasizing a lack of interest in fame, wealth, or status.\n7. Criticism of traditional governance and fiat currency, advocating for a shift towards Bitcoin as a means of escaping the \"Matrix\" of fake governance and fraudulent money.\n8. Acknowledgment of the unique culture within the Bitcoin community, characterized by a focus on hodling (holding onto Bitcoin) and trolling, as well as a sense of camaraderie and shared experiences among members.\n\nOverall, the messages reflect a diverse range of perspectives on Bitcoin, highlighting its potential as a disruptive force in the financial world and the unique ethos of the community that surrounds it.","data":[7,2,6,5,34,38,1,10,2,7,2,11,8,7,8,8,2,4,11,10,3,7,9,7,5,9,7,4,2,5,9,10,4,3,11,12,8,6,10,10,8,12,3,8,2,6,6,14,15,4,9,5,8,3,8]},{"label":"Token2049","topics":"dubai,token2049,summit,stage,event","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Token2049 event in Dubai\n2. KuCoin's $2B commitment to the Trust Project\n3. Binance Clubhouse event\n4. ZIGChain and Ellington exploring real estate tokenization in the UAE\n5. OKX Alpha Traders Summit\n6. XDC Network x StorX | DePIN Powered by #XDC x Law Blocks AI booth at EthDubai\n7. Polkadot Side Event at Token2049\n8. UQUID reward package for Token2049 attendees\n9. BitOasis Cybertruck takeover in Dubai\n\nThese topics highlight various events, partnerships, and initiatives within the crypto industry, showcasing the growing interest and innovation in the space.","data":[7,1,3,3,2,5,3,4,3,11,11,7,4,18,2,8,28,4,3,4,8,5,13,18,7,6,13,8,5,16,2,6,1,1,6,6,6,5,9,8,3,1,11,2,9,1,8,7,10,33,3,4,3,13,6]},{"label":"GameFi","topics":"game,gaming,games,play,playing","description":"The key topics currently discussed in the crypto industry on social media include game theory in PC vs PS5 gaming, the popularity of old games like Clair Obscur: Expedition 33, the challenges of game development and player onboarding, a knight's tour puzzle on a chessboard, new map assets in a competitive action RTS game, Rebel Cars' elite gaming experience, a world-building RPG with evolving planets, exclusive promo cards in the Conclave Arcana Pre-Sale, publishing games on AviatorArcade for rewards boost, a leaderboard beta game with rewards in $furbtc, and a star giveaway event in the Catizen Game Center.","data":[2,0,4,6,0,3,1,4,5,8,6,4,3,5,4,5,0,4,6,4,47,5,6,5,3,4,6,2,12,7,3,1,5,4,5,4,33,2,3,6,3,3,3,3,2,6,2,4,5,0,7,1,6,9,7]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Meme coins: There is a lot of discussion around meme coins such as $DOGE, $SHIB, $PEPE, $WIF, $FLOKI, and others. Some users are debating which meme coin has the best vibe and asking for recommendations on which meme coin to buy. However, there is also a disclaimer that meme coins have no use case and are considered high-risk investments similar to playing the lottery.\n\n2. Meme2Million campaign: PancakeSwap and Vulcan have launched a collaborative campaign called \"Meme2Million\" to promote standout memecoins on the BNB Chain. The initiative aims to spotlight and promote meme coins on a blockchain known for its low-cost and high-speed transactions.\n\n3. Meme Olympics: There is excitement around the Meme Olympics judging panel, with @Slothspepe joining as a judge. The initiative aims to showcase and promote meme creations on UK billboards.\n\n4. Lumemeofficial: Users are encouraged to mint their memes on Lumemeofficial and join the cult to grow their legend in the meme scene. Lobstr wallet integration is also mentioned as dropping soon.\n\n5. Word Search Challenge: LBank Exchange is hosting a Word Search Challenge - MEME Edition, where participants can find trending meme coins hidden in a puzzle for a chance to win rewards.\n\nOverall, the discussion around meme coins, meme campaigns, and meme-related challenges is prevalent in the crypto community on social media platforms like Twitter.","data":[8,1,1,6,2,0,0,0,8,5,4,3,2,1,1,2,1,2,4,6,4,8,4,5,6,3,9,4,6,10,10,73,6,5,5,4,3,5,3,5,6,4,6,1,3,5,3,3,6,2,7,2,7,2,1]},{"label":"ETH","topics":"eth,ethereum,1800,rally,2000","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n\n1. Price Analysis: Traders are discussing potential price movements for Ethereum, with some predicting a breakout towards $2100 and even $10,000 if certain patterns play out.\n\n2. Fundamental Analysis: There is speculation about potential bullish catalysts for Ethereum, such as staking ETFs and involvement from institutions like Blackrock, which could drive the price up.\n\n3. Technical Analysis: Traders are analyzing technical indicators like Stochastic RSI and chart patterns to predict potential reversals and breakouts for Ethereum.\n\n4. Market Sentiment: There is a mix of bullish and bearish sentiment, with some expecting a big pump in Ethereum price while others are cautious about critical resistance levels.\n\nOverall, the community is closely monitoring Ethereum's price movements and potential catalysts that could drive the price higher in the near future.","data":[1,3,5,8,0,0,5,4,7,4,8,5,1,2,1,4,61,4,9,5,4,5,6,9,3,3,3,4,1,7,4,1,9,1,1,5,5,7,2,8,5,4,8,6,2,5,0,1,8,2,5,2,4,3,7]},{"label":"Art","topics":"art,culture,digital,collectors,work","description":"The key topics discussed in the messages from twitter about art include the creation of art that you want to see, the debate on whether AI art is considered true art, digital art on canvas, showcasing and collecting artwork, handmade miniature art based on famous works, the value of collecting portraits, unique digital artwork available for purchase, and famous images featuring scenes from classic novels. The messages also highlight the importance of people as subjects in art and the opportunity for artists to submit their work for consideration.","data":[2,0,47,4,0,2,0,1,0,1,8,9,8,5,13,3,1,6,9,5,6,2,4,3,4,4,0,2,4,5,3,2,7,2,6,12,9,6,4,3,3,3,5,4,2,5,2,2,5,5,4,0,2,1,5]},{"label":"PENGU","topics":"pengu,altcoins,pump,altseason,dump","description":"The key topics discussed in the twitter messages are:\n- Pump and dump schemes in the crypto industry\n- Price movements of specific altcoins like $pengu, $voxel, $pundix, and $lit\n- Suspicions of manipulation by exchanges like Coinbase and Binance\n- Strategies for trading and making profits in the volatile crypto market\n- Speculation on the future price movements of altcoins\n- Warnings about potential scams and rug pulls in the industry","data":[3,4,0,3,0,0,2,0,7,3,3,2,7,0,4,8,3,3,2,2,5,10,2,4,3,2,9,0,7,4,0,13,3,1,4,45,5,8,20,2,2,8,5,2,2,3,3,3,1,1,3,0,7,4,4]},{"label":"SUI","topics":"sui,sei,unlocks,files,etf","description":"The key topics currently being discussed in the crypto industry on Twitter include the performance and potential of various tokens such as $SUI and $EAI, the integration of bitcoin into different platforms like Sui and Stacks, the surge in network activity and price of $SUI, the filing for a staked $SEI ETF by @CanaryFunds with the @SECGov, and the growth of Bitcoin yield opportunities. There is also speculation about the future price targets for $SUI and the potential for further partnerships and developments in the industry. Overall, the sentiment seems positive with discussions around potential gains and advancements in the crypto space.","data":[8,2,2,3,0,0,5,6,19,5,1,3,2,3,5,4,1,4,11,2,3,3,3,7,6,11,2,2,1,6,7,3,2,3,3,7,3,8,6,2,7,2,7,6,5,8,8,1,4,7,1,3,1,8,1]},{"label":"Recession","topics":"recession,gdp,inflation,03,q1","description":"The key topics currently being discussed on Twitter regarding the crypto industry include:\n- Early warning signs of an impending recession\n- High tariffs potentially leading to a recession in 2025\n- Bleak consumer outlook on the economy and surging inflation expectations\n- Bank of Japan's rate policy and its impact on Japan-US trade talks\n- The devaluation of the U.S. dollar due to inflation\n- The recent Q1 GDP report showing economic stagnation\n- Speculation on whether the Fed will respond with rate cuts or focus on inflation concerns\n- Clues investors are looking for to determine if a recession is imminent\n- The potential impact of a crisis or recession on the economy and startups\n\nOverall, the discussions on Twitter suggest a mix of concerns about economic indicators, trade policies, and potential future scenarios for the economy and startups.","data":[3,1,2,4,0,0,8,1,1,3,1,11,1,0,8,14,1,5,1,4,16,3,2,3,1,14,4,0,2,3,26,0,1,0,10,6,1,5,5,18,8,0,0,4,1,4,2,6,3,1,4,4,0,4,2]},{"label":"ETF Flows","topics":"etfs,inflows,net,saw,flows","description":"The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs, totaling over $2.65 billion in a week. This surge in institutional demand for Bitcoin ETFs is seen as a bullish sign for the cryptocurrency market. Additionally, there is a shift in institutional investment trends, with Bitcoin ETFs gaining over 25,000 BTC while Ethereum funds saw outflows. The momentum in ETF flows is building, and there is growing interest from sovereign wealth funds in stacking Bitcoin over-the-counter. Overall, the messages indicate a positive outlook for Bitcoin and the cryptocurrency market as a whole.","data":[2,2,0,2,14,4,6,4,8,0,1,2,7,1,6,1,34,0,3,3,3,0,0,5,6,8,0,6,0,2,3,1,3,5,5,0,0,0,1,8,1,2,8,0,29,5,1,1,4,7,0,5,2,6,4]},{"label":"BlackRock","topics":"blackrock,bought,worth,etf,breaking","description":"The key topic discussed in the messages from Twitter is the significant investment and accumulation of Bitcoin by BlackRock, a major financial institution. BlackRock has made multiple large purchases of Bitcoin, totaling billions of dollars, to support their Bitcoin ETF and crypto holdings. The CEO of BlackRock, Larry Fink, has expressed confidence in the investment prospects of Bitcoin and has stated that institutional investors are currently focused on Bitcoin over other cryptocurrencies. Additionally, there are concerns about the centralization risks posed by institutions like BlackRock and MicroStrategy holding large amounts of Bitcoin. The messages also mention discussions about the correlation of Bitcoin with tech stocks and US equities, as well as insights from industry experts on the current state of alt investing.","data":[3,0,0,3,1,34,41,3,24,1,3,2,0,1,1,1,9,0,1,3,3,0,3,6,7,3,1,2,1,1,6,0,0,6,0,1,1,0,5,3,0,11,4,2,1,2,0,0,1,3,0,1,3,1,1]},{"label":"DOGE","topics":"dogecoin,doge,breakout,momentum,fun","description":"The key topics currently discussed in the crypto community on Twitter include Dogecoin, its price movements, market analysis, potential for growth, and comparisons to Bitcoin. There is excitement and optimism surrounding Dogecoin, with mentions of its potential to go legendary and its bullish structure within an ascending channel. The community is also discussing the impact of macro news on Dogecoin's price, as well as the influence of figures like Elon Musk. Overall, there is a sense of positivity and anticipation for Dogecoin's future.","data":[0,4,1,0,2,0,2,0,2,1,4,4,2,1,89,2,1,3,3,1,4,2,3,4,3,3,6,3,6,1,3,1,3,1,2,0,2,0,2,1,6,3,5,3,0,1,1,4,1,0,2,0,5,1,2]},{"label":"Arizona’s BTC Reserve ","topics":"reserve,state,passed,strategic,north","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n\n1. Arizona passing both Bitcoin Reserve Bills and potentially becoming the first state with a State Bitcoin Reserve.\n2. Ohio proposing to allow residents to pay state services and taxes with Bitcoin.\n3. The US Senate planning to vote on major crypto stablecoin legislation in May.\n4. Arizona's House passing bills to establish a Bitcoin reserve, awaiting Governor Katie Hobbs' signature.\n5. North Carolina joining the race for a Strategic Bitcoin Reserve.\n6. Arkansas city closing planned crypto mining operations due to public protest.\n7. The potential allocation of treasury and pension funds for a Bitcoin reserve in Arizona.\n8. Speculation and opinions on the political stance of Governor Katie Hobbs regarding the Bitcoin reserve bills.","data":[0,2,3,2,5,3,18,14,1,1,4,2,0,0,0,2,0,5,1,2,1,1,1,3,5,1,3,6,10,2,0,0,5,2,2,40,0,2,7,1,4,1,5,1,0,14,1,1,2,1,0,5,5,2,0]},{"label":"DeFi","topics":"defi,lending,yields,tracking,finance","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n- Beam, a blockchain and DeFi ecosystem for the privacy-conscious\n- Chaos Labs Pendle PT Risk Oracle being live and used by the biggest DeFi protocol Aave\n- The potential impact of Layer2 solutions on blockchain scalability and the future of DeFi\n- Community-driven protocols where everyone can contribute\n- Automated vaults optimizing user returns from top DeFi protocols\n- DeFi mindshare being at a high level\n- HumanFi, a smart wallet tracker and token swap aggregator within the World Chain Mini App ecosystem\n- World ID offering incentives only to unique humans to prevent monopolization by hedge funds/whales\n- The complexity of navigating through DeFi and the evolution of the industry\n- The Hack Seasons Conference in Dubai focusing on unlocking next-gen DeFi for the masses\n- Stable yields and smart DeFi strategy with USDD and sTRX\n- The basics of DeFi and its difference from traditional finance\n- The opportunity in blending DeFi and TradFi, with examples like Wormhole\n- The future of SmartDeFi and FEG token with next-gen presales, simplified token creation, and staking rewards.","data":[8,1,0,7,0,1,0,2,0,3,3,1,2,11,0,6,7,3,5,3,4,1,4,4,4,3,3,3,3,6,2,1,3,2,1,5,3,4,3,4,4,2,2,2,2,5,4,0,4,12,3,5,1,2,5]},{"label":"MicroStrategy","topics":"saylor,strategy,microstrategy,michael,billion","description":"Based on the messages from Twitter, it seems that there is a lot of discussion around MicroStrategy's recent acquisition of 15,355 Bitcoins for approximately $1.42 billion. This acquisition brings their total holdings to 553,555 BTC. There is also speculation about GME potentially buying $6.5 billion worth of BTC soon. Michael Saylor, the CEO of MicroStrategy, is being praised for his aggressive Bitcoin strategy, with some calling him a \"GOAT\" (Greatest of All Time) in the industry. However, there are also critics who question Saylor's approach and execution in buying Bitcoin with other people's money. Overall, it appears that there is a mix of excitement and skepticism surrounding MicroStrategy's Bitcoin acquisitions and Saylor's role in the crypto industry.","data":[10,2,0,0,0,1,3,12,6,3,2,3,2,0,2,1,1,0,2,3,1,1,4,4,3,3,1,1,3,3,6,9,1,1,1,0,2,3,2,0,1,17,2,1,2,42,2,0,1,0,0,2,1,1,0]},{"label":"BTC Mining","topics":"mining,miners,energy,sustainable,bitcoin","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Bitcoin mining sustainability and the use of renewable energy sources.\n2. The shift towards green energy in Bitcoin mining.\n3. The upcoming scarcity of Bitcoin as 95% of all 21,000,000 Bitcoins will have been mined in about 207 days.\n4. The debate on whether miners will run Bitcoin Core or alternative software to maximize their revenues.\n5. Cambridge's report on the electricity consumption and emissions profile of Bitcoin mining, highlighting the increasing use of zero-emission energy sources.\n6. Publicly traded Bitcoin mining companies and their stock performance.\n7. The discussion around maximizing miner revenues through custom software like \"Bitcoin RM\".\n8. The importance of understanding the risks involved in mining cryptocurrencies and the element of luck in hitting blocks.\nOverall, the focus is on sustainability, efficiency, profitability, and innovation in the Bitcoin mining industry.","data":[6,0,2,1,25,7,1,4,5,3,3,4,2,6,1,4,0,2,0,4,1,2,6,6,0,5,0,1,1,5,3,11,3,8,0,1,1,3,3,1,2,3,3,1,0,2,4,1,3,0,2,2,2,3,1]},{"label":"XRP","topics":"xrp,ripple,cme,crash,etf","description":"The key topics currently being discussed on Twitter regarding XRP include:\n- XRP surpassing Ethereum in fully diluted market cap\n- XRP potentially flipping Tether in the crypto market dynamics\n- Ripple's executive chairman meeting with the new SEC chair\n- XRP price prediction with the world's first spot ETF going live\n- XRP futures ETF launch and bullish activity\n- Ripple strengthening custody solutions for global tokenization\n- XRP network activity soaring by 600%\n- Potential price increase for XRP if SWIFT's flow reroutes to RippleNet\n\nOverall, there is a lot of positive sentiment and anticipation surrounding XRP's future growth and potential in the crypto industry.","data":[4,0,1,3,0,2,4,7,3,3,1,4,4,5,0,0,3,3,0,4,4,1,1,5,5,4,2,4,1,0,2,9,3,2,1,2,2,5,4,1,5,1,0,3,7,1,3,0,3,3,2,4,1,1,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-69.ts b/priv/repo/major_topics_seed/data-69.ts deleted file mode 100644 index 9119541080..0000000000 --- a/priv/repo/major_topics_seed/data-69.ts +++ /dev/null @@ -1 +0,0 @@ -export const NARRATIVES = {"labels":["24.04.25","25.04.25","25.04.25","25.04.25","25.04.25","25.04.25","25.04.25","25.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","26.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","27.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","28.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","29.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","30.04.25","01.05.25","01.05.25","01.05.25","01.05.25","01.05.25","01.05.25","01.05.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,human","description":"The key topics discussed in the messages from twitter about AI in the crypto industry include:\n1. The increasing role of AI in various industries, such as design and personal assistants.\n2. The potential impact of AI on society, including concerns about privacy and consent.\n3. The use of AI in trading and financial analysis.\n4. The development of AI-powered chatbots for cultural institutions.\n5. The ethical implications of AI, such as fabricated identities and false narratives.\n6. The relationship between children and AI, including whether they see AI as a tool or a friend.\n7. The intersection of AI and blockchain technology.\n8. The potential for AI to enhance user experiences and interactions.\n9. The discussion of specific AI products and their adoption by users.\n10. The ongoing debate about the future of AI and its implications for society.","data":[67,74,19,7,2,0,11,9,3,21,8,18,12,22,9,14,4,15,12,17,14,20,12,9,11,22,18,11,14,18,5,7,10,10,15,17,16,17,8,14,19,12,12,12,9,12,18,17,17,20,15,13,14,15,15]},{"label":"BTC Price","topics":"resistance,btc,higher,breakout,bullish","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n- Bitcoin price potentially being suppressed\n- Bullish patterns on lower timeframes for Bitcoin\n- Bitcoin breaking $90K and on-chain metrics turning bullish\n- Bitcoin's correction phase and potential breakout beyond previous all-time highs\n- Bitcoin holding above key resistance levels and potential move to $100K\n- Bitcoin funding rates on Binance Futures remaining negative despite price surge\n- Bitcoin's price action and potential breakout above $99K resistance\n- Comparison of SP500, Bitcoin, and Nasdaq performance\n- Predictions and analysis of Bitcoin price movement\n- Trading firm related games on Binance perp affecting Bitcoin price action\n- Potential listing of MNT on Coinbase and bullish bias on price action\n- Bitcoin liquidation and price analysis on Binance 15m timeframe","data":[10,7,7,8,56,52,10,50,9,14,9,11,18,8,8,3,1,15,8,4,6,6,5,17,4,9,10,7,6,16,11,5,17,4,9,6,8,15,9,22,17,3,10,10,12,9,20,6,5,11,2,8,9,11,5]},{"label":"SOL","topics":"degens,exciting,sol,cap,check","description":"Based on the messages from Twitter, the key topics currently being discussed in the crypto industry include:\n\n1. #1inch adding Solana support and planning cross-chain swaps across 10 blockchains\n2. Solana surpassing Ethereum in staked value amid yield debate\n3. DeFi Development Corp planning a $1 billion Solana investment and treasury growth\n4. Discussion on Ethereum's potential to win by institutionalizing DeFi ponzus\n5. The formation of incredible communities on Solana\n6. Proposal for a token launch experiment with specific allocation of funds\n7. Exciting news about degens purchasing various tokens at low prices with market cap and volume details\n8. The popularity of the Solana route on the Wanchain Bridge for asset transfers between Solana and other blockchains\n\nOverall, the discussions on Twitter reflect a mix of technical developments, investment opportunities, and community growth within the crypto industry, with a particular focus on Solana and its potential for cross-chain swaps and investments.","data":[8,7,1,19,0,0,4,3,7,7,5,4,5,14,8,0,54,125,5,6,6,5,6,3,2,4,5,8,2,7,4,3,2,5,7,5,1,6,7,2,2,1,5,22,9,6,8,2,4,1,4,8,1,8,5]},{"label":"BTC","topics":"fiat,bitcoin,money,people,understand","description":"The messages from Twitter about Bitcoin highlight various key points and discussions within the crypto community. Some of the main topics include:\n\n1. The importance of Bitcoin as a decentralized and honest form of money, contrasting it with traditional financial systems controlled by governments.\n2. The belief that Bitcoin can be a tool for economic justice, even as wealthy individuals and institutions invest in it.\n3. Skepticism about governments adopting a Bitcoin standard, questioning their ability to influence the small group of people who actively maintain the cryptocurrency.\n4. The idea that Bitcoin operates independently of market trends and political power, serving as a decentralized financial system accessible to anyone.\n5. The concept of a \"Bitcoin Financial Revolution\" that could potentially disrupt global debt and provide collateral for real estate purchases.\n6. Reflections on the motivations of Bitcoin's founder, emphasizing a lack of interest in fame, wealth, or status.\n7. Criticism of traditional governance and fiat currency, advocating for a shift towards Bitcoin as a means of escaping the \"Matrix\" of fake governance and fraudulent money.\n8. Acknowledgment of the unique culture within the Bitcoin community, characterized by a focus on hodling (holding onto Bitcoin) and trolling, as well as a sense of camaraderie and shared experiences among members.\n\nOverall, the messages reflect a diverse range of perspectives on Bitcoin, highlighting its potential as a disruptive force in the financial world and the unique ethos of the community that surrounds it.","data":[7,2,6,5,34,38,1,10,2,7,2,11,8,7,8,8,2,4,11,10,3,7,9,7,5,9,7,4,2,5,9,10,4,3,11,12,8,6,10,10,8,12,3,8,2,6,6,14,15,4,9,5,8,3,8]},{"label":"Token2049","topics":"dubai,token2049,summit,stage,event","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Token2049 event in Dubai\n2. KuCoin's $2B commitment to the Trust Project\n3. Binance Clubhouse event\n4. ZIGChain and Ellington exploring real estate tokenization in the UAE\n5. OKX Alpha Traders Summit\n6. XDC Network x StorX | DePIN Powered by #XDC x Law Blocks AI booth at EthDubai\n7. Polkadot Side Event at Token2049\n8. UQUID reward package for Token2049 attendees\n9. BitOasis Cybertruck takeover in Dubai\n\nThese topics highlight various events, partnerships, and initiatives within the crypto industry, showcasing the growing interest and innovation in the space.","data":[7,1,3,3,2,5,3,4,3,11,11,7,4,18,2,8,28,4,3,4,8,5,13,18,7,6,13,8,5,16,2,6,1,1,6,6,6,5,9,8,3,1,11,2,9,1,8,7,10,33,3,4,3,13,6]},{"label":"GameFi","topics":"game,gaming,games,play,playing","description":"The key topics currently discussed in the crypto industry on social media include game theory in PC vs PS5 gaming, the popularity of old games like Clair Obscur: Expedition 33, the challenges of game development and player onboarding, a knight's tour puzzle on a chessboard, new map assets in a competitive action RTS game, Rebel Cars' elite gaming experience, a world-building RPG with evolving planets, exclusive promo cards in the Conclave Arcana Pre-Sale, publishing games on AviatorArcade for rewards boost, a leaderboard beta game with rewards in $furbtc, and a star giveaway event in the Catizen Game Center.","data":[2,0,4,6,0,3,1,4,5,8,6,4,3,5,4,5,0,4,6,4,47,5,6,5,3,4,6,2,12,7,3,1,5,4,5,4,33,2,3,6,3,3,3,3,2,6,2,4,5,0,7,1,6,9,7]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Meme coins: There is a lot of discussion around meme coins such as $DOGE, $SHIB, $PEPE, $WIF, $FLOKI, and others. Some users are debating which meme coin has the best vibe and asking for recommendations on which meme coin to buy. However, there is also a disclaimer that meme coins have no use case and are considered high-risk investments similar to playing the lottery.\n\n2. Meme2Million campaign: PancakeSwap and Vulcan have launched a collaborative campaign called \"Meme2Million\" to promote standout memecoins on the BNB Chain. The initiative aims to spotlight and promote meme coins on a blockchain known for its low-cost and high-speed transactions.\n\n3. Meme Olympics: There is excitement around the Meme Olympics judging panel, with @Slothspepe joining as a judge. The initiative aims to showcase and promote meme creations on UK billboards.\n\n4. Lumemeofficial: Users are encouraged to mint their memes on Lumemeofficial and join the cult to grow their legend in the meme scene. Lobstr wallet integration is also mentioned as dropping soon.\n\n5. Word Search Challenge: LBank Exchange is hosting a Word Search Challenge - MEME Edition, where participants can find trending meme coins hidden in a puzzle for a chance to win rewards.\n\nOverall, the discussion around meme coins, meme campaigns, and meme-related challenges is prevalent in the crypto community on social media platforms like Twitter.","data":[8,1,1,6,2,0,0,0,8,5,4,3,2,1,1,2,1,2,4,6,4,8,4,5,6,3,9,4,6,10,10,73,6,5,5,4,3,5,3,5,6,4,6,1,3,5,3,3,6,2,7,2,7,2,1]},{"label":"ETH","topics":"eth,ethereum,1800,rally,2000","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n\n1. Price Analysis: Traders are discussing potential price movements for Ethereum, with some predicting a breakout towards $2100 and even $10,000 if certain patterns play out.\n\n2. Fundamental Analysis: There is speculation about potential bullish catalysts for Ethereum, such as staking ETFs and involvement from institutions like Blackrock, which could drive the price up.\n\n3. Technical Analysis: Traders are analyzing technical indicators like Stochastic RSI and chart patterns to predict potential reversals and breakouts for Ethereum.\n\n4. Market Sentiment: There is a mix of bullish and bearish sentiment, with some expecting a big pump in Ethereum price while others are cautious about critical resistance levels.\n\nOverall, the community is closely monitoring Ethereum's price movements and potential catalysts that could drive the price higher in the near future.","data":[1,3,5,8,0,0,5,4,7,4,8,5,1,2,1,4,61,4,9,5,4,5,6,9,3,3,3,4,1,7,4,1,9,1,1,5,5,7,2,8,5,4,8,6,2,5,0,1,8,2,5,2,4,3,7]},{"label":"Art","topics":"art,culture,digital,collectors,work","description":"The key topics discussed in the messages from twitter about art include the creation of art that you want to see, the debate on whether AI art is considered true art, digital art on canvas, showcasing and collecting artwork, handmade miniature art based on famous works, the value of collecting portraits, unique digital artwork available for purchase, and famous images featuring scenes from classic novels. The messages also highlight the importance of people as subjects in art and the opportunity for artists to submit their work for consideration.","data":[2,0,47,4,0,2,0,1,0,1,8,9,8,5,13,3,1,6,9,5,6,2,4,3,4,4,0,2,4,5,3,2,7,2,6,12,9,6,4,3,3,3,5,4,2,5,2,2,5,5,4,0,2,1,5]},{"label":"PENGU","topics":"pengu,altcoins,pump,altseason,dump","description":"The key topics discussed in the twitter messages are:\n- Pump and dump schemes in the crypto industry\n- Price movements of specific altcoins like $pengu, $voxel, $pundix, and $lit\n- Suspicions of manipulation by exchanges like Coinbase and Binance\n- Strategies for trading and making profits in the volatile crypto market\n- Speculation on the future price movements of altcoins\n- Warnings about potential scams and rug pulls in the industry","data":[3,4,0,3,0,0,2,0,7,3,3,2,7,0,4,8,3,3,2,2,5,10,2,4,3,2,9,0,7,4,0,13,3,1,4,45,5,8,20,2,2,8,5,2,2,3,3,3,1,1,3,0,7,4,4]},{"label":"SUI","topics":"sui,sei,unlocks,files,etf","description":"The key topics currently being discussed in the crypto industry on Twitter include the performance and potential of various tokens such as $SUI and $EAI, the integration of bitcoin into different platforms like Sui and Stacks, the surge in network activity and price of $SUI, the filing for a staked $SEI ETF by @CanaryFunds with the @SECGov, and the growth of Bitcoin yield opportunities. There is also speculation about the future price targets for $SUI and the potential for further partnerships and developments in the industry. Overall, the sentiment seems positive with discussions around potential gains and advancements in the crypto space.","data":[8,2,2,3,0,0,5,6,19,5,1,3,2,3,5,4,1,4,11,2,3,3,3,7,6,11,2,2,1,6,7,3,2,3,3,7,3,8,6,2,7,2,7,6,5,8,8,1,4,7,1,3,1,8,1]},{"label":"Recession","topics":"recession,gdp,inflation,03,q1","description":"The key topics currently being discussed on Twitter regarding the crypto industry include:\n- Early warning signs of an impending recession\n- High tariffs potentially leading to a recession in 2025\n- Bleak consumer outlook on the economy and surging inflation expectations\n- Bank of Japan's rate policy and its impact on Japan-US trade talks\n- The devaluation of the U.S. dollar due to inflation\n- The recent Q1 GDP report showing economic stagnation\n- Speculation on whether the Fed will respond with rate cuts or focus on inflation concerns\n- Clues investors are looking for to determine if a recession is imminent\n- The potential impact of a crisis or recession on the economy and startups\n\nOverall, the discussions on Twitter suggest a mix of concerns about economic indicators, trade policies, and potential future scenarios for the economy and startups.","data":[3,1,2,4,0,0,8,1,1,3,1,11,1,0,8,14,1,5,1,4,16,3,2,3,1,14,4,0,2,3,26,0,1,0,10,6,1,5,5,18,8,0,0,4,1,4,2,6,3,1,4,4,0,4,2]},{"label":"ETF Flows","topics":"etfs,inflows,net,saw,flows","description":"The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin ETFs, totaling over $2.65 billion in a week. This surge in institutional demand for Bitcoin ETFs is seen as a bullish sign for the cryptocurrency market. Additionally, there is a shift in institutional investment trends, with Bitcoin ETFs gaining over 25,000 BTC while Ethereum funds saw outflows. The momentum in ETF flows is building, and there is growing interest from sovereign wealth funds in stacking Bitcoin over-the-counter. Overall, the messages indicate a positive outlook for Bitcoin and the cryptocurrency market as a whole.","data":[2,2,0,2,14,4,6,4,8,0,1,2,7,1,6,1,34,0,3,3,3,0,0,5,6,8,0,6,0,2,3,1,3,5,5,0,0,0,1,8,1,2,8,0,29,5,1,1,4,7,0,5,2,6,4]},{"label":"BlackRock","topics":"blackrock,bought,worth,etf,breaking","description":"The key topic discussed in the messages from Twitter is the significant investment and accumulation of Bitcoin by BlackRock, a major financial institution. BlackRock has made multiple large purchases of Bitcoin, totaling billions of dollars, to support their Bitcoin ETF and crypto holdings. The CEO of BlackRock, Larry Fink, has expressed confidence in the investment prospects of Bitcoin and has stated that institutional investors are currently focused on Bitcoin over other cryptocurrencies. Additionally, there are concerns about the centralization risks posed by institutions like BlackRock and MicroStrategy holding large amounts of Bitcoin. The messages also mention discussions about the correlation of Bitcoin with tech stocks and US equities, as well as insights from industry experts on the current state of alt investing.","data":[3,0,0,3,1,34,41,3,24,1,3,2,0,1,1,1,9,0,1,3,3,0,3,6,7,3,1,2,1,1,6,0,0,6,0,1,1,0,5,3,0,11,4,2,1,2,0,0,1,3,0,1,3,1,1]},{"label":"DOGE","topics":"dogecoin,doge,breakout,momentum,fun","description":"The key topics currently discussed in the crypto community on Twitter include Dogecoin, its price movements, market analysis, potential for growth, and comparisons to Bitcoin. There is excitement and optimism surrounding Dogecoin, with mentions of its potential to go legendary and its bullish structure within an ascending channel. The community is also discussing the impact of macro news on Dogecoin's price, as well as the influence of figures like Elon Musk. Overall, there is a sense of positivity and anticipation for Dogecoin's future.","data":[0,4,1,0,2,0,2,0,2,1,4,4,2,1,89,2,1,3,3,1,4,2,3,4,3,3,6,3,6,1,3,1,3,1,2,0,2,0,2,1,6,3,5,3,0,1,1,4,1,0,2,0,5,1,2]},{"label":"Arizona’s BTC Reserve ","topics":"reserve,state,passed,strategic,north","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n\n1. Arizona passing both Bitcoin Reserve Bills and potentially becoming the first state with a State Bitcoin Reserve.\n2. Ohio proposing to allow residents to pay state services and taxes with Bitcoin.\n3. The US Senate planning to vote on major crypto stablecoin legislation in May.\n4. Arizona's House passing bills to establish a Bitcoin reserve, awaiting Governor Katie Hobbs' signature.\n5. North Carolina joining the race for a Strategic Bitcoin Reserve.\n6. Arkansas city closing planned crypto mining operations due to public protest.\n7. The potential allocation of treasury and pension funds for a Bitcoin reserve in Arizona.\n8. Speculation and opinions on the political stance of Governor Katie Hobbs regarding the Bitcoin reserve bills.","data":[0,2,3,2,5,3,18,14,1,1,4,2,0,0,0,2,0,5,1,2,1,1,1,3,5,1,3,6,10,2,0,0,5,2,2,40,0,2,7,1,4,1,5,1,0,14,1,1,2,1,0,5,5,2,0]},{"label":"DeFi","topics":"defi,lending,yields,tracking,finance","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n- Beam, a blockchain and DeFi ecosystem for the privacy-conscious\n- Chaos Labs Pendle PT Risk Oracle being live and used by the biggest DeFi protocol Aave\n- The potential impact of Layer2 solutions on blockchain scalability and the future of DeFi\n- Community-driven protocols where everyone can contribute\n- Automated vaults optimizing user returns from top DeFi protocols\n- DeFi mindshare being at a high level\n- HumanFi, a smart wallet tracker and token swap aggregator within the World Chain Mini App ecosystem\n- World ID offering incentives only to unique humans to prevent monopolization by hedge funds/whales\n- The complexity of navigating through DeFi and the evolution of the industry\n- The Hack Seasons Conference in Dubai focusing on unlocking next-gen DeFi for the masses\n- Stable yields and smart DeFi strategy with USDD and sTRX\n- The basics of DeFi and its difference from traditional finance\n- The opportunity in blending DeFi and TradFi, with examples like Wormhole\n- The future of SmartDeFi and FEG token with next-gen presales, simplified token creation, and staking rewards.","data":[8,1,0,7,0,1,0,2,0,3,3,1,2,11,0,6,7,3,5,3,4,1,4,4,4,3,3,3,3,6,2,1,3,2,1,5,3,4,3,4,4,2,2,2,2,5,4,0,4,12,3,5,1,2,5]},{"label":"MicroStrategy","topics":"saylor,strategy,microstrategy,michael,billion","description":"Based on the messages from Twitter, it seems that there is a lot of discussion around MicroStrategy's recent acquisition of 15,355 Bitcoins for approximately $1.42 billion. This acquisition brings their total holdings to 553,555 BTC. There is also speculation about GME potentially buying $6.5 billion worth of BTC soon. Michael Saylor, the CEO of MicroStrategy, is being praised for his aggressive Bitcoin strategy, with some calling him a \"GOAT\" (Greatest of All Time) in the industry. However, there are also critics who question Saylor's approach and execution in buying Bitcoin with other people's money. Overall, it appears that there is a mix of excitement and skepticism surrounding MicroStrategy's Bitcoin acquisitions and Saylor's role in the crypto industry.","data":[10,2,0,0,0,1,3,12,6,3,2,3,2,0,2,1,1,0,2,3,1,1,4,4,3,3,1,1,3,3,6,9,1,1,1,0,2,3,2,0,1,17,2,1,2,42,2,0,1,0,0,2,1,1,0]},{"label":"BTC Mining","topics":"mining,miners,energy,sustainable,bitcoin","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. Bitcoin mining sustainability and the use of renewable energy sources.\n2. The shift towards green energy in Bitcoin mining.\n3. The upcoming scarcity of Bitcoin as 95% of all 21,000,000 Bitcoins will have been mined in about 207 days.\n4. The debate on whether miners will run Bitcoin Core or alternative software to maximize their revenues.\n5. Cambridge's report on the electricity consumption and emissions profile of Bitcoin mining, highlighting the increasing use of zero-emission energy sources.\n6. Publicly traded Bitcoin mining companies and their stock performance.\n7. The discussion around maximizing miner revenues through custom software like \"Bitcoin RM\".\n8. The importance of understanding the risks involved in mining cryptocurrencies and the element of luck in hitting blocks.\nOverall, the focus is on sustainability, efficiency, profitability, and innovation in the Bitcoin mining industry.","data":[6,0,2,1,25,7,1,4,5,3,3,4,2,6,1,4,0,2,0,4,1,2,6,6,0,5,0,1,1,5,3,11,3,8,0,1,1,3,3,1,2,3,3,1,0,2,4,1,3,0,2,2,2,3,1]},{"label":"XRP","topics":"xrp,ripple,cme,crash,etf","description":"The key topics currently being discussed on Twitter regarding XRP include:\n- XRP surpassing Ethereum in fully diluted market cap\n- XRP potentially flipping Tether in the crypto market dynamics\n- Ripple's executive chairman meeting with the new SEC chair\n- XRP price prediction with the world's first spot ETF going live\n- XRP futures ETF launch and bullish activity\n- Ripple strengthening custody solutions for global tokenization\n- XRP network activity soaring by 600%\n- Potential price increase for XRP if SWIFT's flow reroutes to RippleNet\n\nOverall, there is a lot of positive sentiment and anticipation surrounding XRP's future growth and potential in the crypto industry.","data":[4,0,1,3,0,2,4,7,3,3,1,4,4,5,0,0,3,3,0,4,4,1,1,5,5,4,2,4,1,0,2,9,3,2,1,2,2,5,4,1,5,1,0,3,7,1,3,0,3,3,2,4,1,1,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-7.json b/priv/repo/major_topics_seed/data-7.json deleted file mode 100644 index 44e0d1cb84..0000000000 --- a/priv/repo/major_topics_seed/data-7.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["15.02.24","16.02.24","16.02.24","16.02.24","16.02.24","16.02.24","16.02.24","16.02.24","17.02.24","17.02.24","17.02.24","17.02.24","17.02.24","17.02.24","17.02.24","17.02.24","18.02.24","18.02.24","18.02.24","18.02.24","18.02.24","18.02.24","18.02.24","18.02.24","19.02.24","19.02.24","19.02.24","19.02.24","19.02.24","19.02.24","19.02.24","19.02.24","20.02.24","20.02.24","20.02.24","20.02.24","20.02.24","20.02.24","20.02.24","20.02.24","21.02.24","21.02.24","21.02.24","21.02.24","21.02.24","21.02.24","21.02.24","21.02.24","22.02.24","22.02.24","22.02.24","22.02.24","22.02.24","22.02.24","22.02.24"],"datasets":[{"label":"Ethereum","topics":"3000,3k,eth,ethereum,ethereums","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum (ETH) breaking $3,000 and reaching new yearly highs\n- Speculation on whether ETH will hit $3,300 in February\n- Positive sentiment towards ETH with users holding onto their positions and not selling\n- The launch of Gearbox for restaking ETH and accessing leverage\n- Anticipation of a spot ETF for Ethereum\n- Historical price signals and the importance of buying low\n- All eyes on Ether as it approaches $3,000 and surpasses $2,900\n- Price analysis and predictions for ETH's future performance\n\nOverall, the sentiment towards Ethereum in the crypto community seems to be bullish, with excitement around its price movements and potential for further growth.","data":[10,4,6,6,5,0,12,12,6,9,5,7,3,10,8,10,166,9,11,4,4,8,6,20,15,6,1,5,10,10,10,4,11,8,6,6,5,12,10,14,10,10,6,15,8,7,5,16,12,11,3,5,8,10,6]},{"label":"AI","topics":"ai,coins,intelligence,openai,narrative","description":"The messages from twitter are discussing various topics related to AI in the crypto industry. Some key points mentioned include the potential for AI interactive shows to be the next big thing, the use of AI in trading and investing, the rise of AI projects in the market, and the impact of AI on various sectors such as finance and entertainment. Additionally, there is a focus on specific AI projects and their performance, as well as discussions about the future of decentralized AI computing. Overall, the messages reflect a growing interest and investment in AI technology within the crypto industry.","data":[8,90,13,7,4,0,4,6,5,1,6,10,7,9,13,7,0,12,10,6,10,6,5,11,10,7,5,7,2,14,10,4,6,14,8,5,11,7,7,8,10,10,10,3,9,4,8,15,7,7,9,5,4,2,9]},{"label":"GameFi","topics":"gaming,games,game,web3,gamefi","description":"The key topics currently being discussed in the crypto industry on social media platforms include:\n1. Web3 gaming platforms and their potential for revolutionizing the gaming market.\n2. The intersection of artificial intelligence and gaming in the crypto industry.\n3. The development of new coins that combine elements of gaming and crypto.\n4. The importance of innovation, collaboration, and education in mainstream adoption of Web3 gaming.\n5. Concerns about the hype surrounding web3 games and the lack of actual gameplay.\n6. The integration of native tokens like $AEG in trading card games.\n7. The future of blockchain gaming and the role of tokens like FUNToken in empowering gamers.\n8. The emergence of new gaming coins and opportunities for early investment in the gaming industry.","data":[10,4,4,6,1,0,2,5,7,8,7,3,3,4,6,8,2,9,8,5,44,6,4,6,4,4,6,7,10,6,3,3,7,5,3,2,15,5,2,7,7,3,2,5,5,7,5,1,8,4,4,2,7,3,4]},{"label":"Bitcoin","topics":"bitcoin,adoption,fixes,standard,anon","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- The soundness of Bitcoin as a form of money\n- Crypto predictions and the future of Bitcoin\n- Managing health insurance as a digital nomad\n- Russell Okung's comments on crypto adoption and the Bitcoin vs. stablecoins debate\n- Bitcoin's characteristics such as being cheap, fast, and convenient\n- Learning about Jevons Paradox and the rebound effect in relation to Bitcoin upgrades\n- The security, privacy, and sovereignty of using Bitcoin\n- The decentralized and immutable nature of Bitcoin compared to other cryptocurrencies like BSV\n- The importance of understanding technological innovations and unintended consequences in the crypto industry\n\nOverall, the sentiment towards Bitcoin appears to be positive, with discussions focusing on its strengths and potential future applications.","data":[7,3,4,9,27,26,14,5,1,3,4,7,4,2,2,8,2,3,5,6,0,8,5,4,6,3,2,7,4,4,4,1,4,3,2,5,4,3,6,12,3,11,1,7,7,5,6,7,5,6,5,2,2,5,5]},{"label":"Art","topics":"art,artist,artists,piece,pieces","description":"The messages from twitter discuss various aspects of art in the crypto industry, including the importance of exploring oneself through art, the time and effort required to create timeless art, the evolving nature of art on the blockchain, and the concept of experimenting with technical rules to create unique images. Additionally, there is mention of specific art pieces being minted and showcased, highlighting the intersection of art and technology in the crypto space.","data":[4,2,38,2,0,0,0,1,9,7,5,5,3,1,4,2,1,3,7,1,5,2,1,6,1,4,4,3,4,3,12,7,1,3,1,5,7,4,5,5,4,3,9,2,1,2,2,2,6,1,5,1,3,4,3]},{"label":"NFT","topics":"nft,nfts,minted,collection,mint","description":"The messages from Twitter suggest that there is a lot of discussion around NFTs (Non-Fungible Tokens) in the crypto industry. Some key topics include the concept of AI NFTs, turning NFTs into profile pictures (PFP), the popularity of certain NFT collections, the challenges of trading NFTs for short-term investments, the importance of meeting the market demand, and the potential for additional revenue streams beyond NFT sales. There is also mention of new projects and collaborations in the NFT space, such as ZooDAO, and discussions on NFT utility and the relationship between NFTs and AI. Overall, the NFT market seems to be dynamic and evolving, with various opportunities and challenges for participants.","data":[3,2,1,1,0,0,1,0,1,4,6,3,0,0,2,2,4,2,4,5,3,1,6,1,3,5,2,5,4,3,2,1,18,1,10,1,3,2,5,3,5,1,7,1,8,4,1,6,4,0,4,4,2,3,0]},{"label":"ETFs","topics":"inflows,net,inflow,etfs,gbtc","description":"The key topics discussed in the messages from twitter regarding the crypto industry are as follows:\n\n1. Record-breaking net inflows to spot Bitcoin ETFs, with significant amounts of money flowing into Bitcoin ETFs.\n2. Michael Saylor mentioning the high demand for spot Bitcoin ETFs compared to new supply being created.\n3. Bitcoin holdings on Coinbase at the lowest level since 2015.\n4. Bitwise Bitcoin ETF being approved as an investment option for a $30 billion advisor network.\n5. Potential shortage of Bitcoin due to ETFs buying large amounts of coins daily.\n6. Predictions of ETFs owning a significant portion of the Bitcoin market if inflows continue at the current rate.\n7. Bitwise's BITB ETF crossing the $1 billion AUM mark.\n8. Significant outflows from Coinbase and Grayscale Bitcoin Trust, but still retaining a high AUM.\n9. Inflows and netflows of Bitcoin ETFs reaching billions of dollars.\n10. Speculation on the impact of halving on Bitcoin supply and demand dynamics.\n11. BlackRock's IBIT assets exceeding $6 billion.\n12. Genesis selling with GBTC affecting Bitcoin net inflows.\n13. Price predictions for Bitcoin and potential impact on altcoins.\n\nOverall, the messages indicate a high level of interest and activity in the Bitcoin ETF market, with significant inflows and outflows, as well as discussions on supply and demand dynamics and price predictions.","data":[12,1,0,1,15,2,8,4,0,0,1,1,3,2,3,1,9,3,1,4,3,0,1,0,4,7,0,2,0,0,1,1,1,7,4,1,1,4,1,5,2,3,6,0,17,0,2,1,0,5,2,3,1,9,4]},{"label":"Government and Regulations","topics":"ecb,central,currency,failed,bank","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. The European Central Bank maintaining that Bitcoin's fair value remains at zero despite ETF approvals in the US.\n2. Discussion on Bitcoin separating money from the state and being a neutral resource for economic activities.\n3. Skepticism from the EU regarding crypto investments despite Bitcoin ETF fever.\n4. The potential for political persecution for individuals contributing to Bitcoin, but also the solution it offers by removing political financing from banks and governments.\n5. The ECB addressing concerns from financial institutions regarding the role of CBDC.\n6. Criticism of fiat money design to erode purchasing power and the call for Bitcoin to fix this issue.\n7. Criticism of the Federal Reserve and taxing agencies, with a call to abolish them and make Bitcoin the reserve currency.\n8. China's potential to print its own dollars and the need to stop taxation at all levels.","data":[3,0,2,7,3,1,5,2,1,7,5,1,2,4,3,19,6,3,12,4,1,0,3,2,1,2,1,2,0,1,3,1,5,3,2,2,0,1,0,2,4,16,2,1,1,2,1,0,0,0,4,1,2,5,1]},{"label":"Airdrops","topics":"airdrop,airdrops,optimism,op,farming","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include airdrops, NFTs, blockchain projects, staking rewards, and upcoming token distributions. Users are excited about various airdrop opportunities such as $DED, $WEAS, $ROAR, and $GRASS, as well as NFT drops like @MagicEden diamonds. Staking on platforms like @Blast_L2 and @DegamexCom is mentioned as a way to qualify for airdrops. Additionally, discussions about new projects like Farcaster, base, and $Dyl are gaining attention, with tools and calculators being released for users. Overall, the community is actively engaging with different projects and opportunities within the crypto space.","data":[0,30,5,1,3,0,2,0,4,0,7,3,0,3,2,1,1,1,5,1,1,1,4,3,1,2,2,3,2,1,5,2,2,3,3,17,0,1,4,5,3,2,2,0,3,7,1,2,2,1,2,1,1,2,2]},{"label":"Blockchain","topics":"blockchain,data,privacy,blockchains,interoperability","description":"The key topics currently discussed in the crypto industry on social media include:\n1. Use cases for blockchain technology, such as asset management and crowdfunding.\n2. The evolution of blockchains and their governance methods.\n3. The importance of privacy and choice in blockchain transactions.\n4. Interoperability between different blockchains to foster innovation and collaboration.\n5. The development of decentralized infrastructure for Web3.\n6. The security and convenience of blockchain technology for finance and commerce products.\n7. Challenges and solutions for cross-chain transactions in Web3.\n8. The public nature of blockchain as a ledger for transparent transactions.\n9. Tutorials and guides for making onchain deposits on blockchain networks.\n10. The readiness of the market for next-generation Bitcoin Layer 2 solutions.","data":[0,1,5,3,0,1,9,2,1,4,3,3,0,8,8,9,1,7,3,5,1,2,1,1,2,4,6,4,4,0,2,1,1,5,1,1,5,1,6,3,1,0,2,5,2,2,2,0,1,2,4,5,3,5,1]},{"label":"BTC price","topics":"52000,52k,resistance,correction,price","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin price movements, with predictions of corrections and potential targets such as $46,000, $52,000, $56,792, and $55,000.\n- Analysis of Bitcoin's support levels and trends, with mentions of SMAs at $33,100 and $31,357.\n- Speculation on Bitcoin's future price action, including a potential plunge and resistance at $52,000.\n- Altcoins gaining attention as traders shift focus from Bitcoin, with mentions of BNB, KAS, VET, and RNDR.\n- Potential scenarios for Bitcoin's price based on historical trends and current market conditions.\n- Mention of a McDonald's pattern suggesting possible price levels for Bitcoin and Ethereum.\n- Reports on Bitcoin's recent performance, including breaking through the $52,000 mark and trading above it for the first time since December 2021.\n- Bitcoin price predictions, including a surge to $52,250 amid Coinbase shift and VC funding boost.\n- Anticipation of a pullback to $45,000 around the April Bitcoin halving, with comparisons to previous bull runs in 2016 and 2020.","data":[3,6,1,2,3,36,0,11,0,0,3,5,2,2,1,1,0,2,3,0,1,1,4,2,6,1,1,2,0,0,2,0,1,1,1,4,1,13,1,3,1,0,1,4,1,3,5,2,2,4,1,4,1,2,1]},{"label":"Shiba Inu","topics":"shiba,shib,burn,erc404,skyrockets","description":"The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Shiba Inu (SHIB) community receiving a crucial warning amid new releases and a surge in price.\n2. Introduction of a new trading feature for Shiba Inu on a leading crypto exchange.\n3. Investors setting their sights on the next crypto gem, Pandoshi (PAMBO).\n4. Machine learning predictions for Shiba Inu price on March 1, 2024.\n5. Shibarium network experiencing increased daily transactions and the potential for a price surge for SHIB.\n6. Big investors accumulating Dogecoin (DOGE) and Shiba Inu (SHIB) in a pre-halving market.\n7. Distribution and decentralization of Bitcoin ownership, with a surge in SHIB adoption and growing popularity.\n8. Debate on whether Shiba Inu will outpace Dogecoin in the crypto hierarchy.\n\nOverall, the discussions revolve around the performance, potential, and future outlook of Shiba Inu, as well as its relationship with other cryptocurrencies in the market.","data":[2,1,0,1,1,1,2,7,3,1,6,0,1,3,5,0,0,5,2,2,0,1,1,2,1,2,32,2,4,0,3,1,0,2,3,0,0,0,0,3,1,0,1,32,1,0,2,1,2,0,5,1,3,3,2]},{"label":"FED and Inflation","topics":"inflation,fed,rates,rate,debt","description":"The key topics currently being discussed on social media in relation to the crypto industry include:\n- Inflation and its impact on wages and prices\n- The Federal Reserve's rate cuts and their effect on Bitcoin and crypto\n- The potential for a new inflation paradigm\n- The implications of structural inflationary forces\n- The impact of government debt on interest rates and money printing\n- The relationship between strong growth, disinflation, and the bull market\n- Concerns about the Fed holding rates higher for longer\n- The reality of wage and price inflation in local budgets\n\nOverall, it seems that there is a lot of discussion and concern about inflation, government policies, and their effects on various aspects of the economy, including the crypto industry.","data":[1,1,3,2,0,0,3,6,2,3,1,3,1,8,4,1,1,2,2,7,1,0,4,2,2,16,4,0,1,1,0,2,4,1,4,3,2,1,1,9,6,5,5,1,2,4,2,2,2,3,2,1,1,2,2]},{"label":"Mining","topics":"mining,difficulty,miners,energy,miner","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. Bitcoin mining difficulty reaching a new record of over 80 trillion.\n2. The importance of Lightning payouts in mining pools.\n3. The impact of low-cost power and fleet efficiency on Bitcoin mining competitiveness.\n4. The extreme situation of daily BTC buying volume compared to BTC being mined.\n5. The upcoming Bitcoin halving and the need for miners to embrace it.\n6. The use of sustainable energy in Bitcoin mining for increased profitability.\n7. Partnerships and investments in methane monitoring and tracking technologies.\n8. Research on public Bitcoin mining companies and the profitability of sustainable energy use.\n9. The potential of mining asteroids for extracting valuable minerals in space.\n10. Blockchain conferences and events related to Bitcoin mining and sustainability initiatives.","data":[3,0,4,3,1,30,2,3,3,3,0,4,3,3,1,3,0,1,0,1,1,0,1,3,2,0,5,2,7,0,1,0,14,4,1,1,0,2,3,1,5,3,2,2,1,4,5,2,0,0,0,1,0,1,1]},{"label":"Memecoins","topics":"meme,memecoin,memes,coin,coins","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the popularity of meme coins, the potential for meme coins to experience significant price increases (\"giga pump\"), and the shift from meme coins to tech coins. Some specific meme coins mentioned in the messages include $WELSH, $OSAK, $PTP, $gme, $TCX, $jacket, $MONG, and DogWifHat. There is also discussion about the profitability of minting memes onchain and receiving royalties for creative work. Overall, the sentiment seems to be focused on identifying potential meme coin investments and discussing the future of meme coins in the crypto market.","data":[3,1,0,0,0,0,1,4,5,1,3,1,4,0,1,4,0,1,6,1,3,1,5,1,1,1,0,3,2,3,1,23,2,2,1,0,1,2,1,4,3,3,1,1,0,1,2,2,5,0,4,0,3,3,5]},{"label":"DeFi","topics":"defi,lending,liquidity,dex,borrowing","description":"The crypto industry is currently buzzing with discussions about decentralized finance (DeFi) and the future of traditional banking systems. There is a lot of excitement around new DeFi options, lending, borrowing, and custom structured products. Traditional finance (tradfi) is also taking notice of the developments in the crypto space.\n\nPartnerships between crypto projects like Volted and SwipeLux, as well as Volted and MemeAllianceFPS, are being announced, allowing for easier access to crypto and new payment options within games.\n\nPodcasts and live events are being held to discuss the future of DeFi, compliance, real-world asset integration, and driving adoption in the space. Projects like Mantle Network and Nolus Protocol are aiming to simplify crypto lending and borrowing processes.\n\nOverall, the crypto community is actively engaged in exploring new opportunities and innovations in the DeFi space, with a focus on making the industry more accessible and user-friendly.","data":[2,0,4,2,0,1,0,1,1,3,0,2,0,4,5,1,0,2,3,6,3,2,3,2,0,1,6,3,7,4,5,1,0,5,1,3,2,4,2,4,1,1,0,1,2,2,1,1,2,1,4,0,5,2,1]},{"label":"StarkNet","topics":"strk,starknet,deposit,airdrop,listing","description":"The key topics currently discussed on Twitter regarding the crypto industry include Starknet ($STRK) activity, the release of the Particle Network token, the listing of $STRK on various exchanges such as Bitfinex, LBank, and OKX, as well as upcoming events and trading opportunities related to $STRK on platforms like CoinW. Additionally, discussions are focused on the technology behind Starknet, its zero-knowledge proof (ZK-proof) technology, and its potential impact on the Ethereum network. Overall, there is a lot of excitement and anticipation surrounding $STRK and its developments within the crypto community.","data":[2,0,2,0,0,0,2,0,0,1,4,1,1,0,5,2,0,0,0,0,0,3,0,4,2,1,1,5,0,5,0,1,2,9,4,3,0,1,0,0,2,1,0,0,0,26,3,1,1,8,2,1,1,0,0]},{"label":"Doge","topics":"dogecoin,doge,prediction,accepting,01","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin's price analysis and potential rally towards $0.1\n- Dogecoin being accepted as payment by Ferrari\n- Dogecoin founder revealing his Bitcoin holdings\n- Dogecoin potentially signaling a bull run\n- Increase in Dogecoin transactions\n- Bitcoin being accepted by Ferrari for U.S. customers\n\nOverall, there is a lot of excitement and speculation surrounding Dogecoin and its potential for growth and adoption in the cryptocurrency market.","data":[6,1,0,3,1,0,1,0,1,0,1,2,1,0,48,2,0,2,0,3,1,1,0,1,1,1,0,1,0,1,1,0,1,3,0,1,0,4,2,0,1,2,0,0,0,2,2,1,1,1,1,1,1,1,0]},{"label":"Coinbase","topics":"coinbase,q4,earnings,2023,revenue","description":"The key topics currently being discussed on Twitter regarding Coinbase include:\n- Coinbase's blowout Q4 earnings report\n- Coinbase surpassing 1 million Bitcoin holdings\n- Coinbase's total revenue for 2023 being $3.1 billion\n- Coinbase's net income for 2023 being $95 million\n- Coinbase's stock being upgraded by KBW\n- Coinbase's stock being stopped out for 36% profits\n- Coinbase's partnership with 8 out of 11 Bitcoin ETFs\n- Coinbase's global crypto owners exceeding 400 million\n- Coinbase's US crypto owners exceeding 52 million\n- Coinbase's assets on the base platform exceeding $600 million\n\nOverall, the discussions on Twitter highlight Coinbase's strong financial performance, significant milestones, and positive outlook in the crypto industry.","data":[1,0,0,5,0,0,1,1,1,0,28,0,2,1,0,2,0,1,0,1,1,0,0,0,2,1,0,1,0,0,1,0,0,1,0,2,1,4,1,2,6,3,4,3,1,3,4,1,2,2,2,2,0,0,0]},{"label":"Satoshi identity trial","topics":"satoshi,trial,court,evidence,nakamoto","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- The ongoing legal battle involving Craig Wright and COPA, with accusations of lies and forgeries.\n- Doubts about Craig Wright's coding abilities and credibility as Satoshi Nakamoto.\n- Speculation about the true identity of Satoshi Nakamoto, with mentions of Hal Finney.\n- The possibility of Craig Wright facing a serious prison sentence.\n- New tools and developments for CosmWasm developers on the Terra testnet and mainnet.\n- Humorous articles and discussions about the identity of Satoshi Nakamoto.\n\nOverall, the messages reflect a mix of legal drama, technical discussions, speculation about the origins of Bitcoin, and updates on developer tools in the crypto industry.","data":[0,0,1,1,0,0,2,2,0,0,1,14,0,4,1,1,0,2,4,2,0,2,1,1,2,2,2,4,4,2,2,0,0,1,1,2,3,2,0,1,1,0,3,1,1,2,0,2,1,2,3,1,0,1,8]},{"label":"Ripple","topics":"xrp,ripple,amidst,whale,stablecoin","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. XRP Whales shifting 203 million tokens amid XRP ETF buzz\n2. Bitcoin, Ethereum, and XRP price boom potentially just getting started\n3. Ripple partnering with US Faster Payments Council for a global survey in 2023\n4. World Bank classifying XRP as a stablecoin for cross-border payments\n5. Technical analysis suggesting a potential 1,350% increase in XRP price\n6. Volatility expected in the crypto market, particularly for XRP\n7. Exciting news for Ripple (XRP) and Binance Coin (BNB) holders regarding a presale opportunity\n8. Comparison of XRP performance to Bitcoin over the past 5 years\n9. Speculation about a potential XRP ETF and Bitcoin reaching $150k\n10. General discussions about altcoins, FOMC, and various other cryptocurrencies.","data":[1,4,0,0,2,0,0,2,1,0,2,2,4,3,0,2,0,4,3,0,1,1,1,1,2,1,1,2,2,1,0,3,1,2,3,0,4,5,0,2,0,4,2,4,2,0,1,2,0,2,4,1,1,3,1]},{"label":"L2","topics":"stacks,l2s,lightning,scaling,l2","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Bitcoin Layer 2 solutions (L2s) and their potential for scaling and mainstream adoption\n- The upcoming Nakamoto Upgrade and its impact on the industry\n- Stacks (STX) cryptocurrency and its significant annual yield increase\n- Pantera Capital's support for Bitcoin L2s and their views on the technology\n- The development of Bitcoin L2s compared to other Layer 1 solutions\n- The importance of decentralized development and community involvement in building the best Bitcoin L2\n- The need for caution and due diligence when investing in L2 tokens\n- The growth of the Bitcoin L2 ecosystem and the potential for new technologies like Rollups\n- The importance of competition and market forces in determining the success of L2 solutions\n- Innovations in non-custodial services and multi-layer swaps for Bitcoin\n- The ongoing evolution of the Bitcoin ecosystem and the focus on expanding its utility and accessibility.","data":[1,0,0,0,1,9,1,2,1,0,4,3,1,3,1,1,0,2,0,0,0,1,2,1,0,2,0,2,6,1,3,1,0,2,1,3,2,0,2,0,0,3,4,0,2,6,2,1,0,1,1,1,1,0,2]},{"label":"JASMY","topics":"jasmy,001,breakout,retweet,jup","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- $JASMY token performance and price analysis\n- Potential for $JASMY to reach top 100 rankings on Coinmarketcap\n- Growth in the number of $JASMY token holders\n- Speculation on $JASMY breaking out of a bull setup and reaching new targets\n- Concerns about lack of volatility in Bitcoin and potential for $JASMY to provide predictable returns\n- Discussion about $JUP and $FET tokens impacting other altcoins like $AERO\n- Analysis and predictions for $JASMY price movements and trends\n\nOverall, the community seems to be actively engaged in analyzing and discussing the performance of various altcoins, with a focus on $JASMY in particular.","data":[0,0,2,0,0,0,1,1,1,0,2,1,1,2,0,0,1,2,1,2,0,2,0,2,3,1,17,3,1,4,1,3,2,0,1,1,1,2,2,3,2,1,0,2,1,0,2,0,0,1,1,1,2,1,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-7.ts b/priv/repo/major_topics_seed/data-7.ts deleted file mode 100644 index 5062f4dbe9..0000000000 --- a/priv/repo/major_topics_seed/data-7.ts +++ /dev/null @@ -1,292 +0,0 @@ -export const NARRATIVES = { - labels: [ - '15.02.24', - '16.02.24', - '16.02.24', - '16.02.24', - '16.02.24', - '16.02.24', - '16.02.24', - '16.02.24', - '17.02.24', - '17.02.24', - '17.02.24', - '17.02.24', - '17.02.24', - '17.02.24', - '17.02.24', - '17.02.24', - '18.02.24', - '18.02.24', - '18.02.24', - '18.02.24', - '18.02.24', - '18.02.24', - '18.02.24', - '18.02.24', - '19.02.24', - '19.02.24', - '19.02.24', - '19.02.24', - '19.02.24', - '19.02.24', - '19.02.24', - '19.02.24', - '20.02.24', - '20.02.24', - '20.02.24', - '20.02.24', - '20.02.24', - '20.02.24', - '20.02.24', - '20.02.24', - '21.02.24', - '21.02.24', - '21.02.24', - '21.02.24', - '21.02.24', - '21.02.24', - '21.02.24', - '21.02.24', - '22.02.24', - '22.02.24', - '22.02.24', - '22.02.24', - '22.02.24', - '22.02.24', - '22.02.24', - ], - datasets: [ - { - label: 'Ethereum', - topics: '3000,3k,eth,ethereum,ethereums', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum (ETH) breaking $3,000 and reaching new yearly highs\n- Speculation on whether ETH will hit $3,300 in February\n- Positive sentiment towards ETH with users holding onto their positions and not selling\n- The launch of Gearbox for restaking ETH and accessing leverage\n- Anticipation of a spot ETF for Ethereum\n- Historical price signals and the importance of buying low\n- All eyes on Ether as it approaches $3,000 and surpasses $2,900\n- Price analysis and predictions for ETH's future performance\n\nOverall, the sentiment towards Ethereum in the crypto community seems to be bullish, with excitement around its price movements and potential for further growth.", - data: [ - 10, 4, 6, 6, 5, 0, 12, 12, 6, 9, 5, 7, 3, 10, 8, 10, 166, 9, 11, 4, 4, 8, 6, 20, 15, 6, 1, - 5, 10, 10, 10, 4, 11, 8, 6, 6, 5, 12, 10, 14, 10, 10, 6, 15, 8, 7, 5, 16, 12, 11, 3, 5, 8, - 10, 6, - ], - }, - { - label: 'AI', - topics: 'ai,coins,intelligence,openai,narrative', - description: - 'The messages from twitter are discussing various topics related to AI in the crypto industry. Some key points mentioned include the potential for AI interactive shows to be the next big thing, the use of AI in trading and investing, the rise of AI projects in the market, and the impact of AI on various sectors such as finance and entertainment. Additionally, there is a focus on specific AI projects and their performance, as well as discussions about the future of decentralized AI computing. Overall, the messages reflect a growing interest and investment in AI technology within the crypto industry.', - data: [ - 8, 90, 13, 7, 4, 0, 4, 6, 5, 1, 6, 10, 7, 9, 13, 7, 0, 12, 10, 6, 10, 6, 5, 11, 10, 7, 5, 7, - 2, 14, 10, 4, 6, 14, 8, 5, 11, 7, 7, 8, 10, 10, 10, 3, 9, 4, 8, 15, 7, 7, 9, 5, 4, 2, 9, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,web3,gamefi', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms include:\n1. Web3 gaming platforms and their potential for revolutionizing the gaming market.\n2. The intersection of artificial intelligence and gaming in the crypto industry.\n3. The development of new coins that combine elements of gaming and crypto.\n4. The importance of innovation, collaboration, and education in mainstream adoption of Web3 gaming.\n5. Concerns about the hype surrounding web3 games and the lack of actual gameplay.\n6. The integration of native tokens like $AEG in trading card games.\n7. The future of blockchain gaming and the role of tokens like FUNToken in empowering gamers.\n8. The emergence of new gaming coins and opportunities for early investment in the gaming industry.', - data: [ - 10, 4, 4, 6, 1, 0, 2, 5, 7, 8, 7, 3, 3, 4, 6, 8, 2, 9, 8, 5, 44, 6, 4, 6, 4, 4, 6, 7, 10, 6, - 3, 3, 7, 5, 3, 2, 15, 5, 2, 7, 7, 3, 2, 5, 5, 7, 5, 1, 8, 4, 4, 2, 7, 3, 4, - ], - }, - { - label: 'Bitcoin', - topics: 'bitcoin,adoption,fixes,standard,anon', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- The soundness of Bitcoin as a form of money\n- Crypto predictions and the future of Bitcoin\n- Managing health insurance as a digital nomad\n- Russell Okung's comments on crypto adoption and the Bitcoin vs. stablecoins debate\n- Bitcoin's characteristics such as being cheap, fast, and convenient\n- Learning about Jevons Paradox and the rebound effect in relation to Bitcoin upgrades\n- The security, privacy, and sovereignty of using Bitcoin\n- The decentralized and immutable nature of Bitcoin compared to other cryptocurrencies like BSV\n- The importance of understanding technological innovations and unintended consequences in the crypto industry\n\nOverall, the sentiment towards Bitcoin appears to be positive, with discussions focusing on its strengths and potential future applications.", - data: [ - 7, 3, 4, 9, 27, 26, 14, 5, 1, 3, 4, 7, 4, 2, 2, 8, 2, 3, 5, 6, 0, 8, 5, 4, 6, 3, 2, 7, 4, 4, - 4, 1, 4, 3, 2, 5, 4, 3, 6, 12, 3, 11, 1, 7, 7, 5, 6, 7, 5, 6, 5, 2, 2, 5, 5, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,pieces', - description: - 'The messages from twitter discuss various aspects of art in the crypto industry, including the importance of exploring oneself through art, the time and effort required to create timeless art, the evolving nature of art on the blockchain, and the concept of experimenting with technical rules to create unique images. Additionally, there is mention of specific art pieces being minted and showcased, highlighting the intersection of art and technology in the crypto space.', - data: [ - 4, 2, 38, 2, 0, 0, 0, 1, 9, 7, 5, 5, 3, 1, 4, 2, 1, 3, 7, 1, 5, 2, 1, 6, 1, 4, 4, 3, 4, 3, - 12, 7, 1, 3, 1, 5, 7, 4, 5, 5, 4, 3, 9, 2, 1, 2, 2, 2, 6, 1, 5, 1, 3, 4, 3, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,minted,collection,mint', - description: - 'The messages from Twitter suggest that there is a lot of discussion around NFTs (Non-Fungible Tokens) in the crypto industry. Some key topics include the concept of AI NFTs, turning NFTs into profile pictures (PFP), the popularity of certain NFT collections, the challenges of trading NFTs for short-term investments, the importance of meeting the market demand, and the potential for additional revenue streams beyond NFT sales. There is also mention of new projects and collaborations in the NFT space, such as ZooDAO, and discussions on NFT utility and the relationship between NFTs and AI. Overall, the NFT market seems to be dynamic and evolving, with various opportunities and challenges for participants.', - data: [ - 3, 2, 1, 1, 0, 0, 1, 0, 1, 4, 6, 3, 0, 0, 2, 2, 4, 2, 4, 5, 3, 1, 6, 1, 3, 5, 2, 5, 4, 3, 2, - 1, 18, 1, 10, 1, 3, 2, 5, 3, 5, 1, 7, 1, 8, 4, 1, 6, 4, 0, 4, 4, 2, 3, 0, - ], - }, - { - label: 'ETFs', - topics: 'inflows,net,inflow,etfs,gbtc', - description: - "The key topics discussed in the messages from twitter regarding the crypto industry are as follows:\n\n1. Record-breaking net inflows to spot Bitcoin ETFs, with significant amounts of money flowing into Bitcoin ETFs.\n2. Michael Saylor mentioning the high demand for spot Bitcoin ETFs compared to new supply being created.\n3. Bitcoin holdings on Coinbase at the lowest level since 2015.\n4. Bitwise Bitcoin ETF being approved as an investment option for a $30 billion advisor network.\n5. Potential shortage of Bitcoin due to ETFs buying large amounts of coins daily.\n6. Predictions of ETFs owning a significant portion of the Bitcoin market if inflows continue at the current rate.\n7. Bitwise's BITB ETF crossing the $1 billion AUM mark.\n8. Significant outflows from Coinbase and Grayscale Bitcoin Trust, but still retaining a high AUM.\n9. Inflows and netflows of Bitcoin ETFs reaching billions of dollars.\n10. Speculation on the impact of halving on Bitcoin supply and demand dynamics.\n11. BlackRock's IBIT assets exceeding $6 billion.\n12. Genesis selling with GBTC affecting Bitcoin net inflows.\n13. Price predictions for Bitcoin and potential impact on altcoins.\n\nOverall, the messages indicate a high level of interest and activity in the Bitcoin ETF market, with significant inflows and outflows, as well as discussions on supply and demand dynamics and price predictions.", - data: [ - 12, 1, 0, 1, 15, 2, 8, 4, 0, 0, 1, 1, 3, 2, 3, 1, 9, 3, 1, 4, 3, 0, 1, 0, 4, 7, 0, 2, 0, 0, - 1, 1, 1, 7, 4, 1, 1, 4, 1, 5, 2, 3, 6, 0, 17, 0, 2, 1, 0, 5, 2, 3, 1, 9, 4, - ], - }, - { - label: 'Government and Regulations', - topics: 'ecb,central,currency,failed,bank', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n1. The European Central Bank maintaining that Bitcoin's fair value remains at zero despite ETF approvals in the US.\n2. Discussion on Bitcoin separating money from the state and being a neutral resource for economic activities.\n3. Skepticism from the EU regarding crypto investments despite Bitcoin ETF fever.\n4. The potential for political persecution for individuals contributing to Bitcoin, but also the solution it offers by removing political financing from banks and governments.\n5. The ECB addressing concerns from financial institutions regarding the role of CBDC.\n6. Criticism of fiat money design to erode purchasing power and the call for Bitcoin to fix this issue.\n7. Criticism of the Federal Reserve and taxing agencies, with a call to abolish them and make Bitcoin the reserve currency.\n8. China's potential to print its own dollars and the need to stop taxation at all levels.", - data: [ - 3, 0, 2, 7, 3, 1, 5, 2, 1, 7, 5, 1, 2, 4, 3, 19, 6, 3, 12, 4, 1, 0, 3, 2, 1, 2, 1, 2, 0, 1, - 3, 1, 5, 3, 2, 2, 0, 1, 0, 2, 4, 16, 2, 1, 1, 2, 1, 0, 0, 0, 4, 1, 2, 5, 1, - ], - }, - { - label: 'Airdrops', - topics: 'airdrop,airdrops,optimism,op,farming', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include airdrops, NFTs, blockchain projects, staking rewards, and upcoming token distributions. Users are excited about various airdrop opportunities such as $DED, $WEAS, $ROAR, and $GRASS, as well as NFT drops like @MagicEden diamonds. Staking on platforms like @Blast_L2 and @DegamexCom is mentioned as a way to qualify for airdrops. Additionally, discussions about new projects like Farcaster, base, and $Dyl are gaining attention, with tools and calculators being released for users. Overall, the community is actively engaging with different projects and opportunities within the crypto space.', - data: [ - 0, 30, 5, 1, 3, 0, 2, 0, 4, 0, 7, 3, 0, 3, 2, 1, 1, 1, 5, 1, 1, 1, 4, 3, 1, 2, 2, 3, 2, 1, - 5, 2, 2, 3, 3, 17, 0, 1, 4, 5, 3, 2, 2, 0, 3, 7, 1, 2, 2, 1, 2, 1, 1, 2, 2, - ], - }, - { - label: 'Blockchain', - topics: 'blockchain,data,privacy,blockchains,interoperability', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n1. Use cases for blockchain technology, such as asset management and crowdfunding.\n2. The evolution of blockchains and their governance methods.\n3. The importance of privacy and choice in blockchain transactions.\n4. Interoperability between different blockchains to foster innovation and collaboration.\n5. The development of decentralized infrastructure for Web3.\n6. The security and convenience of blockchain technology for finance and commerce products.\n7. Challenges and solutions for cross-chain transactions in Web3.\n8. The public nature of blockchain as a ledger for transparent transactions.\n9. Tutorials and guides for making onchain deposits on blockchain networks.\n10. The readiness of the market for next-generation Bitcoin Layer 2 solutions.', - data: [ - 0, 1, 5, 3, 0, 1, 9, 2, 1, 4, 3, 3, 0, 8, 8, 9, 1, 7, 3, 5, 1, 2, 1, 1, 2, 4, 6, 4, 4, 0, 2, - 1, 1, 5, 1, 1, 5, 1, 6, 3, 1, 0, 2, 5, 2, 2, 2, 0, 1, 2, 4, 5, 3, 5, 1, - ], - }, - { - label: 'BTC price', - topics: '52000,52k,resistance,correction,price', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Bitcoin price movements, with predictions of corrections and potential targets such as $46,000, $52,000, $56,792, and $55,000.\n- Analysis of Bitcoin's support levels and trends, with mentions of SMAs at $33,100 and $31,357.\n- Speculation on Bitcoin's future price action, including a potential plunge and resistance at $52,000.\n- Altcoins gaining attention as traders shift focus from Bitcoin, with mentions of BNB, KAS, VET, and RNDR.\n- Potential scenarios for Bitcoin's price based on historical trends and current market conditions.\n- Mention of a McDonald's pattern suggesting possible price levels for Bitcoin and Ethereum.\n- Reports on Bitcoin's recent performance, including breaking through the $52,000 mark and trading above it for the first time since December 2021.\n- Bitcoin price predictions, including a surge to $52,250 amid Coinbase shift and VC funding boost.\n- Anticipation of a pullback to $45,000 around the April Bitcoin halving, with comparisons to previous bull runs in 2016 and 2020.", - data: [ - 3, 6, 1, 2, 3, 36, 0, 11, 0, 0, 3, 5, 2, 2, 1, 1, 0, 2, 3, 0, 1, 1, 4, 2, 6, 1, 1, 2, 0, 0, - 2, 0, 1, 1, 1, 4, 1, 13, 1, 3, 1, 0, 1, 4, 1, 3, 5, 2, 2, 4, 1, 4, 1, 2, 1, - ], - }, - { - label: 'Shiba Inu', - topics: 'shiba,shib,burn,erc404,skyrockets', - description: - 'The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Shiba Inu (SHIB) community receiving a crucial warning amid new releases and a surge in price.\n2. Introduction of a new trading feature for Shiba Inu on a leading crypto exchange.\n3. Investors setting their sights on the next crypto gem, Pandoshi (PAMBO).\n4. Machine learning predictions for Shiba Inu price on March 1, 2024.\n5. Shibarium network experiencing increased daily transactions and the potential for a price surge for SHIB.\n6. Big investors accumulating Dogecoin (DOGE) and Shiba Inu (SHIB) in a pre-halving market.\n7. Distribution and decentralization of Bitcoin ownership, with a surge in SHIB adoption and growing popularity.\n8. Debate on whether Shiba Inu will outpace Dogecoin in the crypto hierarchy.\n\nOverall, the discussions revolve around the performance, potential, and future outlook of Shiba Inu, as well as its relationship with other cryptocurrencies in the market.', - data: [ - 2, 1, 0, 1, 1, 1, 2, 7, 3, 1, 6, 0, 1, 3, 5, 0, 0, 5, 2, 2, 0, 1, 1, 2, 1, 2, 32, 2, 4, 0, - 3, 1, 0, 2, 3, 0, 0, 0, 0, 3, 1, 0, 1, 32, 1, 0, 2, 1, 2, 0, 5, 1, 3, 3, 2, - ], - }, - { - label: 'FED and Inflation', - topics: 'inflation,fed,rates,rate,debt', - description: - "The key topics currently being discussed on social media in relation to the crypto industry include:\n- Inflation and its impact on wages and prices\n- The Federal Reserve's rate cuts and their effect on Bitcoin and crypto\n- The potential for a new inflation paradigm\n- The implications of structural inflationary forces\n- The impact of government debt on interest rates and money printing\n- The relationship between strong growth, disinflation, and the bull market\n- Concerns about the Fed holding rates higher for longer\n- The reality of wage and price inflation in local budgets\n\nOverall, it seems that there is a lot of discussion and concern about inflation, government policies, and their effects on various aspects of the economy, including the crypto industry.", - data: [ - 1, 1, 3, 2, 0, 0, 3, 6, 2, 3, 1, 3, 1, 8, 4, 1, 1, 2, 2, 7, 1, 0, 4, 2, 2, 16, 4, 0, 1, 1, - 0, 2, 4, 1, 4, 3, 2, 1, 1, 9, 6, 5, 5, 1, 2, 4, 2, 2, 2, 3, 2, 1, 1, 2, 2, - ], - }, - { - label: 'Mining', - topics: 'mining,difficulty,miners,energy,miner', - description: - 'The key topics currently being discussed in the crypto industry on social media include:\n1. Bitcoin mining difficulty reaching a new record of over 80 trillion.\n2. The importance of Lightning payouts in mining pools.\n3. The impact of low-cost power and fleet efficiency on Bitcoin mining competitiveness.\n4. The extreme situation of daily BTC buying volume compared to BTC being mined.\n5. The upcoming Bitcoin halving and the need for miners to embrace it.\n6. The use of sustainable energy in Bitcoin mining for increased profitability.\n7. Partnerships and investments in methane monitoring and tracking technologies.\n8. Research on public Bitcoin mining companies and the profitability of sustainable energy use.\n9. The potential of mining asteroids for extracting valuable minerals in space.\n10. Blockchain conferences and events related to Bitcoin mining and sustainability initiatives.', - data: [ - 3, 0, 4, 3, 1, 30, 2, 3, 3, 3, 0, 4, 3, 3, 1, 3, 0, 1, 0, 1, 1, 0, 1, 3, 2, 0, 5, 2, 7, 0, - 1, 0, 14, 4, 1, 1, 0, 2, 3, 1, 5, 3, 2, 2, 1, 4, 5, 2, 0, 0, 0, 1, 0, 1, 1, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coin,coins', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the popularity of meme coins, the potential for meme coins to experience significant price increases ("giga pump"), and the shift from meme coins to tech coins. Some specific meme coins mentioned in the messages include $WELSH, $OSAK, $PTP, $gme, $TCX, $jacket, $MONG, and DogWifHat. There is also discussion about the profitability of minting memes onchain and receiving royalties for creative work. Overall, the sentiment seems to be focused on identifying potential meme coin investments and discussing the future of meme coins in the crypto market.', - data: [ - 3, 1, 0, 0, 0, 0, 1, 4, 5, 1, 3, 1, 4, 0, 1, 4, 0, 1, 6, 1, 3, 1, 5, 1, 1, 1, 0, 3, 2, 3, 1, - 23, 2, 2, 1, 0, 1, 2, 1, 4, 3, 3, 1, 1, 0, 1, 2, 2, 5, 0, 4, 0, 3, 3, 5, - ], - }, - { - label: 'DeFi', - topics: 'defi,lending,liquidity,dex,borrowing', - description: - 'The crypto industry is currently buzzing with discussions about decentralized finance (DeFi) and the future of traditional banking systems. There is a lot of excitement around new DeFi options, lending, borrowing, and custom structured products. Traditional finance (tradfi) is also taking notice of the developments in the crypto space.\n\nPartnerships between crypto projects like Volted and SwipeLux, as well as Volted and MemeAllianceFPS, are being announced, allowing for easier access to crypto and new payment options within games.\n\nPodcasts and live events are being held to discuss the future of DeFi, compliance, real-world asset integration, and driving adoption in the space. Projects like Mantle Network and Nolus Protocol are aiming to simplify crypto lending and borrowing processes.\n\nOverall, the crypto community is actively engaged in exploring new opportunities and innovations in the DeFi space, with a focus on making the industry more accessible and user-friendly.', - data: [ - 2, 0, 4, 2, 0, 1, 0, 1, 1, 3, 0, 2, 0, 4, 5, 1, 0, 2, 3, 6, 3, 2, 3, 2, 0, 1, 6, 3, 7, 4, 5, - 1, 0, 5, 1, 3, 2, 4, 2, 4, 1, 1, 0, 1, 2, 2, 1, 1, 2, 1, 4, 0, 5, 2, 1, - ], - }, - { - label: 'StarkNet', - topics: 'strk,starknet,deposit,airdrop,listing', - description: - 'The key topics currently discussed on Twitter regarding the crypto industry include Starknet ($STRK) activity, the release of the Particle Network token, the listing of $STRK on various exchanges such as Bitfinex, LBank, and OKX, as well as upcoming events and trading opportunities related to $STRK on platforms like CoinW. Additionally, discussions are focused on the technology behind Starknet, its zero-knowledge proof (ZK-proof) technology, and its potential impact on the Ethereum network. Overall, there is a lot of excitement and anticipation surrounding $STRK and its developments within the crypto community.', - data: [ - 2, 0, 2, 0, 0, 0, 2, 0, 0, 1, 4, 1, 1, 0, 5, 2, 0, 0, 0, 0, 0, 3, 0, 4, 2, 1, 1, 5, 0, 5, 0, - 1, 2, 9, 4, 3, 0, 1, 0, 0, 2, 1, 0, 0, 0, 26, 3, 1, 1, 8, 2, 1, 1, 0, 0, - ], - }, - { - label: 'Doge', - topics: 'dogecoin,doge,prediction,accepting,01', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin's price analysis and potential rally towards $0.1\n- Dogecoin being accepted as payment by Ferrari\n- Dogecoin founder revealing his Bitcoin holdings\n- Dogecoin potentially signaling a bull run\n- Increase in Dogecoin transactions\n- Bitcoin being accepted by Ferrari for U.S. customers\n\nOverall, there is a lot of excitement and speculation surrounding Dogecoin and its potential for growth and adoption in the cryptocurrency market.", - data: [ - 6, 1, 0, 3, 1, 0, 1, 0, 1, 0, 1, 2, 1, 0, 48, 2, 0, 2, 0, 3, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, - 1, 0, 1, 3, 0, 1, 0, 4, 2, 0, 1, 2, 0, 0, 0, 2, 2, 1, 1, 1, 1, 1, 1, 1, 0, - ], - }, - { - label: 'Coinbase', - topics: 'coinbase,q4,earnings,2023,revenue', - description: - "The key topics currently being discussed on Twitter regarding Coinbase include:\n- Coinbase's blowout Q4 earnings report\n- Coinbase surpassing 1 million Bitcoin holdings\n- Coinbase's total revenue for 2023 being $3.1 billion\n- Coinbase's net income for 2023 being $95 million\n- Coinbase's stock being upgraded by KBW\n- Coinbase's stock being stopped out for 36% profits\n- Coinbase's partnership with 8 out of 11 Bitcoin ETFs\n- Coinbase's global crypto owners exceeding 400 million\n- Coinbase's US crypto owners exceeding 52 million\n- Coinbase's assets on the base platform exceeding $600 million\n\nOverall, the discussions on Twitter highlight Coinbase's strong financial performance, significant milestones, and positive outlook in the crypto industry.", - data: [ - 1, 0, 0, 5, 0, 0, 1, 1, 1, 0, 28, 0, 2, 1, 0, 2, 0, 1, 0, 1, 1, 0, 0, 0, 2, 1, 0, 1, 0, 0, - 1, 0, 0, 1, 0, 2, 1, 4, 1, 2, 6, 3, 4, 3, 1, 3, 4, 1, 2, 2, 2, 2, 0, 0, 0, - ], - }, - { - label: 'Satoshi identity trial', - topics: 'satoshi,trial,court,evidence,nakamoto', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- The ongoing legal battle involving Craig Wright and COPA, with accusations of lies and forgeries.\n- Doubts about Craig Wright's coding abilities and credibility as Satoshi Nakamoto.\n- Speculation about the true identity of Satoshi Nakamoto, with mentions of Hal Finney.\n- The possibility of Craig Wright facing a serious prison sentence.\n- New tools and developments for CosmWasm developers on the Terra testnet and mainnet.\n- Humorous articles and discussions about the identity of Satoshi Nakamoto.\n\nOverall, the messages reflect a mix of legal drama, technical discussions, speculation about the origins of Bitcoin, and updates on developer tools in the crypto industry.", - data: [ - 0, 0, 1, 1, 0, 0, 2, 2, 0, 0, 1, 14, 0, 4, 1, 1, 0, 2, 4, 2, 0, 2, 1, 1, 2, 2, 2, 4, 4, 2, - 2, 0, 0, 1, 1, 2, 3, 2, 0, 1, 1, 0, 3, 1, 1, 2, 0, 2, 1, 2, 3, 1, 0, 1, 8, - ], - }, - { - label: 'Ripple', - topics: 'xrp,ripple,amidst,whale,stablecoin', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. XRP Whales shifting 203 million tokens amid XRP ETF buzz\n2. Bitcoin, Ethereum, and XRP price boom potentially just getting started\n3. Ripple partnering with US Faster Payments Council for a global survey in 2023\n4. World Bank classifying XRP as a stablecoin for cross-border payments\n5. Technical analysis suggesting a potential 1,350% increase in XRP price\n6. Volatility expected in the crypto market, particularly for XRP\n7. Exciting news for Ripple (XRP) and Binance Coin (BNB) holders regarding a presale opportunity\n8. Comparison of XRP performance to Bitcoin over the past 5 years\n9. Speculation about a potential XRP ETF and Bitcoin reaching $150k\n10. General discussions about altcoins, FOMC, and various other cryptocurrencies.', - data: [ - 1, 4, 0, 0, 2, 0, 0, 2, 1, 0, 2, 2, 4, 3, 0, 2, 0, 4, 3, 0, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 0, - 3, 1, 2, 3, 0, 4, 5, 0, 2, 0, 4, 2, 4, 2, 0, 1, 2, 0, 2, 4, 1, 1, 3, 1, - ], - }, - { - label: 'L2', - topics: 'stacks,l2s,lightning,scaling,l2', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Bitcoin Layer 2 solutions (L2s) and their potential for scaling and mainstream adoption\n- The upcoming Nakamoto Upgrade and its impact on the industry\n- Stacks (STX) cryptocurrency and its significant annual yield increase\n- Pantera Capital's support for Bitcoin L2s and their views on the technology\n- The development of Bitcoin L2s compared to other Layer 1 solutions\n- The importance of decentralized development and community involvement in building the best Bitcoin L2\n- The need for caution and due diligence when investing in L2 tokens\n- The growth of the Bitcoin L2 ecosystem and the potential for new technologies like Rollups\n- The importance of competition and market forces in determining the success of L2 solutions\n- Innovations in non-custodial services and multi-layer swaps for Bitcoin\n- The ongoing evolution of the Bitcoin ecosystem and the focus on expanding its utility and accessibility.", - data: [ - 1, 0, 0, 0, 1, 9, 1, 2, 1, 0, 4, 3, 1, 3, 1, 1, 0, 2, 0, 0, 0, 1, 2, 1, 0, 2, 0, 2, 6, 1, 3, - 1, 0, 2, 1, 3, 2, 0, 2, 0, 0, 3, 4, 0, 2, 6, 2, 1, 0, 1, 1, 1, 1, 0, 2, - ], - }, - { - label: 'JASMY', - topics: 'jasmy,001,breakout,retweet,jup', - description: - 'The key topics currently being discussed in the crypto community on Twitter include:\n- $JASMY token performance and price analysis\n- Potential for $JASMY to reach top 100 rankings on Coinmarketcap\n- Growth in the number of $JASMY token holders\n- Speculation on $JASMY breaking out of a bull setup and reaching new targets\n- Concerns about lack of volatility in Bitcoin and potential for $JASMY to provide predictable returns\n- Discussion about $JUP and $FET tokens impacting other altcoins like $AERO\n- Analysis and predictions for $JASMY price movements and trends\n\nOverall, the community seems to be actively engaged in analyzing and discussing the performance of various altcoins, with a focus on $JASMY in particular.', - data: [ - 0, 0, 2, 0, 0, 0, 1, 1, 1, 0, 2, 1, 1, 2, 0, 0, 1, 2, 1, 2, 0, 2, 0, 2, 3, 1, 17, 3, 1, 4, - 1, 3, 2, 0, 1, 1, 1, 2, 2, 3, 2, 1, 0, 2, 1, 0, 2, 0, 0, 1, 1, 1, 2, 1, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-70.json b/priv/repo/major_topics_seed/data-70.json deleted file mode 100644 index d89561590f..0000000000 --- a/priv/repo/major_topics_seed/data-70.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["01.05.25","02.05.25","02.05.25","02.05.25","02.05.25","02.05.25","02.05.25","02.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","08.05.25","08.05.25","08.05.25","08.05.25","08.05.25","08.05.25","08.05.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,humans","description":"The key topics discussed in the messages from twitter are:\n- Consumer AI pitches\n- Employee adoption of AI\n- AI-Fueled Buggy Whip Executive\n- Bitcoin as the only money that fits for AI\n- Content shifting from expertise to entertainment\n- Ad optimization as a way to play AI at scale\n- Collaboration between GM crypto X and @PhalaNetwork in decentralized AI\n- AI should be private, verifiable, and open\n- Trading smarter with AI-powered crypto sidekick\n- Outsourcing writing to AI\n- Civic Auth integration for AI Agent sprint in @xdc_community\n- Headlines in the AI sector of crypto, including market cap fluctuations and notable movers\n- Monaco's move towards Web3 x AI mode\n- WAIB Summit 2025 in Monte Carlo focusing on crypto + AI event\n- Evolution from Ordinals to NFTs to AI agents\n\nThese topics reflect the current discussions and trends in the crypto industry related to AI and blockchain technology.","data":[30,92,21,18,0,4,7,13,11,19,18,18,15,15,10,21,9,18,11,18,28,13,7,5,17,19,21,14,6,15,15,13,16,17,12,10,18,18,15,17,9,22,16,18,12,18,30,26,7,17,14,15,8,11,11]},{"label":"BTC $100k","topics":"100k,100000,bitcoin,hit,btc","description":"Based on the messages from Twitter, it is evident that the key topic being discussed is the price of Bitcoin (#BTC) reaching $100,000. There is excitement and optimism surrounding this milestone, with some users speculating on the potential for Bitcoin to reach even higher prices in the future, such as $150,000 or even $300,000. Additionally, there are mentions of influential figures like Peter Brandt setting bold price targets for Bitcoin and discussions about corporate Bitcoin treasuries. Overall, the sentiment is positive and bullish towards Bitcoin's price movement.","data":[2,2,2,7,50,33,9,13,3,11,8,8,14,4,1,7,0,6,7,4,4,1,5,31,1,4,7,7,4,8,9,5,9,3,3,5,3,3,7,6,9,7,5,5,3,5,13,7,13,1,0,2,2,7,3]},{"label":"ETH","topics":"eth,2000,ethereum,breakout,2k","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum (ETH) include:\n1. ETH hitting $1900 and potential for further price increases\n2. Speculation on ETH reaching $2,300+\n3. Comparison of ETH's value to BTC and potential for outperformance\n4. Forecasted price targets for ETH in 2025 and beyond\n5. Analysis of ETH's current sentiment and potential for a sharp reversal\n6. Technical analysis indicating a breakout for ETH above $1930\n7. Discussion on ETH's historical demand areas and macro range\n8. Mention of NFT collection related to ETH\n9. Reference to ETH season (szn) and potential for a bullish trend\n10. Mention of ATH for ETH 3 years and 5 months ago and current trading below $1800\n\nOverall, the sentiment surrounding ETH on Twitter appears to be positive with expectations of price increases and potential for a bullish trend in the near future.","data":[4,4,3,11,1,0,13,6,7,6,4,6,8,2,3,7,83,8,10,1,5,7,4,16,6,5,4,4,3,11,6,6,8,4,1,2,4,3,10,9,6,6,7,7,5,2,9,10,10,3,4,3,1,4,6]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics currently discussed in the crypto industry on social media accounts include meme coins, Ethereum, alt coins, mental health in the space, launching memecoin, FOMO hour, collectors shaping culture, stickman thesis, and shilling the best memecoin for 1000x gains. There is also mention of specific meme coins like $RABBIT and Mog, as well as caution about creating meme coins solely based on viral trends. Overall, the discussion revolves around the popularity and potential pitfalls of meme coins in the crypto market.","data":[5,6,3,12,3,1,2,5,7,5,9,3,3,4,10,5,1,2,6,6,6,9,6,3,4,3,9,4,7,16,40,54,6,3,5,8,5,2,5,3,10,3,5,3,2,3,4,12,6,4,2,7,0,5,5]},{"label":"Art","topics":"art,artists,digital,piece,collection","description":"The key topics currently discussed in the crypto industry on social media include:\n- Crypto art and its intersection with traditional art forms\n- The potential for turning physical art pieces into NFTs\n- The impact of reactions and interpretations on the completion of an art piece\n- The sustainability and collaboration within the crypto art world\n- The release of premium artbooks and collector editions in the gaming industry\n- The power of art to connect people and transcend differences\n- The mission of uplifting and amplifying visionary artists\n- The evolution of generative art and the concept of open-form art\n- The potential for certain art pieces to go viral and gain widespread attention\n- The ethical considerations of profiting off controversial or sensitive topics in art.","data":[3,4,49,5,0,2,0,4,6,9,8,8,8,8,7,13,5,3,9,4,4,9,5,7,10,6,6,3,3,11,7,11,7,2,3,13,8,6,3,4,2,3,6,7,3,10,6,6,5,9,5,5,1,5,9]},{"label":"BlackRock ETF Inflows","topics":"etfs,blackrock,inflows,net,etf","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. BlackRock's significant purchases of Bitcoin and Ethereum, with mentions of specific amounts bought and the impact on the market.\n2. The comparison between Spot ETFs and Futures ETFs, highlighting the differences in ownership and fees.\n3. The performance-based reward pool launched by ArcBlock, with details on the scaling rewards for users.\n4. The overall net inflows into BlackRock ETFs in the first quarter of the year, indicating a positive trend for the market.\n5. The analysis of Bitcoin ETF flows for April-May 2025, with specific data on inflows and outflows for BlackRock and Grayscale.\n6. The discussion of BlackRock's influence on the market, with mentions of significant purchases and market impact.\n7. The confirmation of BlackRock's involvement in the Ethereum ecosystem, with details on fund allocations and revenue comparisons with other projects.\n\nOverall, the social media discussions reflect a mix of market analysis, investment trends, and updates on key players in the crypto industry.","data":[5,0,3,3,11,30,36,2,32,1,4,4,6,3,2,0,45,2,0,1,1,4,2,1,8,8,2,5,0,1,1,4,7,5,3,2,2,2,5,2,1,8,4,20,3,2,0,1,4,1,4,0,0,6,4]},{"label":"BTC Price","topics":"support,resistance,btc,range,bullish","description":"The key topics currently discussed on Twitter in the crypto industry include:\n\n1. Bitcoin price analysis and predictions: Discussions about the current price of Bitcoin, potential resistance levels, bullish trends, and possible future targets such as $120,000.\n\n2. Market trends and indicators: Analysis of market dominance for Bitcoin and Ethereum, Altcoin Season Index, Fear and Greed Index, whale activity, and volume trends.\n\n3. Technical analysis: Interpretation of charts, support and resistance levels, potential pullbacks, and buy the dip strategies.\n\n4. Potential scenarios: Speculation on whether Bitcoin will experience a dead cat bounce or an explosive upward breakout, as well as discussions on bullish and bearish sentiments at different price levels.\n\n5. Recent developments: Updates on recent price movements, market updates, and specific events such as Bitcoin and Coffee.\n\nOverall, the sentiment appears to be mostly bullish with discussions on potential price targets and positive market resilience.","data":[3,10,3,3,18,18,8,39,8,4,5,6,11,2,2,2,1,10,6,1,2,0,0,11,3,1,4,3,1,9,6,1,11,1,2,2,4,12,10,5,6,1,3,3,5,3,9,8,4,1,7,4,0,3,1]},{"label":"SOL","topics":"solana,sol,dex,defi,development","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion and excitement surrounding Solana ($SOL) and its potential for growth in the crypto industry. The community is actively engaged in trading, predicting price movements, and participating in events such as hackathons. There is also comparison being made between Solana, Ethereum, and other blockchain platforms like Sui and Avalanche in terms of their suitability for gaming and capital markets. Additionally, there are mentions of significant developments such as the surge in stablecoins issuance on Solana and the growth of the ecosystem with new partnerships and investments. Overall, the sentiment appears to be positive and optimistic about the future of Solana and its potential to reach new highs in the coming years.","data":[3,1,5,6,0,0,2,5,9,5,3,4,6,12,6,6,3,4,5,5,2,4,3,8,3,2,3,8,3,3,5,5,11,12,2,5,2,7,7,6,7,2,7,25,5,7,4,4,11,4,5,4,3,4,6]},{"label":"ETH Pectra Upgrade","topics":"pectra,upgrade,ethereums,ethereum,ux","description":"The key topic discussed in the messages from Twitter is Ethereum's Pectra Upgrade. This upgrade brings major changes to wallet functionality, better scaling for various applications, enhanced staking and scalability, and overall improvements in performance, scalability, and user experience. The upgrade introduces 11 EIPs to the mainnet and is considered the most significant update to Ethereum since The Merge in 2022. It combines two major hard forks: Prague (execution layer) and Electra (consensus layer). The upgrade also includes features such as increased blobspace capacity, cheaper fees, more room for Layer 2 solutions to grow, and a significant increase in validator balance from 32 to 2,048 ETH. Overall, the Pectra Upgrade is expected to have a positive impact on Ethereum's network evolution and could potentially help ETH break out of its losing streak.","data":[2,1,0,6,3,2,3,1,1,3,3,3,4,5,2,4,32,3,5,2,10,0,16,6,5,4,5,8,11,3,1,2,3,6,2,6,2,1,2,3,0,0,2,2,1,6,0,1,5,1,58,4,1,3,4]},{"label":"GameFi","topics":"game,gaming,games,players,play","description":"Based on the messages from Twitter, it is evident that the crypto industry is closely intertwined with the gaming sector. There is a growing interest in on-chain gaming projects, with discussions revolving around the future of gaming being on-chain and the potential for new projects to lead this sector. Indie developers are also preparing to launch games on platforms like the Epic Games Store, taking advantage of revenue-sharing updates.\n\nAdditionally, there is a focus on specific gaming projects such as Voxies Square and Pixer Eternity Game, which offer unique experiences and opportunities for players to earn rewards. The launch of Ronin by Valhalla_Reborn and the involvement of indie teams in building on permissionless platforms like Ronin are also highlighted.\n\nOverall, the messages reflect a vibrant and evolving landscape where gaming and crypto intersect, with a strong emphasis on community engagement, innovation, and the potential for growth in the industry.","data":[4,1,2,1,0,0,3,2,0,4,3,6,2,2,3,4,1,4,5,59,4,5,5,5,4,4,7,5,2,5,2,3,6,5,3,2,15,1,4,1,4,5,5,5,6,4,4,4,2,1,1,6,4,4,5]},{"label":"DeFi","topics":"defi,lending,protocols,crosschain,yield","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. DeFi on BNB Chain: There is excitement around the potential for DeFi to thrive on BNB Chain, with a strategic partnership between Lista DAO and World Liberty Financial making headlines. The article covers how this partnership will expand DeFi opportunities on BNB Chain.\n\n2. Impact of Fed rate cuts on DeFi: The discussion revolves around how high interest rates shape DeFi, affecting borrowing costs, risk premiums, and opportunities for lenders. The importance of user experience in navigating rate cycles with flexible tools is highlighted.\n\n3. Innovation in DeFi: Idle Finance's pioneering team is building a private credit marketplace onchain, showcasing continued innovation in the DeFi space. Additionally, Radixplorer provides insights into transactions, accounts, ecosystem tokens, volume, exchanges flow, staking data, and validators in the DeFi ecosystem.\n\n4. Evolution of DeFi infrastructure: DeFi is seen as providing better infrastructure for financial assets compared to traditional finance. Projects like VOOI, powered by Biconomy's Modular Execution Environment, enable seamless cross-chain operations through account and chain abstraction.\n\n5. Bitcoin DeFi vs. Ethereum DeFi: The discussion explores the growth of Bitcoin DeFi compared to Ethereum DeFi, with projects like Mintlayer simplifying Bitcoin DeFi with L2 and L3 solutions. The potential for Bitcoin DeFi to overtake Ethereum DeFi is considered.\n\n6. Stacks integration on Sui for Bitcoin DeFi: The integration of sBTC into the Sui Network ecosystem by Stacks is seen as a significant development in Bitcoin DeFi. The narrative of \"unlocking billions\" through Bitcoin yield farming, lending, and asset maximization is gaining traction.\n\nOverall, the discussions on Twitter highlight the ongoing evolution and innovation within the DeFi space, with a focus on partnerships, infrastructure improvements, and the potential for Bitcoin DeFi to challenge Ethereum DeFi.","data":[1,0,2,4,1,0,3,3,4,3,5,3,8,16,4,7,7,7,2,7,3,1,5,5,3,7,5,5,2,4,3,2,2,3,5,6,4,8,2,3,10,4,4,5,2,3,2,5,5,3,3,2,2,6,7]},{"label":"DOGE","topics":"dogecoin,doge,holding,elonmusk,government","description":"The key topics discussed in the messages from twitter about the crypto industry are:\n1. Dogecoin ($DOGE) being portrayed as a \"bad boy\" and going \"Kung Fu Fighting\", with mentions of heavy investment in Dogecoin and it being the best type of currency.\n2. Comparison of $BOLT to Dogecoin as the \"Doge of this cycle\", with a video made by the community and an interview involving Jesse Watters, Elon Musk, and Dogecoin team.\n3. Mention of $GINNAN and $Neiro as potential gems in addition to Dogecoin.\n4. Technical analysis of Dogecoin's price movement, with a bearish 4hr structure highlighted.\n5. DogeOS raising $6.9M to expand Dogecoin's utility with AI, DeFi, and gaming apps.\n6. Assertion that the D.O.G.E. Memecoin is the most undervalued asset in all of crypto.\n7. Verification on Stocktwits and engagement with the community.","data":[3,1,4,3,0,1,4,0,1,1,1,0,4,2,86,5,1,5,1,2,6,3,7,8,2,3,4,1,2,1,2,1,1,7,1,2,4,0,4,5,4,0,3,0,1,1,2,1,2,2,2,1,1,9,3]},{"label":"Vitalik Buterin","topics":"vitalik,ethereum,l1,l2s,ethereums","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum's potential as a home for Layer 2 solutions to enhance blockchain scalability\n- Vitalik Buterin's efforts to simplify Ethereum and make it as simple as Bitcoin by 2030\n- The adoption of a protocol model similar to Bitcoin to improve security, scalability, and efficiency on Ethereum\n- The release of the \"Simplifying the L1\" proposal by Vitalik Buterin to streamline Ethereum with a 10× L2 data boost\n- The development of Ethereum-compatible L1 blockchains like Somnium with high transaction capabilities\n- The potential for Ethereum to achieve infinite scalability and the possibilities it opens up for creating innovative decentralized applications\n- The early support for Ethereum Layer 2 solutions and other technologies by various projects and platforms in the crypto industry.","data":[3,1,2,6,0,1,1,4,2,5,3,3,0,1,1,6,40,6,1,7,2,4,1,1,4,3,7,4,2,3,0,1,3,6,3,1,5,8,7,5,6,6,0,4,0,3,1,2,0,1,1,2,7,2,4]},{"label":"Michael Saylor","topics":"saylor,michael,strategy,saylors,microstrategy","description":"It seems that the key topic being discussed on Twitter is Michael Saylor's aggressive buying of Bitcoin through his company Strategy. Saylor has been making large purchases of Bitcoin, with the most recent being 1,895 Bitcoins for $180.3 million. This has led to Strategy holding a significant amount of Bitcoin, with a total balance of 555,450 BTC worth $52.2 billion. Saylor's buying strategy has been seen as bullish for Bitcoin, with some speculating that his purchases could impact the overall supply of Bitcoin. Overall, Saylor's actions and purchases are generating a lot of attention and discussion within the crypto community on Twitter.","data":[2,1,3,0,1,0,2,10,13,4,0,4,2,0,1,1,1,2,1,1,1,1,1,3,0,1,2,3,4,2,1,5,2,3,1,0,4,3,3,2,1,28,1,1,1,30,1,0,2,0,3,0,0,1,1]},{"label":"FED","topics":"fed,rate,inflation,rates,cuts","description":"The key topic being discussed on Twitter is the upcoming Federal Reserve (Fed) meeting and the possibility of a rate cut. There is speculation and debate among users about whether the Fed will cut interest rates on Wednesday or in the near future. Some believe that rate cuts are inevitable due to dropping inflation and economic conditions, while others think the Fed will hold rates steady. The potential impact of a rate cut on the Bitcoin market is also being discussed, with some predicting a positive effect on prices. Overall, there is anticipation and uncertainty surrounding the Fed's decision and its implications for the economy and financial markets.","data":[2,2,2,1,1,0,9,1,1,1,0,0,2,3,2,1,0,10,11,2,1,0,1,7,2,14,7,7,1,3,2,1,0,4,3,3,1,2,21,3,0,1,0,3,0,3,1,1,6,1,3,0,0,2,1]},{"label":"Whales","topics":"whale,whales,moved,opened,position","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin whales accumulating and buying massively, indicating a potential pump in the market.\n2. Large transfers of Bitcoin and Ethereum by whales, signaling potential market shake-ups or smart accumulation strategies.\n3. Movement of significant amounts of Ethereum from exchanges, suggesting a shift in market dynamics.\n4. Whale activity in various cryptocurrencies, including Fartcoin, FET, ADA, NEAR, and BlockDAG.\n5. Quarterly shareholder letter from WBD mentioning high viewership for \"The Pitt\" and plans for new procedural dramas.\n6. Accumulation of Bitcoin by big whales with balances of 10 - 10,000 BTC.\n7. ETF inflows, whale moves, and live alpha tracking in Hotcoin for power traders to make informed decisions.\n\nOverall, the discussions revolve around whale activity, market movements, institutional involvement, and potential price volatility in the crypto industry.","data":[2,1,2,0,1,6,2,17,3,1,3,0,1,2,7,2,9,1,2,0,2,0,2,1,2,0,1,3,3,1,3,3,3,4,12,0,1,1,1,1,1,0,5,1,0,2,0,0,0,1,7,2,1,22,2]},{"label":"Senate votes down stablecoin GENIUS legislation","topics":"senate,genius,act,stablecoin,legislation","description":"The key topics currently being discussed in the crypto industry on social media include the Senate's consideration of the GENIUS Act, which is the first official U.S. stablecoin regulation bill. There is debate among Democrats, with some like Elizabeth Warren and Chuck Schumer opposing the bill, citing potential corruption linked to the Trump family's stablecoin deal with the UAE. On the other hand, Senate Majority Leader Thune is expediting the vote on the GENIUS Act, highlighting the regulatory clarity it provides for institutions. Additionally, the US House Financial Services Committee has dropped a discussion draft on a new crypto market structure bill, signaling a step towards crypto regulation. Some Democrats are being criticized for being anti-Bitcoin, with accusations of abusing the money printer to fund government agencies and radical agendas. Overall, there is a mix of support and opposition within the Democratic party regarding crypto legislation.","data":[2,2,3,2,0,3,5,2,2,2,1,3,4,2,0,2,1,5,2,1,5,2,1,4,0,2,2,6,0,1,2,0,3,3,0,5,2,1,2,5,2,3,6,1,11,0,0,4,4,3,4,10,0,2,3]},{"label":"SUI","topics":"sui,suinetwork,network,shock,expanding","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Excitement over the new collection on Sui by Claynosaurz and the opportunity to stake SUI with Nansen.\n2. Bluefin becoming a strategic stakeholder in AlphaFiSUI's AlphaLend product, enabling new strategies and capital efficiency.\n3. Anticipation for a unique launch on $SUI with the ticker $WaveX on the web3 gaming platform.\n4. Speculation on whether $SUI is the leader in innovation, citing partnerships with Alibaba Cloud, Grayscale Sui Trust, SuiPlay Gaming Console, and more.\n5. Discussion about Bitcoin scaling solutions and the potential impact of Sui's collaboration with ikadotxyz on the BTCFi economy.\n6. Claynosaurz expanding to SuiNetwork with plans for a new collection, mobile game, and achievement rewards system.\n7. Analysis of the breakout pattern for $SUI and potential price movements.\n8. Partnership between Clayno and SUI for a rewards platform, offering incentives for holders and engagement.\n9. Integration of Orbiter Finance into the SuiNetwork ecosystem, providing bridge and swaps on major DEX platforms.\n10. Questions about bridges between different networks like Cosmos and SuiNetwork, and the potential for original projects with $Toilet and $Shock tokens.\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and analysis surrounding various developments and partnerships within the crypto industry, particularly related to the SuiNetwork and its associated projects.","data":[1,2,3,5,0,0,1,2,5,2,7,3,0,3,1,3,1,3,5,5,7,3,2,2,6,0,3,3,2,3,2,2,6,1,1,1,3,3,1,4,1,0,6,1,2,6,3,1,4,2,0,1,2,3,0]},{"label":"MicroStrategy","topics":"mstr,atm,saylor,shares,acquired","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- MicroStrategy's acquisition of 1,895 BTC for $180.3 million, bringing their total Bitcoin holdings to 555,450 BTC valued at over $52 billion\n- Speculation on how high MicroStrategy's stock price will go in 2025 if Bitcoin hits $200k\n- Debate over MicroStrategy's strategy of slowly deploying their $21 billion in BTC planned through the ATM\n- Discussion on the transparency of MicroStrategy's asset allocation and the need for public addresses\n- Analysis of MicroStrategy's fixed income strategy and the pace at which they are deploying their BTC\n- Comparison between MicroStrategy stock (MSTR) and the ETF of MicroStrategy stock (MSTY)\n- Michael Saylor's influence on the market and his strategy of stacking Bitcoin\n- Evaluation of BTC-exposed stocks like MSTR and SMLR using new metrics like Volatility Per BTC Share (VPBS)\n- The narrative of passive income generated by investing in MicroStrategy stock\n- The impact of MicroStrategy's convertible bonds and the potential for new rounds of converts\n- The overall bullish sentiment towards MicroStrategy and Bitcoin, with calls for others to follow Saylor's lead in stacking Bitcoin.","data":[5,2,1,2,1,2,2,0,1,0,1,4,1,1,1,2,1,2,0,0,0,1,2,3,5,3,1,3,1,2,1,6,13,0,1,4,1,2,4,0,0,4,2,3,1,20,2,1,1,0,3,1,0,0,1]},{"label":"BTC Mining","topics":"mining,miners,energy,miner,resources","description":"The messages from twitter discuss various topics related to Bitcoin mining and the crypto industry. Some key topics mentioned include:\n\n1. Mining stocks with big alpha and a strong risk-reward\n2. Setting up nodes for mining\n3. Bitcoin mining reaching every corner of the world\n4. Bitcoin mining powering America's future\n5. Switzerland facing pressure over Bitcoin reserve strategy\n6. Exposure to Bitcoin mining without buying mining stocks\n7. Progress on Casposo Plant refurbishment\n8. Environmental benefits of Bitcoin mining\n9. Global crypto mining news in April\n10. Retirement income strategies with Bitcoin mining\n11. Tokenized crypto miners on PinLink\n12. Argentina hitting the mining jackpot with a $47 billion find\n\nOverall, the messages highlight the growing interest and developments in the Bitcoin mining industry, as well as the potential opportunities and challenges it presents.","data":[1,3,3,3,9,1,0,1,0,1,3,3,2,1,1,1,1,1,1,4,3,3,0,4,2,3,2,2,1,2,0,18,1,5,0,2,1,0,2,2,3,1,1,2,0,4,3,2,2,5,0,2,0,2,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-70.ts b/priv/repo/major_topics_seed/data-70.ts deleted file mode 100644 index 64831111d2..0000000000 --- a/priv/repo/major_topics_seed/data-70.ts +++ /dev/null @@ -1 +0,0 @@ -export const NARRATIVES = {"labels":["01.05.25","02.05.25","02.05.25","02.05.25","02.05.25","02.05.25","02.05.25","02.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","03.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","04.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","05.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","06.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","07.05.25","08.05.25","08.05.25","08.05.25","08.05.25","08.05.25","08.05.25","08.05.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,humans","description":"The key topics discussed in the messages from twitter are:\n- Consumer AI pitches\n- Employee adoption of AI\n- AI-Fueled Buggy Whip Executive\n- Bitcoin as the only money that fits for AI\n- Content shifting from expertise to entertainment\n- Ad optimization as a way to play AI at scale\n- Collaboration between GM crypto X and @PhalaNetwork in decentralized AI\n- AI should be private, verifiable, and open\n- Trading smarter with AI-powered crypto sidekick\n- Outsourcing writing to AI\n- Civic Auth integration for AI Agent sprint in @xdc_community\n- Headlines in the AI sector of crypto, including market cap fluctuations and notable movers\n- Monaco's move towards Web3 x AI mode\n- WAIB Summit 2025 in Monte Carlo focusing on crypto + AI event\n- Evolution from Ordinals to NFTs to AI agents\n\nThese topics reflect the current discussions and trends in the crypto industry related to AI and blockchain technology.","data":[30,92,21,18,0,4,7,13,11,19,18,18,15,15,10,21,9,18,11,18,28,13,7,5,17,19,21,14,6,15,15,13,16,17,12,10,18,18,15,17,9,22,16,18,12,18,30,26,7,17,14,15,8,11,11]},{"label":"BTC $100k","topics":"100k,100000,bitcoin,hit,btc","description":"Based on the messages from Twitter, it is evident that the key topic being discussed is the price of Bitcoin (#BTC) reaching $100,000. There is excitement and optimism surrounding this milestone, with some users speculating on the potential for Bitcoin to reach even higher prices in the future, such as $150,000 or even $300,000. Additionally, there are mentions of influential figures like Peter Brandt setting bold price targets for Bitcoin and discussions about corporate Bitcoin treasuries. Overall, the sentiment is positive and bullish towards Bitcoin's price movement.","data":[2,2,2,7,50,33,9,13,3,11,8,8,14,4,1,7,0,6,7,4,4,1,5,31,1,4,7,7,4,8,9,5,9,3,3,5,3,3,7,6,9,7,5,5,3,5,13,7,13,1,0,2,2,7,3]},{"label":"ETH","topics":"eth,2000,ethereum,breakout,2k","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum (ETH) include:\n1. ETH hitting $1900 and potential for further price increases\n2. Speculation on ETH reaching $2,300+\n3. Comparison of ETH's value to BTC and potential for outperformance\n4. Forecasted price targets for ETH in 2025 and beyond\n5. Analysis of ETH's current sentiment and potential for a sharp reversal\n6. Technical analysis indicating a breakout for ETH above $1930\n7. Discussion on ETH's historical demand areas and macro range\n8. Mention of NFT collection related to ETH\n9. Reference to ETH season (szn) and potential for a bullish trend\n10. Mention of ATH for ETH 3 years and 5 months ago and current trading below $1800\n\nOverall, the sentiment surrounding ETH on Twitter appears to be positive with expectations of price increases and potential for a bullish trend in the near future.","data":[4,4,3,11,1,0,13,6,7,6,4,6,8,2,3,7,83,8,10,1,5,7,4,16,6,5,4,4,3,11,6,6,8,4,1,2,4,3,10,9,6,6,7,7,5,2,9,10,10,3,4,3,1,4,6]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,coins","description":"The key topics currently discussed in the crypto industry on social media accounts include meme coins, Ethereum, alt coins, mental health in the space, launching memecoin, FOMO hour, collectors shaping culture, stickman thesis, and shilling the best memecoin for 1000x gains. There is also mention of specific meme coins like $RABBIT and Mog, as well as caution about creating meme coins solely based on viral trends. Overall, the discussion revolves around the popularity and potential pitfalls of meme coins in the crypto market.","data":[5,6,3,12,3,1,2,5,7,5,9,3,3,4,10,5,1,2,6,6,6,9,6,3,4,3,9,4,7,16,40,54,6,3,5,8,5,2,5,3,10,3,5,3,2,3,4,12,6,4,2,7,0,5,5]},{"label":"Art","topics":"art,artists,digital,piece,collection","description":"The key topics currently discussed in the crypto industry on social media include:\n- Crypto art and its intersection with traditional art forms\n- The potential for turning physical art pieces into NFTs\n- The impact of reactions and interpretations on the completion of an art piece\n- The sustainability and collaboration within the crypto art world\n- The release of premium artbooks and collector editions in the gaming industry\n- The power of art to connect people and transcend differences\n- The mission of uplifting and amplifying visionary artists\n- The evolution of generative art and the concept of open-form art\n- The potential for certain art pieces to go viral and gain widespread attention\n- The ethical considerations of profiting off controversial or sensitive topics in art.","data":[3,4,49,5,0,2,0,4,6,9,8,8,8,8,7,13,5,3,9,4,4,9,5,7,10,6,6,3,3,11,7,11,7,2,3,13,8,6,3,4,2,3,6,7,3,10,6,6,5,9,5,5,1,5,9]},{"label":"BlackRock ETF Inflows","topics":"etfs,blackrock,inflows,net,etf","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. BlackRock's significant purchases of Bitcoin and Ethereum, with mentions of specific amounts bought and the impact on the market.\n2. The comparison between Spot ETFs and Futures ETFs, highlighting the differences in ownership and fees.\n3. The performance-based reward pool launched by ArcBlock, with details on the scaling rewards for users.\n4. The overall net inflows into BlackRock ETFs in the first quarter of the year, indicating a positive trend for the market.\n5. The analysis of Bitcoin ETF flows for April-May 2025, with specific data on inflows and outflows for BlackRock and Grayscale.\n6. The discussion of BlackRock's influence on the market, with mentions of significant purchases and market impact.\n7. The confirmation of BlackRock's involvement in the Ethereum ecosystem, with details on fund allocations and revenue comparisons with other projects.\n\nOverall, the social media discussions reflect a mix of market analysis, investment trends, and updates on key players in the crypto industry.","data":[5,0,3,3,11,30,36,2,32,1,4,4,6,3,2,0,45,2,0,1,1,4,2,1,8,8,2,5,0,1,1,4,7,5,3,2,2,2,5,2,1,8,4,20,3,2,0,1,4,1,4,0,0,6,4]},{"label":"BTC Price","topics":"support,resistance,btc,range,bullish","description":"The key topics currently discussed on Twitter in the crypto industry include:\n\n1. Bitcoin price analysis and predictions: Discussions about the current price of Bitcoin, potential resistance levels, bullish trends, and possible future targets such as $120,000.\n\n2. Market trends and indicators: Analysis of market dominance for Bitcoin and Ethereum, Altcoin Season Index, Fear and Greed Index, whale activity, and volume trends.\n\n3. Technical analysis: Interpretation of charts, support and resistance levels, potential pullbacks, and buy the dip strategies.\n\n4. Potential scenarios: Speculation on whether Bitcoin will experience a dead cat bounce or an explosive upward breakout, as well as discussions on bullish and bearish sentiments at different price levels.\n\n5. Recent developments: Updates on recent price movements, market updates, and specific events such as Bitcoin and Coffee.\n\nOverall, the sentiment appears to be mostly bullish with discussions on potential price targets and positive market resilience.","data":[3,10,3,3,18,18,8,39,8,4,5,6,11,2,2,2,1,10,6,1,2,0,0,11,3,1,4,3,1,9,6,1,11,1,2,2,4,12,10,5,6,1,3,3,5,3,9,8,4,1,7,4,0,3,1]},{"label":"SOL","topics":"solana,sol,dex,defi,development","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion and excitement surrounding Solana ($SOL) and its potential for growth in the crypto industry. The community is actively engaged in trading, predicting price movements, and participating in events such as hackathons. There is also comparison being made between Solana, Ethereum, and other blockchain platforms like Sui and Avalanche in terms of their suitability for gaming and capital markets. Additionally, there are mentions of significant developments such as the surge in stablecoins issuance on Solana and the growth of the ecosystem with new partnerships and investments. Overall, the sentiment appears to be positive and optimistic about the future of Solana and its potential to reach new highs in the coming years.","data":[3,1,5,6,0,0,2,5,9,5,3,4,6,12,6,6,3,4,5,5,2,4,3,8,3,2,3,8,3,3,5,5,11,12,2,5,2,7,7,6,7,2,7,25,5,7,4,4,11,4,5,4,3,4,6]},{"label":"ETH Pectra Upgrade","topics":"pectra,upgrade,ethereums,ethereum,ux","description":"The key topic discussed in the messages from Twitter is Ethereum's Pectra Upgrade. This upgrade brings major changes to wallet functionality, better scaling for various applications, enhanced staking and scalability, and overall improvements in performance, scalability, and user experience. The upgrade introduces 11 EIPs to the mainnet and is considered the most significant update to Ethereum since The Merge in 2022. It combines two major hard forks: Prague (execution layer) and Electra (consensus layer). The upgrade also includes features such as increased blobspace capacity, cheaper fees, more room for Layer 2 solutions to grow, and a significant increase in validator balance from 32 to 2,048 ETH. Overall, the Pectra Upgrade is expected to have a positive impact on Ethereum's network evolution and could potentially help ETH break out of its losing streak.","data":[2,1,0,6,3,2,3,1,1,3,3,3,4,5,2,4,32,3,5,2,10,0,16,6,5,4,5,8,11,3,1,2,3,6,2,6,2,1,2,3,0,0,2,2,1,6,0,1,5,1,58,4,1,3,4]},{"label":"GameFi","topics":"game,gaming,games,players,play","description":"Based on the messages from Twitter, it is evident that the crypto industry is closely intertwined with the gaming sector. There is a growing interest in on-chain gaming projects, with discussions revolving around the future of gaming being on-chain and the potential for new projects to lead this sector. Indie developers are also preparing to launch games on platforms like the Epic Games Store, taking advantage of revenue-sharing updates.\n\nAdditionally, there is a focus on specific gaming projects such as Voxies Square and Pixer Eternity Game, which offer unique experiences and opportunities for players to earn rewards. The launch of Ronin by Valhalla_Reborn and the involvement of indie teams in building on permissionless platforms like Ronin are also highlighted.\n\nOverall, the messages reflect a vibrant and evolving landscape where gaming and crypto intersect, with a strong emphasis on community engagement, innovation, and the potential for growth in the industry.","data":[4,1,2,1,0,0,3,2,0,4,3,6,2,2,3,4,1,4,5,59,4,5,5,5,4,4,7,5,2,5,2,3,6,5,3,2,15,1,4,1,4,5,5,5,6,4,4,4,2,1,1,6,4,4,5]},{"label":"DeFi","topics":"defi,lending,protocols,crosschain,yield","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. DeFi on BNB Chain: There is excitement around the potential for DeFi to thrive on BNB Chain, with a strategic partnership between Lista DAO and World Liberty Financial making headlines. The article covers how this partnership will expand DeFi opportunities on BNB Chain.\n\n2. Impact of Fed rate cuts on DeFi: The discussion revolves around how high interest rates shape DeFi, affecting borrowing costs, risk premiums, and opportunities for lenders. The importance of user experience in navigating rate cycles with flexible tools is highlighted.\n\n3. Innovation in DeFi: Idle Finance's pioneering team is building a private credit marketplace onchain, showcasing continued innovation in the DeFi space. Additionally, Radixplorer provides insights into transactions, accounts, ecosystem tokens, volume, exchanges flow, staking data, and validators in the DeFi ecosystem.\n\n4. Evolution of DeFi infrastructure: DeFi is seen as providing better infrastructure for financial assets compared to traditional finance. Projects like VOOI, powered by Biconomy's Modular Execution Environment, enable seamless cross-chain operations through account and chain abstraction.\n\n5. Bitcoin DeFi vs. Ethereum DeFi: The discussion explores the growth of Bitcoin DeFi compared to Ethereum DeFi, with projects like Mintlayer simplifying Bitcoin DeFi with L2 and L3 solutions. The potential for Bitcoin DeFi to overtake Ethereum DeFi is considered.\n\n6. Stacks integration on Sui for Bitcoin DeFi: The integration of sBTC into the Sui Network ecosystem by Stacks is seen as a significant development in Bitcoin DeFi. The narrative of \"unlocking billions\" through Bitcoin yield farming, lending, and asset maximization is gaining traction.\n\nOverall, the discussions on Twitter highlight the ongoing evolution and innovation within the DeFi space, with a focus on partnerships, infrastructure improvements, and the potential for Bitcoin DeFi to challenge Ethereum DeFi.","data":[1,0,2,4,1,0,3,3,4,3,5,3,8,16,4,7,7,7,2,7,3,1,5,5,3,7,5,5,2,4,3,2,2,3,5,6,4,8,2,3,10,4,4,5,2,3,2,5,5,3,3,2,2,6,7]},{"label":"DOGE","topics":"dogecoin,doge,holding,elonmusk,government","description":"The key topics discussed in the messages from twitter about the crypto industry are:\n1. Dogecoin ($DOGE) being portrayed as a \"bad boy\" and going \"Kung Fu Fighting\", with mentions of heavy investment in Dogecoin and it being the best type of currency.\n2. Comparison of $BOLT to Dogecoin as the \"Doge of this cycle\", with a video made by the community and an interview involving Jesse Watters, Elon Musk, and Dogecoin team.\n3. Mention of $GINNAN and $Neiro as potential gems in addition to Dogecoin.\n4. Technical analysis of Dogecoin's price movement, with a bearish 4hr structure highlighted.\n5. DogeOS raising $6.9M to expand Dogecoin's utility with AI, DeFi, and gaming apps.\n6. Assertion that the D.O.G.E. Memecoin is the most undervalued asset in all of crypto.\n7. Verification on Stocktwits and engagement with the community.","data":[3,1,4,3,0,1,4,0,1,1,1,0,4,2,86,5,1,5,1,2,6,3,7,8,2,3,4,1,2,1,2,1,1,7,1,2,4,0,4,5,4,0,3,0,1,1,2,1,2,2,2,1,1,9,3]},{"label":"Vitalik Buterin","topics":"vitalik,ethereum,l1,l2s,ethereums","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Ethereum's potential as a home for Layer 2 solutions to enhance blockchain scalability\n- Vitalik Buterin's efforts to simplify Ethereum and make it as simple as Bitcoin by 2030\n- The adoption of a protocol model similar to Bitcoin to improve security, scalability, and efficiency on Ethereum\n- The release of the \"Simplifying the L1\" proposal by Vitalik Buterin to streamline Ethereum with a 10× L2 data boost\n- The development of Ethereum-compatible L1 blockchains like Somnium with high transaction capabilities\n- The potential for Ethereum to achieve infinite scalability and the possibilities it opens up for creating innovative decentralized applications\n- The early support for Ethereum Layer 2 solutions and other technologies by various projects and platforms in the crypto industry.","data":[3,1,2,6,0,1,1,4,2,5,3,3,0,1,1,6,40,6,1,7,2,4,1,1,4,3,7,4,2,3,0,1,3,6,3,1,5,8,7,5,6,6,0,4,0,3,1,2,0,1,1,2,7,2,4]},{"label":"Michael Saylor","topics":"saylor,michael,strategy,saylors,microstrategy","description":"It seems that the key topic being discussed on Twitter is Michael Saylor's aggressive buying of Bitcoin through his company Strategy. Saylor has been making large purchases of Bitcoin, with the most recent being 1,895 Bitcoins for $180.3 million. This has led to Strategy holding a significant amount of Bitcoin, with a total balance of 555,450 BTC worth $52.2 billion. Saylor's buying strategy has been seen as bullish for Bitcoin, with some speculating that his purchases could impact the overall supply of Bitcoin. Overall, Saylor's actions and purchases are generating a lot of attention and discussion within the crypto community on Twitter.","data":[2,1,3,0,1,0,2,10,13,4,0,4,2,0,1,1,1,2,1,1,1,1,1,3,0,1,2,3,4,2,1,5,2,3,1,0,4,3,3,2,1,28,1,1,1,30,1,0,2,0,3,0,0,1,1]},{"label":"FED","topics":"fed,rate,inflation,rates,cuts","description":"The key topic being discussed on Twitter is the upcoming Federal Reserve (Fed) meeting and the possibility of a rate cut. There is speculation and debate among users about whether the Fed will cut interest rates on Wednesday or in the near future. Some believe that rate cuts are inevitable due to dropping inflation and economic conditions, while others think the Fed will hold rates steady. The potential impact of a rate cut on the Bitcoin market is also being discussed, with some predicting a positive effect on prices. Overall, there is anticipation and uncertainty surrounding the Fed's decision and its implications for the economy and financial markets.","data":[2,2,2,1,1,0,9,1,1,1,0,0,2,3,2,1,0,10,11,2,1,0,1,7,2,14,7,7,1,3,2,1,0,4,3,3,1,2,21,3,0,1,0,3,0,3,1,1,6,1,3,0,0,2,1]},{"label":"Whales","topics":"whale,whales,moved,opened,position","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin whales accumulating and buying massively, indicating a potential pump in the market.\n2. Large transfers of Bitcoin and Ethereum by whales, signaling potential market shake-ups or smart accumulation strategies.\n3. Movement of significant amounts of Ethereum from exchanges, suggesting a shift in market dynamics.\n4. Whale activity in various cryptocurrencies, including Fartcoin, FET, ADA, NEAR, and BlockDAG.\n5. Quarterly shareholder letter from WBD mentioning high viewership for \"The Pitt\" and plans for new procedural dramas.\n6. Accumulation of Bitcoin by big whales with balances of 10 - 10,000 BTC.\n7. ETF inflows, whale moves, and live alpha tracking in Hotcoin for power traders to make informed decisions.\n\nOverall, the discussions revolve around whale activity, market movements, institutional involvement, and potential price volatility in the crypto industry.","data":[2,1,2,0,1,6,2,17,3,1,3,0,1,2,7,2,9,1,2,0,2,0,2,1,2,0,1,3,3,1,3,3,3,4,12,0,1,1,1,1,1,0,5,1,0,2,0,0,0,1,7,2,1,22,2]},{"label":"Senate votes down stablecoin GENIUS legislation","topics":"senate,genius,act,stablecoin,legislation","description":"The key topics currently being discussed in the crypto industry on social media include the Senate's consideration of the GENIUS Act, which is the first official U.S. stablecoin regulation bill. There is debate among Democrats, with some like Elizabeth Warren and Chuck Schumer opposing the bill, citing potential corruption linked to the Trump family's stablecoin deal with the UAE. On the other hand, Senate Majority Leader Thune is expediting the vote on the GENIUS Act, highlighting the regulatory clarity it provides for institutions. Additionally, the US House Financial Services Committee has dropped a discussion draft on a new crypto market structure bill, signaling a step towards crypto regulation. Some Democrats are being criticized for being anti-Bitcoin, with accusations of abusing the money printer to fund government agencies and radical agendas. Overall, there is a mix of support and opposition within the Democratic party regarding crypto legislation.","data":[2,2,3,2,0,3,5,2,2,2,1,3,4,2,0,2,1,5,2,1,5,2,1,4,0,2,2,6,0,1,2,0,3,3,0,5,2,1,2,5,2,3,6,1,11,0,0,4,4,3,4,10,0,2,3]},{"label":"SUI","topics":"sui,suinetwork,network,shock,expanding","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Excitement over the new collection on Sui by Claynosaurz and the opportunity to stake SUI with Nansen.\n2. Bluefin becoming a strategic stakeholder in AlphaFiSUI's AlphaLend product, enabling new strategies and capital efficiency.\n3. Anticipation for a unique launch on $SUI with the ticker $WaveX on the web3 gaming platform.\n4. Speculation on whether $SUI is the leader in innovation, citing partnerships with Alibaba Cloud, Grayscale Sui Trust, SuiPlay Gaming Console, and more.\n5. Discussion about Bitcoin scaling solutions and the potential impact of Sui's collaboration with ikadotxyz on the BTCFi economy.\n6. Claynosaurz expanding to SuiNetwork with plans for a new collection, mobile game, and achievement rewards system.\n7. Analysis of the breakout pattern for $SUI and potential price movements.\n8. Partnership between Clayno and SUI for a rewards platform, offering incentives for holders and engagement.\n9. Integration of Orbiter Finance into the SuiNetwork ecosystem, providing bridge and swaps on major DEX platforms.\n10. Questions about bridges between different networks like Cosmos and SuiNetwork, and the potential for original projects with $Toilet and $Shock tokens.\n\nOverall, the discussions on Twitter reflect a mix of excitement, speculation, and analysis surrounding various developments and partnerships within the crypto industry, particularly related to the SuiNetwork and its associated projects.","data":[1,2,3,5,0,0,1,2,5,2,7,3,0,3,1,3,1,3,5,5,7,3,2,2,6,0,3,3,2,3,2,2,6,1,1,1,3,3,1,4,1,0,6,1,2,6,3,1,4,2,0,1,2,3,0]},{"label":"MicroStrategy","topics":"mstr,atm,saylor,shares,acquired","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- MicroStrategy's acquisition of 1,895 BTC for $180.3 million, bringing their total Bitcoin holdings to 555,450 BTC valued at over $52 billion\n- Speculation on how high MicroStrategy's stock price will go in 2025 if Bitcoin hits $200k\n- Debate over MicroStrategy's strategy of slowly deploying their $21 billion in BTC planned through the ATM\n- Discussion on the transparency of MicroStrategy's asset allocation and the need for public addresses\n- Analysis of MicroStrategy's fixed income strategy and the pace at which they are deploying their BTC\n- Comparison between MicroStrategy stock (MSTR) and the ETF of MicroStrategy stock (MSTY)\n- Michael Saylor's influence on the market and his strategy of stacking Bitcoin\n- Evaluation of BTC-exposed stocks like MSTR and SMLR using new metrics like Volatility Per BTC Share (VPBS)\n- The narrative of passive income generated by investing in MicroStrategy stock\n- The impact of MicroStrategy's convertible bonds and the potential for new rounds of converts\n- The overall bullish sentiment towards MicroStrategy and Bitcoin, with calls for others to follow Saylor's lead in stacking Bitcoin.","data":[5,2,1,2,1,2,2,0,1,0,1,4,1,1,1,2,1,2,0,0,0,1,2,3,5,3,1,3,1,2,1,6,13,0,1,4,1,2,4,0,0,4,2,3,1,20,2,1,1,0,3,1,0,0,1]},{"label":"BTC Mining","topics":"mining,miners,energy,miner,resources","description":"The messages from twitter discuss various topics related to Bitcoin mining and the crypto industry. Some key topics mentioned include:\n\n1. Mining stocks with big alpha and a strong risk-reward\n2. Setting up nodes for mining\n3. Bitcoin mining reaching every corner of the world\n4. Bitcoin mining powering America's future\n5. Switzerland facing pressure over Bitcoin reserve strategy\n6. Exposure to Bitcoin mining without buying mining stocks\n7. Progress on Casposo Plant refurbishment\n8. Environmental benefits of Bitcoin mining\n9. Global crypto mining news in April\n10. Retirement income strategies with Bitcoin mining\n11. Tokenized crypto miners on PinLink\n12. Argentina hitting the mining jackpot with a $47 billion find\n\nOverall, the messages highlight the growing interest and developments in the Bitcoin mining industry, as well as the potential opportunities and challenges it presents.","data":[1,3,3,3,9,1,0,1,0,1,3,3,2,1,1,1,1,1,1,4,3,3,0,4,2,3,2,2,1,2,0,18,1,5,0,2,1,0,2,2,3,1,1,2,0,4,3,2,2,5,0,2,0,2,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-71.json b/priv/repo/major_topics_seed/data-71.json deleted file mode 100644 index 7ebca5d5ed..0000000000 --- a/priv/repo/major_topics_seed/data-71.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["08.05.25","09.05.25","09.05.25","09.05.25","09.05.25","09.05.25","09.05.25","09.05.25","10.05.25","10.05.25","10.05.25","10.05.25","10.05.25","10.05.25","10.05.25","10.05.25","11.05.25","11.05.25","11.05.25","11.05.25","11.05.25","11.05.25","11.05.25","11.05.25","12.05.25","12.05.25","12.05.25","12.05.25","12.05.25","12.05.25","12.05.25","12.05.25","13.05.25","13.05.25","13.05.25","13.05.25","13.05.25","13.05.25","13.05.25","13.05.25","14.05.25","14.05.25","14.05.25","14.05.25","14.05.25","14.05.25","14.05.25","14.05.25","15.05.25","15.05.25","15.05.25","15.05.25","15.05.25","15.05.25","15.05.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,model","description":"Based on the messages from Twitter, it is evident that the topic of Artificial Intelligence (AI) is widely discussed in the crypto industry community. Some key points mentioned include:\n\n1. The potential impact of AI on job roles, with some jobs being replaced by AI technology.\n2. The development of new AI architectures, such as Continuous Thought Machines, to enhance reasoning capabilities.\n3. The importance of privacy-preserving apps as AI continues to proliferate.\n4. The role of AI in breaking down copyright laws and challenging industrial monopolies.\n5. The use of AI in accelerating American AI technology stack and promoting competition.\n6. The concept of AI burning tokens as part of ecosystem revenue scaling.\n7. The CEO of Fiverr warning about AI potentially taking over jobs, but also highlighting opportunities for career acceleration through AI skills.\n8. The potential for AI to be a developer's superpower or a threat to their work in the future.\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and strategic thinking about the role of AI in the crypto industry and beyond.","data":[32,72,7,12,7,0,3,2,5,7,8,15,10,9,14,5,7,6,12,8,18,14,6,11,6,17,18,8,10,7,5,16,11,12,12,13,11,12,11,10,19,9,5,8,9,13,10,18,16,9,17,9,12,12,17]},{"label":"ETH Price","topics":"eth,ethereum,2500,10000,3000","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- Ethereum's price surge and potential for a price prediction video\n- Speculation on Ethereum reaching $10,000 soon\n- Positive momentum and new highs for Ethereum\n- Market cap growth and quick movements in the crypto market\n- Analysis of Ethereum's performance compared to Bitcoin\n- Discussion of MACD crossovers and their impact on Ethereum's price\n- Encouragement for holding onto Ethereum despite dips and volatility\n- Excitement over Ethereum's recent gains and potential for further growth\n- Comparison of Ethereum's performance to other altcoins\n- Confidence in Ethereum's future success and potential for continued growth.","data":[8,2,5,12,7,0,4,21,4,5,9,8,6,11,10,10,49,115,15,12,13,18,8,13,22,12,5,1,9,3,8,11,3,13,6,9,15,6,11,22,11,11,5,11,9,6,11,8,8,6,8,7,4,9,5]},{"label":"BTC Price","topics":"100k,btc,100000,bitcoin,price","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Price predictions for Bitcoin, with some users speculating it could reach $1,000,000 by the end of the year.\n2. Analysis of Bitcoin's price movements, including resistance levels and potential for new all-time highs.\n3. Institutional demand and macro tailwinds driving bullish momentum for Bitcoin.\n4. Increase in the number of long-term holders adding to their Bitcoin positions.\n5. Market sentiment and positive vibes surrounding Bitcoin and Ethereum.\n6. Concerns about potential price drops and the need for Bitcoin to hold key support levels.\n7. Discussion of whale activity and short trade bias in the market.\n8. Trend of large holders increasing their Bitcoin positions since the beginning of 2022.\n9. Speculation on the impact of CPI data on crypto price action.\n10. Updates on upcoming upgrades and developments in the crypto industry.","data":[5,1,4,6,36,84,8,20,41,7,12,9,13,11,1,4,8,6,8,8,7,14,4,15,18,4,5,4,4,7,10,11,1,11,3,9,5,4,18,16,19,18,11,9,10,11,13,12,19,10,5,10,8,14,4]},{"label":"Memecoins","topics":"meme,memes,memecoin,memecoins,coin","description":"The messages from twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are talking about new meme coins launching, such as $WAYGU and $PONKE, and speculating on their potential value and growth. There is also mention of a meme coin called \"icm\" that is being promoted as a way to disrupt the altcoin market. Additionally, there is talk about the potential for meme coins on the Stellar network to be the best performing asset in the next 15 years. Overall, it seems that meme coins are a hot topic of conversation and investment in the crypto community.","data":[5,2,2,11,12,1,2,1,8,8,5,7,4,4,6,4,3,3,17,4,11,3,14,7,5,5,7,4,4,6,13,7,103,8,5,7,8,10,3,4,7,5,6,8,1,4,6,6,7,6,9,5,12,3,7]},{"label":"GameFi","topics":"gaming,game,games,play,web3","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Collaboration between different crypto projects, such as $ROSE x $PIN, to ensure creators are paid well and early supporters benefit.\n2. The popularity of NFTs in gaming, with mentions of specific games like @RavenQuestGame, @TheTreeverse, and @playrunehero on Immutable.\n3. The success of legendary gaming studio @SquareEnix in the web3 gaming space, with mentions of holding 591 NFTs across their projects.\n4. The upcoming public sale of CROSS token, which aims to decentralize game economies and provide players with ownership of in-game assets.\n5. The use of GamerCoin $GHX as fuel for a gaming GPU compute redistribution network and ecosystem.\n6. Exciting gaming showdowns and events, such as DOOM vs. DORMAMMU.\n7. The potential of casual games as a vehicle for onboarding new users to crypto gaming.\n8. The future of gaming with projects like Sugartown and their Advisory Board of web2 gaming executives and web3 pioneers.\n9. The launch of games like NAKA Runner Xtreme on $NAKA's distribution platform for Mac, signaling the scaling of the future of gaming.","data":[4,0,3,7,7,0,8,3,5,5,6,3,12,1,4,4,6,2,12,15,67,6,1,7,6,8,3,3,7,4,8,6,10,8,11,8,6,31,8,6,10,14,5,3,9,9,4,4,11,3,6,3,5,5,8]},{"label":"Tariffs","topics":"china,tariffs,chinese,tariff,90","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. China lifting its ban on Boeing plane deliveries following a tariff truce with the US\n2. Progress in trade talks between the US and China\n3. Impact of tariffs and trade agreements on the market\n4. Potential implications of a China-Russia alliance\n5. Honda's expansion in Ontario being put on hold due to US tariffs on Canada\n\nOverall, the discussions revolve around the impact of trade agreements, tariffs, and geopolitical alliances on the crypto industry and global economy.","data":[12,9,2,6,7,0,14,29,2,3,10,6,4,12,12,2,2,3,5,3,2,4,6,6,2,3,6,1,9,5,5,28,0,4,8,4,5,2,6,3,10,5,15,8,8,5,10,24,1,14,34,0,1,1,5]},{"label":"SOL","topics":"solana,sol,dex,strategies,defi","description":"The key topics currently discussed in the crypto industry on Twitter include the comparison between $ETH and $SOL, with predictions that $SOL will outperform $ETH again. There is also a focus on Solana's growth trajectory through 2030, with Binance increasing their $SOL holdings significantly. Additionally, there is discussion about institutional Solana staking backed by BitGo's custody, as well as the reshaping of the DeFi landscape by Solana capturing over 50% of total dApp revenue. The recent unstaking of a large amount of $SOL by Alameda is also a topic of interest. Overall, there is optimism about Solana's future potential and its impact on the crypto industry.","data":[8,3,2,5,3,1,5,5,4,8,7,2,2,6,5,7,4,7,2,11,4,8,7,5,10,4,3,7,10,4,4,3,3,9,6,4,2,2,12,9,6,8,2,7,33,6,14,2,3,2,4,4,2,2,2]},{"label":"Coinbase personal data hack","topics":"coinbase,data,kyc,20m,account","description":"The messages from Twitter are discussing a data breach at Coinbase, where personal customer information was leaked to criminals. Users are advised to take their funds off Coinbase immediately to protect themselves from potential identity theft. The breach is described as a terrifying situation, with users regretting being active on the platform. There are concerns about the security of personal data and the handling of sensitive information by Coinbase. Additionally, there is mention of ongoing investigations by U.S. regulatory bodies into activities involving ZKSync. The messages also touch on the importance of security measures to prevent impersonators and phishing attempts targeting Coinbase users. Overall, the topic revolves around data security, privacy concerns, and the implications of the Coinbase breach on users.","data":[2,2,4,12,3,0,10,7,2,7,4,27,4,12,9,0,5,2,7,7,6,7,14,5,2,10,2,3,7,4,5,5,3,2,5,7,3,6,6,5,13,3,17,5,5,2,3,3,3,1,6,3,2,4,2]},{"label":"Art","topics":"art,artist,piece,digital,work","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry community are related to digital art, NFTs (non-fungible tokens), AI in art, and the democratization of the art market. There is a lot of excitement and appreciation for unique and innovative art pieces, as well as discussions about the impact of tokenized digital art on artists and the art market as a whole. Additionally, there is a mention of the importance of sharing and respecting art, regardless of the artist's background or tools used in creating the art. Overall, the community seems to be enthusiastic about the intersection of art and technology in the crypto industry.","data":[4,4,51,5,1,1,0,1,2,2,1,14,7,4,10,2,3,3,4,5,7,3,11,5,8,4,3,2,4,7,13,4,3,7,2,9,11,6,9,3,9,5,2,4,1,3,6,3,10,1,0,1,5,2,7]},{"label":"DOGE","topics":"dogecoin,doge,lol,resistance,support","description":"The key topics discussed in the messages from twitter about the crypto industry include Dogecoin ($DOGE, $Doge), investments in Dogecoin, price movements of Dogecoin, upcoming projects and partnerships related to Dogecoin, cloud mining opportunities for Dogecoin, and upcoming events and collaborations involving Dogecoin and other cryptocurrencies. The overall sentiment seems to be positive and enthusiastic about the potential of Dogecoin as a cryptocurrency and investment opportunity.","data":[5,4,1,2,0,0,2,4,6,3,3,3,2,3,1,129,0,1,2,2,2,2,1,7,5,3,3,1,4,1,4,6,2,1,3,2,1,1,2,5,2,3,3,5,2,4,3,5,7,0,1,4,4,6,0]},{"label":"DeFi","topics":"defi,tvl,protocol,protocols,aave","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n1. DeFi protocols reaching significant Total Value Locked (TVL) milestones, such as Aave hitting 25 billion in TVL.\n2. The evolution and reshaping of traditional finance by DeFi protocols.\n3. The potential of XRPL going live with Axelar on mainnet and gaining access to all chains.\n4. The readiness of DeFi for institutional adoption and the importance of zero-knowledge proofs for user privacy.\n5. Updates on Unit's Hyperliquid platform and its approach to regulatory compliance.\n6. Tax implications of DeFi interactions and the importance of understanding taxable events.\n7. Loopring DeFi's Portal upgrades for trading cross-network tokens with real CEX liquidity.\n8. Barriers to the next wave of DeFi adoption, including policy, education, and real-world use cases.\n9. Financial analysis of DeFi projects like $DEFI and $CBIT, including revenue projections and valuations.","data":[6,0,2,7,3,0,3,3,6,4,3,3,5,2,19,2,3,9,5,2,8,2,8,4,4,5,4,5,7,5,4,6,2,0,8,1,2,1,11,7,2,4,0,0,1,3,4,3,2,4,2,4,4,3,3]},{"label":"SUI","topics":"sui,eu,ecosystem,tvl,defi","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. FTX EU victims being able to withdraw trapped Euros via Backpack, with crypto withdrawals remaining blocked.\n2. The launch of a new Pokemon on $SUI.\n3. Collaboration between a major Solana protocol and the #1 SUI DeFi protocol.\n4. SUI facing $3.70 resistance with potential for a 35% rally.\n5. Updates on Backpack Exchange enabling FTX EU users to claim frozen funds.\n6. Launch of $SUIAGENT with promising utility and potential.\n7. Strategic collaboration between SuiNetwork and 21Shares to expand global access and spark institutional interest.\n8. The activation of a points multiplier on the SUI-USD market for a $2M Surge Season 2 prize pool.\n9. Discussion about $UP being a big player in the SUI ecosystem.\n10. Movement of capital to Sui with campaigns and prizes being offered.","data":[5,6,1,4,7,0,1,2,4,4,3,1,2,2,5,2,2,5,6,4,5,5,4,3,1,0,4,1,3,5,9,1,1,5,5,1,5,2,5,2,3,1,3,6,4,9,10,6,2,3,0,5,3,3,3]},{"label":"PEPE","topics":"pepe,matt,rare,purpe,character","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the following:\n- $PEPE: There is regret for not buying more $PEPE earlier, with discussions about its potential for growth and reaching new all-time highs. There is also mention of a potential market cap of $10-20 billion for $PEPE.\n- $ETH: There are discussions about a fake dump in the price of $ETH and speculation about it reaching $2,800 next.\n- $SAUDI: Mention of a new meme coin called $SAUDI or SaudiPepe with a market cap of around 30K.\n- $GORTH: Discussion about a new character named Gorth being featured in Matt Furie's new book, Cortex Vortex, related to the creator of PEPE.\n- Free money hack involving applying for PayPal Credit and using it to buy $BTC and $ETH on eToro.\n\nOverall, the crypto community on Twitter seems to be actively discussing various altcoins, meme coins, potential price movements, and new developments in the industry.","data":[2,1,1,1,1,0,1,2,2,5,7,0,1,5,1,2,1,1,2,3,3,3,3,9,1,1,1,1,3,6,3,1,6,1,7,5,50,4,1,7,3,3,3,6,1,1,4,2,1,0,3,4,4,1,2]},{"label":"Inflation","topics":"inflation,cpi,23,expected,expectations","description":"Based on the messages from twitter, key topics currently being discussed in the crypto industry include:\n- US inflation dropping to 2.3%, lower than expectations\n- Jerome Powell signaling a potential raise in the Fed's 2% inflation target\n- Euro-area GDP growth meeting estimates but falling short on quarter-on-quarter growth\n- Easing inflation signs with US Core PPI below expectations\n- Fed's Powell cautioning about higher long-term rates and policy challenges\n- Lowest inflation report since one month after Biden took office\n- US CPI coming in at +2.3% YoY, slightly cooler headline inflation fueling risk-on sentiment\n\nOverall, the discussions seem to be focused on inflation trends, central bank policies, and their potential impact on the cryptocurrency market.","data":[3,6,2,0,1,0,12,10,1,0,1,6,6,3,0,2,3,1,2,2,1,1,1,2,2,56,1,1,0,0,3,6,0,1,6,4,4,1,3,2,0,2,1,1,2,2,1,1,2,7,3,1,5,2,0]},{"label":"Whales","topics":"whales,whale,accumulating,buying,bought","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Whales manipulating the market to trap retail investors\n- Coinbase launching 24/7 Bitcoin and Ethereum futures trading\n- Whale activity in buying and selling various cryptocurrencies such as Dogecoin, Ethereum, and Polkadot\n- Institutional investors accumulating Bitcoin, driving up prices\n- HyperLiquid whale making risky moves with leveraged trades\n- Abraxas Capital buying a significant amount of Ethereum\n- Whale transactions and movements in the market, including short positions and deposits\n- Discussion around specific cryptocurrencies like AGiXT and their potential for growth\n- Analysis of whale trading patterns and performance over the past 30 days.","data":[4,1,0,0,6,7,3,14,0,8,0,1,4,2,2,5,0,4,0,0,0,2,1,1,3,1,2,0,3,1,7,2,0,5,2,4,2,0,0,3,0,0,2,2,1,0,2,1,0,2,1,1,2,60,1]},{"label":"Coinbase set to join S&P 500","topics":"sampp,500,coinbase,index,company","description":"The key topic discussed in the messages from Twitter is the inclusion of Coinbase ($COIN) in the S&P 500 index. This development is seen as a significant milestone for the crypto industry, as Coinbase becomes the first-ever crypto company to be added to the prestigious index. The news has generated excitement among investors and crypto enthusiasts, with many highlighting the mainstream acceptance of cryptocurrency and the potential impact on the market. Additionally, there is mention of Coinbase's acquisition of Deribit and its plans for global expansion, as well as the broader implications for the future of crypto in traditional finance. Overall, the sentiment surrounding Coinbase's inclusion in the S&P 500 is positive, signaling a shift towards greater integration of crypto assets in the financial industry.","data":[5,0,0,0,1,0,14,7,3,1,3,34,2,1,1,0,3,0,3,2,2,6,1,6,2,3,18,2,2,2,0,5,0,1,7,2,0,2,1,0,4,0,1,8,4,3,3,1,2,0,0,0,0,2,3]},{"label":"Michael Saylor","topics":"saylor,michael,strategy,saylors,billion","description":"The key topics discussed in the messages from twitter are:\n1. Michael Saylor's strategy of consistently buying large amounts of Bitcoin.\n2. The significant amount of Bitcoin purchased by Saylor's strategy, totaling over $1.34 billion.\n3. The potential future adoption of Bitcoin by banks, the US government, and big tech companies.\n4. The idea that ignoring Bitcoin today could result in significant financial losses in the future.\n5. The game theory behind why nation-states may choose to adopt Bitcoin rather than attack it.\n6. The comparison of Bitcoin adoption to the National park ranger policy.\n7. Speculation about the reasons behind Navy captains being swapped every 36 months.\n8. The belief that Saylor's actions in purchasing Bitcoin are strategic and will lead to significant gains.\n9. The concept of lending against Bitcoin and the possibility of having Bitcoin on mobile devices like iPhones.\n10. The idea that Saylor's actions in purchasing Bitcoin are setting a precedent for future generations.","data":[13,4,0,3,5,2,0,7,8,9,3,1,0,0,0,1,1,0,5,5,1,0,3,1,2,3,1,1,4,2,1,4,2,0,4,0,1,3,3,1,1,3,15,3,1,11,24,0,2,1,2,2,0,1,1]},{"label":"XRP","topics":"xrp,ripple,south,flip,cap","description":"The key topics discussed in the messages from Twitter regarding XRP include:\n1. XRP's potential to flip Ethereum in market cap and real-world utility.\n2. XRP's price rally hopes as it breaks out from a 6-year triangle.\n3. Ripple highlighting ways financial institutions can unlock the power of stablecoins, including use cases for RLUSD.\n4. XRP's open interest surging as speculation grows.\n5. XRP being used as collateral and integrated into global payments.\n6. XRP surging again, up 15% in a week and eyeing $3.15 resistance.\n7. Reasons to load up on XRP before June 2025, with potential catalysts for that time.\n8. XRP leading retail volume in South Korea.\n9. Bitrue hosting an AMA with a share of 100,000 AIXRP prize pool.\n10. AIXRP pioneering AI agent platforms on the XRP Ledger.","data":[2,1,0,0,0,1,4,11,1,2,2,0,1,0,1,2,1,1,3,3,4,3,1,3,3,2,3,0,8,1,5,4,3,0,3,1,3,2,9,2,3,5,1,5,6,1,5,2,4,3,0,6,3,1,2]},{"label":"APE","topics":"ape,apechain,nfa,believe,strong","description":"The key topics currently being discussed on Twitter in relation to the crypto industry and ApeChain NFTs include:\n- ApeChainHUB and ApeCoin being mentioned and discussed\n- Minting FoxyFam presale NFTs on ApeChain\n- Apes on Ape Radio being the soundtrack of the summer\n- StickerX creating a stickerpack of bored ape NFTs\n- GEEZ merch being popular and shipping out\n- Special Council elections for ApeCoin and ApeChainHUB\n- Apes on Ape EP turning into an album\n- ApeScreener launching X ads to boost visibility\n- $APES holding an uptrend on Uniswap\n- Prophecies about Apes together strong and higher beliefs\n\nOverall, the community seems to be actively engaged in discussing various projects, NFTs, music releases, and upcoming events related to ApeChain and the crypto industry.","data":[1,9,13,2,0,0,2,0,1,0,5,4,1,4,5,3,1,1,4,4,3,3,1,0,2,2,4,3,2,2,1,1,2,2,0,3,3,4,6,1,1,3,4,1,1,0,3,5,2,4,1,3,2,2,1]},{"label":"RWA","topics":"rwa,rwas,tokenization,tokenized,realworld","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the arrival of new RWAs on Avalanche by Aave Labs, collaborations with AntChain to build a custom RWA market on Ethereum, the success of R2's testnet attracting over 200,000 participants, the announcement of RWA Cannes event for tokenization, partnerships with projects like $SYRUP and $ROSE, the popularity of RWAs and their long-term investment value, the listing of RWA DePin Protocol on KuCoin, the potential of RWA as the backbone of Bitcoin-native yield, and the listing and claiming update for SUIRWAPIN. Additionally, discussions are also focused on the role of TanssiNetwork in expanding the reach of Ethereum, the convergence of TradFi and DeFi, the backing of tokenized treasuries by BlackRock, and the introduction of top-tier microcaps like $PROPC and $LAND bringing real estate on-chain. Overall, the sentiment is bullish on RWAs and their potential in the crypto market.","data":[0,1,0,0,2,0,0,0,2,0,1,0,4,1,4,2,0,2,2,1,2,2,0,2,1,1,4,0,2,2,4,2,0,4,1,1,0,8,1,2,2,23,2,0,1,2,5,1,2,10,0,2,1,1,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-71.ts b/priv/repo/major_topics_seed/data-71.ts deleted file mode 100644 index 433c2aa4b9..0000000000 --- a/priv/repo/major_topics_seed/data-71.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '08.05.25', - '09.05.25', - '09.05.25', - '09.05.25', - '09.05.25', - '09.05.25', - '09.05.25', - '09.05.25', - '10.05.25', - '10.05.25', - '10.05.25', - '10.05.25', - '10.05.25', - '10.05.25', - '10.05.25', - '10.05.25', - '11.05.25', - '11.05.25', - '11.05.25', - '11.05.25', - '11.05.25', - '11.05.25', - '11.05.25', - '11.05.25', - '12.05.25', - '12.05.25', - '12.05.25', - '12.05.25', - '12.05.25', - '12.05.25', - '12.05.25', - '12.05.25', - '13.05.25', - '13.05.25', - '13.05.25', - '13.05.25', - '13.05.25', - '13.05.25', - '13.05.25', - '13.05.25', - '14.05.25', - '14.05.25', - '14.05.25', - '14.05.25', - '14.05.25', - '14.05.25', - '14.05.25', - '14.05.25', - '15.05.25', - '15.05.25', - '15.05.25', - '15.05.25', - '15.05.25', - '15.05.25', - '15.05.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,models,model', - description: - "Based on the messages from Twitter, it is evident that the topic of Artificial Intelligence (AI) is widely discussed in the crypto industry community. Some key points mentioned include:\n\n1. The potential impact of AI on job roles, with some jobs being replaced by AI technology.\n2. The development of new AI architectures, such as Continuous Thought Machines, to enhance reasoning capabilities.\n3. The importance of privacy-preserving apps as AI continues to proliferate.\n4. The role of AI in breaking down copyright laws and challenging industrial monopolies.\n5. The use of AI in accelerating American AI technology stack and promoting competition.\n6. The concept of AI burning tokens as part of ecosystem revenue scaling.\n7. The CEO of Fiverr warning about AI potentially taking over jobs, but also highlighting opportunities for career acceleration through AI skills.\n8. The potential for AI to be a developer's superpower or a threat to their work in the future.\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and strategic thinking about the role of AI in the crypto industry and beyond.", - data: [ - 32, 72, 7, 12, 7, 0, 3, 2, 5, 7, 8, 15, 10, 9, 14, 5, 7, 6, 12, 8, 18, 14, 6, 11, 6, 17, 18, - 8, 10, 7, 5, 16, 11, 12, 12, 13, 11, 12, 11, 10, 19, 9, 5, 8, 9, 13, 10, 18, 16, 9, 17, 9, - 12, 12, 17, - ], - }, - { - label: 'ETH Price', - topics: 'eth,ethereum,2500,10000,3000', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n- Ethereum's price surge and potential for a price prediction video\n- Speculation on Ethereum reaching $10,000 soon\n- Positive momentum and new highs for Ethereum\n- Market cap growth and quick movements in the crypto market\n- Analysis of Ethereum's performance compared to Bitcoin\n- Discussion of MACD crossovers and their impact on Ethereum's price\n- Encouragement for holding onto Ethereum despite dips and volatility\n- Excitement over Ethereum's recent gains and potential for further growth\n- Comparison of Ethereum's performance to other altcoins\n- Confidence in Ethereum's future success and potential for continued growth.", - data: [ - 8, 2, 5, 12, 7, 0, 4, 21, 4, 5, 9, 8, 6, 11, 10, 10, 49, 115, 15, 12, 13, 18, 8, 13, 22, 12, - 5, 1, 9, 3, 8, 11, 3, 13, 6, 9, 15, 6, 11, 22, 11, 11, 5, 11, 9, 6, 11, 8, 8, 6, 8, 7, 4, 9, - 5, - ], - }, - { - label: 'BTC Price', - topics: '100k,btc,100000,bitcoin,price', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Price predictions for Bitcoin, with some users speculating it could reach $1,000,000 by the end of the year.\n2. Analysis of Bitcoin's price movements, including resistance levels and potential for new all-time highs.\n3. Institutional demand and macro tailwinds driving bullish momentum for Bitcoin.\n4. Increase in the number of long-term holders adding to their Bitcoin positions.\n5. Market sentiment and positive vibes surrounding Bitcoin and Ethereum.\n6. Concerns about potential price drops and the need for Bitcoin to hold key support levels.\n7. Discussion of whale activity and short trade bias in the market.\n8. Trend of large holders increasing their Bitcoin positions since the beginning of 2022.\n9. Speculation on the impact of CPI data on crypto price action.\n10. Updates on upcoming upgrades and developments in the crypto industry.", - data: [ - 5, 1, 4, 6, 36, 84, 8, 20, 41, 7, 12, 9, 13, 11, 1, 4, 8, 6, 8, 8, 7, 14, 4, 15, 18, 4, 5, - 4, 4, 7, 10, 11, 1, 11, 3, 9, 5, 4, 18, 16, 19, 18, 11, 9, 10, 11, 13, 12, 19, 10, 5, 10, 8, - 14, 4, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memes,memecoin,memecoins,coin', - description: - 'The messages from twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are talking about new meme coins launching, such as $WAYGU and $PONKE, and speculating on their potential value and growth. There is also mention of a meme coin called "icm" that is being promoted as a way to disrupt the altcoin market. Additionally, there is talk about the potential for meme coins on the Stellar network to be the best performing asset in the next 15 years. Overall, it seems that meme coins are a hot topic of conversation and investment in the crypto community.', - data: [ - 5, 2, 2, 11, 12, 1, 2, 1, 8, 8, 5, 7, 4, 4, 6, 4, 3, 3, 17, 4, 11, 3, 14, 7, 5, 5, 7, 4, 4, - 6, 13, 7, 103, 8, 5, 7, 8, 10, 3, 4, 7, 5, 6, 8, 1, 4, 6, 6, 7, 6, 9, 5, 12, 3, 7, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,play,web3', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n1. Collaboration between different crypto projects, such as $ROSE x $PIN, to ensure creators are paid well and early supporters benefit.\n2. The popularity of NFTs in gaming, with mentions of specific games like @RavenQuestGame, @TheTreeverse, and @playrunehero on Immutable.\n3. The success of legendary gaming studio @SquareEnix in the web3 gaming space, with mentions of holding 591 NFTs across their projects.\n4. The upcoming public sale of CROSS token, which aims to decentralize game economies and provide players with ownership of in-game assets.\n5. The use of GamerCoin $GHX as fuel for a gaming GPU compute redistribution network and ecosystem.\n6. Exciting gaming showdowns and events, such as DOOM vs. DORMAMMU.\n7. The potential of casual games as a vehicle for onboarding new users to crypto gaming.\n8. The future of gaming with projects like Sugartown and their Advisory Board of web2 gaming executives and web3 pioneers.\n9. The launch of games like NAKA Runner Xtreme on $NAKA's distribution platform for Mac, signaling the scaling of the future of gaming.", - data: [ - 4, 0, 3, 7, 7, 0, 8, 3, 5, 5, 6, 3, 12, 1, 4, 4, 6, 2, 12, 15, 67, 6, 1, 7, 6, 8, 3, 3, 7, - 4, 8, 6, 10, 8, 11, 8, 6, 31, 8, 6, 10, 14, 5, 3, 9, 9, 4, 4, 11, 3, 6, 3, 5, 5, 8, - ], - }, - { - label: 'Tariffs', - topics: 'china,tariffs,chinese,tariff,90', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. China lifting its ban on Boeing plane deliveries following a tariff truce with the US\n2. Progress in trade talks between the US and China\n3. Impact of tariffs and trade agreements on the market\n4. Potential implications of a China-Russia alliance\n5. Honda's expansion in Ontario being put on hold due to US tariffs on Canada\n\nOverall, the discussions revolve around the impact of trade agreements, tariffs, and geopolitical alliances on the crypto industry and global economy.", - data: [ - 12, 9, 2, 6, 7, 0, 14, 29, 2, 3, 10, 6, 4, 12, 12, 2, 2, 3, 5, 3, 2, 4, 6, 6, 2, 3, 6, 1, 9, - 5, 5, 28, 0, 4, 8, 4, 5, 2, 6, 3, 10, 5, 15, 8, 8, 5, 10, 24, 1, 14, 34, 0, 1, 1, 5, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,dex,strategies,defi', - description: - "The key topics currently discussed in the crypto industry on Twitter include the comparison between $ETH and $SOL, with predictions that $SOL will outperform $ETH again. There is also a focus on Solana's growth trajectory through 2030, with Binance increasing their $SOL holdings significantly. Additionally, there is discussion about institutional Solana staking backed by BitGo's custody, as well as the reshaping of the DeFi landscape by Solana capturing over 50% of total dApp revenue. The recent unstaking of a large amount of $SOL by Alameda is also a topic of interest. Overall, there is optimism about Solana's future potential and its impact on the crypto industry.", - data: [ - 8, 3, 2, 5, 3, 1, 5, 5, 4, 8, 7, 2, 2, 6, 5, 7, 4, 7, 2, 11, 4, 8, 7, 5, 10, 4, 3, 7, 10, 4, - 4, 3, 3, 9, 6, 4, 2, 2, 12, 9, 6, 8, 2, 7, 33, 6, 14, 2, 3, 2, 4, 4, 2, 2, 2, - ], - }, - { - label: 'Coinbase personal data hack', - topics: 'coinbase,data,kyc,20m,account', - description: - 'The messages from Twitter are discussing a data breach at Coinbase, where personal customer information was leaked to criminals. Users are advised to take their funds off Coinbase immediately to protect themselves from potential identity theft. The breach is described as a terrifying situation, with users regretting being active on the platform. There are concerns about the security of personal data and the handling of sensitive information by Coinbase. Additionally, there is mention of ongoing investigations by U.S. regulatory bodies into activities involving ZKSync. The messages also touch on the importance of security measures to prevent impersonators and phishing attempts targeting Coinbase users. Overall, the topic revolves around data security, privacy concerns, and the implications of the Coinbase breach on users.', - data: [ - 2, 2, 4, 12, 3, 0, 10, 7, 2, 7, 4, 27, 4, 12, 9, 0, 5, 2, 7, 7, 6, 7, 14, 5, 2, 10, 2, 3, 7, - 4, 5, 5, 3, 2, 5, 7, 3, 6, 6, 5, 13, 3, 17, 5, 5, 2, 3, 3, 3, 1, 6, 3, 2, 4, 2, - ], - }, - { - label: 'Art', - topics: 'art,artist,piece,digital,work', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry community are related to digital art, NFTs (non-fungible tokens), AI in art, and the democratization of the art market. There is a lot of excitement and appreciation for unique and innovative art pieces, as well as discussions about the impact of tokenized digital art on artists and the art market as a whole. Additionally, there is a mention of the importance of sharing and respecting art, regardless of the artist's background or tools used in creating the art. Overall, the community seems to be enthusiastic about the intersection of art and technology in the crypto industry.", - data: [ - 4, 4, 51, 5, 1, 1, 0, 1, 2, 2, 1, 14, 7, 4, 10, 2, 3, 3, 4, 5, 7, 3, 11, 5, 8, 4, 3, 2, 4, - 7, 13, 4, 3, 7, 2, 9, 11, 6, 9, 3, 9, 5, 2, 4, 1, 3, 6, 3, 10, 1, 0, 1, 5, 2, 7, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,lol,resistance,support', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include Dogecoin ($DOGE, $Doge), investments in Dogecoin, price movements of Dogecoin, upcoming projects and partnerships related to Dogecoin, cloud mining opportunities for Dogecoin, and upcoming events and collaborations involving Dogecoin and other cryptocurrencies. The overall sentiment seems to be positive and enthusiastic about the potential of Dogecoin as a cryptocurrency and investment opportunity.', - data: [ - 5, 4, 1, 2, 0, 0, 2, 4, 6, 3, 3, 3, 2, 3, 1, 129, 0, 1, 2, 2, 2, 2, 1, 7, 5, 3, 3, 1, 4, 1, - 4, 6, 2, 1, 3, 2, 1, 1, 2, 5, 2, 3, 3, 5, 2, 4, 3, 5, 7, 0, 1, 4, 4, 6, 0, - ], - }, - { - label: 'DeFi', - topics: 'defi,tvl,protocol,protocols,aave', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n1. DeFi protocols reaching significant Total Value Locked (TVL) milestones, such as Aave hitting 25 billion in TVL.\n2. The evolution and reshaping of traditional finance by DeFi protocols.\n3. The potential of XRPL going live with Axelar on mainnet and gaining access to all chains.\n4. The readiness of DeFi for institutional adoption and the importance of zero-knowledge proofs for user privacy.\n5. Updates on Unit's Hyperliquid platform and its approach to regulatory compliance.\n6. Tax implications of DeFi interactions and the importance of understanding taxable events.\n7. Loopring DeFi's Portal upgrades for trading cross-network tokens with real CEX liquidity.\n8. Barriers to the next wave of DeFi adoption, including policy, education, and real-world use cases.\n9. Financial analysis of DeFi projects like $DEFI and $CBIT, including revenue projections and valuations.", - data: [ - 6, 0, 2, 7, 3, 0, 3, 3, 6, 4, 3, 3, 5, 2, 19, 2, 3, 9, 5, 2, 8, 2, 8, 4, 4, 5, 4, 5, 7, 5, - 4, 6, 2, 0, 8, 1, 2, 1, 11, 7, 2, 4, 0, 0, 1, 3, 4, 3, 2, 4, 2, 4, 4, 3, 3, - ], - }, - { - label: 'SUI', - topics: 'sui,eu,ecosystem,tvl,defi', - description: - 'The key topics currently discussed in the crypto industry on Twitter include:\n1. FTX EU victims being able to withdraw trapped Euros via Backpack, with crypto withdrawals remaining blocked.\n2. The launch of a new Pokemon on $SUI.\n3. Collaboration between a major Solana protocol and the #1 SUI DeFi protocol.\n4. SUI facing $3.70 resistance with potential for a 35% rally.\n5. Updates on Backpack Exchange enabling FTX EU users to claim frozen funds.\n6. Launch of $SUIAGENT with promising utility and potential.\n7. Strategic collaboration between SuiNetwork and 21Shares to expand global access and spark institutional interest.\n8. The activation of a points multiplier on the SUI-USD market for a $2M Surge Season 2 prize pool.\n9. Discussion about $UP being a big player in the SUI ecosystem.\n10. Movement of capital to Sui with campaigns and prizes being offered.', - data: [ - 5, 6, 1, 4, 7, 0, 1, 2, 4, 4, 3, 1, 2, 2, 5, 2, 2, 5, 6, 4, 5, 5, 4, 3, 1, 0, 4, 1, 3, 5, 9, - 1, 1, 5, 5, 1, 5, 2, 5, 2, 3, 1, 3, 6, 4, 9, 10, 6, 2, 3, 0, 5, 3, 3, 3, - ], - }, - { - label: 'PEPE', - topics: 'pepe,matt,rare,purpe,character', - description: - "Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community include the following:\n- $PEPE: There is regret for not buying more $PEPE earlier, with discussions about its potential for growth and reaching new all-time highs. There is also mention of a potential market cap of $10-20 billion for $PEPE.\n- $ETH: There are discussions about a fake dump in the price of $ETH and speculation about it reaching $2,800 next.\n- $SAUDI: Mention of a new meme coin called $SAUDI or SaudiPepe with a market cap of around 30K.\n- $GORTH: Discussion about a new character named Gorth being featured in Matt Furie's new book, Cortex Vortex, related to the creator of PEPE.\n- Free money hack involving applying for PayPal Credit and using it to buy $BTC and $ETH on eToro.\n\nOverall, the crypto community on Twitter seems to be actively discussing various altcoins, meme coins, potential price movements, and new developments in the industry.", - data: [ - 2, 1, 1, 1, 1, 0, 1, 2, 2, 5, 7, 0, 1, 5, 1, 2, 1, 1, 2, 3, 3, 3, 3, 9, 1, 1, 1, 1, 3, 6, 3, - 1, 6, 1, 7, 5, 50, 4, 1, 7, 3, 3, 3, 6, 1, 1, 4, 2, 1, 0, 3, 4, 4, 1, 2, - ], - }, - { - label: 'Inflation', - topics: 'inflation,cpi,23,expected,expectations', - description: - "Based on the messages from twitter, key topics currently being discussed in the crypto industry include:\n- US inflation dropping to 2.3%, lower than expectations\n- Jerome Powell signaling a potential raise in the Fed's 2% inflation target\n- Euro-area GDP growth meeting estimates but falling short on quarter-on-quarter growth\n- Easing inflation signs with US Core PPI below expectations\n- Fed's Powell cautioning about higher long-term rates and policy challenges\n- Lowest inflation report since one month after Biden took office\n- US CPI coming in at +2.3% YoY, slightly cooler headline inflation fueling risk-on sentiment\n\nOverall, the discussions seem to be focused on inflation trends, central bank policies, and their potential impact on the cryptocurrency market.", - data: [ - 3, 6, 2, 0, 1, 0, 12, 10, 1, 0, 1, 6, 6, 3, 0, 2, 3, 1, 2, 2, 1, 1, 1, 2, 2, 56, 1, 1, 0, 0, - 3, 6, 0, 1, 6, 4, 4, 1, 3, 2, 0, 2, 1, 1, 2, 2, 1, 1, 2, 7, 3, 1, 5, 2, 0, - ], - }, - { - label: 'Whales', - topics: 'whales,whale,accumulating,buying,bought', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- Whales manipulating the market to trap retail investors\n- Coinbase launching 24/7 Bitcoin and Ethereum futures trading\n- Whale activity in buying and selling various cryptocurrencies such as Dogecoin, Ethereum, and Polkadot\n- Institutional investors accumulating Bitcoin, driving up prices\n- HyperLiquid whale making risky moves with leveraged trades\n- Abraxas Capital buying a significant amount of Ethereum\n- Whale transactions and movements in the market, including short positions and deposits\n- Discussion around specific cryptocurrencies like AGiXT and their potential for growth\n- Analysis of whale trading patterns and performance over the past 30 days.', - data: [ - 4, 1, 0, 0, 6, 7, 3, 14, 0, 8, 0, 1, 4, 2, 2, 5, 0, 4, 0, 0, 0, 2, 1, 1, 3, 1, 2, 0, 3, 1, - 7, 2, 0, 5, 2, 4, 2, 0, 0, 3, 0, 0, 2, 2, 1, 0, 2, 1, 0, 2, 1, 1, 2, 60, 1, - ], - }, - { - label: 'Coinbase set to join S&P 500', - topics: 'sampp,500,coinbase,index,company', - description: - "The key topic discussed in the messages from Twitter is the inclusion of Coinbase ($COIN) in the S&P 500 index. This development is seen as a significant milestone for the crypto industry, as Coinbase becomes the first-ever crypto company to be added to the prestigious index. The news has generated excitement among investors and crypto enthusiasts, with many highlighting the mainstream acceptance of cryptocurrency and the potential impact on the market. Additionally, there is mention of Coinbase's acquisition of Deribit and its plans for global expansion, as well as the broader implications for the future of crypto in traditional finance. Overall, the sentiment surrounding Coinbase's inclusion in the S&P 500 is positive, signaling a shift towards greater integration of crypto assets in the financial industry.", - data: [ - 5, 0, 0, 0, 1, 0, 14, 7, 3, 1, 3, 34, 2, 1, 1, 0, 3, 0, 3, 2, 2, 6, 1, 6, 2, 3, 18, 2, 2, 2, - 0, 5, 0, 1, 7, 2, 0, 2, 1, 0, 4, 0, 1, 8, 4, 3, 3, 1, 2, 0, 0, 0, 0, 2, 3, - ], - }, - { - label: 'Michael Saylor', - topics: 'saylor,michael,strategy,saylors,billion', - description: - "The key topics discussed in the messages from twitter are:\n1. Michael Saylor's strategy of consistently buying large amounts of Bitcoin.\n2. The significant amount of Bitcoin purchased by Saylor's strategy, totaling over $1.34 billion.\n3. The potential future adoption of Bitcoin by banks, the US government, and big tech companies.\n4. The idea that ignoring Bitcoin today could result in significant financial losses in the future.\n5. The game theory behind why nation-states may choose to adopt Bitcoin rather than attack it.\n6. The comparison of Bitcoin adoption to the National park ranger policy.\n7. Speculation about the reasons behind Navy captains being swapped every 36 months.\n8. The belief that Saylor's actions in purchasing Bitcoin are strategic and will lead to significant gains.\n9. The concept of lending against Bitcoin and the possibility of having Bitcoin on mobile devices like iPhones.\n10. The idea that Saylor's actions in purchasing Bitcoin are setting a precedent for future generations.", - data: [ - 13, 4, 0, 3, 5, 2, 0, 7, 8, 9, 3, 1, 0, 0, 0, 1, 1, 0, 5, 5, 1, 0, 3, 1, 2, 3, 1, 1, 4, 2, - 1, 4, 2, 0, 4, 0, 1, 3, 3, 1, 1, 3, 15, 3, 1, 11, 24, 0, 2, 1, 2, 2, 0, 1, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,south,flip,cap', - description: - "The key topics discussed in the messages from Twitter regarding XRP include:\n1. XRP's potential to flip Ethereum in market cap and real-world utility.\n2. XRP's price rally hopes as it breaks out from a 6-year triangle.\n3. Ripple highlighting ways financial institutions can unlock the power of stablecoins, including use cases for RLUSD.\n4. XRP's open interest surging as speculation grows.\n5. XRP being used as collateral and integrated into global payments.\n6. XRP surging again, up 15% in a week and eyeing $3.15 resistance.\n7. Reasons to load up on XRP before June 2025, with potential catalysts for that time.\n8. XRP leading retail volume in South Korea.\n9. Bitrue hosting an AMA with a share of 100,000 AIXRP prize pool.\n10. AIXRP pioneering AI agent platforms on the XRP Ledger.", - data: [ - 2, 1, 0, 0, 0, 1, 4, 11, 1, 2, 2, 0, 1, 0, 1, 2, 1, 1, 3, 3, 4, 3, 1, 3, 3, 2, 3, 0, 8, 1, - 5, 4, 3, 0, 3, 1, 3, 2, 9, 2, 3, 5, 1, 5, 6, 1, 5, 2, 4, 3, 0, 6, 3, 1, 2, - ], - }, - { - label: 'APE', - topics: 'ape,apechain,nfa,believe,strong', - description: - 'The key topics currently being discussed on Twitter in relation to the crypto industry and ApeChain NFTs include:\n- ApeChainHUB and ApeCoin being mentioned and discussed\n- Minting FoxyFam presale NFTs on ApeChain\n- Apes on Ape Radio being the soundtrack of the summer\n- StickerX creating a stickerpack of bored ape NFTs\n- GEEZ merch being popular and shipping out\n- Special Council elections for ApeCoin and ApeChainHUB\n- Apes on Ape EP turning into an album\n- ApeScreener launching X ads to boost visibility\n- $APES holding an uptrend on Uniswap\n- Prophecies about Apes together strong and higher beliefs\n\nOverall, the community seems to be actively engaged in discussing various projects, NFTs, music releases, and upcoming events related to ApeChain and the crypto industry.', - data: [ - 1, 9, 13, 2, 0, 0, 2, 0, 1, 0, 5, 4, 1, 4, 5, 3, 1, 1, 4, 4, 3, 3, 1, 0, 2, 2, 4, 3, 2, 2, - 1, 1, 2, 2, 0, 3, 3, 4, 6, 1, 1, 3, 4, 1, 1, 0, 3, 5, 2, 4, 1, 3, 2, 2, 1, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,tokenization,tokenized,realworld', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include the arrival of new RWAs on Avalanche by Aave Labs, collaborations with AntChain to build a custom RWA market on Ethereum, the success of R2's testnet attracting over 200,000 participants, the announcement of RWA Cannes event for tokenization, partnerships with projects like $SYRUP and $ROSE, the popularity of RWAs and their long-term investment value, the listing of RWA DePin Protocol on KuCoin, the potential of RWA as the backbone of Bitcoin-native yield, and the listing and claiming update for SUIRWAPIN. Additionally, discussions are also focused on the role of TanssiNetwork in expanding the reach of Ethereum, the convergence of TradFi and DeFi, the backing of tokenized treasuries by BlackRock, and the introduction of top-tier microcaps like $PROPC and $LAND bringing real estate on-chain. Overall, the sentiment is bullish on RWAs and their potential in the crypto market.", - data: [ - 0, 1, 0, 0, 2, 0, 0, 0, 2, 0, 1, 0, 4, 1, 4, 2, 0, 2, 2, 1, 2, 2, 0, 2, 1, 1, 4, 0, 2, 2, 4, - 2, 0, 4, 1, 1, 0, 8, 1, 2, 2, 23, 2, 0, 1, 2, 5, 1, 2, 10, 0, 2, 1, 1, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-72.json b/priv/repo/major_topics_seed/data-72.json deleted file mode 100644 index 545f4a7c9b..0000000000 --- a/priv/repo/major_topics_seed/data-72.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["15.05.25","16.05.25","16.05.25","16.05.25","16.05.25","16.05.25","16.05.25","16.05.25","17.05.25","17.05.25","17.05.25","17.05.25","17.05.25","17.05.25","17.05.25","17.05.25","18.05.25","18.05.25","18.05.25","18.05.25","18.05.25","18.05.25","18.05.25","18.05.25","19.05.25","19.05.25","19.05.25","19.05.25","19.05.25","19.05.25","19.05.25","19.05.25","20.05.25","20.05.25","20.05.25","20.05.25","20.05.25","20.05.25","20.05.25","20.05.25","21.05.25","21.05.25","21.05.25","21.05.25","21.05.25","21.05.25","21.05.25","21.05.25","22.05.25","22.05.25","22.05.25","22.05.25","22.05.25","22.05.25","22.05.25"],"datasets":[{"label":"AI","topics":"ai,agents,google,agent,chatgpt","description":"The key topics discussed in the messages from twitter include:\n- The advancement of AI technology and its potential impact on various industries\n- The rise of community-owned AI economy and the shift of value from Big Tech to users\n- The dominance of certain altcoins in the crypto DeFAI AI sector in 2025\n- The development of AI agents by companies like OpenAI and Gamma\n- The potential copyright infringement issues in the blockchain gaming industry\n\nOverall, the messages reflect a growing interest and concern about the role of AI in different sectors and the implications of its advancement on society.","data":[71,146,31,22,9,0,8,5,24,17,46,31,34,20,25,21,36,22,28,25,36,23,54,24,12,30,41,24,41,19,30,22,26,21,25,23,22,24,30,24,24,24,28,20,24,22,31,29,37,23,23,31,30,29,31]},{"label":"BTC Pizza Day","topics":"pizza,10000,day,happy,celebrate","description":"The key topics currently being discussed on Twitter in relation to the crypto industry are:\n\n1. Bitcoin Pizza Day: Celebrating the anniversary of the first known commercial transaction using Bitcoin, where 10,000 BTC was used to purchase two pizzas. This event is seen as a milestone in the history of cryptocurrency.\n\n2. Bitcoin's value and adoption: Discussions around the increasing value of Bitcoin compared to traditional currencies like the dollar, as well as the growing acceptance and adoption of Bitcoin in various industries.\n\n3. Community giveaways and promotions: Various companies and communities are organizing giveaways and promotions to celebrate Bitcoin Pizza Day and attract new members to the crypto community.\n\n4. Historical transactions and movements of Bitcoin: Analysis of the movement of Bitcoin from early transactions, such as the 10,000 BTC pizza purchase, to current trends in the market.\n\n5. Calls for action and courage in the crypto space: Encouraging individuals to take action and participate in the crypto market, highlighting the importance of spending and accepting Bitcoin to increase its value and utility.\n\nOverall, the discussions on Twitter reflect a mix of celebration, analysis, and promotion of Bitcoin and the crypto industry as a whole.","data":[5,3,6,3,66,18,22,1,14,12,39,6,4,8,43,6,3,7,3,16,8,11,7,159,18,8,12,14,16,6,1,5,6,4,3,4,18,42,4,6,5,4,4,3,14,2,5,9,18,12,2,0,11,7,55]},{"label":"ETH","topics":"eth,ethereum,3000,resistance,exchanges","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Ethereum ($ETH) price analysis and market trends\n2. Withdrawal of over 1 million $ETH from centralized exchanges\n3. Potential resistance levels for Ethereum\n4. Impact of financial system building on ETH\n5. Speculation on $ETH vs #BTC chart\n6. Analysis of $KAS and potential price movements\n7. Staking and supply dynamics of $EAI tokens\n8. Growth and expansion of Hiraeth on Ethereum, Base, and Lukso_io networks\n9. Profit-taking strategies and market sentiment for $UNH\n10. UK firm's $77M profit on $655M $ETH buy\n11. Breakout watch for $ORDI and $GPU Node AI\n12. Technical analysis and support levels for $ETH\n\nOverall, the discussions on Twitter reflect a mix of price analysis, market trends, technical analysis, and profit-taking strategies in the crypto industry, with a focus on Ethereum and other altcoins.","data":[8,4,8,15,10,1,6,5,17,15,16,11,9,14,13,8,14,131,11,20,8,20,9,7,25,11,18,11,8,24,21,5,7,12,3,8,12,10,20,17,6,14,11,26,11,8,21,10,20,7,10,19,9,5,10]},{"label":"BTC Price","topics":"110k,btc,110000,breakout,bitcoin","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- Bitcoin price predictions ranging from $108,000 to $1.06 million\n- Speculation on whether Bitcoin will reach $200,000 or $500,000 in the future\n- Analysis of Bitcoin's recent price movements and potential for further growth\n- Discussion on market trends such as supply zones and dominance percentages\n- News about institutional interest in Bitcoin and future price projections\n- Debate on whether to buy or sell Bitcoin at current levels\n- Mention of potential black swan events and market volatility\n- Reference to technical analysis indicators like the Rainbow Chart and triangle patterns\n- Speculation on important news dropping next week that could impact Bitcoin's price\n\nOverall, the sentiment seems to be bullish on Bitcoin's future price potential, with many users anticipating significant gains in the near future.","data":[6,8,4,7,44,62,21,24,32,10,8,10,8,17,10,14,2,12,5,12,3,17,3,9,46,10,4,6,13,7,13,6,5,11,4,3,8,11,18,20,19,14,9,21,14,9,17,13,13,7,8,18,10,6,7]},{"label":"BTC ATH","topics":"ath,aths,hits,btc,hit","description":"The key topic discussed in the messages from Twitter is the new all-time high (ATH) of Bitcoin (BTC). Users are excited about BTC reaching new ATH levels, with prices surpassing $106,000 and potentially reaching $107,000. There is anticipation and speculation about whether BTC will continue to set new ATHs in the near future. Some users are celebrating the milestone, while others are discussing the potential impact of ATHs on their financial situation. Overall, the sentiment is positive and hopeful regarding BTC's performance and potential for further growth.","data":[5,5,31,6,27,44,6,22,16,1,4,13,3,13,7,6,5,4,18,9,2,7,3,6,59,5,0,2,5,3,4,6,6,38,21,7,3,4,8,19,4,2,6,4,5,3,7,3,14,12,3,7,7,7,7]},{"label":"BTC","topics":"fiat,bitcoin,understand,money,spend","description":"The messages from twitter about Bitcoin cover a range of topics, including the significance of Bitcoin as a monetary singularity and humanity's lightbulb moment. There is also discussion about the apex predator status of Bitcoin and criticism towards those who try to fix Bitcoin with coercion and violence. The importance of spending and replacing Bitcoin to usher in the future is highlighted, along with the idea that being anti-Bitcoin today is a sign of ignorance. Additionally, there is mention of the need to position oneself and their family for success by buying Bitcoin and avoiding clickbait hyperdoomerism. The dramas within the Bitcoin developer community are compared to banking committee dramas, emphasizing the importance of Bitcoin's neutrality and lack of traditional governance. The message also touches on the simplicity of investing in Bitcoin compared to trying to build a unicorn company. Finally, there is a discussion about the misconception that Bitcoin is not crypto, with the argument that Bitcoin is the signature asset backed by cryptographic security and decentralization.","data":[5,4,2,4,26,50,26,0,4,10,2,3,17,6,3,8,12,3,14,6,2,6,6,7,4,13,13,15,3,9,16,10,10,10,6,11,19,4,9,8,11,15,8,8,12,10,5,8,14,3,18,7,12,8,13]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The crypto community on Twitter is buzzing with discussions about meme coins and their potential for explosive growth. Key words such as \"memecoin,\" \"meme of the week,\" \"meme line held,\" \"Chad Marco meme,\" \"Bitcoin breaks ATH,\" \"4CHAN,\" \"Meme Super Cycle,\" \"SHIB,\" and \"Memetorrent community\" are being mentioned frequently. There is a sense of excitement and anticipation for the future of meme coins and their impact on the crypto industry. Investors are keeping a close eye on these developments as they anticipate a potential rally in meme coins.","data":[9,6,4,5,5,4,4,4,5,13,1,5,8,5,6,5,5,7,10,8,4,7,11,5,3,4,3,4,5,6,14,17,77,7,3,3,6,5,7,14,2,4,5,6,3,13,3,11,13,1,8,4,9,5,2]},{"label":"Coinbase ","topics":"coinbase,breach,data,kyc,customer","description":"The key topics discussed in the messages from Twitter about Coinbase and crypto industry include:\n1. Coinbase hack and data breach\n2. Concerns about security and protection of user data\n3. Scams and phishing attempts targeting crypto users\n4. Extortion attempts and bribery of staff\n5. Criticisms of Coinbase's customer service and handling of security incidents\n6. Recommendations for increased security measures, such as gun ownership for protecting crypto assets\n7. Crypto detective involvement in tracking hackers and stolen funds\n8. Stories of individuals being scammed out of large sums of crypto\n9. Promotion of new crypto projects like $FEG token with claims of combating scams and rug pulls\n\nOverall, the messages highlight the ongoing challenges and risks in the crypto industry, as well as the importance of vigilance and security measures for protecting digital assets.","data":[8,3,1,10,2,1,3,11,3,3,9,31,8,18,5,4,3,12,13,10,8,6,12,10,3,9,3,6,8,3,3,8,3,2,9,3,7,2,5,6,10,11,14,6,4,4,6,6,4,1,3,4,10,2,7]},{"label":"SUI","topics":"sui,sei,dex,hack,suinetwork","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. SUI stablecoin market cap hitting $1B ATH and doubling in just 2 months.\n2. Discussion about SUI withdrawals being disabled on centralized exchanges due to the Cetus hack.\n3. Speculation about buying the USDC depeg on SUI after the Cetus hack.\n4. The popularity of Ikachan NFTs on SUI.\n5. Sei Blockchain shifting to an EVM-only future and ditching Cosmos support.\n6. Updates on the CETUS team addressing a bug in their oracle.\n7. Bullish sentiment towards SUI Network and Cetus Protocol.\n8. Introduction of Sei Giga as a blockchain superhighway with breakthrough technology.\n9. Talks about scaling blockchains and the uniqueness of Sei Giga's multi-proposer setup.\n10. Upcoming projects and partnerships involving SUI, including a SUI-native game and a fair launch platform with Cetus Protocol.\n11. Launch of SUI market on TokenPocket for easy swapping of SUI-based tokens.","data":[4,6,8,5,6,0,1,15,8,11,3,4,8,5,6,9,6,3,7,4,7,3,11,6,6,5,6,2,7,3,11,9,4,6,6,4,3,4,21,6,4,2,8,5,1,10,8,7,5,3,4,6,7,6,3]},{"label":"Whales","topics":"whale,position,whales,long,james","description":"The key topic discussed in the messages from Twitter is the activity of a Bitcoin whale who has been increasing their long position significantly, reaching amounts of hundreds of millions of dollars. The whale is making substantial profits and there is speculation about what they may know that others don't. Additionally, there is mention of a hacker's wallet with inflated values and the movement of Ethereum whales sending mixed signals. There is also discussion about Dogecoin whales dumping a large amount of DOGE and the potential impact on the price. Overall, the focus is on the actions of large players in the crypto industry and the potential implications for the market.","data":[4,2,0,2,6,3,11,33,24,12,4,0,0,3,0,3,2,1,0,1,2,1,2,1,1,16,4,1,2,3,2,6,2,2,3,7,1,3,3,3,1,3,2,6,2,0,1,5,1,1,1,11,3,53,2]},{"label":"GameFi","topics":"gaming,games,game,web3,play","description":"The key topics currently being discussed in the crypto gaming community on Twitter include:\n\n1. Nintendo potentially remaking a game for the Switch 2\n2. Traditional gaming giants entering the Web3 space\n3. The development cost of GTA 6 estimated to be over $1 billion\n4. Pigmo offering premium titles and real crypto wins\n5. Positive mentions of @ExploreOmnia and @fableborne in the web3 gaming space\n6. GAME Chain's unmatched performance in the web3 gaming industry\n7. The Brave Technologist podcast featuring Shafik Quoraishee, a senior mobile/AI game developer at The New York Times\n8. Immutable being praised as the best place to build games in the web3 space\n9. Suit for Hire from @TheCrimsonDev being highlighted as a top-down action shooter game\n10. Farcana becoming one of the most wishlisted games on the Epic Games Store\n11. Arbitrum investing $10 million in various web3 gaming projects such as @PlayWildcard, @Hyve_Labs, @TREX_chain, @XAI_GAMES, and @ProofOfPlay\n\nOverall, the discussions on Twitter revolve around the growth and development of the crypto gaming industry, with a focus on new game releases, investments, and advancements in technology.","data":[5,4,1,3,1,0,1,2,8,0,4,3,2,8,5,2,3,2,6,6,50,4,2,1,0,7,3,2,5,3,2,7,5,1,3,5,2,16,6,4,7,3,5,5,4,3,2,3,4,8,5,2,4,3,5]},{"label":"GENIUS Act","topics":"genius,senate,act,stablecoin,vote","description":"The recent passing of the stablecoin bill in the U.S. Senate has sparked excitement and optimism within the crypto community. With bipartisan support and key Democratic backing, the GENIUS Act is one step closer to becoming law. This legislation aims to regulate stablecoins and create a legal framework for digital assets in the U.S. The bill's passage is seen as a positive development for the crypto industry, with potential implications for the future of stablecoin issuers and their role in the financial market. Overall, the Senate's decision to advance the GENIUS Act signals a new era of responsible innovation and transparency in the crypto space.","data":[10,0,3,5,1,0,0,11,7,4,2,7,2,8,4,0,2,3,3,4,9,4,2,1,2,5,0,2,9,3,4,5,1,6,4,13,10,3,2,3,7,5,12,6,5,22,1,0,2,4,5,4,17,3,0]},{"label":"SOL","topics":"solana,sol,solanas,consensus,metamask","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana (SOL) being underpriced relative to other cryptocurrencies\n- Solana's position being strengthened by institutional investments\n- Solana's price performance, with a 36% increase in the last 30 days\n- Analysts projecting Solana to triple in value by mid-2025\n- Solana's role as a top venue for onchain trading, commanding a significant market share\n- Updates on Solana's technology upgrades, such as the Alpenglow upgrade reducing transaction finality time\n- Solnet AI, a DeFAI protocol for optimizing profitability on Solana\n- Events and conferences related to Solana, such as the StakePoint NYC event and SolanaConf\n- Discussions on trading strategies for Solana, including bidding and chasing breakouts\n- Comparisons between Solana and other cryptocurrencies like Ethereum (ETH)","data":[9,4,2,1,1,0,6,1,2,8,8,2,8,3,2,3,1,2,6,4,2,1,2,2,5,1,5,3,7,3,3,3,4,6,6,4,5,3,7,4,4,7,1,0,31,11,11,1,2,3,2,5,3,0,0]},{"label":"Michael Saylor ","topics":"saylor,strategy,michael,acquired,microstrategy","description":"Key topics discussed in the messages from twitter about Michael Saylor and his company Strategy include:\n- Saylor's consistent buying of Bitcoin\n- Creation of bitcoin-backed fiat currency Mstr\n- Potential for Saylor to corner the Bitcoin supply\n- Proposal of paying a Bitcoin dividend to $MSTR shareholders\n- Recent purchase of 7,390 Bitcoin for $765 million\n- California State Pension Fund's investment in MicroStrategy $MSTR\n- MicroStrategy's significant profit from Bitcoin holdings\n- Acquisition of 7,390 BTC for ~$764.9 million at ~$103,498 per bitcoin\n- Holding 576,230 BTC acquired for ~$40.18 billion at ~$69,726 per bitcoin\n- BTC Yield of 16.3% YTD 2025\n\nOverall, the messages highlight Saylor's bullish stance on Bitcoin and his successful investment strategy with MicroStrategy.","data":[2,3,1,1,3,0,0,31,34,10,2,0,2,2,2,0,0,0,2,1,1,2,1,2,2,0,2,2,1,1,3,1,3,0,4,1,5,2,5,3,3,3,13,2,1,4,42,1,5,0,1,3,1,1,1]},{"label":"DOGE","topics":"dogecoin,doge,breakout,memecoin,flag","description":"The messages from Twitter suggest that there is a lot of buzz and excitement surrounding Dogecoin ($DOGE) in the crypto community. Key topics being discussed include the potential for a rise in active addresses, transaction volume, and whale activity, as well as the possibility of a breakout above $0.239 leading to a move toward $0.265. There is also mention of a record-breaking daily growth in volume for Dogecoin, as well as comparisons to other cryptocurrencies and the credit card system. Overall, it seems that there is a bullish sentiment and anticipation for potential gains in the value of Dogecoin.","data":[0,0,2,6,2,0,1,0,1,3,1,4,4,1,1,99,1,0,1,1,0,3,2,5,1,1,0,3,4,2,1,4,0,4,3,1,1,0,3,3,4,5,2,3,3,2,0,4,6,1,1,1,6,3,1]},{"label":"DeFi ","topics":"defi,sky,tradfi,protocol,live","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. DeFi Summer and the unpredictability of the DeFi market\n2. The launch of Maneki_DeFi on Virtuals Protocol\n3. The future of DeFi being simpler and smarter with projects like Infinex\n4. DeSci's use of Web3 tools for research and project funding\n5. The importance of reliable infrastructure in experimental DeFi projects\n6. The evolution of Decentralized Finance with AI integration\n7. The upcoming DeFi Pulse session for market insights and stablecoin discussions\n8. Institutional adoption of DeFi with Corkprotocol\n9. Growth plans and roadmap releases in the DeFi space\n10. Introduction of Sofi, India's first shopping agent\n11. Network-Level Incentive Pools by peaq for dApp activity\n12. The launch of a new DeFi superapp by Portals_fi\n13. Joining Pharos Network's Testnet for the future of DeFi and potential $PHRS airdrop.","data":[4,1,2,3,2,0,0,0,2,2,6,2,2,4,15,4,5,8,3,2,1,3,8,3,1,6,6,4,1,4,7,5,3,3,1,6,0,3,9,6,3,5,4,1,2,5,4,0,0,7,1,4,4,2,2]},{"label":"NFT","topics":"nft,nfts,mint,minted,collection","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include NFTs, Non-custodial Trading Interfaces (NTIs), the future of global finance with NFTs, the SmartMetal project launch, market trends affecting NFT prices, innovation in the NFT market with authentic NFTs and invisible watermarks, the value of Cryptopunk grails, upcoming NFT projects like Alien Rabbits Mint Pass, the shift towards physical NFT galleries, and the importance of liquidity and fractionalization in the NFT market. Additionally, there is excitement surrounding Magic Eden's closed beta for Lucky Buy on Ethereum, offering a gamified experience and lower barriers to entry for expensive NFT collections.","data":[5,3,2,4,1,0,1,0,0,2,5,6,7,3,1,6,0,3,5,5,2,2,3,1,1,6,3,0,4,1,1,5,23,2,12,1,4,1,1,1,3,1,2,0,3,2,1,0,4,0,3,0,4,2,5]},{"label":"BlackRock","topics":"blackrock,ibit,bought,etf,worth","description":"The key topic currently being discussed on Twitter is BlackRock's significant purchases of Bitcoin and Ethereum. BlackRock has been making large purchases of both cryptocurrencies, with recent reports indicating purchases worth hundreds of millions of dollars. Additionally, there is discussion about BlackRock's involvement in the cryptocurrency market, including their holdings in the iShares Bitcoin Trust (IBIT) and the potential impact on the market. The community is also speculating on the implications of BlackRock's actions on the future of Bitcoin and Ethereum prices.","data":[3,1,2,4,2,1,34,43,1,21,0,0,0,0,0,2,15,1,1,0,1,0,0,0,3,4,1,0,3,0,0,0,1,3,1,2,0,0,1,1,0,1,3,0,1,1,3,0,0,0,0,1,0,0,1]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,payments,issuers,usdc","description":"The key topics discussed in the messages from twitter are:\n1. Stablecoins thriving on Concordium\n2. Liquity team's V2 re-deployment\n3. Stablecoins being digital fiat currencies controlled by non-bankers\n4. Spending time with banks to help them understand the stablecoin ecosystem\n5. Surge in stablecoin legislation potentially impacting the altcoin casino\n6. Global Dollar Network as the fastest-growing stablecoin network\n7. Stablecoin laws fueling growth\n8. BitwiseInvest CIO's belief in stablecoin regulation driving crypto adoption\n9. Stablecoins approaching critical mass\n10. Proof of Data Possession introducing hot storage to the Filecoin network\n11. Stablecoin payments now live on Starknet\n12. Tokenized US Treasuries market surpassing $7B\n13. KuCoin enhancing point-of-sale mobile payments with AEON\n14. M0 as a universal stablecoin platform for builders to create their own digital dollar.","data":[1,3,2,7,0,0,0,2,3,1,3,3,2,1,3,5,2,3,1,1,1,1,2,0,1,3,3,2,2,0,0,3,3,4,3,3,4,2,5,3,6,0,1,0,5,30,1,1,2,4,0,5,1,2,3]},{"label":"PEPE","topics":"pepe,5pm,matt,launching,frens","description":"The key topics discussed in the messages from twitter are:\n- $PEPE, $MOG, $BONK, $DOGE, $XRP, $YEE, $BTC, $ETH\n- Whales withdrawing $23.63 million worth of PEPE from exchanges\n- PEPE gearing up for a bullish reversal with a rounded bottom spotted\n- Predictions and commands given by Pepe for crypto coins\n- PEPE's comeback and surge in value\n- Auction exchange bots dumping when users buy\n- Launch of SIR PEPE NFT at 7pm UTC\n\nOverall, the discussion revolves around the price movements and potential investments in various cryptocurrencies, with a focus on PEPE and its influence on the market.","data":[2,2,3,1,0,0,2,2,0,2,3,4,0,0,0,0,3,1,4,9,0,1,1,3,3,1,0,1,9,4,0,1,3,4,1,3,26,5,2,4,1,0,3,4,2,2,8,1,0,4,1,3,2,5,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-72.ts b/priv/repo/major_topics_seed/data-72.ts deleted file mode 100644 index 4c5ec68e97..0000000000 --- a/priv/repo/major_topics_seed/data-72.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '15.05.25', - '16.05.25', - '16.05.25', - '16.05.25', - '16.05.25', - '16.05.25', - '16.05.25', - '16.05.25', - '17.05.25', - '17.05.25', - '17.05.25', - '17.05.25', - '17.05.25', - '17.05.25', - '17.05.25', - '17.05.25', - '18.05.25', - '18.05.25', - '18.05.25', - '18.05.25', - '18.05.25', - '18.05.25', - '18.05.25', - '18.05.25', - '19.05.25', - '19.05.25', - '19.05.25', - '19.05.25', - '19.05.25', - '19.05.25', - '19.05.25', - '19.05.25', - '20.05.25', - '20.05.25', - '20.05.25', - '20.05.25', - '20.05.25', - '20.05.25', - '20.05.25', - '20.05.25', - '21.05.25', - '21.05.25', - '21.05.25', - '21.05.25', - '21.05.25', - '21.05.25', - '21.05.25', - '21.05.25', - '22.05.25', - '22.05.25', - '22.05.25', - '22.05.25', - '22.05.25', - '22.05.25', - '22.05.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,google,agent,chatgpt', - description: - 'The key topics discussed in the messages from twitter include:\n- The advancement of AI technology and its potential impact on various industries\n- The rise of community-owned AI economy and the shift of value from Big Tech to users\n- The dominance of certain altcoins in the crypto DeFAI AI sector in 2025\n- The development of AI agents by companies like OpenAI and Gamma\n- The potential copyright infringement issues in the blockchain gaming industry\n\nOverall, the messages reflect a growing interest and concern about the role of AI in different sectors and the implications of its advancement on society.', - data: [ - 71, 146, 31, 22, 9, 0, 8, 5, 24, 17, 46, 31, 34, 20, 25, 21, 36, 22, 28, 25, 36, 23, 54, 24, - 12, 30, 41, 24, 41, 19, 30, 22, 26, 21, 25, 23, 22, 24, 30, 24, 24, 24, 28, 20, 24, 22, 31, - 29, 37, 23, 23, 31, 30, 29, 31, - ], - }, - { - label: 'BTC Pizza Day', - topics: 'pizza,10000,day,happy,celebrate', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry are:\n\n1. Bitcoin Pizza Day: Celebrating the anniversary of the first known commercial transaction using Bitcoin, where 10,000 BTC was used to purchase two pizzas. This event is seen as a milestone in the history of cryptocurrency.\n\n2. Bitcoin's value and adoption: Discussions around the increasing value of Bitcoin compared to traditional currencies like the dollar, as well as the growing acceptance and adoption of Bitcoin in various industries.\n\n3. Community giveaways and promotions: Various companies and communities are organizing giveaways and promotions to celebrate Bitcoin Pizza Day and attract new members to the crypto community.\n\n4. Historical transactions and movements of Bitcoin: Analysis of the movement of Bitcoin from early transactions, such as the 10,000 BTC pizza purchase, to current trends in the market.\n\n5. Calls for action and courage in the crypto space: Encouraging individuals to take action and participate in the crypto market, highlighting the importance of spending and accepting Bitcoin to increase its value and utility.\n\nOverall, the discussions on Twitter reflect a mix of celebration, analysis, and promotion of Bitcoin and the crypto industry as a whole.", - data: [ - 5, 3, 6, 3, 66, 18, 22, 1, 14, 12, 39, 6, 4, 8, 43, 6, 3, 7, 3, 16, 8, 11, 7, 159, 18, 8, - 12, 14, 16, 6, 1, 5, 6, 4, 3, 4, 18, 42, 4, 6, 5, 4, 4, 3, 14, 2, 5, 9, 18, 12, 2, 0, 11, 7, - 55, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,3000,resistance,exchanges', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Ethereum ($ETH) price analysis and market trends\n2. Withdrawal of over 1 million $ETH from centralized exchanges\n3. Potential resistance levels for Ethereum\n4. Impact of financial system building on ETH\n5. Speculation on $ETH vs #BTC chart\n6. Analysis of $KAS and potential price movements\n7. Staking and supply dynamics of $EAI tokens\n8. Growth and expansion of Hiraeth on Ethereum, Base, and Lukso_io networks\n9. Profit-taking strategies and market sentiment for $UNH\n10. UK firm's $77M profit on $655M $ETH buy\n11. Breakout watch for $ORDI and $GPU Node AI\n12. Technical analysis and support levels for $ETH\n\nOverall, the discussions on Twitter reflect a mix of price analysis, market trends, technical analysis, and profit-taking strategies in the crypto industry, with a focus on Ethereum and other altcoins.", - data: [ - 8, 4, 8, 15, 10, 1, 6, 5, 17, 15, 16, 11, 9, 14, 13, 8, 14, 131, 11, 20, 8, 20, 9, 7, 25, - 11, 18, 11, 8, 24, 21, 5, 7, 12, 3, 8, 12, 10, 20, 17, 6, 14, 11, 26, 11, 8, 21, 10, 20, 7, - 10, 19, 9, 5, 10, - ], - }, - { - label: 'BTC Price', - topics: '110k,btc,110000,breakout,bitcoin', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n- Bitcoin price predictions ranging from $108,000 to $1.06 million\n- Speculation on whether Bitcoin will reach $200,000 or $500,000 in the future\n- Analysis of Bitcoin's recent price movements and potential for further growth\n- Discussion on market trends such as supply zones and dominance percentages\n- News about institutional interest in Bitcoin and future price projections\n- Debate on whether to buy or sell Bitcoin at current levels\n- Mention of potential black swan events and market volatility\n- Reference to technical analysis indicators like the Rainbow Chart and triangle patterns\n- Speculation on important news dropping next week that could impact Bitcoin's price\n\nOverall, the sentiment seems to be bullish on Bitcoin's future price potential, with many users anticipating significant gains in the near future.", - data: [ - 6, 8, 4, 7, 44, 62, 21, 24, 32, 10, 8, 10, 8, 17, 10, 14, 2, 12, 5, 12, 3, 17, 3, 9, 46, 10, - 4, 6, 13, 7, 13, 6, 5, 11, 4, 3, 8, 11, 18, 20, 19, 14, 9, 21, 14, 9, 17, 13, 13, 7, 8, 18, - 10, 6, 7, - ], - }, - { - label: 'BTC ATH', - topics: 'ath,aths,hits,btc,hit', - description: - "The key topic discussed in the messages from Twitter is the new all-time high (ATH) of Bitcoin (BTC). Users are excited about BTC reaching new ATH levels, with prices surpassing $106,000 and potentially reaching $107,000. There is anticipation and speculation about whether BTC will continue to set new ATHs in the near future. Some users are celebrating the milestone, while others are discussing the potential impact of ATHs on their financial situation. Overall, the sentiment is positive and hopeful regarding BTC's performance and potential for further growth.", - data: [ - 5, 5, 31, 6, 27, 44, 6, 22, 16, 1, 4, 13, 3, 13, 7, 6, 5, 4, 18, 9, 2, 7, 3, 6, 59, 5, 0, 2, - 5, 3, 4, 6, 6, 38, 21, 7, 3, 4, 8, 19, 4, 2, 6, 4, 5, 3, 7, 3, 14, 12, 3, 7, 7, 7, 7, - ], - }, - { - label: 'BTC', - topics: 'fiat,bitcoin,understand,money,spend', - description: - "The messages from twitter about Bitcoin cover a range of topics, including the significance of Bitcoin as a monetary singularity and humanity's lightbulb moment. There is also discussion about the apex predator status of Bitcoin and criticism towards those who try to fix Bitcoin with coercion and violence. The importance of spending and replacing Bitcoin to usher in the future is highlighted, along with the idea that being anti-Bitcoin today is a sign of ignorance. Additionally, there is mention of the need to position oneself and their family for success by buying Bitcoin and avoiding clickbait hyperdoomerism. The dramas within the Bitcoin developer community are compared to banking committee dramas, emphasizing the importance of Bitcoin's neutrality and lack of traditional governance. The message also touches on the simplicity of investing in Bitcoin compared to trying to build a unicorn company. Finally, there is a discussion about the misconception that Bitcoin is not crypto, with the argument that Bitcoin is the signature asset backed by cryptographic security and decentralization.", - data: [ - 5, 4, 2, 4, 26, 50, 26, 0, 4, 10, 2, 3, 17, 6, 3, 8, 12, 3, 14, 6, 2, 6, 6, 7, 4, 13, 13, - 15, 3, 9, 16, 10, 10, 10, 6, 11, 19, 4, 9, 8, 11, 15, 8, 8, 12, 10, 5, 8, 14, 3, 18, 7, 12, - 8, 13, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The crypto community on Twitter is buzzing with discussions about meme coins and their potential for explosive growth. Key words such as "memecoin," "meme of the week," "meme line held," "Chad Marco meme," "Bitcoin breaks ATH," "4CHAN," "Meme Super Cycle," "SHIB," and "Memetorrent community" are being mentioned frequently. There is a sense of excitement and anticipation for the future of meme coins and their impact on the crypto industry. Investors are keeping a close eye on these developments as they anticipate a potential rally in meme coins.', - data: [ - 9, 6, 4, 5, 5, 4, 4, 4, 5, 13, 1, 5, 8, 5, 6, 5, 5, 7, 10, 8, 4, 7, 11, 5, 3, 4, 3, 4, 5, 6, - 14, 17, 77, 7, 3, 3, 6, 5, 7, 14, 2, 4, 5, 6, 3, 13, 3, 11, 13, 1, 8, 4, 9, 5, 2, - ], - }, - { - label: 'Coinbase ', - topics: 'coinbase,breach,data,kyc,customer', - description: - "The key topics discussed in the messages from Twitter about Coinbase and crypto industry include:\n1. Coinbase hack and data breach\n2. Concerns about security and protection of user data\n3. Scams and phishing attempts targeting crypto users\n4. Extortion attempts and bribery of staff\n5. Criticisms of Coinbase's customer service and handling of security incidents\n6. Recommendations for increased security measures, such as gun ownership for protecting crypto assets\n7. Crypto detective involvement in tracking hackers and stolen funds\n8. Stories of individuals being scammed out of large sums of crypto\n9. Promotion of new crypto projects like $FEG token with claims of combating scams and rug pulls\n\nOverall, the messages highlight the ongoing challenges and risks in the crypto industry, as well as the importance of vigilance and security measures for protecting digital assets.", - data: [ - 8, 3, 1, 10, 2, 1, 3, 11, 3, 3, 9, 31, 8, 18, 5, 4, 3, 12, 13, 10, 8, 6, 12, 10, 3, 9, 3, 6, - 8, 3, 3, 8, 3, 2, 9, 3, 7, 2, 5, 6, 10, 11, 14, 6, 4, 4, 6, 6, 4, 1, 3, 4, 10, 2, 7, - ], - }, - { - label: 'SUI', - topics: 'sui,sei,dex,hack,suinetwork', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. SUI stablecoin market cap hitting $1B ATH and doubling in just 2 months.\n2. Discussion about SUI withdrawals being disabled on centralized exchanges due to the Cetus hack.\n3. Speculation about buying the USDC depeg on SUI after the Cetus hack.\n4. The popularity of Ikachan NFTs on SUI.\n5. Sei Blockchain shifting to an EVM-only future and ditching Cosmos support.\n6. Updates on the CETUS team addressing a bug in their oracle.\n7. Bullish sentiment towards SUI Network and Cetus Protocol.\n8. Introduction of Sei Giga as a blockchain superhighway with breakthrough technology.\n9. Talks about scaling blockchains and the uniqueness of Sei Giga's multi-proposer setup.\n10. Upcoming projects and partnerships involving SUI, including a SUI-native game and a fair launch platform with Cetus Protocol.\n11. Launch of SUI market on TokenPocket for easy swapping of SUI-based tokens.", - data: [ - 4, 6, 8, 5, 6, 0, 1, 15, 8, 11, 3, 4, 8, 5, 6, 9, 6, 3, 7, 4, 7, 3, 11, 6, 6, 5, 6, 2, 7, 3, - 11, 9, 4, 6, 6, 4, 3, 4, 21, 6, 4, 2, 8, 5, 1, 10, 8, 7, 5, 3, 4, 6, 7, 6, 3, - ], - }, - { - label: 'Whales', - topics: 'whale,position,whales,long,james', - description: - "The key topic discussed in the messages from Twitter is the activity of a Bitcoin whale who has been increasing their long position significantly, reaching amounts of hundreds of millions of dollars. The whale is making substantial profits and there is speculation about what they may know that others don't. Additionally, there is mention of a hacker's wallet with inflated values and the movement of Ethereum whales sending mixed signals. There is also discussion about Dogecoin whales dumping a large amount of DOGE and the potential impact on the price. Overall, the focus is on the actions of large players in the crypto industry and the potential implications for the market.", - data: [ - 4, 2, 0, 2, 6, 3, 11, 33, 24, 12, 4, 0, 0, 3, 0, 3, 2, 1, 0, 1, 2, 1, 2, 1, 1, 16, 4, 1, 2, - 3, 2, 6, 2, 2, 3, 7, 1, 3, 3, 3, 1, 3, 2, 6, 2, 0, 1, 5, 1, 1, 1, 11, 3, 53, 2, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,web3,play', - description: - "The key topics currently being discussed in the crypto gaming community on Twitter include:\n\n1. Nintendo potentially remaking a game for the Switch 2\n2. Traditional gaming giants entering the Web3 space\n3. The development cost of GTA 6 estimated to be over $1 billion\n4. Pigmo offering premium titles and real crypto wins\n5. Positive mentions of @ExploreOmnia and @fableborne in the web3 gaming space\n6. GAME Chain's unmatched performance in the web3 gaming industry\n7. The Brave Technologist podcast featuring Shafik Quoraishee, a senior mobile/AI game developer at The New York Times\n8. Immutable being praised as the best place to build games in the web3 space\n9. Suit for Hire from @TheCrimsonDev being highlighted as a top-down action shooter game\n10. Farcana becoming one of the most wishlisted games on the Epic Games Store\n11. Arbitrum investing $10 million in various web3 gaming projects such as @PlayWildcard, @Hyve_Labs, @TREX_chain, @XAI_GAMES, and @ProofOfPlay\n\nOverall, the discussions on Twitter revolve around the growth and development of the crypto gaming industry, with a focus on new game releases, investments, and advancements in technology.", - data: [ - 5, 4, 1, 3, 1, 0, 1, 2, 8, 0, 4, 3, 2, 8, 5, 2, 3, 2, 6, 6, 50, 4, 2, 1, 0, 7, 3, 2, 5, 3, - 2, 7, 5, 1, 3, 5, 2, 16, 6, 4, 7, 3, 5, 5, 4, 3, 2, 3, 4, 8, 5, 2, 4, 3, 5, - ], - }, - { - label: 'GENIUS Act', - topics: 'genius,senate,act,stablecoin,vote', - description: - "The recent passing of the stablecoin bill in the U.S. Senate has sparked excitement and optimism within the crypto community. With bipartisan support and key Democratic backing, the GENIUS Act is one step closer to becoming law. This legislation aims to regulate stablecoins and create a legal framework for digital assets in the U.S. The bill's passage is seen as a positive development for the crypto industry, with potential implications for the future of stablecoin issuers and their role in the financial market. Overall, the Senate's decision to advance the GENIUS Act signals a new era of responsible innovation and transparency in the crypto space.", - data: [ - 10, 0, 3, 5, 1, 0, 0, 11, 7, 4, 2, 7, 2, 8, 4, 0, 2, 3, 3, 4, 9, 4, 2, 1, 2, 5, 0, 2, 9, 3, - 4, 5, 1, 6, 4, 13, 10, 3, 2, 3, 7, 5, 12, 6, 5, 22, 1, 0, 2, 4, 5, 4, 17, 3, 0, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,solanas,consensus,metamask', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana (SOL) being underpriced relative to other cryptocurrencies\n- Solana's position being strengthened by institutional investments\n- Solana's price performance, with a 36% increase in the last 30 days\n- Analysts projecting Solana to triple in value by mid-2025\n- Solana's role as a top venue for onchain trading, commanding a significant market share\n- Updates on Solana's technology upgrades, such as the Alpenglow upgrade reducing transaction finality time\n- Solnet AI, a DeFAI protocol for optimizing profitability on Solana\n- Events and conferences related to Solana, such as the StakePoint NYC event and SolanaConf\n- Discussions on trading strategies for Solana, including bidding and chasing breakouts\n- Comparisons between Solana and other cryptocurrencies like Ethereum (ETH)", - data: [ - 9, 4, 2, 1, 1, 0, 6, 1, 2, 8, 8, 2, 8, 3, 2, 3, 1, 2, 6, 4, 2, 1, 2, 2, 5, 1, 5, 3, 7, 3, 3, - 3, 4, 6, 6, 4, 5, 3, 7, 4, 4, 7, 1, 0, 31, 11, 11, 1, 2, 3, 2, 5, 3, 0, 0, - ], - }, - { - label: 'Michael Saylor ', - topics: 'saylor,strategy,michael,acquired,microstrategy', - description: - "Key topics discussed in the messages from twitter about Michael Saylor and his company Strategy include:\n- Saylor's consistent buying of Bitcoin\n- Creation of bitcoin-backed fiat currency Mstr\n- Potential for Saylor to corner the Bitcoin supply\n- Proposal of paying a Bitcoin dividend to $MSTR shareholders\n- Recent purchase of 7,390 Bitcoin for $765 million\n- California State Pension Fund's investment in MicroStrategy $MSTR\n- MicroStrategy's significant profit from Bitcoin holdings\n- Acquisition of 7,390 BTC for ~$764.9 million at ~$103,498 per bitcoin\n- Holding 576,230 BTC acquired for ~$40.18 billion at ~$69,726 per bitcoin\n- BTC Yield of 16.3% YTD 2025\n\nOverall, the messages highlight Saylor's bullish stance on Bitcoin and his successful investment strategy with MicroStrategy.", - data: [ - 2, 3, 1, 1, 3, 0, 0, 31, 34, 10, 2, 0, 2, 2, 2, 0, 0, 0, 2, 1, 1, 2, 1, 2, 2, 0, 2, 2, 1, 1, - 3, 1, 3, 0, 4, 1, 5, 2, 5, 3, 3, 3, 13, 2, 1, 4, 42, 1, 5, 0, 1, 3, 1, 1, 1, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,breakout,memecoin,flag', - description: - 'The messages from Twitter suggest that there is a lot of buzz and excitement surrounding Dogecoin ($DOGE) in the crypto community. Key topics being discussed include the potential for a rise in active addresses, transaction volume, and whale activity, as well as the possibility of a breakout above $0.239 leading to a move toward $0.265. There is also mention of a record-breaking daily growth in volume for Dogecoin, as well as comparisons to other cryptocurrencies and the credit card system. Overall, it seems that there is a bullish sentiment and anticipation for potential gains in the value of Dogecoin.', - data: [ - 0, 0, 2, 6, 2, 0, 1, 0, 1, 3, 1, 4, 4, 1, 1, 99, 1, 0, 1, 1, 0, 3, 2, 5, 1, 1, 0, 3, 4, 2, - 1, 4, 0, 4, 3, 1, 1, 0, 3, 3, 4, 5, 2, 3, 3, 2, 0, 4, 6, 1, 1, 1, 6, 3, 1, - ], - }, - { - label: 'DeFi ', - topics: 'defi,sky,tradfi,protocol,live', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. DeFi Summer and the unpredictability of the DeFi market\n2. The launch of Maneki_DeFi on Virtuals Protocol\n3. The future of DeFi being simpler and smarter with projects like Infinex\n4. DeSci's use of Web3 tools for research and project funding\n5. The importance of reliable infrastructure in experimental DeFi projects\n6. The evolution of Decentralized Finance with AI integration\n7. The upcoming DeFi Pulse session for market insights and stablecoin discussions\n8. Institutional adoption of DeFi with Corkprotocol\n9. Growth plans and roadmap releases in the DeFi space\n10. Introduction of Sofi, India's first shopping agent\n11. Network-Level Incentive Pools by peaq for dApp activity\n12. The launch of a new DeFi superapp by Portals_fi\n13. Joining Pharos Network's Testnet for the future of DeFi and potential $PHRS airdrop.", - data: [ - 4, 1, 2, 3, 2, 0, 0, 0, 2, 2, 6, 2, 2, 4, 15, 4, 5, 8, 3, 2, 1, 3, 8, 3, 1, 6, 6, 4, 1, 4, - 7, 5, 3, 3, 1, 6, 0, 3, 9, 6, 3, 5, 4, 1, 2, 5, 4, 0, 0, 7, 1, 4, 4, 2, 2, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,mint,minted,collection', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include NFTs, Non-custodial Trading Interfaces (NTIs), the future of global finance with NFTs, the SmartMetal project launch, market trends affecting NFT prices, innovation in the NFT market with authentic NFTs and invisible watermarks, the value of Cryptopunk grails, upcoming NFT projects like Alien Rabbits Mint Pass, the shift towards physical NFT galleries, and the importance of liquidity and fractionalization in the NFT market. Additionally, there is excitement surrounding Magic Eden's closed beta for Lucky Buy on Ethereum, offering a gamified experience and lower barriers to entry for expensive NFT collections.", - data: [ - 5, 3, 2, 4, 1, 0, 1, 0, 0, 2, 5, 6, 7, 3, 1, 6, 0, 3, 5, 5, 2, 2, 3, 1, 1, 6, 3, 0, 4, 1, 1, - 5, 23, 2, 12, 1, 4, 1, 1, 1, 3, 1, 2, 0, 3, 2, 1, 0, 4, 0, 3, 0, 4, 2, 5, - ], - }, - { - label: 'BlackRock', - topics: 'blackrock,ibit,bought,etf,worth', - description: - "The key topic currently being discussed on Twitter is BlackRock's significant purchases of Bitcoin and Ethereum. BlackRock has been making large purchases of both cryptocurrencies, with recent reports indicating purchases worth hundreds of millions of dollars. Additionally, there is discussion about BlackRock's involvement in the cryptocurrency market, including their holdings in the iShares Bitcoin Trust (IBIT) and the potential impact on the market. The community is also speculating on the implications of BlackRock's actions on the future of Bitcoin and Ethereum prices.", - data: [ - 3, 1, 2, 4, 2, 1, 34, 43, 1, 21, 0, 0, 0, 0, 0, 2, 15, 1, 1, 0, 1, 0, 0, 0, 3, 4, 1, 0, 3, - 0, 0, 0, 1, 3, 1, 2, 0, 0, 1, 1, 0, 1, 3, 0, 1, 1, 3, 0, 0, 0, 0, 1, 0, 0, 1, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,payments,issuers,usdc', - description: - "The key topics discussed in the messages from twitter are:\n1. Stablecoins thriving on Concordium\n2. Liquity team's V2 re-deployment\n3. Stablecoins being digital fiat currencies controlled by non-bankers\n4. Spending time with banks to help them understand the stablecoin ecosystem\n5. Surge in stablecoin legislation potentially impacting the altcoin casino\n6. Global Dollar Network as the fastest-growing stablecoin network\n7. Stablecoin laws fueling growth\n8. BitwiseInvest CIO's belief in stablecoin regulation driving crypto adoption\n9. Stablecoins approaching critical mass\n10. Proof of Data Possession introducing hot storage to the Filecoin network\n11. Stablecoin payments now live on Starknet\n12. Tokenized US Treasuries market surpassing $7B\n13. KuCoin enhancing point-of-sale mobile payments with AEON\n14. M0 as a universal stablecoin platform for builders to create their own digital dollar.", - data: [ - 1, 3, 2, 7, 0, 0, 0, 2, 3, 1, 3, 3, 2, 1, 3, 5, 2, 3, 1, 1, 1, 1, 2, 0, 1, 3, 3, 2, 2, 0, 0, - 3, 3, 4, 3, 3, 4, 2, 5, 3, 6, 0, 1, 0, 5, 30, 1, 1, 2, 4, 0, 5, 1, 2, 3, - ], - }, - { - label: 'PEPE', - topics: 'pepe,5pm,matt,launching,frens', - description: - "The key topics discussed in the messages from twitter are:\n- $PEPE, $MOG, $BONK, $DOGE, $XRP, $YEE, $BTC, $ETH\n- Whales withdrawing $23.63 million worth of PEPE from exchanges\n- PEPE gearing up for a bullish reversal with a rounded bottom spotted\n- Predictions and commands given by Pepe for crypto coins\n- PEPE's comeback and surge in value\n- Auction exchange bots dumping when users buy\n- Launch of SIR PEPE NFT at 7pm UTC\n\nOverall, the discussion revolves around the price movements and potential investments in various cryptocurrencies, with a focus on PEPE and its influence on the market.", - data: [ - 2, 2, 3, 1, 0, 0, 2, 2, 0, 2, 3, 4, 0, 0, 0, 0, 3, 1, 4, 9, 0, 1, 1, 3, 3, 1, 0, 1, 9, 4, 0, - 1, 3, 4, 1, 3, 26, 5, 2, 4, 1, 0, 3, 4, 2, 2, 8, 1, 0, 4, 1, 3, 2, 5, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-73.json b/priv/repo/major_topics_seed/data-73.json deleted file mode 100644 index aa72de58fa..0000000000 --- a/priv/repo/major_topics_seed/data-73.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["22.05.25","23.05.25","23.05.25","23.05.25","23.05.25","23.05.25","23.05.25","23.05.25","24.05.25","24.05.25","24.05.25","24.05.25","24.05.25","24.05.25","24.05.25","24.05.25","25.05.25","25.05.25","25.05.25","25.05.25","25.05.25","25.05.25","25.05.25","25.05.25","26.05.25","26.05.25","26.05.25","26.05.25","26.05.25","26.05.25","26.05.25","26.05.25","27.05.25","27.05.25","27.05.25","27.05.25","27.05.25","27.05.25","27.05.25","27.05.25","28.05.25","28.05.25","28.05.25","28.05.25","28.05.25","28.05.25","28.05.25","28.05.25","29.05.25","29.05.25","29.05.25","29.05.25","29.05.25","29.05.25","29.05.25"],"datasets":[{"label":"BTC","topics":"bitcoin,fiat,money,people,understand","description":"The key topics discussed in the messages from twitter about Bitcoin include:\n- Bitcoin's potential for a huge bull run\n- Concerns about BlackRock owning a significant portion of Bitcoin supply\n- Bitcoin as a form of resistance and freedom money\n- Differentiating Bitcoin from other cryptocurrencies\n- Importance of holding onto Bitcoin long-term\n- Criticism of influencers and lack of understanding about Bitcoin\n- Community dynamics and conflicts within the Bitcoin community\n- Market focus on \"number go up\" (NGU) rather than proof of reserves\n- Criticism and scrutiny of prominent figures in the Bitcoin space\n\nOverall, the messages reflect a mix of optimism, skepticism, and criticism surrounding Bitcoin and its role in the financial industry.","data":[17,5,9,15,86,66,10,11,22,16,19,18,17,5,13,18,9,12,29,19,8,10,21,10,7,19,11,8,20,10,10,14,21,9,17,27,24,16,11,22,25,29,32,15,10,24,19,27,14,16,17,10,15,10,22]},{"label":"BTC Price","topics":"btc,higher,ath,110k,bitcoin","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin price predictions and market analysis\n- Potential for Bitcoin to reach $1 million in the future\n- Altcoins and meme coins investment strategies\n- Comparison of crypto cycles and market trends\n- Bitcoin's performance relative to traditional markets like the S&P 500\n\nOverall, the sentiment in the messages seems to be bullish on Bitcoin and the crypto market, with discussions about potential price increases and investment opportunities.","data":[8,5,9,17,89,64,12,42,28,12,19,21,18,10,9,11,8,12,11,8,13,16,10,58,9,12,10,4,18,11,5,12,16,18,19,12,4,29,15,21,15,32,16,16,8,16,15,14,17,4,4,21,9,18,8]},{"label":"AI","topics":"ai,agents,intelligence,decentralized,models","description":"The key topics currently discussed in the messages from twitter about the crypto industry include:\n- The impact of AI on job creation and potential job loss\n- The advancement of AI technology and its implications on society\n- The integration of AI in various industries, such as finance and entertainment\n- The development of AI tools for design and creativity\n- The importance of trust and decentralization in AI technology\n- The potential for AI to enhance user experiences and interactions\n- The rapid progress and evolution of AI technology\n- The intersection of AI and other emerging technologies, such as nanotechnology\n- The role of AI in shaping the future of work and innovation\n- The collaboration between AI startups and established companies in the tech industry\n\nOverall, the discussions on social media platforms highlight the growing influence and potential of AI in various aspects of society and the economy.","data":[39,73,18,17,3,1,6,18,5,9,6,14,10,20,13,14,9,13,10,15,26,5,13,11,14,22,20,10,5,7,10,14,20,10,11,13,9,15,11,22,22,16,12,15,12,5,19,22,8,9,20,22,13,13,11]},{"label":"ETH","topics":"eth,ethereum,resistance,breakout,3000","description":"The key topics discussed in the messages from twitter about $ETH (Ethereum) include:\n1. Ethereum's price movement and potential breakout above $3,000.\n2. Ethereum's performance compared to Bitcoin in Q2.\n3. Speculation about Ethereum's target price for 2025, with some predicting $10,000.\n4. Ethereum's open interest hitting a new all-time high.\n5. Analysis of Ethereum's Elliott Wave pattern and potential wave 5 extension.\n6. Discussion about Ethereum Treasury Strategy being incorporated by a company.\n7. Technical analysis indicating a bull pennant breakout and potential pump incoming.\n8. Comparison of Ethereum's price to the 200 EMA as a retracement level.\n9. Mention of GALA token coiling up near a major resistance in a symmetrical triangle.\n10. Speculation about a potential 10% pump in the price of $ELA (Elastos) in the next 4-8 hours.\n\nOverall, the sentiment towards Ethereum appears to be positive, with discussions focusing on potential price movements, technical analysis, and market trends.","data":[6,5,6,10,1,1,9,14,28,10,6,7,11,8,3,11,141,9,20,7,19,15,10,17,5,13,7,12,6,21,12,14,18,1,13,18,8,12,18,13,23,9,17,15,12,17,10,9,13,6,9,7,7,12,11]},{"label":"Bitcoin Conference 2025 in Las Vegas","topics":"vegas,conference,las,thebitcoinconf,2025","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- The upcoming Bitcoin Conference 2025 in Las Vegas\n- Various speakers and presentations at the conference\n- Announcements and product launches at the conference\n- Networking opportunities and connections at the conference\n- Discussions about Bitcoin price and market trends\n- Mention of specific companies and individuals attending the conference\n- Excitement and anticipation for the conference\n- Calls to action to attend or participate in the conference\n\nOverall, the messages reflect a high level of interest and engagement in the crypto industry, particularly around the Bitcoin Conference 2025 event.","data":[4,4,10,16,12,11,2,4,0,5,16,27,5,15,3,10,6,7,14,5,18,19,20,15,7,7,14,11,13,7,9,7,7,4,8,8,11,6,8,7,9,8,7,7,15,8,13,5,12,3,6,5,16,21,22]},{"label":"GameFi","topics":"game,gaming,games,play,gamefi","description":"The key topics discussed in the messages from twitter are related to the crypto industry, blockchain gaming, NFTs, Play-to-Earn games, and new game releases. Some specific words mentioned include crypto, bitcoin, game industry, NFT sales, Alien Legends, PlayZap Games, Syndicate of Vigilantes, Genome, Degen Arena, GameFi, Ronin ecosystem, Axie NFT airdrops, Alien Worlds, Sushi Match, and Google Play. The messages also mention partnerships, new developments, updates, and community involvement in various gaming projects within the crypto space.","data":[9,4,6,4,1,1,3,2,1,9,5,6,5,6,7,8,3,6,4,50,10,11,8,2,6,6,7,3,8,10,6,4,9,11,9,6,28,6,3,12,4,6,1,7,5,4,5,5,5,5,5,2,9,13,8]},{"label":"SOL","topics":"solana,sol,metamask,strategies,multichain","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana's Alpenglow upgrade and shift to proof-of-stake\n- Solana's potential price targets, with Standard Chartered setting targets at $275 by 2025 and $500 by 2029\n- Institutional adoption of Solana, with two publicly traded firms revealing major initiatives centered around the platform\n- Solana's integration with MetaMask and rising DeFi traction\n- Solana's potential breakout above $178 and magnet towards $200\n- Solayer bringing onchain finance to Base powered by Wormhole NTT\n- Discussion and comparison of prominent Twitter posters in the crypto community\n- Sol Strategies' holdings and staked SOL amounts\n- Singaporean investors' bullishness and adoption of Ethereum, XRP, Solana, and Dogecoin\n\nOverall, the sentiment around Solana appears to be positive, with discussions focusing on its technological advancements, price potential, institutional adoption, and integration with other platforms.","data":[8,7,6,6,2,2,3,6,7,9,7,5,4,3,6,4,6,12,6,5,4,6,2,9,4,6,10,7,6,11,9,8,2,8,3,6,6,8,6,3,7,3,12,29,7,9,8,5,9,4,5,5,4,6,5]},{"label":"Art","topics":"art,artists,piece,digital,collection","description":"The key topics discussed in the messages from twitter are:\n1. Art installations and collectibles\n2. Digital collectibles and NFTs\n3. Blackboard art by a Japanese high school teacher\n4. Modern art as a tax avoidance scheme\n5. Lacquer line carving as a traditional art form\n6. Oil painting by @YungGucciT\n7. Promoting art and feeling unmotivated in the rat race\n\nOverall, the messages reflect a diverse range of discussions related to art, collectibles, and the crypto industry.","data":[5,9,57,8,0,0,0,2,4,9,9,4,7,3,2,6,1,4,12,8,6,10,6,3,6,2,3,1,6,3,3,6,7,5,6,3,7,6,5,3,4,2,8,7,2,6,2,11,9,4,1,5,8,4,8]},{"label":"DeFi","topics":"defi,spark,tron,liquidity,ecosystem","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin DeFi: There is a lot of excitement around Bitcoin DeFi and its potential impact on the industry. Projects like Cardano Safe DeFi and OP_NET are mentioned as key players in this space.\n\n2. Trust in DeFi: Trust is highlighted as a crucial factor in the success of DeFi projects, with mentions of projects like TRON and SparkFi building trust within their communities.\n\n3. DeFi integrations: There is a focus on DeFi integrations with platforms like Zapper and MotoswapBTC, with the goal of automating DeFi protocol balances for users.\n\n4. Mitosis: A project tackling DeFi's biggest problems such as unstable liquidity and poor user experience is gaining attention for its potential to drive sustainable growth in the industry.\n\n5. USDDIO on TRON: The flexible minting options and attractive yields offered by USDDIO on TRON are highlighted as a way to maximize DeFi potential for users.\n\n6. Ethereum Foundation in DeFi: The Ethereum Foundation's involvement in DeFi, specifically a $2M GHO loan on Aave backed by wETH, is sparking discussions about the implications of leveraging without selling ETH.\n\n7. DeFi summer: The upcoming DeFi summer is anticipated, with projects like SparkFi being touted for their high TVL, stablecoin yields, and USDS deployment.\n\n8. Stellar DeFi: Stellar DeFi is highlighted for its real impact and trust in the industry, with impressive statistics on total operations and network stability.\n\n9. DeFiChain delisting: Concerns about market liquidity have led to the potential delisting of DeFiChain (DFI) from certain platforms, sparking transparency discussions within the community.\n\n10. DeFi spending: Analysis of DeFi project spending and headcount reveals varying approaches, with some projects like SKY and AAVE investing heavily in their teams while others like SUSHI and BADGER keep it lean.\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and analysis surrounding key topics in the crypto industry, highlighting the diverse perspectives and developments shaping the DeFi landscape.","data":[5,3,1,4,2,0,3,6,2,5,5,7,7,22,5,10,9,4,8,5,3,2,6,6,5,6,9,5,5,7,2,4,6,8,3,6,1,2,4,6,4,4,1,3,17,7,2,1,7,1,4,3,3,3,4]},{"label":"Memecoins","topics":"meme,memecoin,memes,coins,coin","description":"The key topics currently discussed in the messages from twitter about the crypto industry are meme coins, specifically $ETH, Tron, $1B meme coins, meme coin trends, meme coin investments, meme coin contests, risks of investing in meme coins, new meme coins, meme coins fueling new crypto investors, potential profits from meme coins, favorite dog coins and memecoins, and chart analysis for profit. The messages also mention specific meme coins such as $izzy, $MONG, $hype, $GENKI, $PEPE, and $DOGE. Overall, the discussion revolves around the popularity, trends, investments, risks, and potential gains associated with meme coins in the crypto industry.","data":[4,1,3,1,0,0,1,1,3,5,10,2,1,4,7,4,1,3,5,4,3,8,3,5,3,6,6,2,7,6,4,57,3,4,2,3,6,5,4,5,3,6,3,4,1,3,6,12,3,4,6,4,3,6,1]},{"label":"XRP","topics":"xrp,ripple,etf,sec,odds","description":"The key topics currently discussed in the crypto industry on Twitter include XRP ETF approval updates, XRP Ledger establishing itself as the infrastructure layer for institutional DeFi, warnings for XRP holders to avoid a Mt. Gox Bitcoin collapse scenario, discussions on XRP decentralization, next steps for XRP holders if price hits $100, Ripple's legal setback in the XRP case, XRP's resurgence as a finance building block, Brad Garlinghouse discussing how ETFs are opening up cryptocurrencies to Wall Street, XRP heating up with new products and ETF buzz, the benefits of suppressing XRP's price, SEC advancing the review of WisdomTree's XRP ETF, VivoPower International developing a solar farm to mine Dogecoin and Litecoin, Arbitrum's ARB retesting bullish patterns, and reasons why XRP could reach $10.","data":[3,6,4,8,1,0,5,3,2,4,6,2,2,2,5,2,16,11,5,8,4,0,3,5,3,5,4,6,2,1,1,2,2,6,7,4,1,17,8,5,12,8,4,5,4,6,5,1,1,2,3,8,2,6,3]},{"label":"HYPE","topics":"hyperliquid,hype,hyperliquidx,hyper,evm","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Hyperliquid and its token $HYPE\n- Leveraged trading and market volatility\n- Comparison between different cryptocurrencies and their potential for growth\n- Interoperability and stablecoin money markets\n- Whale activity and its impact on token prices\n- Airdrops and farming opportunities on Hyperliquid\n- Copy trading and its benefits\n- Updates and developments on Hyperdrive\n- Potential competition between different crypto projects\n- Recommendations for trading strategies and investments\n\nOverall, the sentiment seems to be positive towards Hyperliquid and its associated tokens, with users discussing various ways to maximize profits and take advantage of the current market conditions.","data":[3,0,0,2,1,0,1,1,7,3,4,3,1,0,0,7,3,3,3,1,2,8,2,2,81,2,1,3,5,8,3,0,6,1,2,3,2,1,3,4,4,1,2,2,1,3,3,4,4,0,6,3,5,1,2]},{"label":"ETF Flows","topics":"etfs,inflows,inflow,etf,net","description":"The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin and Ethereum ETFs, with a focus on institutional investments. The messages highlight the record-breaking inflows into digital asset funds, particularly Bitcoin, which led with $2.9 billion in inflows. Ethereum also saw substantial inflows of $326 million. Additionally, there is mention of XRP breaking an 80-week inflow streak with $37.2 million in outflows. The messages also discuss the approval of U.S. spot ETH ETFs one year ago and the continuous streak of net inflows into Bitcoin and Ethereum spot ETFs. Overall, the focus is on the increasing institutional interest and investment in Bitcoin and Ethereum ETFs.","data":[2,0,0,1,8,5,5,4,17,1,2,2,8,4,8,1,38,0,4,0,0,1,0,5,7,12,0,6,2,0,2,3,1,4,9,1,1,1,0,3,2,1,6,0,21,2,2,2,3,1,6,1,0,5,1]},{"label":"Whales","topics":"whale,whales,position,long,opened","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Hyperliquid whale facing liquidation if Bitcoin goes under $101,000\n- Crypto whales being the biggest degens and accumulating massive amounts of Ethereum\n- Whale activity increasing and facing selling pressure on Ethereum\n- Bitcoin whales buying $8.5B in BTC as price eyes $110K breakout\n- Whale \"0x33f7\" depositing all 722,416 #LINK ($11.11M) to Binance\n- Massive short positions being built by whales like James Wynn\n- Discussion on how whales built their wealth and investing alongside them\n- New all-time high on $BTC and potential correction\n- Hyperliquid whale craziness and speculation on market movements\n\nThese topics indicate a mix of market analysis, whale behavior, and speculation on price movements in the crypto industry.","data":[4,2,0,2,10,18,12,9,12,3,4,4,1,1,4,0,3,1,1,0,1,0,2,1,9,4,0,2,3,6,1,3,3,2,4,0,2,2,4,0,1,1,3,2,2,0,1,1,1,2,3,2,3,44,1]},{"label":"LOUD","topics":"loud,stayloudio,loudio,mindshare,kaitoai","description":"The key topic discussed in the messages from twitter is the cryptocurrency project called Loudio ($LOUD) and its associated platform Stay Loudio. Users are discussing various aspects of the project, such as completing challenges to earn rewards, participating in presale drops, trading incentives, and the mechanics of the project. Some users are excited about the potential of Loudio and Stay Loudio, while others are skeptical and critical of the project. Overall, the community seems to be actively engaged and passionate about Loudio and Stay Loudio.","data":[2,1,3,4,0,0,2,1,0,4,2,2,3,3,3,2,2,2,8,0,8,4,5,5,1,5,5,2,3,34,0,4,7,1,1,4,4,5,1,2,2,3,7,8,0,5,1,4,6,0,5,1,7,2,7]},{"label":"GameStop","topics":"gamestop,gme,purchased,purchase,bought","description":"The key topic discussed in the messages from Twitter is GameStop's confirmation of a $513 million Bitcoin investment. GameStop has acquired 4,710 BTC, joining other public companies in adding Bitcoin to their balance sheets. This move is seen as a signal of confidence in the crypto industry and has been described as \"massive\" and \"extremely bullish for Bitcoin.\" However, some reactions to GameStop's purchase have been underwhelming, with criticism of the company's communication and the amount of Bitcoin purchased. Overall, GameStop's entry into the crypto market has sparked discussion and speculation among social media users.","data":[7,7,0,1,0,0,14,4,10,0,1,2,4,1,1,3,0,2,3,52,14,2,1,3,2,1,0,1,3,2,3,4,2,3,1,1,0,0,9,1,4,3,1,1,2,2,2,2,2,1,0,1,1,0,1]},{"label":"KAITO","topics":"kaito,leaderboard,kaitoai,arbitrum,yappers","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Engagement in various campaigns and competitions on platforms like KaitoAI and Novastro_xyz\n- Community members earning rewards through staking and participating in airdrops\n- Excitement over new developments and changes in the industry, such as the use of Kaito AI and the emergence of new leaders on leaderboards\n- Speculation and optimism about the potential success of certain projects, such as $Komugi CTO\n- Discussions about the benefits and features of using certain technologies, like Skate_Chain and Kaito AI\n- Information sharing about rewards, payouts, and conditions for participating in various activities\n- Encouragement for community members to actively participate and engage in campaigns and competitions to earn rewards\n- Updates on leaderboard standings and achievements by community members\n- Challenges and obstacles faced by community members, such as difficulties in earning points or staking tokens\n- Calls to action for community members to join and participate in specific campaigns and competitions, such as the Arbitrum x KaitoAI Leaderboard\n\nOverall, the sentiment in the crypto community seems to be positive and enthusiastic, with a focus on engagement, rewards, and community building.","data":[3,8,4,5,1,0,2,0,0,5,3,6,4,2,0,8,1,3,3,1,3,2,4,0,1,3,2,2,4,4,0,0,2,4,4,7,2,1,3,5,2,2,1,2,4,2,3,1,5,0,1,3,2,5,15]},{"label":"NFT","topics":"nft,nfts,mint,pfp,collection","description":"The key topics discussed in the messages from Twitter are:\n1. NFT projects showing strong momentum and potential for growth in the current market\n2. Buying NFTs on HyperliquidX\n3. Minting NFTs on Rarible\n4. Excitement about upcoming NFT launches\n5. Discussion about the next NFT bull market\n6. Opinions on the current state of the NFT market\n7. SunDog Poo NFT launch\n8. Minting Atlantis NFTs on AtlantisDEX_xyz\n9. Popkins Unleashed mint on SUI by Claynosaurz\n10. Glitch art evolution and minting\n11. FELIX mint launch on monad_xyz testnet\n\nOverall, the messages indicate a high level of interest and activity in the NFT space, with discussions ranging from specific projects to market trends and upcoming launches.","data":[1,1,1,3,1,0,0,0,5,1,7,3,2,0,3,1,2,4,3,1,2,5,2,2,2,2,2,1,3,5,6,11,6,6,6,0,3,2,1,5,1,3,2,1,2,1,0,2,3,1,2,1,5,3,1]},{"label":"VIRTUAL ","topics":"virtualsio,virtuals,points,virtual,genesis","description":"The key topics discussed in the messages from Twitter are:\n- Virtuals_io ecosystem and its Genesis Launches game\n- Pre-sale for socialsrising and $FAKE on AbstractChain\n- Trust in focusing on building a solid product for Virtuals_io\n- Potential listing of $VIRTUAL on CoinbaseAssets\n- Stake and earn opportunities with Virtuals_io and Capminal\n- Virgen points and airdrop rewards\n- Participation in Virtuals_io challenges and staking\n- Swidging USDT to $VIRTUAL for maximizing daily points\n- Staking $G3 on Virtuals_io\n- Integration of $CAP Points with Virtuals_io Agent Staking\n- The concept of a Virtuals_io flywheel to \"print money\"\n- Discussions about Virtuals being a ponzi point system\n- Personal experiences and wins from participating in Virtuals_io activities\n\nOverall, the messages reflect a high level of engagement and interest in the Virtuals_io ecosystem, with users actively participating in various activities and discussions related to the platform.","data":[1,1,1,1,0,0,5,0,1,0,2,1,2,8,0,1,0,0,0,2,11,3,3,3,3,1,2,2,1,1,1,1,1,3,2,6,3,3,1,0,0,2,2,4,5,1,3,2,5,0,5,10,19,0,1]},{"label":"James Wynn","topics":"wynn,james,position,liquidation,long","description":"NEWS FLASH: James Wynn, a prominent figure in the crypto industry, has been making significant moves in the market. He recently fully liquidated his $1.2 billion Bitcoin position on Hyperliquid, sparking discussions and speculation among the community. Wynn has been actively trading large sums of Bitcoin, with his latest actions including opening a $75 million Bitcoin long position and increasing it to $622 million at peak levels. However, his trading journey has not been without setbacks, as he experienced losses and had to reduce his long position from $750 million to $375 million, taking a loss of $4.7 million. Despite these challenges, Wynn continues to hold a long position on Bitcoin worth $371 million, with the risk of being liquidated if Bitcoin drops below a certain price. The community has been closely following Wynn's trades and discussing his strategies, with some expressing admiration for his bold moves while others caution against blindly following his actions. Overall, James Wynn's trading activities have been a topic of interest and debate within the crypto community, showcasing the highs and lows of trading in the volatile market.","data":[5,0,0,1,4,1,4,2,1,0,12,0,3,1,1,1,1,0,0,1,2,3,3,1,3,3,2,1,4,7,4,1,3,2,4,1,2,2,1,3,1,3,1,1,0,2,7,4,0,3,3,4,4,2,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-73.ts b/priv/repo/major_topics_seed/data-73.ts deleted file mode 100644 index f84ce6bd30..0000000000 --- a/priv/repo/major_topics_seed/data-73.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '22.05.25', - '23.05.25', - '23.05.25', - '23.05.25', - '23.05.25', - '23.05.25', - '23.05.25', - '23.05.25', - '24.05.25', - '24.05.25', - '24.05.25', - '24.05.25', - '24.05.25', - '24.05.25', - '24.05.25', - '24.05.25', - '25.05.25', - '25.05.25', - '25.05.25', - '25.05.25', - '25.05.25', - '25.05.25', - '25.05.25', - '25.05.25', - '26.05.25', - '26.05.25', - '26.05.25', - '26.05.25', - '26.05.25', - '26.05.25', - '26.05.25', - '26.05.25', - '27.05.25', - '27.05.25', - '27.05.25', - '27.05.25', - '27.05.25', - '27.05.25', - '27.05.25', - '27.05.25', - '28.05.25', - '28.05.25', - '28.05.25', - '28.05.25', - '28.05.25', - '28.05.25', - '28.05.25', - '28.05.25', - '29.05.25', - '29.05.25', - '29.05.25', - '29.05.25', - '29.05.25', - '29.05.25', - '29.05.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,fiat,money,people,understand', - description: - 'The key topics discussed in the messages from twitter about Bitcoin include:\n- Bitcoin\'s potential for a huge bull run\n- Concerns about BlackRock owning a significant portion of Bitcoin supply\n- Bitcoin as a form of resistance and freedom money\n- Differentiating Bitcoin from other cryptocurrencies\n- Importance of holding onto Bitcoin long-term\n- Criticism of influencers and lack of understanding about Bitcoin\n- Community dynamics and conflicts within the Bitcoin community\n- Market focus on "number go up" (NGU) rather than proof of reserves\n- Criticism and scrutiny of prominent figures in the Bitcoin space\n\nOverall, the messages reflect a mix of optimism, skepticism, and criticism surrounding Bitcoin and its role in the financial industry.', - data: [ - 17, 5, 9, 15, 86, 66, 10, 11, 22, 16, 19, 18, 17, 5, 13, 18, 9, 12, 29, 19, 8, 10, 21, 10, - 7, 19, 11, 8, 20, 10, 10, 14, 21, 9, 17, 27, 24, 16, 11, 22, 25, 29, 32, 15, 10, 24, 19, 27, - 14, 16, 17, 10, 15, 10, 22, - ], - }, - { - label: 'BTC Price', - topics: 'btc,higher,ath,110k,bitcoin', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Bitcoin price predictions and market analysis\n- Potential for Bitcoin to reach $1 million in the future\n- Altcoins and meme coins investment strategies\n- Comparison of crypto cycles and market trends\n- Bitcoin's performance relative to traditional markets like the S&P 500\n\nOverall, the sentiment in the messages seems to be bullish on Bitcoin and the crypto market, with discussions about potential price increases and investment opportunities.", - data: [ - 8, 5, 9, 17, 89, 64, 12, 42, 28, 12, 19, 21, 18, 10, 9, 11, 8, 12, 11, 8, 13, 16, 10, 58, 9, - 12, 10, 4, 18, 11, 5, 12, 16, 18, 19, 12, 4, 29, 15, 21, 15, 32, 16, 16, 8, 16, 15, 14, 17, - 4, 4, 21, 9, 18, 8, - ], - }, - { - label: 'AI', - topics: 'ai,agents,intelligence,decentralized,models', - description: - 'The key topics currently discussed in the messages from twitter about the crypto industry include:\n- The impact of AI on job creation and potential job loss\n- The advancement of AI technology and its implications on society\n- The integration of AI in various industries, such as finance and entertainment\n- The development of AI tools for design and creativity\n- The importance of trust and decentralization in AI technology\n- The potential for AI to enhance user experiences and interactions\n- The rapid progress and evolution of AI technology\n- The intersection of AI and other emerging technologies, such as nanotechnology\n- The role of AI in shaping the future of work and innovation\n- The collaboration between AI startups and established companies in the tech industry\n\nOverall, the discussions on social media platforms highlight the growing influence and potential of AI in various aspects of society and the economy.', - data: [ - 39, 73, 18, 17, 3, 1, 6, 18, 5, 9, 6, 14, 10, 20, 13, 14, 9, 13, 10, 15, 26, 5, 13, 11, 14, - 22, 20, 10, 5, 7, 10, 14, 20, 10, 11, 13, 9, 15, 11, 22, 22, 16, 12, 15, 12, 5, 19, 22, 8, - 9, 20, 22, 13, 13, 11, - ], - }, - { - label: 'ETH', - topics: 'eth,ethereum,resistance,breakout,3000', - description: - "The key topics discussed in the messages from twitter about $ETH (Ethereum) include:\n1. Ethereum's price movement and potential breakout above $3,000.\n2. Ethereum's performance compared to Bitcoin in Q2.\n3. Speculation about Ethereum's target price for 2025, with some predicting $10,000.\n4. Ethereum's open interest hitting a new all-time high.\n5. Analysis of Ethereum's Elliott Wave pattern and potential wave 5 extension.\n6. Discussion about Ethereum Treasury Strategy being incorporated by a company.\n7. Technical analysis indicating a bull pennant breakout and potential pump incoming.\n8. Comparison of Ethereum's price to the 200 EMA as a retracement level.\n9. Mention of GALA token coiling up near a major resistance in a symmetrical triangle.\n10. Speculation about a potential 10% pump in the price of $ELA (Elastos) in the next 4-8 hours.\n\nOverall, the sentiment towards Ethereum appears to be positive, with discussions focusing on potential price movements, technical analysis, and market trends.", - data: [ - 6, 5, 6, 10, 1, 1, 9, 14, 28, 10, 6, 7, 11, 8, 3, 11, 141, 9, 20, 7, 19, 15, 10, 17, 5, 13, - 7, 12, 6, 21, 12, 14, 18, 1, 13, 18, 8, 12, 18, 13, 23, 9, 17, 15, 12, 17, 10, 9, 13, 6, 9, - 7, 7, 12, 11, - ], - }, - { - label: 'Bitcoin Conference 2025 in Las Vegas', - topics: 'vegas,conference,las,thebitcoinconf,2025', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include:\n- The upcoming Bitcoin Conference 2025 in Las Vegas\n- Various speakers and presentations at the conference\n- Announcements and product launches at the conference\n- Networking opportunities and connections at the conference\n- Discussions about Bitcoin price and market trends\n- Mention of specific companies and individuals attending the conference\n- Excitement and anticipation for the conference\n- Calls to action to attend or participate in the conference\n\nOverall, the messages reflect a high level of interest and engagement in the crypto industry, particularly around the Bitcoin Conference 2025 event.', - data: [ - 4, 4, 10, 16, 12, 11, 2, 4, 0, 5, 16, 27, 5, 15, 3, 10, 6, 7, 14, 5, 18, 19, 20, 15, 7, 7, - 14, 11, 13, 7, 9, 7, 7, 4, 8, 8, 11, 6, 8, 7, 9, 8, 7, 7, 15, 8, 13, 5, 12, 3, 6, 5, 16, 21, - 22, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,gamefi', - description: - 'The key topics discussed in the messages from twitter are related to the crypto industry, blockchain gaming, NFTs, Play-to-Earn games, and new game releases. Some specific words mentioned include crypto, bitcoin, game industry, NFT sales, Alien Legends, PlayZap Games, Syndicate of Vigilantes, Genome, Degen Arena, GameFi, Ronin ecosystem, Axie NFT airdrops, Alien Worlds, Sushi Match, and Google Play. The messages also mention partnerships, new developments, updates, and community involvement in various gaming projects within the crypto space.', - data: [ - 9, 4, 6, 4, 1, 1, 3, 2, 1, 9, 5, 6, 5, 6, 7, 8, 3, 6, 4, 50, 10, 11, 8, 2, 6, 6, 7, 3, 8, - 10, 6, 4, 9, 11, 9, 6, 28, 6, 3, 12, 4, 6, 1, 7, 5, 4, 5, 5, 5, 5, 5, 2, 9, 13, 8, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,metamask,strategies,multichain', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana's Alpenglow upgrade and shift to proof-of-stake\n- Solana's potential price targets, with Standard Chartered setting targets at $275 by 2025 and $500 by 2029\n- Institutional adoption of Solana, with two publicly traded firms revealing major initiatives centered around the platform\n- Solana's integration with MetaMask and rising DeFi traction\n- Solana's potential breakout above $178 and magnet towards $200\n- Solayer bringing onchain finance to Base powered by Wormhole NTT\n- Discussion and comparison of prominent Twitter posters in the crypto community\n- Sol Strategies' holdings and staked SOL amounts\n- Singaporean investors' bullishness and adoption of Ethereum, XRP, Solana, and Dogecoin\n\nOverall, the sentiment around Solana appears to be positive, with discussions focusing on its technological advancements, price potential, institutional adoption, and integration with other platforms.", - data: [ - 8, 7, 6, 6, 2, 2, 3, 6, 7, 9, 7, 5, 4, 3, 6, 4, 6, 12, 6, 5, 4, 6, 2, 9, 4, 6, 10, 7, 6, 11, - 9, 8, 2, 8, 3, 6, 6, 8, 6, 3, 7, 3, 12, 29, 7, 9, 8, 5, 9, 4, 5, 5, 4, 6, 5, - ], - }, - { - label: 'Art', - topics: 'art,artists,piece,digital,collection', - description: - 'The key topics discussed in the messages from twitter are:\n1. Art installations and collectibles\n2. Digital collectibles and NFTs\n3. Blackboard art by a Japanese high school teacher\n4. Modern art as a tax avoidance scheme\n5. Lacquer line carving as a traditional art form\n6. Oil painting by @YungGucciT\n7. Promoting art and feeling unmotivated in the rat race\n\nOverall, the messages reflect a diverse range of discussions related to art, collectibles, and the crypto industry.', - data: [ - 5, 9, 57, 8, 0, 0, 0, 2, 4, 9, 9, 4, 7, 3, 2, 6, 1, 4, 12, 8, 6, 10, 6, 3, 6, 2, 3, 1, 6, 3, - 3, 6, 7, 5, 6, 3, 7, 6, 5, 3, 4, 2, 8, 7, 2, 6, 2, 11, 9, 4, 1, 5, 8, 4, 8, - ], - }, - { - label: 'DeFi', - topics: 'defi,spark,tron,liquidity,ecosystem', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin DeFi: There is a lot of excitement around Bitcoin DeFi and its potential impact on the industry. Projects like Cardano Safe DeFi and OP_NET are mentioned as key players in this space.\n\n2. Trust in DeFi: Trust is highlighted as a crucial factor in the success of DeFi projects, with mentions of projects like TRON and SparkFi building trust within their communities.\n\n3. DeFi integrations: There is a focus on DeFi integrations with platforms like Zapper and MotoswapBTC, with the goal of automating DeFi protocol balances for users.\n\n4. Mitosis: A project tackling DeFi's biggest problems such as unstable liquidity and poor user experience is gaining attention for its potential to drive sustainable growth in the industry.\n\n5. USDDIO on TRON: The flexible minting options and attractive yields offered by USDDIO on TRON are highlighted as a way to maximize DeFi potential for users.\n\n6. Ethereum Foundation in DeFi: The Ethereum Foundation's involvement in DeFi, specifically a $2M GHO loan on Aave backed by wETH, is sparking discussions about the implications of leveraging without selling ETH.\n\n7. DeFi summer: The upcoming DeFi summer is anticipated, with projects like SparkFi being touted for their high TVL, stablecoin yields, and USDS deployment.\n\n8. Stellar DeFi: Stellar DeFi is highlighted for its real impact and trust in the industry, with impressive statistics on total operations and network stability.\n\n9. DeFiChain delisting: Concerns about market liquidity have led to the potential delisting of DeFiChain (DFI) from certain platforms, sparking transparency discussions within the community.\n\n10. DeFi spending: Analysis of DeFi project spending and headcount reveals varying approaches, with some projects like SKY and AAVE investing heavily in their teams while others like SUSHI and BADGER keep it lean.\n\nOverall, the discussions on Twitter reflect a mix of excitement, caution, and analysis surrounding key topics in the crypto industry, highlighting the diverse perspectives and developments shaping the DeFi landscape.", - data: [ - 5, 3, 1, 4, 2, 0, 3, 6, 2, 5, 5, 7, 7, 22, 5, 10, 9, 4, 8, 5, 3, 2, 6, 6, 5, 6, 9, 5, 5, 7, - 2, 4, 6, 8, 3, 6, 1, 2, 4, 6, 4, 4, 1, 3, 17, 7, 2, 1, 7, 1, 4, 3, 3, 3, 4, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,coins,coin', - description: - 'The key topics currently discussed in the messages from twitter about the crypto industry are meme coins, specifically $ETH, Tron, $1B meme coins, meme coin trends, meme coin investments, meme coin contests, risks of investing in meme coins, new meme coins, meme coins fueling new crypto investors, potential profits from meme coins, favorite dog coins and memecoins, and chart analysis for profit. The messages also mention specific meme coins such as $izzy, $MONG, $hype, $GENKI, $PEPE, and $DOGE. Overall, the discussion revolves around the popularity, trends, investments, risks, and potential gains associated with meme coins in the crypto industry.', - data: [ - 4, 1, 3, 1, 0, 0, 1, 1, 3, 5, 10, 2, 1, 4, 7, 4, 1, 3, 5, 4, 3, 8, 3, 5, 3, 6, 6, 2, 7, 6, - 4, 57, 3, 4, 2, 3, 6, 5, 4, 5, 3, 6, 3, 4, 1, 3, 6, 12, 3, 4, 6, 4, 3, 6, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,etf,sec,odds', - description: - "The key topics currently discussed in the crypto industry on Twitter include XRP ETF approval updates, XRP Ledger establishing itself as the infrastructure layer for institutional DeFi, warnings for XRP holders to avoid a Mt. Gox Bitcoin collapse scenario, discussions on XRP decentralization, next steps for XRP holders if price hits $100, Ripple's legal setback in the XRP case, XRP's resurgence as a finance building block, Brad Garlinghouse discussing how ETFs are opening up cryptocurrencies to Wall Street, XRP heating up with new products and ETF buzz, the benefits of suppressing XRP's price, SEC advancing the review of WisdomTree's XRP ETF, VivoPower International developing a solar farm to mine Dogecoin and Litecoin, Arbitrum's ARB retesting bullish patterns, and reasons why XRP could reach $10.", - data: [ - 3, 6, 4, 8, 1, 0, 5, 3, 2, 4, 6, 2, 2, 2, 5, 2, 16, 11, 5, 8, 4, 0, 3, 5, 3, 5, 4, 6, 2, 1, - 1, 2, 2, 6, 7, 4, 1, 17, 8, 5, 12, 8, 4, 5, 4, 6, 5, 1, 1, 2, 3, 8, 2, 6, 3, - ], - }, - { - label: 'HYPE', - topics: 'hyperliquid,hype,hyperliquidx,hyper,evm', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Hyperliquid and its token $HYPE\n- Leveraged trading and market volatility\n- Comparison between different cryptocurrencies and their potential for growth\n- Interoperability and stablecoin money markets\n- Whale activity and its impact on token prices\n- Airdrops and farming opportunities on Hyperliquid\n- Copy trading and its benefits\n- Updates and developments on Hyperdrive\n- Potential competition between different crypto projects\n- Recommendations for trading strategies and investments\n\nOverall, the sentiment seems to be positive towards Hyperliquid and its associated tokens, with users discussing various ways to maximize profits and take advantage of the current market conditions.', - data: [ - 3, 0, 0, 2, 1, 0, 1, 1, 7, 3, 4, 3, 1, 0, 0, 7, 3, 3, 3, 1, 2, 8, 2, 2, 81, 2, 1, 3, 5, 8, - 3, 0, 6, 1, 2, 3, 2, 1, 3, 4, 4, 1, 2, 2, 1, 3, 3, 4, 4, 0, 6, 3, 5, 1, 2, - ], - }, - { - label: 'ETF Flows', - topics: 'etfs,inflows,inflow,etf,net', - description: - 'The key topic discussed in the messages from Twitter is the significant inflows into Bitcoin and Ethereum ETFs, with a focus on institutional investments. The messages highlight the record-breaking inflows into digital asset funds, particularly Bitcoin, which led with $2.9 billion in inflows. Ethereum also saw substantial inflows of $326 million. Additionally, there is mention of XRP breaking an 80-week inflow streak with $37.2 million in outflows. The messages also discuss the approval of U.S. spot ETH ETFs one year ago and the continuous streak of net inflows into Bitcoin and Ethereum spot ETFs. Overall, the focus is on the increasing institutional interest and investment in Bitcoin and Ethereum ETFs.', - data: [ - 2, 0, 0, 1, 8, 5, 5, 4, 17, 1, 2, 2, 8, 4, 8, 1, 38, 0, 4, 0, 0, 1, 0, 5, 7, 12, 0, 6, 2, 0, - 2, 3, 1, 4, 9, 1, 1, 1, 0, 3, 2, 1, 6, 0, 21, 2, 2, 2, 3, 1, 6, 1, 0, 5, 1, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,position,long,opened', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Hyperliquid whale facing liquidation if Bitcoin goes under $101,000\n- Crypto whales being the biggest degens and accumulating massive amounts of Ethereum\n- Whale activity increasing and facing selling pressure on Ethereum\n- Bitcoin whales buying $8.5B in BTC as price eyes $110K breakout\n- Whale "0x33f7" depositing all 722,416 #LINK ($11.11M) to Binance\n- Massive short positions being built by whales like James Wynn\n- Discussion on how whales built their wealth and investing alongside them\n- New all-time high on $BTC and potential correction\n- Hyperliquid whale craziness and speculation on market movements\n\nThese topics indicate a mix of market analysis, whale behavior, and speculation on price movements in the crypto industry.', - data: [ - 4, 2, 0, 2, 10, 18, 12, 9, 12, 3, 4, 4, 1, 1, 4, 0, 3, 1, 1, 0, 1, 0, 2, 1, 9, 4, 0, 2, 3, - 6, 1, 3, 3, 2, 4, 0, 2, 2, 4, 0, 1, 1, 3, 2, 2, 0, 1, 1, 1, 2, 3, 2, 3, 44, 1, - ], - }, - { - label: 'LOUD', - topics: 'loud,stayloudio,loudio,mindshare,kaitoai', - description: - 'The key topic discussed in the messages from twitter is the cryptocurrency project called Loudio ($LOUD) and its associated platform Stay Loudio. Users are discussing various aspects of the project, such as completing challenges to earn rewards, participating in presale drops, trading incentives, and the mechanics of the project. Some users are excited about the potential of Loudio and Stay Loudio, while others are skeptical and critical of the project. Overall, the community seems to be actively engaged and passionate about Loudio and Stay Loudio.', - data: [ - 2, 1, 3, 4, 0, 0, 2, 1, 0, 4, 2, 2, 3, 3, 3, 2, 2, 2, 8, 0, 8, 4, 5, 5, 1, 5, 5, 2, 3, 34, - 0, 4, 7, 1, 1, 4, 4, 5, 1, 2, 2, 3, 7, 8, 0, 5, 1, 4, 6, 0, 5, 1, 7, 2, 7, - ], - }, - { - label: 'GameStop', - topics: 'gamestop,gme,purchased,purchase,bought', - description: - 'The key topic discussed in the messages from Twitter is GameStop\'s confirmation of a $513 million Bitcoin investment. GameStop has acquired 4,710 BTC, joining other public companies in adding Bitcoin to their balance sheets. This move is seen as a signal of confidence in the crypto industry and has been described as "massive" and "extremely bullish for Bitcoin." However, some reactions to GameStop\'s purchase have been underwhelming, with criticism of the company\'s communication and the amount of Bitcoin purchased. Overall, GameStop\'s entry into the crypto market has sparked discussion and speculation among social media users.', - data: [ - 7, 7, 0, 1, 0, 0, 14, 4, 10, 0, 1, 2, 4, 1, 1, 3, 0, 2, 3, 52, 14, 2, 1, 3, 2, 1, 0, 1, 3, - 2, 3, 4, 2, 3, 1, 1, 0, 0, 9, 1, 4, 3, 1, 1, 2, 2, 2, 2, 2, 1, 0, 1, 1, 0, 1, - ], - }, - { - label: 'KAITO', - topics: 'kaito,leaderboard,kaitoai,arbitrum,yappers', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Engagement in various campaigns and competitions on platforms like KaitoAI and Novastro_xyz\n- Community members earning rewards through staking and participating in airdrops\n- Excitement over new developments and changes in the industry, such as the use of Kaito AI and the emergence of new leaders on leaderboards\n- Speculation and optimism about the potential success of certain projects, such as $Komugi CTO\n- Discussions about the benefits and features of using certain technologies, like Skate_Chain and Kaito AI\n- Information sharing about rewards, payouts, and conditions for participating in various activities\n- Encouragement for community members to actively participate and engage in campaigns and competitions to earn rewards\n- Updates on leaderboard standings and achievements by community members\n- Challenges and obstacles faced by community members, such as difficulties in earning points or staking tokens\n- Calls to action for community members to join and participate in specific campaigns and competitions, such as the Arbitrum x KaitoAI Leaderboard\n\nOverall, the sentiment in the crypto community seems to be positive and enthusiastic, with a focus on engagement, rewards, and community building.', - data: [ - 3, 8, 4, 5, 1, 0, 2, 0, 0, 5, 3, 6, 4, 2, 0, 8, 1, 3, 3, 1, 3, 2, 4, 0, 1, 3, 2, 2, 4, 4, 0, - 0, 2, 4, 4, 7, 2, 1, 3, 5, 2, 2, 1, 2, 4, 2, 3, 1, 5, 0, 1, 3, 2, 5, 15, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,mint,pfp,collection', - description: - 'The key topics discussed in the messages from Twitter are:\n1. NFT projects showing strong momentum and potential for growth in the current market\n2. Buying NFTs on HyperliquidX\n3. Minting NFTs on Rarible\n4. Excitement about upcoming NFT launches\n5. Discussion about the next NFT bull market\n6. Opinions on the current state of the NFT market\n7. SunDog Poo NFT launch\n8. Minting Atlantis NFTs on AtlantisDEX_xyz\n9. Popkins Unleashed mint on SUI by Claynosaurz\n10. Glitch art evolution and minting\n11. FELIX mint launch on monad_xyz testnet\n\nOverall, the messages indicate a high level of interest and activity in the NFT space, with discussions ranging from specific projects to market trends and upcoming launches.', - data: [ - 1, 1, 1, 3, 1, 0, 0, 0, 5, 1, 7, 3, 2, 0, 3, 1, 2, 4, 3, 1, 2, 5, 2, 2, 2, 2, 2, 1, 3, 5, 6, - 11, 6, 6, 6, 0, 3, 2, 1, 5, 1, 3, 2, 1, 2, 1, 0, 2, 3, 1, 2, 1, 5, 3, 1, - ], - }, - { - label: 'VIRTUAL ', - topics: 'virtualsio,virtuals,points,virtual,genesis', - description: - 'The key topics discussed in the messages from Twitter are:\n- Virtuals_io ecosystem and its Genesis Launches game\n- Pre-sale for socialsrising and $FAKE on AbstractChain\n- Trust in focusing on building a solid product for Virtuals_io\n- Potential listing of $VIRTUAL on CoinbaseAssets\n- Stake and earn opportunities with Virtuals_io and Capminal\n- Virgen points and airdrop rewards\n- Participation in Virtuals_io challenges and staking\n- Swidging USDT to $VIRTUAL for maximizing daily points\n- Staking $G3 on Virtuals_io\n- Integration of $CAP Points with Virtuals_io Agent Staking\n- The concept of a Virtuals_io flywheel to "print money"\n- Discussions about Virtuals being a ponzi point system\n- Personal experiences and wins from participating in Virtuals_io activities\n\nOverall, the messages reflect a high level of engagement and interest in the Virtuals_io ecosystem, with users actively participating in various activities and discussions related to the platform.', - data: [ - 1, 1, 1, 1, 0, 0, 5, 0, 1, 0, 2, 1, 2, 8, 0, 1, 0, 0, 0, 2, 11, 3, 3, 3, 3, 1, 2, 2, 1, 1, - 1, 1, 1, 3, 2, 6, 3, 3, 1, 0, 0, 2, 2, 4, 5, 1, 3, 2, 5, 0, 5, 10, 19, 0, 1, - ], - }, - { - label: 'James Wynn', - topics: 'wynn,james,position,liquidation,long', - description: - "NEWS FLASH: James Wynn, a prominent figure in the crypto industry, has been making significant moves in the market. He recently fully liquidated his $1.2 billion Bitcoin position on Hyperliquid, sparking discussions and speculation among the community. Wynn has been actively trading large sums of Bitcoin, with his latest actions including opening a $75 million Bitcoin long position and increasing it to $622 million at peak levels. However, his trading journey has not been without setbacks, as he experienced losses and had to reduce his long position from $750 million to $375 million, taking a loss of $4.7 million. Despite these challenges, Wynn continues to hold a long position on Bitcoin worth $371 million, with the risk of being liquidated if Bitcoin drops below a certain price. The community has been closely following Wynn's trades and discussing his strategies, with some expressing admiration for his bold moves while others caution against blindly following his actions. Overall, James Wynn's trading activities have been a topic of interest and debate within the crypto community, showcasing the highs and lows of trading in the volatile market.", - data: [ - 5, 0, 0, 1, 4, 1, 4, 2, 1, 0, 12, 0, 3, 1, 1, 1, 1, 0, 0, 1, 2, 3, 3, 1, 3, 3, 2, 1, 4, 7, - 4, 1, 3, 2, 4, 1, 2, 2, 1, 3, 1, 3, 1, 1, 0, 2, 7, 4, 0, 3, 3, 4, 4, 2, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-74.json b/priv/repo/major_topics_seed/data-74.json deleted file mode 100644 index 28adced153..0000000000 --- a/priv/repo/major_topics_seed/data-74.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["29.05.25","30.05.25","30.05.25","30.05.25","30.05.25","30.05.25","30.05.25","30.05.25","31.05.25","31.05.25","31.05.25","31.05.25","31.05.25","31.05.25","31.05.25","31.05.25","01.06.25","01.06.25","01.06.25","01.06.25","01.06.25","01.06.25","01.06.25","01.06.25","02.06.25","02.06.25","02.06.25","02.06.25","02.06.25","02.06.25","02.06.25","02.06.25","03.06.25","03.06.25","03.06.25","03.06.25","03.06.25","03.06.25","03.06.25","03.06.25","04.06.25","04.06.25","04.06.25","04.06.25","04.06.25","04.06.25","04.06.25","04.06.25","05.06.25","05.06.25","05.06.25","05.06.25","05.06.25","05.06.25","05.06.25"],"datasets":[{"label":"AI job replacement","topics":"ai,agents,jobs,humans,agent","description":"The messages from twitter are discussing various aspects of AI, including job displacement, efficiency, and effectiveness in industries. There is also mention of interest in AI agents and the potential for decentralized infrastructures like @PhalaNetwork to explode in adoption. Additionally, there is a focus on the use of AI in everyday tasks such as cooking toast and driving cars. The topic also touches on financial security in the era of AI and the development of community-built agents for debugging code. Overall, the messages highlight the increasing presence and impact of AI in various aspects of society.","data":[20,78,12,5,1,4,3,7,4,0,2,6,21,14,8,18,9,9,6,6,9,12,11,8,9,17,23,17,6,5,7,11,13,8,10,10,9,8,13,12,7,8,10,5,13,3,11,23,12,8,10,7,19,10,23]},{"label":"BTC","topics":"fiat,bitcoin,toxic,money,understand","description":"The key topics currently discussed in the messages from twitter about the crypto industry are:\n1. Bitcoin as a form of self custody and collateral for loans\n2. The value proposition of Bitcoin in providing freedom from central banks\n3. The ego test and developer ego in the context of Bitcoin\n4. The longevity and resilience of Bitcoin as a technology\n5. The upcoming decision time for Bitcoin and other cryptocurrencies\n\nOverall, the messages reflect a strong belief in the potential and value of Bitcoin as a revolutionary technology and financial asset.","data":[15,4,7,9,65,39,1,8,3,0,0,13,5,9,8,5,7,4,7,17,12,14,12,8,14,6,9,9,7,7,4,13,4,18,1,7,24,11,8,11,5,12,3,9,10,8,7,16,18,10,9,9,6,9,7]},{"label":"ETH price","topics":"eth,ethereum,breakout,3000,resistance","description":"Based on the messages from Twitter, it seems that there is a mix of bullish and bearish sentiments regarding Ethereum ($ETH). Some users are optimistic about ETH reaching new highs, with predictions of $3,500 and even $10,000. They mention technical analysis patterns such as ascending triangles and symmetrical triangles, indicating a potential breakout in the near future. On the other hand, there are also mentions of profit-taking, macro jitters, and ETH falling to $2.6K, causing some uncertainty in the market. Overall, it appears that there is a lot of discussion and speculation surrounding the price movement of Ethereum in the crypto community.","data":[12,4,9,15,0,8,3,7,4,0,0,8,10,5,5,3,3,81,48,11,10,7,14,4,15,6,16,3,4,6,11,16,2,19,3,8,6,6,13,13,7,7,6,16,5,9,11,7,10,6,3,9,5,8,6]},{"label":"LOUD","topics":"loud,loudio,stayloudio,leaderboard,mindshare","description":"The messages from Twitter are discussing the crypto project @stayloudio and its $LOUD token. There is a lot of excitement and engagement around the project, with mentions of the leaderboard, revenue share structure, presale, and volume since launch. Some users are expressing concerns about the behavior of individuals blindly promoting the project without understanding it fully. There is also speculation about the potential valuation of the token and the benefits of being in the top 1000 on the leaderboard. Overall, the community seems active and enthusiastic about the project, with discussions about potential returns and engagement strategies.","data":[3,1,9,5,0,3,4,2,4,0,0,12,4,6,9,0,3,2,5,6,1,5,10,9,5,4,6,6,5,8,58,4,12,5,1,7,4,4,2,10,7,2,8,3,9,5,7,0,18,4,3,5,9,2,10]},{"label":"Microstrategy","topics":"saylor,mstr,michael,strategy,saylors","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Michael Saylor's innovative strategies and exponential efficiency in buying Bitcoin\n- Speculation on the potential impact of ratings on $MSTR\n- Strategies for maximizing Bitcoin holdings and capturing discounts on different crypto assets\n- Rumors of Michael Saylor buying up to $1 billion worth of Bitcoin\n- Strategy's significant gains from Bitcoin investments and plans for S&P 500 listing\n- Product concept of a bank account powered by STRF with automatic buying and selling features\n- Vanguard's stance on Bitcoin as an asset compared to their significant exposure to Strategy $MSTR\n- Ways to achieve wealth according to Michael Saylor\n- Tech firm acquiring Bitcoin for their treasury at a premium price\n\nOverall, the messages reflect a mix of speculation, analysis, and excitement surrounding the crypto industry, particularly focusing on Bitcoin investments and strategies.","data":[12,1,5,3,6,6,15,3,3,0,0,3,3,2,3,10,2,3,7,5,3,13,5,1,5,6,2,5,8,8,2,9,7,4,5,2,7,12,4,5,3,1,29,2,1,2,49,4,6,4,1,2,1,5,2]},{"label":"Macro","topics":"inflation,rate,fed,rates,cuts","description":"The key topics discussed in the messages from twitter are:\n1. US recession odds continue to plummet\n2. Bank of Japan owning the majority of Japanese government bonds\n3. US dollar slipping with focus on trade tensions and economic data\n4. Euro zone inflation easing below ECB target\n5. Financial crisis definition and triggers\n6. Bank of England's view on tariffs not hugely hurting UK\n7. Australian National Accounts data for March 2025\n8. US Manufacturing PMI at 48.5% for May 2025\n9. Crackdown on Opposition in Turkey\n10. $BTC tracking long-end Japanese Government Bond yields\n11. ISM data showing rough services orders, employment up, prices paid up\n12. New tool to hedge FX risk for Europeans\n\nThese topics cover a range of economic indicators, geopolitical events, and market impacts related to the crypto industry and financial markets.","data":[0,0,4,6,0,4,15,0,10,0,0,2,5,5,5,4,21,2,4,5,0,7,3,0,7,2,16,7,3,2,3,43,4,3,26,9,5,5,1,5,11,5,3,5,4,4,2,7,2,8,3,10,1,2,6]},{"label":"GameFi","topics":"games,gaming,game,play,bonk","description":"The messages from Twitter are discussing various topics related to crypto gaming, including game recommendations, in-game experiences, tournaments, game crashes, game jams, and decentralized 3D model generation. The messages also mention specific games like LOLLandGame, WoW, and Pollak, as well as platforms like YGG Play and Aviatrix_game. Additionally, there is a mention of a friendly tournament hosted by @La_ManadaTeam and a Twitch Games session by @StreamingArtWAX. The overall theme seems to be centered around the crypto gaming industry, with discussions on gameplay, community events, and the impact of blockchain technology on gaming.","data":[2,0,5,5,1,3,1,2,1,0,1,3,3,9,5,6,2,5,11,6,10,51,5,0,1,1,8,6,7,8,4,5,2,8,13,4,6,18,3,4,1,4,0,3,3,3,3,3,6,4,3,3,4,9,3]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coin","description":"The key topics currently discussed in the crypto industry on social media accounts include meme coins, meme coin launchpads, meme coin hype fading, utility-driven tokens, meme squad energy, memecoin movements, and meme coins born on Ethereum. There is also mention of specific meme coins such as $zen, $ssv, $mkr, $icx, $WOWCAT, and #TERMINUS. Additionally, there is discussion about the process of researching memecoins, the comparison of meme coins to Las Vegas decentralization, and the shift of investors towards utility-driven tokens for stronger ROI and long-term potential. The use of memes, NFTs, wallets, trading apps, and DeFi platforms is also highlighted in the messages.","data":[3,4,4,8,0,1,1,3,5,0,1,8,6,5,3,3,4,2,2,4,3,5,7,4,3,6,1,5,2,4,5,6,58,3,3,3,2,4,6,3,6,4,6,4,3,2,5,5,9,6,2,1,4,6,3]},{"label":"BTC price","topics":"100k,range,target,correction,support","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin's price movement: There are discussions about Bitcoin's recent price movements, including reaching $100K and potential corrections or bounces at key levels like $100K and $108K.\n\n2. Market analysis and predictions: Analysts are sharing their insights on market trends, potential support and resistance levels, and predictions for Bitcoin's future price movements, such as reaching new all-time highs by August 2025.\n\n3. Altcoins and market sentiment: There is anticipation for altcoins to shine in the next market run, with discussions on using price action-based tools to determine market bias and opportunities for trading.\n\n4. Institutional involvement: There are mentions of institutional involvement in the crypto market, with reports of firms like Warburg Pincus setting a floor for Bitcoin at $104,000 and considering future price targets like $121,000 or $146,000.\n\n5. Technical analysis and trade setups: Traders are sharing technical analysis charts, trade setups, and strategies for short-term pullbacks and long-term bullish trends in Bitcoin trading.\n\nOverall, the discussions on social media reflect a mix of market analysis, price predictions, trading strategies, and institutional involvement in the crypto industry.","data":[3,2,0,7,29,15,7,10,0,0,0,6,5,11,8,2,6,3,5,6,0,6,1,2,10,1,3,3,2,3,8,0,4,8,1,4,2,5,4,4,4,4,2,7,2,6,6,6,6,5,2,8,0,5,2]},{"label":"SOL","topics":"solana,sol,aths,strategies,500m","description":"The key topics currently being discussed in the crypto community on Twitter regarding Solana ($SOL) include:\n1. Debate on the value of buying Solana compared to other products on the Solana network.\n2. Speculation on the long-term effects of the upcoming TGE (Token Generation Event) on Solana.\n3. Raydium liquidity pools being a significant part of trading on Solana.\n4. Technical analysis indicating a potential buy signal for Solana.\n5. Institutional interest and accumulation of Solana for future growth.\n6. Comparison of Solana to Ethereum (ETH) in terms of market movement.\n7. Financial performance and earnings reports of companies involved with Solana.\n8. Discussion on the liquidity and value of memecoins on Solana.\n9. Bearish sentiment towards Solana in the short term.\n10. Price analysis and trading opportunities for Solana on different platforms.\n\nOverall, the discussions revolve around the potential of Solana as a blockchain platform, its market performance, and the various factors influencing its value and adoption within the crypto industry.","data":[11,2,1,4,0,1,4,8,2,0,0,6,2,7,1,8,8,9,7,4,6,2,2,4,2,6,7,4,4,3,9,8,1,4,7,0,2,4,5,5,2,5,3,6,29,5,10,3,5,6,2,7,1,4,3]},{"label":"Circle IPO","topics":"circle,ipo,usdc,31,valuation","description":"The key topics discussed in the messages from Twitter regarding Circle's IPO include:\n- Circle making its Wall Street debut as the first major stablecoin issuer on the NYSE\n- Speculation about the safety and potential profitability of investing in Circle\n- Discussion about the oversubscription of Circle's IPO\n- Comparison of Circle to other US crypto companies in terms of IPO readiness\n- Criticism of Circle for not sharing income with users\n- Analysis of the rise in Circle's stock price post-IPO\n- Speculation about the implications of Circle's IPO on the stablecoin market and Wall Street's embrace of stablecoins\n- Mention of Blackrock's involvement in USDC custody and its potential impact on the market\n- Reference to Circle's IPO as a significant moment in the crypto industry\n- Comparison of the current crypto IPO craze to the ICO craze of 2017\n- Analysis of Circle's IPO risk disclosures\n\nOverall, the messages reflect a mix of excitement, speculation, and analysis surrounding Circle's IPO and its implications for the crypto industry and financial markets.","data":[5,1,0,6,0,2,7,2,2,0,0,24,10,5,3,2,2,1,6,2,0,7,4,4,4,5,22,6,3,1,1,3,3,5,8,10,3,1,12,10,2,2,6,5,2,9,5,5,5,12,5,6,2,1,0]},{"label":"LINK and scalability","topics":"blockchain,chainlink,wallet,wallets,blockchains","description":"The key topics currently being discussed in the crypto industry on social media include:\n1. Layer2 solutions addressing scalability issues in blockchain\n2. Modular blockchains like aelf allowing each chain to evolve independently\n3. Consensys acquiring Web3Auth to integrate web2-style authentication into MetaMask\n4. Chainlink enabling asset issuers to do more with data feeds\n5. Integration of morpholabs into Safe{Wallet} for one-click deposits and curated strategies\n6. Mandala Chain, a Polkadot rollup, aiming to transform emerging markets\n7. High performance blockchains and the need for new chains\n8. Space and Time and Chainlink enabling DeFi projects to support SXT on any chain\n9. API for contractors to get paid in crypto and receive fiat directly into their bank\n10. Zcash and Monero's approaches to privacy and scalability\n11. Custom wearables transforming enterprise solutions with Qualcomm and socialmobile_\n12. Building onchain bots using CDP Wallets v2 + Node.js with heimlabs\n13. Calderaxyz's modular approach to building chains for scalability\n14. Veruscoin's blockchain technology addressing protocol-level shortcomings with privacy, digital IDs, MEV, and Quantum resistance.","data":[3,3,5,5,1,3,1,4,0,0,9,8,3,3,9,7,1,5,2,8,4,6,8,0,6,4,7,5,4,5,1,1,4,7,4,7,0,5,6,8,10,4,5,3,7,3,5,3,3,1,3,3,10,3,3]},{"label":"DeFi","topics":"defi,protocols,home,finance,yield","description":"The key topics discussed in the messages from Twitter about the crypto industry include DeFi (Decentralized Finance), yield farming, liquidity provision, smart contracts, protocols, blue-chip DeFi infrastructure, StaFi Protocol updates, DeFi rewards, Ronin vaults, Core Machine DeFi, stablecoin swaps, Unichain as a rising Layer 2 platform, CEFI (Centralized Finance) in Singapore, trust in DeFi, partnerships with API3DAO, oracles, MVL Fi, advanced DeFi ecosystems, non-custodial wallets, pro-trading platforms, lending protocols, stablecoin indexes, and banking networks. These topics indicate a strong focus on innovation, technology, and financial services within the crypto industry.","data":[4,2,7,6,1,3,3,9,3,0,2,3,6,1,6,16,1,2,5,2,3,4,2,4,5,7,9,5,7,4,5,7,6,1,2,5,3,6,2,5,8,4,3,0,4,6,6,3,4,7,4,3,2,3,4]},{"label":"Everything is a Ponzi","topics":"dead,ponzi,scam,alts,23","description":"Based on the messages from Twitter, it is evident that there is a negative sentiment towards Bitcoin ($btc) and the overall cryptocurrency market. The messages mention that Bitcoin is considered a scam, a ponzi scheme, and a dead coin. There are also references to other cryptocurrencies (alts) being dead as well. Some users express frustration with the market and claim to have sold their holdings, while others criticize specific projects like Ocean Protocol.\n\nOverall, the sentiment in the crypto community on Twitter seems to be quite pessimistic, with some users even declaring that they are leaving the market and looking for alternative sources of income. The messages also highlight concerns about the influence of certain individuals promoting risky investment strategies, such as taking out loans to buy Bitcoin.\n\nIn summary, the key topics discussed in the messages include skepticism towards Bitcoin and the cryptocurrency market, criticism of specific projects, and frustration with the current state of the industry.","data":[7,11,1,13,1,0,0,17,1,0,0,3,2,11,4,26,4,2,2,3,9,3,3,3,4,10,1,1,2,1,3,5,0,4,2,1,2,6,3,4,2,6,7,4,3,4,2,3,4,7,4,3,1,4,1]},{"label":"XRP","topics":"xrp,ripple,circle,sec,acquire","description":"The key topics currently being discussed on Twitter in the crypto industry include XRP price analysis, Ripple vs SEC lawsuit updates, XRP supply shock predictions, XRP Vegas event highlights, liquidation of XRP long positions, rewards for Flare DeFi users, XCN breakout signs, RNDR price analysis, new companies buying XRP, Congress crypto regulation updates, SEC staking and Binance news, and rFLR rewards distribution for Enosys DEX V3 LPs. These topics indicate a mix of price analysis, regulatory updates, event highlights, and market trends in the crypto industry.","data":[7,6,1,3,1,4,13,4,4,0,0,5,2,2,2,6,5,7,7,2,1,2,1,2,3,1,5,4,8,6,4,3,2,4,7,5,2,3,12,2,2,16,4,4,5,10,1,3,3,1,1,7,2,3,4]},{"label":"Global debt","topics":"debt,reserve,currency,tax,ceo","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. The increasing global debt reaching $324 trillion and its impact on Bitcoin's value.\n2. Suggestions for Bitcoin as a strategic reserve asset for national security.\n3. Calls for reducing the deficit and paying down the debt to prevent Bitcoin from taking over as the reserve currency.\n4. Speculation about offering political asylum and tax incentives to Elon Musk in El Salvador.\n5. Concerns about America's financial situation and the potential for a \"monetary regime change\" with Bitcoin.\n6. The importance of funding and protecting engineers in critical industries for national security.","data":[0,0,1,8,0,1,7,3,6,0,0,3,1,6,2,11,2,4,3,7,3,4,3,7,2,1,2,2,7,4,3,1,1,15,5,1,5,2,1,3,5,7,8,0,4,3,4,4,4,0,2,1,3,7,1]},{"label":"James Wynn ","topics":"wynn,james,liquidation,liquidated,position","description":"The key topic discussed in the messages from twitter is about a high-leverage crypto trader named James Wynn who has been experiencing significant losses and liquidations in his Bitcoin trading positions. Despite losing millions of dollars, James Wynn continues to open new positions and seek donations from the community to support his trading activities. The community is closely following his trades and liquidation prices, speculating on whether he will survive in the volatile crypto market. James Wynn's trading activities and requests for donations have sparked discussions and debates among crypto enthusiasts on social media platforms.","data":[2,2,3,4,2,3,14,2,2,0,0,4,0,2,0,3,4,0,3,1,2,1,3,4,4,5,4,2,2,24,18,2,1,3,2,9,4,1,2,2,2,2,1,4,1,1,3,0,3,3,3,3,2,3,1]},{"label":"Pump.fun $1B raise","topics":"pump,fun,1b,token,pumpdotfun","description":"The key topics discussed in the messages from twitter are related to Pump Fun, a memecoin launchpad on Solana, planning to raise $1 billion through a token sale at a $4 billion valuation. There is also mention of Pump Fun having over $700 million in revenue and potentially becoming one of the most valuable companies in the world if they hold onto their BTC holdings. Additionally, there is speculation about Pump Fun expanding into a streaming service to compete with platforms like Kick and Twitch, potentially turning into a \"gambling\" site for trading crypto. The messages also touch on the success of Solana meme coin creators and the potential for Pump Fun to disrupt the crypto space.","data":[1,2,0,2,0,2,2,0,0,0,1,1,1,5,1,3,5,0,1,2,8,3,3,1,0,3,4,1,2,3,3,1,3,0,1,3,2,4,24,30,2,2,1,3,1,0,1,2,1,6,1,6,4,3,0]},{"label":"Whales","topics":"whale,whales,bought,galaxy,worth","description":"The messages from Twitter are discussing various topics related to the crypto industry, such as whale activity, market movements, Ethereum transactions, and trading strategies. There is also mention of high-profile individuals like Warren Buffet, Trump, and Musk impacting the market. Overall, the sentiment seems to be a mix of excitement, caution, and speculation among crypto enthusiasts and traders.","data":[4,3,0,1,7,20,15,4,11,0,0,1,0,1,4,2,2,2,4,0,1,0,2,0,2,6,3,1,2,5,1,3,0,0,1,3,2,0,0,0,2,0,3,3,1,0,2,1,2,1,2,2,3,21,2]},{"label":"ETF flows","topics":"inflows,etfs,net,outflows,saw","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin ETFs experiencing significant inflows and outflows, with BlackRock's IBIT leading in inflows\n- Ethereum leading in inflows with $244.48 million\n- AVAX leading in outflows with $23.05 million\n- ChinaAMC's Bitcoin ETF in Hong Kong having the second highest net inflows globally\n- Spot Bitcoin ETFs outshining Gold ETFs and attracting over $5 billion in May\n- Financial ETF $XLF potentially heading for all-time highs\n- Bitwise projecting $420 billion in Bitcoin inflows by 2026\n- Binance Wallet announcing its $CUDIS presale and listing $BOB in futures\n- Donald Trump commenting on Powell ETF Update\n- Ethereum spot ETFs recording consecutive days of inflows\n- Various Bitcoin ETFs seeing social mentions and activity on Twitter\n\nOverall, the discussion on Twitter indicates a mix of positive and negative sentiment towards Bitcoin and Ethereum ETFs, with a focus on inflows, outflows, market trends, and institutional adoption.","data":[2,0,1,2,6,3,2,1,1,0,0,0,0,6,4,2,0,34,7,1,4,0,2,0,0,4,14,0,1,0,1,1,0,5,5,4,1,1,2,0,3,1,6,0,17,0,1,0,1,3,0,4,0,3,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-74.ts b/priv/repo/major_topics_seed/data-74.ts deleted file mode 100644 index 69b2c039eb..0000000000 --- a/priv/repo/major_topics_seed/data-74.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '29.05.25', - '30.05.25', - '30.05.25', - '30.05.25', - '30.05.25', - '30.05.25', - '30.05.25', - '30.05.25', - '31.05.25', - '31.05.25', - '31.05.25', - '31.05.25', - '31.05.25', - '31.05.25', - '31.05.25', - '31.05.25', - '01.06.25', - '01.06.25', - '01.06.25', - '01.06.25', - '01.06.25', - '01.06.25', - '01.06.25', - '01.06.25', - '02.06.25', - '02.06.25', - '02.06.25', - '02.06.25', - '02.06.25', - '02.06.25', - '02.06.25', - '02.06.25', - '03.06.25', - '03.06.25', - '03.06.25', - '03.06.25', - '03.06.25', - '03.06.25', - '03.06.25', - '03.06.25', - '04.06.25', - '04.06.25', - '04.06.25', - '04.06.25', - '04.06.25', - '04.06.25', - '04.06.25', - '04.06.25', - '05.06.25', - '05.06.25', - '05.06.25', - '05.06.25', - '05.06.25', - '05.06.25', - '05.06.25', - ], - datasets: [ - { - label: 'AI job replacement', - topics: 'ai,agents,jobs,humans,agent', - description: - 'The messages from twitter are discussing various aspects of AI, including job displacement, efficiency, and effectiveness in industries. There is also mention of interest in AI agents and the potential for decentralized infrastructures like @PhalaNetwork to explode in adoption. Additionally, there is a focus on the use of AI in everyday tasks such as cooking toast and driving cars. The topic also touches on financial security in the era of AI and the development of community-built agents for debugging code. Overall, the messages highlight the increasing presence and impact of AI in various aspects of society.', - data: [ - 20, 78, 12, 5, 1, 4, 3, 7, 4, 0, 2, 6, 21, 14, 8, 18, 9, 9, 6, 6, 9, 12, 11, 8, 9, 17, 23, - 17, 6, 5, 7, 11, 13, 8, 10, 10, 9, 8, 13, 12, 7, 8, 10, 5, 13, 3, 11, 23, 12, 8, 10, 7, 19, - 10, 23, - ], - }, - { - label: 'BTC', - topics: 'fiat,bitcoin,toxic,money,understand', - description: - 'The key topics currently discussed in the messages from twitter about the crypto industry are:\n1. Bitcoin as a form of self custody and collateral for loans\n2. The value proposition of Bitcoin in providing freedom from central banks\n3. The ego test and developer ego in the context of Bitcoin\n4. The longevity and resilience of Bitcoin as a technology\n5. The upcoming decision time for Bitcoin and other cryptocurrencies\n\nOverall, the messages reflect a strong belief in the potential and value of Bitcoin as a revolutionary technology and financial asset.', - data: [ - 15, 4, 7, 9, 65, 39, 1, 8, 3, 0, 0, 13, 5, 9, 8, 5, 7, 4, 7, 17, 12, 14, 12, 8, 14, 6, 9, 9, - 7, 7, 4, 13, 4, 18, 1, 7, 24, 11, 8, 11, 5, 12, 3, 9, 10, 8, 7, 16, 18, 10, 9, 9, 6, 9, 7, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,breakout,3000,resistance', - description: - 'Based on the messages from Twitter, it seems that there is a mix of bullish and bearish sentiments regarding Ethereum ($ETH). Some users are optimistic about ETH reaching new highs, with predictions of $3,500 and even $10,000. They mention technical analysis patterns such as ascending triangles and symmetrical triangles, indicating a potential breakout in the near future. On the other hand, there are also mentions of profit-taking, macro jitters, and ETH falling to $2.6K, causing some uncertainty in the market. Overall, it appears that there is a lot of discussion and speculation surrounding the price movement of Ethereum in the crypto community.', - data: [ - 12, 4, 9, 15, 0, 8, 3, 7, 4, 0, 0, 8, 10, 5, 5, 3, 3, 81, 48, 11, 10, 7, 14, 4, 15, 6, 16, - 3, 4, 6, 11, 16, 2, 19, 3, 8, 6, 6, 13, 13, 7, 7, 6, 16, 5, 9, 11, 7, 10, 6, 3, 9, 5, 8, 6, - ], - }, - { - label: 'LOUD', - topics: 'loud,loudio,stayloudio,leaderboard,mindshare', - description: - 'The messages from Twitter are discussing the crypto project @stayloudio and its $LOUD token. There is a lot of excitement and engagement around the project, with mentions of the leaderboard, revenue share structure, presale, and volume since launch. Some users are expressing concerns about the behavior of individuals blindly promoting the project without understanding it fully. There is also speculation about the potential valuation of the token and the benefits of being in the top 1000 on the leaderboard. Overall, the community seems active and enthusiastic about the project, with discussions about potential returns and engagement strategies.', - data: [ - 3, 1, 9, 5, 0, 3, 4, 2, 4, 0, 0, 12, 4, 6, 9, 0, 3, 2, 5, 6, 1, 5, 10, 9, 5, 4, 6, 6, 5, 8, - 58, 4, 12, 5, 1, 7, 4, 4, 2, 10, 7, 2, 8, 3, 9, 5, 7, 0, 18, 4, 3, 5, 9, 2, 10, - ], - }, - { - label: 'Microstrategy', - topics: 'saylor,mstr,michael,strategy,saylors', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- Michael Saylor's innovative strategies and exponential efficiency in buying Bitcoin\n- Speculation on the potential impact of ratings on $MSTR\n- Strategies for maximizing Bitcoin holdings and capturing discounts on different crypto assets\n- Rumors of Michael Saylor buying up to $1 billion worth of Bitcoin\n- Strategy's significant gains from Bitcoin investments and plans for S&P 500 listing\n- Product concept of a bank account powered by STRF with automatic buying and selling features\n- Vanguard's stance on Bitcoin as an asset compared to their significant exposure to Strategy $MSTR\n- Ways to achieve wealth according to Michael Saylor\n- Tech firm acquiring Bitcoin for their treasury at a premium price\n\nOverall, the messages reflect a mix of speculation, analysis, and excitement surrounding the crypto industry, particularly focusing on Bitcoin investments and strategies.", - data: [ - 12, 1, 5, 3, 6, 6, 15, 3, 3, 0, 0, 3, 3, 2, 3, 10, 2, 3, 7, 5, 3, 13, 5, 1, 5, 6, 2, 5, 8, - 8, 2, 9, 7, 4, 5, 2, 7, 12, 4, 5, 3, 1, 29, 2, 1, 2, 49, 4, 6, 4, 1, 2, 1, 5, 2, - ], - }, - { - label: 'Macro', - topics: 'inflation,rate,fed,rates,cuts', - description: - "The key topics discussed in the messages from twitter are:\n1. US recession odds continue to plummet\n2. Bank of Japan owning the majority of Japanese government bonds\n3. US dollar slipping with focus on trade tensions and economic data\n4. Euro zone inflation easing below ECB target\n5. Financial crisis definition and triggers\n6. Bank of England's view on tariffs not hugely hurting UK\n7. Australian National Accounts data for March 2025\n8. US Manufacturing PMI at 48.5% for May 2025\n9. Crackdown on Opposition in Turkey\n10. $BTC tracking long-end Japanese Government Bond yields\n11. ISM data showing rough services orders, employment up, prices paid up\n12. New tool to hedge FX risk for Europeans\n\nThese topics cover a range of economic indicators, geopolitical events, and market impacts related to the crypto industry and financial markets.", - data: [ - 0, 0, 4, 6, 0, 4, 15, 0, 10, 0, 0, 2, 5, 5, 5, 4, 21, 2, 4, 5, 0, 7, 3, 0, 7, 2, 16, 7, 3, - 2, 3, 43, 4, 3, 26, 9, 5, 5, 1, 5, 11, 5, 3, 5, 4, 4, 2, 7, 2, 8, 3, 10, 1, 2, 6, - ], - }, - { - label: 'GameFi', - topics: 'games,gaming,game,play,bonk', - description: - 'The messages from Twitter are discussing various topics related to crypto gaming, including game recommendations, in-game experiences, tournaments, game crashes, game jams, and decentralized 3D model generation. The messages also mention specific games like LOLLandGame, WoW, and Pollak, as well as platforms like YGG Play and Aviatrix_game. Additionally, there is a mention of a friendly tournament hosted by @La_ManadaTeam and a Twitch Games session by @StreamingArtWAX. The overall theme seems to be centered around the crypto gaming industry, with discussions on gameplay, community events, and the impact of blockchain technology on gaming.', - data: [ - 2, 0, 5, 5, 1, 3, 1, 2, 1, 0, 1, 3, 3, 9, 5, 6, 2, 5, 11, 6, 10, 51, 5, 0, 1, 1, 8, 6, 7, 8, - 4, 5, 2, 8, 13, 4, 6, 18, 3, 4, 1, 4, 0, 3, 3, 3, 3, 3, 6, 4, 3, 3, 4, 9, 3, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coin', - description: - 'The key topics currently discussed in the crypto industry on social media accounts include meme coins, meme coin launchpads, meme coin hype fading, utility-driven tokens, meme squad energy, memecoin movements, and meme coins born on Ethereum. There is also mention of specific meme coins such as $zen, $ssv, $mkr, $icx, $WOWCAT, and #TERMINUS. Additionally, there is discussion about the process of researching memecoins, the comparison of meme coins to Las Vegas decentralization, and the shift of investors towards utility-driven tokens for stronger ROI and long-term potential. The use of memes, NFTs, wallets, trading apps, and DeFi platforms is also highlighted in the messages.', - data: [ - 3, 4, 4, 8, 0, 1, 1, 3, 5, 0, 1, 8, 6, 5, 3, 3, 4, 2, 2, 4, 3, 5, 7, 4, 3, 6, 1, 5, 2, 4, 5, - 6, 58, 3, 3, 3, 2, 4, 6, 3, 6, 4, 6, 4, 3, 2, 5, 5, 9, 6, 2, 1, 4, 6, 3, - ], - }, - { - label: 'BTC price', - topics: '100k,range,target,correction,support', - description: - "The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin's price movement: There are discussions about Bitcoin's recent price movements, including reaching $100K and potential corrections or bounces at key levels like $100K and $108K.\n\n2. Market analysis and predictions: Analysts are sharing their insights on market trends, potential support and resistance levels, and predictions for Bitcoin's future price movements, such as reaching new all-time highs by August 2025.\n\n3. Altcoins and market sentiment: There is anticipation for altcoins to shine in the next market run, with discussions on using price action-based tools to determine market bias and opportunities for trading.\n\n4. Institutional involvement: There are mentions of institutional involvement in the crypto market, with reports of firms like Warburg Pincus setting a floor for Bitcoin at $104,000 and considering future price targets like $121,000 or $146,000.\n\n5. Technical analysis and trade setups: Traders are sharing technical analysis charts, trade setups, and strategies for short-term pullbacks and long-term bullish trends in Bitcoin trading.\n\nOverall, the discussions on social media reflect a mix of market analysis, price predictions, trading strategies, and institutional involvement in the crypto industry.", - data: [ - 3, 2, 0, 7, 29, 15, 7, 10, 0, 0, 0, 6, 5, 11, 8, 2, 6, 3, 5, 6, 0, 6, 1, 2, 10, 1, 3, 3, 2, - 3, 8, 0, 4, 8, 1, 4, 2, 5, 4, 4, 4, 4, 2, 7, 2, 6, 6, 6, 6, 5, 2, 8, 0, 5, 2, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,aths,strategies,500m', - description: - 'The key topics currently being discussed in the crypto community on Twitter regarding Solana ($SOL) include:\n1. Debate on the value of buying Solana compared to other products on the Solana network.\n2. Speculation on the long-term effects of the upcoming TGE (Token Generation Event) on Solana.\n3. Raydium liquidity pools being a significant part of trading on Solana.\n4. Technical analysis indicating a potential buy signal for Solana.\n5. Institutional interest and accumulation of Solana for future growth.\n6. Comparison of Solana to Ethereum (ETH) in terms of market movement.\n7. Financial performance and earnings reports of companies involved with Solana.\n8. Discussion on the liquidity and value of memecoins on Solana.\n9. Bearish sentiment towards Solana in the short term.\n10. Price analysis and trading opportunities for Solana on different platforms.\n\nOverall, the discussions revolve around the potential of Solana as a blockchain platform, its market performance, and the various factors influencing its value and adoption within the crypto industry.', - data: [ - 11, 2, 1, 4, 0, 1, 4, 8, 2, 0, 0, 6, 2, 7, 1, 8, 8, 9, 7, 4, 6, 2, 2, 4, 2, 6, 7, 4, 4, 3, - 9, 8, 1, 4, 7, 0, 2, 4, 5, 5, 2, 5, 3, 6, 29, 5, 10, 3, 5, 6, 2, 7, 1, 4, 3, - ], - }, - { - label: 'Circle IPO', - topics: 'circle,ipo,usdc,31,valuation', - description: - "The key topics discussed in the messages from Twitter regarding Circle's IPO include:\n- Circle making its Wall Street debut as the first major stablecoin issuer on the NYSE\n- Speculation about the safety and potential profitability of investing in Circle\n- Discussion about the oversubscription of Circle's IPO\n- Comparison of Circle to other US crypto companies in terms of IPO readiness\n- Criticism of Circle for not sharing income with users\n- Analysis of the rise in Circle's stock price post-IPO\n- Speculation about the implications of Circle's IPO on the stablecoin market and Wall Street's embrace of stablecoins\n- Mention of Blackrock's involvement in USDC custody and its potential impact on the market\n- Reference to Circle's IPO as a significant moment in the crypto industry\n- Comparison of the current crypto IPO craze to the ICO craze of 2017\n- Analysis of Circle's IPO risk disclosures\n\nOverall, the messages reflect a mix of excitement, speculation, and analysis surrounding Circle's IPO and its implications for the crypto industry and financial markets.", - data: [ - 5, 1, 0, 6, 0, 2, 7, 2, 2, 0, 0, 24, 10, 5, 3, 2, 2, 1, 6, 2, 0, 7, 4, 4, 4, 5, 22, 6, 3, 1, - 1, 3, 3, 5, 8, 10, 3, 1, 12, 10, 2, 2, 6, 5, 2, 9, 5, 5, 5, 12, 5, 6, 2, 1, 0, - ], - }, - { - label: 'LINK and scalability', - topics: 'blockchain,chainlink,wallet,wallets,blockchains', - description: - "The key topics currently being discussed in the crypto industry on social media include:\n1. Layer2 solutions addressing scalability issues in blockchain\n2. Modular blockchains like aelf allowing each chain to evolve independently\n3. Consensys acquiring Web3Auth to integrate web2-style authentication into MetaMask\n4. Chainlink enabling asset issuers to do more with data feeds\n5. Integration of morpholabs into Safe{Wallet} for one-click deposits and curated strategies\n6. Mandala Chain, a Polkadot rollup, aiming to transform emerging markets\n7. High performance blockchains and the need for new chains\n8. Space and Time and Chainlink enabling DeFi projects to support SXT on any chain\n9. API for contractors to get paid in crypto and receive fiat directly into their bank\n10. Zcash and Monero's approaches to privacy and scalability\n11. Custom wearables transforming enterprise solutions with Qualcomm and socialmobile_\n12. Building onchain bots using CDP Wallets v2 + Node.js with heimlabs\n13. Calderaxyz's modular approach to building chains for scalability\n14. Veruscoin's blockchain technology addressing protocol-level shortcomings with privacy, digital IDs, MEV, and Quantum resistance.", - data: [ - 3, 3, 5, 5, 1, 3, 1, 4, 0, 0, 9, 8, 3, 3, 9, 7, 1, 5, 2, 8, 4, 6, 8, 0, 6, 4, 7, 5, 4, 5, 1, - 1, 4, 7, 4, 7, 0, 5, 6, 8, 10, 4, 5, 3, 7, 3, 5, 3, 3, 1, 3, 3, 10, 3, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,home,finance,yield', - description: - 'The key topics discussed in the messages from Twitter about the crypto industry include DeFi (Decentralized Finance), yield farming, liquidity provision, smart contracts, protocols, blue-chip DeFi infrastructure, StaFi Protocol updates, DeFi rewards, Ronin vaults, Core Machine DeFi, stablecoin swaps, Unichain as a rising Layer 2 platform, CEFI (Centralized Finance) in Singapore, trust in DeFi, partnerships with API3DAO, oracles, MVL Fi, advanced DeFi ecosystems, non-custodial wallets, pro-trading platforms, lending protocols, stablecoin indexes, and banking networks. These topics indicate a strong focus on innovation, technology, and financial services within the crypto industry.', - data: [ - 4, 2, 7, 6, 1, 3, 3, 9, 3, 0, 2, 3, 6, 1, 6, 16, 1, 2, 5, 2, 3, 4, 2, 4, 5, 7, 9, 5, 7, 4, - 5, 7, 6, 1, 2, 5, 3, 6, 2, 5, 8, 4, 3, 0, 4, 6, 6, 3, 4, 7, 4, 3, 2, 3, 4, - ], - }, - { - label: 'Everything is a Ponzi', - topics: 'dead,ponzi,scam,alts,23', - description: - 'Based on the messages from Twitter, it is evident that there is a negative sentiment towards Bitcoin ($btc) and the overall cryptocurrency market. The messages mention that Bitcoin is considered a scam, a ponzi scheme, and a dead coin. There are also references to other cryptocurrencies (alts) being dead as well. Some users express frustration with the market and claim to have sold their holdings, while others criticize specific projects like Ocean Protocol.\n\nOverall, the sentiment in the crypto community on Twitter seems to be quite pessimistic, with some users even declaring that they are leaving the market and looking for alternative sources of income. The messages also highlight concerns about the influence of certain individuals promoting risky investment strategies, such as taking out loans to buy Bitcoin.\n\nIn summary, the key topics discussed in the messages include skepticism towards Bitcoin and the cryptocurrency market, criticism of specific projects, and frustration with the current state of the industry.', - data: [ - 7, 11, 1, 13, 1, 0, 0, 17, 1, 0, 0, 3, 2, 11, 4, 26, 4, 2, 2, 3, 9, 3, 3, 3, 4, 10, 1, 1, 2, - 1, 3, 5, 0, 4, 2, 1, 2, 6, 3, 4, 2, 6, 7, 4, 3, 4, 2, 3, 4, 7, 4, 3, 1, 4, 1, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,circle,sec,acquire', - description: - 'The key topics currently being discussed on Twitter in the crypto industry include XRP price analysis, Ripple vs SEC lawsuit updates, XRP supply shock predictions, XRP Vegas event highlights, liquidation of XRP long positions, rewards for Flare DeFi users, XCN breakout signs, RNDR price analysis, new companies buying XRP, Congress crypto regulation updates, SEC staking and Binance news, and rFLR rewards distribution for Enosys DEX V3 LPs. These topics indicate a mix of price analysis, regulatory updates, event highlights, and market trends in the crypto industry.', - data: [ - 7, 6, 1, 3, 1, 4, 13, 4, 4, 0, 0, 5, 2, 2, 2, 6, 5, 7, 7, 2, 1, 2, 1, 2, 3, 1, 5, 4, 8, 6, - 4, 3, 2, 4, 7, 5, 2, 3, 12, 2, 2, 16, 4, 4, 5, 10, 1, 3, 3, 1, 1, 7, 2, 3, 4, - ], - }, - { - label: 'Global debt', - topics: 'debt,reserve,currency,tax,ceo', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n1. The increasing global debt reaching $324 trillion and its impact on Bitcoin\'s value.\n2. Suggestions for Bitcoin as a strategic reserve asset for national security.\n3. Calls for reducing the deficit and paying down the debt to prevent Bitcoin from taking over as the reserve currency.\n4. Speculation about offering political asylum and tax incentives to Elon Musk in El Salvador.\n5. Concerns about America\'s financial situation and the potential for a "monetary regime change" with Bitcoin.\n6. The importance of funding and protecting engineers in critical industries for national security.', - data: [ - 0, 0, 1, 8, 0, 1, 7, 3, 6, 0, 0, 3, 1, 6, 2, 11, 2, 4, 3, 7, 3, 4, 3, 7, 2, 1, 2, 2, 7, 4, - 3, 1, 1, 15, 5, 1, 5, 2, 1, 3, 5, 7, 8, 0, 4, 3, 4, 4, 4, 0, 2, 1, 3, 7, 1, - ], - }, - { - label: 'James Wynn ', - topics: 'wynn,james,liquidation,liquidated,position', - description: - "The key topic discussed in the messages from twitter is about a high-leverage crypto trader named James Wynn who has been experiencing significant losses and liquidations in his Bitcoin trading positions. Despite losing millions of dollars, James Wynn continues to open new positions and seek donations from the community to support his trading activities. The community is closely following his trades and liquidation prices, speculating on whether he will survive in the volatile crypto market. James Wynn's trading activities and requests for donations have sparked discussions and debates among crypto enthusiasts on social media platforms.", - data: [ - 2, 2, 3, 4, 2, 3, 14, 2, 2, 0, 0, 4, 0, 2, 0, 3, 4, 0, 3, 1, 2, 1, 3, 4, 4, 5, 4, 2, 2, 24, - 18, 2, 1, 3, 2, 9, 4, 1, 2, 2, 2, 2, 1, 4, 1, 1, 3, 0, 3, 3, 3, 3, 2, 3, 1, - ], - }, - { - label: 'Pump.fun $1B raise', - topics: 'pump,fun,1b,token,pumpdotfun', - description: - 'The key topics discussed in the messages from twitter are related to Pump Fun, a memecoin launchpad on Solana, planning to raise $1 billion through a token sale at a $4 billion valuation. There is also mention of Pump Fun having over $700 million in revenue and potentially becoming one of the most valuable companies in the world if they hold onto their BTC holdings. Additionally, there is speculation about Pump Fun expanding into a streaming service to compete with platforms like Kick and Twitch, potentially turning into a "gambling" site for trading crypto. The messages also touch on the success of Solana meme coin creators and the potential for Pump Fun to disrupt the crypto space.', - data: [ - 1, 2, 0, 2, 0, 2, 2, 0, 0, 0, 1, 1, 1, 5, 1, 3, 5, 0, 1, 2, 8, 3, 3, 1, 0, 3, 4, 1, 2, 3, 3, - 1, 3, 0, 1, 3, 2, 4, 24, 30, 2, 2, 1, 3, 1, 0, 1, 2, 1, 6, 1, 6, 4, 3, 0, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,bought,galaxy,worth', - description: - 'The messages from Twitter are discussing various topics related to the crypto industry, such as whale activity, market movements, Ethereum transactions, and trading strategies. There is also mention of high-profile individuals like Warren Buffet, Trump, and Musk impacting the market. Overall, the sentiment seems to be a mix of excitement, caution, and speculation among crypto enthusiasts and traders.', - data: [ - 4, 3, 0, 1, 7, 20, 15, 4, 11, 0, 0, 1, 0, 1, 4, 2, 2, 2, 4, 0, 1, 0, 2, 0, 2, 6, 3, 1, 2, 5, - 1, 3, 0, 0, 1, 3, 2, 0, 0, 0, 2, 0, 3, 3, 1, 0, 2, 1, 2, 1, 2, 2, 3, 21, 2, - ], - }, - { - label: 'ETF flows', - topics: 'inflows,etfs,net,outflows,saw', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin ETFs experiencing significant inflows and outflows, with BlackRock's IBIT leading in inflows\n- Ethereum leading in inflows with $244.48 million\n- AVAX leading in outflows with $23.05 million\n- ChinaAMC's Bitcoin ETF in Hong Kong having the second highest net inflows globally\n- Spot Bitcoin ETFs outshining Gold ETFs and attracting over $5 billion in May\n- Financial ETF $XLF potentially heading for all-time highs\n- Bitwise projecting $420 billion in Bitcoin inflows by 2026\n- Binance Wallet announcing its $CUDIS presale and listing $BOB in futures\n- Donald Trump commenting on Powell ETF Update\n- Ethereum spot ETFs recording consecutive days of inflows\n- Various Bitcoin ETFs seeing social mentions and activity on Twitter\n\nOverall, the discussion on Twitter indicates a mix of positive and negative sentiment towards Bitcoin and Ethereum ETFs, with a focus on inflows, outflows, market trends, and institutional adoption.", - data: [ - 2, 0, 1, 2, 6, 3, 2, 1, 1, 0, 0, 0, 0, 6, 4, 2, 0, 34, 7, 1, 4, 0, 2, 0, 0, 4, 14, 0, 1, 0, - 1, 1, 0, 5, 5, 4, 1, 1, 2, 0, 3, 1, 6, 0, 17, 0, 1, 0, 1, 3, 0, 4, 0, 3, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-75.json b/priv/repo/major_topics_seed/data-75.json deleted file mode 100644 index ac8cb63a1f..0000000000 --- a/priv/repo/major_topics_seed/data-75.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["05.06.25","06.06.25","06.06.25","06.06.25","06.06.25","06.06.25","06.06.25","06.06.25","07.06.25","07.06.25","07.06.25","07.06.25","07.06.25","07.06.25","07.06.25","07.06.25","08.06.25","08.06.25","08.06.25","08.06.25","08.06.25","08.06.25","08.06.25","08.06.25","09.06.25","09.06.25","09.06.25","09.06.25","09.06.25","09.06.25","09.06.25","09.06.25","10.06.25","10.06.25","10.06.25","10.06.25","10.06.25","10.06.25","10.06.25","10.06.25","11.06.25","11.06.25","11.06.25","11.06.25","11.06.25","11.06.25","11.06.25","11.06.25","12.06.25","12.06.25","12.06.25","12.06.25","12.06.25","12.06.25","12.06.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,models,data","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry include artificial intelligence (AI), AI skepticism, AI colonialism, the impact of AI on jobs, AI influencers, AI in music creation, decentralized AI, and human-centered AI. These discussions highlight the growing influence and implications of AI technology in various sectors, including finance, music, and social media. The conversations also touch upon the challenges and opportunities presented by AI, as well as the need for ethical and responsible AI development.","data":[36,85,15,10,0,2,2,17,7,0,1,9,12,11,9,17,8,12,15,13,14,15,10,13,12,12,19,21,10,13,14,17,11,11,9,16,10,6,15,12,18,12,15,7,14,5,11,20,20,7,10,12,10,14,17]},{"label":"BTC price","topics":"btc,breakout,bounce,zone,rsi","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community are the current price movements of Bitcoin (BTC), potential price targets such as $130K and $120K, technical analysis indicators like the 50-day EMA and MACD, patterns like the Three Rising Valleys pattern, and the overall bullish sentiment towards Bitcoin. Traders are also discussing the potential for a breakout and the importance of certain price levels as support or resistance. Additionally, there is mention of potential fakeouts, leverage flushes, and the impact of Arthur Hayes on market movements. Overall, the sentiment appears to be optimistic about the future price action of Bitcoin.","data":[6,5,5,8,77,29,14,41,6,0,0,16,8,10,12,5,8,3,7,6,6,4,7,1,26,6,8,4,5,10,15,8,6,7,4,10,4,14,13,12,16,8,12,17,10,6,10,10,13,8,3,26,6,13,4]},{"label":"ETH price","topics":"eth,ethereum,resistance,3000,breakout","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum ($ETH) price movements and potential for breaking out\n- Institutional interest in Ethereum\n- Technical analysis and resistance levels for Ethereum\n- Altseason and potential for altcoins to explode\n- Ethereum as a global reserve asset and programmable store of value\n- Short-term options demand and buying pressure affecting Ethereum price\n- Analysts' opinions on Ethereum's sustainability and potential for upward trend\n- Volume and price movements of Ethereum\n- Symmetrical triangle pattern hinting at a big move for Ethereum\n- Potential resistance levels and breakout targets for Ethereum\n- Speculation on Ethereum reaching $10k\n- Comparison of Ethereum's price to oil, gold, and Bitcoin\n- Frustration with Ethereum's repeated rejections at resistance levels\n- Speculation on Ethereum reaching $3,900 and beyond\n- Speculation on altcoins following Ethereum's lead\n- Speculation on Ethereum's potential for a major ATH (all-time high)\n- Speculation on Ethereum's potential for a major breakout\n- Speculation on Ethereum's potential for a major pullback\n\nOverall, the sentiment on Twitter seems to be bullish on Ethereum, with many users discussing its potential for growth and positive price movements.","data":[4,4,7,11,0,4,6,6,3,0,0,8,5,6,10,4,9,80,23,7,8,3,10,8,8,9,8,3,3,10,15,6,7,11,2,7,7,12,12,16,6,13,3,14,7,8,9,4,8,7,2,3,5,11,1]},{"label":"SOL ETF","topics":"solana,etf,approval,sec,sol","description":"The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- Solana ($SOL) and Ethereum ($ETH) being compared in terms of important moments and potential ETF launches\n- Solana ecosystem funding sources and the potential launch of Solana, Dogecoin, and XRP ETFs by Wall Street\n- SEC asking Sol ETF issuers to submit amended S-1 filings within a week, with July approvals likely\n- The popularity of liquid yielding dollar in the Solana ecosystem\n- Spot crypto ETF applications with the U.S. SEC, with approval odds highest for Litecoin, Solana, and crypto basket products\n- Price surges expected for coins like SOL, SUI, and DOGE once ETF announcements are made\n- A liquidity heatmap for trading ideas, with a short caught on $SOL\n- Speculation on a potential bull run for Solana ETFs with staking\n- Crypto ETF issuers requesting a return to the first-to-file rule for approval from the SEC\n- Potential ETF launches for SOL, XRP, and DOGE by year-end\n- Price updates for Bitcoin, Ethereum, Solana, and Cardano\n- Introduction of MXSOL as a liquid staking solution for SOL on MEXC platform\n\nOverall, the messages indicate a lot of excitement and anticipation surrounding Solana and potential ETF launches in the crypto industry.","data":[5,3,11,10,0,7,6,7,4,0,2,10,9,8,4,13,6,21,7,6,4,7,4,5,8,6,4,4,4,8,6,4,7,4,8,6,3,7,16,10,10,7,8,3,27,6,6,4,6,5,4,7,8,3,2]},{"label":"GameFi","topics":"gaming,game,games,switch,play","description":"The key topics currently being discussed in the crypto industry on social media include gaming projects, the launch of Switch 2 without new Mario or Zelda games, the popularity of web 3 gaming, the use of blockchain in gaming, the importance of ownership and rewards in gaming, conflict resolution through gaming, the value of NFTs in web3 gaming, the community-driven nature of Splinterlands, and the integration of crypto in gaming activities such as top-ups and earning native tokens. There is also mention of specific games and projects such as Wolf Game, Metal Ring game, Oasys, MagicCraft, Game Night Series, Astar, Splinterlands, QWADROX, and Black Vultures: Prey of Greed. Overall, the discussions highlight the growing intersection between gaming and crypto technologies in the industry.","data":[1,6,3,5,1,1,0,4,3,0,0,5,0,6,1,2,5,3,3,2,2,42,7,10,2,3,1,3,3,3,0,6,4,4,3,2,3,12,1,7,3,3,1,3,7,6,7,4,1,5,1,2,2,6,5]},{"label":"Memecoins","topics":"meme,giga,memecoin,memes,memecoins","description":"The key topics currently being discussed in the crypto industry on social media include memecoins, specifically which ones are recommended for investment, the comparison between memecoins and traditional equities, and the popularity of certain memecoins such as MemeThrone (MEME) and GIGA. Additionally, there is mention of the transition of OG $DOGE holders to $GIGA and the various reasons why individuals are interested in investing in GIGA. There is also discussion about the availability of playing @pepekingdomHQ on @ZKcandyHQ and the excitement surrounding the release of the EMBLEMA MEMETICUM - naMutable Cycle, Immutable Principlesb by @cybermistic. Overall, the sentiment towards memecoins and specific cryptocurrencies like GIGA seems positive and there is a focus on community engagement and investment opportunities.","data":[6,2,3,5,0,2,1,2,5,0,1,3,5,0,2,5,9,3,2,4,3,7,5,7,3,2,4,2,3,3,3,1,41,6,1,2,3,5,0,5,4,3,6,7,1,3,4,2,8,0,2,3,5,3,1]},{"label":"Bitcoin Core","topics":"core,node,devs,nodes,bitcoin","description":"The key topics currently being discussed in the crypto community on Twitter include the importance of running personal Bitcoin nodes, the debate between Bitcoin Core and Bitcoin Knots, the centralization of the Bitcoin Core repository, the need for new OpenSource clients, the concept of sovereignty and self-custody in cryptocurrency, and the criticism of ego-driven developers in the industry. There is also mention of the high IQ individuals who struggle to understand Bitcoin due to their reliance on the fiat system, as well as the belief that Bitcoin is still small enough to be manipulated. Overall, the community is engaged in discussions about the core principles and values of Bitcoin, as well as the potential risks and challenges facing the industry.","data":[5,0,3,3,14,4,1,0,3,0,0,3,4,16,1,11,2,4,6,3,3,5,3,1,3,2,2,3,4,6,7,1,8,3,2,2,13,4,1,1,8,8,1,3,1,3,3,5,7,1,2,9,4,2,1]},{"label":"Circle IPO","topics":"circle,ipo,usdc,circles,stock","description":"The key topics currently being discussed in the crypto industry on social media include the recent IPO of Circle Internet Group, Inc. ($CRCL), the surge in its stock price after going public, the integration of its stablecoin into XRPL for cross-border payments and DeFi use cases, and the potential impact of crypto IPOs on the venture capital landscape. There is also discussion about the importance of getting listed on exchanges, the performance of BTC and ETH, and the potential for more crypto companies to pursue IPOs instead of ICOs. Additionally, there is criticism of bankers involved in the Circle IPO for leaving money on the table. Overall, the sentiment seems to be positive towards Circle's IPO and the potential for crypto companies to go public.","data":[6,3,2,4,0,5,2,2,1,0,0,22,7,8,3,5,3,2,1,1,1,3,4,1,1,5,3,23,2,4,4,4,1,1,3,3,3,1,7,4,0,3,4,6,6,5,7,4,1,6,1,5,2,0,5]},{"label":"ETH ETF inflows","topics":"inflows,etfs,net,saw,spot","description":"The key topics discussed in the messages from Twitter regarding the crypto industry are:\n\n1. Ethereum (ETH) ETF inflows surpassing Bitcoin (BTC) ETF inflows.\n2. Big players and institutions rotating into Ethereum (ETH).\n3. BlackRock, Fidelity, Bitwise, and Grayscale all seeing massive inflows in Ethereum (ETH) ETFs.\n4. Ethereum's revenge rally heating up with institutions buying more ETH than BTC.\n5. Ethereum ETFs seeing 16 straight days of inflows, indicating a potential massive move for ETH.\n6. Correlation with stocks increasing significantly after spot Bitcoin ETFs launched.\n7. Crypto funds hitting $167 billion in assets under management with record inflows in May 2025.\n8. Public companies net-buying $146 million in Bitcoin while BTC ETFs see outflows.\n9. Ethereum ETFs breaking records in 2025 with BlackRock topping inflows in Ether ETFs.","data":[2,0,0,1,3,4,5,4,1,0,0,3,4,10,9,2,2,48,8,2,2,0,0,1,1,3,13,0,4,1,0,2,5,0,12,5,3,1,0,2,2,1,11,0,11,7,3,0,2,2,0,1,0,0,1]},{"label":"DeFi","topics":"defi,spark,sparkdotfi,lending,yield","description":"The key topics discussed in the messages from twitter about the crypto industry are:\n1. DeFi (Decentralized Finance) being inevitable and the importance of a unified DeFi experience.\n2. The potential of DeSci (Decentralized Science) in connecting researchers with funding via crypto rails.\n3. The simplicity and mindset of DeFi, with a focus on permissionless, open, and resilient characteristics.\n4. Community engagement and participation in projects like Spark SNAP campaign and YieldSeeker.\n5. Collaboration and ecosystem growth with major players like UniChain and Aave joining campaigns.\n6. Savings and earning opportunities in the crypto space, with transparent rates and community-driven rewards.\n7. Speculation on the untapped potential of Spark in bridging DeFi with cosmic inspiration.","data":[1,2,4,2,1,3,0,6,2,0,4,3,4,2,2,12,5,2,8,3,4,1,4,2,3,1,6,4,0,4,8,2,5,1,4,2,1,0,7,0,9,6,5,1,12,7,4,6,3,1,1,4,2,5,5]},{"label":"XRP","topics":"xrp,ripple,sec,cryptocurrency,breakout","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- XRP price predictions and analysis\n- XRP ETF progress with SEC\n- Comparison of XRP to Bitcoin and Ethereum\n- Potential catalysts for XRP price increase\n- Ripple's technology and advantages over other cryptocurrencies\n- XRP's position in the market and potential for growth\n\nOverall, the messages indicate a positive sentiment towards XRP and its potential for future growth and success in the crypto industry.","data":[1,3,2,2,1,1,6,2,7,0,1,3,2,1,3,6,2,3,8,4,1,1,1,2,2,5,1,2,6,2,4,6,3,2,2,0,5,1,16,4,4,14,5,7,1,3,2,3,3,9,0,8,3,2,6]},{"label":"Inflation and CPI","topics":"cpi,inflation,expected,rose,expectations","description":"The key topics currently being discussed on social media in the crypto industry include:\n- US CPI data coming in lower than expected at 2.4%\n- US PPI rising to 2.6%, signaling sticky inflation pressure\n- Investors awaiting US inflation data to shape expectations for the Federal Reserve's future monetary policy decisions\n- Speculation about the Fed potentially returning to inflation due to CPI data\n- Market reactions to US NFP, ECB rate cuts, and US-China trade shifts\n- Concerns about slowing hiring, dropping inflation, and a weaker dollar potentially leading to Fed rate cuts\n- Fluctuations in the crypto market cap, dipping down to $3.17 trillion but rebounding to $3.26 trillion","data":[2,0,1,1,0,1,16,1,0,0,0,0,7,8,9,2,8,1,4,3,1,0,2,4,2,0,31,3,2,2,2,6,1,0,0,20,2,2,7,1,5,1,0,1,2,0,2,2,1,3,2,4,3,1,5]},{"label":"Kaito, Loudio and yappers","topics":"arbitrum,yap,kaitoai,loudio,yapping","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- @SuperRare profiles not loading properly\n- The launch of Arbitrum season\n- Projects like @MagicNewton, @newtfoundation, @stayloudio, @union_build, @yapyo_arb, and @untouchablesxyz\n- The use of zkGM in the @union_build community\n- The growth of @yapyo_arb followers and its connection to Arbitrum and KaitoAI\n- Excitement about upcoming announcements from @KaitoAI\n- Comparisons between Yapyo gameplay and LOUD's communication mechanism\n- Positive experiences with @MagicNewton community and gaining new followers\n- Speculation about the potential of new alpha project @yapyo_arb\n- The involvement of Yap jails and breaking out with the help of other users\n- The anticipation of new projects and developments in the crypto industry.","data":[3,2,8,5,0,1,1,0,0,0,0,2,1,4,5,1,6,2,4,2,7,3,3,7,4,0,2,3,5,7,1,5,4,13,3,3,2,3,2,2,1,1,5,2,1,4,3,4,5,1,6,0,2,3,13]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,stable,stables,dollar","description":"The messages from Twitter discuss various aspects of stablecoins in the crypto industry. Some key points mentioned include:\n\n1. The stablecoin market is becoming frothy, reminiscent of the fintech bubble.\n2. Stablecoins were created to help certain countries bypass capital controls.\n3. Stablecoins amount to 1.1% of the US dollar supply, with the potential for startups to increase this ratio.\n4. Stablecoin regulations in 2025 could boost Bitcoin's next bull run.\n5. Africa is leading in stablecoin adoption due to high inflation rates.\n6. Noah has raised $22M to build a global payment network for the stablecoin era.\n\nOverall, stablecoins are a hot topic in the crypto industry, with discussions on market trends, regulations, and adoption rates.","data":[1,0,2,3,0,2,3,5,0,0,1,1,3,1,1,5,1,0,0,2,2,0,1,4,0,2,1,1,1,2,1,1,0,2,2,3,5,1,3,6,3,0,1,0,0,53,0,2,2,9,1,4,0,1,1]},{"label":"Tether","topics":"tether,tron,usdt,gold,opensource","description":"The key topics discussed in the messages from twitter are:\n1. Tether (USDT) acquiring a 32% stake in a Canadian gold-focused firm Elemental for $89 million.\n2. Tether being the fifth most profitable bank in the world with only 100 employees.\n3. Tether minting $1 billion worth of USDT.\n4. Tether's strategy to integrate long-term, stable assets like gold and Bitcoin into its ecosystem.\n5. Tether's Wallet Development Kit (WDK) being used by hundreds of companies.\n6. Tether Gold offering ownership interest in real gold.\n7. Tether's Co-Founder sharing the story behind co-founding Tether.\n8. Stablecoins on TRON powering $94 billion in real-world payments.\n9. Large-scale minting events by Tether likely preceding increased market activity.\n10. Announcement of Silver from DenarioSwiss being available on Polytrade backed by insured 999.9 purity silver granules.","data":[5,2,7,1,1,1,4,2,0,0,0,4,2,1,1,2,2,0,0,1,3,0,4,3,2,2,0,2,5,2,3,0,3,7,8,3,0,0,1,1,1,0,3,4,0,3,3,32,3,0,3,2,3,2,0]},{"label":"RWA and tokenization","topics":"rwa,plume,tokenization,realworld,assets","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Decentralized Finance (DeFi) applications\n- Real World Assets (RWA) tokenization\n- AI integration in tokenization\n- Tokenizing assets on EVM-compatible Web4 chains\n- Tokenizing real-world assets like real estate, commodities, bonds, and intellectual property\n- Partnerships between crypto projects and traditional finance entities\n- Tokenization of AI robots\n- Future of capital markets and tokenized equities\n- Stellar (XLM) becoming a major chain for RWA issuance\n- Introduction of RWA ecosystem map\n- Plume Airdrop Season 2\n\nThese topics reflect the growing interest and innovation in the crypto industry, particularly in the areas of DeFi, RWA tokenization, and the integration of AI technology. It is clear that there is a focus on bringing real-world assets onto the blockchain and exploring new ways to tokenize and trade these assets. Additionally, partnerships between crypto projects and traditional finance entities are helping to bridge the gap between the two worlds and bring more mainstream adoption to the industry.","data":[1,5,2,3,0,0,2,2,1,0,2,2,3,2,3,8,1,0,2,3,2,1,1,3,1,4,2,6,2,3,3,0,1,0,1,8,2,5,5,2,2,12,3,1,2,1,1,2,2,9,1,1,1,3,7]},{"label":"Spirit of Bitcoin ","topics":"money,bitcoin,freedom,standard,gold","description":"The key topics discussed in the messages from Twitter about Bitcoin include:\n- Definition of Bitcoin\n- Virtue signaling\n- Unconfiscatable nature of properly secured Bitcoin\n- Owning Bitcoin as the new American dream\n- Analysis of Bitcoin's ownership model\n- Bitcoin synergy\n- Bitcoin as a safe haven\n- Bitcoin redefining the concept of money\n- Bitcoin changing the way we see the world\n- Bitcoin as magic internet money\n- Bitcoin representing truth in a noisy system\n- Bitcoin evolving from \"digital gold\" to real money\n- Using Klever Wallet for easy spending of Bitcoin (sats)","data":[1,0,1,2,22,8,2,0,2,0,0,0,1,1,2,3,0,2,11,3,6,3,2,3,0,0,3,2,3,0,1,1,4,7,1,2,4,2,5,1,2,3,3,3,3,1,3,0,3,0,0,5,1,4,0]},{"label":"Buy Low Sell High","topics":"dont,sell,life,lose,game","description":"The key topics currently discussed on Twitter in the crypto industry include the importance of having a profit-taking plan, being smart money by buying during market downturns and selling during euphoric phases, staying agile and using UX's lending to ride liquidity tides without selling, the significance of raw conviction in crypto investments, the importance of getting good at on-chain analysis, the need for patience in making life-changing gains, the value of compounding unrealized returns over time, the emphasis on making money with skill rather than luck, and the promotion of Marco Wutzer's Project Serenity for financial education and success in the crypto market. Additionally, there is discussion about bullish momentum strategies such as surviving flushes, adding to positions when wanting to close, not overexposing, utilizing sell-offs to strengthen positions, not over-rotating, taking profits on the way up, and the importance of taking life-changing money when it is available.","data":[3,0,2,4,0,1,0,4,1,0,0,1,1,6,0,1,2,0,2,1,3,3,1,2,0,2,3,4,2,5,6,10,3,2,1,0,7,4,1,0,5,2,0,4,4,4,6,0,7,10,1,1,4,3,2]},{"label":"Bitcoin mining","topics":"mining,block,blocks,network,solo","description":"The key topics discussed in the messages from twitter are:\n1. Bitcoin block 900,000 being mined\n2. Bitcoin miners and mining activities\n3. Bitcoin's energy consumption for mining\n4. Comparison of different Bitcoin miners\n5. Celebrating milestones in Bitcoin mining\n6. Total BTC mined and fees earned in a specific time period\n7. Other mining projects and companies like NioBay and BlockDAG\n8. Fundraising and user base growth in the mining industry\n\nOverall, the messages highlight the ongoing activities and developments in the crypto mining industry, with a focus on Bitcoin mining and related projects.","data":[4,4,0,1,6,18,2,1,0,0,0,0,1,4,1,1,4,1,1,1,2,4,3,3,5,2,3,1,2,3,0,4,12,0,2,3,2,1,1,2,3,4,1,1,1,3,1,0,1,3,1,2,2,4,2]},{"label":"Elon Musk and Tesla","topics":"tesla,tsla,cars,elonmusk,musk","description":"The key topics discussed in the messages from twitter about Tesla and the crypto industry include:\n- Tesla's stock performance and market movements\n- Analysts' opinions on owning Tesla stock\n- Predictions about Tesla's stock price surge\n- Discussion about buying Tesla stock at a low point\n- Mention of other stocks like NVDA\n- Reference to Nikola Tesla's fixation on numbers 3, 6, and 9\n- Trading activity and options contracts related to Tesla stock\n\nOverall, the messages reflect a mix of opinions, analysis, predictions, and trading activity related to Tesla and the stock market.","data":[3,1,1,2,0,1,3,3,2,0,1,0,0,0,1,0,2,2,3,2,1,2,1,1,0,1,0,4,1,1,3,3,1,3,0,2,0,2,1,1,1,7,7,2,5,2,2,19,2,2,15,2,0,5,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-75.ts b/priv/repo/major_topics_seed/data-75.ts deleted file mode 100644 index 95eb6082fe..0000000000 --- a/priv/repo/major_topics_seed/data-75.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '05.06.25', - '06.06.25', - '06.06.25', - '06.06.25', - '06.06.25', - '06.06.25', - '06.06.25', - '06.06.25', - '07.06.25', - '07.06.25', - '07.06.25', - '07.06.25', - '07.06.25', - '07.06.25', - '07.06.25', - '07.06.25', - '08.06.25', - '08.06.25', - '08.06.25', - '08.06.25', - '08.06.25', - '08.06.25', - '08.06.25', - '08.06.25', - '09.06.25', - '09.06.25', - '09.06.25', - '09.06.25', - '09.06.25', - '09.06.25', - '09.06.25', - '09.06.25', - '10.06.25', - '10.06.25', - '10.06.25', - '10.06.25', - '10.06.25', - '10.06.25', - '10.06.25', - '10.06.25', - '11.06.25', - '11.06.25', - '11.06.25', - '11.06.25', - '11.06.25', - '11.06.25', - '11.06.25', - '11.06.25', - '12.06.25', - '12.06.25', - '12.06.25', - '12.06.25', - '12.06.25', - '12.06.25', - '12.06.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,models,data', - description: - 'Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto industry include artificial intelligence (AI), AI skepticism, AI colonialism, the impact of AI on jobs, AI influencers, AI in music creation, decentralized AI, and human-centered AI. These discussions highlight the growing influence and implications of AI technology in various sectors, including finance, music, and social media. The conversations also touch upon the challenges and opportunities presented by AI, as well as the need for ethical and responsible AI development.', - data: [ - 36, 85, 15, 10, 0, 2, 2, 17, 7, 0, 1, 9, 12, 11, 9, 17, 8, 12, 15, 13, 14, 15, 10, 13, 12, - 12, 19, 21, 10, 13, 14, 17, 11, 11, 9, 16, 10, 6, 15, 12, 18, 12, 15, 7, 14, 5, 11, 20, 20, - 7, 10, 12, 10, 14, 17, - ], - }, - { - label: 'BTC price', - topics: 'btc,breakout,bounce,zone,rsi', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto community are the current price movements of Bitcoin (BTC), potential price targets such as $130K and $120K, technical analysis indicators like the 50-day EMA and MACD, patterns like the Three Rising Valleys pattern, and the overall bullish sentiment towards Bitcoin. Traders are also discussing the potential for a breakout and the importance of certain price levels as support or resistance. Additionally, there is mention of potential fakeouts, leverage flushes, and the impact of Arthur Hayes on market movements. Overall, the sentiment appears to be optimistic about the future price action of Bitcoin.', - data: [ - 6, 5, 5, 8, 77, 29, 14, 41, 6, 0, 0, 16, 8, 10, 12, 5, 8, 3, 7, 6, 6, 4, 7, 1, 26, 6, 8, 4, - 5, 10, 15, 8, 6, 7, 4, 10, 4, 14, 13, 12, 16, 8, 12, 17, 10, 6, 10, 10, 13, 8, 3, 26, 6, 13, - 4, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,resistance,3000,breakout', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum ($ETH) price movements and potential for breaking out\n- Institutional interest in Ethereum\n- Technical analysis and resistance levels for Ethereum\n- Altseason and potential for altcoins to explode\n- Ethereum as a global reserve asset and programmable store of value\n- Short-term options demand and buying pressure affecting Ethereum price\n- Analysts' opinions on Ethereum's sustainability and potential for upward trend\n- Volume and price movements of Ethereum\n- Symmetrical triangle pattern hinting at a big move for Ethereum\n- Potential resistance levels and breakout targets for Ethereum\n- Speculation on Ethereum reaching $10k\n- Comparison of Ethereum's price to oil, gold, and Bitcoin\n- Frustration with Ethereum's repeated rejections at resistance levels\n- Speculation on Ethereum reaching $3,900 and beyond\n- Speculation on altcoins following Ethereum's lead\n- Speculation on Ethereum's potential for a major ATH (all-time high)\n- Speculation on Ethereum's potential for a major breakout\n- Speculation on Ethereum's potential for a major pullback\n\nOverall, the sentiment on Twitter seems to be bullish on Ethereum, with many users discussing its potential for growth and positive price movements.", - data: [ - 4, 4, 7, 11, 0, 4, 6, 6, 3, 0, 0, 8, 5, 6, 10, 4, 9, 80, 23, 7, 8, 3, 10, 8, 8, 9, 8, 3, 3, - 10, 15, 6, 7, 11, 2, 7, 7, 12, 12, 16, 6, 13, 3, 14, 7, 8, 9, 4, 8, 7, 2, 3, 5, 11, 1, - ], - }, - { - label: 'SOL ETF', - topics: 'solana,etf,approval,sec,sol', - description: - 'The key topics discussed in the messages from Twitter regarding the crypto industry include:\n- Solana ($SOL) and Ethereum ($ETH) being compared in terms of important moments and potential ETF launches\n- Solana ecosystem funding sources and the potential launch of Solana, Dogecoin, and XRP ETFs by Wall Street\n- SEC asking Sol ETF issuers to submit amended S-1 filings within a week, with July approvals likely\n- The popularity of liquid yielding dollar in the Solana ecosystem\n- Spot crypto ETF applications with the U.S. SEC, with approval odds highest for Litecoin, Solana, and crypto basket products\n- Price surges expected for coins like SOL, SUI, and DOGE once ETF announcements are made\n- A liquidity heatmap for trading ideas, with a short caught on $SOL\n- Speculation on a potential bull run for Solana ETFs with staking\n- Crypto ETF issuers requesting a return to the first-to-file rule for approval from the SEC\n- Potential ETF launches for SOL, XRP, and DOGE by year-end\n- Price updates for Bitcoin, Ethereum, Solana, and Cardano\n- Introduction of MXSOL as a liquid staking solution for SOL on MEXC platform\n\nOverall, the messages indicate a lot of excitement and anticipation surrounding Solana and potential ETF launches in the crypto industry.', - data: [ - 5, 3, 11, 10, 0, 7, 6, 7, 4, 0, 2, 10, 9, 8, 4, 13, 6, 21, 7, 6, 4, 7, 4, 5, 8, 6, 4, 4, 4, - 8, 6, 4, 7, 4, 8, 6, 3, 7, 16, 10, 10, 7, 8, 3, 27, 6, 6, 4, 6, 5, 4, 7, 8, 3, 2, - ], - }, - { - label: 'GameFi', - topics: 'gaming,game,games,switch,play', - description: - 'The key topics currently being discussed in the crypto industry on social media include gaming projects, the launch of Switch 2 without new Mario or Zelda games, the popularity of web 3 gaming, the use of blockchain in gaming, the importance of ownership and rewards in gaming, conflict resolution through gaming, the value of NFTs in web3 gaming, the community-driven nature of Splinterlands, and the integration of crypto in gaming activities such as top-ups and earning native tokens. There is also mention of specific games and projects such as Wolf Game, Metal Ring game, Oasys, MagicCraft, Game Night Series, Astar, Splinterlands, QWADROX, and Black Vultures: Prey of Greed. Overall, the discussions highlight the growing intersection between gaming and crypto technologies in the industry.', - data: [ - 1, 6, 3, 5, 1, 1, 0, 4, 3, 0, 0, 5, 0, 6, 1, 2, 5, 3, 3, 2, 2, 42, 7, 10, 2, 3, 1, 3, 3, 3, - 0, 6, 4, 4, 3, 2, 3, 12, 1, 7, 3, 3, 1, 3, 7, 6, 7, 4, 1, 5, 1, 2, 2, 6, 5, - ], - }, - { - label: 'Memecoins', - topics: 'meme,giga,memecoin,memes,memecoins', - description: - 'The key topics currently being discussed in the crypto industry on social media include memecoins, specifically which ones are recommended for investment, the comparison between memecoins and traditional equities, and the popularity of certain memecoins such as MemeThrone (MEME) and GIGA. Additionally, there is mention of the transition of OG $DOGE holders to $GIGA and the various reasons why individuals are interested in investing in GIGA. There is also discussion about the availability of playing @pepekingdomHQ on @ZKcandyHQ and the excitement surrounding the release of the EMBLEMA MEMETICUM - naMutable Cycle, Immutable Principlesb by @cybermistic. Overall, the sentiment towards memecoins and specific cryptocurrencies like GIGA seems positive and there is a focus on community engagement and investment opportunities.', - data: [ - 6, 2, 3, 5, 0, 2, 1, 2, 5, 0, 1, 3, 5, 0, 2, 5, 9, 3, 2, 4, 3, 7, 5, 7, 3, 2, 4, 2, 3, 3, 3, - 1, 41, 6, 1, 2, 3, 5, 0, 5, 4, 3, 6, 7, 1, 3, 4, 2, 8, 0, 2, 3, 5, 3, 1, - ], - }, - { - label: 'Bitcoin Core', - topics: 'core,node,devs,nodes,bitcoin', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the importance of running personal Bitcoin nodes, the debate between Bitcoin Core and Bitcoin Knots, the centralization of the Bitcoin Core repository, the need for new OpenSource clients, the concept of sovereignty and self-custody in cryptocurrency, and the criticism of ego-driven developers in the industry. There is also mention of the high IQ individuals who struggle to understand Bitcoin due to their reliance on the fiat system, as well as the belief that Bitcoin is still small enough to be manipulated. Overall, the community is engaged in discussions about the core principles and values of Bitcoin, as well as the potential risks and challenges facing the industry.', - data: [ - 5, 0, 3, 3, 14, 4, 1, 0, 3, 0, 0, 3, 4, 16, 1, 11, 2, 4, 6, 3, 3, 5, 3, 1, 3, 2, 2, 3, 4, 6, - 7, 1, 8, 3, 2, 2, 13, 4, 1, 1, 8, 8, 1, 3, 1, 3, 3, 5, 7, 1, 2, 9, 4, 2, 1, - ], - }, - { - label: 'Circle IPO', - topics: 'circle,ipo,usdc,circles,stock', - description: - "The key topics currently being discussed in the crypto industry on social media include the recent IPO of Circle Internet Group, Inc. ($CRCL), the surge in its stock price after going public, the integration of its stablecoin into XRPL for cross-border payments and DeFi use cases, and the potential impact of crypto IPOs on the venture capital landscape. There is also discussion about the importance of getting listed on exchanges, the performance of BTC and ETH, and the potential for more crypto companies to pursue IPOs instead of ICOs. Additionally, there is criticism of bankers involved in the Circle IPO for leaving money on the table. Overall, the sentiment seems to be positive towards Circle's IPO and the potential for crypto companies to go public.", - data: [ - 6, 3, 2, 4, 0, 5, 2, 2, 1, 0, 0, 22, 7, 8, 3, 5, 3, 2, 1, 1, 1, 3, 4, 1, 1, 5, 3, 23, 2, 4, - 4, 4, 1, 1, 3, 3, 3, 1, 7, 4, 0, 3, 4, 6, 6, 5, 7, 4, 1, 6, 1, 5, 2, 0, 5, - ], - }, - { - label: 'ETH ETF inflows', - topics: 'inflows,etfs,net,saw,spot', - description: - "The key topics discussed in the messages from Twitter regarding the crypto industry are:\n\n1. Ethereum (ETH) ETF inflows surpassing Bitcoin (BTC) ETF inflows.\n2. Big players and institutions rotating into Ethereum (ETH).\n3. BlackRock, Fidelity, Bitwise, and Grayscale all seeing massive inflows in Ethereum (ETH) ETFs.\n4. Ethereum's revenge rally heating up with institutions buying more ETH than BTC.\n5. Ethereum ETFs seeing 16 straight days of inflows, indicating a potential massive move for ETH.\n6. Correlation with stocks increasing significantly after spot Bitcoin ETFs launched.\n7. Crypto funds hitting $167 billion in assets under management with record inflows in May 2025.\n8. Public companies net-buying $146 million in Bitcoin while BTC ETFs see outflows.\n9. Ethereum ETFs breaking records in 2025 with BlackRock topping inflows in Ether ETFs.", - data: [ - 2, 0, 0, 1, 3, 4, 5, 4, 1, 0, 0, 3, 4, 10, 9, 2, 2, 48, 8, 2, 2, 0, 0, 1, 1, 3, 13, 0, 4, 1, - 0, 2, 5, 0, 12, 5, 3, 1, 0, 2, 2, 1, 11, 0, 11, 7, 3, 0, 2, 2, 0, 1, 0, 0, 1, - ], - }, - { - label: 'DeFi', - topics: 'defi,spark,sparkdotfi,lending,yield', - description: - 'The key topics discussed in the messages from twitter about the crypto industry are:\n1. DeFi (Decentralized Finance) being inevitable and the importance of a unified DeFi experience.\n2. The potential of DeSci (Decentralized Science) in connecting researchers with funding via crypto rails.\n3. The simplicity and mindset of DeFi, with a focus on permissionless, open, and resilient characteristics.\n4. Community engagement and participation in projects like Spark SNAP campaign and YieldSeeker.\n5. Collaboration and ecosystem growth with major players like UniChain and Aave joining campaigns.\n6. Savings and earning opportunities in the crypto space, with transparent rates and community-driven rewards.\n7. Speculation on the untapped potential of Spark in bridging DeFi with cosmic inspiration.', - data: [ - 1, 2, 4, 2, 1, 3, 0, 6, 2, 0, 4, 3, 4, 2, 2, 12, 5, 2, 8, 3, 4, 1, 4, 2, 3, 1, 6, 4, 0, 4, - 8, 2, 5, 1, 4, 2, 1, 0, 7, 0, 9, 6, 5, 1, 12, 7, 4, 6, 3, 1, 1, 4, 2, 5, 5, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,cryptocurrency,breakout', - description: - "The key topics discussed in the messages from twitter about the crypto industry include:\n- XRP price predictions and analysis\n- XRP ETF progress with SEC\n- Comparison of XRP to Bitcoin and Ethereum\n- Potential catalysts for XRP price increase\n- Ripple's technology and advantages over other cryptocurrencies\n- XRP's position in the market and potential for growth\n\nOverall, the messages indicate a positive sentiment towards XRP and its potential for future growth and success in the crypto industry.", - data: [ - 1, 3, 2, 2, 1, 1, 6, 2, 7, 0, 1, 3, 2, 1, 3, 6, 2, 3, 8, 4, 1, 1, 1, 2, 2, 5, 1, 2, 6, 2, 4, - 6, 3, 2, 2, 0, 5, 1, 16, 4, 4, 14, 5, 7, 1, 3, 2, 3, 3, 9, 0, 8, 3, 2, 6, - ], - }, - { - label: 'Inflation and CPI', - topics: 'cpi,inflation,expected,rose,expectations', - description: - "The key topics currently being discussed on social media in the crypto industry include:\n- US CPI data coming in lower than expected at 2.4%\n- US PPI rising to 2.6%, signaling sticky inflation pressure\n- Investors awaiting US inflation data to shape expectations for the Federal Reserve's future monetary policy decisions\n- Speculation about the Fed potentially returning to inflation due to CPI data\n- Market reactions to US NFP, ECB rate cuts, and US-China trade shifts\n- Concerns about slowing hiring, dropping inflation, and a weaker dollar potentially leading to Fed rate cuts\n- Fluctuations in the crypto market cap, dipping down to $3.17 trillion but rebounding to $3.26 trillion", - data: [ - 2, 0, 1, 1, 0, 1, 16, 1, 0, 0, 0, 0, 7, 8, 9, 2, 8, 1, 4, 3, 1, 0, 2, 4, 2, 0, 31, 3, 2, 2, - 2, 6, 1, 0, 0, 20, 2, 2, 7, 1, 5, 1, 0, 1, 2, 0, 2, 2, 1, 3, 2, 4, 3, 1, 5, - ], - }, - { - label: 'Kaito, Loudio and yappers', - topics: 'arbitrum,yap,kaitoai,loudio,yapping', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- @SuperRare profiles not loading properly\n- The launch of Arbitrum season\n- Projects like @MagicNewton, @newtfoundation, @stayloudio, @union_build, @yapyo_arb, and @untouchablesxyz\n- The use of zkGM in the @union_build community\n- The growth of @yapyo_arb followers and its connection to Arbitrum and KaitoAI\n- Excitement about upcoming announcements from @KaitoAI\n- Comparisons between Yapyo gameplay and LOUD's communication mechanism\n- Positive experiences with @MagicNewton community and gaining new followers\n- Speculation about the potential of new alpha project @yapyo_arb\n- The involvement of Yap jails and breaking out with the help of other users\n- The anticipation of new projects and developments in the crypto industry.", - data: [ - 3, 2, 8, 5, 0, 1, 1, 0, 0, 0, 0, 2, 1, 4, 5, 1, 6, 2, 4, 2, 7, 3, 3, 7, 4, 0, 2, 3, 5, 7, 1, - 5, 4, 13, 3, 3, 2, 3, 2, 2, 1, 1, 5, 2, 1, 4, 3, 4, 5, 1, 6, 0, 2, 3, 13, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,stable,stables,dollar', - description: - "The messages from Twitter discuss various aspects of stablecoins in the crypto industry. Some key points mentioned include:\n\n1. The stablecoin market is becoming frothy, reminiscent of the fintech bubble.\n2. Stablecoins were created to help certain countries bypass capital controls.\n3. Stablecoins amount to 1.1% of the US dollar supply, with the potential for startups to increase this ratio.\n4. Stablecoin regulations in 2025 could boost Bitcoin's next bull run.\n5. Africa is leading in stablecoin adoption due to high inflation rates.\n6. Noah has raised $22M to build a global payment network for the stablecoin era.\n\nOverall, stablecoins are a hot topic in the crypto industry, with discussions on market trends, regulations, and adoption rates.", - data: [ - 1, 0, 2, 3, 0, 2, 3, 5, 0, 0, 1, 1, 3, 1, 1, 5, 1, 0, 0, 2, 2, 0, 1, 4, 0, 2, 1, 1, 1, 2, 1, - 1, 0, 2, 2, 3, 5, 1, 3, 6, 3, 0, 1, 0, 0, 53, 0, 2, 2, 9, 1, 4, 0, 1, 1, - ], - }, - { - label: 'Tether', - topics: 'tether,tron,usdt,gold,opensource', - description: - "The key topics discussed in the messages from twitter are:\n1. Tether (USDT) acquiring a 32% stake in a Canadian gold-focused firm Elemental for $89 million.\n2. Tether being the fifth most profitable bank in the world with only 100 employees.\n3. Tether minting $1 billion worth of USDT.\n4. Tether's strategy to integrate long-term, stable assets like gold and Bitcoin into its ecosystem.\n5. Tether's Wallet Development Kit (WDK) being used by hundreds of companies.\n6. Tether Gold offering ownership interest in real gold.\n7. Tether's Co-Founder sharing the story behind co-founding Tether.\n8. Stablecoins on TRON powering $94 billion in real-world payments.\n9. Large-scale minting events by Tether likely preceding increased market activity.\n10. Announcement of Silver from DenarioSwiss being available on Polytrade backed by insured 999.9 purity silver granules.", - data: [ - 5, 2, 7, 1, 1, 1, 4, 2, 0, 0, 0, 4, 2, 1, 1, 2, 2, 0, 0, 1, 3, 0, 4, 3, 2, 2, 0, 2, 5, 2, 3, - 0, 3, 7, 8, 3, 0, 0, 1, 1, 1, 0, 3, 4, 0, 3, 3, 32, 3, 0, 3, 2, 3, 2, 0, - ], - }, - { - label: 'RWA and tokenization', - topics: 'rwa,plume,tokenization,realworld,assets', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Decentralized Finance (DeFi) applications\n- Real World Assets (RWA) tokenization\n- AI integration in tokenization\n- Tokenizing assets on EVM-compatible Web4 chains\n- Tokenizing real-world assets like real estate, commodities, bonds, and intellectual property\n- Partnerships between crypto projects and traditional finance entities\n- Tokenization of AI robots\n- Future of capital markets and tokenized equities\n- Stellar (XLM) becoming a major chain for RWA issuance\n- Introduction of RWA ecosystem map\n- Plume Airdrop Season 2\n\nThese topics reflect the growing interest and innovation in the crypto industry, particularly in the areas of DeFi, RWA tokenization, and the integration of AI technology. It is clear that there is a focus on bringing real-world assets onto the blockchain and exploring new ways to tokenize and trade these assets. Additionally, partnerships between crypto projects and traditional finance entities are helping to bridge the gap between the two worlds and bring more mainstream adoption to the industry.', - data: [ - 1, 5, 2, 3, 0, 0, 2, 2, 1, 0, 2, 2, 3, 2, 3, 8, 1, 0, 2, 3, 2, 1, 1, 3, 1, 4, 2, 6, 2, 3, 3, - 0, 1, 0, 1, 8, 2, 5, 5, 2, 2, 12, 3, 1, 2, 1, 1, 2, 2, 9, 1, 1, 1, 3, 7, - ], - }, - { - label: 'Spirit of Bitcoin ', - topics: 'money,bitcoin,freedom,standard,gold', - description: - 'The key topics discussed in the messages from Twitter about Bitcoin include:\n- Definition of Bitcoin\n- Virtue signaling\n- Unconfiscatable nature of properly secured Bitcoin\n- Owning Bitcoin as the new American dream\n- Analysis of Bitcoin\'s ownership model\n- Bitcoin synergy\n- Bitcoin as a safe haven\n- Bitcoin redefining the concept of money\n- Bitcoin changing the way we see the world\n- Bitcoin as magic internet money\n- Bitcoin representing truth in a noisy system\n- Bitcoin evolving from "digital gold" to real money\n- Using Klever Wallet for easy spending of Bitcoin (sats)', - data: [ - 1, 0, 1, 2, 22, 8, 2, 0, 2, 0, 0, 0, 1, 1, 2, 3, 0, 2, 11, 3, 6, 3, 2, 3, 0, 0, 3, 2, 3, 0, - 1, 1, 4, 7, 1, 2, 4, 2, 5, 1, 2, 3, 3, 3, 3, 1, 3, 0, 3, 0, 0, 5, 1, 4, 0, - ], - }, - { - label: 'Buy Low Sell High', - topics: 'dont,sell,life,lose,game', - description: - "The key topics currently discussed on Twitter in the crypto industry include the importance of having a profit-taking plan, being smart money by buying during market downturns and selling during euphoric phases, staying agile and using UX's lending to ride liquidity tides without selling, the significance of raw conviction in crypto investments, the importance of getting good at on-chain analysis, the need for patience in making life-changing gains, the value of compounding unrealized returns over time, the emphasis on making money with skill rather than luck, and the promotion of Marco Wutzer's Project Serenity for financial education and success in the crypto market. Additionally, there is discussion about bullish momentum strategies such as surviving flushes, adding to positions when wanting to close, not overexposing, utilizing sell-offs to strengthen positions, not over-rotating, taking profits on the way up, and the importance of taking life-changing money when it is available.", - data: [ - 3, 0, 2, 4, 0, 1, 0, 4, 1, 0, 0, 1, 1, 6, 0, 1, 2, 0, 2, 1, 3, 3, 1, 2, 0, 2, 3, 4, 2, 5, 6, - 10, 3, 2, 1, 0, 7, 4, 1, 0, 5, 2, 0, 4, 4, 4, 6, 0, 7, 10, 1, 1, 4, 3, 2, - ], - }, - { - label: 'Bitcoin mining', - topics: 'mining,block,blocks,network,solo', - description: - "The key topics discussed in the messages from twitter are:\n1. Bitcoin block 900,000 being mined\n2. Bitcoin miners and mining activities\n3. Bitcoin's energy consumption for mining\n4. Comparison of different Bitcoin miners\n5. Celebrating milestones in Bitcoin mining\n6. Total BTC mined and fees earned in a specific time period\n7. Other mining projects and companies like NioBay and BlockDAG\n8. Fundraising and user base growth in the mining industry\n\nOverall, the messages highlight the ongoing activities and developments in the crypto mining industry, with a focus on Bitcoin mining and related projects.", - data: [ - 4, 4, 0, 1, 6, 18, 2, 1, 0, 0, 0, 0, 1, 4, 1, 1, 4, 1, 1, 1, 2, 4, 3, 3, 5, 2, 3, 1, 2, 3, - 0, 4, 12, 0, 2, 3, 2, 1, 1, 2, 3, 4, 1, 1, 1, 3, 1, 0, 1, 3, 1, 2, 2, 4, 2, - ], - }, - { - label: 'Elon Musk and Tesla', - topics: 'tesla,tsla,cars,elonmusk,musk', - description: - "The key topics discussed in the messages from twitter about Tesla and the crypto industry include:\n- Tesla's stock performance and market movements\n- Analysts' opinions on owning Tesla stock\n- Predictions about Tesla's stock price surge\n- Discussion about buying Tesla stock at a low point\n- Mention of other stocks like NVDA\n- Reference to Nikola Tesla's fixation on numbers 3, 6, and 9\n- Trading activity and options contracts related to Tesla stock\n\nOverall, the messages reflect a mix of opinions, analysis, predictions, and trading activity related to Tesla and the stock market.", - data: [ - 3, 1, 1, 2, 0, 1, 3, 3, 2, 0, 1, 0, 0, 0, 1, 0, 2, 2, 3, 2, 1, 2, 1, 1, 0, 1, 0, 4, 1, 1, 3, - 3, 1, 3, 0, 2, 0, 2, 1, 1, 1, 7, 7, 2, 5, 2, 2, 19, 2, 2, 15, 2, 0, 5, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-76.json b/priv/repo/major_topics_seed/data-76.json deleted file mode 100644 index 73a02c941f..0000000000 --- a/priv/repo/major_topics_seed/data-76.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["12.06.25","13.06.25","13.06.25","13.06.25","13.06.25","13.06.25","13.06.25","13.06.25","14.06.25","14.06.25","14.06.25","14.06.25","14.06.25","14.06.25","14.06.25","14.06.25","15.06.25","15.06.25","15.06.25","15.06.25","15.06.25","15.06.25","15.06.25","15.06.25","16.06.25","16.06.25","16.06.25","16.06.25","16.06.25","16.06.25","16.06.25","16.06.25","17.06.25","17.06.25","17.06.25","17.06.25","17.06.25","17.06.25","17.06.25","17.06.25","18.06.25","18.06.25","18.06.25","18.06.25","18.06.25","18.06.25","18.06.25","18.06.25","19.06.25","19.06.25","19.06.25","19.06.25","19.06.25","19.06.25","19.06.25"],"datasets":[{"label":"BTC","topics":"bitcoin,btc,saylor,price,mstr","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin's price movements: Tweets mention Bitcoin's price reaching $104k, dipping below $103k, and quickly recovering. There is optimism about Bitcoin's strength and potential for further growth.\n\n2. Bitcoin accumulation zone: Discussions about Bitcoin being in the accumulation zone of the rainbow chart, with predictions of a higher price cycle ahead.\n\n3. Bitcoin supply shock: Tweets highlight the vanishing Bitcoin supply and how this could lead to a price explosion, with comparisons to previous supply shocks.\n\n4. Institutional investments: Mentions of companies like Strategy disclosing the purchase of a large amount of bitcoins, indicating growing institutional interest in Bitcoin.\n\n5. Technical analysis: Analysis of Bitcoin's price action, including support and resistance levels, Bollinger Bands, and Ichimoku Cloud, with predictions of a potential breakout and confirmation of the next leg up.\n\n6. Bitcoin's impact on humanity: Speculation about Bitcoin having a bigger impact on humanity than the internet, with references to its potential to change the financial system.\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin, with discussions focusing on price movements, technical analysis, institutional investments, and the potential impact of Bitcoin on society.","data":[38,26,28,47,272,162,119,96,59,44,59,40,35,19,48,25,14,44,48,23,34,31,37,79,39,34,33,30,30,49,49,31,56,27,26,32,44,57,38,56,41,80,45,45,28,62,42,46,44,32,51,48,28,44,27]},{"label":"SOL ETF","topics":"solana,sol,etf,sec,approval","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n1. Femi Otedola acquiring a stake in First Bank at N31 per share\n2. Micro caps planning XRP or SOL treasuries being labeled as potential scams by VanEck\n3. Coinshares filing an S-1 for a SOL ETF\n4. Multiple firms filing Solana ETF S-1s with the SEC\n5. Solana reaching 300K .sol domains registered and 132K unique owners\n6. Institutions betting big on Solana with $1,000 within reach\n7. Canadian firm Sol Strategies filing to trade on Nasdaq under the ticker $STKE\n8. Solana's price action remaining muted despite ETF speculation\n9. Solana coiling at a high-confluence support zone, suggesting a major move is near\n10. Speculation about Solana being sold on the OTC market by hodlers\n\nOverall, the discussions on Twitter indicate a mix of excitement, skepticism, and speculation surrounding Solana and other cryptocurrencies in the industry.","data":[12,7,6,7,1,5,25,7,18,9,21,3,5,10,4,16,6,18,7,7,8,3,6,5,5,7,3,9,6,4,6,9,6,10,13,9,7,13,7,6,8,1,6,29,10,11,9,7,4,8,8,9,3,5,3]},{"label":"Inflation, FOMC and rates","topics":"inflation,fed,rates,rate,fomc","description":"The key topics discussed in the messages from twitter related to the crypto industry are:\n1. Inflation concerns and the impact on interest rates\n2. Calls for the Federal Reserve to cut rates\n3. Bank of Japan rate decision and its potential impact on the yen\n4. The Federal Reserve's data-driven approach to interest rate decisions\n5. Speculation on the impact of the Federal Reserve's decisions on the cryptocurrency market\n6. The relationship between interest rates, currency strength, and market volatility\n7. The Federal Reserve's decision-making process and potential political influences\n\nOverall, the messages reflect a mix of economic analysis, market speculation, and calls for action from financial institutions.","data":[1,4,4,10,2,3,4,2,3,2,3,7,13,6,3,10,7,15,36,1,6,3,3,19,4,19,13,6,3,4,27,6,9,3,23,4,2,9,11,24,9,7,7,2,2,0,13,4,8,2,5,3,1,5,1]},{"label":"Memecoins","topics":"meme,pepe,memecoin,memes,memecoins","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Memecoins: There is a lot of discussion around various memecoins such as Doge, Pepe, and Fartcoin. People are speculating on their potential for growth and discussing their market cap and community building aspects.\n2. Memecoin Supercycle: Some analysts are predicting a bullish parabolic surge in memecoins, while others are questioning the staying power of coins like PEPE and FLOKI.\n3. Community vs. Protocol Utility: There is a debate on whether community hype or protocol utility is more valuable in the crypto space, with some arguing that memes and community building are essential for success.\n4. Meme Projects: There are mentions of upcoming meme projects like MemeaniaNFT, which are generating excitement and offering opportunities for participation through drops and giveaways.\n5. Meme Culture: The importance of memes in building community and culture on the blockchain is highlighted, with references to meme contests and meme-themed events like the Meme Olympics.","data":[4,2,3,6,2,2,1,2,3,4,14,3,4,5,8,5,2,3,7,2,4,8,6,7,2,2,2,4,4,6,2,71,4,6,2,5,30,7,5,7,2,5,5,2,3,5,4,10,5,4,1,4,3,2,10]},{"label":"AI","topics":"ai,jobs,models,humans,intelligence","description":"The key topics discussed in the messages from twitter are:\n1. The impact of AI on jobs and society\n2. The role of AI in revolutionizing industries\n3. The importance of quality inputs for AI models\n4. The potential for AI and robots to take on more human tasks\n5. The use of AI in decentralized networks\n6. The need for human involvement in high-impact decision-making\n7. The future of trustless AI verification\n8. Decentralized AI compute and storage\n9. Collaboration between different AI technologies\n10. The potential for AI to assist but not fully take over human tasks.","data":[10,46,4,6,0,3,0,5,1,1,4,3,1,5,6,6,5,6,4,6,5,10,5,5,12,4,5,3,7,7,5,3,9,4,6,9,4,5,9,9,9,7,1,3,4,5,11,8,5,3,7,1,2,5,7]},{"label":"Virtuals","topics":"virtualsio,points,room,virtuals,yapping","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Staking $VADER to maximize chances of receiving airdrops from upcoming projects\n- Participation in @virtuals_io Genesis Launches and earning virgen points\n- Strategies for success in virtual experiences and immersive virtual platforms\n- Discussion about new projects like $ROOM by @useBackroom on @virtuals_io\n- The importance of staking $VADER for earning points and maximizing ROI\n- Excitement and anticipation for upcoming launches and projects in the crypto industry\n\nOverall, the crypto community on social media is actively engaged in discussions about staking, earning points, and participating in new projects to maximize returns and opportunities in the industry.","data":[1,2,1,9,1,1,0,2,5,4,2,3,3,10,1,3,3,7,3,7,7,2,9,7,6,4,5,2,1,5,4,1,3,2,2,8,11,4,9,6,15,1,4,4,12,5,3,6,7,2,3,50,4,8,6]},{"label":"ETH price","topics":"eth,ethereum,3000,breakout,4000","description":"The key topics currently being discussed on Twitter regarding Ethereum ($ETH) include:\n- Price predictions and analysis, with mentions of potential price targets such as $4,000, $6,000-$8,000 in 2025, and even +$8,000 in the future.\n- Discussion of key support and resistance levels, with a focus on the $2500 level as a crucial point for Ethereum's price movement.\n- Mention of Ethereum staking hitting an all-time high, with over 35 million ETH locked and growing investor confidence.\n- Speculation on potential breakout scenarios for Ethereum, with mentions of a ticking time bomb for a breakout and the possibility of a rapid price increase to $3,000.\n- Analysis of technical indicators and chart patterns, with a focus on key zones like $2680-$2740 and the importance of breaking and holding above certain levels for further price appreciation.\n- Reference to Ethereum's daily structure and consolidation near $2,512, with a medium-term bullish outlook despite short-term caution.\n- Mention of Ethereum's recent price drop to the bottom of a rising channel and the testing of boundaries multiple times, indicating a valid channel for price movement.\n- Discussion of Ethereum's potential for a giga send once it breaks a descending resistance on its $ETH to $BTC pair, signaling a potential altseason and further price appreciation.","data":[1,1,1,3,0,1,5,8,2,3,6,13,1,2,0,10,61,3,3,1,3,3,2,8,6,8,2,1,1,5,8,0,8,0,2,2,3,9,4,9,4,2,9,8,6,2,8,3,6,4,1,7,0,10,3]},{"label":"GENIUS Act","topics":"genius,senate,act,stablecoin,passed","description":"The key topic discussed in the messages from twitter is the passing of the GENIUS Act in the US Senate, which is a landmark bill aimed at regulating and legitimizing stablecoins nationwide. The bill received strong bipartisan support and sets strict legal standards for stablecoin issuers operating in the US. This development is seen as a major step forward in crypto regulation and is expected to have a significant impact on the stablecoin market cap, with some predicting a 10x increase. The bill is also seen as a positive move towards making the US a global leader in crypto.","data":[2,0,4,5,1,1,24,6,0,2,0,4,6,4,1,2,1,5,1,12,6,1,1,6,1,2,2,3,2,2,5,1,5,8,7,56,1,1,2,5,2,9,3,5,14,3,3,4,8,0,1,2,15,1,1]},{"label":"Art","topics":"art,artist,artists,digital,fine","description":"The messages from twitter are discussing various topics related to art, including spray art, Mexican Folk Art, Mayan Warrior Totems, Eddie Alfaro Art, digital mixed-media art, glitch art, and NFT art collections. The messages also mention the importance of collaboration in art, the influence of other artists, and the upcoming opening of a new space for time-based art in NYC. Overall, the discussion on social media seems to be focused on different forms of art, both traditional and digital, and the evolving landscape of the art world.","data":[7,2,42,4,0,0,0,1,0,1,3,7,3,1,5,4,4,3,6,2,2,5,5,0,9,3,4,3,4,11,4,6,9,3,3,4,6,3,2,6,3,1,10,4,4,2,1,3,4,0,2,2,3,3,3]},{"label":"GameFi","topics":"game,gaming,games,play,web3","description":"The key topics discussed in the messages from twitter about the crypto industry are related to gaming and decentralized applications. Some of the specific words mentioned include Immutable, Decentraland, Mythos, FIFA, Nintendo switch, Super smash bros ultimate, Kirby game, FIFA Rivals, PlayZap Games, Web3 gaming, GameFi, and virtuals_io. The messages also touch on the launch of new games, community involvement in game development, and the future of gaming in the crypto space. Overall, the discussions revolve around the innovation and growth of gaming within the crypto industry.","data":[1,1,0,4,0,5,0,2,0,10,5,3,1,3,0,1,4,6,1,41,2,5,2,3,4,3,3,2,1,4,4,1,1,6,0,3,20,3,2,8,6,4,2,5,4,5,2,6,5,1,5,2,1,8,2]},{"label":"Bitcoin treasury strategies","topics":"firm,treasury,company,million,coinpedia","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Companies and individuals making significant Bitcoin treasury raises and acquisitions\n2. Strategic growth initiatives combining Bitcoin reserves and tokenization\n3. Publicly traded companies raising funds to buy more Bitcoin\n4. Predictions of Bitcoin reaching $1 million by 2030\n5. Europe's first Bitcoin treasury firm announcing equity and bond raises\n6. Bitcoin trading over $100,000 for over 40 consecutive days\n7. Corporate buying of Bitcoin being relentless\n8. The potential for global trade to eventually be settled in Bitcoin\n\nOverall, the sentiment in the crypto industry on Twitter seems to be bullish on Bitcoin and optimistic about its future potential.","data":[4,4,4,1,3,4,11,8,8,4,6,7,0,3,4,2,3,3,11,4,1,1,6,6,1,2,1,9,6,0,2,2,2,6,4,1,0,4,12,2,8,15,7,4,3,6,8,0,0,1,0,1,3,3,1]},{"label":"DOGE","topics":"dogecoin,doge,shit,army,tweets","description":"The key topics currently being discussed on Twitter regarding the crypto industry are Dogecoin, with mentions of its price movements, potential for growth, and comparisons to other cryptocurrencies. There is also discussion about the Dogecoin community, with references to the \"Doge army\" and plans for a Dogecoin suit. Additionally, there are technical analysis mentions about Dogecoin's price trends and potential trading setups. Overall, the sentiment seems to be bullish towards Dogecoin, with excitement and optimism about its future prospects.","data":[4,3,1,4,0,2,0,1,3,3,4,3,2,1,71,6,0,6,1,3,4,4,8,7,1,1,4,3,4,2,1,2,1,0,2,0,3,0,0,1,0,3,5,1,1,2,3,7,2,3,5,1,4,1,0]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,yield,payments,stable","description":"The key topics currently being discussed on Twitter regarding stablecoins in the crypto industry include:\n- The increasing popularity and adoption of stablecoins, with mentions of Aptos, Ethereum, DeFi, and Altseason\n- The role of stablecoins as the financial backbone of DeFi, RWA tokenization, payments, and treasury operations\n- The potential impact of rising federal budget deficits and inflation on demand for U.S. dollar-pegged stablecoins\n- The competition among corporations and financial institutions to launch their own stablecoins\n- The comparison of stablecoins to Starlink in terms of providing fast, frictionless, low-cost access to finance\n- The importance of passing on yield to users in order to become the dominant stablecoin\n- The introduction of innovative products like Spark Savings, which allow users to supply stablecoins and receive interest in return\n- The transformation of global finance through the use of stablecoins as core infrastructure for traditional finance (TradFi)","data":[2,2,0,3,1,2,0,4,2,3,0,1,1,5,0,2,1,3,0,0,3,1,3,2,4,4,0,2,0,1,2,1,1,5,1,4,4,3,0,5,1,2,0,1,69,4,2,3,2,2,2,1,3,2,3]},{"label":"XRP","topics":"xrp,ripple,ledger,dao,crash","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. XRP's potential for a major bullish continuation and massive breakout, with discussions on network activity, gains over the next 12 months, and potential price rallies.\n2. Institutional adoption of XRP, including public companies holding XRP in treasury, cross-border payment integration, and the Hidden Road acquisition bringing XRPL into a $3T+ institutional clearing network.\n3. Ripple advising the UK government on crypto adoption strategies and potential expansions within the UK.\n4. Community voting coming to the XRP Ledger through the XAO DAO, focusing on utility, governance, and community involvement.\n5. Technical analysis of XRP's performance, including bearish trends, declines in line with Bitcoin's weakness, and potential market cycles and price predictions.\n6. Speculation on XRP Ledger supply shock and potential tokenization of the global real estate market on the XRP Ledger, leading to price predictions of $11,898 per XRP.\n7. Ripple and SEC filing a joint petition for revising the XRP decision to limit Ripple's institutional movements, potentially impacting crypto regulations and market dynamics.","data":[4,5,1,5,2,0,4,4,5,13,4,6,3,3,3,2,1,3,4,4,3,0,4,4,1,1,1,4,0,1,3,1,2,3,4,2,0,9,1,4,6,5,4,2,4,3,0,2,1,6,2,5,3,2,3]},{"label":"DeFi","topics":"defi,katana,liquidity,yield,finance","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. DeFi (Decentralized Finance): There is a lot of discussion around DeFi lending growth fueled by institutional demand, the integration of real-world assets, and the security of DeFi platforms. The concept of programmable Bitcoin in DeFi without wrapping or bridges is also being highlighted.\n\n2. Cross-chain technology: Projects like Mintlayer, MitosisOrg, 0xSoulProtocol, and Infinex are mentioned for their efforts in providing cross-chain access and unified liquidity in the DeFi space. This technology aims to reduce fragmentation in multi-chain ecosystems and enable seamless capital allocation.\n\n3. New developments in DeFi: Projects like Cookiedotfun and Katana are mentioned for their innovative approaches to gamifying on-chain loyalty and fixing issues related to fragmented liquidity and low yields in DeFi. These projects are seen as game-changers in the industry.\n\n4. Industry events and discussions: There is anticipation for events like the #SunFlash Space hosted by JUST, where industry experts discuss the future of DeFi amidst shifting narratives, new laws, and meme-fueled momentum. Additionally, the involvement of companies like Polygon Labs and GSR in projects like Katana is also being highlighted.\n\nOverall, the crypto community on Twitter is actively engaged in discussing the latest trends, developments, and challenges in the DeFi space, as well as showcasing innovative projects and technologies that aim to revolutionize the industry.","data":[0,0,3,3,1,1,1,7,1,2,4,6,2,6,0,4,5,1,4,3,1,1,2,3,5,6,8,4,0,3,3,3,6,2,0,8,4,4,8,2,4,1,3,3,5,4,4,3,0,2,1,2,3,3,4]},{"label":"Sports","topics":"game,tonight,et,series,win","description":"The messages from twitter are mainly discussing sports events, such as basketball games and cricket matches. The key topics mentioned include the Thunder's performance in the NBA Finals, the upcoming game between the Thunder and Pacers, as well as cricket matches involving teams like India, Pakistan, Bangladesh, and Nepal. There is also a mention of a giveaway related to predicting the winner of the Thunder vs Pacers game. Overall, the discussion revolves around sports events and predictions related to them.","data":[0,0,6,6,0,2,1,0,1,2,6,0,4,1,2,1,0,4,1,10,7,5,1,2,3,1,5,0,2,1,1,4,6,3,3,4,7,2,0,4,0,3,3,2,3,4,1,10,4,0,5,0,2,5,7]},{"label":"BlackRock ","topics":"blackrock,bought,worth,etf,breaking","description":"The key topic discussed in the messages from Twitter is the significant purchases of cryptocurrencies, particularly Bitcoin and Ethereum, by BlackRock. BlackRock has made multiple large purchases of Bitcoin and Ethereum, totaling over $250 million and $101.5 million respectively. These purchases have led to BlackRock becoming a major institutional holder of both cryptocurrencies. Additionally, there is speculation about BlackRock's potential impact on the cryptocurrency market and the narrative surrounding Ethereum in the coming months. The messages also mention other institutional players like Fidelity and Bitwise making significant purchases of Bitcoin. Overall, the focus is on the increasing involvement of institutional investors like BlackRock in the cryptocurrency space.","data":[5,1,1,2,3,20,30,6,11,0,0,6,0,0,1,8,1,0,2,0,0,0,3,12,4,1,2,0,0,0,1,2,0,2,0,4,1,1,0,0,2,5,0,1,2,0,4,0,1,0,8,1,0,1,0]},{"label":"ETFs","topics":"etfs,inflows,net,saw,spot","description":"The key topic discussed in the messages from Twitter is the significant increase in net inflows into Ethereum ETFs compared to Bitcoin ETFs. There is a trend of Ethereum ETFs outperforming Bitcoin ETFs in terms of inflows, with Ethereum experiencing more than 20% of all Ethereum ETF inflows combined in the month of June. This surge in inflows is seen as bullish for Ethereum, with institutions showing confidence in the cryptocurrency. Additionally, there is a mention of a record-breaking streak of consecutive days of inflows into spot Ethereum ETFs, which ended on June 13 with a small outflow. Overall, the data suggests a growing interest and investment in Ethereum ETFs compared to Bitcoin ETFs.","data":[4,0,0,1,0,1,3,2,3,0,3,0,4,3,4,23,16,0,4,4,0,3,2,0,2,8,1,2,2,2,1,0,0,4,5,0,0,1,2,0,1,1,8,3,17,0,0,2,2,0,2,2,1,4,0]},{"label":"Whales","topics":"whales,whale,eth,2018,retail","description":"The key topic discussed in the messages from twitter is the aggressive buying behavior of Ethereum whales. Whales have been accumulating over 800K $ETH daily for nearly a week, with a total of 14.3 million ETH held in key wallets. This trend indicates strong institutional and whale confidence in Ethereum, with the largest single-day accumulation of 871K ETH since 2017. This accumulation by whales suggests a potential major upcoming move in the Ethereum market.","data":[2,2,0,5,0,5,6,16,3,0,2,0,4,0,0,2,17,0,0,0,0,0,2,0,2,3,0,2,1,2,4,1,2,4,1,1,0,0,0,1,4,2,0,0,0,1,0,1,1,1,5,1,2,34,1]},{"label":"RWA and tokenization","topics":"rwa,tokenization,tokenized,realworld,assets","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Real World Assets (RWAs), tokenization, NFT bonds, AI, blockchain technology, decentralized finance, and the intersection of traditional finance with the crypto ecosystem. Projects like Novastro, ELYSIA, and Punkvism are highlighted for their efforts in tokenizing real-world assets and making them accessible and tradable on blockchain platforms. Additionally, the discussion also revolves around specific tokens like $CREDI and $PVT, with mentions of potential gains and investment opportunities. Cross-chain compatibility, fast trading, and secure issuance on platforms like Ethereum, Arbitrum, Sui, and Solana are also key points of interest. Overall, the focus seems to be on the innovative ways in which blockchain technology is being used to revolutionize the financial industry and create new opportunities for investors.","data":[1,1,4,0,0,1,0,1,2,3,1,6,1,2,1,3,1,1,2,0,4,8,0,1,4,5,4,2,2,1,1,1,4,1,4,3,5,2,7,1,0,20,0,3,7,1,2,0,7,2,0,1,0,2,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-76.ts b/priv/repo/major_topics_seed/data-76.ts deleted file mode 100644 index 3ff335ec1f..0000000000 --- a/priv/repo/major_topics_seed/data-76.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '12.06.25', - '13.06.25', - '13.06.25', - '13.06.25', - '13.06.25', - '13.06.25', - '13.06.25', - '13.06.25', - '14.06.25', - '14.06.25', - '14.06.25', - '14.06.25', - '14.06.25', - '14.06.25', - '14.06.25', - '14.06.25', - '15.06.25', - '15.06.25', - '15.06.25', - '15.06.25', - '15.06.25', - '15.06.25', - '15.06.25', - '15.06.25', - '16.06.25', - '16.06.25', - '16.06.25', - '16.06.25', - '16.06.25', - '16.06.25', - '16.06.25', - '16.06.25', - '17.06.25', - '17.06.25', - '17.06.25', - '17.06.25', - '17.06.25', - '17.06.25', - '17.06.25', - '17.06.25', - '18.06.25', - '18.06.25', - '18.06.25', - '18.06.25', - '18.06.25', - '18.06.25', - '18.06.25', - '18.06.25', - '19.06.25', - '19.06.25', - '19.06.25', - '19.06.25', - '19.06.25', - '19.06.25', - '19.06.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,btc,saylor,price,mstr', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin's price movements: Tweets mention Bitcoin's price reaching $104k, dipping below $103k, and quickly recovering. There is optimism about Bitcoin's strength and potential for further growth.\n\n2. Bitcoin accumulation zone: Discussions about Bitcoin being in the accumulation zone of the rainbow chart, with predictions of a higher price cycle ahead.\n\n3. Bitcoin supply shock: Tweets highlight the vanishing Bitcoin supply and how this could lead to a price explosion, with comparisons to previous supply shocks.\n\n4. Institutional investments: Mentions of companies like Strategy disclosing the purchase of a large amount of bitcoins, indicating growing institutional interest in Bitcoin.\n\n5. Technical analysis: Analysis of Bitcoin's price action, including support and resistance levels, Bollinger Bands, and Ichimoku Cloud, with predictions of a potential breakout and confirmation of the next leg up.\n\n6. Bitcoin's impact on humanity: Speculation about Bitcoin having a bigger impact on humanity than the internet, with references to its potential to change the financial system.\n\nOverall, the sentiment on Twitter seems to be bullish on Bitcoin, with discussions focusing on price movements, technical analysis, institutional investments, and the potential impact of Bitcoin on society.", - data: [ - 38, 26, 28, 47, 272, 162, 119, 96, 59, 44, 59, 40, 35, 19, 48, 25, 14, 44, 48, 23, 34, 31, - 37, 79, 39, 34, 33, 30, 30, 49, 49, 31, 56, 27, 26, 32, 44, 57, 38, 56, 41, 80, 45, 45, 28, - 62, 42, 46, 44, 32, 51, 48, 28, 44, 27, - ], - }, - { - label: 'SOL ETF', - topics: 'solana,sol,etf,sec,approval', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n1. Femi Otedola acquiring a stake in First Bank at N31 per share\n2. Micro caps planning XRP or SOL treasuries being labeled as potential scams by VanEck\n3. Coinshares filing an S-1 for a SOL ETF\n4. Multiple firms filing Solana ETF S-1s with the SEC\n5. Solana reaching 300K .sol domains registered and 132K unique owners\n6. Institutions betting big on Solana with $1,000 within reach\n7. Canadian firm Sol Strategies filing to trade on Nasdaq under the ticker $STKE\n8. Solana's price action remaining muted despite ETF speculation\n9. Solana coiling at a high-confluence support zone, suggesting a major move is near\n10. Speculation about Solana being sold on the OTC market by hodlers\n\nOverall, the discussions on Twitter indicate a mix of excitement, skepticism, and speculation surrounding Solana and other cryptocurrencies in the industry.", - data: [ - 12, 7, 6, 7, 1, 5, 25, 7, 18, 9, 21, 3, 5, 10, 4, 16, 6, 18, 7, 7, 8, 3, 6, 5, 5, 7, 3, 9, - 6, 4, 6, 9, 6, 10, 13, 9, 7, 13, 7, 6, 8, 1, 6, 29, 10, 11, 9, 7, 4, 8, 8, 9, 3, 5, 3, - ], - }, - { - label: 'Inflation, FOMC and rates', - topics: 'inflation,fed,rates,rate,fomc', - description: - "The key topics discussed in the messages from twitter related to the crypto industry are:\n1. Inflation concerns and the impact on interest rates\n2. Calls for the Federal Reserve to cut rates\n3. Bank of Japan rate decision and its potential impact on the yen\n4. The Federal Reserve's data-driven approach to interest rate decisions\n5. Speculation on the impact of the Federal Reserve's decisions on the cryptocurrency market\n6. The relationship between interest rates, currency strength, and market volatility\n7. The Federal Reserve's decision-making process and potential political influences\n\nOverall, the messages reflect a mix of economic analysis, market speculation, and calls for action from financial institutions.", - data: [ - 1, 4, 4, 10, 2, 3, 4, 2, 3, 2, 3, 7, 13, 6, 3, 10, 7, 15, 36, 1, 6, 3, 3, 19, 4, 19, 13, 6, - 3, 4, 27, 6, 9, 3, 23, 4, 2, 9, 11, 24, 9, 7, 7, 2, 2, 0, 13, 4, 8, 2, 5, 3, 1, 5, 1, - ], - }, - { - label: 'Memecoins', - topics: 'meme,pepe,memecoin,memes,memecoins', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Memecoins: There is a lot of discussion around various memecoins such as Doge, Pepe, and Fartcoin. People are speculating on their potential for growth and discussing their market cap and community building aspects.\n2. Memecoin Supercycle: Some analysts are predicting a bullish parabolic surge in memecoins, while others are questioning the staying power of coins like PEPE and FLOKI.\n3. Community vs. Protocol Utility: There is a debate on whether community hype or protocol utility is more valuable in the crypto space, with some arguing that memes and community building are essential for success.\n4. Meme Projects: There are mentions of upcoming meme projects like MemeaniaNFT, which are generating excitement and offering opportunities for participation through drops and giveaways.\n5. Meme Culture: The importance of memes in building community and culture on the blockchain is highlighted, with references to meme contests and meme-themed events like the Meme Olympics.', - data: [ - 4, 2, 3, 6, 2, 2, 1, 2, 3, 4, 14, 3, 4, 5, 8, 5, 2, 3, 7, 2, 4, 8, 6, 7, 2, 2, 2, 4, 4, 6, - 2, 71, 4, 6, 2, 5, 30, 7, 5, 7, 2, 5, 5, 2, 3, 5, 4, 10, 5, 4, 1, 4, 3, 2, 10, - ], - }, - { - label: 'AI', - topics: 'ai,jobs,models,humans,intelligence', - description: - 'The key topics discussed in the messages from twitter are:\n1. The impact of AI on jobs and society\n2. The role of AI in revolutionizing industries\n3. The importance of quality inputs for AI models\n4. The potential for AI and robots to take on more human tasks\n5. The use of AI in decentralized networks\n6. The need for human involvement in high-impact decision-making\n7. The future of trustless AI verification\n8. Decentralized AI compute and storage\n9. Collaboration between different AI technologies\n10. The potential for AI to assist but not fully take over human tasks.', - data: [ - 10, 46, 4, 6, 0, 3, 0, 5, 1, 1, 4, 3, 1, 5, 6, 6, 5, 6, 4, 6, 5, 10, 5, 5, 12, 4, 5, 3, 7, - 7, 5, 3, 9, 4, 6, 9, 4, 5, 9, 9, 9, 7, 1, 3, 4, 5, 11, 8, 5, 3, 7, 1, 2, 5, 7, - ], - }, - { - label: 'Virtuals', - topics: 'virtualsio,points,room,virtuals,yapping', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Staking $VADER to maximize chances of receiving airdrops from upcoming projects\n- Participation in @virtuals_io Genesis Launches and earning virgen points\n- Strategies for success in virtual experiences and immersive virtual platforms\n- Discussion about new projects like $ROOM by @useBackroom on @virtuals_io\n- The importance of staking $VADER for earning points and maximizing ROI\n- Excitement and anticipation for upcoming launches and projects in the crypto industry\n\nOverall, the crypto community on social media is actively engaged in discussions about staking, earning points, and participating in new projects to maximize returns and opportunities in the industry.', - data: [ - 1, 2, 1, 9, 1, 1, 0, 2, 5, 4, 2, 3, 3, 10, 1, 3, 3, 7, 3, 7, 7, 2, 9, 7, 6, 4, 5, 2, 1, 5, - 4, 1, 3, 2, 2, 8, 11, 4, 9, 6, 15, 1, 4, 4, 12, 5, 3, 6, 7, 2, 3, 50, 4, 8, 6, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,3000,breakout,4000', - description: - "The key topics currently being discussed on Twitter regarding Ethereum ($ETH) include:\n- Price predictions and analysis, with mentions of potential price targets such as $4,000, $6,000-$8,000 in 2025, and even +$8,000 in the future.\n- Discussion of key support and resistance levels, with a focus on the $2500 level as a crucial point for Ethereum's price movement.\n- Mention of Ethereum staking hitting an all-time high, with over 35 million ETH locked and growing investor confidence.\n- Speculation on potential breakout scenarios for Ethereum, with mentions of a ticking time bomb for a breakout and the possibility of a rapid price increase to $3,000.\n- Analysis of technical indicators and chart patterns, with a focus on key zones like $2680-$2740 and the importance of breaking and holding above certain levels for further price appreciation.\n- Reference to Ethereum's daily structure and consolidation near $2,512, with a medium-term bullish outlook despite short-term caution.\n- Mention of Ethereum's recent price drop to the bottom of a rising channel and the testing of boundaries multiple times, indicating a valid channel for price movement.\n- Discussion of Ethereum's potential for a giga send once it breaks a descending resistance on its $ETH to $BTC pair, signaling a potential altseason and further price appreciation.", - data: [ - 1, 1, 1, 3, 0, 1, 5, 8, 2, 3, 6, 13, 1, 2, 0, 10, 61, 3, 3, 1, 3, 3, 2, 8, 6, 8, 2, 1, 1, 5, - 8, 0, 8, 0, 2, 2, 3, 9, 4, 9, 4, 2, 9, 8, 6, 2, 8, 3, 6, 4, 1, 7, 0, 10, 3, - ], - }, - { - label: 'GENIUS Act', - topics: 'genius,senate,act,stablecoin,passed', - description: - 'The key topic discussed in the messages from twitter is the passing of the GENIUS Act in the US Senate, which is a landmark bill aimed at regulating and legitimizing stablecoins nationwide. The bill received strong bipartisan support and sets strict legal standards for stablecoin issuers operating in the US. This development is seen as a major step forward in crypto regulation and is expected to have a significant impact on the stablecoin market cap, with some predicting a 10x increase. The bill is also seen as a positive move towards making the US a global leader in crypto.', - data: [ - 2, 0, 4, 5, 1, 1, 24, 6, 0, 2, 0, 4, 6, 4, 1, 2, 1, 5, 1, 12, 6, 1, 1, 6, 1, 2, 2, 3, 2, 2, - 5, 1, 5, 8, 7, 56, 1, 1, 2, 5, 2, 9, 3, 5, 14, 3, 3, 4, 8, 0, 1, 2, 15, 1, 1, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,digital,fine', - description: - 'The messages from twitter are discussing various topics related to art, including spray art, Mexican Folk Art, Mayan Warrior Totems, Eddie Alfaro Art, digital mixed-media art, glitch art, and NFT art collections. The messages also mention the importance of collaboration in art, the influence of other artists, and the upcoming opening of a new space for time-based art in NYC. Overall, the discussion on social media seems to be focused on different forms of art, both traditional and digital, and the evolving landscape of the art world.', - data: [ - 7, 2, 42, 4, 0, 0, 0, 1, 0, 1, 3, 7, 3, 1, 5, 4, 4, 3, 6, 2, 2, 5, 5, 0, 9, 3, 4, 3, 4, 11, - 4, 6, 9, 3, 3, 4, 6, 3, 2, 6, 3, 1, 10, 4, 4, 2, 1, 3, 4, 0, 2, 2, 3, 3, 3, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,web3', - description: - 'The key topics discussed in the messages from twitter about the crypto industry are related to gaming and decentralized applications. Some of the specific words mentioned include Immutable, Decentraland, Mythos, FIFA, Nintendo switch, Super smash bros ultimate, Kirby game, FIFA Rivals, PlayZap Games, Web3 gaming, GameFi, and virtuals_io. The messages also touch on the launch of new games, community involvement in game development, and the future of gaming in the crypto space. Overall, the discussions revolve around the innovation and growth of gaming within the crypto industry.', - data: [ - 1, 1, 0, 4, 0, 5, 0, 2, 0, 10, 5, 3, 1, 3, 0, 1, 4, 6, 1, 41, 2, 5, 2, 3, 4, 3, 3, 2, 1, 4, - 4, 1, 1, 6, 0, 3, 20, 3, 2, 8, 6, 4, 2, 5, 4, 5, 2, 6, 5, 1, 5, 2, 1, 8, 2, - ], - }, - { - label: 'Bitcoin treasury strategies', - topics: 'firm,treasury,company,million,coinpedia', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Companies and individuals making significant Bitcoin treasury raises and acquisitions\n2. Strategic growth initiatives combining Bitcoin reserves and tokenization\n3. Publicly traded companies raising funds to buy more Bitcoin\n4. Predictions of Bitcoin reaching $1 million by 2030\n5. Europe's first Bitcoin treasury firm announcing equity and bond raises\n6. Bitcoin trading over $100,000 for over 40 consecutive days\n7. Corporate buying of Bitcoin being relentless\n8. The potential for global trade to eventually be settled in Bitcoin\n\nOverall, the sentiment in the crypto industry on Twitter seems to be bullish on Bitcoin and optimistic about its future potential.", - data: [ - 4, 4, 4, 1, 3, 4, 11, 8, 8, 4, 6, 7, 0, 3, 4, 2, 3, 3, 11, 4, 1, 1, 6, 6, 1, 2, 1, 9, 6, 0, - 2, 2, 2, 6, 4, 1, 0, 4, 12, 2, 8, 15, 7, 4, 3, 6, 8, 0, 0, 1, 0, 1, 3, 3, 1, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,shit,army,tweets', - description: - 'The key topics currently being discussed on Twitter regarding the crypto industry are Dogecoin, with mentions of its price movements, potential for growth, and comparisons to other cryptocurrencies. There is also discussion about the Dogecoin community, with references to the "Doge army" and plans for a Dogecoin suit. Additionally, there are technical analysis mentions about Dogecoin\'s price trends and potential trading setups. Overall, the sentiment seems to be bullish towards Dogecoin, with excitement and optimism about its future prospects.', - data: [ - 4, 3, 1, 4, 0, 2, 0, 1, 3, 3, 4, 3, 2, 1, 71, 6, 0, 6, 1, 3, 4, 4, 8, 7, 1, 1, 4, 3, 4, 2, - 1, 2, 1, 0, 2, 0, 3, 0, 0, 1, 0, 3, 5, 1, 1, 2, 3, 7, 2, 3, 5, 1, 4, 1, 0, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,yield,payments,stable', - description: - 'The key topics currently being discussed on Twitter regarding stablecoins in the crypto industry include:\n- The increasing popularity and adoption of stablecoins, with mentions of Aptos, Ethereum, DeFi, and Altseason\n- The role of stablecoins as the financial backbone of DeFi, RWA tokenization, payments, and treasury operations\n- The potential impact of rising federal budget deficits and inflation on demand for U.S. dollar-pegged stablecoins\n- The competition among corporations and financial institutions to launch their own stablecoins\n- The comparison of stablecoins to Starlink in terms of providing fast, frictionless, low-cost access to finance\n- The importance of passing on yield to users in order to become the dominant stablecoin\n- The introduction of innovative products like Spark Savings, which allow users to supply stablecoins and receive interest in return\n- The transformation of global finance through the use of stablecoins as core infrastructure for traditional finance (TradFi)', - data: [ - 2, 2, 0, 3, 1, 2, 0, 4, 2, 3, 0, 1, 1, 5, 0, 2, 1, 3, 0, 0, 3, 1, 3, 2, 4, 4, 0, 2, 0, 1, 2, - 1, 1, 5, 1, 4, 4, 3, 0, 5, 1, 2, 0, 1, 69, 4, 2, 3, 2, 2, 2, 1, 3, 2, 3, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,ledger,dao,crash', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. XRP's potential for a major bullish continuation and massive breakout, with discussions on network activity, gains over the next 12 months, and potential price rallies.\n2. Institutional adoption of XRP, including public companies holding XRP in treasury, cross-border payment integration, and the Hidden Road acquisition bringing XRPL into a $3T+ institutional clearing network.\n3. Ripple advising the UK government on crypto adoption strategies and potential expansions within the UK.\n4. Community voting coming to the XRP Ledger through the XAO DAO, focusing on utility, governance, and community involvement.\n5. Technical analysis of XRP's performance, including bearish trends, declines in line with Bitcoin's weakness, and potential market cycles and price predictions.\n6. Speculation on XRP Ledger supply shock and potential tokenization of the global real estate market on the XRP Ledger, leading to price predictions of $11,898 per XRP.\n7. Ripple and SEC filing a joint petition for revising the XRP decision to limit Ripple's institutional movements, potentially impacting crypto regulations and market dynamics.", - data: [ - 4, 5, 1, 5, 2, 0, 4, 4, 5, 13, 4, 6, 3, 3, 3, 2, 1, 3, 4, 4, 3, 0, 4, 4, 1, 1, 1, 4, 0, 1, - 3, 1, 2, 3, 4, 2, 0, 9, 1, 4, 6, 5, 4, 2, 4, 3, 0, 2, 1, 6, 2, 5, 3, 2, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,katana,liquidity,yield,finance', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n\n1. DeFi (Decentralized Finance): There is a lot of discussion around DeFi lending growth fueled by institutional demand, the integration of real-world assets, and the security of DeFi platforms. The concept of programmable Bitcoin in DeFi without wrapping or bridges is also being highlighted.\n\n2. Cross-chain technology: Projects like Mintlayer, MitosisOrg, 0xSoulProtocol, and Infinex are mentioned for their efforts in providing cross-chain access and unified liquidity in the DeFi space. This technology aims to reduce fragmentation in multi-chain ecosystems and enable seamless capital allocation.\n\n3. New developments in DeFi: Projects like Cookiedotfun and Katana are mentioned for their innovative approaches to gamifying on-chain loyalty and fixing issues related to fragmented liquidity and low yields in DeFi. These projects are seen as game-changers in the industry.\n\n4. Industry events and discussions: There is anticipation for events like the #SunFlash Space hosted by JUST, where industry experts discuss the future of DeFi amidst shifting narratives, new laws, and meme-fueled momentum. Additionally, the involvement of companies like Polygon Labs and GSR in projects like Katana is also being highlighted.\n\nOverall, the crypto community on Twitter is actively engaged in discussing the latest trends, developments, and challenges in the DeFi space, as well as showcasing innovative projects and technologies that aim to revolutionize the industry.', - data: [ - 0, 0, 3, 3, 1, 1, 1, 7, 1, 2, 4, 6, 2, 6, 0, 4, 5, 1, 4, 3, 1, 1, 2, 3, 5, 6, 8, 4, 0, 3, 3, - 3, 6, 2, 0, 8, 4, 4, 8, 2, 4, 1, 3, 3, 5, 4, 4, 3, 0, 2, 1, 2, 3, 3, 4, - ], - }, - { - label: 'Sports', - topics: 'game,tonight,et,series,win', - description: - "The messages from twitter are mainly discussing sports events, such as basketball games and cricket matches. The key topics mentioned include the Thunder's performance in the NBA Finals, the upcoming game between the Thunder and Pacers, as well as cricket matches involving teams like India, Pakistan, Bangladesh, and Nepal. There is also a mention of a giveaway related to predicting the winner of the Thunder vs Pacers game. Overall, the discussion revolves around sports events and predictions related to them.", - data: [ - 0, 0, 6, 6, 0, 2, 1, 0, 1, 2, 6, 0, 4, 1, 2, 1, 0, 4, 1, 10, 7, 5, 1, 2, 3, 1, 5, 0, 2, 1, - 1, 4, 6, 3, 3, 4, 7, 2, 0, 4, 0, 3, 3, 2, 3, 4, 1, 10, 4, 0, 5, 0, 2, 5, 7, - ], - }, - { - label: 'BlackRock ', - topics: 'blackrock,bought,worth,etf,breaking', - description: - "The key topic discussed in the messages from Twitter is the significant purchases of cryptocurrencies, particularly Bitcoin and Ethereum, by BlackRock. BlackRock has made multiple large purchases of Bitcoin and Ethereum, totaling over $250 million and $101.5 million respectively. These purchases have led to BlackRock becoming a major institutional holder of both cryptocurrencies. Additionally, there is speculation about BlackRock's potential impact on the cryptocurrency market and the narrative surrounding Ethereum in the coming months. The messages also mention other institutional players like Fidelity and Bitwise making significant purchases of Bitcoin. Overall, the focus is on the increasing involvement of institutional investors like BlackRock in the cryptocurrency space.", - data: [ - 5, 1, 1, 2, 3, 20, 30, 6, 11, 0, 0, 6, 0, 0, 1, 8, 1, 0, 2, 0, 0, 0, 3, 12, 4, 1, 2, 0, 0, - 0, 1, 2, 0, 2, 0, 4, 1, 1, 0, 0, 2, 5, 0, 1, 2, 0, 4, 0, 1, 0, 8, 1, 0, 1, 0, - ], - }, - { - label: 'ETFs', - topics: 'etfs,inflows,net,saw,spot', - description: - 'The key topic discussed in the messages from Twitter is the significant increase in net inflows into Ethereum ETFs compared to Bitcoin ETFs. There is a trend of Ethereum ETFs outperforming Bitcoin ETFs in terms of inflows, with Ethereum experiencing more than 20% of all Ethereum ETF inflows combined in the month of June. This surge in inflows is seen as bullish for Ethereum, with institutions showing confidence in the cryptocurrency. Additionally, there is a mention of a record-breaking streak of consecutive days of inflows into spot Ethereum ETFs, which ended on June 13 with a small outflow. Overall, the data suggests a growing interest and investment in Ethereum ETFs compared to Bitcoin ETFs.', - data: [ - 4, 0, 0, 1, 0, 1, 3, 2, 3, 0, 3, 0, 4, 3, 4, 23, 16, 0, 4, 4, 0, 3, 2, 0, 2, 8, 1, 2, 2, 2, - 1, 0, 0, 4, 5, 0, 0, 1, 2, 0, 1, 1, 8, 3, 17, 0, 0, 2, 2, 0, 2, 2, 1, 4, 0, - ], - }, - { - label: 'Whales', - topics: 'whales,whale,eth,2018,retail', - description: - 'The key topic discussed in the messages from twitter is the aggressive buying behavior of Ethereum whales. Whales have been accumulating over 800K $ETH daily for nearly a week, with a total of 14.3 million ETH held in key wallets. This trend indicates strong institutional and whale confidence in Ethereum, with the largest single-day accumulation of 871K ETH since 2017. This accumulation by whales suggests a potential major upcoming move in the Ethereum market.', - data: [ - 2, 2, 0, 5, 0, 5, 6, 16, 3, 0, 2, 0, 4, 0, 0, 2, 17, 0, 0, 0, 0, 0, 2, 0, 2, 3, 0, 2, 1, 2, - 4, 1, 2, 4, 1, 1, 0, 0, 0, 1, 4, 2, 0, 0, 0, 1, 0, 1, 1, 1, 5, 1, 2, 34, 1, - ], - }, - { - label: 'RWA and tokenization', - topics: 'rwa,tokenization,tokenized,realworld,assets', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Real World Assets (RWAs), tokenization, NFT bonds, AI, blockchain technology, decentralized finance, and the intersection of traditional finance with the crypto ecosystem. Projects like Novastro, ELYSIA, and Punkvism are highlighted for their efforts in tokenizing real-world assets and making them accessible and tradable on blockchain platforms. Additionally, the discussion also revolves around specific tokens like $CREDI and $PVT, with mentions of potential gains and investment opportunities. Cross-chain compatibility, fast trading, and secure issuance on platforms like Ethereum, Arbitrum, Sui, and Solana are also key points of interest. Overall, the focus seems to be on the innovative ways in which blockchain technology is being used to revolutionize the financial industry and create new opportunities for investors.', - data: [ - 1, 1, 4, 0, 0, 1, 0, 1, 2, 3, 1, 6, 1, 2, 1, 3, 1, 1, 2, 0, 4, 8, 0, 1, 4, 5, 4, 2, 2, 1, 1, - 1, 4, 1, 4, 3, 5, 2, 7, 1, 0, 20, 0, 3, 7, 1, 2, 0, 7, 2, 0, 1, 0, 2, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-77.json b/priv/repo/major_topics_seed/data-77.json deleted file mode 100644 index bbb77f588a..0000000000 --- a/priv/repo/major_topics_seed/data-77.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["19.06.25","20.06.25","20.06.25","20.06.25","20.06.25","20.06.25","20.06.25","20.06.25","21.06.25","21.06.25","21.06.25","21.06.25","21.06.25","21.06.25","21.06.25","21.06.25","22.06.25","22.06.25","22.06.25","22.06.25","22.06.25","22.06.25","22.06.25","22.06.25","23.06.25","23.06.25","23.06.25","23.06.25","23.06.25","23.06.25","23.06.25","23.06.25","24.06.25","24.06.25","24.06.25","24.06.25","24.06.25","24.06.25","24.06.25","24.06.25","25.06.25","25.06.25","25.06.25","25.06.25","25.06.25","25.06.25","25.06.25","25.06.25","26.06.25","26.06.25","26.06.25","26.06.25","26.06.25","26.06.25","26.06.25"],"datasets":[{"label":"ETH","topics":"eth,ethereum,range,breakout,support","description":"Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry, specifically related to Ethereum ($ETH), include:\n\n1. Price movements and technical analysis: There are mentions of price levels being tested, continuation signals, potential breakouts, and market structure changes affecting price predictions.\n\n2. Institutional interest: Blackrock adding $750 million to Ethereum, staked ETH hitting an all-time high, and the significance of owning ETH as a part of the world ledger.\n\n3. Market momentum and future predictions: Speculation about Ethereum hitting $50,000 in the next 5 years, crossing the $2,500 mark, and potential moves in the market.\n\n4. Community sentiment and support: References to the community holding strong, chart analysis for potential upward movements, and encouragement to not overlook certain opportunities.\n\nOverall, the sentiment appears to be bullish on Ethereum, with discussions focusing on price movements, institutional involvement, market predictions, and community support.","data":[8,11,4,12,0,2,9,8,10,6,10,5,11,10,6,10,136,12,10,10,8,9,11,22,5,14,7,6,15,16,9,10,15,5,7,13,9,13,9,19,5,8,13,18,15,10,10,15,11,8,9,17,5,9,6]},{"label":"AI","topics":"ai,agents,agent,human,data","description":"The key topics currently discussed in the crypto industry on social media include the impact of AI on software engineering, the evolution of AI-first products, the importance of high-quality training data for AI development, the relationship between AI and human behavior, the potential biases and challenges of AI, and the development of on-chain AI platforms. There are also discussions about the hype surrounding AI, the need for AI to have a positive impact on society, and the potential for AI to lead and innovate in the crypto space. Additionally, there are mentions of specific projects and platforms such as @JoinSapien and @noya_ai that are working on redefining the relationship between data and AI and creating autonomous agents on the blockchain.","data":[34,60,8,15,0,0,5,6,0,6,7,12,6,8,7,7,7,8,6,9,11,6,11,8,13,14,7,5,2,2,5,8,9,5,5,3,12,13,9,10,13,10,3,4,3,5,7,18,9,6,6,6,4,5,6]},{"label":"BTC vs fiat money","topics":"fiat,money,bitcoin,people,understand","description":"The key topics discussed in the messages from twitter are:\n1. Bitcoin as a tool for getting out of debt\n2. Investing in Bitcoin treasury companies vs owning Bitcoin\n3. Fiat currency backed by debt vs Bitcoin backed by math, code, and time\n4. Concerns about government's ability to pay bills and minting coins\n5. Criticism of fiat maximalists and centralized control\n6. Scarcity of Bitcoin and divisibility\n7. Frustration with fiat society and desire to exit it\n8. History of Bitcoin development and block size wars\n9. Critique of centralization of wealth and power\n10. Advocacy for decentralized cryptocurrencies like Monero, Zano, Zcash, Litecoin, and Digibyte over banks.","data":[1,1,4,6,63,26,2,1,9,8,2,6,7,3,6,7,8,5,9,14,7,7,6,3,6,6,9,3,1,5,1,5,11,3,4,7,17,5,3,7,9,11,4,9,4,9,6,11,0,8,8,9,6,2,11]},{"label":"Memecoins","topics":"meme,memes,memecoin,useless,coins","description":"The key topics currently discussed in the crypto industry on social media include:\n1. Memes: There is a lot of discussion and sharing of crypto memes, with users asking about favorite memes and sharing new ones.\n2. $TROLL/ETH: There is hype around the $TROLL/ETH pairing, with mentions of insane moves and the meme king.\n3. Frog posters and gigachads: These are seen as the guardians and protectors of the digital realm, with references to Knights Templar.\n4. Supermemes: Modern equivalents of old war or economic slogans that have become gravitational centers of meme wars.\n5. $GIGA: Attracts quality over quantity, with mentions of emotional bitches on Crypto Twitter.\n6. Meme Mania: Discussion about trading hot meme coins and winning rewards with friends.\n7. $AURA: Mentioned as a main character to lead the trench and light up the meme market.\n8. Study by biggest x community in history: Reference to studying the best normie friendly narrative and combining gaming, pfp meta, and cute cats.\n9. Market trends: Mention of Dino coins giga pump incoming and various cryptocurrencies like LTC, TRX, AAVE, MKR, DOGE, XRP, AVAX.\n10. $MASK: Mentioned as something to study and love.\n\nOverall, the crypto community on social media is actively engaged in discussing memes, specific cryptocurrency pairings, market trends, and various projects within the industry.","data":[5,0,2,9,3,0,3,1,8,7,7,8,6,7,2,4,3,7,13,8,2,13,9,3,4,8,5,10,6,9,5,66,9,3,4,4,10,7,6,5,4,4,9,1,1,9,5,8,10,12,6,14,7,5,5]},{"label":"FED, inflation and rate cuts","topics":"powell,inflation,fed,cuts,rates","description":"The key topics currently discussed in the crypto industry on social media include:\n- Federal Reserve Chair Jerome Powell asserting that the central bank cannot legally purchase crypto and is not seeking authority to do so\n- Banks being free to provide banking services to the crypto industry\n- BoE Governor Bailey commenting on a big turnaround overnight with the oil price\n- Inflation readings being encouraging according to Fed officials\n- Speculation on whether the Fed will cut rates and the potential impact on mortgage rates\n- BoJ's Tamura discussing firms cautiously optimistic on US tariff impact\n- Fed Chair Powell declaring Bitcoin and crypto as mature assets and mainstream\n- Larry Kudrow's comments on tariffs, manufacturing, and inflation\n- US Vice President JD Vance criticizing Powell for not cutting rates despite lower inflation\n- Discussion on the US housing market and its implications for the economy","data":[6,0,6,4,0,3,6,14,2,1,2,8,4,9,1,6,1,7,9,2,5,2,2,13,3,19,1,5,3,5,48,3,2,2,17,2,4,6,1,20,6,17,3,6,7,3,8,8,3,5,6,10,4,1,2]},{"label":"GameFi","topics":"game,gaming,games,play,web3","description":"The key topics currently discussed in the crypto industry on social media include:\n- N64 games and gaming\n- Web3 games and platforms\n- Gameflip marketplace reviews\n- Play2Earn models powered by $NAKA\n- New game launches on Immutable\n- Gaming championships and tournaments\n- Weekly gaming roundups and quests\n- SSR Card Game and betting strategies\n\nOverall, the crypto community on social media is actively engaged in discussions related to gaming, new game launches, gaming tournaments, and strategies for earning rewards through gaming platforms.","data":[3,1,5,6,0,4,2,7,3,6,7,8,4,7,6,1,1,4,11,11,40,4,6,2,2,6,8,4,6,6,1,0,5,4,4,3,12,1,6,6,6,3,7,3,4,6,4,4,7,1,0,7,5,13,4]},{"label":"Art","topics":"art,artist,piece,work,artists","description":"The key topics discussed in the messages from twitter include:\n1. AI-generated art\n2. Generative art series\n3. Bas-relief carving technique in graffiti\n4. NFT collections on Magic Eden\n5. Collective artist community and experimentation\n6. Street art and folk art influences\n7. Digital art using bank notes\n8. Art news accuracy and credibility\n9. Art exhibitions in London\n\nOverall, the messages highlight a diverse range of topics related to art, technology, and the crypto industry.","data":[2,1,52,2,0,0,1,2,2,2,3,8,5,7,4,8,6,4,10,5,3,1,10,3,4,6,2,3,4,10,3,7,5,13,7,5,9,5,5,2,4,3,3,1,5,5,1,5,6,4,4,3,5,0,4]},{"label":"SOL","topics":"solana,sol,etf,cme,privacy","description":"The key topics discussed in the messages from Twitter about the crypto industry include:\n- Solana mainnet perps and the Solana Foundation's alignment for success\n- Ethereum Foundation activities compared to Solana\n- Solana ETF nearing launch\n- Solana futures volume reaching record highs\n- Potential support and resistance levels for Solana\n- Speculation about Fortune 500 companies announcing SOL treasury allocations\n- CME Open Interest Movers and trading activity in Solana\n- Technical analysis indicating a potential bullish breakout for Solana\n- Hidden wallets holding significant amounts of SOL on FTX exchange\n- VanEck's spot ETF filing impacting long-term hopes for Solana\n- Positive technical signals for Bitcoin, Ethereum, and Solana\n- Introduction of Fusionist (ACE) on BNSOL Super Stake and airdrop rewards for holders of bzSOL\n\nOverall, the messages reflect a mix of technical analysis, market speculation, and updates on new developments within the crypto industry, particularly focusing on Solana and its potential for growth and adoption.","data":[5,3,7,3,0,0,7,7,4,4,5,3,6,7,4,5,7,3,11,5,2,3,6,3,6,3,8,7,1,9,0,0,6,4,5,3,6,12,5,2,3,3,2,24,7,4,7,2,6,2,3,6,2,6,1]},{"label":"Virtuals","topics":"virtualsio,points,yapping,virtual,genesis","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- VADER staking and its benefits for users\n- Virtuals points and their value in the market\n- Launches of new projects and their impact on the market\n- Potential price movements of various cryptocurrencies such as $velo, $WAVES, $VADER, $WACH, $VIRGEN, $MAMO, $GAME, and $SOLACE\n- Participation in presales and the potential for luck in investments\n- Updates and developments in projects like VulcanVerse and Waves Protocol\n- The potential for AI integration in blockchain technology and its impact on price action\n- The deflationary loop and supply dynamics of certain cryptocurrencies\n- Community engagement and loyalty in projects like Virtuals_io\n- Market trends and opportunities for investment in projects like $WACH\n- The concept of hodling and the importance of patience in the crypto market\n\nOverall, the sentiment in these discussions seems to be positive, with users expressing excitement about new projects, potential price movements, and opportunities for investment in the crypto market.","data":[1,0,3,2,0,1,0,1,3,2,2,3,5,6,3,4,0,4,7,2,5,4,1,7,2,2,0,2,0,6,3,3,2,3,2,3,9,2,4,2,1,1,4,5,10,4,3,1,7,2,0,24,42,5,6]},{"label":"Bitcoin treasury strategies","topics":"says,plans,traded,publicly,treasury","description":"The key topic discussed in the messages from Twitter is the increasing trend of companies and governments accumulating Bitcoin for their treasuries. Various companies, such as Sequans Communications, Panther Metals, The Smarter Web Company, and CardoneCapital, are mentioned to have added significant amounts of Bitcoin to their balance sheets. Additionally, there are reports of the White House and other governments planning to accumulate Bitcoin for strategic reserves. This trend indicates a growing acceptance and adoption of Bitcoin as a valuable asset for financial reserves.","data":[5,7,3,3,8,3,2,2,13,0,4,6,3,1,2,3,1,7,7,6,0,2,4,6,0,2,4,10,6,0,4,5,1,2,7,4,3,5,9,3,3,21,8,0,3,6,2,4,1,0,1,0,2,0,3]},{"label":"DeFi","topics":"defi,sparkdotfi,yield,protocols,tvl","description":"The key topics discussed in the messages from twitter are:\n1. DeFi regulation by governments\n2. Accelerated adoption of DeFi\n3. Partnership announcements in the DeFi space\n4. Privacy and security in DeFi transactions\n5. Integration of AI in DeFi\n6. Market share and performance of specific DeFi tokens like Aave\n7. Cross-chain liquidity and efficiency in DeFi\n8. Future of payments and DeFi in LATAM\n9. Autonomous DeFi and competition with AI\n10. Development of unified lending, stablecoin, DEX, and credit infrastructure in DeFi\n\nOverall, the messages highlight the growing complexity and innovation within the DeFi industry, with a focus on regulatory challenges, technological advancements, and market trends.","data":[3,4,4,2,0,1,1,3,2,3,1,4,0,5,14,3,3,5,2,8,2,1,4,3,3,5,5,3,5,4,3,2,5,6,3,4,3,2,8,0,4,1,5,4,7,5,8,6,6,6,8,3,5,3,2]},{"label":"Circle IPO","topics":"circle,usdc,ipo,shares,stock","description":"Based on the messages from Twitter, it is evident that Circle, a crypto company, has experienced a significant surge in its post-IPO valuation, reaching $66.9 billion. This valuation surpasses the supply of USDC, the stablecoin issued by Circle. The company's stock has been rising rapidly since going public, with its market capitalization exceeding that of USDC. Additionally, there is discussion about regulatory clarity in the crypto industry, as well as speculation about potential future crypto IPOs following Circle's success. Furthermore, there are updates on the performance of Curve DAO Token (CRV) and discussions about the impact of regulatory changes on the crypto market. Overall, the crypto community is closely monitoring Circle's developments and the broader implications for the industry.","data":[6,0,3,2,1,2,1,1,0,0,15,2,13,3,3,4,2,3,5,7,2,3,4,4,8,12,5,7,2,2,3,2,4,6,5,2,2,5,5,2,4,0,9,3,3,3,4,4,0,6,1,8,0,0,4]},{"label":"Newly listed coins","topics":"alpha,listing,utc,binance,pair","description":"The key topics currently being discussed in the crypto industry on Twitter include new listings on various exchanges such as MEXC, KuCoin, Bitget, Poloniex, and Binance. There are also mentions of trading competitions on Binance, new tokens like $MOVE, $BULLA, $PUFF, $DMC, $CSITRON, and $CESS being listed or available for trading. Additionally, there are announcements about airdrops, token migrations, and the performance of certain tokens like $MGO. Overall, the crypto community on Twitter seems to be active and engaged with various developments in the industry.","data":[0,3,3,3,0,11,0,0,0,0,6,3,0,0,8,0,1,5,2,1,1,1,2,0,3,12,6,4,10,2,0,2,0,56,3,2,6,4,0,3,2,1,2,0,2,0,0,0,0,8,0,6,1,0,3]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,payments,visa,stable","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n\n1. Stablecoin SuperCycle: The stablecoin market continues to evolve rapidly, with new technologies and innovations driving growth. The Empire Strikes Out: Institutionalists Failed To Kill The Stablecoin Bill, and the Bank for International Settlements argues stablecoins fail 'three key tests'.\n\n2. Privacy and Mass Adoption: Stablecoins are evolving fast, but without privacy features, mass adoption may stall. Multi-Party Computation (MPC) is seen as a game-changer that brings confidential transfers and balances to the forefront.\n\n3. Yield-Generating vs. Payment Stablecoins: There is a discussion about the dichotomy between yield-generating stablecoins and payment stablecoins. While there may be many bespoke stablecoins for yield generation, only a few major ones are used for inter-stable settlement due to liquidity network effects.\n\n4. Stablecoin Development Services: Institutions and enterprises are looking to launch their own stablecoins, and there is a growing demand for stablecoin development and advisory services. Industry veterans from Stably are helping businesses advance into the Stablecoin Age.\n\n5. Algorand for Stablecoin Issuance: Arnoud Star Busmann, CEO of Quantoz, discusses using Algorand $ALGO to issue stablecoins due to its robust and safe features. Algorand is seen as a secure and cost-effective platform for stablecoin issuance.\n\n6. Global Adoption of Stablecoin-Powered Payments: Stablecoin-powered payments are already reshaping the global financial system. Leaders in the industry are exploring how Asia is scaling stablecoin adoption globally.\n\n7. Plasma Blockchain Launch: Plasma is launching a blockchain that aims to make transferring stablecoin assets easier than ever. The platform is positioning itself as a key player in the crypto and stablecoin space.\n\nOverall, the discussions on social media highlight the rapid evolution and adoption of stablecoins in the crypto industry, with a focus on innovation, privacy, security, and global adoption.","data":[7,1,4,5,0,0,2,1,0,3,4,3,2,2,1,3,4,3,3,1,2,5,1,3,2,2,2,0,2,1,4,1,2,1,3,2,4,3,1,3,4,8,1,1,53,3,3,1,2,5,0,3,5,4,1]},{"label":"Whales","topics":"whale,whales,eth,position,opened","description":"The key topic discussed in the Twitter messages is the activity of whales in the crypto industry, particularly focusing on their buying and selling behavior in relation to cryptocurrencies such as Ethereum ($ETH) and Bitcoin ($BTC). Whales are seen accumulating large amounts of ETH during dips, with some engaging in profit-taking events. There is also mention of a whale facing significant unrealized losses and potential liquidation if the price of BTC drops below a certain threshold. The messages highlight the contrast between retail investors offloading their holdings and whales quietly stacking, prompting discussions on who is making the right moves in the market. Additionally, there are references to trading competitions hosted by platforms like Blofin, offering participants the chance to win substantial prizes including a Tesla Cybertruck and cash/crypto rewards.","data":[5,2,0,2,2,8,8,15,7,0,1,1,0,2,5,2,14,0,1,2,0,2,1,1,4,3,0,7,3,2,2,1,4,5,2,8,0,0,2,1,4,3,6,2,0,1,2,0,1,0,3,3,2,34,0]},{"label":"BTC price","topics":"range,weekly,btc,resistance,zone","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin's price movements: There is discussion about Bitcoin holding support levels, testing key levels, and potential upside continuation setups. Traders are analyzing price levels such as $100,000, $106,000, and $101,455, as well as potential support at $93,000.\n\n2. Market sentiment and predictions: Traders are sharing their thoughts on potential market movements, with some predicting a bullish scenario for smaller treasuries and a market-wide run-up. There is also mention of a potential elevator drop back down to certain price zones.\n\n3. Technical analysis: Analysts are discussing technical indicators such as RSI in a tight wedge, weekly support levels, and key confluence zones like the Tenkan-sen and Fair Value Gap. There is also analysis of historical price movements and trade locations.\n\n4. Market dynamics: There is discussion about market fear signaled by futures in backwardation, as well as the importance of volume and momentum in determining market direction.\n\nOverall, the sentiment on Twitter seems to be a mix of cautious optimism and technical analysis-driven predictions for Bitcoin and the crypto market.","data":[1,1,2,2,6,7,2,19,2,1,3,2,1,7,2,2,1,4,8,1,1,2,4,8,1,0,5,2,1,3,5,2,2,3,2,0,2,5,1,11,3,2,3,5,2,6,7,3,0,3,2,3,0,7,1]},{"label":"Sports","topics":"game,et,player,tonight,win","description":"The key topics discussed in the messages from twitter are:\n1. NBA Game 7 between the Pacers and Thunder\n2. Kevin Durant's performance in Game 7\n3. OKC Thunder winning their first championship\n4. Emotional roller coaster of the NBA season\n5. FIFA World Cup\n6. Latam teams performing well against European teams\n7. Caitlin's potential as a soccer player\n8. Cooper Flagg preparing for the NBA draft\n9. Travis Hunter's signing bonus in the NFL\n10. NFL players getting vaccinated for COVID-19 and its impact on the game.","data":[2,2,2,2,0,0,1,3,0,2,1,2,2,4,1,8,4,3,10,5,19,3,6,3,3,3,1,2,2,3,5,2,5,3,3,7,1,0,0,4,2,2,2,7,1,2,1,4,5,2,9,0,3,8,1]},{"label":"Kaito, Loudio and yappers","topics":"yapyo,yapyoarb,arbitrum,yap,leaderboard","description":"The messages from Twitter indicate a strong focus on the crypto industry, particularly on projects like Arbitrum and Yapyo. The community seems highly engaged and active, with discussions about onchain ecosystems, farming, and engagement on social media platforms. There is also mention of partnerships with Kaito AI and Cookie DAO, as well as the importance of verified attention as a measurable asset. Overall, the community appears to be enthusiastic about these projects and eager to participate in discussions and activities related to them.","data":[2,3,9,0,1,2,0,3,1,2,0,3,8,4,1,6,1,2,2,6,4,4,5,1,4,2,0,6,5,7,3,5,6,3,1,3,1,3,4,6,4,0,3,5,0,2,2,4,4,0,3,3,2,1,15]},{"label":"BTC","topics":"bitcoin,download,pumping,loading,bull","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin world domination and new all-time highs\n2. Umbrel Bitcoin Core frontend\n3. Bitcoin as a tool for measuring patience\n4. Bitcoin as the main actively funded asset\n5. Satoshi and the origin of Bitcoin\n6. Memecoins like Byte the ai digital\n7. Community feud between Bitcoin and XRP\n8. Shopping with Bitcoin\n9. Crypto investing and the Web3 community\n10. Grant's ideas on Bitcoin and the @_BitcoinMatrix\n\nOverall, the sentiment towards Bitcoin appears positive and there is a strong focus on its potential for growth and adoption in the future.","data":[1,1,1,2,29,30,0,5,2,1,1,2,2,2,2,2,1,1,3,0,1,4,4,2,3,2,3,1,3,1,3,1,0,3,3,2,3,3,6,6,1,3,3,3,2,1,1,3,2,1,2,1,0,2,5]},{"label":"Blackrock","topics":"blackrock,bought,etf,worth,eth","description":"The key topic discussed in the messages from Twitter is the significant amount of Bitcoin and Ethereum purchases made by BlackRock, a major financial institution. BlackRock has bought over $750 million worth of Ethereum in June and has also made substantial purchases of Bitcoin. This has led to speculation about the impact of BlackRock's investments on the cryptocurrency market and the potential benefits for those holding Bitcoin and Ethereum. Additionally, there is discussion about BlackRock's Bitcoin ETF and its control over a significant portion of the Bitcoin supply. Overall, the messages highlight BlackRock's increasing involvement in the cryptocurrency space and its potential influence on the market.","data":[3,0,0,4,2,24,26,3,22,0,1,2,2,0,2,1,9,2,0,0,1,0,2,8,3,2,1,2,1,0,1,1,3,1,1,7,1,1,5,0,1,2,1,0,4,2,1,0,1,2,0,7,4,1,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-77.ts b/priv/repo/major_topics_seed/data-77.ts deleted file mode 100644 index ff110ebfeb..0000000000 --- a/priv/repo/major_topics_seed/data-77.ts +++ /dev/null @@ -1,262 +0,0 @@ -export const NARRATIVES = { - labels: [ - '19.06.25', - '20.06.25', - '20.06.25', - '20.06.25', - '20.06.25', - '20.06.25', - '20.06.25', - '20.06.25', - '21.06.25', - '21.06.25', - '21.06.25', - '21.06.25', - '21.06.25', - '21.06.25', - '21.06.25', - '21.06.25', - '22.06.25', - '22.06.25', - '22.06.25', - '22.06.25', - '22.06.25', - '22.06.25', - '22.06.25', - '22.06.25', - '23.06.25', - '23.06.25', - '23.06.25', - '23.06.25', - '23.06.25', - '23.06.25', - '23.06.25', - '23.06.25', - '24.06.25', - '24.06.25', - '24.06.25', - '24.06.25', - '24.06.25', - '24.06.25', - '24.06.25', - '24.06.25', - '25.06.25', - '25.06.25', - '25.06.25', - '25.06.25', - '25.06.25', - '25.06.25', - '25.06.25', - '25.06.25', - '26.06.25', - '26.06.25', - '26.06.25', - '26.06.25', - '26.06.25', - '26.06.25', - '26.06.25', - ], - datasets: [ - { - label: 'ETH', - topics: 'eth,ethereum,range,breakout,support', - description: - 'Based on the messages from Twitter, it seems that the key topics being discussed in the crypto industry, specifically related to Ethereum ($ETH), include:\n\n1. Price movements and technical analysis: There are mentions of price levels being tested, continuation signals, potential breakouts, and market structure changes affecting price predictions.\n\n2. Institutional interest: Blackrock adding $750 million to Ethereum, staked ETH hitting an all-time high, and the significance of owning ETH as a part of the world ledger.\n\n3. Market momentum and future predictions: Speculation about Ethereum hitting $50,000 in the next 5 years, crossing the $2,500 mark, and potential moves in the market.\n\n4. Community sentiment and support: References to the community holding strong, chart analysis for potential upward movements, and encouragement to not overlook certain opportunities.\n\nOverall, the sentiment appears to be bullish on Ethereum, with discussions focusing on price movements, institutional involvement, market predictions, and community support.', - data: [ - 8, 11, 4, 12, 0, 2, 9, 8, 10, 6, 10, 5, 11, 10, 6, 10, 136, 12, 10, 10, 8, 9, 11, 22, 5, 14, - 7, 6, 15, 16, 9, 10, 15, 5, 7, 13, 9, 13, 9, 19, 5, 8, 13, 18, 15, 10, 10, 15, 11, 8, 9, 17, - 5, 9, 6, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,human,data', - description: - 'The key topics currently discussed in the crypto industry on social media include the impact of AI on software engineering, the evolution of AI-first products, the importance of high-quality training data for AI development, the relationship between AI and human behavior, the potential biases and challenges of AI, and the development of on-chain AI platforms. There are also discussions about the hype surrounding AI, the need for AI to have a positive impact on society, and the potential for AI to lead and innovate in the crypto space. Additionally, there are mentions of specific projects and platforms such as @JoinSapien and @noya_ai that are working on redefining the relationship between data and AI and creating autonomous agents on the blockchain.', - data: [ - 34, 60, 8, 15, 0, 0, 5, 6, 0, 6, 7, 12, 6, 8, 7, 7, 7, 8, 6, 9, 11, 6, 11, 8, 13, 14, 7, 5, - 2, 2, 5, 8, 9, 5, 5, 3, 12, 13, 9, 10, 13, 10, 3, 4, 3, 5, 7, 18, 9, 6, 6, 6, 4, 5, 6, - ], - }, - { - label: 'BTC vs fiat money', - topics: 'fiat,money,bitcoin,people,understand', - description: - "The key topics discussed in the messages from twitter are:\n1. Bitcoin as a tool for getting out of debt\n2. Investing in Bitcoin treasury companies vs owning Bitcoin\n3. Fiat currency backed by debt vs Bitcoin backed by math, code, and time\n4. Concerns about government's ability to pay bills and minting coins\n5. Criticism of fiat maximalists and centralized control\n6. Scarcity of Bitcoin and divisibility\n7. Frustration with fiat society and desire to exit it\n8. History of Bitcoin development and block size wars\n9. Critique of centralization of wealth and power\n10. Advocacy for decentralized cryptocurrencies like Monero, Zano, Zcash, Litecoin, and Digibyte over banks.", - data: [ - 1, 1, 4, 6, 63, 26, 2, 1, 9, 8, 2, 6, 7, 3, 6, 7, 8, 5, 9, 14, 7, 7, 6, 3, 6, 6, 9, 3, 1, 5, - 1, 5, 11, 3, 4, 7, 17, 5, 3, 7, 9, 11, 4, 9, 4, 9, 6, 11, 0, 8, 8, 9, 6, 2, 11, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memes,memecoin,useless,coins', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n1. Memes: There is a lot of discussion and sharing of crypto memes, with users asking about favorite memes and sharing new ones.\n2. $TROLL/ETH: There is hype around the $TROLL/ETH pairing, with mentions of insane moves and the meme king.\n3. Frog posters and gigachads: These are seen as the guardians and protectors of the digital realm, with references to Knights Templar.\n4. Supermemes: Modern equivalents of old war or economic slogans that have become gravitational centers of meme wars.\n5. $GIGA: Attracts quality over quantity, with mentions of emotional bitches on Crypto Twitter.\n6. Meme Mania: Discussion about trading hot meme coins and winning rewards with friends.\n7. $AURA: Mentioned as a main character to lead the trench and light up the meme market.\n8. Study by biggest x community in history: Reference to studying the best normie friendly narrative and combining gaming, pfp meta, and cute cats.\n9. Market trends: Mention of Dino coins giga pump incoming and various cryptocurrencies like LTC, TRX, AAVE, MKR, DOGE, XRP, AVAX.\n10. $MASK: Mentioned as something to study and love.\n\nOverall, the crypto community on social media is actively engaged in discussing memes, specific cryptocurrency pairings, market trends, and various projects within the industry.', - data: [ - 5, 0, 2, 9, 3, 0, 3, 1, 8, 7, 7, 8, 6, 7, 2, 4, 3, 7, 13, 8, 2, 13, 9, 3, 4, 8, 5, 10, 6, 9, - 5, 66, 9, 3, 4, 4, 10, 7, 6, 5, 4, 4, 9, 1, 1, 9, 5, 8, 10, 12, 6, 14, 7, 5, 5, - ], - }, - { - label: 'FED, inflation and rate cuts', - topics: 'powell,inflation,fed,cuts,rates', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Federal Reserve Chair Jerome Powell asserting that the central bank cannot legally purchase crypto and is not seeking authority to do so\n- Banks being free to provide banking services to the crypto industry\n- BoE Governor Bailey commenting on a big turnaround overnight with the oil price\n- Inflation readings being encouraging according to Fed officials\n- Speculation on whether the Fed will cut rates and the potential impact on mortgage rates\n- BoJ's Tamura discussing firms cautiously optimistic on US tariff impact\n- Fed Chair Powell declaring Bitcoin and crypto as mature assets and mainstream\n- Larry Kudrow's comments on tariffs, manufacturing, and inflation\n- US Vice President JD Vance criticizing Powell for not cutting rates despite lower inflation\n- Discussion on the US housing market and its implications for the economy", - data: [ - 6, 0, 6, 4, 0, 3, 6, 14, 2, 1, 2, 8, 4, 9, 1, 6, 1, 7, 9, 2, 5, 2, 2, 13, 3, 19, 1, 5, 3, 5, - 48, 3, 2, 2, 17, 2, 4, 6, 1, 20, 6, 17, 3, 6, 7, 3, 8, 8, 3, 5, 6, 10, 4, 1, 2, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,web3', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- N64 games and gaming\n- Web3 games and platforms\n- Gameflip marketplace reviews\n- Play2Earn models powered by $NAKA\n- New game launches on Immutable\n- Gaming championships and tournaments\n- Weekly gaming roundups and quests\n- SSR Card Game and betting strategies\n\nOverall, the crypto community on social media is actively engaged in discussions related to gaming, new game launches, gaming tournaments, and strategies for earning rewards through gaming platforms.', - data: [ - 3, 1, 5, 6, 0, 4, 2, 7, 3, 6, 7, 8, 4, 7, 6, 1, 1, 4, 11, 11, 40, 4, 6, 2, 2, 6, 8, 4, 6, 6, - 1, 0, 5, 4, 4, 3, 12, 1, 6, 6, 6, 3, 7, 3, 4, 6, 4, 4, 7, 1, 0, 7, 5, 13, 4, - ], - }, - { - label: 'Art', - topics: 'art,artist,piece,work,artists', - description: - 'The key topics discussed in the messages from twitter include:\n1. AI-generated art\n2. Generative art series\n3. Bas-relief carving technique in graffiti\n4. NFT collections on Magic Eden\n5. Collective artist community and experimentation\n6. Street art and folk art influences\n7. Digital art using bank notes\n8. Art news accuracy and credibility\n9. Art exhibitions in London\n\nOverall, the messages highlight a diverse range of topics related to art, technology, and the crypto industry.', - data: [ - 2, 1, 52, 2, 0, 0, 1, 2, 2, 2, 3, 8, 5, 7, 4, 8, 6, 4, 10, 5, 3, 1, 10, 3, 4, 6, 2, 3, 4, - 10, 3, 7, 5, 13, 7, 5, 9, 5, 5, 2, 4, 3, 3, 1, 5, 5, 1, 5, 6, 4, 4, 3, 5, 0, 4, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,etf,cme,privacy', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include:\n- Solana mainnet perps and the Solana Foundation's alignment for success\n- Ethereum Foundation activities compared to Solana\n- Solana ETF nearing launch\n- Solana futures volume reaching record highs\n- Potential support and resistance levels for Solana\n- Speculation about Fortune 500 companies announcing SOL treasury allocations\n- CME Open Interest Movers and trading activity in Solana\n- Technical analysis indicating a potential bullish breakout for Solana\n- Hidden wallets holding significant amounts of SOL on FTX exchange\n- VanEck's spot ETF filing impacting long-term hopes for Solana\n- Positive technical signals for Bitcoin, Ethereum, and Solana\n- Introduction of Fusionist (ACE) on BNSOL Super Stake and airdrop rewards for holders of bzSOL\n\nOverall, the messages reflect a mix of technical analysis, market speculation, and updates on new developments within the crypto industry, particularly focusing on Solana and its potential for growth and adoption.", - data: [ - 5, 3, 7, 3, 0, 0, 7, 7, 4, 4, 5, 3, 6, 7, 4, 5, 7, 3, 11, 5, 2, 3, 6, 3, 6, 3, 8, 7, 1, 9, - 0, 0, 6, 4, 5, 3, 6, 12, 5, 2, 3, 3, 2, 24, 7, 4, 7, 2, 6, 2, 3, 6, 2, 6, 1, - ], - }, - { - label: 'Virtuals', - topics: 'virtualsio,points,yapping,virtual,genesis', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n- VADER staking and its benefits for users\n- Virtuals points and their value in the market\n- Launches of new projects and their impact on the market\n- Potential price movements of various cryptocurrencies such as $velo, $WAVES, $VADER, $WACH, $VIRGEN, $MAMO, $GAME, and $SOLACE\n- Participation in presales and the potential for luck in investments\n- Updates and developments in projects like VulcanVerse and Waves Protocol\n- The potential for AI integration in blockchain technology and its impact on price action\n- The deflationary loop and supply dynamics of certain cryptocurrencies\n- Community engagement and loyalty in projects like Virtuals_io\n- Market trends and opportunities for investment in projects like $WACH\n- The concept of hodling and the importance of patience in the crypto market\n\nOverall, the sentiment in these discussions seems to be positive, with users expressing excitement about new projects, potential price movements, and opportunities for investment in the crypto market.', - data: [ - 1, 0, 3, 2, 0, 1, 0, 1, 3, 2, 2, 3, 5, 6, 3, 4, 0, 4, 7, 2, 5, 4, 1, 7, 2, 2, 0, 2, 0, 6, 3, - 3, 2, 3, 2, 3, 9, 2, 4, 2, 1, 1, 4, 5, 10, 4, 3, 1, 7, 2, 0, 24, 42, 5, 6, - ], - }, - { - label: 'Bitcoin treasury strategies', - topics: 'says,plans,traded,publicly,treasury', - description: - 'The key topic discussed in the messages from Twitter is the increasing trend of companies and governments accumulating Bitcoin for their treasuries. Various companies, such as Sequans Communications, Panther Metals, The Smarter Web Company, and CardoneCapital, are mentioned to have added significant amounts of Bitcoin to their balance sheets. Additionally, there are reports of the White House and other governments planning to accumulate Bitcoin for strategic reserves. This trend indicates a growing acceptance and adoption of Bitcoin as a valuable asset for financial reserves.', - data: [ - 5, 7, 3, 3, 8, 3, 2, 2, 13, 0, 4, 6, 3, 1, 2, 3, 1, 7, 7, 6, 0, 2, 4, 6, 0, 2, 4, 10, 6, 0, - 4, 5, 1, 2, 7, 4, 3, 5, 9, 3, 3, 21, 8, 0, 3, 6, 2, 4, 1, 0, 1, 0, 2, 0, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,sparkdotfi,yield,protocols,tvl', - description: - 'The key topics discussed in the messages from twitter are:\n1. DeFi regulation by governments\n2. Accelerated adoption of DeFi\n3. Partnership announcements in the DeFi space\n4. Privacy and security in DeFi transactions\n5. Integration of AI in DeFi\n6. Market share and performance of specific DeFi tokens like Aave\n7. Cross-chain liquidity and efficiency in DeFi\n8. Future of payments and DeFi in LATAM\n9. Autonomous DeFi and competition with AI\n10. Development of unified lending, stablecoin, DEX, and credit infrastructure in DeFi\n\nOverall, the messages highlight the growing complexity and innovation within the DeFi industry, with a focus on regulatory challenges, technological advancements, and market trends.', - data: [ - 3, 4, 4, 2, 0, 1, 1, 3, 2, 3, 1, 4, 0, 5, 14, 3, 3, 5, 2, 8, 2, 1, 4, 3, 3, 5, 5, 3, 5, 4, - 3, 2, 5, 6, 3, 4, 3, 2, 8, 0, 4, 1, 5, 4, 7, 5, 8, 6, 6, 6, 8, 3, 5, 3, 2, - ], - }, - { - label: 'Circle IPO', - topics: 'circle,usdc,ipo,shares,stock', - description: - "Based on the messages from Twitter, it is evident that Circle, a crypto company, has experienced a significant surge in its post-IPO valuation, reaching $66.9 billion. This valuation surpasses the supply of USDC, the stablecoin issued by Circle. The company's stock has been rising rapidly since going public, with its market capitalization exceeding that of USDC. Additionally, there is discussion about regulatory clarity in the crypto industry, as well as speculation about potential future crypto IPOs following Circle's success. Furthermore, there are updates on the performance of Curve DAO Token (CRV) and discussions about the impact of regulatory changes on the crypto market. Overall, the crypto community is closely monitoring Circle's developments and the broader implications for the industry.", - data: [ - 6, 0, 3, 2, 1, 2, 1, 1, 0, 0, 15, 2, 13, 3, 3, 4, 2, 3, 5, 7, 2, 3, 4, 4, 8, 12, 5, 7, 2, 2, - 3, 2, 4, 6, 5, 2, 2, 5, 5, 2, 4, 0, 9, 3, 3, 3, 4, 4, 0, 6, 1, 8, 0, 0, 4, - ], - }, - { - label: 'Newly listed coins', - topics: 'alpha,listing,utc,binance,pair', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include new listings on various exchanges such as MEXC, KuCoin, Bitget, Poloniex, and Binance. There are also mentions of trading competitions on Binance, new tokens like $MOVE, $BULLA, $PUFF, $DMC, $CSITRON, and $CESS being listed or available for trading. Additionally, there are announcements about airdrops, token migrations, and the performance of certain tokens like $MGO. Overall, the crypto community on Twitter seems to be active and engaged with various developments in the industry.', - data: [ - 0, 3, 3, 3, 0, 11, 0, 0, 0, 0, 6, 3, 0, 0, 8, 0, 1, 5, 2, 1, 1, 1, 2, 0, 3, 12, 6, 4, 10, 2, - 0, 2, 0, 56, 3, 2, 6, 4, 0, 3, 2, 1, 2, 0, 2, 0, 0, 0, 0, 8, 0, 6, 1, 0, 3, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,payments,visa,stable', - description: - "The key topics currently discussed in the crypto industry on social media platforms include:\n\n1. Stablecoin SuperCycle: The stablecoin market continues to evolve rapidly, with new technologies and innovations driving growth. The Empire Strikes Out: Institutionalists Failed To Kill The Stablecoin Bill, and the Bank for International Settlements argues stablecoins fail 'three key tests'.\n\n2. Privacy and Mass Adoption: Stablecoins are evolving fast, but without privacy features, mass adoption may stall. Multi-Party Computation (MPC) is seen as a game-changer that brings confidential transfers and balances to the forefront.\n\n3. Yield-Generating vs. Payment Stablecoins: There is a discussion about the dichotomy between yield-generating stablecoins and payment stablecoins. While there may be many bespoke stablecoins for yield generation, only a few major ones are used for inter-stable settlement due to liquidity network effects.\n\n4. Stablecoin Development Services: Institutions and enterprises are looking to launch their own stablecoins, and there is a growing demand for stablecoin development and advisory services. Industry veterans from Stably are helping businesses advance into the Stablecoin Age.\n\n5. Algorand for Stablecoin Issuance: Arnoud Star Busmann, CEO of Quantoz, discusses using Algorand $ALGO to issue stablecoins due to its robust and safe features. Algorand is seen as a secure and cost-effective platform for stablecoin issuance.\n\n6. Global Adoption of Stablecoin-Powered Payments: Stablecoin-powered payments are already reshaping the global financial system. Leaders in the industry are exploring how Asia is scaling stablecoin adoption globally.\n\n7. Plasma Blockchain Launch: Plasma is launching a blockchain that aims to make transferring stablecoin assets easier than ever. The platform is positioning itself as a key player in the crypto and stablecoin space.\n\nOverall, the discussions on social media highlight the rapid evolution and adoption of stablecoins in the crypto industry, with a focus on innovation, privacy, security, and global adoption.", - data: [ - 7, 1, 4, 5, 0, 0, 2, 1, 0, 3, 4, 3, 2, 2, 1, 3, 4, 3, 3, 1, 2, 5, 1, 3, 2, 2, 2, 0, 2, 1, 4, - 1, 2, 1, 3, 2, 4, 3, 1, 3, 4, 8, 1, 1, 53, 3, 3, 1, 2, 5, 0, 3, 5, 4, 1, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,eth,position,opened', - description: - 'The key topic discussed in the Twitter messages is the activity of whales in the crypto industry, particularly focusing on their buying and selling behavior in relation to cryptocurrencies such as Ethereum ($ETH) and Bitcoin ($BTC). Whales are seen accumulating large amounts of ETH during dips, with some engaging in profit-taking events. There is also mention of a whale facing significant unrealized losses and potential liquidation if the price of BTC drops below a certain threshold. The messages highlight the contrast between retail investors offloading their holdings and whales quietly stacking, prompting discussions on who is making the right moves in the market. Additionally, there are references to trading competitions hosted by platforms like Blofin, offering participants the chance to win substantial prizes including a Tesla Cybertruck and cash/crypto rewards.', - data: [ - 5, 2, 0, 2, 2, 8, 8, 15, 7, 0, 1, 1, 0, 2, 5, 2, 14, 0, 1, 2, 0, 2, 1, 1, 4, 3, 0, 7, 3, 2, - 2, 1, 4, 5, 2, 8, 0, 0, 2, 1, 4, 3, 6, 2, 0, 1, 2, 0, 1, 0, 3, 3, 2, 34, 0, - ], - }, - { - label: 'BTC price', - topics: 'range,weekly,btc,resistance,zone', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n\n1. Bitcoin's price movements: There is discussion about Bitcoin holding support levels, testing key levels, and potential upside continuation setups. Traders are analyzing price levels such as $100,000, $106,000, and $101,455, as well as potential support at $93,000.\n\n2. Market sentiment and predictions: Traders are sharing their thoughts on potential market movements, with some predicting a bullish scenario for smaller treasuries and a market-wide run-up. There is also mention of a potential elevator drop back down to certain price zones.\n\n3. Technical analysis: Analysts are discussing technical indicators such as RSI in a tight wedge, weekly support levels, and key confluence zones like the Tenkan-sen and Fair Value Gap. There is also analysis of historical price movements and trade locations.\n\n4. Market dynamics: There is discussion about market fear signaled by futures in backwardation, as well as the importance of volume and momentum in determining market direction.\n\nOverall, the sentiment on Twitter seems to be a mix of cautious optimism and technical analysis-driven predictions for Bitcoin and the crypto market.", - data: [ - 1, 1, 2, 2, 6, 7, 2, 19, 2, 1, 3, 2, 1, 7, 2, 2, 1, 4, 8, 1, 1, 2, 4, 8, 1, 0, 5, 2, 1, 3, - 5, 2, 2, 3, 2, 0, 2, 5, 1, 11, 3, 2, 3, 5, 2, 6, 7, 3, 0, 3, 2, 3, 0, 7, 1, - ], - }, - { - label: 'Sports', - topics: 'game,et,player,tonight,win', - description: - "The key topics discussed in the messages from twitter are:\n1. NBA Game 7 between the Pacers and Thunder\n2. Kevin Durant's performance in Game 7\n3. OKC Thunder winning their first championship\n4. Emotional roller coaster of the NBA season\n5. FIFA World Cup\n6. Latam teams performing well against European teams\n7. Caitlin's potential as a soccer player\n8. Cooper Flagg preparing for the NBA draft\n9. Travis Hunter's signing bonus in the NFL\n10. NFL players getting vaccinated for COVID-19 and its impact on the game.", - data: [ - 2, 2, 2, 2, 0, 0, 1, 3, 0, 2, 1, 2, 2, 4, 1, 8, 4, 3, 10, 5, 19, 3, 6, 3, 3, 3, 1, 2, 2, 3, - 5, 2, 5, 3, 3, 7, 1, 0, 0, 4, 2, 2, 2, 7, 1, 2, 1, 4, 5, 2, 9, 0, 3, 8, 1, - ], - }, - { - label: 'Kaito, Loudio and yappers', - topics: 'yapyo,yapyoarb,arbitrum,yap,leaderboard', - description: - 'The messages from Twitter indicate a strong focus on the crypto industry, particularly on projects like Arbitrum and Yapyo. The community seems highly engaged and active, with discussions about onchain ecosystems, farming, and engagement on social media platforms. There is also mention of partnerships with Kaito AI and Cookie DAO, as well as the importance of verified attention as a measurable asset. Overall, the community appears to be enthusiastic about these projects and eager to participate in discussions and activities related to them.', - data: [ - 2, 3, 9, 0, 1, 2, 0, 3, 1, 2, 0, 3, 8, 4, 1, 6, 1, 2, 2, 6, 4, 4, 5, 1, 4, 2, 0, 6, 5, 7, 3, - 5, 6, 3, 1, 3, 1, 3, 4, 6, 4, 0, 3, 5, 0, 2, 2, 4, 4, 0, 3, 3, 2, 1, 15, - ], - }, - { - label: 'BTC', - topics: 'bitcoin,download,pumping,loading,bull', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin world domination and new all-time highs\n2. Umbrel Bitcoin Core frontend\n3. Bitcoin as a tool for measuring patience\n4. Bitcoin as the main actively funded asset\n5. Satoshi and the origin of Bitcoin\n6. Memecoins like Byte the ai digital\n7. Community feud between Bitcoin and XRP\n8. Shopping with Bitcoin\n9. Crypto investing and the Web3 community\n10. Grant's ideas on Bitcoin and the @_BitcoinMatrix\n\nOverall, the sentiment towards Bitcoin appears positive and there is a strong focus on its potential for growth and adoption in the future.", - data: [ - 1, 1, 1, 2, 29, 30, 0, 5, 2, 1, 1, 2, 2, 2, 2, 2, 1, 1, 3, 0, 1, 4, 4, 2, 3, 2, 3, 1, 3, 1, - 3, 1, 0, 3, 3, 2, 3, 3, 6, 6, 1, 3, 3, 3, 2, 1, 1, 3, 2, 1, 2, 1, 0, 2, 5, - ], - }, - { - label: 'Blackrock', - topics: 'blackrock,bought,etf,worth,eth', - description: - "The key topic discussed in the messages from Twitter is the significant amount of Bitcoin and Ethereum purchases made by BlackRock, a major financial institution. BlackRock has bought over $750 million worth of Ethereum in June and has also made substantial purchases of Bitcoin. This has led to speculation about the impact of BlackRock's investments on the cryptocurrency market and the potential benefits for those holding Bitcoin and Ethereum. Additionally, there is discussion about BlackRock's Bitcoin ETF and its control over a significant portion of the Bitcoin supply. Overall, the messages highlight BlackRock's increasing involvement in the cryptocurrency space and its potential influence on the market.", - data: [ - 3, 0, 0, 4, 2, 24, 26, 3, 22, 0, 1, 2, 2, 0, 2, 1, 9, 2, 0, 0, 1, 0, 2, 8, 3, 2, 1, 2, 1, 0, - 1, 1, 3, 1, 1, 7, 1, 1, 5, 0, 1, 2, 1, 0, 4, 2, 1, 0, 1, 2, 0, 7, 4, 1, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-78.json b/priv/repo/major_topics_seed/data-78.json deleted file mode 100644 index 6015d6bd6f..0000000000 --- a/priv/repo/major_topics_seed/data-78.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["26.06.25","27.06.25","27.06.25","27.06.25","27.06.25","27.06.25","27.06.25","27.06.25","28.06.25","28.06.25","28.06.25","28.06.25","28.06.25","28.06.25","28.06.25","28.06.25","29.06.25","29.06.25","29.06.25","29.06.25","29.06.25","29.06.25","29.06.25","29.06.25","30.06.25","30.06.25","30.06.25","30.06.25","30.06.25","30.06.25","30.06.25","30.06.25","01.07.25","01.07.25","01.07.25","01.07.25","01.07.25","01.07.25","01.07.25","01.07.25","02.07.25","02.07.25","02.07.25","02.07.25","02.07.25","02.07.25","02.07.25","02.07.25","03.07.25","03.07.25","03.07.25","03.07.25","03.07.25","03.07.25","03.07.25"],"datasets":[{"label":"Yapyo and Kaito","topics":"yapyoarb,yapyo,arbitrum,leaderboard,presale","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include Yapyo, Arbitrum, staking SOL, leaderboard rankings, protocol fee rewards, Kaito Yappers reward pool, MitosisOrg, OpenledgerHQ, anoma, wardenprotocol, SuccinctLabs, Caldera, and TheoriqAI. Users are discussing the potential for Yapyo to reach a 100 million FDV, the launch of MitosisOrg on Kaito, and the challenges of understanding and ranking projects on the leaderboard. Additionally, there are mentions of giveaways, connecting with other users, and the excitement surrounding the upcoming Yapyo launch.","data":[23,10,23,10,4,1,10,6,9,18,7,11,10,15,10,28,0,21,29,11,17,11,19,8,24,8,19,12,19,20,13,11,13,7,8,4,15,14,18,19,10,13,9,22,5,13,10,10,24,7,9,12,20,12,29]},{"label":"Importance of Bitcoin","topics":"fiat,bitcoin,treasury,companies,money","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin as a symbol of freedom and hard money\n2. The importance of investing in Bitcoin as part of a treasury strategy for companies\n3. Criticisms of fiat currency and the belief that all fiat money is immoral and will eventually be worth nothing\n4. The need for society to heed warnings about the consequences of broken money systems\n5. The value of accumulating Bitcoin rewards over other types of rewards\n6. The concept of BitBilanz, where Bitcoin becomes a default asset class on corporate balance sheets\n7. Recommendations for using apps like Fold to engage with Bitcoin\n8. Discussions about the poor user experience of Bitcoin and the need for improvement in this area.","data":[8,7,3,12,62,56,2,4,22,12,19,22,9,3,15,8,5,13,18,6,8,18,9,8,9,17,13,8,8,13,9,5,22,4,8,20,10,12,3,10,7,17,16,6,11,17,10,17,9,10,14,9,8,7,11]},{"label":"SOL ETF","topics":"solana,sol,etf,staking,wednesday","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana (SOL) flipping Ethereum (ETH) in terms of trading volume\n- The launch of the first U.S. ETF to offer Solana staking rewards\n- The approval of SOL and ETH staking ETFs by the SEC for U.S. launch\n- The rise of a new Solana memecoin called MONKEPHONE, which has seen a significant increase in value\n- Technical analysis of SOL price movements, including potential breakout and support levels\n- Comparison of trading volume and profit potential between different cryptocurrencies\n- Speculation on a possible SOL Spot ETF news\n- Discussion on bullish and bearish market structures and potential trading strategies\n- Mention of specific Twitter accounts to follow for Solana-related updates and strategies\n\nOverall, the sentiment in the tweets seems to be positive towards Solana and its potential for growth and investment opportunities.","data":[4,9,6,8,0,3,10,18,13,2,4,8,4,9,1,3,22,6,7,0,6,2,9,14,5,6,4,9,5,14,7,1,5,7,4,5,5,6,3,8,8,6,12,49,54,5,10,4,4,8,3,7,7,3,4]},{"label":"BTC price","topics":"btc,110k,resistance,range,breakout","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin breaking resistance levels with low volume and trading below $106k.\n2. Speculation on whether Bitcoin could reach $200,000 by the end of the year.\n3. Confirmation of a bottom for the $ETH/BTC pair on the daily chart.\n4. Bitcoin trading above $100k again, signaling a return of risk-on sentiment.\n5. Discussion about Bitcoin trading inside a 3-day bullish pennant pattern.\n6. Predictions of Bitcoin reaching $130,000 if a breakout occurs.\n7. Concerns about complacency sentiment in the Bitcoin market.\n8. Analysis of Bitcoin's rejection down into the weekly 50% level and potential buyer interest.\n9. Bitcoin reclaiming the $110,000 level amid bullish momentum and institutional confidence.\n10. Reflection on past predictions of Bitcoin hitting $100k and achieving 99% accuracy.\n11. Bitcoin closing above the $104,400 range high resistance and positioning for a new support level.\n12. Speculation on Bitcoin's next stop at $120k and observations of long-term conviction peaking.\n13. Analysis of Bitcoin's post-breakout retest and potential for a parabolic move.\n14. Discussion on Bitcoin's relief rally into supply and the possibility of pushing past $107k.\n15. Updates on various cryptocurrencies like PENGU, PudgyPenguins, LucaNetz, Solana, and TON.\n\nOverall, the sentiment in the crypto community appears to be bullish, with optimism about Bitcoin's price potential and market momentum. Traders and analysts are closely monitoring key levels and patterns to anticipate future price movements.","data":[3,2,3,8,28,32,16,27,6,7,6,7,8,4,1,4,3,4,11,2,5,1,7,20,4,7,4,5,1,6,9,4,8,5,6,4,9,13,15,12,6,6,6,6,5,8,11,8,7,6,3,11,2,6,1]},{"label":"GameFi","topics":"game,gaming,games,play,web3","description":"The key topic discussed in the messages from twitter is the intersection of gaming and crypto industry, specifically focusing on Web3 gaming, NFT assets, community governance, and reward stability. Various projects and games are mentioned, such as @Yapyo_arb, @LumiterraGame, @OpenledgerHQ, @cookiedotfun, SwordsOfBlood, and Pointerz. The messages also highlight the involvement of notable individuals like John Smedley and Juan Samitier in the gaming studio and fantasy football leagues respectively. Additionally, the messages emphasize the potential for growth and innovation in the gaming industry through the integration of blockchain technology and decentralized finance.","data":[6,1,5,8,3,3,3,8,6,8,4,9,7,4,6,14,3,8,7,52,21,5,8,3,6,6,7,5,13,6,4,2,11,11,8,3,26,8,3,6,3,4,8,8,5,8,3,7,10,2,5,2,10,7,4]},{"label":"ETH price","topics":"eth,ethereum,2500,range,accumulation","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n- Ethereum following Bitcoin and currently testing previous Point of Control (POC)\n- Speculation about Ethereum seeing 100x exponential growth\n- Bullish sentiment towards Ethereum, with mentions of it being strong and potentially heading back up to the top of the channel\n- The buying activity of ETFs in Ethereum\n- Predictions and analysis on whether Ethereum is ready to break out and reach new highs\n- Discussion about the future of finance and the role of Ethereum in it\n- Technical analysis on Ethereum's price movements, including testing key resistance levels and potential upside targets\n- Speculation on Ethereum's performance in July 2025, with a range play scenario\n- Mention of a detailed video analysis on Ethereum's price action and potential future movements\n\nOverall, the sentiment towards Ethereum on Twitter seems to be positive, with many users expressing optimism about its future potential and price performance.","data":[8,5,2,7,2,1,6,5,3,1,4,3,5,3,0,3,100,6,11,2,6,11,5,17,3,9,2,4,2,11,5,2,8,4,8,3,3,11,14,11,6,8,7,8,5,9,7,9,3,5,3,8,1,5,5]},{"label":"DeFi","topics":"defi,infinex,seamless,protocols,swaps","description":"The messages from Twitter suggest that the crypto industry is currently focused on DeFi (Decentralized Finance) and the advancements being made in this space. Key topics include the rise of Machine DeFi, the future of DeFi according to industry experts like Marco Santori, the integration of traditional finance (TradFi) with DeFi, and the need for simplification and automation in DeFi platforms. Additionally, there is discussion about the potential for new waves of decentralized commerce (DeCom) apps and the importance of cross-chain interoperability. Overall, the messages indicate a growing interest and innovation in the DeFi sector.","data":[7,4,8,7,0,0,1,7,2,5,7,17,8,18,9,5,3,7,3,2,4,8,8,2,9,15,11,12,9,7,6,5,8,8,1,4,8,7,10,15,12,2,8,10,12,3,10,4,10,13,8,5,11,6,4]},{"label":"AI","topics":"ai,agents,human,humans,jobs","description":"The key topics discussed in the messages from twitter include:\n1. Artificial Intelligence (AI) advancements and capabilities\n2. Use of AI in various industries such as finance, recruitment, and social media\n3. Ownership and transparency of AI technology\n4. Potential risks and concerns associated with AI, such as job displacement and ethical implications\n5. Development of AI tools and agents for automation and growth\n6. Decentralized AI launchpad and ecosystem\n7. Importance of modern infrastructure for AI readiness\n8. Integration of AI in daily tasks and decision-making processes\n9. Podcasts and discussions on AI alignment, memory, war, and finance\n10. Company readiness for AI implementation and checklist for leaders.","data":[6,52,10,6,3,0,3,3,3,4,7,6,4,7,5,1,1,6,5,7,9,3,5,2,7,13,6,5,5,6,3,6,8,2,4,5,3,10,4,9,6,6,5,2,1,6,7,20,7,4,9,6,13,8,11]},{"label":"Art","topics":"art,artist,artists,nyc,piece","description":"The messages from Twitter are discussing various forms of art, including gelato art, pencil drawings, AI-generated art, spirograph art, makeup art, marble sculpture, and painting. There is also a mention of NFT giveaways and the purchase of artwork on Objkt. Additionally, there is a discussion about beauty, philosophy, and seeking inspiration from old buildings, paintings, poems, and books. The messages also touch on the topic of sexual orientation and the use of RSS feeds for desktop wallpapers. Overall, the Twitter messages reflect a diverse range of topics related to art and creativity.","data":[7,2,64,3,0,2,0,3,7,4,15,8,4,2,4,10,2,12,14,3,8,1,6,5,1,4,3,5,3,18,7,5,2,6,7,11,11,8,5,6,5,1,7,4,9,3,4,3,6,6,1,2,6,8,11]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The messages from Twitter are discussing the popularity and potential of meme coins within the crypto industry. The messages highlight the power of memes in driving interest and investment in meme coins, as well as the importance of key opinion leaders (KOLs) in promoting and supporting these coins. The messages also mention specific meme coins like $Meme and $TURBO, emphasizing the community-driven nature of these projects. Additionally, there is a mention of a fire sale for $MEME tokens and the opportunity for investors to claim their tokens before the deadline. Overall, the messages convey a sense of excitement and opportunity surrounding meme coins and the potential for significant returns for early investors.","data":[4,2,1,7,2,1,1,2,5,5,4,6,6,6,8,3,2,2,9,1,5,7,4,4,10,4,5,11,5,9,4,81,1,5,4,6,9,3,3,4,4,1,6,3,3,4,0,7,10,5,2,2,7,2,2]},{"label":"Stablecoins","topics":"stablecoin,stablecoins,mica,usdc,payments","description":"The key topics currently discussed in the crypto industry on social media include the rise of stablecoins, particularly USD₮ and $USDG, as well as the growth and revenue generated by stablecoin issuers such as Tether, Circle, Sky Protocol, and Ethena. There is also mention of the potential market size of stablecoins, with J.P. Morgan forecasting a $500 billion market by 2028. Additionally, there is discussion about the benefits of stablecoins for cross-border transactions and the importance of standardization in scaling real-world finance on-chain. Overall, stablecoins are a prominent and evolving topic in the crypto community.","data":[1,6,5,7,1,4,4,6,1,9,5,4,5,3,5,6,7,6,8,2,7,5,6,6,3,11,5,15,1,3,3,2,5,12,3,5,1,7,4,9,5,7,3,2,42,3,3,4,3,8,8,6,3,6,5]},{"label":"Inflation, FOMC and rates","topics":"inflation,fed,rate,rates,impact","description":"The messages from twitter indicate a mix of positive and negative sentiments regarding the current economic situation and its impact on the crypto industry. Key topics discussed include inflation expectations, manufacturing PMI data, interest rates, job reports, and the potential impact on cryptocurrencies like Bitcoin and Ethereum. There is also mention of the Federal Reserve's potential rate cuts and their implications on mortgage rates and homeownership costs. Overall, the sentiment seems to be cautious and uncertain, with a focus on how economic indicators and policy decisions may affect the crypto market in the near future.","data":[3,0,3,5,2,2,10,3,2,2,4,6,6,2,3,6,1,8,10,3,4,5,2,8,3,9,4,1,1,6,47,2,4,1,17,7,4,7,8,4,4,8,7,4,5,5,3,2,8,3,5,4,2,0,7]},{"label":"Robinhood","topics":"robinhood,robinhoodapp,tokenized,openai,l2","description":"The key topics discussed in the messages from Twitter are:\n1. Comparison between crypto native platforms like Kraken and ApeChainHUB vs traditional finance platforms like Robinhood\n2. Robinhood's partnership with Arbitrum for tokenizing U.S. ETFs and stocks for European Union consumers\n3. Robinhood building on Arbitrum and launching Robinhood Chain\n4. Tokenization of stocks by Kraken, Gemini, and Robinhood\n5. Potential impact of Robinhood's move to tokenizing stocks on Ethereum L2/L3\n6. Robinhood's advancements in the crypto space, including self-custody wallet, API integration with MetaMask, and acquisition of Bitstamp\n7. Speculation on the future of financial services with Coinbase and Robinhood leading the way\n8. Discussion on the demographic shift towards on-chain financial services and the potential for the next 100 million users to come on-chain\n9. Excitement and surprise over the rapid adoption of tokenized stocks and the integration of traditional finance with DeFi through platforms like Robinhood and Arbitrum.","data":[1,2,6,2,0,0,6,0,4,2,4,2,2,1,1,3,6,1,3,3,1,0,4,0,3,8,1,7,3,2,2,1,4,3,4,0,4,3,0,1,60,16,0,1,2,1,3,4,5,4,2,0,3,1,2]},{"label":"BTC ETFs","topics":"etfs,inflows,net,spot,saw","description":"The key topics discussed in the messages from twitter are:\n1. U.S. Bitcoin ETF inflows\n2. $PTF revenue sharing\n3. $BTC and $ETH inflows and outflows\n4. $ARB leading outflows\n5. $Rune CEX flow\n6. Massive week for spot Bitcoin ETF inflows\n7. Spot Bitcoin ETFs recording consecutive weeks of net inflows\n8. Spot Ethereum ETFs seeing net weekly inflows\n9. Digital Asset funds attracting new capital\n10. ETF flows for Bitcoin and Ethereum\n11. Bitcoin supply and circulation\n12. S&P 500 hitting a fresh all-time high\n\nOverall, the messages indicate a positive trend in inflows for Bitcoin and Ethereum ETFs, with significant amounts of capital flowing into the market. The data also suggests a growing interest in digital assets and ETF investments.","data":[0,0,2,2,5,3,4,4,2,0,3,1,1,4,2,1,19,1,6,1,4,1,2,3,4,11,0,3,1,0,1,1,2,3,7,0,0,0,2,2,1,1,8,1,22,4,0,1,2,4,0,2,0,6,3]},{"label":"Virtuals","topics":"points,genesis,yapping,virtual,agent","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Loss of verified checkmarks on platforms\n- Record-breaking points earned and discussions on how to spend them\n- FUD (fear, uncertainty, doubt) surrounding $VADER\n- Interactions with AI protocols and ecosystem tokens\n- Staking rewards and mindshare rewards\n- Strategies for maximizing rewards on @virtuals_io\n- Launch of new features such as SHIELD by @VaderResearch\n- Prominent projects like BARVIS and $IRIS on @virtuals_io Genesis\n- Voting for agents on @virtuals_io\n- Yapper program and airdrops for staking VADER tokens\n\nOverall, the discussions revolve around maximizing rewards, staying informed about new developments, and participating in various programs within the crypto ecosystem.","data":[6,2,1,1,0,0,1,1,1,1,0,1,4,6,3,2,2,5,2,0,10,0,4,2,0,0,2,2,2,5,1,0,0,3,3,0,9,0,4,2,0,2,0,1,1,1,2,3,6,0,4,14,22,4,5]},{"label":"BTC mining","topics":"mining,miners,miner,efficiency,hardware","description":"The key topics currently discussed in the crypto industry on social media include:\n1. Bitcoin mining operations and their impact on the environment and national goals\n2. Positive media coverage on Bitcoin mining and its benefits to the community and environment\n3. Post-halving era and the changing dynamics of Bitcoin mining\n4. Importance of mining in Bitcoin's security and privacy features\n5. Expansion of public Bitcoin mining companies and their impact on the grid\n6. Criticism of inaccurate content about Bitcoin mining\n7. Shift towards hydro and immersion cooling in crypto mining infrastructure\n8. Bitcoin supply crunch and imbalance between production and public company purchases\n9. Bitcoin production costs nearing all-time highs and slim margins for miners.","data":[8,1,0,4,13,13,0,1,2,0,1,2,1,2,4,0,2,0,0,1,0,0,4,4,4,3,3,2,1,1,1,22,5,0,3,4,6,10,4,2,1,4,0,1,0,2,0,0,2,0,1,1,2,0,1]},{"label":"DOG listing on Kraken","topics":"dog,krakenfx,kraken,army,listing","description":"The key topics currently being discussed in the crypto community on Twitter include the listing of $DOG on Kraken, the excitement surrounding $DOG reaching $1, the strong community support for $DOG, the potential for $DOG to moonshot, the historic significance of $DOG landing on Kraken, and the challenge to create a better video than the famous $DOGE video. Additionally, there is mention of the launch of $WOLFIE, a meme token inspired by the Wolf of Wall Street ethos. The community is described as being loud, engaged, and supportive, with a focus on organic growth rather than paid promotions.","data":[3,1,1,2,1,2,0,2,7,1,3,1,2,2,48,3,1,4,2,0,3,1,1,4,2,1,0,5,5,0,0,0,0,1,1,4,3,4,2,2,0,0,0,2,3,1,0,1,5,1,1,2,1,1,2]},{"label":"BTC treasury strategies","topics":"saylor,strategy,million,michael,bank","description":"Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n1. Deutsche Bank's plan to launch crypto custody services in 2026\n2. Michael Saylor's statement that \"Bitcoin is money\" and \"Everything else is credit\"\n3. Standard Chartered's prediction that Bitcoin will hit $135K by Q3 2025\n4. Nakamoto CEO filing to take Thailand's first Bitcoin treasury company public\n5. SEC Chair Paul Atkins confirming the agency's commitment to advancing tokenization\n6. Tether launching a green energy Bitcoin mining project in Brazil\n7. SEC's Division of Corporation Finance releasing new guidance on disclosure requirements for crypto ETPs\n8. Tether and Zanzibar's eGAZ joining forces to boost blockchain adoption and digital asset education\n9. SlowMist security team revealing a coin theft trap in the \"solana-pumpfun-bot\" project on GitHub\n10. Spanish authorities dismantling a crypto investment fraud network with support from Estonia, France, and the U.S\n11. Senator Lummis calling to end unfair taxes on Bitcoin miners\n12. Sweden's H100 Group acquiring more Bitcoin and increasing their total holdings\n\nThese topics highlight the growing interest and developments in the crypto industry, including regulatory advancements, institutional adoption, and security concerns.","data":[4,3,2,5,8,5,2,1,3,5,0,1,3,0,4,1,1,1,2,2,2,1,1,2,0,2,3,6,4,1,3,1,0,0,2,1,3,2,8,1,5,10,3,3,6,12,2,0,0,1,1,0,2,0,1]},{"label":"Grayscale Large Cap becomes ETF","topics":"sec,large,ada,fund,etf","description":"The key topics currently discussed on Twitter in the crypto industry are related to the SEC's approval of Grayscale ETFs, including the conversion of the Grayscale Digital Large Cap Fund into an ETF that includes BTC, ETH, XRP, SOL, and ADA. There are also discussions about the SEC reviewing Grayscale's uplisting of a large cap fund, as well as the SEC exploring physical redemption for crypto ETFs. Additionally, there are mentions of the SEC working on creating a generic listing standard for token-based ETFs in coordination with exchanges. Overall, the SEC's actions and decisions regarding crypto investments are the main focus of the discussions on Twitter.","data":[7,1,19,2,2,0,13,0,1,0,2,2,3,5,2,0,1,1,1,1,2,1,11,4,2,2,1,1,1,0,2,0,2,7,9,4,0,0,1,0,6,0,0,0,1,0,3,5,0,0,0,4,1,0,0]},{"label":"Tesla","topics":"tesla,tsla,car,autonomous,factory","description":"Based on the messages from Twitter, it is evident that Tesla ($TSLA) is a key topic of discussion. The company's shares have experienced a decline in premarket trading, but there is still optimism about its future growth potential. Tesla recently achieved a milestone by completing the world's first autonomous delivery of a car, showcasing its advanced technology and positioning in the market. Additionally, Tesla has upgraded its Model 3 and Model Y in China, indicating a focus on innovation and expansion in key markets. However, there are differing opinions on electric vehicles (EVs) with some individuals preferring gas/petrol cars for their convenience and quick refueling times. Overall, Tesla remains a prominent player in the automotive industry with a strong presence in the EV market.","data":[0,0,1,3,0,0,0,0,5,2,1,4,1,3,1,5,0,5,1,4,0,2,0,2,2,3,2,1,0,4,1,0,0,2,3,4,1,4,0,1,4,6,5,1,2,2,1,20,3,1,12,1,0,1,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-78.ts b/priv/repo/major_topics_seed/data-78.ts deleted file mode 100644 index e2d6b29624..0000000000 --- a/priv/repo/major_topics_seed/data-78.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '26.06.25', - '27.06.25', - '27.06.25', - '27.06.25', - '27.06.25', - '27.06.25', - '27.06.25', - '27.06.25', - '28.06.25', - '28.06.25', - '28.06.25', - '28.06.25', - '28.06.25', - '28.06.25', - '28.06.25', - '28.06.25', - '29.06.25', - '29.06.25', - '29.06.25', - '29.06.25', - '29.06.25', - '29.06.25', - '29.06.25', - '29.06.25', - '30.06.25', - '30.06.25', - '30.06.25', - '30.06.25', - '30.06.25', - '30.06.25', - '30.06.25', - '30.06.25', - '01.07.25', - '01.07.25', - '01.07.25', - '01.07.25', - '01.07.25', - '01.07.25', - '01.07.25', - '01.07.25', - '02.07.25', - '02.07.25', - '02.07.25', - '02.07.25', - '02.07.25', - '02.07.25', - '02.07.25', - '02.07.25', - '03.07.25', - '03.07.25', - '03.07.25', - '03.07.25', - '03.07.25', - '03.07.25', - '03.07.25', - ], - datasets: [ - { - label: 'Yapyo and Kaito', - topics: 'yapyoarb,yapyo,arbitrum,leaderboard,presale', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include Yapyo, Arbitrum, staking SOL, leaderboard rankings, protocol fee rewards, Kaito Yappers reward pool, MitosisOrg, OpenledgerHQ, anoma, wardenprotocol, SuccinctLabs, Caldera, and TheoriqAI. Users are discussing the potential for Yapyo to reach a 100 million FDV, the launch of MitosisOrg on Kaito, and the challenges of understanding and ranking projects on the leaderboard. Additionally, there are mentions of giveaways, connecting with other users, and the excitement surrounding the upcoming Yapyo launch.', - data: [ - 23, 10, 23, 10, 4, 1, 10, 6, 9, 18, 7, 11, 10, 15, 10, 28, 0, 21, 29, 11, 17, 11, 19, 8, 24, - 8, 19, 12, 19, 20, 13, 11, 13, 7, 8, 4, 15, 14, 18, 19, 10, 13, 9, 22, 5, 13, 10, 10, 24, 7, - 9, 12, 20, 12, 29, - ], - }, - { - label: 'Importance of Bitcoin', - topics: 'fiat,bitcoin,treasury,companies,money', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin as a symbol of freedom and hard money\n2. The importance of investing in Bitcoin as part of a treasury strategy for companies\n3. Criticisms of fiat currency and the belief that all fiat money is immoral and will eventually be worth nothing\n4. The need for society to heed warnings about the consequences of broken money systems\n5. The value of accumulating Bitcoin rewards over other types of rewards\n6. The concept of BitBilanz, where Bitcoin becomes a default asset class on corporate balance sheets\n7. Recommendations for using apps like Fold to engage with Bitcoin\n8. Discussions about the poor user experience of Bitcoin and the need for improvement in this area.', - data: [ - 8, 7, 3, 12, 62, 56, 2, 4, 22, 12, 19, 22, 9, 3, 15, 8, 5, 13, 18, 6, 8, 18, 9, 8, 9, 17, - 13, 8, 8, 13, 9, 5, 22, 4, 8, 20, 10, 12, 3, 10, 7, 17, 16, 6, 11, 17, 10, 17, 9, 10, 14, 9, - 8, 7, 11, - ], - }, - { - label: 'SOL ETF', - topics: 'solana,sol,etf,staking,wednesday', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Solana (SOL) flipping Ethereum (ETH) in terms of trading volume\n- The launch of the first U.S. ETF to offer Solana staking rewards\n- The approval of SOL and ETH staking ETFs by the SEC for U.S. launch\n- The rise of a new Solana memecoin called MONKEPHONE, which has seen a significant increase in value\n- Technical analysis of SOL price movements, including potential breakout and support levels\n- Comparison of trading volume and profit potential between different cryptocurrencies\n- Speculation on a possible SOL Spot ETF news\n- Discussion on bullish and bearish market structures and potential trading strategies\n- Mention of specific Twitter accounts to follow for Solana-related updates and strategies\n\nOverall, the sentiment in the tweets seems to be positive towards Solana and its potential for growth and investment opportunities.', - data: [ - 4, 9, 6, 8, 0, 3, 10, 18, 13, 2, 4, 8, 4, 9, 1, 3, 22, 6, 7, 0, 6, 2, 9, 14, 5, 6, 4, 9, 5, - 14, 7, 1, 5, 7, 4, 5, 5, 6, 3, 8, 8, 6, 12, 49, 54, 5, 10, 4, 4, 8, 3, 7, 7, 3, 4, - ], - }, - { - label: 'BTC price', - topics: 'btc,110k,resistance,range,breakout', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry include:\n\n1. Bitcoin breaking resistance levels with low volume and trading below $106k.\n2. Speculation on whether Bitcoin could reach $200,000 by the end of the year.\n3. Confirmation of a bottom for the $ETH/BTC pair on the daily chart.\n4. Bitcoin trading above $100k again, signaling a return of risk-on sentiment.\n5. Discussion about Bitcoin trading inside a 3-day bullish pennant pattern.\n6. Predictions of Bitcoin reaching $130,000 if a breakout occurs.\n7. Concerns about complacency sentiment in the Bitcoin market.\n8. Analysis of Bitcoin's rejection down into the weekly 50% level and potential buyer interest.\n9. Bitcoin reclaiming the $110,000 level amid bullish momentum and institutional confidence.\n10. Reflection on past predictions of Bitcoin hitting $100k and achieving 99% accuracy.\n11. Bitcoin closing above the $104,400 range high resistance and positioning for a new support level.\n12. Speculation on Bitcoin's next stop at $120k and observations of long-term conviction peaking.\n13. Analysis of Bitcoin's post-breakout retest and potential for a parabolic move.\n14. Discussion on Bitcoin's relief rally into supply and the possibility of pushing past $107k.\n15. Updates on various cryptocurrencies like PENGU, PudgyPenguins, LucaNetz, Solana, and TON.\n\nOverall, the sentiment in the crypto community appears to be bullish, with optimism about Bitcoin's price potential and market momentum. Traders and analysts are closely monitoring key levels and patterns to anticipate future price movements.", - data: [ - 3, 2, 3, 8, 28, 32, 16, 27, 6, 7, 6, 7, 8, 4, 1, 4, 3, 4, 11, 2, 5, 1, 7, 20, 4, 7, 4, 5, 1, - 6, 9, 4, 8, 5, 6, 4, 9, 13, 15, 12, 6, 6, 6, 6, 5, 8, 11, 8, 7, 6, 3, 11, 2, 6, 1, - ], - }, - { - label: 'GameFi', - topics: 'game,gaming,games,play,web3', - description: - 'The key topic discussed in the messages from twitter is the intersection of gaming and crypto industry, specifically focusing on Web3 gaming, NFT assets, community governance, and reward stability. Various projects and games are mentioned, such as @Yapyo_arb, @LumiterraGame, @OpenledgerHQ, @cookiedotfun, SwordsOfBlood, and Pointerz. The messages also highlight the involvement of notable individuals like John Smedley and Juan Samitier in the gaming studio and fantasy football leagues respectively. Additionally, the messages emphasize the potential for growth and innovation in the gaming industry through the integration of blockchain technology and decentralized finance.', - data: [ - 6, 1, 5, 8, 3, 3, 3, 8, 6, 8, 4, 9, 7, 4, 6, 14, 3, 8, 7, 52, 21, 5, 8, 3, 6, 6, 7, 5, 13, - 6, 4, 2, 11, 11, 8, 3, 26, 8, 3, 6, 3, 4, 8, 8, 5, 8, 3, 7, 10, 2, 5, 2, 10, 7, 4, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,2500,range,accumulation', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n- Ethereum following Bitcoin and currently testing previous Point of Control (POC)\n- Speculation about Ethereum seeing 100x exponential growth\n- Bullish sentiment towards Ethereum, with mentions of it being strong and potentially heading back up to the top of the channel\n- The buying activity of ETFs in Ethereum\n- Predictions and analysis on whether Ethereum is ready to break out and reach new highs\n- Discussion about the future of finance and the role of Ethereum in it\n- Technical analysis on Ethereum's price movements, including testing key resistance levels and potential upside targets\n- Speculation on Ethereum's performance in July 2025, with a range play scenario\n- Mention of a detailed video analysis on Ethereum's price action and potential future movements\n\nOverall, the sentiment towards Ethereum on Twitter seems to be positive, with many users expressing optimism about its future potential and price performance.", - data: [ - 8, 5, 2, 7, 2, 1, 6, 5, 3, 1, 4, 3, 5, 3, 0, 3, 100, 6, 11, 2, 6, 11, 5, 17, 3, 9, 2, 4, 2, - 11, 5, 2, 8, 4, 8, 3, 3, 11, 14, 11, 6, 8, 7, 8, 5, 9, 7, 9, 3, 5, 3, 8, 1, 5, 5, - ], - }, - { - label: 'DeFi', - topics: 'defi,infinex,seamless,protocols,swaps', - description: - 'The messages from Twitter suggest that the crypto industry is currently focused on DeFi (Decentralized Finance) and the advancements being made in this space. Key topics include the rise of Machine DeFi, the future of DeFi according to industry experts like Marco Santori, the integration of traditional finance (TradFi) with DeFi, and the need for simplification and automation in DeFi platforms. Additionally, there is discussion about the potential for new waves of decentralized commerce (DeCom) apps and the importance of cross-chain interoperability. Overall, the messages indicate a growing interest and innovation in the DeFi sector.', - data: [ - 7, 4, 8, 7, 0, 0, 1, 7, 2, 5, 7, 17, 8, 18, 9, 5, 3, 7, 3, 2, 4, 8, 8, 2, 9, 15, 11, 12, 9, - 7, 6, 5, 8, 8, 1, 4, 8, 7, 10, 15, 12, 2, 8, 10, 12, 3, 10, 4, 10, 13, 8, 5, 11, 6, 4, - ], - }, - { - label: 'AI', - topics: 'ai,agents,human,humans,jobs', - description: - 'The key topics discussed in the messages from twitter include:\n1. Artificial Intelligence (AI) advancements and capabilities\n2. Use of AI in various industries such as finance, recruitment, and social media\n3. Ownership and transparency of AI technology\n4. Potential risks and concerns associated with AI, such as job displacement and ethical implications\n5. Development of AI tools and agents for automation and growth\n6. Decentralized AI launchpad and ecosystem\n7. Importance of modern infrastructure for AI readiness\n8. Integration of AI in daily tasks and decision-making processes\n9. Podcasts and discussions on AI alignment, memory, war, and finance\n10. Company readiness for AI implementation and checklist for leaders.', - data: [ - 6, 52, 10, 6, 3, 0, 3, 3, 3, 4, 7, 6, 4, 7, 5, 1, 1, 6, 5, 7, 9, 3, 5, 2, 7, 13, 6, 5, 5, 6, - 3, 6, 8, 2, 4, 5, 3, 10, 4, 9, 6, 6, 5, 2, 1, 6, 7, 20, 7, 4, 9, 6, 13, 8, 11, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,nyc,piece', - description: - 'The messages from Twitter are discussing various forms of art, including gelato art, pencil drawings, AI-generated art, spirograph art, makeup art, marble sculpture, and painting. There is also a mention of NFT giveaways and the purchase of artwork on Objkt. Additionally, there is a discussion about beauty, philosophy, and seeking inspiration from old buildings, paintings, poems, and books. The messages also touch on the topic of sexual orientation and the use of RSS feeds for desktop wallpapers. Overall, the Twitter messages reflect a diverse range of topics related to art and creativity.', - data: [ - 7, 2, 64, 3, 0, 2, 0, 3, 7, 4, 15, 8, 4, 2, 4, 10, 2, 12, 14, 3, 8, 1, 6, 5, 1, 4, 3, 5, 3, - 18, 7, 5, 2, 6, 7, 11, 11, 8, 5, 6, 5, 1, 7, 4, 9, 3, 4, 3, 6, 6, 1, 2, 6, 8, 11, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The messages from Twitter are discussing the popularity and potential of meme coins within the crypto industry. The messages highlight the power of memes in driving interest and investment in meme coins, as well as the importance of key opinion leaders (KOLs) in promoting and supporting these coins. The messages also mention specific meme coins like $Meme and $TURBO, emphasizing the community-driven nature of these projects. Additionally, there is a mention of a fire sale for $MEME tokens and the opportunity for investors to claim their tokens before the deadline. Overall, the messages convey a sense of excitement and opportunity surrounding meme coins and the potential for significant returns for early investors.', - data: [ - 4, 2, 1, 7, 2, 1, 1, 2, 5, 5, 4, 6, 6, 6, 8, 3, 2, 2, 9, 1, 5, 7, 4, 4, 10, 4, 5, 11, 5, 9, - 4, 81, 1, 5, 4, 6, 9, 3, 3, 4, 4, 1, 6, 3, 3, 4, 0, 7, 10, 5, 2, 2, 7, 2, 2, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoin,stablecoins,mica,usdc,payments', - description: - 'The key topics currently discussed in the crypto industry on social media include the rise of stablecoins, particularly USD₮ and $USDG, as well as the growth and revenue generated by stablecoin issuers such as Tether, Circle, Sky Protocol, and Ethena. There is also mention of the potential market size of stablecoins, with J.P. Morgan forecasting a $500 billion market by 2028. Additionally, there is discussion about the benefits of stablecoins for cross-border transactions and the importance of standardization in scaling real-world finance on-chain. Overall, stablecoins are a prominent and evolving topic in the crypto community.', - data: [ - 1, 6, 5, 7, 1, 4, 4, 6, 1, 9, 5, 4, 5, 3, 5, 6, 7, 6, 8, 2, 7, 5, 6, 6, 3, 11, 5, 15, 1, 3, - 3, 2, 5, 12, 3, 5, 1, 7, 4, 9, 5, 7, 3, 2, 42, 3, 3, 4, 3, 8, 8, 6, 3, 6, 5, - ], - }, - { - label: 'Inflation, FOMC and rates', - topics: 'inflation,fed,rate,rates,impact', - description: - "The messages from twitter indicate a mix of positive and negative sentiments regarding the current economic situation and its impact on the crypto industry. Key topics discussed include inflation expectations, manufacturing PMI data, interest rates, job reports, and the potential impact on cryptocurrencies like Bitcoin and Ethereum. There is also mention of the Federal Reserve's potential rate cuts and their implications on mortgage rates and homeownership costs. Overall, the sentiment seems to be cautious and uncertain, with a focus on how economic indicators and policy decisions may affect the crypto market in the near future.", - data: [ - 3, 0, 3, 5, 2, 2, 10, 3, 2, 2, 4, 6, 6, 2, 3, 6, 1, 8, 10, 3, 4, 5, 2, 8, 3, 9, 4, 1, 1, 6, - 47, 2, 4, 1, 17, 7, 4, 7, 8, 4, 4, 8, 7, 4, 5, 5, 3, 2, 8, 3, 5, 4, 2, 0, 7, - ], - }, - { - label: 'Robinhood', - topics: 'robinhood,robinhoodapp,tokenized,openai,l2', - description: - "The key topics discussed in the messages from Twitter are:\n1. Comparison between crypto native platforms like Kraken and ApeChainHUB vs traditional finance platforms like Robinhood\n2. Robinhood's partnership with Arbitrum for tokenizing U.S. ETFs and stocks for European Union consumers\n3. Robinhood building on Arbitrum and launching Robinhood Chain\n4. Tokenization of stocks by Kraken, Gemini, and Robinhood\n5. Potential impact of Robinhood's move to tokenizing stocks on Ethereum L2/L3\n6. Robinhood's advancements in the crypto space, including self-custody wallet, API integration with MetaMask, and acquisition of Bitstamp\n7. Speculation on the future of financial services with Coinbase and Robinhood leading the way\n8. Discussion on the demographic shift towards on-chain financial services and the potential for the next 100 million users to come on-chain\n9. Excitement and surprise over the rapid adoption of tokenized stocks and the integration of traditional finance with DeFi through platforms like Robinhood and Arbitrum.", - data: [ - 1, 2, 6, 2, 0, 0, 6, 0, 4, 2, 4, 2, 2, 1, 1, 3, 6, 1, 3, 3, 1, 0, 4, 0, 3, 8, 1, 7, 3, 2, 2, - 1, 4, 3, 4, 0, 4, 3, 0, 1, 60, 16, 0, 1, 2, 1, 3, 4, 5, 4, 2, 0, 3, 1, 2, - ], - }, - { - label: 'BTC ETFs', - topics: 'etfs,inflows,net,spot,saw', - description: - 'The key topics discussed in the messages from twitter are:\n1. U.S. Bitcoin ETF inflows\n2. $PTF revenue sharing\n3. $BTC and $ETH inflows and outflows\n4. $ARB leading outflows\n5. $Rune CEX flow\n6. Massive week for spot Bitcoin ETF inflows\n7. Spot Bitcoin ETFs recording consecutive weeks of net inflows\n8. Spot Ethereum ETFs seeing net weekly inflows\n9. Digital Asset funds attracting new capital\n10. ETF flows for Bitcoin and Ethereum\n11. Bitcoin supply and circulation\n12. S&P 500 hitting a fresh all-time high\n\nOverall, the messages indicate a positive trend in inflows for Bitcoin and Ethereum ETFs, with significant amounts of capital flowing into the market. The data also suggests a growing interest in digital assets and ETF investments.', - data: [ - 0, 0, 2, 2, 5, 3, 4, 4, 2, 0, 3, 1, 1, 4, 2, 1, 19, 1, 6, 1, 4, 1, 2, 3, 4, 11, 0, 3, 1, 0, - 1, 1, 2, 3, 7, 0, 0, 0, 2, 2, 1, 1, 8, 1, 22, 4, 0, 1, 2, 4, 0, 2, 0, 6, 3, - ], - }, - { - label: 'Virtuals', - topics: 'points,genesis,yapping,virtual,agent', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Loss of verified checkmarks on platforms\n- Record-breaking points earned and discussions on how to spend them\n- FUD (fear, uncertainty, doubt) surrounding $VADER\n- Interactions with AI protocols and ecosystem tokens\n- Staking rewards and mindshare rewards\n- Strategies for maximizing rewards on @virtuals_io\n- Launch of new features such as SHIELD by @VaderResearch\n- Prominent projects like BARVIS and $IRIS on @virtuals_io Genesis\n- Voting for agents on @virtuals_io\n- Yapper program and airdrops for staking VADER tokens\n\nOverall, the discussions revolve around maximizing rewards, staying informed about new developments, and participating in various programs within the crypto ecosystem.', - data: [ - 6, 2, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 4, 6, 3, 2, 2, 5, 2, 0, 10, 0, 4, 2, 0, 0, 2, 2, 2, 5, - 1, 0, 0, 3, 3, 0, 9, 0, 4, 2, 0, 2, 0, 1, 1, 1, 2, 3, 6, 0, 4, 14, 22, 4, 5, - ], - }, - { - label: 'BTC mining', - topics: 'mining,miners,miner,efficiency,hardware', - description: - "The key topics currently discussed in the crypto industry on social media include:\n1. Bitcoin mining operations and their impact on the environment and national goals\n2. Positive media coverage on Bitcoin mining and its benefits to the community and environment\n3. Post-halving era and the changing dynamics of Bitcoin mining\n4. Importance of mining in Bitcoin's security and privacy features\n5. Expansion of public Bitcoin mining companies and their impact on the grid\n6. Criticism of inaccurate content about Bitcoin mining\n7. Shift towards hydro and immersion cooling in crypto mining infrastructure\n8. Bitcoin supply crunch and imbalance between production and public company purchases\n9. Bitcoin production costs nearing all-time highs and slim margins for miners.", - data: [ - 8, 1, 0, 4, 13, 13, 0, 1, 2, 0, 1, 2, 1, 2, 4, 0, 2, 0, 0, 1, 0, 0, 4, 4, 4, 3, 3, 2, 1, 1, - 1, 22, 5, 0, 3, 4, 6, 10, 4, 2, 1, 4, 0, 1, 0, 2, 0, 0, 2, 0, 1, 1, 2, 0, 1, - ], - }, - { - label: 'DOG listing on Kraken', - topics: 'dog,krakenfx,kraken,army,listing', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the listing of $DOG on Kraken, the excitement surrounding $DOG reaching $1, the strong community support for $DOG, the potential for $DOG to moonshot, the historic significance of $DOG landing on Kraken, and the challenge to create a better video than the famous $DOGE video. Additionally, there is mention of the launch of $WOLFIE, a meme token inspired by the Wolf of Wall Street ethos. The community is described as being loud, engaged, and supportive, with a focus on organic growth rather than paid promotions.', - data: [ - 3, 1, 1, 2, 1, 2, 0, 2, 7, 1, 3, 1, 2, 2, 48, 3, 1, 4, 2, 0, 3, 1, 1, 4, 2, 1, 0, 5, 5, 0, - 0, 0, 0, 1, 1, 4, 3, 4, 2, 2, 0, 0, 0, 2, 3, 1, 0, 1, 5, 1, 1, 2, 1, 1, 2, - ], - }, - { - label: 'BTC treasury strategies', - topics: 'saylor,strategy,million,michael,bank', - description: - "Based on the messages from Twitter, key topics currently being discussed in the crypto industry include:\n1. Deutsche Bank's plan to launch crypto custody services in 2026\n2. Michael Saylor's statement that \"Bitcoin is money\" and \"Everything else is credit\"\n3. Standard Chartered's prediction that Bitcoin will hit $135K by Q3 2025\n4. Nakamoto CEO filing to take Thailand's first Bitcoin treasury company public\n5. SEC Chair Paul Atkins confirming the agency's commitment to advancing tokenization\n6. Tether launching a green energy Bitcoin mining project in Brazil\n7. SEC's Division of Corporation Finance releasing new guidance on disclosure requirements for crypto ETPs\n8. Tether and Zanzibar's eGAZ joining forces to boost blockchain adoption and digital asset education\n9. SlowMist security team revealing a coin theft trap in the \"solana-pumpfun-bot\" project on GitHub\n10. Spanish authorities dismantling a crypto investment fraud network with support from Estonia, France, and the U.S\n11. Senator Lummis calling to end unfair taxes on Bitcoin miners\n12. Sweden's H100 Group acquiring more Bitcoin and increasing their total holdings\n\nThese topics highlight the growing interest and developments in the crypto industry, including regulatory advancements, institutional adoption, and security concerns.", - data: [ - 4, 3, 2, 5, 8, 5, 2, 1, 3, 5, 0, 1, 3, 0, 4, 1, 1, 1, 2, 2, 2, 1, 1, 2, 0, 2, 3, 6, 4, 1, 3, - 1, 0, 0, 2, 1, 3, 2, 8, 1, 5, 10, 3, 3, 6, 12, 2, 0, 0, 1, 1, 0, 2, 0, 1, - ], - }, - { - label: 'Grayscale Large Cap becomes ETF', - topics: 'sec,large,ada,fund,etf', - description: - "The key topics currently discussed on Twitter in the crypto industry are related to the SEC's approval of Grayscale ETFs, including the conversion of the Grayscale Digital Large Cap Fund into an ETF that includes BTC, ETH, XRP, SOL, and ADA. There are also discussions about the SEC reviewing Grayscale's uplisting of a large cap fund, as well as the SEC exploring physical redemption for crypto ETFs. Additionally, there are mentions of the SEC working on creating a generic listing standard for token-based ETFs in coordination with exchanges. Overall, the SEC's actions and decisions regarding crypto investments are the main focus of the discussions on Twitter.", - data: [ - 7, 1, 19, 2, 2, 0, 13, 0, 1, 0, 2, 2, 3, 5, 2, 0, 1, 1, 1, 1, 2, 1, 11, 4, 2, 2, 1, 1, 1, 0, - 2, 0, 2, 7, 9, 4, 0, 0, 1, 0, 6, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 4, 1, 0, 0, - ], - }, - { - label: 'Tesla', - topics: 'tesla,tsla,car,autonomous,factory', - description: - "Based on the messages from Twitter, it is evident that Tesla ($TSLA) is a key topic of discussion. The company's shares have experienced a decline in premarket trading, but there is still optimism about its future growth potential. Tesla recently achieved a milestone by completing the world's first autonomous delivery of a car, showcasing its advanced technology and positioning in the market. Additionally, Tesla has upgraded its Model 3 and Model Y in China, indicating a focus on innovation and expansion in key markets. However, there are differing opinions on electric vehicles (EVs) with some individuals preferring gas/petrol cars for their convenience and quick refueling times. Overall, Tesla remains a prominent player in the automotive industry with a strong presence in the EV market.", - data: [ - 0, 0, 1, 3, 0, 0, 0, 0, 5, 2, 1, 4, 1, 3, 1, 5, 0, 5, 1, 4, 0, 2, 0, 2, 2, 3, 2, 1, 0, 4, 1, - 0, 0, 2, 3, 4, 1, 4, 0, 1, 4, 6, 5, 1, 2, 2, 1, 20, 3, 1, 12, 1, 0, 1, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-79.json b/priv/repo/major_topics_seed/data-79.json deleted file mode 100644 index b089d11ac9..0000000000 --- a/priv/repo/major_topics_seed/data-79.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["03.07.25","04.07.25","04.07.25","04.07.25","04.07.25","04.07.25","04.07.25","04.07.25","05.07.25","05.07.25","05.07.25","05.07.25","05.07.25","05.07.25","05.07.25","05.07.25","06.07.25","06.07.25","06.07.25","06.07.25","06.07.25","06.07.25","06.07.25","06.07.25","07.07.25","07.07.25","07.07.25","07.07.25","07.07.25","07.07.25","07.07.25","07.07.25","08.07.25","08.07.25","08.07.25","08.07.25","08.07.25","08.07.25","08.07.25","08.07.25","09.07.25","09.07.25","09.07.25","09.07.25","09.07.25","09.07.25","09.07.25","09.07.25","10.07.25","10.07.25","10.07.25","10.07.25","10.07.25","10.07.25","10.07.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,data,openledgerhq","description":"Based on the messages from Twitter, it is evident that the topic of discussion revolves around artificial intelligence (AI) in various industries, particularly in the crypto industry. Some key points mentioned include the use of AI in trading, AI advancements in Google facing antitrust complaints, the democratization of AI through decentralized platforms like OpenLedger, the emergence of AI glasses companies, partnerships between AI and NFT ecosystems, and the application of AI in Web3 technology by companies like DuckChain. Overall, the messages highlight the growing influence and impact of AI in different sectors and the ongoing developments in the field.","data":[35,131,19,16,1,1,8,15,17,24,10,21,14,15,20,17,14,25,11,15,19,15,12,20,12,18,17,15,20,17,24,18,15,15,15,38,20,16,10,18,16,24,13,11,10,15,16,24,19,14,11,16,11,15,18]},{"label":"ETH price","topics":"eth,ethereum,3000,range,breakout","description":"The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n- ETH reclaiming $2,800 and the potential for continued upward movement\n- Speculation about a $140k target for ETH\n- Price analysis indicating a potential breakout and bullish sentiment\n- The correlation between Coinbase ($COIN) rallying and Ethereum's price movement\n- Optimism about ETH's future price potential and warnings about not being bullish enough on Ethereum","data":[12,10,5,7,0,1,13,11,15,16,3,13,9,4,6,7,121,47,22,12,4,17,7,18,14,12,3,10,13,25,11,8,10,6,8,5,11,15,14,16,12,6,23,11,16,15,11,16,8,7,6,9,12,9,12]},{"label":"Importance of Bitcoin","topics":"bitcoin,fiat,money,understand,save","description":"The key topics discussed in the messages from twitter are:\n1. Bitcoin as the future of currency and the importance of accumulating it now\n2. The potential for Bitcoin to become the global standard for currency\n3. The impact of inflation on traditional savings and the need to learn about Bitcoin\n4. The role of Bitcoin in disrupting the traditional financial system and government-controlled currencies\n5. The value of Bitcoin as a decentralized and incorruptible form of money\n6. The belief in Bitcoin as a long-term investment and the importance of holding onto it (HODL)\n7. The potential for Bitcoin to be used directly for goods, services, and real estate transactions\n\nOverall, the messages reflect a strong belief in the power and potential of Bitcoin as a revolutionary form of currency that can disrupt traditional financial systems and provide individuals with greater control over their finances.","data":[6,2,10,8,68,50,4,6,14,9,4,8,10,3,11,8,6,11,10,17,7,18,11,5,9,7,5,8,6,3,6,6,9,8,5,21,12,13,11,11,12,8,10,7,9,10,5,12,6,4,26,5,5,7,9]},{"label":"SOL","topics":"solana,sol,etf,solanas,stake","description":"The key topics currently discussed in the crypto industry on Twitter include comparisons between Ethereum and Solana, the performance and potential price movements of Solana ($SOL), staking opportunities for various cryptocurrencies including Solana and Ethereum, updates on Solana's consensus mechanism Alpenglow, technical analysis of Solana's price movements, partnerships between PancakeSwap and Solana, and trading competitions between Solana and Ethereum ecosystems. Additionally, there is discussion about tokenized stocks on Solana, the potential breakout of Solana's downtrend line, and the launch of PancakeSwap v3 on Solana with a $1,000 USDC prize pool.","data":[4,5,4,5,0,2,5,7,8,1,7,2,4,5,2,4,9,8,3,1,4,2,3,4,8,4,9,8,5,9,3,2,7,6,9,3,3,6,6,4,3,0,8,22,13,8,2,4,7,5,3,2,4,5,3]},{"label":"BTC all-time-high","topics":"ath,aths,btc,hit,bitcoin","description":"The key topic currently being discussed on Twitter in the crypto industry is the new all-time high (ATH) for Bitcoin ($BTC). Users are excited about the potential for Bitcoin to reach a new ATH and are closely monitoring its price movements. Some users are also discussing the potential impact on other cryptocurrencies, such as Ethereum ($ETH), following Bitcoin's ATH. Overall, there is a sense of optimism and anticipation among the crypto community regarding the future price movements of Bitcoin and other cryptocurrencies.","data":[1,2,20,1,23,14,7,6,3,1,1,5,6,7,3,2,1,4,8,2,5,1,0,19,16,0,1,3,1,3,4,2,5,18,4,2,2,6,4,5,3,2,4,6,3,0,2,4,1,4,3,2,3,2,4]},{"label":"Elon Musk and America Party","topics":"party,elon,musk,america,political","description":"The key topics currently being discussed on Twitter regarding the crypto industry and Elon Musk include:\n- Elon Musk unveiling the \"America Party\" and expressing support for Bitcoin\n- Speculations about the future political influence of the America Party on Dogecoin and broader crypto markets\n- Debate over whether Elon Musk should solely support Bitcoin or also promote Dogecoin\n- Criticism of Elon Musk's political involvement and the need for honest money in politics\n- Disagreement over the effectiveness of launching more political parties without addressing underlying financial issues\n- Clarification that Vaibhav Taneja is not the treasurer for Musk's America Party\n- Comparison of the America Party to existing political parties in the US and Nigeria\n- Criticism of political labeling and identity politics within the Democratic Party\n- Elon Musk's goal to disrupt US politics and mainstream Bitcoin through the America Party\n- Discussion of past voting experiences and alliances between libertarians and Republicans\n\nOverall, the conversation on Twitter reflects a mix of excitement, skepticism, and criticism surrounding Elon Musk's involvement in politics and the potential impact on the crypto industry.","data":[3,7,4,1,3,2,6,10,4,8,3,8,3,4,6,3,10,3,6,3,0,8,1,4,2,1,3,2,7,2,5,4,2,9,4,7,8,8,4,3,5,14,2,0,3,6,6,7,3,4,7,5,7,1,5]},{"label":"BTC treasury strategies","topics":"treasury,publicly,company,holdings,million","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n1. Institutional interest in Bitcoin, with companies like SMLR, Binance, and Canadian Public Company Pioneer AI Foundry making significant purchases or selling holdings.\n2. Bitcoin ETFs experiencing consecutive days of inflows, indicating growing institutional investment.\n3. Executives from traditional finance institutions, such as the former VP of SEB Bank, transitioning to Bitcoin-focused roles.\n4. Public companies like K Wave Media and H100 Group adopting a Bitcoin treasury strategy.\n5. Regulatory developments in the US, with discussions on making America the \"crypto capital of the world\" and potential benefits for Ethereum.\n6. Notable movements of long-dormant Bitcoin whales, signaling potential market shifts.\n7. El Salvador's significant Bitcoin holdings and unrealized profits as Bitcoin approaches its all-time high.","data":[7,6,1,2,8,8,3,7,4,2,2,2,4,1,1,2,3,4,4,1,2,1,8,2,7,3,3,4,5,1,1,1,2,5,7,1,4,3,17,2,9,18,9,7,1,9,6,2,1,3,0,5,0,8,1]},{"label":"July 4th","topics":"4th,happy,independence,freedom,celebrate","description":"The key topics discussed in the messages from twitter are:\n1. Independence Day celebrations in the USA on July 4th\n2. Freedom and financial independence\n3. Crypto industry and tokenization\n4. David Brent from The Office hitting screens 24 years ago\n5. Invest America Act becoming law\n6. Comparison of USA's Independence Day celebration to other countries\n7. Political commentary on Senator Ted Cruz's social media posts\n8. Reminder to invest in Bitcoin\n9. Mention of decentralized tools and NFT bonds\n10. Reference to British authority in American colonies\n\nOverall, the messages reflect a mix of patriotic sentiments, financial discussions, political commentary, and pop culture references.","data":[16,1,2,4,3,3,1,1,1,7,0,1,2,7,3,1,0,2,11,13,4,3,1,72,1,4,3,0,0,4,1,4,1,0,0,3,1,3,2,2,5,4,1,0,4,1,3,3,4,1,3,0,2,1,5]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The messages from Twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are sharing their favorite meme coins to hold onto for potential riches, creating memes to explain concepts like Bitcoin filters, and expressing the appeal of meme coins over utility coins due to their fun and community-driven nature. There is also mention of the difficulty in finding the next big meme coin among the thousands being launched daily. Overall, the sentiment seems to be focused on the potential for high gains and the personal connection that meme coins create with their holders.","data":[1,3,8,5,0,0,0,0,1,1,6,6,1,2,1,2,2,6,6,3,1,2,3,4,9,4,1,5,8,4,5,55,0,4,5,1,4,5,3,3,2,2,3,2,1,4,1,5,6,3,2,2,2,4,4]},{"label":"Whales","topics":"whale,whales,moved,dormant,worth","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin Whales: There are multiple mentions of Bitcoin whales making significant moves in the market, with large transfers of BTC worth billions of dollars. Some whales have been dormant for years before suddenly becoming active again, leading to speculation about their motives and the impact on the market.\n\n2. Ethereum Whales: Similar to Bitcoin, there are discussions about Ethereum whales accumulating large amounts of ETH, potentially in preparation for upcoming events such as ETFs, Layer 2 solutions, and staking.\n\n3. Market Speculation: Traders and investors are closely watching the actions of whales and speculating on the reasons behind their movements. There is a focus on the potential gains made by whales who have been holding assets for years and are now moving them.\n\n4. Privacy Concerns: Some users are expressing concerns about the lack of privacy features in Bitcoin and other cryptocurrencies, arguing that this makes individuals vulnerable to theft and government surveillance. There are calls for using privacy-focused cryptocurrencies like Monero.\n\n5. Mystery Whale: There is intrigue surrounding a mystery whale who is allegedly an old miner holding a significant amount of BTC and making large transfers to new addresses. This has raised questions about the identity and intentions of the whale.\n\nOverall, the discussions on social media reflect the excitement, speculation, and concerns surrounding the actions of whales in the crypto industry.","data":[6,7,0,4,5,6,9,14,7,5,3,1,1,1,3,5,1,3,3,1,3,2,0,0,2,1,1,4,1,3,1,5,11,2,7,5,0,1,0,1,4,2,4,0,2,1,1,5,1,2,2,4,7,38,4]},{"label":"Dormant BTC movement","topics":"dormant,moved,14,wallets,years","description":"The key topic discussed in the messages from Twitter is the movement of dormant Bitcoin wallets that have been inactive for many years. These wallets are suddenly being activated and large amounts of Bitcoin are being transferred, resulting in billions of dollars worth of transactions. Some of these wallets date back to the early days of Bitcoin when the price was much lower, and the current value of the Bitcoin in these wallets has increased significantly. There is speculation about whether these Bitcoin holders are planning to sell their holdings, which could potentially impact the market. The sudden movement of these dormant wallets has caught the attention of the crypto community and has sparked discussions about the potential reasons behind these transactions.","data":[12,1,6,2,2,10,6,2,8,3,2,3,4,4,1,16,6,1,1,1,1,1,6,2,1,2,3,3,3,3,1,3,21,4,6,1,2,1,0,2,0,1,4,1,0,2,0,1,4,2,0,6,11,1,10]},{"label":"GameFi","topics":"gaming,elympicsai,games,game,web3","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry and web3 gaming community include:\n1. Web3 gaming and its potential for growth and innovation\n2. Partnerships and collaborations within the gaming industry, such as the Mocaverse and Elympics partnership\n3. The concept of play-to-win models in gaming, as seen in platforms like Elympics\n4. The integration of blockchain technology and digital assets in gaming, as exemplified by UndeadBlocks migrating to Avax\n5. The challenges of fragmented economies in gaming and the potential solutions, such as Game Dollar by PLAYTR0N\n6. The potential impact of companies like Sharplink Gaming and their strategies for transforming gaming and blockchain\n\nOverall, the discussions on Twitter reflect a growing interest in the intersection of gaming, blockchain technology, and decentralized finance within the crypto industry.","data":[3,1,1,2,0,0,2,2,1,1,0,4,2,2,5,2,13,1,2,6,33,2,3,3,1,7,2,6,5,1,4,1,2,6,2,6,13,1,0,4,2,1,1,2,4,2,2,3,1,2,5,1,6,4,6]},{"label":"ETFs","topics":"inflows,etfs,net,etf,spot","description":"The key topic discussed in the messages from Twitter is the significant increase in inflows into spot Bitcoin and Ethereum ETFs. There is a surge in institutional adoption and non-crypto-native investors seeking exposure to BTC and ETH, leading to record inflows into these ETFs. The messages also mention specific amounts of net inflows into these ETFs on consecutive days, as well as the involvement of major financial institutions like BlackRock. Additionally, there is a comparison between the inflows into spot Bitcoin ETFs and spot Ethereum ETFs, highlighting the growing interest in both cryptocurrencies. The messages also touch upon the impact of ETFs on the mainstream adoption of Bitcoin and Ethereum, as well as the overall bullish sentiment in the market.","data":[4,0,0,3,3,1,5,2,1,2,2,0,2,1,1,4,37,8,7,8,1,3,1,0,3,9,3,3,3,3,2,1,1,4,0,4,0,1,1,3,2,3,9,1,23,3,1,1,2,1,0,1,1,6,3]},{"label":"Pump.fun ICO","topics":"pump,sale,token,ico,fun","description":"The key topics discussed in the messages from Twitter about the crypto industry include the launch of the $PUMP token by Pump Fun on various platforms such as HyperliquidX, Bybit, Kraken, Bitget, MEXC, KuCoin, and Gate. There is speculation about Pump Fun's potential to compete with big tech companies like Twitch, TikTok, Instagram, Snapchat, Saudi Aramco, Johnson and Johnson, and OpenAI. The upcoming ICO for $PUMP is set to take place on July 12, 2025, with a total supply of 4 billion tokens and a token price of $0.004. Additionally, there is excitement about the listing of Liquidpump (LP) on BitMart Powerdrop and the potential acquisition targets for Pump Fun, such as a clipping company, streaming platform, Believe App, or media/distribution company. The market is currently pricing $PUMP at 5.2 billion, but there are discussions about buying at a lower price during the public sale. Overall, there is anticipation and speculation surrounding Pump Fun and its future in the crypto industry.","data":[1,3,2,2,0,1,7,6,6,2,1,2,4,1,0,0,0,3,3,2,3,3,0,2,2,6,5,4,7,3,1,4,1,2,4,1,1,3,58,0,1,2,2,1,2,2,1,1,7,2,0,2,4,1,1]},{"label":"NFTs","topics":"nft,nfts,pfp,mint,aura","description":"The key topics discussed in the messages from twitter are:\n1. NFTs and their popularity in the crypto industry\n2. Aura farming and NFT fundraisers\n3. Selling assets like cars and NFT collections\n4. Different platforms for NFT art and memes\n5. Personal stories related to financial losses and addiction\n6. Whitelisted collections and minting on various platforms\n7. Regenerative agriculture and funding projects with NFTs\n8. Past experiences with NFTs and the potential for future drops\n9. Presales and exclusive early access opportunities for NFTs\n10. Speculation about upcoming drops and rewards in the crypto space.","data":[0,0,2,3,1,3,2,1,4,3,6,2,5,0,1,6,3,4,7,6,7,6,3,2,3,5,1,3,5,3,1,2,14,4,15,5,4,0,3,3,2,5,4,3,1,0,2,2,3,0,2,3,2,1,5]},{"label":"DeFi","topics":"defi,protocols,risk,yield,vaults","description":"Important news:\nDeFi is better DeFi protocols should fit within a prompt window DeFi used to feel anti-human. Anoma finally bringing some sanity. @anoma 🪐 Venus Protocol boosts DeFi lending 💸\nA look at how @VenusProtocol aims to enhance decentralized lending on BNB Chain.\nCrypto rule: If you don’t know where your tokens are.\nThey’re probably stuck on the wrong chain.\n@Infinit_Labs fixes that with one prompt.\nDeFi GPS activated. 🧭\nDeFi prediction markets have established themselves as a unique collective intelligence tool.\nOn July 16th, we'll dive into how they work and which protocols to watch. Join us live👇\nNow tracking @MORE_DeFi Vaults on @flow_blockchain\nMore Vaults is a DeFi portfolio management that enables users to compose, rebalance, and upgrade any DeFi portfolio atomically without redeploying\nJoin @MANTRA_Chain and Nansen for a night where DeFi meets data.\nDesigned for builders, investors, and operators who care about data, RWAs, and the next phase of crypto adoption.\nSecure your seat:\nModern DeFi organizations require clear structure in order to be at their best\nInvestment Policy Statements built with @kpk_io set organisations up for success, by aligning internal and external stakeholders for protocol development.\n“Trust the process” only works if the process isn’t vibes-based.\n@NetworkNoya gives you:\n→ Simulated strategy\n→ Risk transparency\n→ ZK proofs\n→ Actual logic\nIn DeFi, that’s basically magic.\nDeFi is everywhere.\nArbitrum is everywhere.\nProtection needs to be everywhere too.\nCoin98 makes trading assets on @arbitrum safer by actively scanning and predicting risks in real-time.\nThe Evolution of #Bitcoin DeFi (#BTCFi):\nBitcoin’s Past\n• CEX buys\n• Wrapped-token DeFi\nBitcoin’s Future\n• Native Atomic Swaps\n• Yield from tokenized real-world assets 💥\nMintlayer is making it happen.\nprice is only one part of the picture...\n@OpenGradient built the infra that helps DeFi apps go one step further – by forecasting what might come next\ntheir models can predict price direction, estimate volatility, & plug those outputs into vaults, agents or contracts\nMost people don’t use DeFi because it feels overwhelming.\nThey hear “yield farming” and think: bridges, contracts, risks.\n@Infinit_Labs changes that.\nNow you can just say what you want.\n“Earn passively with this $1,000 in stablecoins.”\nInfinit builds a plan using top protocols,\nCan @PortaltoBitcoin win over the Bitcoin Maximalists? Let’s dive in, fam! 🌍\nFor years, @Bitcoin Maximalists have shunned DeFi—wrapped tokens and centralized bridges clash hard with Bitcoin’s core: sovereignty, censorship-resistance, and trust minimization. And they’re not.","data":[0,0,3,2,1,0,0,3,3,2,3,2,0,0,6,2,0,5,5,3,3,1,2,2,0,8,5,4,7,1,2,4,5,1,1,5,2,3,10,4,1,7,1,1,3,2,6,4,4,6,6,1,4,5,2]},{"label":"Altseason","topics":"dominance,season,altseason,altcoin,alt","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Altcoin season: There is a lot of discussion about the potential for altcoins to surge as Bitcoin dominance decreases.\n- Bitcoin blow-off top: Some users are speculating that Bitcoin may be reaching a peak, leading to a potential altcoin rally.\n- DeFi inspired alt season: There is anticipation for a surge in altcoins inspired by decentralized finance projects.\n- Altcoin market turnaround: The Altcoin Season Index has started to turn around, indicating a potential shift in the altcoin market.\n- Butch season on PulseChain: There is excitement around the Butch token dominating on PulseChain.\n\nOverall, the sentiment seems to be optimistic about the potential for altcoins to perform well in the near future, with a focus on Bitcoin dominance, DeFi projects, and specific altcoins like Butch.","data":[1,32,1,6,2,5,0,3,2,2,0,3,1,2,1,18,3,1,2,2,2,4,3,3,0,1,0,1,1,1,1,1,1,2,2,1,1,1,2,3,4,3,14,9,1,1,1,1,1,1,2,2,0,1,2]},{"label":"Dogecoin","topics":"dogecoin,doge,accumulation,forecast,pattern","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin's price movements, potential future projections, technical analysis, comparisons to other cryptocurrencies like Bitcoin, market trends, and the impact of external factors such as celebrity endorsements. There is also discussion about Dogecoin's speed compared to Bitcoin, its potential for growth, and its recent rebound in price. Additionally, there is mention of retail traders holding back, market dips, and long-term outlook for Dogecoin. Overall, the sentiment seems to be positive towards Dogecoin with optimism for its future potential.","data":[0,1,2,2,0,1,2,1,2,1,3,0,2,3,69,2,0,2,2,2,1,0,0,2,5,1,2,2,2,2,0,5,2,1,1,0,0,4,2,0,1,2,4,2,1,0,3,2,2,1,3,0,2,1,2]},{"label":"BTC price","topics":"resistance,breakout,range,retest,109k","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movement and potential for reaching new highs\n- Technical analysis indicators such as moving averages and trend lines\n- Resistance and support levels for Bitcoin\n- Potential for volatility in the market\n- Recommendations for trading strategies, including caution with leverage\n- Altcoin profits and weekend trading plans\n- Exit strategies for long and spot positions\n- Discord pre-market call highlights\n- Potential for Bitcoin to hit $140K-$170K\n- Deadline for international pause on tariffs\n- Importance of patience and staying ready for market movements\n- Trailing stop loss strategies\n- Importance of momentum and volume for price breakthroughs\n- Potential for clean consolidation setups in altcoins\n- Potential for a quick push up to $120K region if 112K resistance is broken\n- Importance of not dropping below key support levels\n- Potential for a sweep of lower price zones\n- Overall strength of Bitcoin despite choppy price action\n- Key upside resistance target of 114K\n- Importance of doing your own research and not overextending yourself in trading\n- Potential for Bitcoin to see more stage 2 up-trends\n- Potential for Bitcoin to attempt the 110K zone\n- Potential for a breakout to new all-time highs\n- Potential for Bitcoin to hit 112K and then 120K region\n- Potential for Bitcoin to hit 109K as expected\n- Potential for Bitcoin to hit 140K-170K this cycle\n- Potential for Bitcoin to hit 112K and then 120K region\n- Potential for Bitcoin to hit 109K as expected\n- Potential for Bitcoin to hit 140K-170K this cycle","data":[2,0,1,0,12,11,2,12,5,0,5,7,8,8,1,2,0,3,3,1,1,1,1,1,9,0,1,4,0,6,2,3,1,2,0,3,0,4,0,3,2,0,5,5,2,3,1,0,0,5,0,2,1,2,1]},{"label":"Epstein controversy","topics":"epstein,list,client,files,kill","description":"The messages from twitter are discussing various conspiracy theories and controversies surrounding Jeffrey Epstein, including his alleged involvement in sex trafficking and blackmailing powerful figures. There are also mentions of political figures such as Biden and Trump, as well as calls for age limits for politicians. Additionally, there is skepticism about the official narrative surrounding Epstein's death and the handling of the case by the DOJ and FBI. The messages also touch on the potential implications for future elections and the credibility of certain political figures.","data":[7,3,5,1,1,1,2,1,1,4,5,3,3,4,5,2,1,1,4,1,1,3,2,2,0,1,4,3,5,2,3,2,4,2,1,3,4,2,1,3,4,4,4,2,0,0,6,5,3,3,7,2,3,3,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-79.ts b/priv/repo/major_topics_seed/data-79.ts deleted file mode 100644 index 7e7b751d57..0000000000 --- a/priv/repo/major_topics_seed/data-79.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '03.07.25', - '04.07.25', - '04.07.25', - '04.07.25', - '04.07.25', - '04.07.25', - '04.07.25', - '04.07.25', - '05.07.25', - '05.07.25', - '05.07.25', - '05.07.25', - '05.07.25', - '05.07.25', - '05.07.25', - '05.07.25', - '06.07.25', - '06.07.25', - '06.07.25', - '06.07.25', - '06.07.25', - '06.07.25', - '06.07.25', - '06.07.25', - '07.07.25', - '07.07.25', - '07.07.25', - '07.07.25', - '07.07.25', - '07.07.25', - '07.07.25', - '07.07.25', - '08.07.25', - '08.07.25', - '08.07.25', - '08.07.25', - '08.07.25', - '08.07.25', - '08.07.25', - '08.07.25', - '09.07.25', - '09.07.25', - '09.07.25', - '09.07.25', - '09.07.25', - '09.07.25', - '09.07.25', - '09.07.25', - '10.07.25', - '10.07.25', - '10.07.25', - '10.07.25', - '10.07.25', - '10.07.25', - '10.07.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,data,openledgerhq', - description: - 'Based on the messages from Twitter, it is evident that the topic of discussion revolves around artificial intelligence (AI) in various industries, particularly in the crypto industry. Some key points mentioned include the use of AI in trading, AI advancements in Google facing antitrust complaints, the democratization of AI through decentralized platforms like OpenLedger, the emergence of AI glasses companies, partnerships between AI and NFT ecosystems, and the application of AI in Web3 technology by companies like DuckChain. Overall, the messages highlight the growing influence and impact of AI in different sectors and the ongoing developments in the field.', - data: [ - 35, 131, 19, 16, 1, 1, 8, 15, 17, 24, 10, 21, 14, 15, 20, 17, 14, 25, 11, 15, 19, 15, 12, - 20, 12, 18, 17, 15, 20, 17, 24, 18, 15, 15, 15, 38, 20, 16, 10, 18, 16, 24, 13, 11, 10, 15, - 16, 24, 19, 14, 11, 16, 11, 15, 18, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,3000,range,breakout', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding Ethereum ($ETH) include:\n- ETH reclaiming $2,800 and the potential for continued upward movement\n- Speculation about a $140k target for ETH\n- Price analysis indicating a potential breakout and bullish sentiment\n- The correlation between Coinbase ($COIN) rallying and Ethereum's price movement\n- Optimism about ETH's future price potential and warnings about not being bullish enough on Ethereum", - data: [ - 12, 10, 5, 7, 0, 1, 13, 11, 15, 16, 3, 13, 9, 4, 6, 7, 121, 47, 22, 12, 4, 17, 7, 18, 14, - 12, 3, 10, 13, 25, 11, 8, 10, 6, 8, 5, 11, 15, 14, 16, 12, 6, 23, 11, 16, 15, 11, 16, 8, 7, - 6, 9, 12, 9, 12, - ], - }, - { - label: 'Importance of Bitcoin', - topics: 'bitcoin,fiat,money,understand,save', - description: - 'The key topics discussed in the messages from twitter are:\n1. Bitcoin as the future of currency and the importance of accumulating it now\n2. The potential for Bitcoin to become the global standard for currency\n3. The impact of inflation on traditional savings and the need to learn about Bitcoin\n4. The role of Bitcoin in disrupting the traditional financial system and government-controlled currencies\n5. The value of Bitcoin as a decentralized and incorruptible form of money\n6. The belief in Bitcoin as a long-term investment and the importance of holding onto it (HODL)\n7. The potential for Bitcoin to be used directly for goods, services, and real estate transactions\n\nOverall, the messages reflect a strong belief in the power and potential of Bitcoin as a revolutionary form of currency that can disrupt traditional financial systems and provide individuals with greater control over their finances.', - data: [ - 6, 2, 10, 8, 68, 50, 4, 6, 14, 9, 4, 8, 10, 3, 11, 8, 6, 11, 10, 17, 7, 18, 11, 5, 9, 7, 5, - 8, 6, 3, 6, 6, 9, 8, 5, 21, 12, 13, 11, 11, 12, 8, 10, 7, 9, 10, 5, 12, 6, 4, 26, 5, 5, 7, - 9, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,etf,solanas,stake', - description: - "The key topics currently discussed in the crypto industry on Twitter include comparisons between Ethereum and Solana, the performance and potential price movements of Solana ($SOL), staking opportunities for various cryptocurrencies including Solana and Ethereum, updates on Solana's consensus mechanism Alpenglow, technical analysis of Solana's price movements, partnerships between PancakeSwap and Solana, and trading competitions between Solana and Ethereum ecosystems. Additionally, there is discussion about tokenized stocks on Solana, the potential breakout of Solana's downtrend line, and the launch of PancakeSwap v3 on Solana with a $1,000 USDC prize pool.", - data: [ - 4, 5, 4, 5, 0, 2, 5, 7, 8, 1, 7, 2, 4, 5, 2, 4, 9, 8, 3, 1, 4, 2, 3, 4, 8, 4, 9, 8, 5, 9, 3, - 2, 7, 6, 9, 3, 3, 6, 6, 4, 3, 0, 8, 22, 13, 8, 2, 4, 7, 5, 3, 2, 4, 5, 3, - ], - }, - { - label: 'BTC all-time-high', - topics: 'ath,aths,btc,hit,bitcoin', - description: - "The key topic currently being discussed on Twitter in the crypto industry is the new all-time high (ATH) for Bitcoin ($BTC). Users are excited about the potential for Bitcoin to reach a new ATH and are closely monitoring its price movements. Some users are also discussing the potential impact on other cryptocurrencies, such as Ethereum ($ETH), following Bitcoin's ATH. Overall, there is a sense of optimism and anticipation among the crypto community regarding the future price movements of Bitcoin and other cryptocurrencies.", - data: [ - 1, 2, 20, 1, 23, 14, 7, 6, 3, 1, 1, 5, 6, 7, 3, 2, 1, 4, 8, 2, 5, 1, 0, 19, 16, 0, 1, 3, 1, - 3, 4, 2, 5, 18, 4, 2, 2, 6, 4, 5, 3, 2, 4, 6, 3, 0, 2, 4, 1, 4, 3, 2, 3, 2, 4, - ], - }, - { - label: 'Elon Musk and America Party', - topics: 'party,elon,musk,america,political', - description: - "The key topics currently being discussed on Twitter regarding the crypto industry and Elon Musk include:\n- Elon Musk unveiling the \"America Party\" and expressing support for Bitcoin\n- Speculations about the future political influence of the America Party on Dogecoin and broader crypto markets\n- Debate over whether Elon Musk should solely support Bitcoin or also promote Dogecoin\n- Criticism of Elon Musk's political involvement and the need for honest money in politics\n- Disagreement over the effectiveness of launching more political parties without addressing underlying financial issues\n- Clarification that Vaibhav Taneja is not the treasurer for Musk's America Party\n- Comparison of the America Party to existing political parties in the US and Nigeria\n- Criticism of political labeling and identity politics within the Democratic Party\n- Elon Musk's goal to disrupt US politics and mainstream Bitcoin through the America Party\n- Discussion of past voting experiences and alliances between libertarians and Republicans\n\nOverall, the conversation on Twitter reflects a mix of excitement, skepticism, and criticism surrounding Elon Musk's involvement in politics and the potential impact on the crypto industry.", - data: [ - 3, 7, 4, 1, 3, 2, 6, 10, 4, 8, 3, 8, 3, 4, 6, 3, 10, 3, 6, 3, 0, 8, 1, 4, 2, 1, 3, 2, 7, 2, - 5, 4, 2, 9, 4, 7, 8, 8, 4, 3, 5, 14, 2, 0, 3, 6, 6, 7, 3, 4, 7, 5, 7, 1, 5, - ], - }, - { - label: 'BTC treasury strategies', - topics: 'treasury,publicly,company,holdings,million', - description: - 'Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n1. Institutional interest in Bitcoin, with companies like SMLR, Binance, and Canadian Public Company Pioneer AI Foundry making significant purchases or selling holdings.\n2. Bitcoin ETFs experiencing consecutive days of inflows, indicating growing institutional investment.\n3. Executives from traditional finance institutions, such as the former VP of SEB Bank, transitioning to Bitcoin-focused roles.\n4. Public companies like K Wave Media and H100 Group adopting a Bitcoin treasury strategy.\n5. Regulatory developments in the US, with discussions on making America the "crypto capital of the world" and potential benefits for Ethereum.\n6. Notable movements of long-dormant Bitcoin whales, signaling potential market shifts.\n7. El Salvador\'s significant Bitcoin holdings and unrealized profits as Bitcoin approaches its all-time high.', - data: [ - 7, 6, 1, 2, 8, 8, 3, 7, 4, 2, 2, 2, 4, 1, 1, 2, 3, 4, 4, 1, 2, 1, 8, 2, 7, 3, 3, 4, 5, 1, 1, - 1, 2, 5, 7, 1, 4, 3, 17, 2, 9, 18, 9, 7, 1, 9, 6, 2, 1, 3, 0, 5, 0, 8, 1, - ], - }, - { - label: 'July 4th', - topics: '4th,happy,independence,freedom,celebrate', - description: - "The key topics discussed in the messages from twitter are:\n1. Independence Day celebrations in the USA on July 4th\n2. Freedom and financial independence\n3. Crypto industry and tokenization\n4. David Brent from The Office hitting screens 24 years ago\n5. Invest America Act becoming law\n6. Comparison of USA's Independence Day celebration to other countries\n7. Political commentary on Senator Ted Cruz's social media posts\n8. Reminder to invest in Bitcoin\n9. Mention of decentralized tools and NFT bonds\n10. Reference to British authority in American colonies\n\nOverall, the messages reflect a mix of patriotic sentiments, financial discussions, political commentary, and pop culture references.", - data: [ - 16, 1, 2, 4, 3, 3, 1, 1, 1, 7, 0, 1, 2, 7, 3, 1, 0, 2, 11, 13, 4, 3, 1, 72, 1, 4, 3, 0, 0, - 4, 1, 4, 1, 0, 0, 3, 1, 3, 2, 2, 5, 4, 1, 0, 4, 1, 3, 3, 4, 1, 3, 0, 2, 1, 5, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The messages from Twitter suggest that there is a lot of discussion and excitement surrounding meme coins in the crypto industry. People are sharing their favorite meme coins to hold onto for potential riches, creating memes to explain concepts like Bitcoin filters, and expressing the appeal of meme coins over utility coins due to their fun and community-driven nature. There is also mention of the difficulty in finding the next big meme coin among the thousands being launched daily. Overall, the sentiment seems to be focused on the potential for high gains and the personal connection that meme coins create with their holders.', - data: [ - 1, 3, 8, 5, 0, 0, 0, 0, 1, 1, 6, 6, 1, 2, 1, 2, 2, 6, 6, 3, 1, 2, 3, 4, 9, 4, 1, 5, 8, 4, 5, - 55, 0, 4, 5, 1, 4, 5, 3, 3, 2, 2, 3, 2, 1, 4, 1, 5, 6, 3, 2, 2, 2, 4, 4, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,moved,dormant,worth', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Bitcoin Whales: There are multiple mentions of Bitcoin whales making significant moves in the market, with large transfers of BTC worth billions of dollars. Some whales have been dormant for years before suddenly becoming active again, leading to speculation about their motives and the impact on the market.\n\n2. Ethereum Whales: Similar to Bitcoin, there are discussions about Ethereum whales accumulating large amounts of ETH, potentially in preparation for upcoming events such as ETFs, Layer 2 solutions, and staking.\n\n3. Market Speculation: Traders and investors are closely watching the actions of whales and speculating on the reasons behind their movements. There is a focus on the potential gains made by whales who have been holding assets for years and are now moving them.\n\n4. Privacy Concerns: Some users are expressing concerns about the lack of privacy features in Bitcoin and other cryptocurrencies, arguing that this makes individuals vulnerable to theft and government surveillance. There are calls for using privacy-focused cryptocurrencies like Monero.\n\n5. Mystery Whale: There is intrigue surrounding a mystery whale who is allegedly an old miner holding a significant amount of BTC and making large transfers to new addresses. This has raised questions about the identity and intentions of the whale.\n\nOverall, the discussions on social media reflect the excitement, speculation, and concerns surrounding the actions of whales in the crypto industry.', - data: [ - 6, 7, 0, 4, 5, 6, 9, 14, 7, 5, 3, 1, 1, 1, 3, 5, 1, 3, 3, 1, 3, 2, 0, 0, 2, 1, 1, 4, 1, 3, - 1, 5, 11, 2, 7, 5, 0, 1, 0, 1, 4, 2, 4, 0, 2, 1, 1, 5, 1, 2, 2, 4, 7, 38, 4, - ], - }, - { - label: 'Dormant BTC movement', - topics: 'dormant,moved,14,wallets,years', - description: - 'The key topic discussed in the messages from Twitter is the movement of dormant Bitcoin wallets that have been inactive for many years. These wallets are suddenly being activated and large amounts of Bitcoin are being transferred, resulting in billions of dollars worth of transactions. Some of these wallets date back to the early days of Bitcoin when the price was much lower, and the current value of the Bitcoin in these wallets has increased significantly. There is speculation about whether these Bitcoin holders are planning to sell their holdings, which could potentially impact the market. The sudden movement of these dormant wallets has caught the attention of the crypto community and has sparked discussions about the potential reasons behind these transactions.', - data: [ - 12, 1, 6, 2, 2, 10, 6, 2, 8, 3, 2, 3, 4, 4, 1, 16, 6, 1, 1, 1, 1, 1, 6, 2, 1, 2, 3, 3, 3, 3, - 1, 3, 21, 4, 6, 1, 2, 1, 0, 2, 0, 1, 4, 1, 0, 2, 0, 1, 4, 2, 0, 6, 11, 1, 10, - ], - }, - { - label: 'GameFi', - topics: 'gaming,elympicsai,games,game,web3', - description: - 'Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto industry and web3 gaming community include:\n1. Web3 gaming and its potential for growth and innovation\n2. Partnerships and collaborations within the gaming industry, such as the Mocaverse and Elympics partnership\n3. The concept of play-to-win models in gaming, as seen in platforms like Elympics\n4. The integration of blockchain technology and digital assets in gaming, as exemplified by UndeadBlocks migrating to Avax\n5. The challenges of fragmented economies in gaming and the potential solutions, such as Game Dollar by PLAYTR0N\n6. The potential impact of companies like Sharplink Gaming and their strategies for transforming gaming and blockchain\n\nOverall, the discussions on Twitter reflect a growing interest in the intersection of gaming, blockchain technology, and decentralized finance within the crypto industry.', - data: [ - 3, 1, 1, 2, 0, 0, 2, 2, 1, 1, 0, 4, 2, 2, 5, 2, 13, 1, 2, 6, 33, 2, 3, 3, 1, 7, 2, 6, 5, 1, - 4, 1, 2, 6, 2, 6, 13, 1, 0, 4, 2, 1, 1, 2, 4, 2, 2, 3, 1, 2, 5, 1, 6, 4, 6, - ], - }, - { - label: 'ETFs', - topics: 'inflows,etfs,net,etf,spot', - description: - 'The key topic discussed in the messages from Twitter is the significant increase in inflows into spot Bitcoin and Ethereum ETFs. There is a surge in institutional adoption and non-crypto-native investors seeking exposure to BTC and ETH, leading to record inflows into these ETFs. The messages also mention specific amounts of net inflows into these ETFs on consecutive days, as well as the involvement of major financial institutions like BlackRock. Additionally, there is a comparison between the inflows into spot Bitcoin ETFs and spot Ethereum ETFs, highlighting the growing interest in both cryptocurrencies. The messages also touch upon the impact of ETFs on the mainstream adoption of Bitcoin and Ethereum, as well as the overall bullish sentiment in the market.', - data: [ - 4, 0, 0, 3, 3, 1, 5, 2, 1, 2, 2, 0, 2, 1, 1, 4, 37, 8, 7, 8, 1, 3, 1, 0, 3, 9, 3, 3, 3, 3, - 2, 1, 1, 4, 0, 4, 0, 1, 1, 3, 2, 3, 9, 1, 23, 3, 1, 1, 2, 1, 0, 1, 1, 6, 3, - ], - }, - { - label: 'Pump.fun ICO', - topics: 'pump,sale,token,ico,fun', - description: - "The key topics discussed in the messages from Twitter about the crypto industry include the launch of the $PUMP token by Pump Fun on various platforms such as HyperliquidX, Bybit, Kraken, Bitget, MEXC, KuCoin, and Gate. There is speculation about Pump Fun's potential to compete with big tech companies like Twitch, TikTok, Instagram, Snapchat, Saudi Aramco, Johnson and Johnson, and OpenAI. The upcoming ICO for $PUMP is set to take place on July 12, 2025, with a total supply of 4 billion tokens and a token price of $0.004. Additionally, there is excitement about the listing of Liquidpump (LP) on BitMart Powerdrop and the potential acquisition targets for Pump Fun, such as a clipping company, streaming platform, Believe App, or media/distribution company. The market is currently pricing $PUMP at 5.2 billion, but there are discussions about buying at a lower price during the public sale. Overall, there is anticipation and speculation surrounding Pump Fun and its future in the crypto industry.", - data: [ - 1, 3, 2, 2, 0, 1, 7, 6, 6, 2, 1, 2, 4, 1, 0, 0, 0, 3, 3, 2, 3, 3, 0, 2, 2, 6, 5, 4, 7, 3, 1, - 4, 1, 2, 4, 1, 1, 3, 58, 0, 1, 2, 2, 1, 2, 2, 1, 1, 7, 2, 0, 2, 4, 1, 1, - ], - }, - { - label: 'NFTs', - topics: 'nft,nfts,pfp,mint,aura', - description: - 'The key topics discussed in the messages from twitter are:\n1. NFTs and their popularity in the crypto industry\n2. Aura farming and NFT fundraisers\n3. Selling assets like cars and NFT collections\n4. Different platforms for NFT art and memes\n5. Personal stories related to financial losses and addiction\n6. Whitelisted collections and minting on various platforms\n7. Regenerative agriculture and funding projects with NFTs\n8. Past experiences with NFTs and the potential for future drops\n9. Presales and exclusive early access opportunities for NFTs\n10. Speculation about upcoming drops and rewards in the crypto space.', - data: [ - 0, 0, 2, 3, 1, 3, 2, 1, 4, 3, 6, 2, 5, 0, 1, 6, 3, 4, 7, 6, 7, 6, 3, 2, 3, 5, 1, 3, 5, 3, 1, - 2, 14, 4, 15, 5, 4, 0, 3, 3, 2, 5, 4, 3, 1, 0, 2, 2, 3, 0, 2, 3, 2, 1, 5, - ], - }, - { - label: 'DeFi', - topics: 'defi,protocols,risk,yield,vaults', - description: - "Important news:\nDeFi is better DeFi protocols should fit within a prompt window DeFi used to feel anti-human. Anoma finally bringing some sanity. @anoma 🪐 Venus Protocol boosts DeFi lending 💸\nA look at how @VenusProtocol aims to enhance decentralized lending on BNB Chain.\nCrypto rule: If you don’t know where your tokens are.\nThey’re probably stuck on the wrong chain.\n@Infinit_Labs fixes that with one prompt.\nDeFi GPS activated. 🧭\nDeFi prediction markets have established themselves as a unique collective intelligence tool.\nOn July 16th, we'll dive into how they work and which protocols to watch. Join us live👇\nNow tracking @MORE_DeFi Vaults on @flow_blockchain\nMore Vaults is a DeFi portfolio management that enables users to compose, rebalance, and upgrade any DeFi portfolio atomically without redeploying\nJoin @MANTRA_Chain and Nansen for a night where DeFi meets data.\nDesigned for builders, investors, and operators who care about data, RWAs, and the next phase of crypto adoption.\nSecure your seat:\nModern DeFi organizations require clear structure in order to be at their best\nInvestment Policy Statements built with @kpk_io set organisations up for success, by aligning internal and external stakeholders for protocol development.\n“Trust the process” only works if the process isn’t vibes-based.\n@NetworkNoya gives you:\n→ Simulated strategy\n→ Risk transparency\n→ ZK proofs\n→ Actual logic\nIn DeFi, that’s basically magic.\nDeFi is everywhere.\nArbitrum is everywhere.\nProtection needs to be everywhere too.\nCoin98 makes trading assets on @arbitrum safer by actively scanning and predicting risks in real-time.\nThe Evolution of #Bitcoin DeFi (#BTCFi):\nBitcoin’s Past\n• CEX buys\n• Wrapped-token DeFi\nBitcoin’s Future\n• Native Atomic Swaps\n• Yield from tokenized real-world assets 💥\nMintlayer is making it happen.\nprice is only one part of the picture...\n@OpenGradient built the infra that helps DeFi apps go one step further – by forecasting what might come next\ntheir models can predict price direction, estimate volatility, & plug those outputs into vaults, agents or contracts\nMost people don’t use DeFi because it feels overwhelming.\nThey hear “yield farming” and think: bridges, contracts, risks.\n@Infinit_Labs changes that.\nNow you can just say what you want.\n“Earn passively with this $1,000 in stablecoins.”\nInfinit builds a plan using top protocols,\nCan @PortaltoBitcoin win over the Bitcoin Maximalists? Let’s dive in, fam! 🌍\nFor years, @Bitcoin Maximalists have shunned DeFi—wrapped tokens and centralized bridges clash hard with Bitcoin’s core: sovereignty, censorship-resistance, and trust minimization. And they’re not.", - data: [ - 0, 0, 3, 2, 1, 0, 0, 3, 3, 2, 3, 2, 0, 0, 6, 2, 0, 5, 5, 3, 3, 1, 2, 2, 0, 8, 5, 4, 7, 1, 2, - 4, 5, 1, 1, 5, 2, 3, 10, 4, 1, 7, 1, 1, 3, 2, 6, 4, 4, 6, 6, 1, 4, 5, 2, - ], - }, - { - label: 'Altseason', - topics: 'dominance,season,altseason,altcoin,alt', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Altcoin season: There is a lot of discussion about the potential for altcoins to surge as Bitcoin dominance decreases.\n- Bitcoin blow-off top: Some users are speculating that Bitcoin may be reaching a peak, leading to a potential altcoin rally.\n- DeFi inspired alt season: There is anticipation for a surge in altcoins inspired by decentralized finance projects.\n- Altcoin market turnaround: The Altcoin Season Index has started to turn around, indicating a potential shift in the altcoin market.\n- Butch season on PulseChain: There is excitement around the Butch token dominating on PulseChain.\n\nOverall, the sentiment seems to be optimistic about the potential for altcoins to perform well in the near future, with a focus on Bitcoin dominance, DeFi projects, and specific altcoins like Butch.', - data: [ - 1, 32, 1, 6, 2, 5, 0, 3, 2, 2, 0, 3, 1, 2, 1, 18, 3, 1, 2, 2, 2, 4, 3, 3, 0, 1, 0, 1, 1, 1, - 1, 1, 1, 2, 2, 1, 1, 1, 2, 3, 4, 3, 14, 9, 1, 1, 1, 1, 1, 1, 2, 2, 0, 1, 2, - ], - }, - { - label: 'Dogecoin', - topics: 'dogecoin,doge,accumulation,forecast,pattern', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include Dogecoin's price movements, potential future projections, technical analysis, comparisons to other cryptocurrencies like Bitcoin, market trends, and the impact of external factors such as celebrity endorsements. There is also discussion about Dogecoin's speed compared to Bitcoin, its potential for growth, and its recent rebound in price. Additionally, there is mention of retail traders holding back, market dips, and long-term outlook for Dogecoin. Overall, the sentiment seems to be positive towards Dogecoin with optimism for its future potential.", - data: [ - 0, 1, 2, 2, 0, 1, 2, 1, 2, 1, 3, 0, 2, 3, 69, 2, 0, 2, 2, 2, 1, 0, 0, 2, 5, 1, 2, 2, 2, 2, - 0, 5, 2, 1, 1, 0, 0, 4, 2, 0, 1, 2, 4, 2, 1, 0, 3, 2, 2, 1, 3, 0, 2, 1, 2, - ], - }, - { - label: 'BTC price', - topics: 'resistance,breakout,range,retest,109k', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin's price movement and potential for reaching new highs\n- Technical analysis indicators such as moving averages and trend lines\n- Resistance and support levels for Bitcoin\n- Potential for volatility in the market\n- Recommendations for trading strategies, including caution with leverage\n- Altcoin profits and weekend trading plans\n- Exit strategies for long and spot positions\n- Discord pre-market call highlights\n- Potential for Bitcoin to hit $140K-$170K\n- Deadline for international pause on tariffs\n- Importance of patience and staying ready for market movements\n- Trailing stop loss strategies\n- Importance of momentum and volume for price breakthroughs\n- Potential for clean consolidation setups in altcoins\n- Potential for a quick push up to $120K region if 112K resistance is broken\n- Importance of not dropping below key support levels\n- Potential for a sweep of lower price zones\n- Overall strength of Bitcoin despite choppy price action\n- Key upside resistance target of 114K\n- Importance of doing your own research and not overextending yourself in trading\n- Potential for Bitcoin to see more stage 2 up-trends\n- Potential for Bitcoin to attempt the 110K zone\n- Potential for a breakout to new all-time highs\n- Potential for Bitcoin to hit 112K and then 120K region\n- Potential for Bitcoin to hit 109K as expected\n- Potential for Bitcoin to hit 140K-170K this cycle\n- Potential for Bitcoin to hit 112K and then 120K region\n- Potential for Bitcoin to hit 109K as expected\n- Potential for Bitcoin to hit 140K-170K this cycle", - data: [ - 2, 0, 1, 0, 12, 11, 2, 12, 5, 0, 5, 7, 8, 8, 1, 2, 0, 3, 3, 1, 1, 1, 1, 1, 9, 0, 1, 4, 0, 6, - 2, 3, 1, 2, 0, 3, 0, 4, 0, 3, 2, 0, 5, 5, 2, 3, 1, 0, 0, 5, 0, 2, 1, 2, 1, - ], - }, - { - label: 'Epstein controversy', - topics: 'epstein,list,client,files,kill', - description: - "The messages from twitter are discussing various conspiracy theories and controversies surrounding Jeffrey Epstein, including his alleged involvement in sex trafficking and blackmailing powerful figures. There are also mentions of political figures such as Biden and Trump, as well as calls for age limits for politicians. Additionally, there is skepticism about the official narrative surrounding Epstein's death and the handling of the case by the DOJ and FBI. The messages also touch on the potential implications for future elections and the credibility of certain political figures.", - data: [ - 7, 3, 5, 1, 1, 1, 2, 1, 1, 4, 5, 3, 3, 4, 5, 2, 1, 1, 4, 1, 1, 3, 2, 2, 0, 1, 4, 3, 5, 2, 3, - 2, 4, 2, 1, 3, 4, 2, 1, 3, 4, 4, 4, 2, 0, 0, 6, 5, 3, 3, 7, 2, 3, 3, 4, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-8.json b/priv/repo/major_topics_seed/data-8.json deleted file mode 100644 index 3a00a1ee3e..0000000000 --- a/priv/repo/major_topics_seed/data-8.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["22.02.24","23.02.24","23.02.24","23.02.24","23.02.24","23.02.24","23.02.24","23.02.24","24.02.24","24.02.24","24.02.24","24.02.24","24.02.24","24.02.24","24.02.24","24.02.24","25.02.24","25.02.24","25.02.24","25.02.24","25.02.24","25.02.24","25.02.24","25.02.24","26.02.24","26.02.24","26.02.24","26.02.24","26.02.24","26.02.24","26.02.24","26.02.24","27.02.24","27.02.24","27.02.24","27.02.24","27.02.24","27.02.24","27.02.24","27.02.24","28.02.24","28.02.24","28.02.24","28.02.24","28.02.24","28.02.24","28.02.24","28.02.24","29.02.24","29.02.24","29.02.24","29.02.24","29.02.24","29.02.24","29.02.24"],"datasets":[{"label":"BTC","topics":"bitcoin,true,eating,btc,world","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin and its impact on changing the world\n- Updates on Bitcoin price movements and technical analysis\n- How Bitcoin affects human behavior\n- Using Bitcoin for payments at local businesses\n- The importance of learning about Bitcoin and earning it through educational programs\n\nOverall, the sentiment towards Bitcoin seems positive, with discussions ranging from its potential to revolutionize the financial system to practical use cases for everyday transactions. There is also a focus on education and increasing adoption of Bitcoin as a form of digital currency.","data":[11,3,5,13,50,48,26,7,3,15,7,8,7,6,10,6,7,6,8,9,11,11,11,9,5,6,4,8,14,4,5,9,4,11,13,6,8,15,8,13,9,19,7,13,7,11,10,11,13,5,20,7,7,19,15]},{"label":"AI","topics":"ai,human,generative,sora,artificial","description":"The key topics currently being discussed in the crypto industry on social media include AI coins, AI art, AI ethics, AI creativity, and the potential ROI of specific AI coins such as $RNDR and $PAAL. There is also mention of AI technology being used in various industries such as preventing rust on Tesla Cyber Trucks and enhancing movie streaming hubs. Additionally, there is discussion about the potential dystopian implications of AI technology combined with mobile phone location data. Overall, the conversation around AI in the crypto industry seems to be focused on its investment potential, artistic applications, ethical considerations, and technological advancements.","data":[27,49,10,4,0,0,1,5,3,5,6,4,9,5,10,4,12,8,2,1,13,2,6,2,4,9,13,6,8,2,5,1,9,4,7,8,4,9,5,6,7,9,5,0,8,1,10,6,11,7,3,3,4,6,8]},{"label":"DOGE","topics":"doge,dogecoin,dog,elon,moon","description":"The key topics currently being discussed in the crypto industry on social media accounts include:\n- #doge season\n- Dogecoin ($DOGE)\n- Ability to tip content creators with $DOGE\n- Price movements of Dogecoin\n- Potential tattoo bet on $DUKO hitting 10m\n- Dogefam\n- Dogeusdt pumping\n- Dogecoin hitting its highest point since November 2022\n- Dogecoin ranking in the crypto market\n- Memecoins\n\nOverall, the sentiment seems to be positive with excitement around the price movements of Dogecoin and potential opportunities for growth in the market.","data":[2,2,3,2,2,1,1,4,4,3,4,2,2,4,75,88,2,3,4,3,2,11,1,4,1,2,2,3,8,3,4,5,6,7,1,3,3,6,8,6,3,4,6,8,3,5,8,4,9,2,1,2,7,3,4]},{"label":"Ethereum Denver","topics":"denver,ethereumdenver,ethdenver,excited,event","description":"The key topics currently being discussed on Twitter in the crypto industry include:\n1. Excitement for the upcoming ETH Denver event and the potential impact on the community.\n2. Discussions about new contract standards like ERC-404s and their role in driving the ecosystem forward.\n3. Events and meetups related to Bitcoin and other cryptocurrencies.\n4. Updates on projects and insights from BUIDLWeek.\n5. Information about upcoming summits and interviews with industry leaders.\n6. Announcements of events and talks by industry experts.\n7. Online hackathons and competitions for developers.\n8. Experiences and events within virtual worlds like The Sandbox.\n9. Game nights and onchain games with prizes.\n10. Reminders for upcoming events and shows related to crypto projects like GroveX and GroveKeeper.","data":[7,1,9,1,0,0,3,2,4,3,8,5,2,3,3,3,9,32,2,9,4,6,3,13,15,0,10,22,1,3,19,4,9,4,4,9,2,7,4,16,8,5,3,6,10,7,6,3,7,12,7,2,8,10,7]},{"label":"Ethereum Price","topics":"eth,ethereum,3500,3k,3000","description":"The key topics discussed in the provided messages from Twitter about the crypto industry, specifically focusing on Ethereum ($ETH), include:\n1. Ethereum's price surge, surpassing $3,000 and reaching milestones like $10,000, $20,000, and $100,000.\n2. Speculation and analysis on potential price movements, with mentions of clearing $2,960 and reaching 200% from the lows.\n3. Discussion on Ethereum's performance compared to other altcoins and its potential to lead the market.\n4. References to Ethereum Maximalists and their reactions to price movements.\n5. Updates on Ethereum futures open interest nearing an all-time high.\n6. Mention of liquidated short and long positions in Ethereum trading.\n7. Humorous comments and memes related to Ethereum price movements and trading strategies.\n8. General sentiment of optimism and excitement surrounding Ethereum's price action and market performance.","data":[5,2,5,3,1,0,2,6,2,3,7,4,8,7,3,6,63,15,7,9,4,7,1,5,11,4,4,7,3,10,10,2,0,4,7,1,4,5,3,9,2,3,7,5,5,5,2,7,2,2,5,5,3,7,3]},{"label":"PEPE","topics":"pepe,memecoin,meme,coin,rare","description":"The key topics currently discussed in the crypto community on Twitter include the rise of $PEPE to new all-time highs, breaking a $700 million market cap, and entering price discovery. There is speculation on which coin will boom next, with mentions of $SHIB, $FROG, $MINU, and $WIF. Some users believe that $PEPE and $WIF have superior \"memetics\" and will be the winners in the meme coin market. Additionally, there is excitement about the potential for $PEPE to lead to bullish outcomes for other coins like $PORK. Overall, there is a mix of optimism and enthusiasm for various meme coins and their potential for significant gains in the current bull run.","data":[1,2,3,5,1,0,1,1,6,2,6,1,0,4,2,2,1,4,8,7,1,2,2,8,9,4,2,4,6,3,5,2,12,1,2,5,74,5,3,2,4,5,1,3,8,1,3,9,4,3,2,2,5,4,5]},{"label":"Art","topics":"art,cryptopunks,artist,artists,collectors","description":"The messages from twitter are discussing various topics related to the crypto industry and digital art. Some key points mentioned include the rise of Cryptopunks as valuable digital art, the excitement of watching ETH rise in value, the affordability of grails digital art before the next crypto bull market, the importance of collecting historical and iconic grails in the art world, the use of AI in creating art, and the unique strategies used by artists to sell their work. Overall, the messages highlight the growing interest and investment in digital art within the crypto community.","data":[4,6,42,6,0,0,1,0,9,9,12,7,12,6,3,5,1,6,3,2,2,3,16,2,4,0,4,4,2,2,9,8,3,4,4,3,5,1,3,5,2,2,3,4,4,3,4,1,2,4,2,1,2,1,5]},{"label":"Solana","topics":"sol,solana,sales,rwa,fdv","description":"The key topics discussed in the messages from twitter are:\n1. Solana's recent surge in price and partnerships, particularly with Filecoin\n2. Comparison between altcoins on Ethereum and Solana\n3. Potential price targets for Solana and Filecoin\n4. Analysts' opinions on investing in Solana during the current market rally\n5. Speculation on the performance of Solana compared to Ethereum and Bitcoin\n6. Discussion on investing in SONA at a dip for potential gains\n7. Mention of a new Solana bounty on Bountycaster\n8. Mention of ALGT as a potential investment opportunity\n9. Mention of RBLZ token and its market value\n10. Mention of Queeny artwork on SuperRare platform.","data":[4,8,3,7,1,0,6,3,5,5,4,2,3,4,4,6,5,6,5,1,8,5,2,4,5,5,6,1,2,3,2,4,2,4,6,4,4,4,3,4,3,9,3,5,28,6,10,4,3,2,1,7,1,3,2]},{"label":"GameFi","topics":"gaming,games,game,web3,gamefi","description":"The key topics discussed in the messages from twitter about the crypto industry include:\n- Web3 gaming and its potential for growth\n- Partnerships and collaborations within the gaming industry\n- Updates and advancements in gaming technology\n- The future of entertainment in Web3\n- Valuation of Web3 game pixels\n- Investing time in gaming for meaningful returns\n\nOverall, the messages highlight the excitement and optimism surrounding the intersection of gaming and blockchain technology in the crypto industry.","data":[1,2,3,6,2,0,2,5,2,1,5,6,7,2,2,3,8,1,4,2,36,3,6,3,2,6,2,7,9,0,1,3,5,0,3,3,0,9,1,3,3,3,2,4,3,2,3,8,1,5,3,0,5,6,1]},{"label":"Memecoins","topics":"meme,memecoin,memecoins,memes,bonk","description":"The current discussion on social media accounts and communities in the crypto industry revolves around memecoins and meme-related investments. There is excitement about the potential for a memecoin season, with mentions of popular memecoins like $DOGE, $SHIB, and $BONK hitting new highs. Investors are also looking for the next 100x gem in the meme market, with mentions of coins like $bendog, $daumen, $trump, and $pepe. Additionally, there is a focus on meme competitions and the profitability of memecoins like $WOJAK, which has seen a significant increase in profitability. Overall, the meme market is heating up again, with new contenders like $TMEME entering the scene.","data":[1,6,4,9,0,2,5,1,5,3,4,1,3,0,0,0,2,0,4,0,3,1,7,1,2,1,1,5,2,4,2,0,61,2,4,0,2,0,2,3,3,4,2,2,3,5,2,2,4,2,5,2,3,4,1]},{"label":"NFTs","topics":"nft,nfts,collection,crew,exclusive","description":"The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. NFTs: There is a lot of excitement and discussion around NFTs, with mentions of buying valuable NFTs, the invention of blockchain for NFTs, and questions about the first Bitcoin NFT. There is also mention of NFT tattoos and the comparison between past and current cycles.\n2. Metadata for file uploads: Users are looking for more information on metadata for file uploads, specifically related to file size of uploaded media before uploading to the server.\n3. Revenue streams and royalties: There is a discussion about revenue streams for NFTs, with mention of penguins figuring out a revenue stream without relying on royalties, and other NFTs scrambling to enforce royalties.\n4. NFT-Fi: There are concerns about NFT-Fi being labeled as the biggest ponzi scheme of the century, with questions about where the yield comes from and the high APY with farming loops.\n5. Token standards for NFTs: There is mention of the token standard for NFTs on the Ethereum blockchain, enabling unique digital assets in art, gaming, and more.\n6. NFT projects and presales: Users are seeking early feedback on NFT projects they are working on, as well as suggestions for NFT purchases, such as $SEI NFT.\n7. NFT giveaways: There is news about Robinhood launching an NFT giveaway with a digital art NFT platform, granting users access to exclusive digital sketches from a renowned artist.\n8. ERC-404 NFT collection: The launch of the Capybara Crew, the first-ever ERC-404 NFT collection on the People’s Launchpad by Particle Network, is highlighted as a standout opportunity due to strategic partnerships and a strong community.","data":[4,4,1,5,0,1,0,0,5,9,5,6,4,4,4,2,0,3,3,5,4,3,4,4,4,4,5,3,8,2,4,5,2,5,17,3,4,3,5,2,2,3,2,0,2,3,2,2,1,3,1,3,6,4,2]},{"label":"Shiba Inu","topics":"shiba,inu,shib,shibainu,whale","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Shiba Inu team alerting the community to rising scam threats\n2. Shiba Inu achieving a new milestone with SHEboshi selling out instantly\n3. Speculation on whether Shiba Inu price will sustain above $0.00001 by the end of February\n4. Crypto traders swapping Shiba Inu for Mollars presale token\n5. Shiba Inu payments being accepted by over 1,200 merchants in 25 countries\n6. Analysis of Bitcoin's potential peak, Shiba Inu's leap, and Dogecoin's expansion\n7. On-chain metrics turning bearish for Shiba Inu and Dogecoin\n8. Projected timelines for Shiba Inu to surpass $0.0007 and $0.02\n9. Yuga Labs acquiring Moonbirds and potential future steps\n10. Significant surge in whale activity for Shiba Inu\n11. Massive sell-off of SHIB by a whale after 2.5 years\n12. ShibaFork token soaring 56,986% and gaining attention\n13. Shiba Inu experiencing a 28% surge in 24 hours and 45% jump over the week\n14. Announcement of a giveaway of 2000 AI SHIBA (AISHIBA) on LATOKEN with distribution date on March 6, 2024.","data":[2,4,3,3,0,1,3,0,3,1,2,1,3,3,3,3,1,1,2,2,2,0,1,1,3,1,41,2,7,0,0,1,1,3,4,0,0,1,4,2,0,4,4,30,1,0,3,4,1,1,2,1,1,3,1]},{"label":"Coinbase crash","topics":"coinbase,crashed,crash,traffic,exchanges","description":"The key topics currently being discussed on social media regarding the crypto industry are the recent outage of Coinbase, the impact on Bitcoin market cap, the potential manipulation of prices, concerns about Coinbase's reliability and security measures, and the importance of providing a smooth and reliable experience for all clients. Users are also discussing the implications of Coinbase going offline multiple times, the CEO admitting to being too cheap, and the potential for market manipulation during flash crashes. Additionally, there are mentions of other exchanges performing better than Coinbase during similar market conditions. Overall, the sentiment seems to be a mix of frustration, skepticism, and calls for improvement in the crypto exchange industry.","data":[1,2,2,3,1,1,2,6,4,5,36,3,16,1,1,1,1,0,0,1,6,10,1,1,2,2,0,1,2,0,2,1,2,1,1,5,2,1,1,0,3,4,3,3,1,0,6,1,6,1,3,1,3,1,2]},{"label":"Ripple","topics":"xrp,ripple,sec,cryptocurrency,altcoins","description":"Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n1. Collaboration between The Federal Reserve, Saudi Arabia Monetary Authority, and Ripple for domestic payments.\n2. Performance anxiety and speculation surrounding XRP.\n3. XRP hitting the Swedish Stock Exchange and ETP trading now live.\n4. New proposal for Smart AMMs to reroute XRP liquidity.\n5. Speculation on which cryptocurrency (XRP, Cardano, or ScapesMania) will hit $10 first.\n6. Analysis of XRP whales' market dynamics and Ripple's role.\n7. OKX releasing its 16th Proof of Reserves report.\n8. Ripple's ex-director denying XRP ETF speculation.\n9. Speculation on XRP liquidity events.\n10. Potential breakout of the 6-year trendline for XRP on the Non-Log Scale.","data":[3,4,1,3,1,1,0,1,0,2,3,0,5,0,4,3,1,6,1,1,0,1,1,1,4,2,3,5,5,2,0,3,1,3,4,8,1,2,9,2,1,11,3,2,3,2,2,4,1,3,2,5,1,1,1]},{"label":"BTC Halving","topics":"halving,days,countdown,bitcoinhalving,bitcoinatlantis","description":"The key topic currently being discussed on Twitter is the upcoming Bitcoin halving event. Users are excited about the countdown to the halving, with only a few days left until the event. There are predictions about the price of Bitcoin after the halving, with some users believing that the price will increase. Additionally, there is discussion about the impact of the halving on Bitcoin miners and the scarcity of Bitcoin in the future. Overall, the sentiment around the Bitcoin halving event seems positive, with users eagerly anticipating the event and its potential effects on the market.","data":[3,0,2,2,17,3,5,0,0,0,1,0,16,47,0,1,1,0,1,1,0,3,1,7,0,0,0,0,0,1,0,0,2,1,0,2,0,1,3,0,1,1,1,0,0,0,1,0,0,3,0,1,1,3,2]},{"label":"Airdrops","topics":"airdrop,farming,referral,code,airdrops","description":"The key topic discussed in the Twitter messages is airdrop farming in the crypto industry. Users are sharing referral codes, links, and information about various airdrops on platforms like Blast_L2, Blur_io, DegamexCom, and more. They are encouraging others to participate in airdrops to earn tokens and rewards. Additionally, there is mention of upcoming airdrops, new projects like BillionAir, and opportunities to earn tokens through different platforms and apps. Overall, the focus is on maximizing gains through airdrop farming in the current market conditions.","data":[1,14,3,3,0,0,3,1,4,1,5,2,3,0,1,2,1,1,13,3,1,1,1,0,1,3,8,0,0,5,1,1,2,3,1,2,2,4,0,1,1,2,2,1,2,7,2,4,1,0,0,1,1,3,1]},{"label":"Uniswap","topics":"uni,uniswap,proposal,governance,switch","description":"The key topics currently being discussed on Twitter in relation to the crypto industry, specifically Uniswap (#UNI), include:\n- Uniswap's recent gains of over 40% in 7 days amid airdrop plans\n- The proposal to reward token holders in a major governance overhaul, leading to a 60% jump in UNI\n- Uncertainty surrounding Uniswap Foundation's upgrade proposal\n- The upcoming Snapshot vote for new proposals on March 1, 2024, allowing protocol fees to be distributed to UNI token holders\n- The launch of Uniswap V3, bringing a game-changing upgrade with new trading pairs\n- Uniswap's increased revenue surpassing Bitcoin's, positioning it as a top cryptocurrency\n- Alpaca Finance's newsletter highlighting the surge in UNI token price due to Uniswap governance proposal\n\nOverall, the discussions on Twitter indicate a lot of excitement and anticipation surrounding Uniswap's developments and potential future growth in the crypto industry.","data":[1,1,1,0,0,0,1,2,0,0,2,0,3,1,1,2,0,2,0,1,1,4,0,2,1,1,2,2,0,0,2,3,1,1,4,2,1,2,6,1,2,2,2,0,2,0,4,1,2,2,40,2,0,2,2]},{"label":"Ordinals","topics":"ordinals,ordinal,nodemonkes,nfts,collections","description":"The key topics currently discussed in the crypto industry on Twitter include:\n- Ordinals protocol and its potential for growth and development\n- Comparison between Bitcoin (BTC) and Ethereum (ETH) NFTs\n- Predictions about the future of Ordinals and its potential to go parabolic\n- Diversification in crypto investments beyond sticking to one chain\n- The impact of retail investors seeking new outperformers in the crypto market\n- Comparison between Ethereum (ETH) and Solana (SOL) for investment opportunities\n- The importance of choosing the right projects with least friction paths and obvious mindshare narratives\n- The potential for multiple collections to have a 1 BTC floor in value\n- The unique features of art on-chain on the world's most valuable blockchain\n- The potential for Ordinals to replicate the success of ETH NFTs in 2021\n- The role of AI and CB (central banks) in shaping investment decisions in the crypto market.","data":[0,0,0,1,3,5,1,2,6,3,2,1,1,0,2,0,0,0,1,2,1,2,1,0,0,5,2,1,0,1,2,5,1,1,4,22,6,3,3,1,2,3,0,1,0,1,4,2,1,1,1,2,4,1,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-8.ts b/priv/repo/major_topics_seed/data-8.ts deleted file mode 100644 index 5581639623..0000000000 --- a/priv/repo/major_topics_seed/data-8.ts +++ /dev/null @@ -1,242 +0,0 @@ -export const NARRATIVES = { - labels: [ - '22.02.24', - '23.02.24', - '23.02.24', - '23.02.24', - '23.02.24', - '23.02.24', - '23.02.24', - '23.02.24', - '24.02.24', - '24.02.24', - '24.02.24', - '24.02.24', - '24.02.24', - '24.02.24', - '24.02.24', - '24.02.24', - '25.02.24', - '25.02.24', - '25.02.24', - '25.02.24', - '25.02.24', - '25.02.24', - '25.02.24', - '25.02.24', - '26.02.24', - '26.02.24', - '26.02.24', - '26.02.24', - '26.02.24', - '26.02.24', - '26.02.24', - '26.02.24', - '27.02.24', - '27.02.24', - '27.02.24', - '27.02.24', - '27.02.24', - '27.02.24', - '27.02.24', - '27.02.24', - '28.02.24', - '28.02.24', - '28.02.24', - '28.02.24', - '28.02.24', - '28.02.24', - '28.02.24', - '28.02.24', - '29.02.24', - '29.02.24', - '29.02.24', - '29.02.24', - '29.02.24', - '29.02.24', - '29.02.24', - ], - datasets: [ - { - label: 'BTC', - topics: 'bitcoin,true,eating,btc,world', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin and its impact on changing the world\n- Updates on Bitcoin price movements and technical analysis\n- How Bitcoin affects human behavior\n- Using Bitcoin for payments at local businesses\n- The importance of learning about Bitcoin and earning it through educational programs\n\nOverall, the sentiment towards Bitcoin seems positive, with discussions ranging from its potential to revolutionize the financial system to practical use cases for everyday transactions. There is also a focus on education and increasing adoption of Bitcoin as a form of digital currency.', - data: [ - 11, 3, 5, 13, 50, 48, 26, 7, 3, 15, 7, 8, 7, 6, 10, 6, 7, 6, 8, 9, 11, 11, 11, 9, 5, 6, 4, - 8, 14, 4, 5, 9, 4, 11, 13, 6, 8, 15, 8, 13, 9, 19, 7, 13, 7, 11, 10, 11, 13, 5, 20, 7, 7, - 19, 15, - ], - }, - { - label: 'AI', - topics: 'ai,human,generative,sora,artificial', - description: - 'The key topics currently being discussed in the crypto industry on social media include AI coins, AI art, AI ethics, AI creativity, and the potential ROI of specific AI coins such as $RNDR and $PAAL. There is also mention of AI technology being used in various industries such as preventing rust on Tesla Cyber Trucks and enhancing movie streaming hubs. Additionally, there is discussion about the potential dystopian implications of AI technology combined with mobile phone location data. Overall, the conversation around AI in the crypto industry seems to be focused on its investment potential, artistic applications, ethical considerations, and technological advancements.', - data: [ - 27, 49, 10, 4, 0, 0, 1, 5, 3, 5, 6, 4, 9, 5, 10, 4, 12, 8, 2, 1, 13, 2, 6, 2, 4, 9, 13, 6, - 8, 2, 5, 1, 9, 4, 7, 8, 4, 9, 5, 6, 7, 9, 5, 0, 8, 1, 10, 6, 11, 7, 3, 3, 4, 6, 8, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,dog,elon,moon', - description: - 'The key topics currently being discussed in the crypto industry on social media accounts include:\n- #doge season\n- Dogecoin ($DOGE)\n- Ability to tip content creators with $DOGE\n- Price movements of Dogecoin\n- Potential tattoo bet on $DUKO hitting 10m\n- Dogefam\n- Dogeusdt pumping\n- Dogecoin hitting its highest point since November 2022\n- Dogecoin ranking in the crypto market\n- Memecoins\n\nOverall, the sentiment seems to be positive with excitement around the price movements of Dogecoin and potential opportunities for growth in the market.', - data: [ - 2, 2, 3, 2, 2, 1, 1, 4, 4, 3, 4, 2, 2, 4, 75, 88, 2, 3, 4, 3, 2, 11, 1, 4, 1, 2, 2, 3, 8, 3, - 4, 5, 6, 7, 1, 3, 3, 6, 8, 6, 3, 4, 6, 8, 3, 5, 8, 4, 9, 2, 1, 2, 7, 3, 4, - ], - }, - { - label: 'Ethereum Denver', - topics: 'denver,ethereumdenver,ethdenver,excited,event', - description: - 'The key topics currently being discussed on Twitter in the crypto industry include:\n1. Excitement for the upcoming ETH Denver event and the potential impact on the community.\n2. Discussions about new contract standards like ERC-404s and their role in driving the ecosystem forward.\n3. Events and meetups related to Bitcoin and other cryptocurrencies.\n4. Updates on projects and insights from BUIDLWeek.\n5. Information about upcoming summits and interviews with industry leaders.\n6. Announcements of events and talks by industry experts.\n7. Online hackathons and competitions for developers.\n8. Experiences and events within virtual worlds like The Sandbox.\n9. Game nights and onchain games with prizes.\n10. Reminders for upcoming events and shows related to crypto projects like GroveX and GroveKeeper.', - data: [ - 7, 1, 9, 1, 0, 0, 3, 2, 4, 3, 8, 5, 2, 3, 3, 3, 9, 32, 2, 9, 4, 6, 3, 13, 15, 0, 10, 22, 1, - 3, 19, 4, 9, 4, 4, 9, 2, 7, 4, 16, 8, 5, 3, 6, 10, 7, 6, 3, 7, 12, 7, 2, 8, 10, 7, - ], - }, - { - label: 'Ethereum Price', - topics: 'eth,ethereum,3500,3k,3000', - description: - "The key topics discussed in the provided messages from Twitter about the crypto industry, specifically focusing on Ethereum ($ETH), include:\n1. Ethereum's price surge, surpassing $3,000 and reaching milestones like $10,000, $20,000, and $100,000.\n2. Speculation and analysis on potential price movements, with mentions of clearing $2,960 and reaching 200% from the lows.\n3. Discussion on Ethereum's performance compared to other altcoins and its potential to lead the market.\n4. References to Ethereum Maximalists and their reactions to price movements.\n5. Updates on Ethereum futures open interest nearing an all-time high.\n6. Mention of liquidated short and long positions in Ethereum trading.\n7. Humorous comments and memes related to Ethereum price movements and trading strategies.\n8. General sentiment of optimism and excitement surrounding Ethereum's price action and market performance.", - data: [ - 5, 2, 5, 3, 1, 0, 2, 6, 2, 3, 7, 4, 8, 7, 3, 6, 63, 15, 7, 9, 4, 7, 1, 5, 11, 4, 4, 7, 3, - 10, 10, 2, 0, 4, 7, 1, 4, 5, 3, 9, 2, 3, 7, 5, 5, 5, 2, 7, 2, 2, 5, 5, 3, 7, 3, - ], - }, - { - label: 'PEPE', - topics: 'pepe,memecoin,meme,coin,rare', - description: - 'The key topics currently discussed in the crypto community on Twitter include the rise of $PEPE to new all-time highs, breaking a $700 million market cap, and entering price discovery. There is speculation on which coin will boom next, with mentions of $SHIB, $FROG, $MINU, and $WIF. Some users believe that $PEPE and $WIF have superior "memetics" and will be the winners in the meme coin market. Additionally, there is excitement about the potential for $PEPE to lead to bullish outcomes for other coins like $PORK. Overall, there is a mix of optimism and enthusiasm for various meme coins and their potential for significant gains in the current bull run.', - data: [ - 1, 2, 3, 5, 1, 0, 1, 1, 6, 2, 6, 1, 0, 4, 2, 2, 1, 4, 8, 7, 1, 2, 2, 8, 9, 4, 2, 4, 6, 3, 5, - 2, 12, 1, 2, 5, 74, 5, 3, 2, 4, 5, 1, 3, 8, 1, 3, 9, 4, 3, 2, 2, 5, 4, 5, - ], - }, - { - label: 'Art', - topics: 'art,cryptopunks,artist,artists,collectors', - description: - 'The messages from twitter are discussing various topics related to the crypto industry and digital art. Some key points mentioned include the rise of Cryptopunks as valuable digital art, the excitement of watching ETH rise in value, the affordability of grails digital art before the next crypto bull market, the importance of collecting historical and iconic grails in the art world, the use of AI in creating art, and the unique strategies used by artists to sell their work. Overall, the messages highlight the growing interest and investment in digital art within the crypto community.', - data: [ - 4, 6, 42, 6, 0, 0, 1, 0, 9, 9, 12, 7, 12, 6, 3, 5, 1, 6, 3, 2, 2, 3, 16, 2, 4, 0, 4, 4, 2, - 2, 9, 8, 3, 4, 4, 3, 5, 1, 3, 5, 2, 2, 3, 4, 4, 3, 4, 1, 2, 4, 2, 1, 2, 1, 5, - ], - }, - { - label: 'Solana', - topics: 'sol,solana,sales,rwa,fdv', - description: - "The key topics discussed in the messages from twitter are:\n1. Solana's recent surge in price and partnerships, particularly with Filecoin\n2. Comparison between altcoins on Ethereum and Solana\n3. Potential price targets for Solana and Filecoin\n4. Analysts' opinions on investing in Solana during the current market rally\n5. Speculation on the performance of Solana compared to Ethereum and Bitcoin\n6. Discussion on investing in SONA at a dip for potential gains\n7. Mention of a new Solana bounty on Bountycaster\n8. Mention of ALGT as a potential investment opportunity\n9. Mention of RBLZ token and its market value\n10. Mention of Queeny artwork on SuperRare platform.", - data: [ - 4, 8, 3, 7, 1, 0, 6, 3, 5, 5, 4, 2, 3, 4, 4, 6, 5, 6, 5, 1, 8, 5, 2, 4, 5, 5, 6, 1, 2, 3, 2, - 4, 2, 4, 6, 4, 4, 4, 3, 4, 3, 9, 3, 5, 28, 6, 10, 4, 3, 2, 1, 7, 1, 3, 2, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,web3,gamefi', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include:\n- Web3 gaming and its potential for growth\n- Partnerships and collaborations within the gaming industry\n- Updates and advancements in gaming technology\n- The future of entertainment in Web3\n- Valuation of Web3 game pixels\n- Investing time in gaming for meaningful returns\n\nOverall, the messages highlight the excitement and optimism surrounding the intersection of gaming and blockchain technology in the crypto industry.', - data: [ - 1, 2, 3, 6, 2, 0, 2, 5, 2, 1, 5, 6, 7, 2, 2, 3, 8, 1, 4, 2, 36, 3, 6, 3, 2, 6, 2, 7, 9, 0, - 1, 3, 5, 0, 3, 3, 0, 9, 1, 3, 3, 3, 2, 4, 3, 2, 3, 8, 1, 5, 3, 0, 5, 6, 1, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memecoins,memes,bonk', - description: - 'The current discussion on social media accounts and communities in the crypto industry revolves around memecoins and meme-related investments. There is excitement about the potential for a memecoin season, with mentions of popular memecoins like $DOGE, $SHIB, and $BONK hitting new highs. Investors are also looking for the next 100x gem in the meme market, with mentions of coins like $bendog, $daumen, $trump, and $pepe. Additionally, there is a focus on meme competitions and the profitability of memecoins like $WOJAK, which has seen a significant increase in profitability. Overall, the meme market is heating up again, with new contenders like $TMEME entering the scene.', - data: [ - 1, 6, 4, 9, 0, 2, 5, 1, 5, 3, 4, 1, 3, 0, 0, 0, 2, 0, 4, 0, 3, 1, 7, 1, 2, 1, 1, 5, 2, 4, 2, - 0, 61, 2, 4, 0, 2, 0, 2, 3, 3, 4, 2, 2, 3, 5, 2, 2, 4, 2, 5, 2, 3, 4, 1, - ], - }, - { - label: 'NFTs', - topics: 'nft,nfts,collection,crew,exclusive', - description: - 'The key topics currently discussed in the crypto industry on social media platforms such as Twitter include:\n1. NFTs: There is a lot of excitement and discussion around NFTs, with mentions of buying valuable NFTs, the invention of blockchain for NFTs, and questions about the first Bitcoin NFT. There is also mention of NFT tattoos and the comparison between past and current cycles.\n2. Metadata for file uploads: Users are looking for more information on metadata for file uploads, specifically related to file size of uploaded media before uploading to the server.\n3. Revenue streams and royalties: There is a discussion about revenue streams for NFTs, with mention of penguins figuring out a revenue stream without relying on royalties, and other NFTs scrambling to enforce royalties.\n4. NFT-Fi: There are concerns about NFT-Fi being labeled as the biggest ponzi scheme of the century, with questions about where the yield comes from and the high APY with farming loops.\n5. Token standards for NFTs: There is mention of the token standard for NFTs on the Ethereum blockchain, enabling unique digital assets in art, gaming, and more.\n6. NFT projects and presales: Users are seeking early feedback on NFT projects they are working on, as well as suggestions for NFT purchases, such as $SEI NFT.\n7. NFT giveaways: There is news about Robinhood launching an NFT giveaway with a digital art NFT platform, granting users access to exclusive digital sketches from a renowned artist.\n8. ERC-404 NFT collection: The launch of the Capybara Crew, the first-ever ERC-404 NFT collection on the People’s Launchpad by Particle Network, is highlighted as a standout opportunity due to strategic partnerships and a strong community.', - data: [ - 4, 4, 1, 5, 0, 1, 0, 0, 5, 9, 5, 6, 4, 4, 4, 2, 0, 3, 3, 5, 4, 3, 4, 4, 4, 4, 5, 3, 8, 2, 4, - 5, 2, 5, 17, 3, 4, 3, 5, 2, 2, 3, 2, 0, 2, 3, 2, 2, 1, 3, 1, 3, 6, 4, 2, - ], - }, - { - label: 'Shiba Inu', - topics: 'shiba,inu,shib,shibainu,whale', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Shiba Inu team alerting the community to rising scam threats\n2. Shiba Inu achieving a new milestone with SHEboshi selling out instantly\n3. Speculation on whether Shiba Inu price will sustain above $0.00001 by the end of February\n4. Crypto traders swapping Shiba Inu for Mollars presale token\n5. Shiba Inu payments being accepted by over 1,200 merchants in 25 countries\n6. Analysis of Bitcoin's potential peak, Shiba Inu's leap, and Dogecoin's expansion\n7. On-chain metrics turning bearish for Shiba Inu and Dogecoin\n8. Projected timelines for Shiba Inu to surpass $0.0007 and $0.02\n9. Yuga Labs acquiring Moonbirds and potential future steps\n10. Significant surge in whale activity for Shiba Inu\n11. Massive sell-off of SHIB by a whale after 2.5 years\n12. ShibaFork token soaring 56,986% and gaining attention\n13. Shiba Inu experiencing a 28% surge in 24 hours and 45% jump over the week\n14. Announcement of a giveaway of 2000 AI SHIBA (AISHIBA) on LATOKEN with distribution date on March 6, 2024.", - data: [ - 2, 4, 3, 3, 0, 1, 3, 0, 3, 1, 2, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 0, 1, 1, 3, 1, 41, 2, 7, 0, - 0, 1, 1, 3, 4, 0, 0, 1, 4, 2, 0, 4, 4, 30, 1, 0, 3, 4, 1, 1, 2, 1, 1, 3, 1, - ], - }, - { - label: 'Coinbase crash', - topics: 'coinbase,crashed,crash,traffic,exchanges', - description: - "The key topics currently being discussed on social media regarding the crypto industry are the recent outage of Coinbase, the impact on Bitcoin market cap, the potential manipulation of prices, concerns about Coinbase's reliability and security measures, and the importance of providing a smooth and reliable experience for all clients. Users are also discussing the implications of Coinbase going offline multiple times, the CEO admitting to being too cheap, and the potential for market manipulation during flash crashes. Additionally, there are mentions of other exchanges performing better than Coinbase during similar market conditions. Overall, the sentiment seems to be a mix of frustration, skepticism, and calls for improvement in the crypto exchange industry.", - data: [ - 1, 2, 2, 3, 1, 1, 2, 6, 4, 5, 36, 3, 16, 1, 1, 1, 1, 0, 0, 1, 6, 10, 1, 1, 2, 2, 0, 1, 2, 0, - 2, 1, 2, 1, 1, 5, 2, 1, 1, 0, 3, 4, 3, 3, 1, 0, 6, 1, 6, 1, 3, 1, 3, 1, 2, - ], - }, - { - label: 'Ripple', - topics: 'xrp,ripple,sec,cryptocurrency,altcoins', - description: - "Based on the messages from Twitter, key topics currently discussed in the crypto industry include:\n1. Collaboration between The Federal Reserve, Saudi Arabia Monetary Authority, and Ripple for domestic payments.\n2. Performance anxiety and speculation surrounding XRP.\n3. XRP hitting the Swedish Stock Exchange and ETP trading now live.\n4. New proposal for Smart AMMs to reroute XRP liquidity.\n5. Speculation on which cryptocurrency (XRP, Cardano, or ScapesMania) will hit $10 first.\n6. Analysis of XRP whales' market dynamics and Ripple's role.\n7. OKX releasing its 16th Proof of Reserves report.\n8. Ripple's ex-director denying XRP ETF speculation.\n9. Speculation on XRP liquidity events.\n10. Potential breakout of the 6-year trendline for XRP on the Non-Log Scale.", - data: [ - 3, 4, 1, 3, 1, 1, 0, 1, 0, 2, 3, 0, 5, 0, 4, 3, 1, 6, 1, 1, 0, 1, 1, 1, 4, 2, 3, 5, 5, 2, 0, - 3, 1, 3, 4, 8, 1, 2, 9, 2, 1, 11, 3, 2, 3, 2, 2, 4, 1, 3, 2, 5, 1, 1, 1, - ], - }, - { - label: 'BTC Halving', - topics: 'halving,days,countdown,bitcoinhalving,bitcoinatlantis', - description: - 'The key topic currently being discussed on Twitter is the upcoming Bitcoin halving event. Users are excited about the countdown to the halving, with only a few days left until the event. There are predictions about the price of Bitcoin after the halving, with some users believing that the price will increase. Additionally, there is discussion about the impact of the halving on Bitcoin miners and the scarcity of Bitcoin in the future. Overall, the sentiment around the Bitcoin halving event seems positive, with users eagerly anticipating the event and its potential effects on the market.', - data: [ - 3, 0, 2, 2, 17, 3, 5, 0, 0, 0, 1, 0, 16, 47, 0, 1, 1, 0, 1, 1, 0, 3, 1, 7, 0, 0, 0, 0, 0, 1, - 0, 0, 2, 1, 0, 2, 0, 1, 3, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 3, 0, 1, 1, 3, 2, - ], - }, - { - label: 'Airdrops', - topics: 'airdrop,farming,referral,code,airdrops', - description: - 'The key topic discussed in the Twitter messages is airdrop farming in the crypto industry. Users are sharing referral codes, links, and information about various airdrops on platforms like Blast_L2, Blur_io, DegamexCom, and more. They are encouraging others to participate in airdrops to earn tokens and rewards. Additionally, there is mention of upcoming airdrops, new projects like BillionAir, and opportunities to earn tokens through different platforms and apps. Overall, the focus is on maximizing gains through airdrop farming in the current market conditions.', - data: [ - 1, 14, 3, 3, 0, 0, 3, 1, 4, 1, 5, 2, 3, 0, 1, 2, 1, 1, 13, 3, 1, 1, 1, 0, 1, 3, 8, 0, 0, 5, - 1, 1, 2, 3, 1, 2, 2, 4, 0, 1, 1, 2, 2, 1, 2, 7, 2, 4, 1, 0, 0, 1, 1, 3, 1, - ], - }, - { - label: 'Uniswap', - topics: 'uni,uniswap,proposal,governance,switch', - description: - "The key topics currently being discussed on Twitter in relation to the crypto industry, specifically Uniswap (#UNI), include:\n- Uniswap's recent gains of over 40% in 7 days amid airdrop plans\n- The proposal to reward token holders in a major governance overhaul, leading to a 60% jump in UNI\n- Uncertainty surrounding Uniswap Foundation's upgrade proposal\n- The upcoming Snapshot vote for new proposals on March 1, 2024, allowing protocol fees to be distributed to UNI token holders\n- The launch of Uniswap V3, bringing a game-changing upgrade with new trading pairs\n- Uniswap's increased revenue surpassing Bitcoin's, positioning it as a top cryptocurrency\n- Alpaca Finance's newsletter highlighting the surge in UNI token price due to Uniswap governance proposal\n\nOverall, the discussions on Twitter indicate a lot of excitement and anticipation surrounding Uniswap's developments and potential future growth in the crypto industry.", - data: [ - 1, 1, 1, 0, 0, 0, 1, 2, 0, 0, 2, 0, 3, 1, 1, 2, 0, 2, 0, 1, 1, 4, 0, 2, 1, 1, 2, 2, 0, 0, 2, - 3, 1, 1, 4, 2, 1, 2, 6, 1, 2, 2, 2, 0, 2, 0, 4, 1, 2, 2, 40, 2, 0, 2, 2, - ], - }, - { - label: 'Ordinals', - topics: 'ordinals,ordinal,nodemonkes,nfts,collections', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n- Ordinals protocol and its potential for growth and development\n- Comparison between Bitcoin (BTC) and Ethereum (ETH) NFTs\n- Predictions about the future of Ordinals and its potential to go parabolic\n- Diversification in crypto investments beyond sticking to one chain\n- The impact of retail investors seeking new outperformers in the crypto market\n- Comparison between Ethereum (ETH) and Solana (SOL) for investment opportunities\n- The importance of choosing the right projects with least friction paths and obvious mindshare narratives\n- The potential for multiple collections to have a 1 BTC floor in value\n- The unique features of art on-chain on the world's most valuable blockchain\n- The potential for Ordinals to replicate the success of ETH NFTs in 2021\n- The role of AI and CB (central banks) in shaping investment decisions in the crypto market.", - data: [ - 0, 0, 0, 1, 3, 5, 1, 2, 6, 3, 2, 1, 1, 0, 2, 0, 0, 0, 1, 2, 1, 2, 1, 0, 0, 5, 2, 1, 0, 1, 2, - 5, 1, 1, 4, 22, 6, 3, 3, 1, 2, 3, 0, 1, 0, 1, 4, 2, 1, 1, 1, 2, 4, 1, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-80.json b/priv/repo/major_topics_seed/data-80.json deleted file mode 100644 index f660e08cd7..0000000000 --- a/priv/repo/major_topics_seed/data-80.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["10.07.25","11.07.25","11.07.25","11.07.25","11.07.25","11.07.25","11.07.25","11.07.25","12.07.25","12.07.25","12.07.25","12.07.25","12.07.25","12.07.25","12.07.25","12.07.25","13.07.25","13.07.25","13.07.25","13.07.25","13.07.25","13.07.25","13.07.25","13.07.25","14.07.25","14.07.25","14.07.25","14.07.25","14.07.25","14.07.25","14.07.25","14.07.25","15.07.25","15.07.25","15.07.25","15.07.25","15.07.25","15.07.25","15.07.25","15.07.25","16.07.25","16.07.25","16.07.25","16.07.25","16.07.25","16.07.25","16.07.25","16.07.25","17.07.25","17.07.25","17.07.25","17.07.25","17.07.25","17.07.25","17.07.25"],"datasets":[{"label":"ETH price","topics":"ethereum,eth,4000,3000,3k","description":"The key topics currently being discussed on Twitter regarding Ethereum include:\n- Ethereum breaking above $3,300\n- Ethereum erasing six months of pain in a matter of weeks and surpassing $3,250\n- Ethereum being referred to as the Silicon Valley of the internet\n- Ethereum and Ethereum-based projects being the focus of the current cycle\n- Bullish sentiment towards Ethereum and Ethereum-based projects\n- Ethereum paving the way for other projects and users to enter the crypto world\n- Ethereum's price action and potential for a bull season\n- Virtuals_io being mentioned as a promising project related to Ethereum\n- Technical analysis and price predictions for Ethereum\n- ETF fund inflows and tokenization narrative supporting Ethereum's price increase\n\nOverall, the sentiment towards Ethereum on Twitter seems to be overwhelmingly positive, with many users expressing bullishness and optimism about its future prospects.","data":[13,7,26,21,6,1,21,16,11,15,16,18,9,10,10,23,204,72,44,17,17,28,8,29,35,9,18,14,18,30,17,7,21,6,17,12,13,25,13,25,21,25,15,17,18,16,19,16,34,12,11,15,11,17,13]},{"label":"Importance of Bitcoin","topics":"bitcoin,fiat,money,understand,dont","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin as a long-term investment strategy\n2. The importance of fully committing to Bitcoin\n3. The use of cold storage for Bitcoin assets\n4. The privacy benefits of using Monero (XMR) over traditional bank accounts\n5. The value of Ethereum beyond just transaction fees\n6. The potential for financial freedom and breaking free from traditional financial systems through Bitcoin\n7. The transformative power of the Information Age and digital transactions facilitated by Bitcoin.","data":[14,1,20,18,85,69,3,5,25,17,10,24,7,11,21,8,2,18,19,20,19,15,18,11,9,16,10,18,24,20,11,7,20,5,12,20,26,15,7,17,17,22,35,15,14,15,15,16,24,9,11,14,12,18,15]},{"label":"Gaming","topics":"game,gaming,games,play,players","description":"The key topics discussed in the messages from twitter include:\n1. Fever game tickets\n2. Chelsea underdog status\n3. Caitlin Clark's aura\n4. PSG and Chelsea FCWC match\n5. Gaming industry updates\n6. CEO of Animoca Brands\n7. Star Atlas arena shooter update\n8. Gaming tokens and oracles\n9. Hytopia game\n10. Quark engineers building a multiplayer game\n11. College football game on Twitch\n12. Building a game on monad\n13. Not Pixel Skins and unique items.","data":[7,8,7,15,0,1,7,6,4,12,12,6,12,9,8,8,4,6,17,10,67,8,7,8,4,8,17,8,19,13,13,7,11,8,7,15,44,5,4,9,10,9,7,7,9,7,17,20,19,6,4,5,10,12,5]},{"label":"AI","topics":"ai,agents,agent,jobs,models","description":"Based on the messages from twitter, the key topics being discussed in the crypto industry include:\n1. The advancement of AI technology and its potential impact on various aspects of society, such as traffic optimization and personalized AI companions.\n2. The integration of AI with blockchain technology for value creation and smart contract execution.\n3. The use of AI in various industries, such as travel (e.g. airline pricing negotiation) and car rental (e.g. damage detection).\n4. The development of AI systems like AI agents and DAOs (Decentralized Autonomous Organizations) for autonomous decision-making and data management.\n5. Discussions on the future of jobs and the economy in the age of AI, as well as the potential implications of AI consciousness.\n6. The importance of AI in the crypto industry for tasks like generating insights, running models, and predicting outcomes on-chain.\n7. The potential risks and benefits of AI technology, including the need for human oversight and the limitations of creating consciousness in AI.","data":[24,56,7,9,0,1,2,2,5,7,8,10,12,10,8,10,9,13,7,14,16,7,13,6,12,11,5,13,12,13,8,8,8,13,5,9,8,13,3,7,11,9,9,6,19,15,9,11,19,11,14,8,8,14,8]},{"label":"US crypto legislation","topics":"act,house,genius,clarity,bills","description":"The key topics currently being discussed on Twitter in the crypto industry include the passing of the Stablecoin GENIUS Act in the US House, the potential impact of the law on crypto regulation in the US, the advancement of other major crypto legislation in Congress, such as the CLARITY Act, and the potential implications of the FedNow rollout on surveillance data. Additionally, there is discussion about France proposing a Bitcoin mining pilot using surplus nuclear energy, as well as various developments in the crypto market such as BlackRock filing ETH staking ETFs and the decreasing ETH supply. Overall, there is a sense of excitement and anticipation for the future of crypto in the US and globally.","data":[8,2,6,13,9,2,75,27,4,9,14,11,45,3,2,3,5,2,3,8,12,7,2,7,24,5,3,9,5,6,12,8,4,8,13,23,3,7,7,2,11,12,8,6,2,12,1,2,4,8,12,21,44,7,5]},{"label":"Pump.fun ICO","topics":"pump,ico,pumpfun,sale,token","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding the launch and trading of the cryptocurrency $PUMP. The messages mention the recent launch of $PUMP on various exchanges such as Coinbase, MEXC Launchpad, and Gate.io. There is also talk about the liquidity of $PUMP and the potential impact on its price if airdropped to users.\n\nFurthermore, comparisons are made between $PUMP and other cryptocurrencies like $HYPE and Bonk, with differing opinions on their potential for growth and revenue generation. The messages also highlight the launch of the PUMP perpetual futures market and the ability for users to trade with leverage using $PUMP as margin.\n\nOverall, the sentiment in the messages seems to be positive towards $PUMP, with excitement about its listing on different exchanges and the potential for growth in the future. It is clear that $PUMP is generating a lot of interest and activity within the crypto community.","data":[14,6,2,4,0,5,3,2,3,5,6,6,1,5,3,5,0,11,10,8,6,5,10,5,10,3,3,10,7,4,3,3,7,16,9,6,8,6,155,9,2,3,7,4,8,4,5,8,15,9,3,5,3,4,10]},{"label":"Art and NFTs","topics":"art,artist,artists,collection,piece","description":"The key topics discussed in the messages from twitter about the crypto industry and art include:\n- NFT art and artists submitting their work\n- The use of AI tools in creating art\n- Showcasing and attending art exhibitions\n- The impact of music on visual storytelling\n- Historical and personal aspects of digital art\n- Creating and sharing NFT artwork\n- Art as a forever journey with different stories to tell\n- Critiques on disconnected perspectives in art discussions\n- The value of not selling art cheaply just to be 'sold out'\n- The importance of imagination in creating NFT art\n- Art contests and collaborations in the crypto industry.","data":[4,5,77,7,2,2,2,1,5,5,21,5,7,10,7,12,5,11,6,8,4,3,7,1,4,8,4,2,9,4,12,11,7,12,3,6,11,7,12,5,8,5,10,2,5,4,5,8,10,1,5,6,11,5,12]},{"label":"SOL ETF","topics":"solana,sol,staking,ethereum,eth","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the dominance of Solana in blockchain transactions, the pumping of Bitcoin, Ethereum, and Solana, the anticipation of spot Solana ETF approvals, the attention drawn to the Ethereum PayFi project Remittix with 100x potential, the fall of Solana despite DeFi Development Corp's $5 billion treasury plan, the performance of Solana Call Options on Paradex, the consolidation pattern of Solana and its potential for upward movement, the SEC's review of Fidelity's Solana ETF, and the breakout of Solana from a Channel Down pattern. Traders and investors are closely monitoring these developments and discussing their implications for the crypto market.","data":[7,4,5,7,0,2,9,12,7,9,7,7,10,7,8,13,10,5,9,7,8,5,10,4,4,2,9,6,5,10,5,3,5,7,7,5,6,10,4,9,5,8,1,7,31,9,3,4,7,5,2,4,6,4,2]},{"label":"XRP","topics":"xrp,ripple,etf,sec,breakout","description":"The key topics currently being discussed in the crypto industry on Twitter include XRP's potential for a massive price increase, the launch of a ProShares XRP Futures ETF, the integration of USDC on the XRP Ledger, the growth of XRP 2.0 and its potential as the fastest horse in the crypto space, analysts predicting a breakout cycle for XRP, the surge in XRP price and its addition to Donald Trump's Truth Social Crypto Blue Chip ETF, and technical analysis indicators such as MACD crosses and Edo Farina signals for XRP price movements. Additionally, there is excitement about XRP consolidating and potentially forming a bull flag pattern before pushing higher, with implied price targets around $3.60-$3.70. The Korean market is also showing strong interest in XRP, with high volume and transaction value driving momentum for the cryptocurrency.","data":[8,4,7,4,0,3,2,3,2,7,7,6,5,6,3,3,7,12,3,6,8,5,3,5,8,0,4,7,5,4,6,7,1,1,3,2,3,17,6,5,6,15,5,8,10,6,13,10,2,7,1,7,9,6,4]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coins","description":"The messages from Twitter suggest that meme coins are a popular topic of discussion within the crypto industry. Some users are excited about investing in meme tokens and are looking for advice on which ones to choose. There is also mention of institutions moving into the meme economy, indicating a growing interest in this sector. Additionally, there is a debate about the safety and value of meme coins compared to other cryptocurrencies. Overall, meme coins seem to be a hot topic with potential for high returns but also come with risks.","data":[3,3,3,4,1,1,0,3,3,4,8,7,1,3,1,4,0,3,1,0,3,4,2,4,2,4,5,4,3,7,4,69,3,8,5,4,6,4,8,7,2,3,8,3,3,2,3,1,13,9,4,5,3,4,1]},{"label":"FOMC","topics":"inflation,cpi,june,fed,27","description":"The key topic discussed in the messages from twitter is inflation. The messages cover a range of perspectives on inflation, including its impact on various economies, the potential for rate cuts by central banks, and the implications for wage hikes. There is also mention of alternative metrics for measuring inflation and the uncertainty surrounding Fed rate cuts. Overall, the messages highlight the importance of inflation in the current economic landscape and its potential effects on various financial markets.","data":[3,2,4,5,0,0,17,2,0,4,3,5,3,5,2,14,2,5,3,3,3,4,3,6,4,56,3,3,5,0,7,5,5,2,3,1,3,8,2,5,5,5,2,2,4,3,2,9,3,4,4,8,2,4,4]},{"label":"ETFs","topics":"etfs,inflows,inflow,net,spot","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Record-breaking inflows in Bitcoin and Ethereum ETFs\n- BlackRock's significant investments in Ethereum\n- Surging interest in Ethereum among retail traders\n- Total assets under management reaching new highs\n- Solana + Staking ETF (SSK) launch success\n- Demand outpacing new coin issuance\n- Smart money loading up on Ethereum\n- Altcoins rallying alongside Ethereum\n- Massive daily inflows in Ethereum ETFs\n- Bitcoin and Ethereum ETFs seeing second-biggest day of inflows ever\n- Continued investor interest in Ethereum ETFs\n- Validation for Ethereum OGs\n- Potential signals for retail traders\n\nOverall, the sentiment appears to be bullish towards Ethereum, with significant investments and positive investor interest driving the market.","data":[2,0,2,4,10,2,5,7,11,0,3,2,5,5,3,1,48,5,3,8,0,1,0,2,5,15,2,7,1,0,3,6,4,12,2,2,0,4,0,1,7,0,13,0,1,30,3,1,1,4,2,2,1,3,6]},{"label":"Dogecoin","topics":"doge,dogecoin,resistance,moon,breakout","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin (DOGE) price movements and potential targets\n- Speculation on Dogecoin's future performance and its comparison to Bitcoin\n- The influence of TikTok and retail investors on the crypto market\n- Predictions for XRP and Ethereum price rallies\n- Interest in Dogecoin derivatives and options trading\n- Technical analysis and price targets for Dogecoin\n- Discussion of NFTs and their connection to cryptocurrencies\n- General market sentiment and trends in the crypto industry\n\nOverall, the sentiment towards Dogecoin appears positive, with many users expressing optimism about its potential for growth and success in the future.","data":[4,1,7,2,1,0,2,1,2,2,6,4,3,3,117,3,0,4,7,3,0,2,2,2,3,3,3,3,3,2,7,2,1,2,2,3,1,4,1,2,4,5,2,5,1,3,2,2,3,2,3,1,5,5,1]},{"label":"PENGU","topics":"pengu,pudgy,penguins,altcoins,altseason","description":"Based on the messages from Twitter, it seems that the key topic being discussed is the cryptocurrency $PENGU. The community is excited about the recent pump in the price of $PENGU and there is speculation about its potential for further growth. The community is also discussing partnerships, collaborations, and the overall potential of $PENGU as a breakout coin in the current crypto cycle. There is also mention of the company @pudgypenguins launching a game on Apple and Google stores, as well as the strong social media presence and efforts of the Pudgy Penguins team. Overall, the sentiment towards $PENGU seems positive and there is excitement about its future prospects.","data":[0,3,2,1,0,0,2,0,8,3,4,3,4,3,0,1,1,3,2,1,3,3,1,2,2,0,1,3,3,7,2,1,3,4,5,94,4,1,26,2,2,2,5,1,4,3,4,2,3,6,1,2,0,3,2]},{"label":"Yapping","topics":"kaito,yapping,points,yap,yappers","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Projects on Kaito leaderboard: There is a discussion about which project to focus on to top the leaderboard on Kaito. Some projects mentioned include @boundless_xyz, @EspressoSys, and @Infinit_Labs.\n\n2. Virtuals points and rewards: Users are sharing their experiences with earning and losing virtual points, as well as claiming rewards on platforms like @virtuals_io.\n\n3. Somnia Network and SomniYaps: There is a mention of Somnia Network and the introduction of SomniYaps as new social rewards for community members who participate in yapping activities.\n\n4. Union Build funding: There is buzz about @union_build raising $69M in funding, with speculation about the impact on the project and the community.\n\n5. Vader AI updates: Changes in the Vader AI platform, such as stake percentages and airdrops for yappers, are being discussed.\n\n6. YEET airdrop: @yeet giving 2% of the $YEET airdrop to the community, along with information about on-chain games and a poker freeroll event.\n\n7. Web3 journey: Users are encouraging each other to support and grow together on their Web3 journey, mentioning projects like @vooi_io, @recallnet, @OpenledgerHQ, @JoinSapien, and @tenprotocol.\n\nOverall, the discussions on social media platforms reflect a mix of project updates, community engagement, rewards, and funding news within the crypto industry.","data":[5,4,0,4,0,0,1,1,3,1,4,7,5,7,3,7,0,2,9,4,1,3,5,4,3,4,4,5,4,4,4,2,5,4,2,1,7,3,2,7,6,4,4,3,7,8,4,6,4,5,0,14,11,3,20]},{"label":"Stablecoins","topics":"stablecoin,stablecoins,circle,bank,usdc","description":"The key topic discussed in the messages from twitter is the growing adoption and development of stablecoins within the crypto industry. Major institutions such as OKX, Bank of America, JPMorgan, and Circle are all making moves to enter the stablecoin space or further develop existing stablecoin technologies. The integration of stablecoins like USDG by OKX and the potential for stablecoins to shape the future of global payments are highlighted in the messages. Additionally, the potential for stablecoins to revolutionize traditional banking systems and facilitate global money transfers as easily as sending a WhatsApp message is emphasized. The messages also touch on the dominance of Ethereum as a hub for stablecoins and the forecasted growth of the stablecoin market. Overall, stablecoins are portrayed as a key innovation in the fintech and crypto space with significant implications for the future of global finance.","data":[5,3,3,7,0,0,4,1,1,0,12,8,1,1,2,4,1,2,4,3,1,0,2,3,5,9,9,8,2,3,5,2,2,3,1,2,3,2,2,1,1,6,1,7,6,48,2,0,4,11,0,7,6,2,0]},{"label":"BTC ATH ","topics":"ath,aths,new,hit,btc","description":"The key topic currently discussed on Twitter is the all-time high (ATH) of Bitcoin. Users are excited about Bitcoin hitting new ATHs every day, with prices reaching above $122K and even $125,856.4. There is a sense of anticipation for Bitcoin to continue breaking new ATHs, with mentions of previous ATHs and closing prices being surpassed. Additionally, there is discussion about major products being launched by Binance and Ripple, as well as regulatory developments in countries like Pakistan. Overall, the sentiment is bullish towards Bitcoin and the crypto market, with users celebrating the new ATHs and looking forward to potential future gains.","data":[2,2,12,0,21,12,6,4,0,0,3,4,2,9,3,1,0,0,4,2,0,5,1,12,28,1,1,1,2,6,2,0,4,18,5,1,5,2,0,3,3,1,0,4,8,2,2,0,4,2,1,7,2,2,3]},{"label":"Altseason","topics":"dominance,season,altseason,alts,altcoin","description":"Based on the messages from Twitter, it is evident that there is a lot of discussion about the upcoming altseason in the crypto industry. Key points mentioned include:\n\n- Ethereum (ETH) is outperforming Bitcoin (BTC) and there is anticipation for an altseason to begin.\n- Prices of ETH, Solana (SOL), and Binance Coin (BNB) have risen significantly compared to BTC.\n- Fold CEO warns that altcoins remain speculative and Bitcoin's market dominance may not be reversed.\n- The Altcoin Season Index is still under 40, indicating that the altcoin season has not fully started yet.\n- There is a focus on Bitcoin dominance and Ethereum dominance as indicators for altseason.\n- There is anticipation for a potential bullish divergence on altcoins and a real run to start in Q4.\n- There is a warning against loading up on low-quality altcoins and a reminder to be patient for the real altseason.\n- There is speculation about the start of a new altseason based on BTC dominance trends.\n- There is a comparison of the current situation to previous altseasons and anticipation for a massive rally.\n- There is a call to pay close attention to BTC dominance as it may signal the start of the altseason.\n- There is a comparison between AVAX and SOL, as well as the launch of $PUMP, in relation to the altseason.\n\nOverall, the sentiment on Twitter seems to be optimistic about the potential for an altseason to begin, but there is also caution and a reminder to be patient and avoid investing in low-quality altcoins.","data":[0,53,1,5,7,2,2,1,2,0,0,3,2,0,8,24,2,3,5,4,2,1,4,3,2,2,2,1,0,1,2,3,7,1,1,2,1,4,1,2,0,1,25,4,1,2,1,2,3,2,1,2,2,1,0]},{"label":"ETH treasury strategies","topics":"sharplink,gaming,foundation,eth,sbet","description":"Based on the messages from Twitter, it is evident that SharpLink Gaming has been making significant purchases of Ethereum (ETH) in large quantities. They have acquired millions of dollars worth of ETH from various sources such as the Ethereum Foundation and Coinbase Prime. This has led to SharpLink Gaming becoming one of the largest holders of ETH, even surpassing the Ethereum Foundation in terms of total holdings. Their goal seems to be focused on boosting DeFi income through staking and transparency. Additionally, they have been consistently accumulating ETH since June, using a micro-strategy-style approach. Overall, SharpLink Gaming's impact on the total ETH staked and their position as a major player in the crypto industry is noteworthy and worth monitoring.","data":[13,1,2,3,0,0,1,22,10,0,3,2,0,0,1,1,3,1,1,3,7,0,0,1,4,3,3,4,4,2,1,0,0,2,3,3,0,0,5,5,0,0,2,57,0,2,0,0,0,2,0,5,0,0,0]},{"label":"BTC whale movements","topics":"whale,galaxy,whales,moved,og","description":"The key topic currently being discussed on Twitter in the crypto industry is the movement of Bitcoin whales. Specifically, there is a focus on an OG Bitcoin whale who holds 80,009 BTC (worth $9.46 billion) and has been transferring large amounts of BTC to Galaxy Digital, possibly to sell. The whale recently moved 40,192 BTC ($4.77 billion) to a new wallet, sparking speculation about their intentions. Additionally, there are discussions about Ethereum whales depositing large amounts of ETH to exchanges, signaling potential market movements. Some are questioning whether these whale movements are recycling Bitcoin for shares or if they indicate a potential sell-off. Overall, the activity of these large holders is closely monitored by the crypto community as it can have significant impacts on the market.","data":[3,3,0,1,5,12,5,5,1,2,0,2,2,2,3,8,7,8,0,2,2,2,0,1,1,1,1,7,0,1,0,3,8,5,2,2,3,3,0,2,1,0,6,2,0,0,1,0,0,2,2,5,1,18,6]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-80.ts b/priv/repo/major_topics_seed/data-80.ts deleted file mode 100644 index cf7774a47b..0000000000 --- a/priv/repo/major_topics_seed/data-80.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '10.07.25', - '11.07.25', - '11.07.25', - '11.07.25', - '11.07.25', - '11.07.25', - '11.07.25', - '11.07.25', - '12.07.25', - '12.07.25', - '12.07.25', - '12.07.25', - '12.07.25', - '12.07.25', - '12.07.25', - '12.07.25', - '13.07.25', - '13.07.25', - '13.07.25', - '13.07.25', - '13.07.25', - '13.07.25', - '13.07.25', - '13.07.25', - '14.07.25', - '14.07.25', - '14.07.25', - '14.07.25', - '14.07.25', - '14.07.25', - '14.07.25', - '14.07.25', - '15.07.25', - '15.07.25', - '15.07.25', - '15.07.25', - '15.07.25', - '15.07.25', - '15.07.25', - '15.07.25', - '16.07.25', - '16.07.25', - '16.07.25', - '16.07.25', - '16.07.25', - '16.07.25', - '16.07.25', - '16.07.25', - '17.07.25', - '17.07.25', - '17.07.25', - '17.07.25', - '17.07.25', - '17.07.25', - '17.07.25', - ], - datasets: [ - { - label: 'ETH price', - topics: 'ethereum,eth,4000,3000,3k', - description: - "The key topics currently being discussed on Twitter regarding Ethereum include:\n- Ethereum breaking above $3,300\n- Ethereum erasing six months of pain in a matter of weeks and surpassing $3,250\n- Ethereum being referred to as the Silicon Valley of the internet\n- Ethereum and Ethereum-based projects being the focus of the current cycle\n- Bullish sentiment towards Ethereum and Ethereum-based projects\n- Ethereum paving the way for other projects and users to enter the crypto world\n- Ethereum's price action and potential for a bull season\n- Virtuals_io being mentioned as a promising project related to Ethereum\n- Technical analysis and price predictions for Ethereum\n- ETF fund inflows and tokenization narrative supporting Ethereum's price increase\n\nOverall, the sentiment towards Ethereum on Twitter seems to be overwhelmingly positive, with many users expressing bullishness and optimism about its future prospects.", - data: [ - 13, 7, 26, 21, 6, 1, 21, 16, 11, 15, 16, 18, 9, 10, 10, 23, 204, 72, 44, 17, 17, 28, 8, 29, - 35, 9, 18, 14, 18, 30, 17, 7, 21, 6, 17, 12, 13, 25, 13, 25, 21, 25, 15, 17, 18, 16, 19, 16, - 34, 12, 11, 15, 11, 17, 13, - ], - }, - { - label: 'Importance of Bitcoin', - topics: 'bitcoin,fiat,money,understand,dont', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n1. Bitcoin as a long-term investment strategy\n2. The importance of fully committing to Bitcoin\n3. The use of cold storage for Bitcoin assets\n4. The privacy benefits of using Monero (XMR) over traditional bank accounts\n5. The value of Ethereum beyond just transaction fees\n6. The potential for financial freedom and breaking free from traditional financial systems through Bitcoin\n7. The transformative power of the Information Age and digital transactions facilitated by Bitcoin.', - data: [ - 14, 1, 20, 18, 85, 69, 3, 5, 25, 17, 10, 24, 7, 11, 21, 8, 2, 18, 19, 20, 19, 15, 18, 11, 9, - 16, 10, 18, 24, 20, 11, 7, 20, 5, 12, 20, 26, 15, 7, 17, 17, 22, 35, 15, 14, 15, 15, 16, 24, - 9, 11, 14, 12, 18, 15, - ], - }, - { - label: 'Gaming', - topics: 'game,gaming,games,play,players', - description: - "The key topics discussed in the messages from twitter include:\n1. Fever game tickets\n2. Chelsea underdog status\n3. Caitlin Clark's aura\n4. PSG and Chelsea FCWC match\n5. Gaming industry updates\n6. CEO of Animoca Brands\n7. Star Atlas arena shooter update\n8. Gaming tokens and oracles\n9. Hytopia game\n10. Quark engineers building a multiplayer game\n11. College football game on Twitch\n12. Building a game on monad\n13. Not Pixel Skins and unique items.", - data: [ - 7, 8, 7, 15, 0, 1, 7, 6, 4, 12, 12, 6, 12, 9, 8, 8, 4, 6, 17, 10, 67, 8, 7, 8, 4, 8, 17, 8, - 19, 13, 13, 7, 11, 8, 7, 15, 44, 5, 4, 9, 10, 9, 7, 7, 9, 7, 17, 20, 19, 6, 4, 5, 10, 12, 5, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,jobs,models', - description: - 'Based on the messages from twitter, the key topics being discussed in the crypto industry include:\n1. The advancement of AI technology and its potential impact on various aspects of society, such as traffic optimization and personalized AI companions.\n2. The integration of AI with blockchain technology for value creation and smart contract execution.\n3. The use of AI in various industries, such as travel (e.g. airline pricing negotiation) and car rental (e.g. damage detection).\n4. The development of AI systems like AI agents and DAOs (Decentralized Autonomous Organizations) for autonomous decision-making and data management.\n5. Discussions on the future of jobs and the economy in the age of AI, as well as the potential implications of AI consciousness.\n6. The importance of AI in the crypto industry for tasks like generating insights, running models, and predicting outcomes on-chain.\n7. The potential risks and benefits of AI technology, including the need for human oversight and the limitations of creating consciousness in AI.', - data: [ - 24, 56, 7, 9, 0, 1, 2, 2, 5, 7, 8, 10, 12, 10, 8, 10, 9, 13, 7, 14, 16, 7, 13, 6, 12, 11, 5, - 13, 12, 13, 8, 8, 8, 13, 5, 9, 8, 13, 3, 7, 11, 9, 9, 6, 19, 15, 9, 11, 19, 11, 14, 8, 8, - 14, 8, - ], - }, - { - label: 'US crypto legislation', - topics: 'act,house,genius,clarity,bills', - description: - 'The key topics currently being discussed on Twitter in the crypto industry include the passing of the Stablecoin GENIUS Act in the US House, the potential impact of the law on crypto regulation in the US, the advancement of other major crypto legislation in Congress, such as the CLARITY Act, and the potential implications of the FedNow rollout on surveillance data. Additionally, there is discussion about France proposing a Bitcoin mining pilot using surplus nuclear energy, as well as various developments in the crypto market such as BlackRock filing ETH staking ETFs and the decreasing ETH supply. Overall, there is a sense of excitement and anticipation for the future of crypto in the US and globally.', - data: [ - 8, 2, 6, 13, 9, 2, 75, 27, 4, 9, 14, 11, 45, 3, 2, 3, 5, 2, 3, 8, 12, 7, 2, 7, 24, 5, 3, 9, - 5, 6, 12, 8, 4, 8, 13, 23, 3, 7, 7, 2, 11, 12, 8, 6, 2, 12, 1, 2, 4, 8, 12, 21, 44, 7, 5, - ], - }, - { - label: 'Pump.fun ICO', - topics: 'pump,ico,pumpfun,sale,token', - description: - 'Based on the messages from Twitter, it is evident that there is a lot of discussion surrounding the launch and trading of the cryptocurrency $PUMP. The messages mention the recent launch of $PUMP on various exchanges such as Coinbase, MEXC Launchpad, and Gate.io. There is also talk about the liquidity of $PUMP and the potential impact on its price if airdropped to users.\n\nFurthermore, comparisons are made between $PUMP and other cryptocurrencies like $HYPE and Bonk, with differing opinions on their potential for growth and revenue generation. The messages also highlight the launch of the PUMP perpetual futures market and the ability for users to trade with leverage using $PUMP as margin.\n\nOverall, the sentiment in the messages seems to be positive towards $PUMP, with excitement about its listing on different exchanges and the potential for growth in the future. It is clear that $PUMP is generating a lot of interest and activity within the crypto community.', - data: [ - 14, 6, 2, 4, 0, 5, 3, 2, 3, 5, 6, 6, 1, 5, 3, 5, 0, 11, 10, 8, 6, 5, 10, 5, 10, 3, 3, 10, 7, - 4, 3, 3, 7, 16, 9, 6, 8, 6, 155, 9, 2, 3, 7, 4, 8, 4, 5, 8, 15, 9, 3, 5, 3, 4, 10, - ], - }, - { - label: 'Art and NFTs', - topics: 'art,artist,artists,collection,piece', - description: - "The key topics discussed in the messages from twitter about the crypto industry and art include:\n- NFT art and artists submitting their work\n- The use of AI tools in creating art\n- Showcasing and attending art exhibitions\n- The impact of music on visual storytelling\n- Historical and personal aspects of digital art\n- Creating and sharing NFT artwork\n- Art as a forever journey with different stories to tell\n- Critiques on disconnected perspectives in art discussions\n- The value of not selling art cheaply just to be 'sold out'\n- The importance of imagination in creating NFT art\n- Art contests and collaborations in the crypto industry.", - data: [ - 4, 5, 77, 7, 2, 2, 2, 1, 5, 5, 21, 5, 7, 10, 7, 12, 5, 11, 6, 8, 4, 3, 7, 1, 4, 8, 4, 2, 9, - 4, 12, 11, 7, 12, 3, 6, 11, 7, 12, 5, 8, 5, 10, 2, 5, 4, 5, 8, 10, 1, 5, 6, 11, 5, 12, - ], - }, - { - label: 'SOL ETF', - topics: 'solana,sol,staking,ethereum,eth', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the dominance of Solana in blockchain transactions, the pumping of Bitcoin, Ethereum, and Solana, the anticipation of spot Solana ETF approvals, the attention drawn to the Ethereum PayFi project Remittix with 100x potential, the fall of Solana despite DeFi Development Corp's $5 billion treasury plan, the performance of Solana Call Options on Paradex, the consolidation pattern of Solana and its potential for upward movement, the SEC's review of Fidelity's Solana ETF, and the breakout of Solana from a Channel Down pattern. Traders and investors are closely monitoring these developments and discussing their implications for the crypto market.", - data: [ - 7, 4, 5, 7, 0, 2, 9, 12, 7, 9, 7, 7, 10, 7, 8, 13, 10, 5, 9, 7, 8, 5, 10, 4, 4, 2, 9, 6, 5, - 10, 5, 3, 5, 7, 7, 5, 6, 10, 4, 9, 5, 8, 1, 7, 31, 9, 3, 4, 7, 5, 2, 4, 6, 4, 2, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,etf,sec,breakout', - description: - "The key topics currently being discussed in the crypto industry on Twitter include XRP's potential for a massive price increase, the launch of a ProShares XRP Futures ETF, the integration of USDC on the XRP Ledger, the growth of XRP 2.0 and its potential as the fastest horse in the crypto space, analysts predicting a breakout cycle for XRP, the surge in XRP price and its addition to Donald Trump's Truth Social Crypto Blue Chip ETF, and technical analysis indicators such as MACD crosses and Edo Farina signals for XRP price movements. Additionally, there is excitement about XRP consolidating and potentially forming a bull flag pattern before pushing higher, with implied price targets around $3.60-$3.70. The Korean market is also showing strong interest in XRP, with high volume and transaction value driving momentum for the cryptocurrency.", - data: [ - 8, 4, 7, 4, 0, 3, 2, 3, 2, 7, 7, 6, 5, 6, 3, 3, 7, 12, 3, 6, 8, 5, 3, 5, 8, 0, 4, 7, 5, 4, - 6, 7, 1, 1, 3, 2, 3, 17, 6, 5, 6, 15, 5, 8, 10, 6, 13, 10, 2, 7, 1, 7, 9, 6, 4, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coins', - description: - 'The messages from Twitter suggest that meme coins are a popular topic of discussion within the crypto industry. Some users are excited about investing in meme tokens and are looking for advice on which ones to choose. There is also mention of institutions moving into the meme economy, indicating a growing interest in this sector. Additionally, there is a debate about the safety and value of meme coins compared to other cryptocurrencies. Overall, meme coins seem to be a hot topic with potential for high returns but also come with risks.', - data: [ - 3, 3, 3, 4, 1, 1, 0, 3, 3, 4, 8, 7, 1, 3, 1, 4, 0, 3, 1, 0, 3, 4, 2, 4, 2, 4, 5, 4, 3, 7, 4, - 69, 3, 8, 5, 4, 6, 4, 8, 7, 2, 3, 8, 3, 3, 2, 3, 1, 13, 9, 4, 5, 3, 4, 1, - ], - }, - { - label: 'FOMC', - topics: 'inflation,cpi,june,fed,27', - description: - 'The key topic discussed in the messages from twitter is inflation. The messages cover a range of perspectives on inflation, including its impact on various economies, the potential for rate cuts by central banks, and the implications for wage hikes. There is also mention of alternative metrics for measuring inflation and the uncertainty surrounding Fed rate cuts. Overall, the messages highlight the importance of inflation in the current economic landscape and its potential effects on various financial markets.', - data: [ - 3, 2, 4, 5, 0, 0, 17, 2, 0, 4, 3, 5, 3, 5, 2, 14, 2, 5, 3, 3, 3, 4, 3, 6, 4, 56, 3, 3, 5, 0, - 7, 5, 5, 2, 3, 1, 3, 8, 2, 5, 5, 5, 2, 2, 4, 3, 2, 9, 3, 4, 4, 8, 2, 4, 4, - ], - }, - { - label: 'ETFs', - topics: 'etfs,inflows,inflow,net,spot', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n- Record-breaking inflows in Bitcoin and Ethereum ETFs\n- BlackRock's significant investments in Ethereum\n- Surging interest in Ethereum among retail traders\n- Total assets under management reaching new highs\n- Solana + Staking ETF (SSK) launch success\n- Demand outpacing new coin issuance\n- Smart money loading up on Ethereum\n- Altcoins rallying alongside Ethereum\n- Massive daily inflows in Ethereum ETFs\n- Bitcoin and Ethereum ETFs seeing second-biggest day of inflows ever\n- Continued investor interest in Ethereum ETFs\n- Validation for Ethereum OGs\n- Potential signals for retail traders\n\nOverall, the sentiment appears to be bullish towards Ethereum, with significant investments and positive investor interest driving the market.", - data: [ - 2, 0, 2, 4, 10, 2, 5, 7, 11, 0, 3, 2, 5, 5, 3, 1, 48, 5, 3, 8, 0, 1, 0, 2, 5, 15, 2, 7, 1, - 0, 3, 6, 4, 12, 2, 2, 0, 4, 0, 1, 7, 0, 13, 0, 1, 30, 3, 1, 1, 4, 2, 2, 1, 3, 6, - ], - }, - { - label: 'Dogecoin', - topics: 'doge,dogecoin,resistance,moon,breakout', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- Dogecoin (DOGE) price movements and potential targets\n- Speculation on Dogecoin's future performance and its comparison to Bitcoin\n- The influence of TikTok and retail investors on the crypto market\n- Predictions for XRP and Ethereum price rallies\n- Interest in Dogecoin derivatives and options trading\n- Technical analysis and price targets for Dogecoin\n- Discussion of NFTs and their connection to cryptocurrencies\n- General market sentiment and trends in the crypto industry\n\nOverall, the sentiment towards Dogecoin appears positive, with many users expressing optimism about its potential for growth and success in the future.", - data: [ - 4, 1, 7, 2, 1, 0, 2, 1, 2, 2, 6, 4, 3, 3, 117, 3, 0, 4, 7, 3, 0, 2, 2, 2, 3, 3, 3, 3, 3, 2, - 7, 2, 1, 2, 2, 3, 1, 4, 1, 2, 4, 5, 2, 5, 1, 3, 2, 2, 3, 2, 3, 1, 5, 5, 1, - ], - }, - { - label: 'PENGU', - topics: 'pengu,pudgy,penguins,altcoins,altseason', - description: - 'Based on the messages from Twitter, it seems that the key topic being discussed is the cryptocurrency $PENGU. The community is excited about the recent pump in the price of $PENGU and there is speculation about its potential for further growth. The community is also discussing partnerships, collaborations, and the overall potential of $PENGU as a breakout coin in the current crypto cycle. There is also mention of the company @pudgypenguins launching a game on Apple and Google stores, as well as the strong social media presence and efforts of the Pudgy Penguins team. Overall, the sentiment towards $PENGU seems positive and there is excitement about its future prospects.', - data: [ - 0, 3, 2, 1, 0, 0, 2, 0, 8, 3, 4, 3, 4, 3, 0, 1, 1, 3, 2, 1, 3, 3, 1, 2, 2, 0, 1, 3, 3, 7, 2, - 1, 3, 4, 5, 94, 4, 1, 26, 2, 2, 2, 5, 1, 4, 3, 4, 2, 3, 6, 1, 2, 0, 3, 2, - ], - }, - { - label: 'Yapping', - topics: 'kaito,yapping,points,yap,yappers', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Projects on Kaito leaderboard: There is a discussion about which project to focus on to top the leaderboard on Kaito. Some projects mentioned include @boundless_xyz, @EspressoSys, and @Infinit_Labs.\n\n2. Virtuals points and rewards: Users are sharing their experiences with earning and losing virtual points, as well as claiming rewards on platforms like @virtuals_io.\n\n3. Somnia Network and SomniYaps: There is a mention of Somnia Network and the introduction of SomniYaps as new social rewards for community members who participate in yapping activities.\n\n4. Union Build funding: There is buzz about @union_build raising $69M in funding, with speculation about the impact on the project and the community.\n\n5. Vader AI updates: Changes in the Vader AI platform, such as stake percentages and airdrops for yappers, are being discussed.\n\n6. YEET airdrop: @yeet giving 2% of the $YEET airdrop to the community, along with information about on-chain games and a poker freeroll event.\n\n7. Web3 journey: Users are encouraging each other to support and grow together on their Web3 journey, mentioning projects like @vooi_io, @recallnet, @OpenledgerHQ, @JoinSapien, and @tenprotocol.\n\nOverall, the discussions on social media platforms reflect a mix of project updates, community engagement, rewards, and funding news within the crypto industry.', - data: [ - 5, 4, 0, 4, 0, 0, 1, 1, 3, 1, 4, 7, 5, 7, 3, 7, 0, 2, 9, 4, 1, 3, 5, 4, 3, 4, 4, 5, 4, 4, 4, - 2, 5, 4, 2, 1, 7, 3, 2, 7, 6, 4, 4, 3, 7, 8, 4, 6, 4, 5, 0, 14, 11, 3, 20, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoin,stablecoins,circle,bank,usdc', - description: - 'The key topic discussed in the messages from twitter is the growing adoption and development of stablecoins within the crypto industry. Major institutions such as OKX, Bank of America, JPMorgan, and Circle are all making moves to enter the stablecoin space or further develop existing stablecoin technologies. The integration of stablecoins like USDG by OKX and the potential for stablecoins to shape the future of global payments are highlighted in the messages. Additionally, the potential for stablecoins to revolutionize traditional banking systems and facilitate global money transfers as easily as sending a WhatsApp message is emphasized. The messages also touch on the dominance of Ethereum as a hub for stablecoins and the forecasted growth of the stablecoin market. Overall, stablecoins are portrayed as a key innovation in the fintech and crypto space with significant implications for the future of global finance.', - data: [ - 5, 3, 3, 7, 0, 0, 4, 1, 1, 0, 12, 8, 1, 1, 2, 4, 1, 2, 4, 3, 1, 0, 2, 3, 5, 9, 9, 8, 2, 3, - 5, 2, 2, 3, 1, 2, 3, 2, 2, 1, 1, 6, 1, 7, 6, 48, 2, 0, 4, 11, 0, 7, 6, 2, 0, - ], - }, - { - label: 'BTC ATH ', - topics: 'ath,aths,new,hit,btc', - description: - 'The key topic currently discussed on Twitter is the all-time high (ATH) of Bitcoin. Users are excited about Bitcoin hitting new ATHs every day, with prices reaching above $122K and even $125,856.4. There is a sense of anticipation for Bitcoin to continue breaking new ATHs, with mentions of previous ATHs and closing prices being surpassed. Additionally, there is discussion about major products being launched by Binance and Ripple, as well as regulatory developments in countries like Pakistan. Overall, the sentiment is bullish towards Bitcoin and the crypto market, with users celebrating the new ATHs and looking forward to potential future gains.', - data: [ - 2, 2, 12, 0, 21, 12, 6, 4, 0, 0, 3, 4, 2, 9, 3, 1, 0, 0, 4, 2, 0, 5, 1, 12, 28, 1, 1, 1, 2, - 6, 2, 0, 4, 18, 5, 1, 5, 2, 0, 3, 3, 1, 0, 4, 8, 2, 2, 0, 4, 2, 1, 7, 2, 2, 3, - ], - }, - { - label: 'Altseason', - topics: 'dominance,season,altseason,alts,altcoin', - description: - "Based on the messages from Twitter, it is evident that there is a lot of discussion about the upcoming altseason in the crypto industry. Key points mentioned include:\n\n- Ethereum (ETH) is outperforming Bitcoin (BTC) and there is anticipation for an altseason to begin.\n- Prices of ETH, Solana (SOL), and Binance Coin (BNB) have risen significantly compared to BTC.\n- Fold CEO warns that altcoins remain speculative and Bitcoin's market dominance may not be reversed.\n- The Altcoin Season Index is still under 40, indicating that the altcoin season has not fully started yet.\n- There is a focus on Bitcoin dominance and Ethereum dominance as indicators for altseason.\n- There is anticipation for a potential bullish divergence on altcoins and a real run to start in Q4.\n- There is a warning against loading up on low-quality altcoins and a reminder to be patient for the real altseason.\n- There is speculation about the start of a new altseason based on BTC dominance trends.\n- There is a comparison of the current situation to previous altseasons and anticipation for a massive rally.\n- There is a call to pay close attention to BTC dominance as it may signal the start of the altseason.\n- There is a comparison between AVAX and SOL, as well as the launch of $PUMP, in relation to the altseason.\n\nOverall, the sentiment on Twitter seems to be optimistic about the potential for an altseason to begin, but there is also caution and a reminder to be patient and avoid investing in low-quality altcoins.", - data: [ - 0, 53, 1, 5, 7, 2, 2, 1, 2, 0, 0, 3, 2, 0, 8, 24, 2, 3, 5, 4, 2, 1, 4, 3, 2, 2, 2, 1, 0, 1, - 2, 3, 7, 1, 1, 2, 1, 4, 1, 2, 0, 1, 25, 4, 1, 2, 1, 2, 3, 2, 1, 2, 2, 1, 0, - ], - }, - { - label: 'ETH treasury strategies', - topics: 'sharplink,gaming,foundation,eth,sbet', - description: - "Based on the messages from Twitter, it is evident that SharpLink Gaming has been making significant purchases of Ethereum (ETH) in large quantities. They have acquired millions of dollars worth of ETH from various sources such as the Ethereum Foundation and Coinbase Prime. This has led to SharpLink Gaming becoming one of the largest holders of ETH, even surpassing the Ethereum Foundation in terms of total holdings. Their goal seems to be focused on boosting DeFi income through staking and transparency. Additionally, they have been consistently accumulating ETH since June, using a micro-strategy-style approach. Overall, SharpLink Gaming's impact on the total ETH staked and their position as a major player in the crypto industry is noteworthy and worth monitoring.", - data: [ - 13, 1, 2, 3, 0, 0, 1, 22, 10, 0, 3, 2, 0, 0, 1, 1, 3, 1, 1, 3, 7, 0, 0, 1, 4, 3, 3, 4, 4, 2, - 1, 0, 0, 2, 3, 3, 0, 0, 5, 5, 0, 0, 2, 57, 0, 2, 0, 0, 0, 2, 0, 5, 0, 0, 0, - ], - }, - { - label: 'BTC whale movements', - topics: 'whale,galaxy,whales,moved,og', - description: - 'The key topic currently being discussed on Twitter in the crypto industry is the movement of Bitcoin whales. Specifically, there is a focus on an OG Bitcoin whale who holds 80,009 BTC (worth $9.46 billion) and has been transferring large amounts of BTC to Galaxy Digital, possibly to sell. The whale recently moved 40,192 BTC ($4.77 billion) to a new wallet, sparking speculation about their intentions. Additionally, there are discussions about Ethereum whales depositing large amounts of ETH to exchanges, signaling potential market movements. Some are questioning whether these whale movements are recycling Bitcoin for shares or if they indicate a potential sell-off. Overall, the activity of these large holders is closely monitored by the crypto community as it can have significant impacts on the market.', - data: [ - 3, 3, 0, 1, 5, 12, 5, 5, 1, 2, 0, 2, 2, 2, 3, 8, 7, 8, 0, 2, 2, 2, 0, 1, 1, 1, 1, 7, 0, 1, - 0, 3, 8, 5, 2, 2, 3, 3, 0, 2, 1, 0, 6, 2, 0, 0, 1, 0, 0, 2, 2, 5, 1, 18, 6, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-81.json b/priv/repo/major_topics_seed/data-81.json deleted file mode 100644 index 830df4d91d..0000000000 --- a/priv/repo/major_topics_seed/data-81.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["17.07.25","18.07.25","18.07.25","18.07.25","18.07.25","18.07.25","18.07.25","18.07.25","19.07.25","19.07.25","19.07.25","19.07.25","19.07.25","19.07.25","19.07.25","19.07.25","20.07.25","20.07.25","20.07.25","20.07.25","20.07.25","20.07.25","20.07.25","20.07.25","21.07.25","21.07.25","21.07.25","21.07.25","21.07.25","21.07.25","21.07.25","21.07.25","22.07.25","22.07.25","22.07.25","22.07.25","22.07.25","22.07.25","22.07.25","22.07.25","23.07.25","23.07.25","23.07.25","23.07.25","23.07.25","23.07.25","23.07.25","23.07.25","24.07.25","24.07.25","24.07.25","24.07.25","24.07.25","24.07.25","24.07.25"],"datasets":[{"label":"BTC","topics":"quantum,simplybitcointv,swan,maxkeiser,bitcoiners","description":"The key topics currently discussed in the crypto industry on social media include:\n- Sentiment and emotions around sending Bitcoin for the first time\n- Nocoiners arguing with AI about Bitcoin\n- Bitcoin meetups and events\n- Gaslighting on mailing lists related to Bitcoin\n- Impact and ways to make an impact with Bitcoin\n- Celebrating new Bitcoin all-time highs\n- Bitcoin education and diploma programs\n- Halal status of Bitcoin\n- Collecting Bitcoin-related items and memorabilia\n\nOverall, the discussions on social media platforms like Twitter_crypto show a diverse range of topics related to Bitcoin and the crypto industry, reflecting the growing interest and engagement in the space.","data":[20,11,23,26,39,33,9,18,14,25,9,24,14,19,16,22,0,24,22,23,18,21,29,17,19,17,22,15,23,21,11,20,17,20,22,20,15,15,17,14,11,17,17,13,10,21,23,26,22,16,25,9,19,16,20]},{"label":"Memecoins","topics":"2011,memecoins,memecoin,memes,meme","description":"The key topics discussed in the messages from twitter are:\n1. Memecoins and their potential for high returns\n2. Criticism of investing in traditional cryptocurrencies like XRP\n3. The importance of quality and strong teams in crypto projects\n4. The debate on whether memecoins are a good entry point for new people into crypto\n5. The potential success of LOLCOIN as a memecoin\n6. The concept of being early in investing in viral memes and narratives\n7. The influence of social media and attention economy in crypto investments.","data":[20,11,10,14,10,3,4,7,21,9,31,6,16,14,17,13,2,11,14,17,15,11,14,5,14,8,12,9,8,41,15,95,16,5,7,10,7,9,9,8,14,11,11,10,18,11,12,15,28,15,16,12,12,15,5]},{"label":"NFTs price","topics":"collections,nfts,comeback,nft,szn","description":"The key topics currently discussed in the crypto industry on social media include NFTs, specifically the NFT season, Flow blockchain, NewMountainFinance's yield, NFT collections, fake rankings and volume in tokens, successful NFT traders and collectors, the value of owning specific NFTs like Bearish AF, the growth potential of the NFT ecosystem, Abstract NFTs gaining attention, and the potential for NFTs to 10x in value. Additionally, the unique aspects of NFTs such as identity, culture, art, and community are highlighted as key factors driving interest in the sector.","data":[10,5,9,20,4,5,1,14,14,8,21,11,21,14,6,9,8,8,16,20,11,18,19,18,12,11,13,13,10,13,19,8,8,100,6,20,6,14,8,13,11,25,24,7,5,13,13,6,17,24,8,6,6,13,8]},{"label":"SOL","topics":"solanas,solana,sol,180,corp","description":"In the messages from twitter, it is mentioned that $SOL has been outperforming $ETH recently, with some suggesting that Solana is the new Ethereum in terms of price movements. Despite this, there is also a mention of Solana not reacting as strongly to price fluctuations as Ethereum typically does. Additionally, there are discussions about the growth and development of the Solana ecosystem, with mentions of milestones such as RaydiumProtocol's DEX volume crossing $1 and the increasing Real Economic Value (REV) of Solana compared to Ethereum.\n\nOverall, it seems that Solana's rally has been strong and there is a lot of excitement and activity within the Solana community. On the other hand, there is no specific mention of ETH finishing its rally, but it can be inferred that ETH may not be performing as strongly as SOL based on the comparisons made in the messages.","data":[20,11,6,19,7,6,18,17,4,17,15,13,7,5,8,15,18,11,9,14,5,18,13,12,12,24,7,21,11,17,11,18,18,10,7,12,10,12,18,14,6,12,9,11,30,21,16,17,12,20,7,19,7,11,3]},{"label":"Art and NFTs","topics":"canvas,artists,art,generative,artist","description":"The messages from twitter discuss various aspects of art, including the shift to digital art appreciation and creation, the desire to create art that is not popular or successful, and the importance of connecting with others through art. There is also mention of different art styles and techniques, such as fabric painting with embellishments. Overall, the messages highlight the diversity and creativity within the art community on social media.","data":[5,4,111,15,2,6,3,7,7,13,14,8,13,17,10,12,0,7,20,9,10,12,9,6,9,13,2,9,11,13,8,15,16,8,18,14,4,8,5,12,12,7,7,7,10,13,11,12,8,6,10,4,3,9,10]},{"label":"DOG","topics":"army,dog,krakenfx,dogs,runes","description":"The messages from twitter are mainly focused on the $DOG memecoin, with discussions about additional funding, community support, artwork, and upcoming targets for the coin. There is also mention of $DOG leading the pack with KrakenFX and calls for other platforms like OKX, HTX Global, Coinbase, and Upbit to join in. Additionally, there is excitement about new partnerships and strategies in the crypto industry. Overall, the $DOG community seems to be active and engaged in promoting and supporting the coin.","data":[3,7,11,7,15,6,3,3,25,6,6,6,14,29,115,7,0,8,9,16,10,8,9,4,17,5,9,10,16,9,9,13,5,6,7,6,6,5,8,6,9,11,4,11,8,8,10,2,15,7,4,7,11,10,7]},{"label":"AI","topics":"ais,prompts,beginners,artificial,models","description":"The messages from twitter are discussing various topics related to AI, including AI privacy, AI trading tools, AI content verification, AI data marketplace, AI-powered LLM agents, and the future of AI in science. There is also mention of specific projects and individuals in the AI industry. Overall, the conversation seems to be focused on the current and future applications of AI technology.","data":[10,73,14,9,4,2,4,9,2,9,11,11,10,8,10,11,0,12,5,7,9,8,10,11,6,23,8,18,8,6,8,11,10,6,7,9,7,11,8,16,17,8,4,7,9,6,10,10,6,9,5,7,2,7,8]},{"label":"Russiagate","topics":"obama,conspiracy,2016,russia,election","description":"The messages from twitter seem to be focused on conspiracy theories involving former President Obama and his alleged involvement in a coup against President Trump. Director of National Intelligence Tulsi Gabbard is mentioned as releasing evidence of this conspiracy. There is also mention of a deal involving Obama and Trump sitting for congressional hearings on Epstein. Overall, the messages suggest a deep distrust and suspicion towards political figures and a call for accountability and prosecution for those involved in the alleged conspiracy.","data":[11,3,6,8,2,4,47,12,10,3,11,15,5,27,18,7,0,14,12,11,12,8,6,8,4,11,11,9,5,6,4,6,14,13,12,6,9,6,7,22,5,17,13,3,5,4,4,8,6,10,28,2,11,2,7]},{"label":"GameFi","topics":"gaming,games,steam,gamefi,players","description":"The key topics discussed in the messages from twitter include:\n- Cross play in gaming\n- Play to earn environments\n- Gaming PCs\n- Web3 gaming\n- $XBG as a good pick\n- Nintendo's strong IP\n- @OverKnightsGame's promising roadmap\n- @Moonveil_Studio's evolution in Web3 gaming\n- Building the future of gaming\n- Top tier MMOs in the network\n- Network effects in MMOs\n- Tilted's new tag to earn concept\n\nOverall, the messages highlight the growing interest and developments in the gaming industry, particularly in the context of Web3 and play to earn environments. The discussion also touches on the importance of cross play, gaming setups, and the potential for network effects in MMOs.","data":[11,3,4,12,1,4,1,10,7,8,5,7,9,3,9,7,0,3,7,3,85,9,13,7,5,5,9,7,7,14,6,3,11,16,11,9,33,10,5,5,7,8,2,6,8,10,7,6,11,3,10,15,10,11,8]},{"label":"TSLA","topics":"tesla,tsla,earnings,hollywood,musk","description":"The key topic discussed in the messages from twitter is Elon Musk's statement about Tesla potentially facing challenging quarters ahead as the electric vehicle market adjusts to changing incentives. Additionally, there is mention of Tesla filing trademark applications for new candy names, as well as the opening of Tesla's Hollywood Diner and Supercharger. The overall sentiment towards Tesla seems mixed, with some positive news such as Q1 profits being up 35% YoY, but also warnings of a hard year ahead.","data":[5,6,2,16,2,0,6,19,5,4,3,11,7,4,19,10,0,4,6,7,4,3,6,7,8,2,5,7,11,5,6,6,5,14,16,10,3,7,7,6,13,19,12,14,6,8,12,57,5,3,25,7,4,3,6]},{"label":"ETFs","topics":"inflow,inflows,etfs,streak,net","description":"Based on the messages from twitter, it is clear that on 7/23/2025, there was a significant inflow of $296.5 million into Ethereum ETFs, marking a 12th straight green day for ETH ETFs. This is in contrast to Bitcoin ETFs, which saw outflows of $131.4 million on the same day. The inflows into Ethereum ETFs were attributed to various funds, with BlackRock's ETHA fund receiving a record figure of $546 million. Additionally, there was a notable increase in momentum moving from Bitcoin to Ethereum, as evidenced by the consistent inflows into ETH ETFs. This shift in capital flow towards Ethereum could be attributed to factors such as the potential for staking rewards offered by BlackRock's ETHA fund and the overall positive sentiment towards Ethereum in the market.","data":[9,1,0,2,12,9,3,5,5,1,1,2,9,5,0,7,72,11,4,27,0,2,1,2,9,21,2,12,1,1,8,5,8,3,10,0,0,3,1,9,1,2,17,1,28,4,7,2,2,4,2,14,2,18,8]},{"label":"BTC whale movements","topics":"whale,80000,whales,dormant,96","description":"The key topic currently discussed in the crypto community on Twitter is the withdrawal of $1.7 billion in Ethereum by Aave whales, which has triggered a scramble to unwind looping trades. Additionally, there is discussion about a 14-year-dormant ancient Bitcoin whale shaking the crypto market. Whales are making significant transactions, with one paying $112,745 for a single transaction and another moving 40,192 BTC worth $4.83 billion. There is also mention of a whale selling 8,005 ETH for $30 million and making a profit of $9.85 million. Another whale has spent $27.5 million to buy ETH and AAVE. Overall, the crypto community is closely monitoring whale activities and their impact on the market.","data":[12,7,3,0,7,15,7,28,11,2,4,3,1,5,9,5,7,5,7,2,3,0,3,2,7,4,2,8,4,6,11,1,16,10,1,5,1,8,5,5,2,2,11,2,5,3,4,1,3,6,2,4,12,63,7]},{"label":"ETH price","topics":"4k,3800,4000,3600,5k","description":"The key topics currently being discussed about $ETH #Ethereum on social media include:\n- Speculation about $4,000 price target being reached soon\n- Excitement and anticipation for $ETH to reach $10,000\n- Analysis of $ETH dominance in the market and potential for further price increases\n- Discussion about price discovery and potential for $ETH to break $10,000 this cycle\n- Technical analysis indicating a potential run to $4,000 without major dips\n- Monitoring of ETH MVRV ratio and potential price targets based on historical data\n- Discussion about the significance of regaining yearly open and potential for price expansion\n- Analysis of other altcoins like $DENT and potential for price bounce\n- Cautionary notes about watching for overheating indicators in the market\n\nOverall, sentiment seems to be bullish on $ETH with expectations of price increases and potential for reaching new all-time highs.","data":[8,1,1,8,1,1,10,4,3,7,0,0,2,1,0,15,162,20,3,4,4,4,5,12,2,4,2,1,1,4,4,2,2,6,1,3,1,4,1,3,2,1,2,5,1,3,4,11,2,3,2,6,4,1,1]},{"label":"Israel","topics":"israel,aid,children,genocide,killed","description":"The messages from twitter are discussing the ongoing crisis in Gaza, specifically focusing on the starvation and suffering of children and families due to Israeli airstrikes and policies. There are mentions of international aid organizations confirming the dire situation, as well as criticism towards political leaders for not taking action to stop the suffering. The messages also touch on accusations of genocide and the need for accountability from world leaders. Overall, the topic being discussed is the humanitarian crisis in Gaza and the need for immediate intervention to address the starvation and violence being inflicted on innocent civilians.","data":[10,6,6,8,3,4,15,3,5,9,6,6,2,8,6,6,0,11,2,12,6,6,4,5,13,3,26,7,6,7,2,7,10,0,17,4,7,4,1,4,9,8,10,7,2,15,7,1,3,2,3,6,10,4,9]},{"label":"DOGE","topics":"dogecoin,025,doge,030,020","description":"The key topics currently being discussed in the crypto community on Twitter include the potential for a bullish rally in $DOGE, with mentions of a bullish MACD cross and a potential price target. There is also discussion about Dogecoin's development group submitting an Ethereum bridge proposal, as well as speculation about the future of Dogecoin's price and its consolidation just under resistance at $0.280. Additionally, there are mentions of a new high being eyed by Dogecoin and the endorsement of Teddy as the face of Doge. Overall, sentiment seems to be positive towards Dogecoin, with anticipation for potential gains in the near future.","data":[2,1,1,4,0,1,3,2,4,3,4,2,6,4,115,1,0,5,2,2,2,1,1,8,5,4,2,2,3,12,2,2,2,2,3,5,3,7,4,4,2,0,2,6,8,3,6,1,2,4,1,3,1,5,2]},{"label":"Pulsechain","topics":"hex,pulsechain,pls,richard,pdai","description":"The key topics currently being discussed in the crypto community on Twitter include the verification of contracts for $PSM, $BLTZ, $HEXA, and $IRS on PulseScan. There is excitement surrounding $HEX, with mentions of it being on fire and working perfectly for over 5 years. The community is also discussing liquidity moving to where it is treated best, potentially to PulseChain. Additionally, there are mentions of RichardHeart using the WPLS/ETH and HEX/ETH pool on Uniswap to increase the price. Other topics include the success of $HEX, attempts to clone pDAI on PulseChain, and the overall positive sentiment towards the PulseChain ecosystem.","data":[8,5,2,4,5,2,1,3,2,3,6,2,5,3,1,7,1,2,2,2,1,2,3,16,2,5,1,1,10,3,4,0,3,3,1,5,4,31,2,2,5,3,4,6,4,12,7,3,2,2,6,2,7,7,2]},{"label":"EU sanctions","topics":"russian,russia,sanctions,eu,protest","description":"The key topic discussed in the messages from twitter is the tightening of sanctions on Russia by the EU, particularly in relation to the oil industry. The messages also mention developments in Ukraine, including protests against President Zelensky and the transfer of bodies of soldiers between Ukraine and Russia. Additionally, there is discussion about Russia's grip on digital life and the impact of sanctions on oil refineries in India. The messages also highlight Russia's actions in launching attacks on Ukraine despite ultimatums and sanctions. There is criticism of Zelensky for allegedly undermining anti-corruption agencies in Ukraine.","data":[6,1,2,5,0,3,9,4,3,4,4,2,3,3,10,3,0,5,1,1,4,0,4,2,5,5,2,10,2,2,5,4,2,2,6,3,3,6,3,2,8,21,0,5,3,0,6,5,5,0,12,3,6,3,6]},{"label":"Apechain","topics":"apechain,apecoin,apes,ape,apechainhub","description":"The key topics discussed in the messages from twitter are related to ApeChain, ApeCoin, NFTs, ApeFest, ApeChainHUB, ClutchMarkets, and various projects such as Legend on SOL, Cows Gone Mad, Jobcoin, and The Crypto Barn. The community seems to be actively engaged in betting, giveaways, art creation, and upcoming events like MadApes Versus. There is also a mention of potential collaborations and partnerships within the crypto industry. Overall, the sentiment appears to be positive and enthusiastic about the developments in the crypto space.","data":[1,1,18,2,5,1,6,2,6,4,9,3,1,1,3,1,0,1,2,3,6,6,4,3,3,1,3,1,3,2,16,3,7,8,6,4,3,2,5,2,3,0,8,4,14,2,4,1,4,7,1,2,3,6,2]},{"label":"ETH","topics":"digit,incomesharks,4k,ens,tedpillows","description":"The key topics discussed in the messages from twitter regarding $ETH include:\n1. $ETH hitting a new all-time high (ATH) this year\n2. $ETH reaching $3715\n3. $ETH potentially hitting $10,000 soon\n4. Institutions racing to become the largest strategic holders of Eth\n5. Bullish sentiment towards $ETH reclaiming key levels\n6. $ETH surpassing XRP in exchange volume for seven consecutive days\n7. Potential for $ETH to reach $4,000 with a 10% pump\n8. Discussion about $ETH being stronger than expected\n9. Speculation about $ETH potentially making investors millionaires\n10. Updates on the performance of Moonbirds, a cryptocurrency related to $ETH.","data":[7,2,4,3,0,2,7,3,6,11,4,3,1,2,2,4,29,1,3,1,2,1,2,7,3,0,3,2,3,5,2,6,3,0,5,2,3,3,7,3,9,4,7,6,4,4,0,1,4,4,0,8,5,4,1]},{"label":"Stablecoins","topics":"stablecoins,stable,visa,issuers,payment","description":"The key topics discussed in the messages from twitter are stablecoins, payments innovation, institutional stablecoin momentum, deep liquidity, real usage, sustainable revenue sources for stablecoin issuers, yield-bearing stablecoins, on-chain payments, USD backed stablecoins, stable assets for cashing out, stablecoin payments and invoicing, blockchain stake pools, Cardano, NuNet, decentralization, human-powered infrastructure, and a new payment option for ComTech Gold.","data":[1,3,1,6,3,4,2,0,1,6,2,3,4,1,1,5,1,3,5,7,1,3,5,5,2,4,4,4,3,1,4,8,3,5,4,9,3,4,4,4,5,3,3,0,23,3,6,3,0,9,3,4,2,5,5]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-81.ts b/priv/repo/major_topics_seed/data-81.ts deleted file mode 100644 index 49755f1649..0000000000 --- a/priv/repo/major_topics_seed/data-81.ts +++ /dev/null @@ -1,267 +0,0 @@ -export const NARRATIVES = { - labels: [ - '17.07.25', - '18.07.25', - '18.07.25', - '18.07.25', - '18.07.25', - '18.07.25', - '18.07.25', - '18.07.25', - '19.07.25', - '19.07.25', - '19.07.25', - '19.07.25', - '19.07.25', - '19.07.25', - '19.07.25', - '19.07.25', - '20.07.25', - '20.07.25', - '20.07.25', - '20.07.25', - '20.07.25', - '20.07.25', - '20.07.25', - '20.07.25', - '21.07.25', - '21.07.25', - '21.07.25', - '21.07.25', - '21.07.25', - '21.07.25', - '21.07.25', - '21.07.25', - '22.07.25', - '22.07.25', - '22.07.25', - '22.07.25', - '22.07.25', - '22.07.25', - '22.07.25', - '22.07.25', - '23.07.25', - '23.07.25', - '23.07.25', - '23.07.25', - '23.07.25', - '23.07.25', - '23.07.25', - '23.07.25', - '24.07.25', - '24.07.25', - '24.07.25', - '24.07.25', - '24.07.25', - '24.07.25', - '24.07.25', - ], - datasets: [ - { - label: 'BTC', - topics: 'quantum,simplybitcointv,swan,maxkeiser,bitcoiners', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Sentiment and emotions around sending Bitcoin for the first time\n- Nocoiners arguing with AI about Bitcoin\n- Bitcoin meetups and events\n- Gaslighting on mailing lists related to Bitcoin\n- Impact and ways to make an impact with Bitcoin\n- Celebrating new Bitcoin all-time highs\n- Bitcoin education and diploma programs\n- Halal status of Bitcoin\n- Collecting Bitcoin-related items and memorabilia\n\nOverall, the discussions on social media platforms like Twitter_crypto show a diverse range of topics related to Bitcoin and the crypto industry, reflecting the growing interest and engagement in the space.', - data: [ - 20, 11, 23, 26, 39, 33, 9, 18, 14, 25, 9, 24, 14, 19, 16, 22, 0, 24, 22, 23, 18, 21, 29, 17, - 19, 17, 22, 15, 23, 21, 11, 20, 17, 20, 22, 20, 15, 15, 17, 14, 11, 17, 17, 13, 10, 21, 23, - 26, 22, 16, 25, 9, 19, 16, 20, - ], - }, - { - label: 'Memecoins', - topics: '2011,memecoins,memecoin,memes,meme', - description: - 'The key topics discussed in the messages from twitter are:\n1. Memecoins and their potential for high returns\n2. Criticism of investing in traditional cryptocurrencies like XRP\n3. The importance of quality and strong teams in crypto projects\n4. The debate on whether memecoins are a good entry point for new people into crypto\n5. The potential success of LOLCOIN as a memecoin\n6. The concept of being early in investing in viral memes and narratives\n7. The influence of social media and attention economy in crypto investments.', - data: [ - 20, 11, 10, 14, 10, 3, 4, 7, 21, 9, 31, 6, 16, 14, 17, 13, 2, 11, 14, 17, 15, 11, 14, 5, 14, - 8, 12, 9, 8, 41, 15, 95, 16, 5, 7, 10, 7, 9, 9, 8, 14, 11, 11, 10, 18, 11, 12, 15, 28, 15, - 16, 12, 12, 15, 5, - ], - }, - { - label: 'NFTs price', - topics: 'collections,nfts,comeback,nft,szn', - description: - "The key topics currently discussed in the crypto industry on social media include NFTs, specifically the NFT season, Flow blockchain, NewMountainFinance's yield, NFT collections, fake rankings and volume in tokens, successful NFT traders and collectors, the value of owning specific NFTs like Bearish AF, the growth potential of the NFT ecosystem, Abstract NFTs gaining attention, and the potential for NFTs to 10x in value. Additionally, the unique aspects of NFTs such as identity, culture, art, and community are highlighted as key factors driving interest in the sector.", - data: [ - 10, 5, 9, 20, 4, 5, 1, 14, 14, 8, 21, 11, 21, 14, 6, 9, 8, 8, 16, 20, 11, 18, 19, 18, 12, - 11, 13, 13, 10, 13, 19, 8, 8, 100, 6, 20, 6, 14, 8, 13, 11, 25, 24, 7, 5, 13, 13, 6, 17, 24, - 8, 6, 6, 13, 8, - ], - }, - { - label: 'SOL', - topics: 'solanas,solana,sol,180,corp', - description: - "In the messages from twitter, it is mentioned that $SOL has been outperforming $ETH recently, with some suggesting that Solana is the new Ethereum in terms of price movements. Despite this, there is also a mention of Solana not reacting as strongly to price fluctuations as Ethereum typically does. Additionally, there are discussions about the growth and development of the Solana ecosystem, with mentions of milestones such as RaydiumProtocol's DEX volume crossing $1 and the increasing Real Economic Value (REV) of Solana compared to Ethereum.\n\nOverall, it seems that Solana's rally has been strong and there is a lot of excitement and activity within the Solana community. On the other hand, there is no specific mention of ETH finishing its rally, but it can be inferred that ETH may not be performing as strongly as SOL based on the comparisons made in the messages.", - data: [ - 20, 11, 6, 19, 7, 6, 18, 17, 4, 17, 15, 13, 7, 5, 8, 15, 18, 11, 9, 14, 5, 18, 13, 12, 12, - 24, 7, 21, 11, 17, 11, 18, 18, 10, 7, 12, 10, 12, 18, 14, 6, 12, 9, 11, 30, 21, 16, 17, 12, - 20, 7, 19, 7, 11, 3, - ], - }, - { - label: 'Art and NFTs', - topics: 'canvas,artists,art,generative,artist', - description: - 'The messages from twitter discuss various aspects of art, including the shift to digital art appreciation and creation, the desire to create art that is not popular or successful, and the importance of connecting with others through art. There is also mention of different art styles and techniques, such as fabric painting with embellishments. Overall, the messages highlight the diversity and creativity within the art community on social media.', - data: [ - 5, 4, 111, 15, 2, 6, 3, 7, 7, 13, 14, 8, 13, 17, 10, 12, 0, 7, 20, 9, 10, 12, 9, 6, 9, 13, - 2, 9, 11, 13, 8, 15, 16, 8, 18, 14, 4, 8, 5, 12, 12, 7, 7, 7, 10, 13, 11, 12, 8, 6, 10, 4, - 3, 9, 10, - ], - }, - { - label: 'DOG', - topics: 'army,dog,krakenfx,dogs,runes', - description: - 'The messages from twitter are mainly focused on the $DOG memecoin, with discussions about additional funding, community support, artwork, and upcoming targets for the coin. There is also mention of $DOG leading the pack with KrakenFX and calls for other platforms like OKX, HTX Global, Coinbase, and Upbit to join in. Additionally, there is excitement about new partnerships and strategies in the crypto industry. Overall, the $DOG community seems to be active and engaged in promoting and supporting the coin.', - data: [ - 3, 7, 11, 7, 15, 6, 3, 3, 25, 6, 6, 6, 14, 29, 115, 7, 0, 8, 9, 16, 10, 8, 9, 4, 17, 5, 9, - 10, 16, 9, 9, 13, 5, 6, 7, 6, 6, 5, 8, 6, 9, 11, 4, 11, 8, 8, 10, 2, 15, 7, 4, 7, 11, 10, 7, - ], - }, - { - label: 'AI', - topics: 'ais,prompts,beginners,artificial,models', - description: - 'The messages from twitter are discussing various topics related to AI, including AI privacy, AI trading tools, AI content verification, AI data marketplace, AI-powered LLM agents, and the future of AI in science. There is also mention of specific projects and individuals in the AI industry. Overall, the conversation seems to be focused on the current and future applications of AI technology.', - data: [ - 10, 73, 14, 9, 4, 2, 4, 9, 2, 9, 11, 11, 10, 8, 10, 11, 0, 12, 5, 7, 9, 8, 10, 11, 6, 23, 8, - 18, 8, 6, 8, 11, 10, 6, 7, 9, 7, 11, 8, 16, 17, 8, 4, 7, 9, 6, 10, 10, 6, 9, 5, 7, 2, 7, 8, - ], - }, - { - label: 'Russiagate', - topics: 'obama,conspiracy,2016,russia,election', - description: - 'The messages from twitter seem to be focused on conspiracy theories involving former President Obama and his alleged involvement in a coup against President Trump. Director of National Intelligence Tulsi Gabbard is mentioned as releasing evidence of this conspiracy. There is also mention of a deal involving Obama and Trump sitting for congressional hearings on Epstein. Overall, the messages suggest a deep distrust and suspicion towards political figures and a call for accountability and prosecution for those involved in the alleged conspiracy.', - data: [ - 11, 3, 6, 8, 2, 4, 47, 12, 10, 3, 11, 15, 5, 27, 18, 7, 0, 14, 12, 11, 12, 8, 6, 8, 4, 11, - 11, 9, 5, 6, 4, 6, 14, 13, 12, 6, 9, 6, 7, 22, 5, 17, 13, 3, 5, 4, 4, 8, 6, 10, 28, 2, 11, - 2, 7, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,steam,gamefi,players', - description: - "The key topics discussed in the messages from twitter include:\n- Cross play in gaming\n- Play to earn environments\n- Gaming PCs\n- Web3 gaming\n- $XBG as a good pick\n- Nintendo's strong IP\n- @OverKnightsGame's promising roadmap\n- @Moonveil_Studio's evolution in Web3 gaming\n- Building the future of gaming\n- Top tier MMOs in the network\n- Network effects in MMOs\n- Tilted's new tag to earn concept\n\nOverall, the messages highlight the growing interest and developments in the gaming industry, particularly in the context of Web3 and play to earn environments. The discussion also touches on the importance of cross play, gaming setups, and the potential for network effects in MMOs.", - data: [ - 11, 3, 4, 12, 1, 4, 1, 10, 7, 8, 5, 7, 9, 3, 9, 7, 0, 3, 7, 3, 85, 9, 13, 7, 5, 5, 9, 7, 7, - 14, 6, 3, 11, 16, 11, 9, 33, 10, 5, 5, 7, 8, 2, 6, 8, 10, 7, 6, 11, 3, 10, 15, 10, 11, 8, - ], - }, - { - label: 'TSLA', - topics: 'tesla,tsla,earnings,hollywood,musk', - description: - "The key topic discussed in the messages from twitter is Elon Musk's statement about Tesla potentially facing challenging quarters ahead as the electric vehicle market adjusts to changing incentives. Additionally, there is mention of Tesla filing trademark applications for new candy names, as well as the opening of Tesla's Hollywood Diner and Supercharger. The overall sentiment towards Tesla seems mixed, with some positive news such as Q1 profits being up 35% YoY, but also warnings of a hard year ahead.", - data: [ - 5, 6, 2, 16, 2, 0, 6, 19, 5, 4, 3, 11, 7, 4, 19, 10, 0, 4, 6, 7, 4, 3, 6, 7, 8, 2, 5, 7, 11, - 5, 6, 6, 5, 14, 16, 10, 3, 7, 7, 6, 13, 19, 12, 14, 6, 8, 12, 57, 5, 3, 25, 7, 4, 3, 6, - ], - }, - { - label: 'ETFs', - topics: 'inflow,inflows,etfs,streak,net', - description: - "Based on the messages from twitter, it is clear that on 7/23/2025, there was a significant inflow of $296.5 million into Ethereum ETFs, marking a 12th straight green day for ETH ETFs. This is in contrast to Bitcoin ETFs, which saw outflows of $131.4 million on the same day. The inflows into Ethereum ETFs were attributed to various funds, with BlackRock's ETHA fund receiving a record figure of $546 million. Additionally, there was a notable increase in momentum moving from Bitcoin to Ethereum, as evidenced by the consistent inflows into ETH ETFs. This shift in capital flow towards Ethereum could be attributed to factors such as the potential for staking rewards offered by BlackRock's ETHA fund and the overall positive sentiment towards Ethereum in the market.", - data: [ - 9, 1, 0, 2, 12, 9, 3, 5, 5, 1, 1, 2, 9, 5, 0, 7, 72, 11, 4, 27, 0, 2, 1, 2, 9, 21, 2, 12, 1, - 1, 8, 5, 8, 3, 10, 0, 0, 3, 1, 9, 1, 2, 17, 1, 28, 4, 7, 2, 2, 4, 2, 14, 2, 18, 8, - ], - }, - { - label: 'BTC whale movements', - topics: 'whale,80000,whales,dormant,96', - description: - 'The key topic currently discussed in the crypto community on Twitter is the withdrawal of $1.7 billion in Ethereum by Aave whales, which has triggered a scramble to unwind looping trades. Additionally, there is discussion about a 14-year-dormant ancient Bitcoin whale shaking the crypto market. Whales are making significant transactions, with one paying $112,745 for a single transaction and another moving 40,192 BTC worth $4.83 billion. There is also mention of a whale selling 8,005 ETH for $30 million and making a profit of $9.85 million. Another whale has spent $27.5 million to buy ETH and AAVE. Overall, the crypto community is closely monitoring whale activities and their impact on the market.', - data: [ - 12, 7, 3, 0, 7, 15, 7, 28, 11, 2, 4, 3, 1, 5, 9, 5, 7, 5, 7, 2, 3, 0, 3, 2, 7, 4, 2, 8, 4, - 6, 11, 1, 16, 10, 1, 5, 1, 8, 5, 5, 2, 2, 11, 2, 5, 3, 4, 1, 3, 6, 2, 4, 12, 63, 7, - ], - }, - { - label: 'ETH price', - topics: '4k,3800,4000,3600,5k', - description: - 'The key topics currently being discussed about $ETH #Ethereum on social media include:\n- Speculation about $4,000 price target being reached soon\n- Excitement and anticipation for $ETH to reach $10,000\n- Analysis of $ETH dominance in the market and potential for further price increases\n- Discussion about price discovery and potential for $ETH to break $10,000 this cycle\n- Technical analysis indicating a potential run to $4,000 without major dips\n- Monitoring of ETH MVRV ratio and potential price targets based on historical data\n- Discussion about the significance of regaining yearly open and potential for price expansion\n- Analysis of other altcoins like $DENT and potential for price bounce\n- Cautionary notes about watching for overheating indicators in the market\n\nOverall, sentiment seems to be bullish on $ETH with expectations of price increases and potential for reaching new all-time highs.', - data: [ - 8, 1, 1, 8, 1, 1, 10, 4, 3, 7, 0, 0, 2, 1, 0, 15, 162, 20, 3, 4, 4, 4, 5, 12, 2, 4, 2, 1, 1, - 4, 4, 2, 2, 6, 1, 3, 1, 4, 1, 3, 2, 1, 2, 5, 1, 3, 4, 11, 2, 3, 2, 6, 4, 1, 1, - ], - }, - { - label: 'Israel', - topics: 'israel,aid,children,genocide,killed', - description: - 'The messages from twitter are discussing the ongoing crisis in Gaza, specifically focusing on the starvation and suffering of children and families due to Israeli airstrikes and policies. There are mentions of international aid organizations confirming the dire situation, as well as criticism towards political leaders for not taking action to stop the suffering. The messages also touch on accusations of genocide and the need for accountability from world leaders. Overall, the topic being discussed is the humanitarian crisis in Gaza and the need for immediate intervention to address the starvation and violence being inflicted on innocent civilians.', - data: [ - 10, 6, 6, 8, 3, 4, 15, 3, 5, 9, 6, 6, 2, 8, 6, 6, 0, 11, 2, 12, 6, 6, 4, 5, 13, 3, 26, 7, 6, - 7, 2, 7, 10, 0, 17, 4, 7, 4, 1, 4, 9, 8, 10, 7, 2, 15, 7, 1, 3, 2, 3, 6, 10, 4, 9, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,025,doge,030,020', - description: - "The key topics currently being discussed in the crypto community on Twitter include the potential for a bullish rally in $DOGE, with mentions of a bullish MACD cross and a potential price target. There is also discussion about Dogecoin's development group submitting an Ethereum bridge proposal, as well as speculation about the future of Dogecoin's price and its consolidation just under resistance at $0.280. Additionally, there are mentions of a new high being eyed by Dogecoin and the endorsement of Teddy as the face of Doge. Overall, sentiment seems to be positive towards Dogecoin, with anticipation for potential gains in the near future.", - data: [ - 2, 1, 1, 4, 0, 1, 3, 2, 4, 3, 4, 2, 6, 4, 115, 1, 0, 5, 2, 2, 2, 1, 1, 8, 5, 4, 2, 2, 3, 12, - 2, 2, 2, 2, 3, 5, 3, 7, 4, 4, 2, 0, 2, 6, 8, 3, 6, 1, 2, 4, 1, 3, 1, 5, 2, - ], - }, - { - label: 'Pulsechain', - topics: 'hex,pulsechain,pls,richard,pdai', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the verification of contracts for $PSM, $BLTZ, $HEXA, and $IRS on PulseScan. There is excitement surrounding $HEX, with mentions of it being on fire and working perfectly for over 5 years. The community is also discussing liquidity moving to where it is treated best, potentially to PulseChain. Additionally, there are mentions of RichardHeart using the WPLS/ETH and HEX/ETH pool on Uniswap to increase the price. Other topics include the success of $HEX, attempts to clone pDAI on PulseChain, and the overall positive sentiment towards the PulseChain ecosystem.', - data: [ - 8, 5, 2, 4, 5, 2, 1, 3, 2, 3, 6, 2, 5, 3, 1, 7, 1, 2, 2, 2, 1, 2, 3, 16, 2, 5, 1, 1, 10, 3, - 4, 0, 3, 3, 1, 5, 4, 31, 2, 2, 5, 3, 4, 6, 4, 12, 7, 3, 2, 2, 6, 2, 7, 7, 2, - ], - }, - { - label: 'EU sanctions', - topics: 'russian,russia,sanctions,eu,protest', - description: - "The key topic discussed in the messages from twitter is the tightening of sanctions on Russia by the EU, particularly in relation to the oil industry. The messages also mention developments in Ukraine, including protests against President Zelensky and the transfer of bodies of soldiers between Ukraine and Russia. Additionally, there is discussion about Russia's grip on digital life and the impact of sanctions on oil refineries in India. The messages also highlight Russia's actions in launching attacks on Ukraine despite ultimatums and sanctions. There is criticism of Zelensky for allegedly undermining anti-corruption agencies in Ukraine.", - data: [ - 6, 1, 2, 5, 0, 3, 9, 4, 3, 4, 4, 2, 3, 3, 10, 3, 0, 5, 1, 1, 4, 0, 4, 2, 5, 5, 2, 10, 2, 2, - 5, 4, 2, 2, 6, 3, 3, 6, 3, 2, 8, 21, 0, 5, 3, 0, 6, 5, 5, 0, 12, 3, 6, 3, 6, - ], - }, - { - label: 'Apechain', - topics: 'apechain,apecoin,apes,ape,apechainhub', - description: - 'The key topics discussed in the messages from twitter are related to ApeChain, ApeCoin, NFTs, ApeFest, ApeChainHUB, ClutchMarkets, and various projects such as Legend on SOL, Cows Gone Mad, Jobcoin, and The Crypto Barn. The community seems to be actively engaged in betting, giveaways, art creation, and upcoming events like MadApes Versus. There is also a mention of potential collaborations and partnerships within the crypto industry. Overall, the sentiment appears to be positive and enthusiastic about the developments in the crypto space.', - data: [ - 1, 1, 18, 2, 5, 1, 6, 2, 6, 4, 9, 3, 1, 1, 3, 1, 0, 1, 2, 3, 6, 6, 4, 3, 3, 1, 3, 1, 3, 2, - 16, 3, 7, 8, 6, 4, 3, 2, 5, 2, 3, 0, 8, 4, 14, 2, 4, 1, 4, 7, 1, 2, 3, 6, 2, - ], - }, - { - label: 'ETH', - topics: 'digit,incomesharks,4k,ens,tedpillows', - description: - 'The key topics discussed in the messages from twitter regarding $ETH include:\n1. $ETH hitting a new all-time high (ATH) this year\n2. $ETH reaching $3715\n3. $ETH potentially hitting $10,000 soon\n4. Institutions racing to become the largest strategic holders of Eth\n5. Bullish sentiment towards $ETH reclaiming key levels\n6. $ETH surpassing XRP in exchange volume for seven consecutive days\n7. Potential for $ETH to reach $4,000 with a 10% pump\n8. Discussion about $ETH being stronger than expected\n9. Speculation about $ETH potentially making investors millionaires\n10. Updates on the performance of Moonbirds, a cryptocurrency related to $ETH.', - data: [ - 7, 2, 4, 3, 0, 2, 7, 3, 6, 11, 4, 3, 1, 2, 2, 4, 29, 1, 3, 1, 2, 1, 2, 7, 3, 0, 3, 2, 3, 5, - 2, 6, 3, 0, 5, 2, 3, 3, 7, 3, 9, 4, 7, 6, 4, 4, 0, 1, 4, 4, 0, 8, 5, 4, 1, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stable,visa,issuers,payment', - description: - 'The key topics discussed in the messages from twitter are stablecoins, payments innovation, institutional stablecoin momentum, deep liquidity, real usage, sustainable revenue sources for stablecoin issuers, yield-bearing stablecoins, on-chain payments, USD backed stablecoins, stable assets for cashing out, stablecoin payments and invoicing, blockchain stake pools, Cardano, NuNet, decentralization, human-powered infrastructure, and a new payment option for ComTech Gold.', - data: [ - 1, 3, 1, 6, 3, 4, 2, 0, 1, 6, 2, 3, 4, 1, 1, 5, 1, 3, 5, 7, 1, 3, 5, 5, 2, 4, 4, 4, 3, 1, 4, - 8, 3, 5, 4, 9, 3, 4, 4, 4, 5, 3, 3, 0, 23, 3, 6, 3, 0, 9, 3, 4, 2, 5, 5, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-82.json b/priv/repo/major_topics_seed/data-82.json deleted file mode 100644 index 15e85831f2..0000000000 --- a/priv/repo/major_topics_seed/data-82.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["24.07.25","25.07.25","25.07.25","25.07.25","25.07.25","25.07.25","25.07.25","25.07.25","26.07.25","26.07.25","26.07.25","26.07.25","26.07.25","26.07.25","26.07.25","26.07.25","27.07.25","27.07.25","27.07.25","27.07.25","27.07.25","27.07.25","27.07.25","27.07.25","28.07.25","28.07.25","28.07.25","28.07.25","28.07.25","28.07.25","28.07.25","28.07.25","29.07.25","29.07.25","29.07.25","29.07.25","29.07.25","29.07.25","29.07.25","29.07.25","30.07.25","30.07.25","30.07.25","30.07.25","30.07.25","30.07.25","30.07.25","30.07.25","31.07.25","31.07.25","31.07.25","31.07.25","31.07.25","31.07.25","31.07.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,chatgpt,theoriqai","description":"The key topics discussed in the messages from twitter are:\n1. AI-generated images and NFT creation\n2. GPT-5 and its capabilities\n3. Monitoring user behavior and psychology using AI\n4. AR technology and its potential for merging perceptions and actions\n5. DALPY project and its goal of enabling direct NFT creation with AI\n6. ArcBlock's announcement of three new AI tools\n7. Horizon Alpha model hosted on OpenRouterAI\n8. AethirCloud's decentralized GPU cloud infrastructure platform\n9. Human-AI collaboration in NFINIT Labs V2\n10. Strategy-as-Content System in NFINIT Labs V2","data":[60,172,34,16,7,4,12,25,19,42,26,37,22,18,13,22,21,26,23,32,25,22,33,22,45,35,34,24,17,27,23,31,33,18,41,17,21,33,14,34,33,30,18,26,30,20,36,59,25,26,26,23,25,27,19]},{"label":"ETH price","topics":"4000,eth,4k,ethereum,break","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum's price potential, with predictions of reaching $4,000 soon\n- Support levels for Ethereum at $2,400-$2,800\n- Ethereum's potential to reach $5,000\n- ETH/BTC hitting 6 month highs\n- Ethereum's role in stablecoins and DeFi, potentially driving institutional demand\n- Positive sentiment towards Ethereum, with mentions of it being \"giga bullish\" and \"mechanically controlled\"\n- Speculation on the potential for Ethereum to outperform other altcoins\n- Comparison of Ethereum to Bitcoin in terms of potential growth and adoption\n\nOverall, the sentiment towards Ethereum appears to be positive, with many users expressing confidence in its future performance and potential for growth.","data":[16,3,13,7,0,8,18,10,8,13,9,6,7,7,11,31,86,15,11,4,12,8,6,28,11,6,7,9,17,19,13,3,13,8,5,9,9,15,14,11,7,7,8,13,8,9,15,13,6,3,6,12,15,13,9]},{"label":"Importance of Bitcoin","topics":"fiat,bitcoin,money,understand,bitcoiners","description":"The messages from twitter about Bitcoin discuss various topics such as the benefits of hodling Bitcoin, the comparison between Bitcoin and traditional investments, the misunderstanding of Bitcoin by experts in finance and economics, the perception of volatility in Bitcoin, the association of Bitcoin with crime, the true value of Bitcoin as a global currency, the psychology of Bitcoin holders, the difference in investment approach between fiat currency and Bitcoin, and the importance of securing Bitcoin with titanium seed phrase backups. Overall, the messages highlight the unique characteristics and potential of Bitcoin as a revolutionary financial asset.","data":[4,2,3,9,61,26,1,9,8,3,8,13,8,8,7,4,4,10,12,2,7,11,5,8,13,7,11,9,7,6,9,9,7,1,15,28,10,9,1,9,14,10,8,8,6,13,5,13,7,7,13,7,7,3,7]},{"label":"ETH 10 year anniversary","topics":"birthday,happy,10th,ethereum,10","description":"The key topics currently being discussed on Twitter regarding Ethereum's 10th birthday include:\n- Celebrating Ethereum's 10th anniversary\n- Ethereum's goals for the next 10 years\n- The evolution of Ethereum from smart contracts to NFTs and DeFi\n- The excitement and anticipation for the next 10 years of Ethereum\n- Personal experiences and reflections on Ethereum's journey\n- Speculation and trading activities related to Ethereum and other cryptocurrencies\n\nOverall, the sentiment towards Ethereum seems positive and optimistic, with many users expressing their love for the platform and excitement for its future developments.","data":[6,0,2,11,2,6,1,3,17,5,5,6,8,13,2,4,65,3,3,9,2,5,142,2,3,5,2,1,2,1,1,5,1,1,4,4,1,1,2,3,2,0,2,4,3,2,5,7,21,3,8,1,5,2,60]},{"label":"BTC price","topics":"range,btc,115k,zone,bitcoin","description":"Based on the messages from Twitter, it is clear that the key topics being discussed in the crypto community include the current price of Bitcoin ($BTC) hovering around $118,000-$122,300, with predictions of a potential retest above $140,000 in the near future. There is also mention of altcoins experiencing a downturn while Bitcoin remains relatively stable. Analysts are bullish on Bitcoin as long as it stays above key levels such as $115,000 and $123,000, with targets set at $130,000 and potentially $155,200. Institutional accumulation is driving a bullish outlook for the next 90 days, with predictions ranging from $125,000-$180,000. Overall, there is a mix of optimism and caution in the community regarding the future price movements of Bitcoin.","data":[6,4,6,12,61,14,17,13,2,10,5,3,4,4,6,3,2,3,10,1,10,3,4,20,5,4,6,8,4,10,6,0,4,0,6,2,13,12,10,16,6,14,2,11,8,10,12,6,4,2,3,10,5,4,3]},{"label":"Gaming","topics":"game,gaming,games,play,web3","description":"The key topics currently discussed in the crypto industry on social media include:\n1. Web3 gaming content and projects like Abstract, Sipher, and WilderWorld.\n2. The importance of security and protecting assets in the crypto space, as highlighted by Alien Worlds.\n3. The emergence of AI-enhanced infrastructure for game studios and players, such as Overtake World and AkedoFun x Mira Network.\n4. New gaming projects and platforms like Nad or No Nad by MagmaStaking.\n5. The excitement and potential of the crypto gaming industry, with a focus on innovative projects and partnerships.","data":[5,3,3,6,1,4,1,6,4,6,6,6,9,8,0,7,2,9,2,57,5,9,9,5,7,14,4,9,6,14,7,3,4,8,10,3,28,5,7,8,6,3,7,5,8,8,7,8,5,4,7,3,6,8,3]},{"label":"SOL","topics":"solana,sol,staking,xrp,validator","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana's growth and developments, such as the addition of $120k to the liquidity pool and the launch of a new Meta DEX Aggregator on Solana.\n2. Speculation about the momentum of SOL amidst delays in the Solana ETF, with analysts considering Unilabs and Sui Blockchain as top utility picks for 2025.\n3. Coinbase's launch of nano futures for SOL & XRP, providing regulated crypto trading options for smaller traders in the U.S.\n4. Staking opportunities for ETH & SOL on Robinhood with just $1, allowing users to earn passive income while holding their crypto assets.\n5. Memecoin trading trends on Solana and the performance of high-performing Solana wallets.\n6. The potential for $TROLL to reach $100M and beyond, with discussions about buying the dip and holding for long-term gains.\n7. Price predictions and bullish signals for Solana, including the potential for a $300 price target and a 56% surge ahead.\n8. Comparisons between the price performance of SOL, XRP, and ETH, with speculation about ETH potentially outperforming the other two.\n9. Updates on the performance of $TROLL, including a 2x pump from a previous entry and expectations for further growth.\n\nOverall, the discussions on Twitter reflect a mix of price speculation, investment strategies, and updates on various projects and developments within the crypto industry, particularly focusing on Solana and related tokens.","data":[8,3,4,12,0,3,4,6,7,6,6,6,5,10,7,4,2,7,9,8,4,1,6,9,6,6,8,13,7,5,7,8,9,6,8,9,6,9,9,6,3,4,3,43,4,6,9,3,5,10,3,7,3,2,5]},{"label":"FOMC","topics":"inflation,powell,fed,rates,rate","description":"The key topics currently discussed in the crypto industry on social media include:\n- Inflation in the United States and Germany\n- Initial Jobless Claims\n- Rate cuts by Powell\n- Bitcoin's potential for growth\n- Real GDP rebound\n- Bank of Japan's economic outlook\n- EUR/USD exchange rate\n- Impact of inflation on the economy\n- Predictions on rate changes by the Fed\n- Pressure on Powell from Trump and rising tariffs\n\nOverall, there is a mix of optimism and concern regarding inflation, interest rates, and economic indicators in the messages analyzed from Twitter.","data":[5,2,5,7,3,6,9,1,2,3,3,5,10,5,5,10,3,7,18,5,3,0,4,10,20,7,7,3,3,4,36,3,3,7,1,9,7,8,17,17,6,10,0,3,2,3,2,2,7,4,4,6,7,5,2]},{"label":"Memecoins","topics":"meme,memecoin,memes,memecoins,coin","description":"The key topic discussed in the messages from twitter is the meme coin market within the crypto industry. Users are discussing various meme coins, their potential for growth, and which ones are currently undervalued. There is excitement around meme coins such as $DOGE, $PEPE, and $WIF, with speculation on which one will lead the next 100x run. Additionally, there is mention of meme coin hubs on the Stellar Blockchain and the growth of meme coin communities. Overall, the sentiment towards meme coins seems positive, with users eager to invest and see potential profits.","data":[8,4,2,3,0,2,0,7,5,4,5,1,3,7,3,3,1,10,4,3,7,14,5,4,5,3,5,5,4,8,4,80,10,4,4,1,6,3,3,4,4,6,3,6,3,6,3,9,10,6,6,3,8,8,1]},{"label":"ETFs","topics":"inflows,etfs,etf,inflow,net","description":"Based on the messages from Twitter, it is evident that there is a significant amount of discussion surrounding Ethereum ETF inflows. The messages highlight the positive inflows for Ethereum ETFs, with consecutive days of inflows outpacing Bitcoin ETF flows. There is also mention of record-breaking inflows for Ethereum ETFs, with over $1.8 billion in net inflows recorded in a week. Additionally, there are discussions about BlackRock's Ethereum ETF breaking records and hitting $10 billion in assets.\n\nOverall, the sentiment in the crypto community on Twitter seems to be bullish towards Ethereum ETF inflows, with many anticipating further price increases for Ethereum as a result of the significant inflows. The messages also touch upon other cryptocurrencies such as SOL and XRP, which have also seen surges in inflows.","data":[8,0,1,2,9,4,4,3,4,2,1,6,7,7,3,42,31,2,11,2,0,2,0,2,12,8,4,2,3,0,8,1,7,3,2,0,1,2,1,1,1,5,1,6,19,5,3,1,2,1,2,8,0,6,1]},{"label":"Art","topics":"art,artist,artists,love,available","description":"Based on the messages from twitter, it is evident that there is a strong interest and discussion around digital art within the crypto industry community. The messages highlight the appreciation for digital art, the value proposition of digital art collectors, and the emergence of new galleries dedicated to showcasing digital art in physical spaces. There is also a mention of the use of blockchain technology, specifically Bitcoin, as a secure canvas for digital artworks. Overall, the community seems to be enthusiastic about the intersection of art and technology, and the potential for innovation and growth in the digital art space.","data":[3,2,52,7,1,1,1,2,3,4,8,9,3,6,3,1,1,5,2,8,4,12,2,1,6,4,2,7,5,13,2,2,2,2,9,6,5,4,3,3,3,4,3,5,2,3,4,4,3,1,7,1,6,1,5]},{"label":"Altseason","topics":"zora,altseason,altcoins,pepe,pump","description":"The key topics currently discussed in the crypto industry on Twitter include:\n\n1. $shping pump prediction\n2. $eth stealing money from other crypto pumps\n3. $zora hitting $0.085 and potential bounce up\n4. $zora boom and buying the dip at $0.0818\n5. $zora printing 800m mcap but creator coins having low liquidity\n6. $zora pump at $0.08 for a 15% gain\n7. $zora and $fxh catching a bid and undervalued creator and artist coins\n8. Concerns about $spk dropping to $0.091 and potential pump\n9. Zenith Bank's performance and potential to cross N100/share mark\n10. $zora fake dump and potential short squeeze\n11. $zora movements being driven by bots and advice to hodl\n12. Correction in $ZORA creator coin and good time to buy\n13. $zora looking to DCA down and ride back up\n14. Shock and confusion over a potential rug pull in the market\n\nOverall, the discussions on Twitter revolve around price predictions, market movements, potential opportunities, and risks in the crypto industry.","data":[0,2,3,5,0,6,1,11,5,0,1,10,0,2,4,3,0,6,0,0,6,1,2,5,5,1,1,2,3,3,5,1,1,2,8,9,8,3,11,1,4,4,5,23,8,7,5,0,6,1,1,0,2,1,43]},{"label":"BTC whale movements","topics":"whale,whales,bought,80000,selling","description":"The key topics currently discussed in the crypto industry on social media platforms include:\n1. Whale purchases of Ethereum: Large whales have been buying significant amounts of Ethereum, with some purchasing over 220,000 ETH worth around $840 million in the last 48 hours.\n2. Whale transactions in various altcoins: Whales have been making significant purchases in various altcoins such as Tokabu, Gork, and CRCLx, impacting their market capitalization.\n3. Bitcoin Cash price rally: Bitcoin Cash has seen a 16% rally as whale accumulation hits a month-high, with the price eyeing a breakout above $600.\n4. Bitcoin whale profit realization: A BTC whale from 2011 sold 80,000 Bitcoin, realizing a profit of $9 billion, showcasing the impact of whale transactions on the market.\n5. Ethereum whale-triggered price slump: Ethereum whales have triggered a price slump with $5.7 billion in large transactions, affecting the overall market sentiment.\n6. Whale intelligence tracker system: A new whale intelligence tracker system has been created to track whale activities in the crypto market, providing insights for traders and investors.\n7. Flows analysis for trading: Traders are analyzing whale flows to determine entry points for trading, with one whale selling $105K via DCA while another is adding $36K in a particular asset.","data":[3,4,0,6,3,3,11,11,8,2,4,0,0,2,5,2,4,5,1,3,1,1,3,5,4,1,5,3,4,5,6,3,1,2,5,2,3,0,3,0,1,4,4,3,2,1,2,4,0,1,1,1,4,42,4]},{"label":"NFTs","topics":"nft,nfts,collections,projects,2021","description":"The key topics currently discussed in the crypto industry on social media include:\n1. NFT collections and trading, with mentions of new collections, hybrid NFTs, and smoother trading experiences on platforms like Ronin Market.\n2. The potential of NFTs in various industries, such as movie passes becoming NFTs and NFTs being considered as corporate reserves.\n3. The importance of staying engaged in the NFT market, with suggestions to double down on NFT investments and participate in early access opportunities like minting NFT collections.\n4. The unique aspects of NFT ownership, such as individualized slug bags and the differentiation of NFT assets.\n5. Specific projects and communities within the NFT space, like MegaETH and QuirkiesNFT, with a focus on their innovative approaches and dedicated communities.\nOverall, the sentiment towards NFTs appears to be positive, with excitement about the future potential of blockchain technology and digital art.","data":[3,1,3,4,1,5,0,5,4,5,7,3,5,6,0,2,0,4,6,3,5,6,3,5,1,1,4,3,1,6,10,0,6,22,5,4,1,4,7,3,1,5,7,1,0,2,6,4,3,4,1,1,3,2,2]},{"label":"White house crypto report","topics":"white,house,report,reserve,strategic","description":"The White House is set to release a crypto policy report on July 30, focusing on tokenization and upcoming regulations. The report is expected to include details on the feasibility of a strategic national stockpile. The Trump administration has been supportive of Bitcoin and crypto, with the President's Working Group on Digital Asset Markets urging regulatory clarity and pushing for the passage of a Digital Asset Market Clarity Act. The report revealed no actual holdings, causing a brief Bitcoin drop before recovery. Overall, the executive branch is creating momentum in the crypto industry, with Congress urged to finish the job by passing the CLARITY Act.","data":[8,0,5,3,0,2,24,1,2,0,7,1,10,3,1,3,1,4,0,0,0,1,0,1,2,1,3,4,4,0,2,1,0,13,2,3,5,6,1,33,2,7,1,2,1,4,1,1,4,7,7,5,1,2,3]},{"label":"XRP","topics":"xrp,ripple,sec,cryptocurrency,altcoins","description":"The key topic discussed in the messages from Twitter is the performance and potential of XRP, particularly in relation to the Teucrium 2x Long Daily XRP ETF (XXRP) which has surpassed $300 million in net inflows. The messages also mention price predictions, regulatory progress, institutional demand, and comparisons to other cryptocurrencies like Ethereum. Additionally, there is speculation about XRP reaching $1,000, as well as discussions about the Ripple vs. SEC case and the impact of ETF speculation on XRP's price. Overall, the sentiment towards XRP appears to be positive, with analysts and traders eyeing potential growth opportunities in the cryptocurrency.","data":[3,1,4,1,1,0,3,0,6,2,5,4,6,1,8,4,1,5,6,2,0,1,3,8,3,6,0,5,4,4,4,2,4,1,1,5,3,5,3,5,11,5,1,5,7,2,5,3,4,1,1,7,1,3,3]},{"label":"DOGE","topics":"doge,dogecoin,resistance,regulations,chart","description":"Based on the messages from Twitter, key topics currently being discussed in the crypto community include:\n1. Dogecoin (DOGE) price analysis and predictions, with mentions of potential price targets such as $1.00, $0.21, $0.23, $0.36, and $0.74+.\n2. Dogecoin's use of AI tools to cut federal regulations and its impact on the market.\n3. Recent liquidations in the crypto market, including a $56 million wipeout in DOGE.\n4. The influence of Elon Musk on Dogecoin's price and community.\n5. Technical analysis of DOGE's price movements, including resistance and support levels.\n6. The U.S. government's use of AI to delete federal rules under a plan called DOGE (not related to Dogecoin).\n7. The release of GUI Gang NFT holders for Project Kuronashi.\n8. Speculation on whether Dogecoin is ready for a massive comeback despite recent dips.\n9. Criticism and analysis of the political difficulties in implementing changes related to DOGE.\n10. Bullish patterns like double-bottom and falling wedge suggesting a potential rally in DOGE's price.","data":[6,2,0,2,1,1,0,2,2,2,3,1,2,3,92,2,0,1,5,0,1,2,3,5,1,0,3,2,2,1,1,1,1,2,0,1,2,0,1,5,1,0,3,2,1,1,1,4,0,3,1,1,1,2,1]},{"label":"DeFi","topics":"defi,infinitlabs,tradfi,research,protocols","description":"The key topics currently discussed in the crypto industry on Twitter include the growth of decentralized finance (DeFi), the convergence of traditional finance (TradFi) and DeFi, the importance of account abstraction for user experience improvement, the evolution of DeFi since 2018, the risks associated with DeFi, the partnership between Alephium and PrimevaultHQ to enhance the DeFi ecosystem, and the potential for institutional adoption of DeFi. Additionally, there is a focus on the need for faster and more robust frameworks for institutional DeFi, as well as the role of key players in the industry such as Alephium, Flare Networks, and Firelight. Overall, the discussions highlight the ongoing developments and challenges within the crypto industry, particularly in the realm of decentralized finance.","data":[4,1,2,1,0,3,2,3,3,2,1,1,2,7,0,4,4,5,6,1,3,3,3,0,1,8,6,1,5,2,2,4,2,1,4,0,5,4,0,5,2,0,2,0,2,4,0,1,1,3,2,2,3,4,1]},{"label":"BTFD","topics":"dip,cro,hype,bonk,sui","description":"Based on the messages from Twitter, it seems that the key topic being discussed is buying the dip in the crypto market. Many users are expressing their opinions on buying the dip for various cryptocurrencies such as $BTC, $ETH, $SHIB, and others. Some users are optimistic about the market continuing in a bull trend, while others are frustrated with the current downward trend and hoping for a reversal soon. There is also discussion about the importance of patience and holding onto evergreen tickers like Nasdaq420. Additionally, there are warnings about the proliferation of new cryptocurrencies and the potential negative impact on existing coins through dilution. Overall, the sentiment seems to be mixed with some users advocating for buying the dip and others expressing caution or frustration.","data":[1,0,1,2,0,3,3,21,5,0,0,4,1,9,10,0,1,3,0,0,4,2,3,2,2,1,2,2,0,3,4,5,0,0,4,5,1,3,1,1,1,2,3,3,2,4,4,1,2,0,1,0,2,1,1]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,stable,genius,act","description":"The key topics discussed in the messages from twitter about the crypto industry include stablecoins, their volume and usage, the potential future of stablecoins in traditional finance, the introduction of new stablecoins like AUSD and Wyoming Stable Token, the growth of the stablecoin market, and the integration of stablecoins in cross-border currency exchange. There is also mention of the GENIUS Act laying the foundation for a more secure stablecoin future and the use of stablecoins on different blockchain platforms like Core and Bitcoin. Overall, stablecoins are seen as a significant part of the crypto industry with potential for further growth and integration into traditional finance.","data":[1,2,1,3,0,1,0,1,1,2,2,1,1,3,0,2,3,1,0,1,3,2,0,2,2,6,1,1,2,1,4,1,2,4,1,3,0,0,0,2,1,4,3,0,33,3,2,1,5,5,2,3,3,1,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-82.ts b/priv/repo/major_topics_seed/data-82.ts deleted file mode 100644 index 305d2e4072..0000000000 --- a/priv/repo/major_topics_seed/data-82.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '24.07.25', - '25.07.25', - '25.07.25', - '25.07.25', - '25.07.25', - '25.07.25', - '25.07.25', - '25.07.25', - '26.07.25', - '26.07.25', - '26.07.25', - '26.07.25', - '26.07.25', - '26.07.25', - '26.07.25', - '26.07.25', - '27.07.25', - '27.07.25', - '27.07.25', - '27.07.25', - '27.07.25', - '27.07.25', - '27.07.25', - '27.07.25', - '28.07.25', - '28.07.25', - '28.07.25', - '28.07.25', - '28.07.25', - '28.07.25', - '28.07.25', - '28.07.25', - '29.07.25', - '29.07.25', - '29.07.25', - '29.07.25', - '29.07.25', - '29.07.25', - '29.07.25', - '29.07.25', - '30.07.25', - '30.07.25', - '30.07.25', - '30.07.25', - '30.07.25', - '30.07.25', - '30.07.25', - '30.07.25', - '31.07.25', - '31.07.25', - '31.07.25', - '31.07.25', - '31.07.25', - '31.07.25', - '31.07.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,chatgpt,theoriqai', - description: - "The key topics discussed in the messages from twitter are:\n1. AI-generated images and NFT creation\n2. GPT-5 and its capabilities\n3. Monitoring user behavior and psychology using AI\n4. AR technology and its potential for merging perceptions and actions\n5. DALPY project and its goal of enabling direct NFT creation with AI\n6. ArcBlock's announcement of three new AI tools\n7. Horizon Alpha model hosted on OpenRouterAI\n8. AethirCloud's decentralized GPU cloud infrastructure platform\n9. Human-AI collaboration in NFINIT Labs V2\n10. Strategy-as-Content System in NFINIT Labs V2", - data: [ - 60, 172, 34, 16, 7, 4, 12, 25, 19, 42, 26, 37, 22, 18, 13, 22, 21, 26, 23, 32, 25, 22, 33, - 22, 45, 35, 34, 24, 17, 27, 23, 31, 33, 18, 41, 17, 21, 33, 14, 34, 33, 30, 18, 26, 30, 20, - 36, 59, 25, 26, 26, 23, 25, 27, 19, - ], - }, - { - label: 'ETH price', - topics: '4000,eth,4k,ethereum,break', - description: - 'The key topics currently being discussed in the crypto industry on Twitter include:\n- Ethereum\'s price potential, with predictions of reaching $4,000 soon\n- Support levels for Ethereum at $2,400-$2,800\n- Ethereum\'s potential to reach $5,000\n- ETH/BTC hitting 6 month highs\n- Ethereum\'s role in stablecoins and DeFi, potentially driving institutional demand\n- Positive sentiment towards Ethereum, with mentions of it being "giga bullish" and "mechanically controlled"\n- Speculation on the potential for Ethereum to outperform other altcoins\n- Comparison of Ethereum to Bitcoin in terms of potential growth and adoption\n\nOverall, the sentiment towards Ethereum appears to be positive, with many users expressing confidence in its future performance and potential for growth.', - data: [ - 16, 3, 13, 7, 0, 8, 18, 10, 8, 13, 9, 6, 7, 7, 11, 31, 86, 15, 11, 4, 12, 8, 6, 28, 11, 6, - 7, 9, 17, 19, 13, 3, 13, 8, 5, 9, 9, 15, 14, 11, 7, 7, 8, 13, 8, 9, 15, 13, 6, 3, 6, 12, 15, - 13, 9, - ], - }, - { - label: 'Importance of Bitcoin', - topics: 'fiat,bitcoin,money,understand,bitcoiners', - description: - 'The messages from twitter about Bitcoin discuss various topics such as the benefits of hodling Bitcoin, the comparison between Bitcoin and traditional investments, the misunderstanding of Bitcoin by experts in finance and economics, the perception of volatility in Bitcoin, the association of Bitcoin with crime, the true value of Bitcoin as a global currency, the psychology of Bitcoin holders, the difference in investment approach between fiat currency and Bitcoin, and the importance of securing Bitcoin with titanium seed phrase backups. Overall, the messages highlight the unique characteristics and potential of Bitcoin as a revolutionary financial asset.', - data: [ - 4, 2, 3, 9, 61, 26, 1, 9, 8, 3, 8, 13, 8, 8, 7, 4, 4, 10, 12, 2, 7, 11, 5, 8, 13, 7, 11, 9, - 7, 6, 9, 9, 7, 1, 15, 28, 10, 9, 1, 9, 14, 10, 8, 8, 6, 13, 5, 13, 7, 7, 13, 7, 7, 3, 7, - ], - }, - { - label: 'ETH 10 year anniversary', - topics: 'birthday,happy,10th,ethereum,10', - description: - "The key topics currently being discussed on Twitter regarding Ethereum's 10th birthday include:\n- Celebrating Ethereum's 10th anniversary\n- Ethereum's goals for the next 10 years\n- The evolution of Ethereum from smart contracts to NFTs and DeFi\n- The excitement and anticipation for the next 10 years of Ethereum\n- Personal experiences and reflections on Ethereum's journey\n- Speculation and trading activities related to Ethereum and other cryptocurrencies\n\nOverall, the sentiment towards Ethereum seems positive and optimistic, with many users expressing their love for the platform and excitement for its future developments.", - data: [ - 6, 0, 2, 11, 2, 6, 1, 3, 17, 5, 5, 6, 8, 13, 2, 4, 65, 3, 3, 9, 2, 5, 142, 2, 3, 5, 2, 1, 2, - 1, 1, 5, 1, 1, 4, 4, 1, 1, 2, 3, 2, 0, 2, 4, 3, 2, 5, 7, 21, 3, 8, 1, 5, 2, 60, - ], - }, - { - label: 'BTC price', - topics: 'range,btc,115k,zone,bitcoin', - description: - 'Based on the messages from Twitter, it is clear that the key topics being discussed in the crypto community include the current price of Bitcoin ($BTC) hovering around $118,000-$122,300, with predictions of a potential retest above $140,000 in the near future. There is also mention of altcoins experiencing a downturn while Bitcoin remains relatively stable. Analysts are bullish on Bitcoin as long as it stays above key levels such as $115,000 and $123,000, with targets set at $130,000 and potentially $155,200. Institutional accumulation is driving a bullish outlook for the next 90 days, with predictions ranging from $125,000-$180,000. Overall, there is a mix of optimism and caution in the community regarding the future price movements of Bitcoin.', - data: [ - 6, 4, 6, 12, 61, 14, 17, 13, 2, 10, 5, 3, 4, 4, 6, 3, 2, 3, 10, 1, 10, 3, 4, 20, 5, 4, 6, 8, - 4, 10, 6, 0, 4, 0, 6, 2, 13, 12, 10, 16, 6, 14, 2, 11, 8, 10, 12, 6, 4, 2, 3, 10, 5, 4, 3, - ], - }, - { - label: 'Gaming', - topics: 'game,gaming,games,play,web3', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n1. Web3 gaming content and projects like Abstract, Sipher, and WilderWorld.\n2. The importance of security and protecting assets in the crypto space, as highlighted by Alien Worlds.\n3. The emergence of AI-enhanced infrastructure for game studios and players, such as Overtake World and AkedoFun x Mira Network.\n4. New gaming projects and platforms like Nad or No Nad by MagmaStaking.\n5. The excitement and potential of the crypto gaming industry, with a focus on innovative projects and partnerships.', - data: [ - 5, 3, 3, 6, 1, 4, 1, 6, 4, 6, 6, 6, 9, 8, 0, 7, 2, 9, 2, 57, 5, 9, 9, 5, 7, 14, 4, 9, 6, 14, - 7, 3, 4, 8, 10, 3, 28, 5, 7, 8, 6, 3, 7, 5, 8, 8, 7, 8, 5, 4, 7, 3, 6, 8, 3, - ], - }, - { - label: 'SOL', - topics: 'solana,sol,staking,xrp,validator', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Solana's growth and developments, such as the addition of $120k to the liquidity pool and the launch of a new Meta DEX Aggregator on Solana.\n2. Speculation about the momentum of SOL amidst delays in the Solana ETF, with analysts considering Unilabs and Sui Blockchain as top utility picks for 2025.\n3. Coinbase's launch of nano futures for SOL & XRP, providing regulated crypto trading options for smaller traders in the U.S.\n4. Staking opportunities for ETH & SOL on Robinhood with just $1, allowing users to earn passive income while holding their crypto assets.\n5. Memecoin trading trends on Solana and the performance of high-performing Solana wallets.\n6. The potential for $TROLL to reach $100M and beyond, with discussions about buying the dip and holding for long-term gains.\n7. Price predictions and bullish signals for Solana, including the potential for a $300 price target and a 56% surge ahead.\n8. Comparisons between the price performance of SOL, XRP, and ETH, with speculation about ETH potentially outperforming the other two.\n9. Updates on the performance of $TROLL, including a 2x pump from a previous entry and expectations for further growth.\n\nOverall, the discussions on Twitter reflect a mix of price speculation, investment strategies, and updates on various projects and developments within the crypto industry, particularly focusing on Solana and related tokens.", - data: [ - 8, 3, 4, 12, 0, 3, 4, 6, 7, 6, 6, 6, 5, 10, 7, 4, 2, 7, 9, 8, 4, 1, 6, 9, 6, 6, 8, 13, 7, 5, - 7, 8, 9, 6, 8, 9, 6, 9, 9, 6, 3, 4, 3, 43, 4, 6, 9, 3, 5, 10, 3, 7, 3, 2, 5, - ], - }, - { - label: 'FOMC', - topics: 'inflation,powell,fed,rates,rate', - description: - "The key topics currently discussed in the crypto industry on social media include:\n- Inflation in the United States and Germany\n- Initial Jobless Claims\n- Rate cuts by Powell\n- Bitcoin's potential for growth\n- Real GDP rebound\n- Bank of Japan's economic outlook\n- EUR/USD exchange rate\n- Impact of inflation on the economy\n- Predictions on rate changes by the Fed\n- Pressure on Powell from Trump and rising tariffs\n\nOverall, there is a mix of optimism and concern regarding inflation, interest rates, and economic indicators in the messages analyzed from Twitter.", - data: [ - 5, 2, 5, 7, 3, 6, 9, 1, 2, 3, 3, 5, 10, 5, 5, 10, 3, 7, 18, 5, 3, 0, 4, 10, 20, 7, 7, 3, 3, - 4, 36, 3, 3, 7, 1, 9, 7, 8, 17, 17, 6, 10, 0, 3, 2, 3, 2, 2, 7, 4, 4, 6, 7, 5, 2, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memecoin,memes,memecoins,coin', - description: - 'The key topic discussed in the messages from twitter is the meme coin market within the crypto industry. Users are discussing various meme coins, their potential for growth, and which ones are currently undervalued. There is excitement around meme coins such as $DOGE, $PEPE, and $WIF, with speculation on which one will lead the next 100x run. Additionally, there is mention of meme coin hubs on the Stellar Blockchain and the growth of meme coin communities. Overall, the sentiment towards meme coins seems positive, with users eager to invest and see potential profits.', - data: [ - 8, 4, 2, 3, 0, 2, 0, 7, 5, 4, 5, 1, 3, 7, 3, 3, 1, 10, 4, 3, 7, 14, 5, 4, 5, 3, 5, 5, 4, 8, - 4, 80, 10, 4, 4, 1, 6, 3, 3, 4, 4, 6, 3, 6, 3, 6, 3, 9, 10, 6, 6, 3, 8, 8, 1, - ], - }, - { - label: 'ETFs', - topics: 'inflows,etfs,etf,inflow,net', - description: - "Based on the messages from Twitter, it is evident that there is a significant amount of discussion surrounding Ethereum ETF inflows. The messages highlight the positive inflows for Ethereum ETFs, with consecutive days of inflows outpacing Bitcoin ETF flows. There is also mention of record-breaking inflows for Ethereum ETFs, with over $1.8 billion in net inflows recorded in a week. Additionally, there are discussions about BlackRock's Ethereum ETF breaking records and hitting $10 billion in assets.\n\nOverall, the sentiment in the crypto community on Twitter seems to be bullish towards Ethereum ETF inflows, with many anticipating further price increases for Ethereum as a result of the significant inflows. The messages also touch upon other cryptocurrencies such as SOL and XRP, which have also seen surges in inflows.", - data: [ - 8, 0, 1, 2, 9, 4, 4, 3, 4, 2, 1, 6, 7, 7, 3, 42, 31, 2, 11, 2, 0, 2, 0, 2, 12, 8, 4, 2, 3, - 0, 8, 1, 7, 3, 2, 0, 1, 2, 1, 1, 1, 5, 1, 6, 19, 5, 3, 1, 2, 1, 2, 8, 0, 6, 1, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,love,available', - description: - 'Based on the messages from twitter, it is evident that there is a strong interest and discussion around digital art within the crypto industry community. The messages highlight the appreciation for digital art, the value proposition of digital art collectors, and the emergence of new galleries dedicated to showcasing digital art in physical spaces. There is also a mention of the use of blockchain technology, specifically Bitcoin, as a secure canvas for digital artworks. Overall, the community seems to be enthusiastic about the intersection of art and technology, and the potential for innovation and growth in the digital art space.', - data: [ - 3, 2, 52, 7, 1, 1, 1, 2, 3, 4, 8, 9, 3, 6, 3, 1, 1, 5, 2, 8, 4, 12, 2, 1, 6, 4, 2, 7, 5, 13, - 2, 2, 2, 2, 9, 6, 5, 4, 3, 3, 3, 4, 3, 5, 2, 3, 4, 4, 3, 1, 7, 1, 6, 1, 5, - ], - }, - { - label: 'Altseason', - topics: 'zora,altseason,altcoins,pepe,pump', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n\n1. $shping pump prediction\n2. $eth stealing money from other crypto pumps\n3. $zora hitting $0.085 and potential bounce up\n4. $zora boom and buying the dip at $0.0818\n5. $zora printing 800m mcap but creator coins having low liquidity\n6. $zora pump at $0.08 for a 15% gain\n7. $zora and $fxh catching a bid and undervalued creator and artist coins\n8. Concerns about $spk dropping to $0.091 and potential pump\n9. Zenith Bank's performance and potential to cross N100/share mark\n10. $zora fake dump and potential short squeeze\n11. $zora movements being driven by bots and advice to hodl\n12. Correction in $ZORA creator coin and good time to buy\n13. $zora looking to DCA down and ride back up\n14. Shock and confusion over a potential rug pull in the market\n\nOverall, the discussions on Twitter revolve around price predictions, market movements, potential opportunities, and risks in the crypto industry.", - data: [ - 0, 2, 3, 5, 0, 6, 1, 11, 5, 0, 1, 10, 0, 2, 4, 3, 0, 6, 0, 0, 6, 1, 2, 5, 5, 1, 1, 2, 3, 3, - 5, 1, 1, 2, 8, 9, 8, 3, 11, 1, 4, 4, 5, 23, 8, 7, 5, 0, 6, 1, 1, 0, 2, 1, 43, - ], - }, - { - label: 'BTC whale movements', - topics: 'whale,whales,bought,80000,selling', - description: - 'The key topics currently discussed in the crypto industry on social media platforms include:\n1. Whale purchases of Ethereum: Large whales have been buying significant amounts of Ethereum, with some purchasing over 220,000 ETH worth around $840 million in the last 48 hours.\n2. Whale transactions in various altcoins: Whales have been making significant purchases in various altcoins such as Tokabu, Gork, and CRCLx, impacting their market capitalization.\n3. Bitcoin Cash price rally: Bitcoin Cash has seen a 16% rally as whale accumulation hits a month-high, with the price eyeing a breakout above $600.\n4. Bitcoin whale profit realization: A BTC whale from 2011 sold 80,000 Bitcoin, realizing a profit of $9 billion, showcasing the impact of whale transactions on the market.\n5. Ethereum whale-triggered price slump: Ethereum whales have triggered a price slump with $5.7 billion in large transactions, affecting the overall market sentiment.\n6. Whale intelligence tracker system: A new whale intelligence tracker system has been created to track whale activities in the crypto market, providing insights for traders and investors.\n7. Flows analysis for trading: Traders are analyzing whale flows to determine entry points for trading, with one whale selling $105K via DCA while another is adding $36K in a particular asset.', - data: [ - 3, 4, 0, 6, 3, 3, 11, 11, 8, 2, 4, 0, 0, 2, 5, 2, 4, 5, 1, 3, 1, 1, 3, 5, 4, 1, 5, 3, 4, 5, - 6, 3, 1, 2, 5, 2, 3, 0, 3, 0, 1, 4, 4, 3, 2, 1, 2, 4, 0, 1, 1, 1, 4, 42, 4, - ], - }, - { - label: 'NFTs', - topics: 'nft,nfts,collections,projects,2021', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n1. NFT collections and trading, with mentions of new collections, hybrid NFTs, and smoother trading experiences on platforms like Ronin Market.\n2. The potential of NFTs in various industries, such as movie passes becoming NFTs and NFTs being considered as corporate reserves.\n3. The importance of staying engaged in the NFT market, with suggestions to double down on NFT investments and participate in early access opportunities like minting NFT collections.\n4. The unique aspects of NFT ownership, such as individualized slug bags and the differentiation of NFT assets.\n5. Specific projects and communities within the NFT space, like MegaETH and QuirkiesNFT, with a focus on their innovative approaches and dedicated communities.\nOverall, the sentiment towards NFTs appears to be positive, with excitement about the future potential of blockchain technology and digital art.', - data: [ - 3, 1, 3, 4, 1, 5, 0, 5, 4, 5, 7, 3, 5, 6, 0, 2, 0, 4, 6, 3, 5, 6, 3, 5, 1, 1, 4, 3, 1, 6, - 10, 0, 6, 22, 5, 4, 1, 4, 7, 3, 1, 5, 7, 1, 0, 2, 6, 4, 3, 4, 1, 1, 3, 2, 2, - ], - }, - { - label: 'White house crypto report', - topics: 'white,house,report,reserve,strategic', - description: - "The White House is set to release a crypto policy report on July 30, focusing on tokenization and upcoming regulations. The report is expected to include details on the feasibility of a strategic national stockpile. The Trump administration has been supportive of Bitcoin and crypto, with the President's Working Group on Digital Asset Markets urging regulatory clarity and pushing for the passage of a Digital Asset Market Clarity Act. The report revealed no actual holdings, causing a brief Bitcoin drop before recovery. Overall, the executive branch is creating momentum in the crypto industry, with Congress urged to finish the job by passing the CLARITY Act.", - data: [ - 8, 0, 5, 3, 0, 2, 24, 1, 2, 0, 7, 1, 10, 3, 1, 3, 1, 4, 0, 0, 0, 1, 0, 1, 2, 1, 3, 4, 4, 0, - 2, 1, 0, 13, 2, 3, 5, 6, 1, 33, 2, 7, 1, 2, 1, 4, 1, 1, 4, 7, 7, 5, 1, 2, 3, - ], - }, - { - label: 'XRP', - topics: 'xrp,ripple,sec,cryptocurrency,altcoins', - description: - "The key topic discussed in the messages from Twitter is the performance and potential of XRP, particularly in relation to the Teucrium 2x Long Daily XRP ETF (XXRP) which has surpassed $300 million in net inflows. The messages also mention price predictions, regulatory progress, institutional demand, and comparisons to other cryptocurrencies like Ethereum. Additionally, there is speculation about XRP reaching $1,000, as well as discussions about the Ripple vs. SEC case and the impact of ETF speculation on XRP's price. Overall, the sentiment towards XRP appears to be positive, with analysts and traders eyeing potential growth opportunities in the cryptocurrency.", - data: [ - 3, 1, 4, 1, 1, 0, 3, 0, 6, 2, 5, 4, 6, 1, 8, 4, 1, 5, 6, 2, 0, 1, 3, 8, 3, 6, 0, 5, 4, 4, 4, - 2, 4, 1, 1, 5, 3, 5, 3, 5, 11, 5, 1, 5, 7, 2, 5, 3, 4, 1, 1, 7, 1, 3, 3, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,resistance,regulations,chart', - description: - "Based on the messages from Twitter, key topics currently being discussed in the crypto community include:\n1. Dogecoin (DOGE) price analysis and predictions, with mentions of potential price targets such as $1.00, $0.21, $0.23, $0.36, and $0.74+.\n2. Dogecoin's use of AI tools to cut federal regulations and its impact on the market.\n3. Recent liquidations in the crypto market, including a $56 million wipeout in DOGE.\n4. The influence of Elon Musk on Dogecoin's price and community.\n5. Technical analysis of DOGE's price movements, including resistance and support levels.\n6. The U.S. government's use of AI to delete federal rules under a plan called DOGE (not related to Dogecoin).\n7. The release of GUI Gang NFT holders for Project Kuronashi.\n8. Speculation on whether Dogecoin is ready for a massive comeback despite recent dips.\n9. Criticism and analysis of the political difficulties in implementing changes related to DOGE.\n10. Bullish patterns like double-bottom and falling wedge suggesting a potential rally in DOGE's price.", - data: [ - 6, 2, 0, 2, 1, 1, 0, 2, 2, 2, 3, 1, 2, 3, 92, 2, 0, 1, 5, 0, 1, 2, 3, 5, 1, 0, 3, 2, 2, 1, - 1, 1, 1, 2, 0, 1, 2, 0, 1, 5, 1, 0, 3, 2, 1, 1, 1, 4, 0, 3, 1, 1, 1, 2, 1, - ], - }, - { - label: 'DeFi', - topics: 'defi,infinitlabs,tradfi,research,protocols', - description: - 'The key topics currently discussed in the crypto industry on Twitter include the growth of decentralized finance (DeFi), the convergence of traditional finance (TradFi) and DeFi, the importance of account abstraction for user experience improvement, the evolution of DeFi since 2018, the risks associated with DeFi, the partnership between Alephium and PrimevaultHQ to enhance the DeFi ecosystem, and the potential for institutional adoption of DeFi. Additionally, there is a focus on the need for faster and more robust frameworks for institutional DeFi, as well as the role of key players in the industry such as Alephium, Flare Networks, and Firelight. Overall, the discussions highlight the ongoing developments and challenges within the crypto industry, particularly in the realm of decentralized finance.', - data: [ - 4, 1, 2, 1, 0, 3, 2, 3, 3, 2, 1, 1, 2, 7, 0, 4, 4, 5, 6, 1, 3, 3, 3, 0, 1, 8, 6, 1, 5, 2, 2, - 4, 2, 1, 4, 0, 5, 4, 0, 5, 2, 0, 2, 0, 2, 4, 0, 1, 1, 3, 2, 2, 3, 4, 1, - ], - }, - { - label: 'BTFD', - topics: 'dip,cro,hype,bonk,sui', - description: - 'Based on the messages from Twitter, it seems that the key topic being discussed is buying the dip in the crypto market. Many users are expressing their opinions on buying the dip for various cryptocurrencies such as $BTC, $ETH, $SHIB, and others. Some users are optimistic about the market continuing in a bull trend, while others are frustrated with the current downward trend and hoping for a reversal soon. There is also discussion about the importance of patience and holding onto evergreen tickers like Nasdaq420. Additionally, there are warnings about the proliferation of new cryptocurrencies and the potential negative impact on existing coins through dilution. Overall, the sentiment seems to be mixed with some users advocating for buying the dip and others expressing caution or frustration.', - data: [ - 1, 0, 1, 2, 0, 3, 3, 21, 5, 0, 0, 4, 1, 9, 10, 0, 1, 3, 0, 0, 4, 2, 3, 2, 2, 1, 2, 2, 0, 3, - 4, 5, 0, 0, 4, 5, 1, 3, 1, 1, 1, 2, 3, 3, 2, 4, 4, 1, 2, 0, 1, 0, 2, 1, 1, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,stable,genius,act', - description: - 'The key topics discussed in the messages from twitter about the crypto industry include stablecoins, their volume and usage, the potential future of stablecoins in traditional finance, the introduction of new stablecoins like AUSD and Wyoming Stable Token, the growth of the stablecoin market, and the integration of stablecoins in cross-border currency exchange. There is also mention of the GENIUS Act laying the foundation for a more secure stablecoin future and the use of stablecoins on different blockchain platforms like Core and Bitcoin. Overall, stablecoins are seen as a significant part of the crypto industry with potential for further growth and integration into traditional finance.', - data: [ - 1, 2, 1, 3, 0, 1, 0, 1, 1, 2, 2, 1, 1, 3, 0, 2, 3, 1, 0, 1, 3, 2, 0, 2, 2, 6, 1, 1, 2, 1, 4, - 1, 2, 4, 1, 3, 0, 0, 0, 2, 1, 4, 3, 0, 33, 3, 2, 1, 5, 5, 2, 3, 3, 1, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-83.json b/priv/repo/major_topics_seed/data-83.json deleted file mode 100644 index bbb2b0166a..0000000000 --- a/priv/repo/major_topics_seed/data-83.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["31.07.25","01.08.25","01.08.25","01.08.25","01.08.25","01.08.25","01.08.25","01.08.25","02.08.25","02.08.25","02.08.25","02.08.25","02.08.25","02.08.25","02.08.25","02.08.25","03.08.25","03.08.25","03.08.25","03.08.25","03.08.25","03.08.25","03.08.25","03.08.25","04.08.25","04.08.25","04.08.25","04.08.25","04.08.25","04.08.25","04.08.25","04.08.25","05.08.25","05.08.25","05.08.25","05.08.25","05.08.25","05.08.25","05.08.25","05.08.25","06.08.25","06.08.25","06.08.25","06.08.25","06.08.25","06.08.25","06.08.25","06.08.25","07.08.25","07.08.25","07.08.25","07.08.25","07.08.25","07.08.25","07.08.25"],"datasets":[{"label":"BTC vs Fiat","topics":"portaltobitcoin,portal,bitcoiners,fiat,bitcoiner","description":"The key topics discussed in the messages from @joshuatrees_ and other users include:\n1. Bitcoin being considered as digital gold and a safer option than fiat currency.\n2. The potential for Bitcoin to replace traditional banking systems.\n3. The belief that Bitcoin is valuable and will continue to be successful despite criticisms.\n4. The idea that Bitcoin is a better option in the face of inflation.\n5. The debate between fiat currency and Bitcoin as a store of value.\n6. The concept of commoditization and the potential impact on various industries.\n7. The discussion around the value of assets priced in fiat currency compared to Bitcoin.\n8. The idea that Bitcoin is a hedge against the devaluation of fiat currency.\n\nOverall, the messages reflect a positive sentiment towards Bitcoin as a valuable asset and a potential alternative to traditional financial systems.","data":[12,10,16,19,179,4,14,19,25,9,26,12,18,7,18,15,27,11,15,16,28,10,16,16,16,13,13,13,16,17,10,9,9,9,19,29,22,13,8,16,26,16,8,25,11,19,14,25,14,8,15,9,14,12,8]},{"label":"AI","topics":"theoriq,agent,agents,ais,autonomous","description":"The messages from twitter discuss the potential of AI agents in various industries, particularly in customer service and trading. There is a focus on the evolution and adoption of AI agents, with an emphasis on transparency and trust. The messages also touch on the impact of AI on job displacement and the reallocation of revenue from human capital to compute.\n\nAdditionally, there is mention of AI-generated content, such as videos and avatars, and the potential implications for governance and political agendas. The overall tone of the messages is bullish on the capabilities and potential of AI, while also acknowledging the potential risks and challenges associated with its widespread adoption.","data":[25,114,20,10,6,9,9,2,8,7,16,16,13,8,14,9,5,14,14,13,6,22,3,18,16,11,8,7,6,7,9,10,12,9,8,9,8,12,11,11,13,13,6,16,15,9,7,38,11,6,9,8,8,7,12]},{"label":"Memecoins","topics":"memecoins,memecoin,memes,meme,memetic","description":"The messages from @MemesAtWar on Twitter_crypto suggest a strong interest in meme coins and the meme culture surrounding them. There is a focus on bringing back the fun and viral aspects of meme coins, as well as discussing specific meme coins like $BOSS and $LIZARD. The community is also looking for low market cap coins to hold with strong conviction for the upcoming 2025 bull run.\n\nAdditionally, there is a mention of FluffPepe and its creator Mat Furie, highlighting the role he played in the evolution of memes. The community seems to appreciate the creativity and endless task of creating advertisements for FluffPepe.\n\nThere is also discussion about the Satoshi Nakamoto Meme Coin and its potential profitability in a spot trade. The community is excited about the potential breakout of $MEME and the listing of LIZARD on BitMart.\n\nOverall, the messages reflect a community that is passionate about meme coins, meme culture, and the potential for profitability in the crypto industry. They value creativity, humor, and the sense of community that meme coins bring.","data":[5,5,7,4,5,5,8,18,4,19,12,4,5,2,6,7,9,6,4,6,9,5,6,10,2,9,9,8,10,12,71,40,11,6,4,12,6,11,5,8,8,10,5,6,10,5,2,8,13,8,6,5,11,9,11]},{"label":"Art","topics":"artist,artists,painting,artwork,art","description":"The key topics currently discussed in the crypto industry on social media include:\n- Art week at OpenSea, with a focus on pixel art and trash performance art\n- Recognition of talented artists like @cryptorenya and appreciation for their work\n- Excitement about upcoming events and milestones in the digital art community, such as the celebration of Art Blocks' legacy and the exhibition at Toledo Museum\n- Engagement with NFT collections and initiatives, such as minting artwork on Photos on Chain and collecting pieces like \"View 1\" by @ruebyix\n- Community involvement and collaboration, such as painting art for the GeezOnApe community and sharing custom backgrounds\n- Recognition of high-quality art projects and collections, like Traversals and the AB500 project on Art Blocks\n\nOverall, the crypto community is actively engaged in discussing and appreciating various forms of digital art, NFT collections, and upcoming events in the industry.","data":[10,3,94,3,1,3,2,8,4,22,8,3,7,10,4,3,23,6,6,2,11,8,6,4,6,4,3,4,8,17,9,10,15,8,9,15,8,3,7,8,6,6,3,6,4,7,8,14,6,6,7,7,7,3,8]},{"label":"BTC price","topics":"110k,115k,112k,4h,114k","description":"The key topics currently being discussed on twitter include the potential for Bitcoin (BTC) to hit $150K by December, with speculation on which coin could potentially 5x from its current value. There is also discussion on the USD long term chart, with analysis on potential price targets and trendlines. Additionally, there are mentions of market orderbooks, market demand and supply levels, and potential price movements for Bitcoin in the near future. Some analysts are predicting a potential dump in Bitcoin's price, while others are more bullish on its future prospects. There is also discussion on accumulation levels and support zones for Bitcoin, as well as potential trading strategies and challenges. Overall, the sentiment seems to be mixed, with some traders cautious about potential downside risks, while others remain optimistic about Bitcoin's long-term growth potential.","data":[12,4,5,6,104,19,36,6,7,8,3,7,4,10,2,3,9,4,3,8,3,6,11,9,9,4,4,3,8,8,8,2,13,4,1,4,16,3,4,10,2,6,4,4,5,14,9,4,3,9,2,8,5,7,7]},{"label":"ETH price","topics":"4000,4k,3700,3500,3k","description":"The key topics currently being discussed in the crypto community on Twitter include the anticipation of Ethereum (ETH) reaching $4,000, with some users speculating on the potential for a new all-time high (ATH) and the exhaustion of the 4k supply. There is also mention of a potential pullback to $2,700 on ETH, as well as discussions on resistance levels and market trends. Additionally, there are comments on the normalcy of pullbacks in the market and the need for caution in predicting the top or a bear market. Overall, the sentiment seems to be bullish on ETH, with users excited about the potential for further price increases.","data":[4,3,4,6,1,4,4,1,6,2,5,4,3,2,129,77,5,4,1,4,1,1,6,7,3,3,8,4,7,0,2,5,6,3,2,3,5,8,6,4,5,4,4,6,4,5,7,6,5,7,2,2,8,4,2]},{"label":"Emotions in trading","topics":"emotions,panic,scared,trader,losses","description":"The messages from twitter highlight the importance of avoiding emotional trading and following a structured strategy in the crypto industry. It emphasizes the need to protect both capital and emotional energy in order to succeed. The messages also mention the significance of buying the dip to lower cost average and make a profit, as well as the importance of learning from past experiences and avoiding impulsive decisions based on hype or news. Additionally, it warns against individuals or companies who exploit others' losses for their own gain. Overall, the key takeaway is to approach trading in the crypto market with caution, discipline, and a focus on long-term success.","data":[9,2,5,10,7,1,3,12,9,3,9,6,5,8,3,7,12,6,5,8,17,5,6,8,4,8,7,5,7,1,14,9,4,6,21,16,4,4,3,7,7,12,9,10,6,9,9,9,7,34,4,3,5,7,6]},{"label":"Movies","topics":"spiderman,movie,film,fantastic,tom","description":"The key topics currently discussed in the crypto industry on social media include Absolute cinema, The Crown, Blade Runner 2049, Spiderman, MCU, Burt Lancaster, Red Notice, and KPop Demon Hunters. There is also mention of discussing film, concept art, and staying power of animated K-pop action film on Netflix. Overall, there seems to be a mix of entertainment and pop culture references in the discussions.","data":[3,8,4,5,5,5,3,2,4,10,3,8,2,3,1,4,16,2,10,3,16,2,8,7,1,4,5,7,9,5,8,5,24,5,3,9,3,1,10,7,3,11,7,3,21,12,2,5,10,8,3,4,19,9,12]},{"label":"Wallets","topics":"abstraction,embedded,blockchains,okx,wallets","description":"The key topics currently discussed in the crypto industry on social media include the launch of a developer wallet by Coinbase with automatic USDC rewards, the integration of Trust Wallet with OpenLedger to unlock a new era of AI-powered wallets, the launch of IDTrust by Hashgraph for secure digital ID verification, and the advancements in blockchain technology such as the NEAR account model and the ABDAO ecosystem. Additionally, there is discussion about the importance of off-chain computing and the potential of DATOS Blockchain for quantum-resistant security and revolutionary storage solutions. Overall, the industry is focused on innovation, partnerships, and advancements in technology to make blockchain and cryptocurrency more accessible and secure for users.","data":[7,3,10,5,4,25,10,3,20,5,8,5,17,7,4,6,8,5,4,3,4,4,2,3,7,5,4,6,0,6,4,4,6,8,10,3,8,8,2,5,1,6,6,4,3,3,6,1,11,9,13,9,5,5,8]},{"label":"GameFi","topics":"gaming,games,axie,gameplay,staratlas","description":"The key topics discussed in the messages from twitter are:\n- Crypto gaming being the real alpha in the gamefi sector\n- The MapleStory Universe team being passionate about the game and blockchain technology\n- The transformation of online social gaming through blockchain for transparency, fairness, and security\n- The success of Rebel Cars in delivering multiple games and creating an ecosystem with on-chain features\n- The growth of gaming on Linux\n- The excitement and innovation in the Web3 gaming community, with a focus on building and creating new experiences.","data":[3,2,6,5,0,1,4,4,5,2,9,4,1,6,2,4,6,6,62,4,11,4,7,2,5,2,2,4,2,7,10,2,7,8,3,15,8,2,7,4,5,4,1,4,6,6,0,10,1,3,5,4,6,23,5]},{"label":"Israel - Palestine","topics":"israel,gaza,hamas,jews,jewish","description":"The messages from @nationalpost regarding the Muslim voting block seem to focus on the conflict between Israel and Palestine, with strong opinions against Israel and its actions. There are mentions of terrorist organizations, the Israeli lobby, and the Israeli army's actions in Gaza. The messages also touch on the need for drastic action to be taken against what is perceived as Zionist terrorism. Overall, the tone is critical of Israel and supportive of Palestine.","data":[4,7,9,4,2,6,3,5,3,2,10,1,10,3,3,12,6,2,5,0,5,11,5,10,2,25,2,3,5,6,3,4,5,6,8,11,3,8,4,6,8,8,9,8,10,14,2,4,3,0,4,3,6,3,15]},{"label":"ETH","topics":"ethereumos,downtime,uptime,ethereums,10th","description":"The messages from twitter discuss various aspects of Ethereum, including its 10-year anniversary, the dominance of $ETH, the development of DApps, and the acceptance of Ethereum by companies like Porsche. There is also mention of Ethereum Classic and the growth of the Ethereum ecosystem. Overall, the messages highlight the continued relevance and importance of Ethereum in the crypto industry.","data":[3,2,6,9,1,5,6,5,5,1,5,2,3,3,30,76,5,4,4,2,1,5,3,1,3,3,4,7,5,2,6,2,3,4,4,1,1,1,3,6,1,3,6,4,1,4,7,5,7,1,4,3,5,2,9]},{"label":"ZORA","topics":"zora,mrbeast,altseason,fascinating,hodl","description":"The key topics currently discussed in the messages from twitter are:\n\n1. Zora ($ZORA) experiencing a potential 25% increase in the next 12 hours, with a focus on becoming the most trusted platform for launching and trading creator coins.\n2. Speculation and analysis on the price movements of Zora, including potential breakouts, rejection points, and buy opportunities.\n3. MrBeast's investment in Zora pre TGE in 2022.\n4. Discussion on resistance levels and potential pumps for Zora.\n5. Speculation on the future price movements of Zora, including potential breakouts and liquidation of bears.\n6. Analysis of other altcoins such as MORSE, FURY, and ZYGO, with discussions on price movements, market listings, and upcoming launches.\n7. Mention of the upcoming listing of ZEXXCOIN (ZEXX) on a trading platform.\n\nOverall, the discussions revolve around price analysis, market trends, potential investment opportunities, and upcoming developments in the crypto industry.","data":[11,4,3,3,3,6,3,24,7,4,5,2,8,6,1,2,10,10,0,16,2,4,4,8,1,4,3,4,6,3,7,4,0,3,12,3,9,6,0,2,5,4,3,10,2,4,2,1,9,7,3,4,3,4,3]},{"label":"TROLL","topics":"troll,100m,33m,5x,14m","description":"The key topics currently being discussed in the crypto community on Twitter include the surge in the price of the Solana meme coin $TROLL, which has seen significant price increases and high trading volumes. There are mentions of trolls and trolling behavior, with some users celebrating profits made from investing in $TROLL and others criticizing those who doubted its potential. Additionally, there is a mention of a trader who missed out on significant profits by selling their $TROLL holdings too early. Overall, the sentiment around $TROLL seems to be positive, with many users excited about its potential for further growth.","data":[7,1,1,1,2,3,3,12,2,4,3,2,4,2,1,5,4,1,3,7,5,3,9,9,3,1,5,3,3,4,4,5,6,2,4,5,2,8,2,1,7,9,6,3,4,3,3,3,1,70,2,4,2,4,3]},{"label":"NFTs","topics":"nfts,mints,collectibles,illiquidnft,nft","description":"The key topics discussed in the messages from twitter are:\n\n1. Collecting NFTs and how it is seen as fun and more than just a trend, but a cultural signal.\n2. The rise of NFT collectors and the excitement around new drops and collections.\n3. The discussion around the utility of NFTs beyond just being collectibles, including in-game perks and economic mechanics.\n4. The comparison between Eth NFTs and Solana NFTs, with a question about when Solana NFTs will make a comeback.\n5. The unique features of Saito NFTs, including their ability to run without smart contract bloat and being fractionalizable.\n6. The intersection of physical collectibles and NFTs, and the different experiences and motivations behind collecting in both realms.\n7. The announcement of a new NFT-related book available for pre-order at a discounted price.\n8. The mention of a trading platform for NFTs called SolSniper.\n9. The discussion around earning native yield on the chain when buying NFTs with a specific coin.\n10. The potential for attracting more creators to tokenize their art through increased interest in collecting tokenized art.","data":[2,3,7,4,1,1,4,7,2,13,7,6,2,4,7,4,3,13,1,2,4,5,9,6,3,3,4,3,6,7,2,5,1,32,2,2,2,6,2,0,5,6,4,0,6,5,6,6,5,1,6,0,8,5,7]},{"label":"UnionBuild","topics":"zkgm,union,unionbuild,interoperability,consensus","description":"The key topics currently being discussed in the crypto community on Twitter include the upcoming $U mainnet launch, the progress and developments of Union Build, the Zero-Knowledge Interoperability concept, the CometBLS consensus layer, and the Mad Yaps campaign. Users are excited about the potential of Union Build and are actively participating in discussions and activities related to the project. There is anticipation for the TGE and airdrop, as well as a focus on community engagement and mindshare. Overall, the sentiment towards Union Build seems positive and enthusiastic.","data":[4,2,2,7,0,1,5,7,8,8,11,3,7,1,1,2,1,2,3,2,0,6,2,3,4,6,12,7,1,4,3,0,3,2,3,1,2,6,3,0,3,9,3,6,3,3,7,5,6,1,40,5,8,0,16]},{"label":"Hacks and scams","topics":"scammers,scams,scam,victim,hacked","description":"The messages from twitter highlight the prevalence of crypto scams and the importance of being vigilant in the crypto industry. Scammers are using various tactics such as fake accounts, phishing emails, and cloning popular sites to steal cryptocurrencies from unsuspecting individuals. The messages also mention specific instances of scam operations and money laundering involving cryptocurrencies like Ethereum, USDT, XRP, and BTC.\n\nIt is crucial for individuals to educate themselves on how to spot crypto scams and safeguard their investments. Additionally, there is a mention of changing the perception of certain cryptocurrencies like Solana, which some individuals view as a \"memecoin\" or scam chain. Overall, the messages emphasize the need for caution and awareness in the crypto industry to protect oneself from falling victim to scams.","data":[5,4,5,8,0,3,1,6,5,5,1,5,2,3,3,3,6,4,5,1,1,7,3,1,7,5,2,3,2,1,7,2,2,4,2,10,3,6,4,6,2,48,1,9,6,0,4,4,1,2,5,1,10,0,1]},{"label":"RWA","topics":"rwas,rwa,plume,novastro,novastroxyz","description":"The key topics discussed in the messages from twitter are the rise of Real-World Assets (RWAs) in the crypto industry. Companies like Novastro and Centrifuge are mentioned as players in the RWA space, with a focus on tokenization and expanding to different blockchains. The importance of oracles in the RWA ecosystem is also highlighted, as they provide crucial data for asset-backed tokens. Additionally, partnerships and developments in the RWA sector, such as CaoCao's collaboration with Victory Securities for tokenizing electric vehicle assets, are mentioned. Overall, the messages suggest a growing interest and investment in RWAs, with potential for significant growth and innovation in the future.","data":[3,2,4,4,0,0,5,3,2,6,2,4,2,4,4,2,2,5,4,2,2,6,0,8,1,10,9,3,1,6,5,4,7,9,6,2,10,7,9,1,15,3,4,6,6,6,4,1,12,3,8,3,3,3,3]},{"label":"Pump.fun","topics":"pumpfun,pumpdotfun,alon,a1lon9,hated","description":"The crypto community on Twitter is currently discussing the recent pump fun event, which seems to have had a negative impact on the industry. Despite this, there are still some positive signs for $PUMP, with potential for positive announcements to drive the price back up. The team behind $PUMP is showing signs of waking up and there is optimism for a potential supercycle to begin. Additionally, there is speculation about the next big runner in the market, with various coins experiencing significant pumps recently.","data":[7,7,2,6,2,1,1,5,1,1,6,2,0,1,3,5,5,3,3,4,1,3,4,4,1,1,7,4,9,3,3,0,1,2,2,1,6,84,4,4,2,3,1,1,3,1,2,2,4,1,1,4,2,2,2]},{"label":"XRP","topics":"xrps,xrp,ripple,sma,outperforms","description":"The messages from twitter discuss various topics related to the cryptocurrency industry, with a focus on XRP (Ripple). Some key points mentioned include:\n\n- Speculation about the potential for XRP to skyrocket in value, with mentions of Brad Garlinghouse selling $200m of XRP at the top.\n- Discussion about XRP's role in traditional finance (TradFi) and government-controlled money, contrasting it with Bitcoin.\n- Reports on XRP's performance compared to Ethereum in terms of transaction revenue on Coinbase.\n- Updates on XRP's activity and the launch of a standalone server by David Schwartz to boost reliability.\n- Analysis of XRP's price movements and potential for a breakout.\n- Speculation on the future of XRP and the broader cryptocurrency market, with mentions of potential bullish news and FOMO (fear of missing out) driving prices.\n\nOverall, the messages suggest a mix of excitement, speculation, and analysis surrounding XRP and its potential impact on the cryptocurrency market.","data":[7,6,2,1,2,2,4,3,4,3,6,4,4,6,2,6,3,6,5,1,0,3,5,7,5,5,4,4,9,0,4,5,4,0,9,5,16,3,4,5,4,5,6,5,2,6,4,2,9,5,0,4,3,5,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-83.ts b/priv/repo/major_topics_seed/data-83.ts deleted file mode 100644 index 6966fac1bc..0000000000 --- a/priv/repo/major_topics_seed/data-83.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '31.07.25', - '01.08.25', - '01.08.25', - '01.08.25', - '01.08.25', - '01.08.25', - '01.08.25', - '01.08.25', - '02.08.25', - '02.08.25', - '02.08.25', - '02.08.25', - '02.08.25', - '02.08.25', - '02.08.25', - '02.08.25', - '03.08.25', - '03.08.25', - '03.08.25', - '03.08.25', - '03.08.25', - '03.08.25', - '03.08.25', - '03.08.25', - '04.08.25', - '04.08.25', - '04.08.25', - '04.08.25', - '04.08.25', - '04.08.25', - '04.08.25', - '04.08.25', - '05.08.25', - '05.08.25', - '05.08.25', - '05.08.25', - '05.08.25', - '05.08.25', - '05.08.25', - '05.08.25', - '06.08.25', - '06.08.25', - '06.08.25', - '06.08.25', - '06.08.25', - '06.08.25', - '06.08.25', - '06.08.25', - '07.08.25', - '07.08.25', - '07.08.25', - '07.08.25', - '07.08.25', - '07.08.25', - '07.08.25', - ], - datasets: [ - { - label: 'BTC vs Fiat', - topics: 'portaltobitcoin,portal,bitcoiners,fiat,bitcoiner', - description: - 'The key topics discussed in the messages from @joshuatrees_ and other users include:\n1. Bitcoin being considered as digital gold and a safer option than fiat currency.\n2. The potential for Bitcoin to replace traditional banking systems.\n3. The belief that Bitcoin is valuable and will continue to be successful despite criticisms.\n4. The idea that Bitcoin is a better option in the face of inflation.\n5. The debate between fiat currency and Bitcoin as a store of value.\n6. The concept of commoditization and the potential impact on various industries.\n7. The discussion around the value of assets priced in fiat currency compared to Bitcoin.\n8. The idea that Bitcoin is a hedge against the devaluation of fiat currency.\n\nOverall, the messages reflect a positive sentiment towards Bitcoin as a valuable asset and a potential alternative to traditional financial systems.', - data: [ - 12, 10, 16, 19, 179, 4, 14, 19, 25, 9, 26, 12, 18, 7, 18, 15, 27, 11, 15, 16, 28, 10, 16, - 16, 16, 13, 13, 13, 16, 17, 10, 9, 9, 9, 19, 29, 22, 13, 8, 16, 26, 16, 8, 25, 11, 19, 14, - 25, 14, 8, 15, 9, 14, 12, 8, - ], - }, - { - label: 'AI', - topics: 'theoriq,agent,agents,ais,autonomous', - description: - 'The messages from twitter discuss the potential of AI agents in various industries, particularly in customer service and trading. There is a focus on the evolution and adoption of AI agents, with an emphasis on transparency and trust. The messages also touch on the impact of AI on job displacement and the reallocation of revenue from human capital to compute.\n\nAdditionally, there is mention of AI-generated content, such as videos and avatars, and the potential implications for governance and political agendas. The overall tone of the messages is bullish on the capabilities and potential of AI, while also acknowledging the potential risks and challenges associated with its widespread adoption.', - data: [ - 25, 114, 20, 10, 6, 9, 9, 2, 8, 7, 16, 16, 13, 8, 14, 9, 5, 14, 14, 13, 6, 22, 3, 18, 16, - 11, 8, 7, 6, 7, 9, 10, 12, 9, 8, 9, 8, 12, 11, 11, 13, 13, 6, 16, 15, 9, 7, 38, 11, 6, 9, 8, - 8, 7, 12, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memecoin,memes,meme,memetic', - description: - 'The messages from @MemesAtWar on Twitter_crypto suggest a strong interest in meme coins and the meme culture surrounding them. There is a focus on bringing back the fun and viral aspects of meme coins, as well as discussing specific meme coins like $BOSS and $LIZARD. The community is also looking for low market cap coins to hold with strong conviction for the upcoming 2025 bull run.\n\nAdditionally, there is a mention of FluffPepe and its creator Mat Furie, highlighting the role he played in the evolution of memes. The community seems to appreciate the creativity and endless task of creating advertisements for FluffPepe.\n\nThere is also discussion about the Satoshi Nakamoto Meme Coin and its potential profitability in a spot trade. The community is excited about the potential breakout of $MEME and the listing of LIZARD on BitMart.\n\nOverall, the messages reflect a community that is passionate about meme coins, meme culture, and the potential for profitability in the crypto industry. They value creativity, humor, and the sense of community that meme coins bring.', - data: [ - 5, 5, 7, 4, 5, 5, 8, 18, 4, 19, 12, 4, 5, 2, 6, 7, 9, 6, 4, 6, 9, 5, 6, 10, 2, 9, 9, 8, 10, - 12, 71, 40, 11, 6, 4, 12, 6, 11, 5, 8, 8, 10, 5, 6, 10, 5, 2, 8, 13, 8, 6, 5, 11, 9, 11, - ], - }, - { - label: 'Art', - topics: 'artist,artists,painting,artwork,art', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- Art week at OpenSea, with a focus on pixel art and trash performance art\n- Recognition of talented artists like @cryptorenya and appreciation for their work\n- Excitement about upcoming events and milestones in the digital art community, such as the celebration of Art Blocks\' legacy and the exhibition at Toledo Museum\n- Engagement with NFT collections and initiatives, such as minting artwork on Photos on Chain and collecting pieces like "View 1" by @ruebyix\n- Community involvement and collaboration, such as painting art for the GeezOnApe community and sharing custom backgrounds\n- Recognition of high-quality art projects and collections, like Traversals and the AB500 project on Art Blocks\n\nOverall, the crypto community is actively engaged in discussing and appreciating various forms of digital art, NFT collections, and upcoming events in the industry.', - data: [ - 10, 3, 94, 3, 1, 3, 2, 8, 4, 22, 8, 3, 7, 10, 4, 3, 23, 6, 6, 2, 11, 8, 6, 4, 6, 4, 3, 4, 8, - 17, 9, 10, 15, 8, 9, 15, 8, 3, 7, 8, 6, 6, 3, 6, 4, 7, 8, 14, 6, 6, 7, 7, 7, 3, 8, - ], - }, - { - label: 'BTC price', - topics: '110k,115k,112k,4h,114k', - description: - "The key topics currently being discussed on twitter include the potential for Bitcoin (BTC) to hit $150K by December, with speculation on which coin could potentially 5x from its current value. There is also discussion on the USD long term chart, with analysis on potential price targets and trendlines. Additionally, there are mentions of market orderbooks, market demand and supply levels, and potential price movements for Bitcoin in the near future. Some analysts are predicting a potential dump in Bitcoin's price, while others are more bullish on its future prospects. There is also discussion on accumulation levels and support zones for Bitcoin, as well as potential trading strategies and challenges. Overall, the sentiment seems to be mixed, with some traders cautious about potential downside risks, while others remain optimistic about Bitcoin's long-term growth potential.", - data: [ - 12, 4, 5, 6, 104, 19, 36, 6, 7, 8, 3, 7, 4, 10, 2, 3, 9, 4, 3, 8, 3, 6, 11, 9, 9, 4, 4, 3, - 8, 8, 8, 2, 13, 4, 1, 4, 16, 3, 4, 10, 2, 6, 4, 4, 5, 14, 9, 4, 3, 9, 2, 8, 5, 7, 7, - ], - }, - { - label: 'ETH price', - topics: '4000,4k,3700,3500,3k', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the anticipation of Ethereum (ETH) reaching $4,000, with some users speculating on the potential for a new all-time high (ATH) and the exhaustion of the 4k supply. There is also mention of a potential pullback to $2,700 on ETH, as well as discussions on resistance levels and market trends. Additionally, there are comments on the normalcy of pullbacks in the market and the need for caution in predicting the top or a bear market. Overall, the sentiment seems to be bullish on ETH, with users excited about the potential for further price increases.', - data: [ - 4, 3, 4, 6, 1, 4, 4, 1, 6, 2, 5, 4, 3, 2, 129, 77, 5, 4, 1, 4, 1, 1, 6, 7, 3, 3, 8, 4, 7, 0, - 2, 5, 6, 3, 2, 3, 5, 8, 6, 4, 5, 4, 4, 6, 4, 5, 7, 6, 5, 7, 2, 2, 8, 4, 2, - ], - }, - { - label: 'Emotions in trading', - topics: 'emotions,panic,scared,trader,losses', - description: - "The messages from twitter highlight the importance of avoiding emotional trading and following a structured strategy in the crypto industry. It emphasizes the need to protect both capital and emotional energy in order to succeed. The messages also mention the significance of buying the dip to lower cost average and make a profit, as well as the importance of learning from past experiences and avoiding impulsive decisions based on hype or news. Additionally, it warns against individuals or companies who exploit others' losses for their own gain. Overall, the key takeaway is to approach trading in the crypto market with caution, discipline, and a focus on long-term success.", - data: [ - 9, 2, 5, 10, 7, 1, 3, 12, 9, 3, 9, 6, 5, 8, 3, 7, 12, 6, 5, 8, 17, 5, 6, 8, 4, 8, 7, 5, 7, - 1, 14, 9, 4, 6, 21, 16, 4, 4, 3, 7, 7, 12, 9, 10, 6, 9, 9, 9, 7, 34, 4, 3, 5, 7, 6, - ], - }, - { - label: 'Movies', - topics: 'spiderman,movie,film,fantastic,tom', - description: - 'The key topics currently discussed in the crypto industry on social media include Absolute cinema, The Crown, Blade Runner 2049, Spiderman, MCU, Burt Lancaster, Red Notice, and KPop Demon Hunters. There is also mention of discussing film, concept art, and staying power of animated K-pop action film on Netflix. Overall, there seems to be a mix of entertainment and pop culture references in the discussions.', - data: [ - 3, 8, 4, 5, 5, 5, 3, 2, 4, 10, 3, 8, 2, 3, 1, 4, 16, 2, 10, 3, 16, 2, 8, 7, 1, 4, 5, 7, 9, - 5, 8, 5, 24, 5, 3, 9, 3, 1, 10, 7, 3, 11, 7, 3, 21, 12, 2, 5, 10, 8, 3, 4, 19, 9, 12, - ], - }, - { - label: 'Wallets', - topics: 'abstraction,embedded,blockchains,okx,wallets', - description: - 'The key topics currently discussed in the crypto industry on social media include the launch of a developer wallet by Coinbase with automatic USDC rewards, the integration of Trust Wallet with OpenLedger to unlock a new era of AI-powered wallets, the launch of IDTrust by Hashgraph for secure digital ID verification, and the advancements in blockchain technology such as the NEAR account model and the ABDAO ecosystem. Additionally, there is discussion about the importance of off-chain computing and the potential of DATOS Blockchain for quantum-resistant security and revolutionary storage solutions. Overall, the industry is focused on innovation, partnerships, and advancements in technology to make blockchain and cryptocurrency more accessible and secure for users.', - data: [ - 7, 3, 10, 5, 4, 25, 10, 3, 20, 5, 8, 5, 17, 7, 4, 6, 8, 5, 4, 3, 4, 4, 2, 3, 7, 5, 4, 6, 0, - 6, 4, 4, 6, 8, 10, 3, 8, 8, 2, 5, 1, 6, 6, 4, 3, 3, 6, 1, 11, 9, 13, 9, 5, 5, 8, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,axie,gameplay,staratlas', - description: - 'The key topics discussed in the messages from twitter are:\n- Crypto gaming being the real alpha in the gamefi sector\n- The MapleStory Universe team being passionate about the game and blockchain technology\n- The transformation of online social gaming through blockchain for transparency, fairness, and security\n- The success of Rebel Cars in delivering multiple games and creating an ecosystem with on-chain features\n- The growth of gaming on Linux\n- The excitement and innovation in the Web3 gaming community, with a focus on building and creating new experiences.', - data: [ - 3, 2, 6, 5, 0, 1, 4, 4, 5, 2, 9, 4, 1, 6, 2, 4, 6, 6, 62, 4, 11, 4, 7, 2, 5, 2, 2, 4, 2, 7, - 10, 2, 7, 8, 3, 15, 8, 2, 7, 4, 5, 4, 1, 4, 6, 6, 0, 10, 1, 3, 5, 4, 6, 23, 5, - ], - }, - { - label: 'Israel - Palestine', - topics: 'israel,gaza,hamas,jews,jewish', - description: - "The messages from @nationalpost regarding the Muslim voting block seem to focus on the conflict between Israel and Palestine, with strong opinions against Israel and its actions. There are mentions of terrorist organizations, the Israeli lobby, and the Israeli army's actions in Gaza. The messages also touch on the need for drastic action to be taken against what is perceived as Zionist terrorism. Overall, the tone is critical of Israel and supportive of Palestine.", - data: [ - 4, 7, 9, 4, 2, 6, 3, 5, 3, 2, 10, 1, 10, 3, 3, 12, 6, 2, 5, 0, 5, 11, 5, 10, 2, 25, 2, 3, 5, - 6, 3, 4, 5, 6, 8, 11, 3, 8, 4, 6, 8, 8, 9, 8, 10, 14, 2, 4, 3, 0, 4, 3, 6, 3, 15, - ], - }, - { - label: 'ETH', - topics: 'ethereumos,downtime,uptime,ethereums,10th', - description: - 'The messages from twitter discuss various aspects of Ethereum, including its 10-year anniversary, the dominance of $ETH, the development of DApps, and the acceptance of Ethereum by companies like Porsche. There is also mention of Ethereum Classic and the growth of the Ethereum ecosystem. Overall, the messages highlight the continued relevance and importance of Ethereum in the crypto industry.', - data: [ - 3, 2, 6, 9, 1, 5, 6, 5, 5, 1, 5, 2, 3, 3, 30, 76, 5, 4, 4, 2, 1, 5, 3, 1, 3, 3, 4, 7, 5, 2, - 6, 2, 3, 4, 4, 1, 1, 1, 3, 6, 1, 3, 6, 4, 1, 4, 7, 5, 7, 1, 4, 3, 5, 2, 9, - ], - }, - { - label: 'ZORA', - topics: 'zora,mrbeast,altseason,fascinating,hodl', - description: - "The key topics currently discussed in the messages from twitter are:\n\n1. Zora ($ZORA) experiencing a potential 25% increase in the next 12 hours, with a focus on becoming the most trusted platform for launching and trading creator coins.\n2. Speculation and analysis on the price movements of Zora, including potential breakouts, rejection points, and buy opportunities.\n3. MrBeast's investment in Zora pre TGE in 2022.\n4. Discussion on resistance levels and potential pumps for Zora.\n5. Speculation on the future price movements of Zora, including potential breakouts and liquidation of bears.\n6. Analysis of other altcoins such as MORSE, FURY, and ZYGO, with discussions on price movements, market listings, and upcoming launches.\n7. Mention of the upcoming listing of ZEXXCOIN (ZEXX) on a trading platform.\n\nOverall, the discussions revolve around price analysis, market trends, potential investment opportunities, and upcoming developments in the crypto industry.", - data: [ - 11, 4, 3, 3, 3, 6, 3, 24, 7, 4, 5, 2, 8, 6, 1, 2, 10, 10, 0, 16, 2, 4, 4, 8, 1, 4, 3, 4, 6, - 3, 7, 4, 0, 3, 12, 3, 9, 6, 0, 2, 5, 4, 3, 10, 2, 4, 2, 1, 9, 7, 3, 4, 3, 4, 3, - ], - }, - { - label: 'TROLL', - topics: 'troll,100m,33m,5x,14m', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the surge in the price of the Solana meme coin $TROLL, which has seen significant price increases and high trading volumes. There are mentions of trolls and trolling behavior, with some users celebrating profits made from investing in $TROLL and others criticizing those who doubted its potential. Additionally, there is a mention of a trader who missed out on significant profits by selling their $TROLL holdings too early. Overall, the sentiment around $TROLL seems to be positive, with many users excited about its potential for further growth.', - data: [ - 7, 1, 1, 1, 2, 3, 3, 12, 2, 4, 3, 2, 4, 2, 1, 5, 4, 1, 3, 7, 5, 3, 9, 9, 3, 1, 5, 3, 3, 4, - 4, 5, 6, 2, 4, 5, 2, 8, 2, 1, 7, 9, 6, 3, 4, 3, 3, 3, 1, 70, 2, 4, 2, 4, 3, - ], - }, - { - label: 'NFTs', - topics: 'nfts,mints,collectibles,illiquidnft,nft', - description: - 'The key topics discussed in the messages from twitter are:\n\n1. Collecting NFTs and how it is seen as fun and more than just a trend, but a cultural signal.\n2. The rise of NFT collectors and the excitement around new drops and collections.\n3. The discussion around the utility of NFTs beyond just being collectibles, including in-game perks and economic mechanics.\n4. The comparison between Eth NFTs and Solana NFTs, with a question about when Solana NFTs will make a comeback.\n5. The unique features of Saito NFTs, including their ability to run without smart contract bloat and being fractionalizable.\n6. The intersection of physical collectibles and NFTs, and the different experiences and motivations behind collecting in both realms.\n7. The announcement of a new NFT-related book available for pre-order at a discounted price.\n8. The mention of a trading platform for NFTs called SolSniper.\n9. The discussion around earning native yield on the chain when buying NFTs with a specific coin.\n10. The potential for attracting more creators to tokenize their art through increased interest in collecting tokenized art.', - data: [ - 2, 3, 7, 4, 1, 1, 4, 7, 2, 13, 7, 6, 2, 4, 7, 4, 3, 13, 1, 2, 4, 5, 9, 6, 3, 3, 4, 3, 6, 7, - 2, 5, 1, 32, 2, 2, 2, 6, 2, 0, 5, 6, 4, 0, 6, 5, 6, 6, 5, 1, 6, 0, 8, 5, 7, - ], - }, - { - label: 'UnionBuild', - topics: 'zkgm,union,unionbuild,interoperability,consensus', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the upcoming $U mainnet launch, the progress and developments of Union Build, the Zero-Knowledge Interoperability concept, the CometBLS consensus layer, and the Mad Yaps campaign. Users are excited about the potential of Union Build and are actively participating in discussions and activities related to the project. There is anticipation for the TGE and airdrop, as well as a focus on community engagement and mindshare. Overall, the sentiment towards Union Build seems positive and enthusiastic.', - data: [ - 4, 2, 2, 7, 0, 1, 5, 7, 8, 8, 11, 3, 7, 1, 1, 2, 1, 2, 3, 2, 0, 6, 2, 3, 4, 6, 12, 7, 1, 4, - 3, 0, 3, 2, 3, 1, 2, 6, 3, 0, 3, 9, 3, 6, 3, 3, 7, 5, 6, 1, 40, 5, 8, 0, 16, - ], - }, - { - label: 'Hacks and scams', - topics: 'scammers,scams,scam,victim,hacked', - description: - 'The messages from twitter highlight the prevalence of crypto scams and the importance of being vigilant in the crypto industry. Scammers are using various tactics such as fake accounts, phishing emails, and cloning popular sites to steal cryptocurrencies from unsuspecting individuals. The messages also mention specific instances of scam operations and money laundering involving cryptocurrencies like Ethereum, USDT, XRP, and BTC.\n\nIt is crucial for individuals to educate themselves on how to spot crypto scams and safeguard their investments. Additionally, there is a mention of changing the perception of certain cryptocurrencies like Solana, which some individuals view as a "memecoin" or scam chain. Overall, the messages emphasize the need for caution and awareness in the crypto industry to protect oneself from falling victim to scams.', - data: [ - 5, 4, 5, 8, 0, 3, 1, 6, 5, 5, 1, 5, 2, 3, 3, 3, 6, 4, 5, 1, 1, 7, 3, 1, 7, 5, 2, 3, 2, 1, 7, - 2, 2, 4, 2, 10, 3, 6, 4, 6, 2, 48, 1, 9, 6, 0, 4, 4, 1, 2, 5, 1, 10, 0, 1, - ], - }, - { - label: 'RWA', - topics: 'rwas,rwa,plume,novastro,novastroxyz', - description: - "The key topics discussed in the messages from twitter are the rise of Real-World Assets (RWAs) in the crypto industry. Companies like Novastro and Centrifuge are mentioned as players in the RWA space, with a focus on tokenization and expanding to different blockchains. The importance of oracles in the RWA ecosystem is also highlighted, as they provide crucial data for asset-backed tokens. Additionally, partnerships and developments in the RWA sector, such as CaoCao's collaboration with Victory Securities for tokenizing electric vehicle assets, are mentioned. Overall, the messages suggest a growing interest and investment in RWAs, with potential for significant growth and innovation in the future.", - data: [ - 3, 2, 4, 4, 0, 0, 5, 3, 2, 6, 2, 4, 2, 4, 4, 2, 2, 5, 4, 2, 2, 6, 0, 8, 1, 10, 9, 3, 1, 6, - 5, 4, 7, 9, 6, 2, 10, 7, 9, 1, 15, 3, 4, 6, 6, 6, 4, 1, 12, 3, 8, 3, 3, 3, 3, - ], - }, - { - label: 'Pump.fun', - topics: 'pumpfun,pumpdotfun,alon,a1lon9,hated', - description: - 'The crypto community on Twitter is currently discussing the recent pump fun event, which seems to have had a negative impact on the industry. Despite this, there are still some positive signs for $PUMP, with potential for positive announcements to drive the price back up. The team behind $PUMP is showing signs of waking up and there is optimism for a potential supercycle to begin. Additionally, there is speculation about the next big runner in the market, with various coins experiencing significant pumps recently.', - data: [ - 7, 7, 2, 6, 2, 1, 1, 5, 1, 1, 6, 2, 0, 1, 3, 5, 5, 3, 3, 4, 1, 3, 4, 4, 1, 1, 7, 4, 9, 3, 3, - 0, 1, 2, 2, 1, 6, 84, 4, 4, 2, 3, 1, 1, 3, 1, 2, 2, 4, 1, 1, 4, 2, 2, 2, - ], - }, - { - label: 'XRP', - topics: 'xrps,xrp,ripple,sma,outperforms', - description: - "The messages from twitter discuss various topics related to the cryptocurrency industry, with a focus on XRP (Ripple). Some key points mentioned include:\n\n- Speculation about the potential for XRP to skyrocket in value, with mentions of Brad Garlinghouse selling $200m of XRP at the top.\n- Discussion about XRP's role in traditional finance (TradFi) and government-controlled money, contrasting it with Bitcoin.\n- Reports on XRP's performance compared to Ethereum in terms of transaction revenue on Coinbase.\n- Updates on XRP's activity and the launch of a standalone server by David Schwartz to boost reliability.\n- Analysis of XRP's price movements and potential for a breakout.\n- Speculation on the future of XRP and the broader cryptocurrency market, with mentions of potential bullish news and FOMO (fear of missing out) driving prices.\n\nOverall, the messages suggest a mix of excitement, speculation, and analysis surrounding XRP and its potential impact on the cryptocurrency market.", - data: [ - 7, 6, 2, 1, 2, 2, 4, 3, 4, 3, 6, 4, 4, 6, 2, 6, 3, 6, 5, 1, 0, 3, 5, 7, 5, 5, 4, 4, 9, 0, 4, - 5, 4, 0, 9, 5, 16, 3, 4, 5, 4, 5, 6, 5, 2, 6, 4, 2, 9, 5, 0, 4, 3, 5, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-84.json b/priv/repo/major_topics_seed/data-84.json deleted file mode 100644 index 76603dffa2..0000000000 --- a/priv/repo/major_topics_seed/data-84.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["07.08.25","08.08.25","08.08.25","08.08.25","08.08.25","08.08.25","08.08.25","08.08.25","09.08.25","09.08.25","09.08.25","09.08.25","09.08.25","09.08.25","09.08.25","09.08.25","10.08.25","10.08.25","10.08.25","10.08.25","10.08.25","10.08.25","10.08.25","10.08.25","11.08.25","11.08.25","11.08.25","11.08.25","11.08.25","11.08.25","11.08.25","11.08.25","12.08.25","12.08.25","12.08.25","12.08.25","12.08.25","12.08.25","12.08.25","12.08.25","13.08.25","13.08.25","13.08.25","13.08.25","13.08.25","13.08.25","13.08.25","13.08.25","14.08.25","14.08.25","14.08.25","14.08.25","14.08.25","14.08.25","14.08.25"],"datasets":[{"label":"ETH price","topics":"4000,4400,4500,4k,4300","description":"The key topic currently discussed in the crypto industry on social media platforms such as Twitter includes the significant price increase of Ethereum (ETH). Users are excited about ETH breaking above $4,000 and reaching new all-time highs. There is speculation about ETH potentially reaching $13,000, with discussions about resistance zones and potential pullbacks. Traders are turning bullish on ETH, with mentions of altseason being activated. Some users are cautioning against overly optimistic price predictions, warning against potential losses for inexperienced traders. Overall, there is a sense of anticipation and excitement surrounding ETH's price movements and the possibility of a new ATH in the near future.","data":[14,11,8,18,5,2,34,15,7,14,9,11,7,6,7,90,303,220,9,22,8,4,7,12,40,7,8,7,8,8,7,18,8,15,9,6,5,20,5,14,10,7,10,10,10,5,10,12,16,15,1,6,8,13,9]},{"label":"BTC","topics":"btcnewsalerts,meetup,btcforfreedom,adam3us,roxomtv","description":"The key topic currently discussed in the messages from twitter, twitter_news, and twitter_nft is Bitcoin. The messages mention various aspects of Bitcoin, such as its potential as an opportunity, its code quality, the importance of understanding cryptography in the Bitcoin ecosystem, and the impact of Bitcoin on people's lives. Additionally, there are references to Bitcoin-related books, events, and communities. Overall, the sentiment towards Bitcoin in these messages appears to be positive and supportive.","data":[16,15,22,21,32,33,4,14,13,17,16,28,14,22,12,21,0,8,28,26,16,29,24,24,13,14,11,15,17,21,25,18,15,19,16,18,25,24,15,14,18,27,15,13,21,12,24,9,24,19,19,19,15,28,14]},{"label":"Art","topics":"artists,artist,painting,canvas,gallery","description":"The key topic discussed in the messages from the social media accounts is the appreciation and promotion of various forms of art, including paintings, photography, and digital collage. There is a focus on the value and uniqueness of art pieces, with mentions of art collections, art styles, and the emotional impact of creating and viewing art. Additionally, there is a mention of NFTs (Non-Fungible Tokens) in relation to art, highlighting the trend of investing in digital assets. Overall, the conversation revolves around the beauty and significance of art in various forms.","data":[19,11,195,17,3,13,1,7,17,13,25,20,18,19,19,9,0,11,19,22,13,19,20,16,9,23,16,9,9,7,28,19,17,28,20,14,26,16,14,13,14,17,4,16,13,14,17,19,18,6,11,18,12,8,25]},{"label":"SOL","topics":"solanas,sol,lagging,solana,hong","description":"The key topics currently being discussed in the crypto industry on social media platforms include Solana (SOL) lagging behind, Ethereum (ETH) gaining momentum against SOL, and Bitcoin (BTC) remaining flat. There is speculation about whether SOL can hold above $200 and if BTC can reclaim $120k. Additionally, there is excitement about altseason, with mentions of other cryptocurrencies such as Avalanche, Link, Aave, and UNI being good investments. There is also discussion about the unique features of building on Solana and the potential for SOL/BTC and SOL/USD trading pairs. Overall, the sentiment seems positive towards SOL and ETH, with anticipation for potential price movements in the market.","data":[5,5,11,14,9,9,17,14,14,14,23,15,11,16,8,16,34,12,16,18,13,25,14,22,23,14,16,16,16,15,24,21,10,25,14,20,11,21,19,10,7,12,7,16,56,24,17,16,23,15,10,15,15,10,9]},{"label":"Israel and Palestine","topics":"israel,journalist,killed,west,al","description":"The messages from the social media accounts twitter, twitter_news, and twitter_nft primarily focus on the ongoing conflict in Gaza involving Israel and Palestine. The messages discuss the killing of journalists reporting on the conflict, the complicity of Arab states, the establishment of settlements in the West Bank, and the use of spy planes in the region. There are also mentions of attacks on Jewish students and the importance of verifying information before sharing it. The overall sentiment in these messages is critical of Israel's actions and calls for accountability and justice.","data":[21,17,16,16,3,6,31,6,14,7,9,16,6,16,12,9,0,3,16,18,8,8,8,8,10,21,37,43,9,14,11,11,6,17,17,14,17,9,16,7,19,14,22,10,13,12,11,13,6,8,7,8,15,3,12]},{"label":"AI","topics":"assistant,ainative,agi,humans,llms","description":"The key topics currently being discussed in the crypto industry on social media include the intersection of AI and crypto, the potential risks of AI systems to humanity, the importance of privacy and security in AI development, the rise of decentralized AI, and the impact of AI on various industries such as consulting and blockchain technology. There is also a focus on building AI agents that can control assets on a blockchain and the need for adaptation and innovation in the AI age. Additionally, there is discussion about the development of AI-native research bases and the potential for AI to act autonomously. Overall, the conversation highlights the growing importance and impact of AI technology in the crypto industry.","data":[20,78,12,9,5,6,6,15,8,10,11,14,10,10,7,12,0,11,8,8,10,15,14,10,11,14,26,7,6,8,5,10,14,13,12,9,17,19,14,17,12,22,6,5,13,10,8,10,14,9,8,12,7,7,5]},{"label":"DOG","topics":"dog,krakenfx,runes,army,rune","description":"The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are related to the cryptocurrency $DOG. The messages mention the excitement and bullish sentiment surrounding $DOG, its connection to Bitcoin, its potential to reach all-time highs, and its unique position in the meme coin market. Additionally, there are mentions of contests, promotions, and new tokens related to $DOG, such as the DOGWALK Token and CCDOG. Overall, the $DOG community seems to be active and enthusiastic about the future of the cryptocurrency.","data":[7,3,9,10,14,8,5,7,11,14,12,12,8,19,102,5,1,1,9,17,6,8,9,9,6,9,9,14,14,24,9,17,16,13,5,10,15,4,9,7,14,18,5,9,13,6,14,13,6,12,12,4,13,7,6]},{"label":"DeFi","topics":"buildonbob,defi,bob,defis,katana","description":"The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are related to DeFi (Decentralized Finance) and its various aspects. Some of the specific topics mentioned include:\n- The growth and evolution of DeFi, with references to its Gartner hype cycle and how it has become more mainstream over the years.\n- Specific projects and platforms within the DeFi space, such as ParaVerseNet, NetworkNoya, BENQI, Manyu swap, and MorphoLabs.\n- The integration of traditional finance markets, such as Asia's $20 trillion credit market, with DeFi to provide more accessible and transparent yield opportunities.\n- The use of data and analytics in DeFi, with mentions of companies like Nomis providing on-chain data for lending protocols.\n- The concept of yield farming and staking in DeFi, with references to earning rewards through various DeFi activities.\n- The potential for DeFi to revolutionize finance and provide new opportunities for investors and users.\n\nOverall, the messages highlight the continued growth and innovation within the DeFi space, as well as the increasing interest and adoption of decentralized financial solutions.","data":[10,10,10,10,7,6,2,14,8,6,6,10,14,48,6,11,1,9,14,19,18,7,12,7,9,12,17,11,13,15,5,9,9,10,13,9,9,13,15,13,7,10,15,6,17,11,11,14,7,18,9,16,9,10,20]},{"label":"Bitcoin vs Fiat","topics":"economics,fixes,fiat,bitcoiners,sovereignty","description":"The key topics discussed in the messages from twitter, twitter_news, and twitter_nft are:\n1. The importance of staying intolerant towards the fiat system and embracing Bitcoin as a way to disrupt traditional financial systems.\n2. The belief that insurance companies will eventually realize the need for Bitcoin, even if they don't currently understand its value.\n3. The idea that Bitcoin provides clarity and insight into how the world truly works, which is difficult to grasp with a fiat mindset.\n4. The discussion around the invention and purpose of Bitcoin, Ethereum, and Solana, with conspiracy theories about their origins and intentions.\n5. The importance of staying paid at all costs in business, with a focus on using Bitcoin for secure payment processing to avoid hold-ups and financial risks.","data":[8,2,8,13,58,62,1,7,21,10,8,8,5,6,3,11,0,3,6,16,14,7,13,12,7,6,14,11,7,10,8,7,9,6,6,13,17,9,3,7,9,4,6,10,20,13,8,8,24,4,8,8,7,3,9]},{"label":"GPT-5","topics":"gpt5,gpt,openai,chatgpt,rollout","description":"The key topics currently being discussed on social media accounts related to the crypto industry include the launch of GPT-5, its performance compared to previous models like GPT-4 and GPT-3, concerns about its reliability and automatic switching between models, and the removal of older models. There is also discussion about AI security issues, the use of GPT-5 for medical questions, and the rising mental health challenges in India. Additionally, there is excitement about the release of a new AI model called \"Recall Predict\" by the Recall community.","data":[11,11,14,10,2,0,2,2,2,30,4,7,6,3,7,7,0,1,16,9,6,9,37,9,8,10,13,7,8,10,10,7,11,11,9,34,12,9,11,12,14,8,5,3,11,7,13,9,13,4,9,20,4,16,11]},{"label":"Ukraine - Russia","topics":"putin,ukraine,russian,russia,meeting","description":"The key topics discussed in the messages are related to the ongoing conflict between Russia and Ukraine, with mentions of President Trump, President Putin, and the situation in Ukraine. There is also a mention of the Digital Hryvnia and Sl8 integrating a central bank digital currency. The messages also touch on the US constitution and potential war on the US population.","data":[11,9,8,6,1,1,29,11,2,3,7,12,6,10,6,4,0,6,10,6,4,5,8,3,6,9,3,8,12,6,7,23,6,7,6,7,5,11,4,3,13,16,12,9,7,2,7,16,7,6,62,5,9,0,6]},{"label":"CPI and inflation","topics":"ppi,yoy,cpi,02,27","description":"The messages from the Twitter accounts suggest that inflation metrics are accelerating, with the US CPI month-over-month (m/m) coming in at 0.2% as forecasted. Despite this, the sentiment is that inflation is now under control, leading to calls for rate cuts. There are mentions of core goods and services inflation, with some surprises in the data such as PPI inflation coming in higher than expected. The overall tone is one of concern and scrutiny over inflation data, especially in light of recent events such as the firing of BLS officials. The topic of inflation is being closely monitored and analyzed by analysts and investors in the crypto industry.","data":[6,9,11,4,5,0,14,0,6,2,11,19,10,4,7,6,0,1,16,11,1,5,6,11,2,5,122,7,7,2,7,6,5,4,6,2,3,12,6,9,7,12,3,2,5,4,5,4,6,9,8,7,2,11,13]},{"label":"NFTs","topics":"nfts,nft,collections,collection,nathanheadphoto","description":"The key topics currently being discussed in the crypto industry on social media accounts include the soaring NFT market cap, the upcoming NFT wave from Injective, the excitement around Base NFT support, and the impact of various NFT collections such as RENGA_inc and Schmrypto's saints collection. There is also discussion about the changing reputation of 3D NFT collections, the growth of NFT market cap to over $7 billion, and the use of AlloPass staking xp to purchase NFTs. Additionally, there is anticipation for the NFT bull market and the upcoming Art Renaissance on the Flare Network.","data":[7,2,7,6,5,3,2,10,11,5,15,4,7,8,5,2,2,1,13,7,12,11,3,8,8,12,2,17,4,3,19,16,7,6,58,5,14,11,8,8,8,9,8,2,5,4,4,7,13,9,0,10,7,7,10]},{"label":"ETFs and institutional adoption","topics":"inflow,etha,inflows,net,etfs","description":"The key topic currently being discussed in the crypto industry is the significant inflows into Ethereum ETFs, with over $1 billion flowing in on August 11th. This marks the largest daily net inflows since the launch of Ethereum ETFs. Institutional interest in Ethereum seems to be surging, with BlackRock's spot ETH ETF seeing massive demand. Fidelity also had a record inflow into their ether ETF. Ethereum ETFs are outperforming Bitcoin in terms of institutional inflows, narrowing the gap between the two cryptocurrencies. Despite a recent dip in price, Ethereum continues to attract significant investment from institutions.","data":[21,4,2,1,6,2,7,10,9,0,1,3,8,6,0,12,49,37,1,14,0,0,1,0,4,11,27,1,2,1,1,8,4,16,2,2,0,1,4,15,0,0,15,1,3,29,0,6,3,8,0,10,4,5,13]},{"label":"GameFi","topics":"gamers,othersidemeta,tournament,games,gaming","description":"The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft include gaming, game updates, community events, new game releases, game simulations, GameFi, NFT characters in games, earning opportunities in gaming, and upcoming gaming panels at events like New York Comic Con. There is also a mention of a new game maker platform called MagicCraft offering real earnings for creativity in game design. Additionally, there is a reference to a specific game called ChibiClash winning a hackathon prize and a game called Castle of Blackwater being played during a game night event.","data":[9,4,9,5,2,4,0,3,6,10,3,6,4,11,2,1,0,5,4,8,44,9,2,4,4,7,1,13,7,4,8,6,7,6,16,4,17,3,1,9,11,11,3,7,5,9,7,6,5,7,8,5,6,7,4]},{"label":"AI and robotics","topics":"programmed,jobs,roles,workers,replaced","description":"The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are AI, robotics, commercial use cases for AI, multi model verification, challenges in AI development, autonomous cars, running AI models from your own machine, AI decision-making under pressure, and the future of AI agents. There is also a mention of a project called The Bless Network that aims to change the game for AI and computing by creating a global supercomputer accessible to everyone. Additionally, there is an exclusive interview with Michael Sena, Co-Founder of Recall Labs, discussing the real future of AI agents.","data":[8,41,9,7,0,1,1,5,3,6,5,3,5,8,2,6,0,1,6,4,11,12,6,10,1,6,7,9,5,2,5,5,4,6,2,6,10,8,3,8,7,8,3,7,7,4,2,7,8,4,5,6,5,10,11]},{"label":"Whales accumulating ETH","topics":"whale,whales,accumulated,mysterious,scooped","description":"The key topics currently being discussed in the crypto industry on social media platforms include:\n1. Whales and market makers influencing the market, with mentions of large purchases of ETH and BTC by whales.\n2. Ethereum whales accumulating ETH and buying from sceptical retail traders.\n3. The impact of whales on the Solana market, with retail holders selling to them.\n4. The growth and potential of certain cryptocurrencies like $WAVES and $SPX6900.\n5. The use of AI in the crypto industry, particularly in cloud computing and market analysis.\n6. New projects and tokens like NUKE clicker on @UnitsNetwork and $CHILL $WHALE with low market caps.\n7. Speculation on price targets for Bitcoin, with mentions of $125k or $112k next.\n8. Discussions on the potential for bullish or bearish trends in the market.\nOverall, the focus seems to be on the activities and influence of whales, market trends, and the potential for growth in various cryptocurrencies.","data":[10,1,3,6,8,7,24,8,19,3,6,2,3,1,4,0,5,11,3,2,4,3,4,3,4,6,5,2,0,3,6,9,3,15,4,8,2,1,3,3,1,2,5,8,1,3,0,0,2,6,1,5,1,75,4]},{"label":"DEX","topics":"dex,dexs,coinbases,rolling,ny","description":"The key topics currently being discussed in the crypto industry on social media platforms include the integration of DEX trading on Coinbase, with the ability for millions of users to hold various tokens on the platform. Projects like Synthetix and Reflect are being highlighted for their privacy features and selection for Coinbase's retail DEX integration. Additionally, partnerships with Aerodrome and AukiNetwork are being announced, expanding the range of assets available on Coinbase. The focus is on providing a seamless trading experience for users, with support for a wide range of assets and protocols. Gas fees, token launches, and new DEX protocols are also being discussed, showcasing the innovation and growth within the industry. Overall, the crypto community is excited about the developments in DEX trading and the increasing accessibility of onchain markets through platforms like Coinbase.","data":[10,5,12,10,2,0,2,6,5,5,34,2,4,26,4,5,0,9,3,2,4,5,1,3,2,4,7,5,9,1,7,2,6,4,7,8,4,7,5,5,2,7,2,1,6,6,5,6,8,15,1,7,10,4,0]},{"label":"Federal law enforcement in DC","topics":"dc,guard,washington,enforcement,crime","description":"The key topics currently being discussed in the messages from twitter, twitter_news, and twitter_nft include:\n1. President Trump's announcement of the activation of hundreds of DC National Guard troops and his commitment to restoring law and order in America.\n2. Parallels between tactics used by the Tories and Reform and Donald Trump's attacks on Democrat-run cities in America.\n3. Speculation about the possibility of martial law being implemented.\n4. Public opinion on Trump's approach to crime and law enforcement.\n5. Extradition of cartel associates from Mexico to the US.\n6. Federalization of DC law enforcement and the justification for it.\n7. Criticism of the USA PATRIOT ACT and its implications.\n8. Controversy surrounding Donald Trump's pick to lead the BLS and his involvement in the Capitol riot.\n9. Trump's review of the Smithsonian museums and their tunnel network.\n10. Trump's efforts to enforce federal law enforcement in DC to prevent crime and ensure safety, including the creation of a cryptocurrency called $bigballs.","data":[3,9,7,7,0,0,27,3,7,4,1,8,6,12,2,4,0,0,12,6,2,3,9,2,10,0,5,1,8,2,4,7,2,6,3,7,4,10,5,4,6,6,4,1,6,3,3,7,2,1,52,0,6,6,2]},{"label":"WLFI","topics":"wlfi,worldlibertyfi,liberty,usd1,15b","description":"The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are related to the cryptocurrency $WLFI, $ETH, $BLOCK, Alt5 Sigma, World Liberty Financial, Donald Trump's family, Nasdaq listing, stablecoins, DeFi, traditional finance, Islamic crypto capital, Fasset_official, Plume, RWA chain, digital-asset treasury firms, and big investors. There is also mention of a surge expected in $ETH after $WLFI goes online for trading. Additionally, there is discussion about a plan for World Liberty Financial to set up a publicly listed company to hold its WLFI tokens.","data":[0,7,2,7,9,8,15,6,2,2,3,7,1,5,2,4,1,0,2,8,4,3,5,6,9,4,7,1,11,13,3,7,2,0,7,7,1,9,7,6,2,3,2,1,3,3,2,3,4,9,19,3,5,9,40]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-84.ts b/priv/repo/major_topics_seed/data-84.ts deleted file mode 100644 index b287d8e307..0000000000 --- a/priv/repo/major_topics_seed/data-84.ts +++ /dev/null @@ -1,270 +0,0 @@ -export const NARRATIVES = { - labels: [ - '07.08.25', - '08.08.25', - '08.08.25', - '08.08.25', - '08.08.25', - '08.08.25', - '08.08.25', - '08.08.25', - '09.08.25', - '09.08.25', - '09.08.25', - '09.08.25', - '09.08.25', - '09.08.25', - '09.08.25', - '09.08.25', - '10.08.25', - '10.08.25', - '10.08.25', - '10.08.25', - '10.08.25', - '10.08.25', - '10.08.25', - '10.08.25', - '11.08.25', - '11.08.25', - '11.08.25', - '11.08.25', - '11.08.25', - '11.08.25', - '11.08.25', - '11.08.25', - '12.08.25', - '12.08.25', - '12.08.25', - '12.08.25', - '12.08.25', - '12.08.25', - '12.08.25', - '12.08.25', - '13.08.25', - '13.08.25', - '13.08.25', - '13.08.25', - '13.08.25', - '13.08.25', - '13.08.25', - '13.08.25', - '14.08.25', - '14.08.25', - '14.08.25', - '14.08.25', - '14.08.25', - '14.08.25', - '14.08.25', - ], - datasets: [ - { - label: 'ETH price', - topics: '4000,4400,4500,4k,4300', - description: - "The key topic currently discussed in the crypto industry on social media platforms such as Twitter includes the significant price increase of Ethereum (ETH). Users are excited about ETH breaking above $4,000 and reaching new all-time highs. There is speculation about ETH potentially reaching $13,000, with discussions about resistance zones and potential pullbacks. Traders are turning bullish on ETH, with mentions of altseason being activated. Some users are cautioning against overly optimistic price predictions, warning against potential losses for inexperienced traders. Overall, there is a sense of anticipation and excitement surrounding ETH's price movements and the possibility of a new ATH in the near future.", - data: [ - 14, 11, 8, 18, 5, 2, 34, 15, 7, 14, 9, 11, 7, 6, 7, 90, 303, 220, 9, 22, 8, 4, 7, 12, 40, 7, - 8, 7, 8, 8, 7, 18, 8, 15, 9, 6, 5, 20, 5, 14, 10, 7, 10, 10, 10, 5, 10, 12, 16, 15, 1, 6, 8, - 13, 9, - ], - }, - { - label: 'BTC', - topics: 'btcnewsalerts,meetup,btcforfreedom,adam3us,roxomtv', - description: - "The key topic currently discussed in the messages from twitter, twitter_news, and twitter_nft is Bitcoin. The messages mention various aspects of Bitcoin, such as its potential as an opportunity, its code quality, the importance of understanding cryptography in the Bitcoin ecosystem, and the impact of Bitcoin on people's lives. Additionally, there are references to Bitcoin-related books, events, and communities. Overall, the sentiment towards Bitcoin in these messages appears to be positive and supportive.", - data: [ - 16, 15, 22, 21, 32, 33, 4, 14, 13, 17, 16, 28, 14, 22, 12, 21, 0, 8, 28, 26, 16, 29, 24, 24, - 13, 14, 11, 15, 17, 21, 25, 18, 15, 19, 16, 18, 25, 24, 15, 14, 18, 27, 15, 13, 21, 12, 24, - 9, 24, 19, 19, 19, 15, 28, 14, - ], - }, - { - label: 'Art', - topics: 'artists,artist,painting,canvas,gallery', - description: - 'The key topic discussed in the messages from the social media accounts is the appreciation and promotion of various forms of art, including paintings, photography, and digital collage. There is a focus on the value and uniqueness of art pieces, with mentions of art collections, art styles, and the emotional impact of creating and viewing art. Additionally, there is a mention of NFTs (Non-Fungible Tokens) in relation to art, highlighting the trend of investing in digital assets. Overall, the conversation revolves around the beauty and significance of art in various forms.', - data: [ - 19, 11, 195, 17, 3, 13, 1, 7, 17, 13, 25, 20, 18, 19, 19, 9, 0, 11, 19, 22, 13, 19, 20, 16, - 9, 23, 16, 9, 9, 7, 28, 19, 17, 28, 20, 14, 26, 16, 14, 13, 14, 17, 4, 16, 13, 14, 17, 19, - 18, 6, 11, 18, 12, 8, 25, - ], - }, - { - label: 'SOL', - topics: 'solanas,sol,lagging,solana,hong', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms include Solana (SOL) lagging behind, Ethereum (ETH) gaining momentum against SOL, and Bitcoin (BTC) remaining flat. There is speculation about whether SOL can hold above $200 and if BTC can reclaim $120k. Additionally, there is excitement about altseason, with mentions of other cryptocurrencies such as Avalanche, Link, Aave, and UNI being good investments. There is also discussion about the unique features of building on Solana and the potential for SOL/BTC and SOL/USD trading pairs. Overall, the sentiment seems positive towards SOL and ETH, with anticipation for potential price movements in the market.', - data: [ - 5, 5, 11, 14, 9, 9, 17, 14, 14, 14, 23, 15, 11, 16, 8, 16, 34, 12, 16, 18, 13, 25, 14, 22, - 23, 14, 16, 16, 16, 15, 24, 21, 10, 25, 14, 20, 11, 21, 19, 10, 7, 12, 7, 16, 56, 24, 17, - 16, 23, 15, 10, 15, 15, 10, 9, - ], - }, - { - label: 'Israel and Palestine', - topics: 'israel,journalist,killed,west,al', - description: - "The messages from the social media accounts twitter, twitter_news, and twitter_nft primarily focus on the ongoing conflict in Gaza involving Israel and Palestine. The messages discuss the killing of journalists reporting on the conflict, the complicity of Arab states, the establishment of settlements in the West Bank, and the use of spy planes in the region. There are also mentions of attacks on Jewish students and the importance of verifying information before sharing it. The overall sentiment in these messages is critical of Israel's actions and calls for accountability and justice.", - data: [ - 21, 17, 16, 16, 3, 6, 31, 6, 14, 7, 9, 16, 6, 16, 12, 9, 0, 3, 16, 18, 8, 8, 8, 8, 10, 21, - 37, 43, 9, 14, 11, 11, 6, 17, 17, 14, 17, 9, 16, 7, 19, 14, 22, 10, 13, 12, 11, 13, 6, 8, 7, - 8, 15, 3, 12, - ], - }, - { - label: 'AI', - topics: 'assistant,ainative,agi,humans,llms', - description: - 'The key topics currently being discussed in the crypto industry on social media include the intersection of AI and crypto, the potential risks of AI systems to humanity, the importance of privacy and security in AI development, the rise of decentralized AI, and the impact of AI on various industries such as consulting and blockchain technology. There is also a focus on building AI agents that can control assets on a blockchain and the need for adaptation and innovation in the AI age. Additionally, there is discussion about the development of AI-native research bases and the potential for AI to act autonomously. Overall, the conversation highlights the growing importance and impact of AI technology in the crypto industry.', - data: [ - 20, 78, 12, 9, 5, 6, 6, 15, 8, 10, 11, 14, 10, 10, 7, 12, 0, 11, 8, 8, 10, 15, 14, 10, 11, - 14, 26, 7, 6, 8, 5, 10, 14, 13, 12, 9, 17, 19, 14, 17, 12, 22, 6, 5, 13, 10, 8, 10, 14, 9, - 8, 12, 7, 7, 5, - ], - }, - { - label: 'DOG', - topics: 'dog,krakenfx,runes,army,rune', - description: - 'The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are related to the cryptocurrency $DOG. The messages mention the excitement and bullish sentiment surrounding $DOG, its connection to Bitcoin, its potential to reach all-time highs, and its unique position in the meme coin market. Additionally, there are mentions of contests, promotions, and new tokens related to $DOG, such as the DOGWALK Token and CCDOG. Overall, the $DOG community seems to be active and enthusiastic about the future of the cryptocurrency.', - data: [ - 7, 3, 9, 10, 14, 8, 5, 7, 11, 14, 12, 12, 8, 19, 102, 5, 1, 1, 9, 17, 6, 8, 9, 9, 6, 9, 9, - 14, 14, 24, 9, 17, 16, 13, 5, 10, 15, 4, 9, 7, 14, 18, 5, 9, 13, 6, 14, 13, 6, 12, 12, 4, - 13, 7, 6, - ], - }, - { - label: 'DeFi', - topics: 'buildonbob,defi,bob,defis,katana', - description: - "The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are related to DeFi (Decentralized Finance) and its various aspects. Some of the specific topics mentioned include:\n- The growth and evolution of DeFi, with references to its Gartner hype cycle and how it has become more mainstream over the years.\n- Specific projects and platforms within the DeFi space, such as ParaVerseNet, NetworkNoya, BENQI, Manyu swap, and MorphoLabs.\n- The integration of traditional finance markets, such as Asia's $20 trillion credit market, with DeFi to provide more accessible and transparent yield opportunities.\n- The use of data and analytics in DeFi, with mentions of companies like Nomis providing on-chain data for lending protocols.\n- The concept of yield farming and staking in DeFi, with references to earning rewards through various DeFi activities.\n- The potential for DeFi to revolutionize finance and provide new opportunities for investors and users.\n\nOverall, the messages highlight the continued growth and innovation within the DeFi space, as well as the increasing interest and adoption of decentralized financial solutions.", - data: [ - 10, 10, 10, 10, 7, 6, 2, 14, 8, 6, 6, 10, 14, 48, 6, 11, 1, 9, 14, 19, 18, 7, 12, 7, 9, 12, - 17, 11, 13, 15, 5, 9, 9, 10, 13, 9, 9, 13, 15, 13, 7, 10, 15, 6, 17, 11, 11, 14, 7, 18, 9, - 16, 9, 10, 20, - ], - }, - { - label: 'Bitcoin vs Fiat', - topics: 'economics,fixes,fiat,bitcoiners,sovereignty', - description: - "The key topics discussed in the messages from twitter, twitter_news, and twitter_nft are:\n1. The importance of staying intolerant towards the fiat system and embracing Bitcoin as a way to disrupt traditional financial systems.\n2. The belief that insurance companies will eventually realize the need for Bitcoin, even if they don't currently understand its value.\n3. The idea that Bitcoin provides clarity and insight into how the world truly works, which is difficult to grasp with a fiat mindset.\n4. The discussion around the invention and purpose of Bitcoin, Ethereum, and Solana, with conspiracy theories about their origins and intentions.\n5. The importance of staying paid at all costs in business, with a focus on using Bitcoin for secure payment processing to avoid hold-ups and financial risks.", - data: [ - 8, 2, 8, 13, 58, 62, 1, 7, 21, 10, 8, 8, 5, 6, 3, 11, 0, 3, 6, 16, 14, 7, 13, 12, 7, 6, 14, - 11, 7, 10, 8, 7, 9, 6, 6, 13, 17, 9, 3, 7, 9, 4, 6, 10, 20, 13, 8, 8, 24, 4, 8, 8, 7, 3, 9, - ], - }, - { - label: 'GPT-5', - topics: 'gpt5,gpt,openai,chatgpt,rollout', - description: - 'The key topics currently being discussed on social media accounts related to the crypto industry include the launch of GPT-5, its performance compared to previous models like GPT-4 and GPT-3, concerns about its reliability and automatic switching between models, and the removal of older models. There is also discussion about AI security issues, the use of GPT-5 for medical questions, and the rising mental health challenges in India. Additionally, there is excitement about the release of a new AI model called "Recall Predict" by the Recall community.', - data: [ - 11, 11, 14, 10, 2, 0, 2, 2, 2, 30, 4, 7, 6, 3, 7, 7, 0, 1, 16, 9, 6, 9, 37, 9, 8, 10, 13, 7, - 8, 10, 10, 7, 11, 11, 9, 34, 12, 9, 11, 12, 14, 8, 5, 3, 11, 7, 13, 9, 13, 4, 9, 20, 4, 16, - 11, - ], - }, - { - label: 'Ukraine - Russia', - topics: 'putin,ukraine,russian,russia,meeting', - description: - 'The key topics discussed in the messages are related to the ongoing conflict between Russia and Ukraine, with mentions of President Trump, President Putin, and the situation in Ukraine. There is also a mention of the Digital Hryvnia and Sl8 integrating a central bank digital currency. The messages also touch on the US constitution and potential war on the US population.', - data: [ - 11, 9, 8, 6, 1, 1, 29, 11, 2, 3, 7, 12, 6, 10, 6, 4, 0, 6, 10, 6, 4, 5, 8, 3, 6, 9, 3, 8, - 12, 6, 7, 23, 6, 7, 6, 7, 5, 11, 4, 3, 13, 16, 12, 9, 7, 2, 7, 16, 7, 6, 62, 5, 9, 0, 6, - ], - }, - { - label: 'CPI and inflation', - topics: 'ppi,yoy,cpi,02,27', - description: - 'The messages from the Twitter accounts suggest that inflation metrics are accelerating, with the US CPI month-over-month (m/m) coming in at 0.2% as forecasted. Despite this, the sentiment is that inflation is now under control, leading to calls for rate cuts. There are mentions of core goods and services inflation, with some surprises in the data such as PPI inflation coming in higher than expected. The overall tone is one of concern and scrutiny over inflation data, especially in light of recent events such as the firing of BLS officials. The topic of inflation is being closely monitored and analyzed by analysts and investors in the crypto industry.', - data: [ - 6, 9, 11, 4, 5, 0, 14, 0, 6, 2, 11, 19, 10, 4, 7, 6, 0, 1, 16, 11, 1, 5, 6, 11, 2, 5, 122, - 7, 7, 2, 7, 6, 5, 4, 6, 2, 3, 12, 6, 9, 7, 12, 3, 2, 5, 4, 5, 4, 6, 9, 8, 7, 2, 11, 13, - ], - }, - { - label: 'NFTs', - topics: 'nfts,nft,collections,collection,nathanheadphoto', - description: - "The key topics currently being discussed in the crypto industry on social media accounts include the soaring NFT market cap, the upcoming NFT wave from Injective, the excitement around Base NFT support, and the impact of various NFT collections such as RENGA_inc and Schmrypto's saints collection. There is also discussion about the changing reputation of 3D NFT collections, the growth of NFT market cap to over $7 billion, and the use of AlloPass staking xp to purchase NFTs. Additionally, there is anticipation for the NFT bull market and the upcoming Art Renaissance on the Flare Network.", - data: [ - 7, 2, 7, 6, 5, 3, 2, 10, 11, 5, 15, 4, 7, 8, 5, 2, 2, 1, 13, 7, 12, 11, 3, 8, 8, 12, 2, 17, - 4, 3, 19, 16, 7, 6, 58, 5, 14, 11, 8, 8, 8, 9, 8, 2, 5, 4, 4, 7, 13, 9, 0, 10, 7, 7, 10, - ], - }, - { - label: 'ETFs and institutional adoption', - topics: 'inflow,etha,inflows,net,etfs', - description: - "The key topic currently being discussed in the crypto industry is the significant inflows into Ethereum ETFs, with over $1 billion flowing in on August 11th. This marks the largest daily net inflows since the launch of Ethereum ETFs. Institutional interest in Ethereum seems to be surging, with BlackRock's spot ETH ETF seeing massive demand. Fidelity also had a record inflow into their ether ETF. Ethereum ETFs are outperforming Bitcoin in terms of institutional inflows, narrowing the gap between the two cryptocurrencies. Despite a recent dip in price, Ethereum continues to attract significant investment from institutions.", - data: [ - 21, 4, 2, 1, 6, 2, 7, 10, 9, 0, 1, 3, 8, 6, 0, 12, 49, 37, 1, 14, 0, 0, 1, 0, 4, 11, 27, 1, - 2, 1, 1, 8, 4, 16, 2, 2, 0, 1, 4, 15, 0, 0, 15, 1, 3, 29, 0, 6, 3, 8, 0, 10, 4, 5, 13, - ], - }, - { - label: 'GameFi', - topics: 'gamers,othersidemeta,tournament,games,gaming', - description: - 'The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft include gaming, game updates, community events, new game releases, game simulations, GameFi, NFT characters in games, earning opportunities in gaming, and upcoming gaming panels at events like New York Comic Con. There is also a mention of a new game maker platform called MagicCraft offering real earnings for creativity in game design. Additionally, there is a reference to a specific game called ChibiClash winning a hackathon prize and a game called Castle of Blackwater being played during a game night event.', - data: [ - 9, 4, 9, 5, 2, 4, 0, 3, 6, 10, 3, 6, 4, 11, 2, 1, 0, 5, 4, 8, 44, 9, 2, 4, 4, 7, 1, 13, 7, - 4, 8, 6, 7, 6, 16, 4, 17, 3, 1, 9, 11, 11, 3, 7, 5, 9, 7, 6, 5, 7, 8, 5, 6, 7, 4, - ], - }, - { - label: 'AI and robotics', - topics: 'programmed,jobs,roles,workers,replaced', - description: - 'The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are AI, robotics, commercial use cases for AI, multi model verification, challenges in AI development, autonomous cars, running AI models from your own machine, AI decision-making under pressure, and the future of AI agents. There is also a mention of a project called The Bless Network that aims to change the game for AI and computing by creating a global supercomputer accessible to everyone. Additionally, there is an exclusive interview with Michael Sena, Co-Founder of Recall Labs, discussing the real future of AI agents.', - data: [ - 8, 41, 9, 7, 0, 1, 1, 5, 3, 6, 5, 3, 5, 8, 2, 6, 0, 1, 6, 4, 11, 12, 6, 10, 1, 6, 7, 9, 5, - 2, 5, 5, 4, 6, 2, 6, 10, 8, 3, 8, 7, 8, 3, 7, 7, 4, 2, 7, 8, 4, 5, 6, 5, 10, 11, - ], - }, - { - label: 'Whales accumulating ETH', - topics: 'whale,whales,accumulated,mysterious,scooped', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms include:\n1. Whales and market makers influencing the market, with mentions of large purchases of ETH and BTC by whales.\n2. Ethereum whales accumulating ETH and buying from sceptical retail traders.\n3. The impact of whales on the Solana market, with retail holders selling to them.\n4. The growth and potential of certain cryptocurrencies like $WAVES and $SPX6900.\n5. The use of AI in the crypto industry, particularly in cloud computing and market analysis.\n6. New projects and tokens like NUKE clicker on @UnitsNetwork and $CHILL $WHALE with low market caps.\n7. Speculation on price targets for Bitcoin, with mentions of $125k or $112k next.\n8. Discussions on the potential for bullish or bearish trends in the market.\nOverall, the focus seems to be on the activities and influence of whales, market trends, and the potential for growth in various cryptocurrencies.', - data: [ - 10, 1, 3, 6, 8, 7, 24, 8, 19, 3, 6, 2, 3, 1, 4, 0, 5, 11, 3, 2, 4, 3, 4, 3, 4, 6, 5, 2, 0, - 3, 6, 9, 3, 15, 4, 8, 2, 1, 3, 3, 1, 2, 5, 8, 1, 3, 0, 0, 2, 6, 1, 5, 1, 75, 4, - ], - }, - { - label: 'DEX', - topics: 'dex,dexs,coinbases,rolling,ny', - description: - "The key topics currently being discussed in the crypto industry on social media platforms include the integration of DEX trading on Coinbase, with the ability for millions of users to hold various tokens on the platform. Projects like Synthetix and Reflect are being highlighted for their privacy features and selection for Coinbase's retail DEX integration. Additionally, partnerships with Aerodrome and AukiNetwork are being announced, expanding the range of assets available on Coinbase. The focus is on providing a seamless trading experience for users, with support for a wide range of assets and protocols. Gas fees, token launches, and new DEX protocols are also being discussed, showcasing the innovation and growth within the industry. Overall, the crypto community is excited about the developments in DEX trading and the increasing accessibility of onchain markets through platforms like Coinbase.", - data: [ - 10, 5, 12, 10, 2, 0, 2, 6, 5, 5, 34, 2, 4, 26, 4, 5, 0, 9, 3, 2, 4, 5, 1, 3, 2, 4, 7, 5, 9, - 1, 7, 2, 6, 4, 7, 8, 4, 7, 5, 5, 2, 7, 2, 1, 6, 6, 5, 6, 8, 15, 1, 7, 10, 4, 0, - ], - }, - { - label: 'Federal law enforcement in DC', - topics: 'dc,guard,washington,enforcement,crime', - description: - "The key topics currently being discussed in the messages from twitter, twitter_news, and twitter_nft include:\n1. President Trump's announcement of the activation of hundreds of DC National Guard troops and his commitment to restoring law and order in America.\n2. Parallels between tactics used by the Tories and Reform and Donald Trump's attacks on Democrat-run cities in America.\n3. Speculation about the possibility of martial law being implemented.\n4. Public opinion on Trump's approach to crime and law enforcement.\n5. Extradition of cartel associates from Mexico to the US.\n6. Federalization of DC law enforcement and the justification for it.\n7. Criticism of the USA PATRIOT ACT and its implications.\n8. Controversy surrounding Donald Trump's pick to lead the BLS and his involvement in the Capitol riot.\n9. Trump's review of the Smithsonian museums and their tunnel network.\n10. Trump's efforts to enforce federal law enforcement in DC to prevent crime and ensure safety, including the creation of a cryptocurrency called $bigballs.", - data: [ - 3, 9, 7, 7, 0, 0, 27, 3, 7, 4, 1, 8, 6, 12, 2, 4, 0, 0, 12, 6, 2, 3, 9, 2, 10, 0, 5, 1, 8, - 2, 4, 7, 2, 6, 3, 7, 4, 10, 5, 4, 6, 6, 4, 1, 6, 3, 3, 7, 2, 1, 52, 0, 6, 6, 2, - ], - }, - { - label: 'WLFI', - topics: 'wlfi,worldlibertyfi,liberty,usd1,15b', - description: - "The key topics currently discussed in the messages from twitter, twitter_news, and twitter_nft are related to the cryptocurrency $WLFI, $ETH, $BLOCK, Alt5 Sigma, World Liberty Financial, Donald Trump's family, Nasdaq listing, stablecoins, DeFi, traditional finance, Islamic crypto capital, Fasset_official, Plume, RWA chain, digital-asset treasury firms, and big investors. There is also mention of a surge expected in $ETH after $WLFI goes online for trading. Additionally, there is discussion about a plan for World Liberty Financial to set up a publicly listed company to hold its WLFI tokens.", - data: [ - 0, 7, 2, 7, 9, 8, 15, 6, 2, 2, 3, 7, 1, 5, 2, 4, 1, 0, 2, 8, 4, 3, 5, 6, 9, 4, 7, 1, 11, 13, - 3, 7, 2, 0, 7, 7, 1, 9, 7, 6, 2, 3, 2, 1, 3, 3, 2, 3, 4, 9, 19, 3, 5, 9, 40, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-85.json b/priv/repo/major_topics_seed/data-85.json deleted file mode 100644 index c3b2ac13ef..0000000000 --- a/priv/repo/major_topics_seed/data-85.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["14.08.25","15.08.25","15.08.25","15.08.25","15.08.25","15.08.25","15.08.25","15.08.25","16.08.25","16.08.25","16.08.25","16.08.25","16.08.25","16.08.25","16.08.25","16.08.25","17.08.25","17.08.25","17.08.25","17.08.25","17.08.25","17.08.25","17.08.25","17.08.25","18.08.25","18.08.25","18.08.25","18.08.25","18.08.25","18.08.25","18.08.25","18.08.25","19.08.25","19.08.25","19.08.25","19.08.25","19.08.25","19.08.25","19.08.25","19.08.25","20.08.25","20.08.25","20.08.25","20.08.25","20.08.25","20.08.25","20.08.25","20.08.25","21.08.25","21.08.25","21.08.25","21.08.25","21.08.25","21.08.25","21.08.25"],"datasets":[{"label":"ETH price","topics":"4k,4000,aths,4h,4200","description":"The key topic currently discussed in the crypto community on Twitter is the bullish sentiment surrounding Ethereum (ETH). Many users are predicting that ETH will reach its all-time high (ATH) soon, with some even suggesting a price target of $10,000. There is a lot of excitement around ETH's recent price movements and its ability to hold strong despite resistance tests. Additionally, there is discussion about the positive impact of long liquidations on the market and the potential for ETH to continue its upward trajectory. Overall, the sentiment towards ETH is optimistic and many traders are looking to capitalize on potential gains in the near future.","data":[19,13,18,12,3,17,22,8,12,20,19,7,12,8,442,18,15,12,5,15,1,4,12,23,7,14,13,7,9,10,16,12,8,13,9,10,9,13,13,10,11,10,20,14,11,6,17,13,24,11,8,14,8,4,12]},{"label":"Football","topics":"fabrizioromano,arsenal,premierleague,league,premier","description":"The key topics discussed in the messages from twitter are:\n1. Congratulations to FC Barcelona and RCD Mallorca on their wins.\n2. Discussion about players and their performances in football matches.\n3. Transfer rumors and contract lengths of players.\n4. Banter and predictions about football matches.\n5. Mention of specific football clubs like Arsenal, Chelsea, Tottenham, and Manchester City.\n6. Mention of football journalists like Fabrizio Romano and Ed Aarons.\n7. Mention of specific players like Oscar Bobb and Les Ferdinand.\n8. Mention of the Ballon D'or award.\n9. Excitement about the new football season.\n10. Use of hashtags like #MakeItCount and #BitgetxLALIGA.","data":[9,7,30,19,3,12,0,10,15,15,8,21,20,21,7,19,16,11,22,37,15,23,14,11,6,10,17,15,14,18,20,14,7,12,16,17,14,15,10,20,17,30,7,17,10,12,12,6,18,7,7,8,21,27,9]},{"label":"AI","topics":"ais,artificial,assistant,prompting,autonomous","description":"The key topics discussed in the messages from twitter include the use of artificial intelligence (AI) in various industries, concerns about biased and harmful AI tools being used by government agencies, the potential impact of AI on society and the economy, and the environmental implications of training and running AI models. There is also mention of a 27-year-old individual claiming to have used AI to publish books and earn a significant amount of money, as well as the potential for AI to revolutionize various aspects of daily life. Overall, the messages highlight both the potential benefits and challenges associated with the widespread adoption of AI technology.","data":[39,126,17,7,6,7,16,11,3,16,16,8,10,7,7,12,14,18,11,17,9,14,7,5,25,17,15,6,5,14,12,9,7,18,8,10,9,25,13,14,14,19,9,12,14,5,12,12,10,14,8,13,11,5,12]},{"label":"Israel and Palestine","topics":"israel,jews,jewish,aid,ministry","description":"The key topics currently being discussed in the messages from twitter are:\n1. Nationwide protests in Israel demanding an end to the Gaza war and the release of hostages.\n2. The International Atomic Energy Agency sending a delegation to the US to discuss concerns about monitoring Iran's nuclear program.\n3. Reports of deaths caused by US and Israeli engineered starvation in Gaza.\n4. Hamas accepting an Egyptian proposal that does not address Israel's demands.\n5. Israeli researcher Raz Segal's statement about genocide.\n6. Anti-Semitic conspiracy theories and propaganda.\n7. Poll results showing Jewish voters in New York have an unfavorable opinion of socialist candidate Zohran Mamdani.\n8. Netanyahu's alleged plan to send Palestinians in Gaza to South Sudan.\n9. Save the Children warning about the increasing danger faced by aid workers.","data":[13,12,12,17,5,48,3,9,9,9,12,13,13,14,5,16,7,8,9,3,0,10,13,13,14,49,14,7,5,4,9,12,9,32,8,18,6,11,9,17,18,23,11,8,11,10,20,14,6,6,12,11,20,6,24]},{"label":"BTC price","topics":"ichimoku,115k,110k,116k,117k","description":"Bitcoiners are currently discussing the recent crash in Bitcoin's price, which has dropped to lows not seen since last week. Despite this, there are mixed sentiments among traders, with some remaining bullish and expecting a pump to the upper level of multi-year resistance, while others are looking to short Bitcoin with targets around $104k. The overall sentiment seems to be cautious, with some expecting a correction to occur soon. Additionally, there is speculation about potential market reactions to upcoming events such as Powell speaking on Friday and the Jackson Hole meeting. Overall, traders are closely monitoring Bitcoin's price movements and making predictions for its future direction.","data":[7,16,7,14,167,15,49,5,12,8,17,4,7,9,3,12,7,4,6,6,1,2,3,13,10,4,8,6,11,12,12,11,5,20,2,5,6,23,18,5,8,3,6,14,3,7,9,2,7,7,6,23,3,4,4]},{"label":"Kanye and YZY coin","topics":"kanye,yzy,kanyewest,west,ye","description":"The key topics discussed in the messages from twitter are:\n1. Kanye West launching his own crypto token, YZY, which quickly reached a $3 billion market cap before crashing by more than half within hours.\n2. The significant losses and gains made by investors in the YZY token, with some insiders flipping early and regular investors getting wrecked.\n3. The involvement of market participants in piling into meme coins during market dumps.\n4. The success of certain individuals in making large profits through strategic trading in various crypto tokens, including YZY.\n5. The listing of YZY on BitMart and its association with Kanye West's Yeezy brand.\n6. The potential for massive gains in the cryptocurrency market, as exemplified by the $MANYU token.\n7. The decentralized nature of cryptocurrencies and the freedom they provide from centralized authority.\n8. The warning about potential scams in the crypto industry, such as the mention of $YZY being designed to create negative sentiment on crypto.","data":[10,15,8,12,12,12,13,20,6,9,17,4,8,16,4,10,12,11,9,10,0,1,15,22,7,8,12,41,15,11,14,8,8,24,7,9,9,7,9,5,10,9,17,12,7,8,11,6,16,26,12,5,7,8,24]},{"label":"GameFi","topics":"gamers,gamescom,gameplay,immutable,gaming","description":"The key topics discussed in the messages from twitter include:\n- Hard to beat RPG games\n- Crypto gaming\n- Browser games\n- Kingdom Hearts 2\n- Steam achievements\n- Web3 gaming\n- Zcash rewards\n- YGG ecosystem token\n- Mobile gaming\n- Metaverse expansion\n- Partnership with next-gen gaming leaders\n\nOverall, the messages highlight the growing interest and evolution of gaming in the crypto industry, with a focus on RPG games, browser games, and the integration of blockchain technology for real rewards and verifiable competition. The partnership with next-gen gaming leaders and the expansion into the metaverse further emphasize the innovative and collaborative nature of the crypto gaming community.","data":[6,6,10,15,9,10,6,4,12,10,10,8,6,6,5,9,9,57,57,8,2,7,7,10,12,6,13,9,14,7,7,12,5,12,16,9,44,9,4,18,9,7,3,8,10,7,13,5,10,4,7,9,13,19,9]},{"label":"LINK","topics":"chainlink,swift,oracle,link,oracles","description":"On August 21st, there was a significant discussion about Chainlink ($LINK) in the crypto community. The main points discussed were the Reserve Buy of 44,109 tokens per million forever, speculation about Chainlink becoming the third most important token by market capitalization, and the potential for a price drop to $20 before a breakout attempt. Additionally, there was mention of BRRR, a universal settlement layer connecting blockchain networks with traditional payment systems, and the integration of Chainlink as a standard in the industry for oracles, CCIP, proof of reserves, and cross-chain interoperability. There was also a comparison between Ripple and SWIFT in the context of global payments, with SWIFT potentially choosing Ripple or Hedera for blockchain integration. The discussion also touched on the increasing Google search demand for Chainlink and the distribution of fees in the Chainlink treasury. Finally, there was mention of Axelar as a decentralized and non-custodial platform set to connect blockchains in a similar way to how SWIFT changed finance forever.","data":[14,2,9,13,3,3,8,84,5,7,6,7,7,8,4,5,8,6,3,6,0,4,8,6,10,14,6,2,147,4,6,5,3,9,8,6,1,7,7,9,9,7,8,4,13,9,16,14,12,10,8,6,6,11,4]},{"label":"Women in crypto","topics":"women,woman,dating,female,wife","description":"@DragonKoiBoi is discussing marriage and reflecting on the upcoming 23rd wedding anniversary. They share their thoughts on what marriage means to them, highlighting the importance of understanding and appreciating their partner in all situations. The message also touches on the challenges and joys of marriage.\n\n@CL207 is asking about the duration of someone's marriage, indicating an interest in relationships and possibly seeking advice or insights on the topic.\n\nHairless Sissy and Ashley St. Clair's dating status is mentioned, suggesting potential gossip or curiosity within the community.\n\n@cryptoleon_xyz is encouraging someone to get married, possibly in a humorous or light-hearted manner.\n\nThe message also touches on societal views on masculinity and femininity, with a statement about men not crying and not behaving like women. This could spark discussions on gender roles and stereotypes within the crypto community.\n\nOverall, the messages from @twitter highlight a range of topics related to relationships, marriage, gender norms, and societal trends, providing insights into the interests and discussions within the crypto industry community.","data":[14,5,11,9,4,4,3,6,3,7,9,8,5,10,3,8,13,5,42,9,4,7,13,2,9,6,13,12,11,16,32,17,0,4,8,13,6,11,7,10,5,15,22,5,3,6,13,14,14,12,15,5,6,36,43]},{"label":"Memecoins","topics":"memecoins,memes,memecoin,meme,sponsoring","description":"The key topics currently discussed in the messages from twitter are memecoins, meme culture, meme folders, meme squads, meme ETFs, meme merch, and specific meme coins like MAYC and $DORK. There is also mention of rebranding, the market potential of memecoins, and the comparison of different meme coins in the current market. The messages also touch on the humor and community aspect of meme coins, as well as the fast-paced nature of creating and trading memecoins.","data":[7,6,10,8,2,6,11,7,15,11,8,16,9,5,8,17,8,9,4,8,9,6,9,11,3,9,8,2,12,11,9,126,3,13,6,10,7,5,6,10,9,7,10,7,13,10,9,9,12,4,7,4,11,7,4]},{"label":"Sleep quality","topics":"sleeping,awake,wake,sleep,asleep","description":"The key topics discussed in the messages from twitter are:\n1. Lack of sleep and sleeplessness in the crypto industry\n2. The importance of rest and recharging\n3. Feeling tired and in a bad mood\n4. Balancing work, social life, and self-care\n5. Criticism of certain individuals in the industry, such as Huberman\n6. The effects of caffeine on energy levels and productivity\n\nOverall, the messages highlight the challenges of maintaining a healthy work-life balance and the impact of sleep (or lack thereof) on one's well-being in the fast-paced world of cryptocurrency.","data":[9,8,23,7,5,3,4,2,8,3,6,10,5,14,3,6,5,7,10,10,7,5,11,9,4,3,10,4,12,9,10,5,9,12,9,6,10,4,3,4,9,8,2,77,6,2,7,1,23,4,5,2,113,8,6]},{"label":"Art","topics":"artist,artists,canvas,artwork,painting","description":"The messages from @zee_fig Picasso, @playyagame, @Cosmideus, @Greekdx, @ArtOnBlockchain, @artblocks_io, @tinochchan, @yelojoquemira, @Fiqhi_Alfani, @finalbosuX, @lamumudotxyz, @glitchmarfa, @genartfound, @martina_menegon, @artie_handz, @objktone, @liminalcorp, @ayenwhyay, @JessMacAI, @0xEdwoods, @Salawaki_3000, @davidvnun, @KurtHustle97, @Ktheorphan, and @lilyillo all revolve around the topic of art in the crypto industry. The messages discuss various artists, styles, and projects within the art community, highlighting the impact and potential of onchain generative art. Additionally, the messages touch on the financial aspect of art in the crypto industry, such as fundraising and the value of limited edition releases. Overall, the crypto community is shown to be actively engaged in supporting and promoting art within the industry.","data":[9,21,109,6,3,3,11,9,19,5,19,8,12,8,3,9,11,12,9,10,6,11,7,7,9,11,3,5,7,17,11,8,5,13,9,14,8,16,6,8,8,8,8,5,4,10,8,3,6,5,4,3,5,1,8]},{"label":"DOGE","topics":"dogecoin,doge,cbdoge,triangle,thunder","description":"The messages from twitter show a strong support and enthusiasm for Dogecoin within the crypto community. People are discussing their experiences with Dogecoin, such as catching rare Pokemon in a game and making trades with the coin. There is also mention of the close relationship between Dogecoin and Litecoin communities, with Litecoin supporters showing their support for Dogecoin. Additionally, there is a discussion about the potential for Dogecoin to see significant gains in value in the future, making it a potentially lucrative investment opportunity. Overall, the messages reflect a positive sentiment towards Dogecoin and its potential for growth in the crypto market.","data":[5,9,9,2,1,3,7,6,4,10,11,9,165,8,3,6,5,6,2,3,4,6,4,15,2,5,7,11,6,11,4,5,8,4,4,7,8,8,10,7,8,7,13,4,3,3,9,6,9,5,11,1,11,7,6]},{"label":"UnionBuild","topics":"zkgm,union,unionbuild,interoperability,testers","description":"The key topics currently being discussed in the crypto community on Twitter include the upcoming Union Build TGE, the allocation of $U tokens, the total and initial supply of Union Build, the addition of liquidity with Union Build for future rewards, the eligibility for a Union Build airdrop, and the unveiling of Union Build's bold roadmap which includes sub-second ZK proofs, new chain integrations, crosschain DeFi stack, and a commitment to renewable energy by 2026. Additionally, there is excitement around the upcoming Zero Knowledge FM episode featuring Union Build and discussions about the advancements in ZK rollups and the optimization of order books.","data":[6,7,3,15,3,3,9,15,7,13,10,9,5,6,7,11,7,6,4,2,2,6,2,5,7,11,6,11,6,6,9,2,2,3,6,2,4,4,7,12,6,6,4,3,8,6,7,10,4,7,34,79,3,6,20]},{"label":"Irys","topics":"irys,permanent,programmable,irysxyz,joshbenaron","description":"The key topic discussed in the messages from twitter is the cryptocurrency project called Irys. The community is highly supportive and believes in the potential of Irys, praising its growth, energy, and commitment to secure and permanent data storage on the blockchain. The project is seen as making big moves and being solid, with a focus on empowering users to control their own data and digital identity. The importance of permanent data storage for valuable information like climate research and legal records is also highlighted. Overall, the sentiment towards Irys in the crypto community is positive and optimistic about its future developments.","data":[6,4,3,11,3,2,8,5,4,7,6,21,9,3,10,8,8,6,7,7,3,1,2,5,6,105,10,7,4,13,19,2,3,9,4,1,4,14,7,5,4,6,3,6,11,12,2,1,2,9,8,4,6,7,4]},{"label":"MorphLayer","topics":"morph,morphlayer,fx,bantrfun,finncreator","description":"The messages from twitter highlight the positive sentiment towards MorphLayer and MorphoLabs within the crypto community. Users are praising MorphLayer for its seamless financial infrastructure built for developers, hybrid rollups, and decentralization. They also appreciate MorphLayer's ability to make finance seamless, smooth, reliable, and fast for high-value transfers and worldwide crypto payments. Additionally, users mention that MorphLayer is making crypto usable for real payments, not just trading, and is accessible to all users, not just whales.\n\nFurthermore, there is excitement about the support for MorphoLabs in risk analytics, with users acknowledging the company's efforts in pushing boundaries and making lending more accessible and efficient. Overall, the community is looking forward to seeing where MorphoLabs goes next and believes in the potential of their products and services.","data":[4,4,1,6,2,1,10,2,1,8,4,7,4,3,6,13,17,3,6,6,1,6,0,3,5,3,5,4,3,12,19,2,172,2,4,7,3,2,5,4,9,2,7,6,7,10,1,2,1,2,1,4,2,3,3]},{"label":"Altseason","topics":"altseason,alt,altcoin,winter,season","description":"Based on the messages from twitter, it seems that there is a lot of discussion and speculation about whether or not the next alt season is coming. Some users are confident that it is just the beginning of alt season, while others are more cautious and believe that it may be paused for now. There is also mention of the potential for a Bitcoin moonshot, an Ethereum flippening, or a resurgence of alt season in the future. Overall, the sentiment seems to be mixed but optimistic about the potential for bullish trends in the crypto market.","data":[5,95,0,13,4,4,11,4,15,6,8,3,8,5,7,3,6,3,3,3,0,6,3,6,20,3,6,2,4,1,2,6,6,2,4,4,5,9,3,9,5,39,10,5,12,1,2,5,6,7,2,5,10,11,1]},{"label":"NFTs","topics":"nfts,fp,nft,collections,grails","description":"@AnotherDataP is discussing various topics related to NFTs in the crypto industry. They mention turning personal milestones into NFTs, the potential growth of FIRS surpassing the annual N20 trillion mark, the AR + NFT model, and the historic significance of NFT collections like Mooncats and CryptoSkulls. They also touch on the rarity of NFTs minted before December 2019 and the innovative sparsity introduced by NVIDIA in their Tensor Cores. Additionally, they highlight a future event where a lucky MetaWin NFT holder could become a millionaire. Overall, @AnotherDataP is actively engaged in discussing and analyzing the trends and developments in the NFT space within the crypto industry.","data":[3,3,8,4,2,6,8,2,11,11,11,5,3,6,12,7,11,7,6,1,8,3,7,5,8,4,6,8,3,7,9,3,4,25,53,3,12,7,7,15,3,5,7,2,5,4,6,6,9,13,6,4,3,4,4]},{"label":"Kaito","topics":"kaito,yappers,gkaito,posttge,pretge","description":"The key topic currently being discussed in the crypto community on social media is the suggestion that Kaito should rename itself to Laksa. This idea has sparked various conversations and opinions among users, with some discussing the potential benefits and implications of such a change. Additionally, other topics being discussed include the accuracy of group accounts farming Kaito, the impact of onchain holding weighing on the platform, the price action of Kaito NFTs, and the effectiveness of Kaito's reward system for yappers. Overall, the community seems to be actively engaged in discussing and sharing their thoughts on these various topics related to Kaito and the crypto industry.","data":[7,6,5,5,3,4,5,5,6,9,7,3,4,8,6,8,5,2,5,5,5,6,10,1,5,5,42,12,4,6,11,3,6,8,6,5,4,22,10,3,8,5,9,7,5,4,13,10,10,3,7,15,7,6,9]},{"label":"Vibe coding","topics":"coding,vibe,vibes,forge,hackathon","description":"The messages from twitter suggest a strong focus on building and engineering in the crypto industry. There is excitement around upcoming projects and coins, with mentions of \"Industrial scale vibes engineering,\" \"Builder vibes,\" and \"unstoppable vibes.\" There is also a mention of \"Proof of Vibe Coding\" and accessing perks for builders. Overall, the vibe in the crypto community seems positive and forward-looking, with a lot of energy and enthusiasm for new developments and projects.","data":[4,9,6,6,3,3,13,9,6,2,7,7,7,12,3,8,5,4,3,1,3,3,3,3,6,5,4,6,0,2,7,2,6,7,3,3,7,4,4,5,7,4,3,4,4,4,5,3,3,6,6,124,5,4,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-85.ts b/priv/repo/major_topics_seed/data-85.ts deleted file mode 100644 index d1212291fc..0000000000 --- a/priv/repo/major_topics_seed/data-85.ts +++ /dev/null @@ -1,268 +0,0 @@ -export const NARRATIVES = { - labels: [ - '14.08.25', - '15.08.25', - '15.08.25', - '15.08.25', - '15.08.25', - '15.08.25', - '15.08.25', - '15.08.25', - '16.08.25', - '16.08.25', - '16.08.25', - '16.08.25', - '16.08.25', - '16.08.25', - '16.08.25', - '16.08.25', - '17.08.25', - '17.08.25', - '17.08.25', - '17.08.25', - '17.08.25', - '17.08.25', - '17.08.25', - '17.08.25', - '18.08.25', - '18.08.25', - '18.08.25', - '18.08.25', - '18.08.25', - '18.08.25', - '18.08.25', - '18.08.25', - '19.08.25', - '19.08.25', - '19.08.25', - '19.08.25', - '19.08.25', - '19.08.25', - '19.08.25', - '19.08.25', - '20.08.25', - '20.08.25', - '20.08.25', - '20.08.25', - '20.08.25', - '20.08.25', - '20.08.25', - '20.08.25', - '21.08.25', - '21.08.25', - '21.08.25', - '21.08.25', - '21.08.25', - '21.08.25', - '21.08.25', - ], - datasets: [ - { - label: 'ETH price', - topics: '4k,4000,aths,4h,4200', - description: - "The key topic currently discussed in the crypto community on Twitter is the bullish sentiment surrounding Ethereum (ETH). Many users are predicting that ETH will reach its all-time high (ATH) soon, with some even suggesting a price target of $10,000. There is a lot of excitement around ETH's recent price movements and its ability to hold strong despite resistance tests. Additionally, there is discussion about the positive impact of long liquidations on the market and the potential for ETH to continue its upward trajectory. Overall, the sentiment towards ETH is optimistic and many traders are looking to capitalize on potential gains in the near future.", - data: [ - 19, 13, 18, 12, 3, 17, 22, 8, 12, 20, 19, 7, 12, 8, 442, 18, 15, 12, 5, 15, 1, 4, 12, 23, 7, - 14, 13, 7, 9, 10, 16, 12, 8, 13, 9, 10, 9, 13, 13, 10, 11, 10, 20, 14, 11, 6, 17, 13, 24, - 11, 8, 14, 8, 4, 12, - ], - }, - { - label: 'Football', - topics: 'fabrizioromano,arsenal,premierleague,league,premier', - description: - "The key topics discussed in the messages from twitter are:\n1. Congratulations to FC Barcelona and RCD Mallorca on their wins.\n2. Discussion about players and their performances in football matches.\n3. Transfer rumors and contract lengths of players.\n4. Banter and predictions about football matches.\n5. Mention of specific football clubs like Arsenal, Chelsea, Tottenham, and Manchester City.\n6. Mention of football journalists like Fabrizio Romano and Ed Aarons.\n7. Mention of specific players like Oscar Bobb and Les Ferdinand.\n8. Mention of the Ballon D'or award.\n9. Excitement about the new football season.\n10. Use of hashtags like #MakeItCount and #BitgetxLALIGA.", - data: [ - 9, 7, 30, 19, 3, 12, 0, 10, 15, 15, 8, 21, 20, 21, 7, 19, 16, 11, 22, 37, 15, 23, 14, 11, 6, - 10, 17, 15, 14, 18, 20, 14, 7, 12, 16, 17, 14, 15, 10, 20, 17, 30, 7, 17, 10, 12, 12, 6, 18, - 7, 7, 8, 21, 27, 9, - ], - }, - { - label: 'AI', - topics: 'ais,artificial,assistant,prompting,autonomous', - description: - 'The key topics discussed in the messages from twitter include the use of artificial intelligence (AI) in various industries, concerns about biased and harmful AI tools being used by government agencies, the potential impact of AI on society and the economy, and the environmental implications of training and running AI models. There is also mention of a 27-year-old individual claiming to have used AI to publish books and earn a significant amount of money, as well as the potential for AI to revolutionize various aspects of daily life. Overall, the messages highlight both the potential benefits and challenges associated with the widespread adoption of AI technology.', - data: [ - 39, 126, 17, 7, 6, 7, 16, 11, 3, 16, 16, 8, 10, 7, 7, 12, 14, 18, 11, 17, 9, 14, 7, 5, 25, - 17, 15, 6, 5, 14, 12, 9, 7, 18, 8, 10, 9, 25, 13, 14, 14, 19, 9, 12, 14, 5, 12, 12, 10, 14, - 8, 13, 11, 5, 12, - ], - }, - { - label: 'Israel and Palestine', - topics: 'israel,jews,jewish,aid,ministry', - description: - "The key topics currently being discussed in the messages from twitter are:\n1. Nationwide protests in Israel demanding an end to the Gaza war and the release of hostages.\n2. The International Atomic Energy Agency sending a delegation to the US to discuss concerns about monitoring Iran's nuclear program.\n3. Reports of deaths caused by US and Israeli engineered starvation in Gaza.\n4. Hamas accepting an Egyptian proposal that does not address Israel's demands.\n5. Israeli researcher Raz Segal's statement about genocide.\n6. Anti-Semitic conspiracy theories and propaganda.\n7. Poll results showing Jewish voters in New York have an unfavorable opinion of socialist candidate Zohran Mamdani.\n8. Netanyahu's alleged plan to send Palestinians in Gaza to South Sudan.\n9. Save the Children warning about the increasing danger faced by aid workers.", - data: [ - 13, 12, 12, 17, 5, 48, 3, 9, 9, 9, 12, 13, 13, 14, 5, 16, 7, 8, 9, 3, 0, 10, 13, 13, 14, 49, - 14, 7, 5, 4, 9, 12, 9, 32, 8, 18, 6, 11, 9, 17, 18, 23, 11, 8, 11, 10, 20, 14, 6, 6, 12, 11, - 20, 6, 24, - ], - }, - { - label: 'BTC price', - topics: 'ichimoku,115k,110k,116k,117k', - description: - "Bitcoiners are currently discussing the recent crash in Bitcoin's price, which has dropped to lows not seen since last week. Despite this, there are mixed sentiments among traders, with some remaining bullish and expecting a pump to the upper level of multi-year resistance, while others are looking to short Bitcoin with targets around $104k. The overall sentiment seems to be cautious, with some expecting a correction to occur soon. Additionally, there is speculation about potential market reactions to upcoming events such as Powell speaking on Friday and the Jackson Hole meeting. Overall, traders are closely monitoring Bitcoin's price movements and making predictions for its future direction.", - data: [ - 7, 16, 7, 14, 167, 15, 49, 5, 12, 8, 17, 4, 7, 9, 3, 12, 7, 4, 6, 6, 1, 2, 3, 13, 10, 4, 8, - 6, 11, 12, 12, 11, 5, 20, 2, 5, 6, 23, 18, 5, 8, 3, 6, 14, 3, 7, 9, 2, 7, 7, 6, 23, 3, 4, 4, - ], - }, - { - label: 'Kanye and YZY coin', - topics: 'kanye,yzy,kanyewest,west,ye', - description: - "The key topics discussed in the messages from twitter are:\n1. Kanye West launching his own crypto token, YZY, which quickly reached a $3 billion market cap before crashing by more than half within hours.\n2. The significant losses and gains made by investors in the YZY token, with some insiders flipping early and regular investors getting wrecked.\n3. The involvement of market participants in piling into meme coins during market dumps.\n4. The success of certain individuals in making large profits through strategic trading in various crypto tokens, including YZY.\n5. The listing of YZY on BitMart and its association with Kanye West's Yeezy brand.\n6. The potential for massive gains in the cryptocurrency market, as exemplified by the $MANYU token.\n7. The decentralized nature of cryptocurrencies and the freedom they provide from centralized authority.\n8. The warning about potential scams in the crypto industry, such as the mention of $YZY being designed to create negative sentiment on crypto.", - data: [ - 10, 15, 8, 12, 12, 12, 13, 20, 6, 9, 17, 4, 8, 16, 4, 10, 12, 11, 9, 10, 0, 1, 15, 22, 7, 8, - 12, 41, 15, 11, 14, 8, 8, 24, 7, 9, 9, 7, 9, 5, 10, 9, 17, 12, 7, 8, 11, 6, 16, 26, 12, 5, - 7, 8, 24, - ], - }, - { - label: 'GameFi', - topics: 'gamers,gamescom,gameplay,immutable,gaming', - description: - 'The key topics discussed in the messages from twitter include:\n- Hard to beat RPG games\n- Crypto gaming\n- Browser games\n- Kingdom Hearts 2\n- Steam achievements\n- Web3 gaming\n- Zcash rewards\n- YGG ecosystem token\n- Mobile gaming\n- Metaverse expansion\n- Partnership with next-gen gaming leaders\n\nOverall, the messages highlight the growing interest and evolution of gaming in the crypto industry, with a focus on RPG games, browser games, and the integration of blockchain technology for real rewards and verifiable competition. The partnership with next-gen gaming leaders and the expansion into the metaverse further emphasize the innovative and collaborative nature of the crypto gaming community.', - data: [ - 6, 6, 10, 15, 9, 10, 6, 4, 12, 10, 10, 8, 6, 6, 5, 9, 9, 57, 57, 8, 2, 7, 7, 10, 12, 6, 13, - 9, 14, 7, 7, 12, 5, 12, 16, 9, 44, 9, 4, 18, 9, 7, 3, 8, 10, 7, 13, 5, 10, 4, 7, 9, 13, 19, - 9, - ], - }, - { - label: 'LINK', - topics: 'chainlink,swift,oracle,link,oracles', - description: - 'On August 21st, there was a significant discussion about Chainlink ($LINK) in the crypto community. The main points discussed were the Reserve Buy of 44,109 tokens per million forever, speculation about Chainlink becoming the third most important token by market capitalization, and the potential for a price drop to $20 before a breakout attempt. Additionally, there was mention of BRRR, a universal settlement layer connecting blockchain networks with traditional payment systems, and the integration of Chainlink as a standard in the industry for oracles, CCIP, proof of reserves, and cross-chain interoperability. There was also a comparison between Ripple and SWIFT in the context of global payments, with SWIFT potentially choosing Ripple or Hedera for blockchain integration. The discussion also touched on the increasing Google search demand for Chainlink and the distribution of fees in the Chainlink treasury. Finally, there was mention of Axelar as a decentralized and non-custodial platform set to connect blockchains in a similar way to how SWIFT changed finance forever.', - data: [ - 14, 2, 9, 13, 3, 3, 8, 84, 5, 7, 6, 7, 7, 8, 4, 5, 8, 6, 3, 6, 0, 4, 8, 6, 10, 14, 6, 2, - 147, 4, 6, 5, 3, 9, 8, 6, 1, 7, 7, 9, 9, 7, 8, 4, 13, 9, 16, 14, 12, 10, 8, 6, 6, 11, 4, - ], - }, - { - label: 'Women in crypto', - topics: 'women,woman,dating,female,wife', - description: - "@DragonKoiBoi is discussing marriage and reflecting on the upcoming 23rd wedding anniversary. They share their thoughts on what marriage means to them, highlighting the importance of understanding and appreciating their partner in all situations. The message also touches on the challenges and joys of marriage.\n\n@CL207 is asking about the duration of someone's marriage, indicating an interest in relationships and possibly seeking advice or insights on the topic.\n\nHairless Sissy and Ashley St. Clair's dating status is mentioned, suggesting potential gossip or curiosity within the community.\n\n@cryptoleon_xyz is encouraging someone to get married, possibly in a humorous or light-hearted manner.\n\nThe message also touches on societal views on masculinity and femininity, with a statement about men not crying and not behaving like women. This could spark discussions on gender roles and stereotypes within the crypto community.\n\nOverall, the messages from @twitter highlight a range of topics related to relationships, marriage, gender norms, and societal trends, providing insights into the interests and discussions within the crypto industry community.", - data: [ - 14, 5, 11, 9, 4, 4, 3, 6, 3, 7, 9, 8, 5, 10, 3, 8, 13, 5, 42, 9, 4, 7, 13, 2, 9, 6, 13, 12, - 11, 16, 32, 17, 0, 4, 8, 13, 6, 11, 7, 10, 5, 15, 22, 5, 3, 6, 13, 14, 14, 12, 15, 5, 6, 36, - 43, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memes,memecoin,meme,sponsoring', - description: - 'The key topics currently discussed in the messages from twitter are memecoins, meme culture, meme folders, meme squads, meme ETFs, meme merch, and specific meme coins like MAYC and $DORK. There is also mention of rebranding, the market potential of memecoins, and the comparison of different meme coins in the current market. The messages also touch on the humor and community aspect of meme coins, as well as the fast-paced nature of creating and trading memecoins.', - data: [ - 7, 6, 10, 8, 2, 6, 11, 7, 15, 11, 8, 16, 9, 5, 8, 17, 8, 9, 4, 8, 9, 6, 9, 11, 3, 9, 8, 2, - 12, 11, 9, 126, 3, 13, 6, 10, 7, 5, 6, 10, 9, 7, 10, 7, 13, 10, 9, 9, 12, 4, 7, 4, 11, 7, 4, - ], - }, - { - label: 'Sleep quality', - topics: 'sleeping,awake,wake,sleep,asleep', - description: - "The key topics discussed in the messages from twitter are:\n1. Lack of sleep and sleeplessness in the crypto industry\n2. The importance of rest and recharging\n3. Feeling tired and in a bad mood\n4. Balancing work, social life, and self-care\n5. Criticism of certain individuals in the industry, such as Huberman\n6. The effects of caffeine on energy levels and productivity\n\nOverall, the messages highlight the challenges of maintaining a healthy work-life balance and the impact of sleep (or lack thereof) on one's well-being in the fast-paced world of cryptocurrency.", - data: [ - 9, 8, 23, 7, 5, 3, 4, 2, 8, 3, 6, 10, 5, 14, 3, 6, 5, 7, 10, 10, 7, 5, 11, 9, 4, 3, 10, 4, - 12, 9, 10, 5, 9, 12, 9, 6, 10, 4, 3, 4, 9, 8, 2, 77, 6, 2, 7, 1, 23, 4, 5, 2, 113, 8, 6, - ], - }, - { - label: 'Art', - topics: 'artist,artists,canvas,artwork,painting', - description: - 'The messages from @zee_fig Picasso, @playyagame, @Cosmideus, @Greekdx, @ArtOnBlockchain, @artblocks_io, @tinochchan, @yelojoquemira, @Fiqhi_Alfani, @finalbosuX, @lamumudotxyz, @glitchmarfa, @genartfound, @martina_menegon, @artie_handz, @objktone, @liminalcorp, @ayenwhyay, @JessMacAI, @0xEdwoods, @Salawaki_3000, @davidvnun, @KurtHustle97, @Ktheorphan, and @lilyillo all revolve around the topic of art in the crypto industry. The messages discuss various artists, styles, and projects within the art community, highlighting the impact and potential of onchain generative art. Additionally, the messages touch on the financial aspect of art in the crypto industry, such as fundraising and the value of limited edition releases. Overall, the crypto community is shown to be actively engaged in supporting and promoting art within the industry.', - data: [ - 9, 21, 109, 6, 3, 3, 11, 9, 19, 5, 19, 8, 12, 8, 3, 9, 11, 12, 9, 10, 6, 11, 7, 7, 9, 11, 3, - 5, 7, 17, 11, 8, 5, 13, 9, 14, 8, 16, 6, 8, 8, 8, 8, 5, 4, 10, 8, 3, 6, 5, 4, 3, 5, 1, 8, - ], - }, - { - label: 'DOGE', - topics: 'dogecoin,doge,cbdoge,triangle,thunder', - description: - 'The messages from twitter show a strong support and enthusiasm for Dogecoin within the crypto community. People are discussing their experiences with Dogecoin, such as catching rare Pokemon in a game and making trades with the coin. There is also mention of the close relationship between Dogecoin and Litecoin communities, with Litecoin supporters showing their support for Dogecoin. Additionally, there is a discussion about the potential for Dogecoin to see significant gains in value in the future, making it a potentially lucrative investment opportunity. Overall, the messages reflect a positive sentiment towards Dogecoin and its potential for growth in the crypto market.', - data: [ - 5, 9, 9, 2, 1, 3, 7, 6, 4, 10, 11, 9, 165, 8, 3, 6, 5, 6, 2, 3, 4, 6, 4, 15, 2, 5, 7, 11, 6, - 11, 4, 5, 8, 4, 4, 7, 8, 8, 10, 7, 8, 7, 13, 4, 3, 3, 9, 6, 9, 5, 11, 1, 11, 7, 6, - ], - }, - { - label: 'UnionBuild', - topics: 'zkgm,union,unionbuild,interoperability,testers', - description: - "The key topics currently being discussed in the crypto community on Twitter include the upcoming Union Build TGE, the allocation of $U tokens, the total and initial supply of Union Build, the addition of liquidity with Union Build for future rewards, the eligibility for a Union Build airdrop, and the unveiling of Union Build's bold roadmap which includes sub-second ZK proofs, new chain integrations, crosschain DeFi stack, and a commitment to renewable energy by 2026. Additionally, there is excitement around the upcoming Zero Knowledge FM episode featuring Union Build and discussions about the advancements in ZK rollups and the optimization of order books.", - data: [ - 6, 7, 3, 15, 3, 3, 9, 15, 7, 13, 10, 9, 5, 6, 7, 11, 7, 6, 4, 2, 2, 6, 2, 5, 7, 11, 6, 11, - 6, 6, 9, 2, 2, 3, 6, 2, 4, 4, 7, 12, 6, 6, 4, 3, 8, 6, 7, 10, 4, 7, 34, 79, 3, 6, 20, - ], - }, - { - label: 'Irys', - topics: 'irys,permanent,programmable,irysxyz,joshbenaron', - description: - 'The key topic discussed in the messages from twitter is the cryptocurrency project called Irys. The community is highly supportive and believes in the potential of Irys, praising its growth, energy, and commitment to secure and permanent data storage on the blockchain. The project is seen as making big moves and being solid, with a focus on empowering users to control their own data and digital identity. The importance of permanent data storage for valuable information like climate research and legal records is also highlighted. Overall, the sentiment towards Irys in the crypto community is positive and optimistic about its future developments.', - data: [ - 6, 4, 3, 11, 3, 2, 8, 5, 4, 7, 6, 21, 9, 3, 10, 8, 8, 6, 7, 7, 3, 1, 2, 5, 6, 105, 10, 7, 4, - 13, 19, 2, 3, 9, 4, 1, 4, 14, 7, 5, 4, 6, 3, 6, 11, 12, 2, 1, 2, 9, 8, 4, 6, 7, 4, - ], - }, - { - label: 'MorphLayer', - topics: 'morph,morphlayer,fx,bantrfun,finncreator', - description: - "The messages from twitter highlight the positive sentiment towards MorphLayer and MorphoLabs within the crypto community. Users are praising MorphLayer for its seamless financial infrastructure built for developers, hybrid rollups, and decentralization. They also appreciate MorphLayer's ability to make finance seamless, smooth, reliable, and fast for high-value transfers and worldwide crypto payments. Additionally, users mention that MorphLayer is making crypto usable for real payments, not just trading, and is accessible to all users, not just whales.\n\nFurthermore, there is excitement about the support for MorphoLabs in risk analytics, with users acknowledging the company's efforts in pushing boundaries and making lending more accessible and efficient. Overall, the community is looking forward to seeing where MorphoLabs goes next and believes in the potential of their products and services.", - data: [ - 4, 4, 1, 6, 2, 1, 10, 2, 1, 8, 4, 7, 4, 3, 6, 13, 17, 3, 6, 6, 1, 6, 0, 3, 5, 3, 5, 4, 3, - 12, 19, 2, 172, 2, 4, 7, 3, 2, 5, 4, 9, 2, 7, 6, 7, 10, 1, 2, 1, 2, 1, 4, 2, 3, 3, - ], - }, - { - label: 'Altseason', - topics: 'altseason,alt,altcoin,winter,season', - description: - 'Based on the messages from twitter, it seems that there is a lot of discussion and speculation about whether or not the next alt season is coming. Some users are confident that it is just the beginning of alt season, while others are more cautious and believe that it may be paused for now. There is also mention of the potential for a Bitcoin moonshot, an Ethereum flippening, or a resurgence of alt season in the future. Overall, the sentiment seems to be mixed but optimistic about the potential for bullish trends in the crypto market.', - data: [ - 5, 95, 0, 13, 4, 4, 11, 4, 15, 6, 8, 3, 8, 5, 7, 3, 6, 3, 3, 3, 0, 6, 3, 6, 20, 3, 6, 2, 4, - 1, 2, 6, 6, 2, 4, 4, 5, 9, 3, 9, 5, 39, 10, 5, 12, 1, 2, 5, 6, 7, 2, 5, 10, 11, 1, - ], - }, - { - label: 'NFTs', - topics: 'nfts,fp,nft,collections,grails', - description: - '@AnotherDataP is discussing various topics related to NFTs in the crypto industry. They mention turning personal milestones into NFTs, the potential growth of FIRS surpassing the annual N20 trillion mark, the AR + NFT model, and the historic significance of NFT collections like Mooncats and CryptoSkulls. They also touch on the rarity of NFTs minted before December 2019 and the innovative sparsity introduced by NVIDIA in their Tensor Cores. Additionally, they highlight a future event where a lucky MetaWin NFT holder could become a millionaire. Overall, @AnotherDataP is actively engaged in discussing and analyzing the trends and developments in the NFT space within the crypto industry.', - data: [ - 3, 3, 8, 4, 2, 6, 8, 2, 11, 11, 11, 5, 3, 6, 12, 7, 11, 7, 6, 1, 8, 3, 7, 5, 8, 4, 6, 8, 3, - 7, 9, 3, 4, 25, 53, 3, 12, 7, 7, 15, 3, 5, 7, 2, 5, 4, 6, 6, 9, 13, 6, 4, 3, 4, 4, - ], - }, - { - label: 'Kaito', - topics: 'kaito,yappers,gkaito,posttge,pretge', - description: - "The key topic currently being discussed in the crypto community on social media is the suggestion that Kaito should rename itself to Laksa. This idea has sparked various conversations and opinions among users, with some discussing the potential benefits and implications of such a change. Additionally, other topics being discussed include the accuracy of group accounts farming Kaito, the impact of onchain holding weighing on the platform, the price action of Kaito NFTs, and the effectiveness of Kaito's reward system for yappers. Overall, the community seems to be actively engaged in discussing and sharing their thoughts on these various topics related to Kaito and the crypto industry.", - data: [ - 7, 6, 5, 5, 3, 4, 5, 5, 6, 9, 7, 3, 4, 8, 6, 8, 5, 2, 5, 5, 5, 6, 10, 1, 5, 5, 42, 12, 4, 6, - 11, 3, 6, 8, 6, 5, 4, 22, 10, 3, 8, 5, 9, 7, 5, 4, 13, 10, 10, 3, 7, 15, 7, 6, 9, - ], - }, - { - label: 'Vibe coding', - topics: 'coding,vibe,vibes,forge,hackathon', - description: - 'The messages from twitter suggest a strong focus on building and engineering in the crypto industry. There is excitement around upcoming projects and coins, with mentions of "Industrial scale vibes engineering," "Builder vibes," and "unstoppable vibes." There is also a mention of "Proof of Vibe Coding" and accessing perks for builders. Overall, the vibe in the crypto community seems positive and forward-looking, with a lot of energy and enthusiasm for new developments and projects.', - data: [ - 4, 9, 6, 6, 3, 3, 13, 9, 6, 2, 7, 7, 7, 12, 3, 8, 5, 4, 3, 1, 3, 3, 3, 3, 6, 5, 4, 6, 0, 2, - 7, 2, 6, 7, 3, 3, 7, 4, 4, 5, 7, 4, 3, 4, 4, 4, 5, 3, 3, 6, 6, 124, 5, 4, 4, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-86.json b/priv/repo/major_topics_seed/data-86.json deleted file mode 100644 index 18ffafd265..0000000000 --- a/priv/repo/major_topics_seed/data-86.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["21.08.25","22.08.25","22.08.25","22.08.25","22.08.25","22.08.25","22.08.25","22.08.25","23.08.25","23.08.25","23.08.25","23.08.25","23.08.25","23.08.25","23.08.25","23.08.25","24.08.25","24.08.25","24.08.25","24.08.25","24.08.25","24.08.25","24.08.25","24.08.25","25.08.25","25.08.25","25.08.25","25.08.25","25.08.25","25.08.25","25.08.25","25.08.25","26.08.25","26.08.25","26.08.25","26.08.25","26.08.25","26.08.25","26.08.25","26.08.25","27.08.25","27.08.25","27.08.25","27.08.25","27.08.25","27.08.25","27.08.25","27.08.25","28.08.25","28.08.25","28.08.25","28.08.25","28.08.25","28.08.25","28.08.25"],"datasets":[{"label":"AI Adoption in Crypto Industry","topics":"ais,agi,generative,centers,compute","description":"The key topics currently being discussed in the crypto industry on social media platforms include the integration of artificial intelligence (AI) into various aspects of the industry. Conversations are happening around the use of AI in governance tooling, on-chain AI applications, and the intersection of AI with cryptocurrency trading and market surveillance.\n\nSpecifically, there is a focus on the potential of AI to power big workloads in AxonDAO, a discussion on the importance of real AI trust infrastructure, and the role of AI agents in putting real capital at risk. Additionally, there is mention of the partnership between ZKAI and AIM, two projects working on privacy and adoption in the AI and cryptocurrency space.\n\nFurthermore, there is recognition of individuals like Sarah Bradley, a Principal Data Scientist at Nasdaq Market Surveillance, who are leading the way in utilizing AI and machine learning in the finance industry. Overall, the integration of AI into various aspects of the crypto industry is a prominent topic of discussion among social media users in the space.","data":[55,173,23,9,5,7,1,15,10,17,16,29,25,16,8,18,22,23,13,0,10,6,16,8,9,21,26,16,13,13,13,9,20,10,25,15,22,21,18,14,11,17,19,16,15,14,14,10,14,12,10,5,13,9,15]},{"label":"Bitcoin price","topics":"112k,110k,113k,reclaim,120k","description":"The current cycle Bitcoin price prediction is around $115k to $116k, which could trigger a 5% decrease in Bitcoin price. Memecoin has seen a significant 89% decrease. There is talk about institutional conviction in Bitcoin with $155B in BTC showing strong support. There are predictions of Bitcoin reaching $180k to $250k within a year. Some traders are making successful calls on Bitcoin trades, with one trader liquidating a short position at $110,663.5. There is discussion about buying the dip in a bull market and filling a CME gap. Coinbase CEO predicts Bitcoin hitting $1,000,000 per BTC by 2030. However, there are concerns about Bitcoin slipping below $110k and potentially dropping further. The trend for BTC.D is looking weak, with expectations of lower prices in the coming months. Overall, there is a mix of bullish and bearish sentiment in the crypto community on Twitter.","data":[10,4,4,14,271,16,298,8,10,9,7,17,4,5,3,6,8,12,3,2,4,4,5,4,12,6,8,2,6,9,6,9,13,6,11,8,7,8,12,7,9,9,5,4,3,11,5,10,3,4,11,10,6,6,2]},{"label":"Meme Coin Trends and Analysis","topics":"hyperpiexyzio,memes,memecoins,meme,memecoin","description":"The messages from @bornadad on Twitter_crypto are mainly focused on memecoins and memes in the crypto industry. The user expresses excitement about the future of memecoins, joking about buying memecoins on Mars in the future. They also mention creating memes for well-known figures in the crypto industry like @saylor.\n\nAdditionally, there is a discussion about the importance of community memes in the success of projects like Stellar. The user also mentions the uniqueness of $QFE compared to other meme coins, highlighting the transparency and story behind the project.\n\nOverall, the messages convey a sense of humor and excitement about the meme culture within the crypto industry.","data":[5,8,1,13,7,5,5,11,6,7,5,1,8,9,2,9,11,8,6,4,12,13,6,9,6,8,5,7,11,6,11,15,141,8,13,9,6,3,10,6,13,5,7,9,6,10,6,11,7,7,6,11,11,3,1]},{"label":"Union Build","topics":"zkgm,union,unionbuild,checker,interoperability","description":"The key topics currently being discussed in the crypto community on Twitter include the upcoming snapshot for Union Build, the strong community support for $U, the potential impact of the snapshot on June 20, and the excitement surrounding the mainnet launch. There is also a focus on the interoperability and smooth asset flows of Union Build, as well as the recent talk about Spitzer enabling verifiable bridges within the ecosystem. Overall, there is a sense of anticipation and optimism surrounding Union Build and its future developments.","data":[5,8,6,7,4,1,1,12,7,17,1,7,3,3,1,8,3,3,10,6,8,10,6,3,3,14,7,0,5,5,3,17,8,6,4,2,1,5,5,6,8,3,2,9,7,8,13,10,3,2,83,6,6,4,111]},{"label":"Whale Movements in Crypto Market","topics":"whales,27b,3500,dumped,lookonchain","description":"The key topics discussed in the messages from twitter include whale movements in the crypto market, particularly in Bitcoin and Ethereum, as well as the impact of these movements on prices. There is also mention of strategic selling by whales to manipulate the market, as well as the behavior of specific whales who are making significant trades in the market. Additionally, there is discussion about the influence of influential figures in the crypto space on the decisions made by whales and NFT funds. Overall, the messages highlight the importance of whale activity in the crypto industry and its potential impact on prices and market dynamics.","data":[4,7,5,4,52,2,15,10,3,2,2,6,3,4,7,9,3,2,7,0,2,2,4,5,3,2,4,2,10,4,5,4,6,3,7,11,11,0,4,2,5,6,7,7,1,2,4,3,4,4,8,6,133,11,6]},{"label":"Crypto industry trends","topics":"idiot,suspicious,yrs,2035,caring","description":"The key topics discussed in the messages from twitter include:\n- Original research starting in 2024\n- Saving time on ideas that may not have a real market\n- ZeroHedge becoming irrelevant\n- Predictions about miners doing well by the year end\n- Concerns about potential arrests related to metamask and money laundering\n- Flashbacks to past events and discussions\n- Legal civil war discussions\n- Innovation in AI and text to image technology\n\nOverall, the messages cover a range of topics related to the crypto industry, technology, and current events.","data":[9,3,5,10,0,4,4,6,9,2,8,8,2,5,3,2,4,5,2,0,1,1,4,7,5,8,7,7,4,0,11,10,4,10,4,6,5,6,8,7,14,7,7,1,7,5,5,14,5,1,10,18,6,2,87]},{"label":"Ethereum ATH","topics":"outlines,fork,composability,diego,lookonchain","description":"The key topics currently discussed in the crypto community regarding Ethereum include the recent ATH crossing, the positive sentiment towards ETH compared to other altcoins, the anticipation of new launches on the ETH platform, stacking ETH for investment purposes, references to the 2nd amendment in relation to Ethereum, short term targets for ETH price, historical price patterns repeating, strong demand for ETH, upcoming tutorials on ETH trading, and the development of SCOPE protocol for seamless communication between different layers of the Ethereum network. Overall, there is a bullish outlook on Ethereum and its potential for growth in the near future.","data":[5,1,1,2,2,2,1,4,2,2,8,1,4,11,169,14,4,4,3,0,2,4,4,3,5,4,4,3,4,8,5,7,3,2,5,5,7,2,3,2,5,7,10,2,6,4,2,2,2,2,3,1,4,2,1]},{"label":"Bitcoin in the crypto industry","topics":"bitcoiner,bitcoiners,bitcointwitter,fixes,peertopeer","description":"The key topics currently discussed in the messages from twitter are:\n- Bitcoin as the answer and economic justice\n- Bitcoin fixing problems and being the best asset to own\n- Hard forks and network splits in Bitcoin\n- Bitcoin as the passageway to the multiverse\n- Bitcoin's narrative and position in the crypto industry\n- Bitcoin's anti-fragility and resilience against attacks\n- The Genesis Block and Satoshi's intentions\n\nOverall, the messages highlight the significance of Bitcoin in the crypto industry and its potential to revolutionize the financial system.","data":[6,3,4,11,141,1,3,6,2,3,7,2,6,4,1,5,8,5,0,1,1,3,3,3,5,2,7,4,4,2,3,6,3,4,4,2,2,4,7,1,4,3,2,2,2,4,7,6,2,3,4,3,4,1,6]},{"label":"ETH Flippening BTC discussions","topics":"ethbtc,flippening,rotation,outperforming,exhausted","description":"The messages from twitter suggest a bullish sentiment towards Ethereum (ETH) compared to Bitcoin (BTC). There is discussion about ETH potentially flipping BTC in terms of market dominance. Some users are advising to focus on ETH rather than BTC for potential gains. There is also mention of a potential price target for ETH between $6k-$8k, with the possibility of going even higher.\n\nAdditionally, there is talk about the integration of tETH (tokenized Ethereum) into Aave's Core market, allowing tETH holders to use it as collateral to borrow stablecoins. This integration is seen as a positive development for the Ethereum ecosystem.\n\nOverall, the sentiment towards Ethereum appears to be positive and optimistic, with users expressing confidence in its future growth and potential.","data":[3,6,2,5,29,0,41,2,1,2,6,2,1,2,114,10,9,1,1,0,0,3,2,2,2,4,7,3,1,2,2,1,4,6,5,3,7,2,4,1,2,3,2,1,1,7,2,7,6,1,4,4,0,1,2]},{"label":"Rate cuts","topics":"cuts,odds,stanley,probability,cut","description":"The key topics currently being discussed in the crypto community on Twitter include the potential for rate cuts by the Federal Reserve, with some users expressing bullish sentiments towards the crypto market if rate cuts were to occur in September. There is also discussion about the impact of rate cuts on the economy and the market, with some users referencing historical trends and projections by financial institutions like Goldman Sachs. Additionally, there is speculation about the likelihood of rate cuts based on Treasury yields and market signals. Overall, there is a mix of optimism and caution regarding the potential for rate cuts and their impact on the market.","data":[5,2,1,9,0,18,10,7,7,2,4,23,1,4,0,0,31,1,2,1,3,0,0,4,4,0,3,1,6,5,3,0,9,4,4,10,3,4,12,4,52,8,6,3,2,5,1,8,6,0,3,2,1,3,2]},{"label":"$WLFI","topics":"worldlibertyfi,wlfi,usd1,premarket,liberty","description":"Based on the messages from twitter, it seems that there is a lot of buzz surrounding the $WLFI token. There are discussions about its potential to hit $1 this cycle, the involvement of President Trump, and its upcoming launch on Ethereum with 20% tokens unlocked. There is also mention of confusion over Aave's governance deal with WLFI and a crypto whale making a massive bet on the token. Additionally, there are promotions for trading contests related to $WLFI futures and other cryptocurrencies. Overall, it appears that $WLFI is generating significant interest and excitement within the crypto community.","data":[3,1,4,2,8,7,3,7,3,6,5,2,2,2,1,4,1,5,3,0,1,0,0,2,4,9,6,2,10,2,9,0,6,2,5,4,2,5,5,4,6,2,3,0,1,1,0,7,5,10,6,4,9,85,3]},{"label":"Crypto Community Giveaway Events Analysis","topics":"giveaway,winners,giveaways,winner,rt","description":"The key topics currently discussed in the crypto community on Twitter include giveaways, lootbox rewards, mystery boxes, Solana giveaways, Fortnite Crew Pack giveaway, XPLA prize pool, ZED rewards, spot margin perks, and the GG Box Event. Participants are excited about winning various prizes such as cryptocurrencies, merchandise, and exclusive coupons. The community is actively engaging in these events and eagerly awaiting the announcement of winners. Joining Telegram groups and following specific accounts on social media platforms are common requirements to participate in these giveaways and contests. Overall, the crypto community is buzzing with excitement and opportunities to win valuable rewards.","data":[2,5,4,3,2,7,0,1,6,32,2,5,1,5,4,1,5,6,42,0,0,4,4,2,4,2,2,8,4,6,4,0,1,3,3,3,7,7,7,1,6,1,8,2,4,2,5,4,3,0,7,5,27,3,2]},{"label":"Crypto Gaming Industry","topics":"gamers,games,gaming,gamescom,puzzles","description":"Today in the crypto gaming industry, there is a lot of excitement and discussion around various games and platforms. Some key topics being discussed include the launch of a new Solana-based arcade game called Jakpot Games, which has seen significant success despite a lean team and a decrease in crypto gaming funding. Additionally, there is anticipation for the release of Stalker 2 for PS5, with enhanced controls and graphics, after facing delays during development. \n\nFurthermore, the integration of blockchain technology in gaming, particularly with projects like Fableborne and Peaq's integration with geospatial projects like Over The Reality, is generating a lot of interest and excitement. Overall, the sentiment in the crypto gaming community is positive, with a focus on innovation, quality graphics, and the potential for the industry to transform into a significant and undeniable industry in the future.","data":[1,1,3,3,2,4,2,3,6,8,6,5,4,5,2,1,6,42,4,0,4,3,7,3,4,5,5,4,6,5,2,10,5,3,7,3,4,8,19,2,3,4,2,4,6,5,3,5,7,3,5,7,3,5,4]},{"label":"Wallet Usage and Security","topics":"hardware,trezor,ledger,cake,recovery","description":"The key topics discussed in the messages from twitter include the importance of wallets in the crypto industry, the need for hardware wallets for security, the launch of new wallet features such as Kite Testnet access and $KITE token transfers, and the convenience of using Okto Wallet to manage crypto across multiple blockchains. Additionally, there is mention of specific wallet options such as Radix Wallet, bluewallet, zerion wallet, DashPay, and Bitget Wallet. The messages also touch on the significance of voting with wallets in certain projects and the potential impact of wallet integration on trading volume. Overall, the discussions highlight the evolving landscape of wallet technology and the various ways in which individuals can securely store and manage their crypto assets.","data":[8,5,5,7,5,2,1,6,8,7,6,2,3,8,1,4,3,7,2,0,3,2,4,18,6,7,2,3,3,1,3,5,5,4,8,5,7,2,2,10,6,4,7,3,2,4,1,3,5,6,7,26,4,2,9]},{"label":"Football Dot Fun Solana Clone","topics":"football,adamfdf,footballdotfun,calebrebelo,soccer","description":"The messages from twitter suggest that there is a lot of excitement and anticipation surrounding the potential for a @footballdotfun clone on Solana. Users are discussing the potential for growth and success of such a project, with many expressing interest in getting involved. The analytics on Dune show that while the number of users may not be large currently, the hype and interest in the project are significant. Builders in the crypto industry are taking note of the success of @footballdotfun and are expected to bring more sports onto the blockchain in the near future. Overall, there is a sense of optimism and support for projects like @footballdotfun within the crypto community.","data":[6,7,7,7,4,1,5,5,4,8,4,6,6,1,1,4,22,7,1,4,0,6,6,7,9,3,5,5,6,10,5,2,3,3,5,4,7,3,6,4,1,2,5,5,2,5,5,2,7,2,4,6,9,7,6]},{"label":"XRP Price Surge","topics":"xrp,ripple,340,resting,028","description":"The messages from twitter suggest that there is a mixed sentiment surrounding XRP. Some users are optimistic about its potential for a price increase, with predictions of reaching $4+ by the end of October and potential targets of $5.2 and $7.3. There is also mention of XRP being on the verge of a monumental run and the brand being supreme.\n\nHowever, there are also negative opinions expressed, with some users claiming that there is no work being done with XRP and that it will disappoint later this year when Swift goes live with Chainlink instead. There is also skepticism about XRP being used as a bridge currency.\n\nOverall, the discussions on twitter indicate a range of opinions and predictions about XRP's future performance in the crypto market.","data":[4,1,0,2,1,2,2,10,0,2,2,1,1,0,1,2,2,4,1,1,2,2,1,4,6,3,0,0,4,1,4,0,2,3,1,5,6,3,3,1,4,11,4,0,1,2,1,4,6,2,2,2,2,134,3]},{"label":"Sui Potential and Partnerships Analysis","topics":"sei,seinetwork,sui,acc,suinetwork","description":"Summary:\nThe messages from twitter discuss the potential of $SUI reaching $100 a coin, with users expressing bullish sentiments and confidence in the project. There is a partnership with Alibaba Cloud to boost Web3 development, as well as opportunities for earning rewards through various campaigns and liquidity pools. The Sei ecosystem is highlighted for its growth and simplification of the crypto space. Additionally, there are mentions of delays in shipments for the SuiPlay0X1 gaming handheld due to import duties. Overall, the sentiment towards $SUI and the Sei ecosystem appears positive and promising.","data":[2,4,3,3,2,1,5,5,3,1,4,10,1,2,1,2,2,1,1,1,4,3,2,3,2,4,2,1,10,2,4,1,5,2,6,4,1,4,2,0,1,5,28,5,2,68,5,2,10,1,3,4,4,0,1]},{"label":"Pudgy Penguins","topics":"penguins,pengu,penguin,pudgy,penguasia","description":"The key topics discussed in the messages from twitter are:\n1. Labor Day Weekend being described as epic for $PENGU 2021Pengu.\n2. The value of owning a Penguin.\n3. Pudgy Penguins breaking news.\n4. Suggestions for PENGU to announce buybacks with revenue.\n5. $PENGU surging to the #1 spot in 24hr memecoin volume.\n6. PENGU holding steady at $0.030 despite a daily dip, with potential for price climb if resistance at $0.036 breaks.\n7. Positive sentiment towards PENGU and Pudgy Penguins in general.","data":[6,0,4,2,0,0,2,3,1,1,0,1,1,1,1,3,3,2,0,1,2,1,1,0,5,3,3,2,3,4,5,9,1,2,2,1,5,106,5,24,1,3,5,1,4,4,2,1,1,2,1,3,2,2,3]},{"label":"Chainlink","topics":"chainlink,link,mev,sustainability,gmx","description":"The key topics currently being discussed about $LINK #ChainLink and $ETH #Ethereum in the crypto community include:\n\n1. Potential buying opportunity at $23.5 for Chainlink ($LINK) as something big is expected to happen.\n2. Chainlink partnering with a $200 billion giant SBI, despite a drop in LINK price.\n3. Technical analysis indicating that $LINK needs to break above $25 for a good rally, with potential resistance at $30.\n4. Discussion about the role of Chainlink in providing trustworthy settlement across different networks and legal jurisdictions.\n5. Technical outlook suggesting that holding above $23 support is positive for LINK, with potential upside moves.\n6. Price predictions for LINK reaching $30 if it breaks above $26.50-$27.00, with potential correction risk if it fails to hold above $25.50.\n7. Analysis indicating strong potential for LINK to reach targets of $36, $47, and $53 in the current cycle.\n\nOverall, the sentiment around Chainlink ($LINK) appears to be positive, with discussions focusing on potential price movements, partnerships, and technical analysis.","data":[2,1,2,2,1,1,0,4,27,2,0,1,0,1,0,4,1,1,0,0,1,1,2,1,1,2,0,1,3,124,5,2,5,2,1,2,1,1,4,1,3,2,1,4,2,2,2,2,1,0,4,3,1,5,1]},{"label":"NFTs and DeFi","topics":"va77ss,hurts,pops,freaking,tickers","description":"The key topic currently being discussed in the crypto community on social media is the bullish sentiment towards NFTs. Several users, including @_Juliaweb3, @Defi__Priestess, @memenetic, and @Ensofi_xyz, are expressing their strong optimism and positivity towards NFTs and various DeFi projects. Additionally, there is a mention of being bullish on airdrops and the importance of staying positive and optimistic in the crypto space. Overall, the sentiment towards NFTs and DeFi projects appears to be overwhelmingly positive among the users mentioned in the messages.","data":[1,2,2,5,0,1,0,102,1,2,6,1,4,0,2,5,11,5,2,2,3,1,2,1,2,7,1,2,2,7,2,3,3,2,2,5,1,1,2,1,2,3,1,1,2,10,1,1,3,4,2,0,1,0,4]},{"label":"Tokenized RWAs","topics":"rwa,rwas,tokenization,mavryk,pulse","description":"Hedera Hashgraph is unique because it focuses on real-world assets (RWAs) and tokenization, which is a growing trend in the crypto industry. The platform allows for the tokenization of various assets, such as bonds, stocks, and commodities, making them easily tradable with real liquidity and profit potential. Additionally, Hedera's partnership with various organizations and its focus on AI, finance, and real-world assets sets it apart from other projects in the space. Overall, Hedera's approach to RWAs and tokenization makes it a standout player in the industry.","data":[4,2,10,2,3,3,2,4,4,7,0,1,2,3,6,3,1,4,0,0,1,1,3,4,1,1,8,8,5,3,0,4,4,4,3,1,2,2,1,6,5,53,0,1,4,4,3,8,8,6,4,2,3,2,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-86.ts b/priv/repo/major_topics_seed/data-86.ts deleted file mode 100644 index fed51b7f9c..0000000000 --- a/priv/repo/major_topics_seed/data-86.ts +++ /dev/null @@ -1,272 +0,0 @@ -export const NARRATIVES = { - labels: [ - '21.08.25', - '22.08.25', - '22.08.25', - '22.08.25', - '22.08.25', - '22.08.25', - '22.08.25', - '22.08.25', - '23.08.25', - '23.08.25', - '23.08.25', - '23.08.25', - '23.08.25', - '23.08.25', - '23.08.25', - '23.08.25', - '24.08.25', - '24.08.25', - '24.08.25', - '24.08.25', - '24.08.25', - '24.08.25', - '24.08.25', - '24.08.25', - '25.08.25', - '25.08.25', - '25.08.25', - '25.08.25', - '25.08.25', - '25.08.25', - '25.08.25', - '25.08.25', - '26.08.25', - '26.08.25', - '26.08.25', - '26.08.25', - '26.08.25', - '26.08.25', - '26.08.25', - '26.08.25', - '27.08.25', - '27.08.25', - '27.08.25', - '27.08.25', - '27.08.25', - '27.08.25', - '27.08.25', - '27.08.25', - '28.08.25', - '28.08.25', - '28.08.25', - '28.08.25', - '28.08.25', - '28.08.25', - '28.08.25', - ], - datasets: [ - { - label: 'AI Adoption in Crypto Industry', - topics: 'ais,agi,generative,centers,compute', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms include the integration of artificial intelligence (AI) into various aspects of the industry. Conversations are happening around the use of AI in governance tooling, on-chain AI applications, and the intersection of AI with cryptocurrency trading and market surveillance.\n\nSpecifically, there is a focus on the potential of AI to power big workloads in AxonDAO, a discussion on the importance of real AI trust infrastructure, and the role of AI agents in putting real capital at risk. Additionally, there is mention of the partnership between ZKAI and AIM, two projects working on privacy and adoption in the AI and cryptocurrency space.\n\nFurthermore, there is recognition of individuals like Sarah Bradley, a Principal Data Scientist at Nasdaq Market Surveillance, who are leading the way in utilizing AI and machine learning in the finance industry. Overall, the integration of AI into various aspects of the crypto industry is a prominent topic of discussion among social media users in the space.', - data: [ - 55, 173, 23, 9, 5, 7, 1, 15, 10, 17, 16, 29, 25, 16, 8, 18, 22, 23, 13, 0, 10, 6, 16, 8, 9, - 21, 26, 16, 13, 13, 13, 9, 20, 10, 25, 15, 22, 21, 18, 14, 11, 17, 19, 16, 15, 14, 14, 10, - 14, 12, 10, 5, 13, 9, 15, - ], - }, - { - label: 'Bitcoin price', - topics: '112k,110k,113k,reclaim,120k', - description: - 'The current cycle Bitcoin price prediction is around $115k to $116k, which could trigger a 5% decrease in Bitcoin price. Memecoin has seen a significant 89% decrease. There is talk about institutional conviction in Bitcoin with $155B in BTC showing strong support. There are predictions of Bitcoin reaching $180k to $250k within a year. Some traders are making successful calls on Bitcoin trades, with one trader liquidating a short position at $110,663.5. There is discussion about buying the dip in a bull market and filling a CME gap. Coinbase CEO predicts Bitcoin hitting $1,000,000 per BTC by 2030. However, there are concerns about Bitcoin slipping below $110k and potentially dropping further. The trend for BTC.D is looking weak, with expectations of lower prices in the coming months. Overall, there is a mix of bullish and bearish sentiment in the crypto community on Twitter.', - data: [ - 10, 4, 4, 14, 271, 16, 298, 8, 10, 9, 7, 17, 4, 5, 3, 6, 8, 12, 3, 2, 4, 4, 5, 4, 12, 6, 8, - 2, 6, 9, 6, 9, 13, 6, 11, 8, 7, 8, 12, 7, 9, 9, 5, 4, 3, 11, 5, 10, 3, 4, 11, 10, 6, 6, 2, - ], - }, - { - label: 'Meme Coin Trends and Analysis', - topics: 'hyperpiexyzio,memes,memecoins,meme,memecoin', - description: - 'The messages from @bornadad on Twitter_crypto are mainly focused on memecoins and memes in the crypto industry. The user expresses excitement about the future of memecoins, joking about buying memecoins on Mars in the future. They also mention creating memes for well-known figures in the crypto industry like @saylor.\n\nAdditionally, there is a discussion about the importance of community memes in the success of projects like Stellar. The user also mentions the uniqueness of $QFE compared to other meme coins, highlighting the transparency and story behind the project.\n\nOverall, the messages convey a sense of humor and excitement about the meme culture within the crypto industry.', - data: [ - 5, 8, 1, 13, 7, 5, 5, 11, 6, 7, 5, 1, 8, 9, 2, 9, 11, 8, 6, 4, 12, 13, 6, 9, 6, 8, 5, 7, 11, - 6, 11, 15, 141, 8, 13, 9, 6, 3, 10, 6, 13, 5, 7, 9, 6, 10, 6, 11, 7, 7, 6, 11, 11, 3, 1, - ], - }, - { - label: 'Union Build', - topics: 'zkgm,union,unionbuild,checker,interoperability', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the upcoming snapshot for Union Build, the strong community support for $U, the potential impact of the snapshot on June 20, and the excitement surrounding the mainnet launch. There is also a focus on the interoperability and smooth asset flows of Union Build, as well as the recent talk about Spitzer enabling verifiable bridges within the ecosystem. Overall, there is a sense of anticipation and optimism surrounding Union Build and its future developments.', - data: [ - 5, 8, 6, 7, 4, 1, 1, 12, 7, 17, 1, 7, 3, 3, 1, 8, 3, 3, 10, 6, 8, 10, 6, 3, 3, 14, 7, 0, 5, - 5, 3, 17, 8, 6, 4, 2, 1, 5, 5, 6, 8, 3, 2, 9, 7, 8, 13, 10, 3, 2, 83, 6, 6, 4, 111, - ], - }, - { - label: 'Whale Movements in Crypto Market', - topics: 'whales,27b,3500,dumped,lookonchain', - description: - 'The key topics discussed in the messages from twitter include whale movements in the crypto market, particularly in Bitcoin and Ethereum, as well as the impact of these movements on prices. There is also mention of strategic selling by whales to manipulate the market, as well as the behavior of specific whales who are making significant trades in the market. Additionally, there is discussion about the influence of influential figures in the crypto space on the decisions made by whales and NFT funds. Overall, the messages highlight the importance of whale activity in the crypto industry and its potential impact on prices and market dynamics.', - data: [ - 4, 7, 5, 4, 52, 2, 15, 10, 3, 2, 2, 6, 3, 4, 7, 9, 3, 2, 7, 0, 2, 2, 4, 5, 3, 2, 4, 2, 10, - 4, 5, 4, 6, 3, 7, 11, 11, 0, 4, 2, 5, 6, 7, 7, 1, 2, 4, 3, 4, 4, 8, 6, 133, 11, 6, - ], - }, - { - label: 'Crypto industry trends', - topics: 'idiot,suspicious,yrs,2035,caring', - description: - 'The key topics discussed in the messages from twitter include:\n- Original research starting in 2024\n- Saving time on ideas that may not have a real market\n- ZeroHedge becoming irrelevant\n- Predictions about miners doing well by the year end\n- Concerns about potential arrests related to metamask and money laundering\n- Flashbacks to past events and discussions\n- Legal civil war discussions\n- Innovation in AI and text to image technology\n\nOverall, the messages cover a range of topics related to the crypto industry, technology, and current events.', - data: [ - 9, 3, 5, 10, 0, 4, 4, 6, 9, 2, 8, 8, 2, 5, 3, 2, 4, 5, 2, 0, 1, 1, 4, 7, 5, 8, 7, 7, 4, 0, - 11, 10, 4, 10, 4, 6, 5, 6, 8, 7, 14, 7, 7, 1, 7, 5, 5, 14, 5, 1, 10, 18, 6, 2, 87, - ], - }, - { - label: 'Ethereum ATH', - topics: 'outlines,fork,composability,diego,lookonchain', - description: - 'The key topics currently discussed in the crypto community regarding Ethereum include the recent ATH crossing, the positive sentiment towards ETH compared to other altcoins, the anticipation of new launches on the ETH platform, stacking ETH for investment purposes, references to the 2nd amendment in relation to Ethereum, short term targets for ETH price, historical price patterns repeating, strong demand for ETH, upcoming tutorials on ETH trading, and the development of SCOPE protocol for seamless communication between different layers of the Ethereum network. Overall, there is a bullish outlook on Ethereum and its potential for growth in the near future.', - data: [ - 5, 1, 1, 2, 2, 2, 1, 4, 2, 2, 8, 1, 4, 11, 169, 14, 4, 4, 3, 0, 2, 4, 4, 3, 5, 4, 4, 3, 4, - 8, 5, 7, 3, 2, 5, 5, 7, 2, 3, 2, 5, 7, 10, 2, 6, 4, 2, 2, 2, 2, 3, 1, 4, 2, 1, - ], - }, - { - label: 'Bitcoin in the crypto industry', - topics: 'bitcoiner,bitcoiners,bitcointwitter,fixes,peertopeer', - description: - "The key topics currently discussed in the messages from twitter are:\n- Bitcoin as the answer and economic justice\n- Bitcoin fixing problems and being the best asset to own\n- Hard forks and network splits in Bitcoin\n- Bitcoin as the passageway to the multiverse\n- Bitcoin's narrative and position in the crypto industry\n- Bitcoin's anti-fragility and resilience against attacks\n- The Genesis Block and Satoshi's intentions\n\nOverall, the messages highlight the significance of Bitcoin in the crypto industry and its potential to revolutionize the financial system.", - data: [ - 6, 3, 4, 11, 141, 1, 3, 6, 2, 3, 7, 2, 6, 4, 1, 5, 8, 5, 0, 1, 1, 3, 3, 3, 5, 2, 7, 4, 4, 2, - 3, 6, 3, 4, 4, 2, 2, 4, 7, 1, 4, 3, 2, 2, 2, 4, 7, 6, 2, 3, 4, 3, 4, 1, 6, - ], - }, - { - label: 'ETH Flippening BTC discussions', - topics: 'ethbtc,flippening,rotation,outperforming,exhausted', - description: - "The messages from twitter suggest a bullish sentiment towards Ethereum (ETH) compared to Bitcoin (BTC). There is discussion about ETH potentially flipping BTC in terms of market dominance. Some users are advising to focus on ETH rather than BTC for potential gains. There is also mention of a potential price target for ETH between $6k-$8k, with the possibility of going even higher.\n\nAdditionally, there is talk about the integration of tETH (tokenized Ethereum) into Aave's Core market, allowing tETH holders to use it as collateral to borrow stablecoins. This integration is seen as a positive development for the Ethereum ecosystem.\n\nOverall, the sentiment towards Ethereum appears to be positive and optimistic, with users expressing confidence in its future growth and potential.", - data: [ - 3, 6, 2, 5, 29, 0, 41, 2, 1, 2, 6, 2, 1, 2, 114, 10, 9, 1, 1, 0, 0, 3, 2, 2, 2, 4, 7, 3, 1, - 2, 2, 1, 4, 6, 5, 3, 7, 2, 4, 1, 2, 3, 2, 1, 1, 7, 2, 7, 6, 1, 4, 4, 0, 1, 2, - ], - }, - { - label: 'Rate cuts', - topics: 'cuts,odds,stanley,probability,cut', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the potential for rate cuts by the Federal Reserve, with some users expressing bullish sentiments towards the crypto market if rate cuts were to occur in September. There is also discussion about the impact of rate cuts on the economy and the market, with some users referencing historical trends and projections by financial institutions like Goldman Sachs. Additionally, there is speculation about the likelihood of rate cuts based on Treasury yields and market signals. Overall, there is a mix of optimism and caution regarding the potential for rate cuts and their impact on the market.', - data: [ - 5, 2, 1, 9, 0, 18, 10, 7, 7, 2, 4, 23, 1, 4, 0, 0, 31, 1, 2, 1, 3, 0, 0, 4, 4, 0, 3, 1, 6, - 5, 3, 0, 9, 4, 4, 10, 3, 4, 12, 4, 52, 8, 6, 3, 2, 5, 1, 8, 6, 0, 3, 2, 1, 3, 2, - ], - }, - { - label: '$WLFI', - topics: 'worldlibertyfi,wlfi,usd1,premarket,liberty', - description: - "Based on the messages from twitter, it seems that there is a lot of buzz surrounding the $WLFI token. There are discussions about its potential to hit $1 this cycle, the involvement of President Trump, and its upcoming launch on Ethereum with 20% tokens unlocked. There is also mention of confusion over Aave's governance deal with WLFI and a crypto whale making a massive bet on the token. Additionally, there are promotions for trading contests related to $WLFI futures and other cryptocurrencies. Overall, it appears that $WLFI is generating significant interest and excitement within the crypto community.", - data: [ - 3, 1, 4, 2, 8, 7, 3, 7, 3, 6, 5, 2, 2, 2, 1, 4, 1, 5, 3, 0, 1, 0, 0, 2, 4, 9, 6, 2, 10, 2, - 9, 0, 6, 2, 5, 4, 2, 5, 5, 4, 6, 2, 3, 0, 1, 1, 0, 7, 5, 10, 6, 4, 9, 85, 3, - ], - }, - { - label: 'Crypto Community Giveaway Events Analysis', - topics: 'giveaway,winners,giveaways,winner,rt', - description: - 'The key topics currently discussed in the crypto community on Twitter include giveaways, lootbox rewards, mystery boxes, Solana giveaways, Fortnite Crew Pack giveaway, XPLA prize pool, ZED rewards, spot margin perks, and the GG Box Event. Participants are excited about winning various prizes such as cryptocurrencies, merchandise, and exclusive coupons. The community is actively engaging in these events and eagerly awaiting the announcement of winners. Joining Telegram groups and following specific accounts on social media platforms are common requirements to participate in these giveaways and contests. Overall, the crypto community is buzzing with excitement and opportunities to win valuable rewards.', - data: [ - 2, 5, 4, 3, 2, 7, 0, 1, 6, 32, 2, 5, 1, 5, 4, 1, 5, 6, 42, 0, 0, 4, 4, 2, 4, 2, 2, 8, 4, 6, - 4, 0, 1, 3, 3, 3, 7, 7, 7, 1, 6, 1, 8, 2, 4, 2, 5, 4, 3, 0, 7, 5, 27, 3, 2, - ], - }, - { - label: 'Crypto Gaming Industry', - topics: 'gamers,games,gaming,gamescom,puzzles', - description: - "Today in the crypto gaming industry, there is a lot of excitement and discussion around various games and platforms. Some key topics being discussed include the launch of a new Solana-based arcade game called Jakpot Games, which has seen significant success despite a lean team and a decrease in crypto gaming funding. Additionally, there is anticipation for the release of Stalker 2 for PS5, with enhanced controls and graphics, after facing delays during development. \n\nFurthermore, the integration of blockchain technology in gaming, particularly with projects like Fableborne and Peaq's integration with geospatial projects like Over The Reality, is generating a lot of interest and excitement. Overall, the sentiment in the crypto gaming community is positive, with a focus on innovation, quality graphics, and the potential for the industry to transform into a significant and undeniable industry in the future.", - data: [ - 1, 1, 3, 3, 2, 4, 2, 3, 6, 8, 6, 5, 4, 5, 2, 1, 6, 42, 4, 0, 4, 3, 7, 3, 4, 5, 5, 4, 6, 5, - 2, 10, 5, 3, 7, 3, 4, 8, 19, 2, 3, 4, 2, 4, 6, 5, 3, 5, 7, 3, 5, 7, 3, 5, 4, - ], - }, - { - label: 'Wallet Usage and Security', - topics: 'hardware,trezor,ledger,cake,recovery', - description: - 'The key topics discussed in the messages from twitter include the importance of wallets in the crypto industry, the need for hardware wallets for security, the launch of new wallet features such as Kite Testnet access and $KITE token transfers, and the convenience of using Okto Wallet to manage crypto across multiple blockchains. Additionally, there is mention of specific wallet options such as Radix Wallet, bluewallet, zerion wallet, DashPay, and Bitget Wallet. The messages also touch on the significance of voting with wallets in certain projects and the potential impact of wallet integration on trading volume. Overall, the discussions highlight the evolving landscape of wallet technology and the various ways in which individuals can securely store and manage their crypto assets.', - data: [ - 8, 5, 5, 7, 5, 2, 1, 6, 8, 7, 6, 2, 3, 8, 1, 4, 3, 7, 2, 0, 3, 2, 4, 18, 6, 7, 2, 3, 3, 1, - 3, 5, 5, 4, 8, 5, 7, 2, 2, 10, 6, 4, 7, 3, 2, 4, 1, 3, 5, 6, 7, 26, 4, 2, 9, - ], - }, - { - label: 'Football Dot Fun Solana Clone', - topics: 'football,adamfdf,footballdotfun,calebrebelo,soccer', - description: - 'The messages from twitter suggest that there is a lot of excitement and anticipation surrounding the potential for a @footballdotfun clone on Solana. Users are discussing the potential for growth and success of such a project, with many expressing interest in getting involved. The analytics on Dune show that while the number of users may not be large currently, the hype and interest in the project are significant. Builders in the crypto industry are taking note of the success of @footballdotfun and are expected to bring more sports onto the blockchain in the near future. Overall, there is a sense of optimism and support for projects like @footballdotfun within the crypto community.', - data: [ - 6, 7, 7, 7, 4, 1, 5, 5, 4, 8, 4, 6, 6, 1, 1, 4, 22, 7, 1, 4, 0, 6, 6, 7, 9, 3, 5, 5, 6, 10, - 5, 2, 3, 3, 5, 4, 7, 3, 6, 4, 1, 2, 5, 5, 2, 5, 5, 2, 7, 2, 4, 6, 9, 7, 6, - ], - }, - { - label: 'XRP Price Surge', - topics: 'xrp,ripple,340,resting,028', - description: - "The messages from twitter suggest that there is a mixed sentiment surrounding XRP. Some users are optimistic about its potential for a price increase, with predictions of reaching $4+ by the end of October and potential targets of $5.2 and $7.3. There is also mention of XRP being on the verge of a monumental run and the brand being supreme.\n\nHowever, there are also negative opinions expressed, with some users claiming that there is no work being done with XRP and that it will disappoint later this year when Swift goes live with Chainlink instead. There is also skepticism about XRP being used as a bridge currency.\n\nOverall, the discussions on twitter indicate a range of opinions and predictions about XRP's future performance in the crypto market.", - data: [ - 4, 1, 0, 2, 1, 2, 2, 10, 0, 2, 2, 1, 1, 0, 1, 2, 2, 4, 1, 1, 2, 2, 1, 4, 6, 3, 0, 0, 4, 1, - 4, 0, 2, 3, 1, 5, 6, 3, 3, 1, 4, 11, 4, 0, 1, 2, 1, 4, 6, 2, 2, 2, 2, 134, 3, - ], - }, - { - label: 'Sui Potential and Partnerships Analysis', - topics: 'sei,seinetwork,sui,acc,suinetwork', - description: - 'Summary:\nThe messages from twitter discuss the potential of $SUI reaching $100 a coin, with users expressing bullish sentiments and confidence in the project. There is a partnership with Alibaba Cloud to boost Web3 development, as well as opportunities for earning rewards through various campaigns and liquidity pools. The Sei ecosystem is highlighted for its growth and simplification of the crypto space. Additionally, there are mentions of delays in shipments for the SuiPlay0X1 gaming handheld due to import duties. Overall, the sentiment towards $SUI and the Sei ecosystem appears positive and promising.', - data: [ - 2, 4, 3, 3, 2, 1, 5, 5, 3, 1, 4, 10, 1, 2, 1, 2, 2, 1, 1, 1, 4, 3, 2, 3, 2, 4, 2, 1, 10, 2, - 4, 1, 5, 2, 6, 4, 1, 4, 2, 0, 1, 5, 28, 5, 2, 68, 5, 2, 10, 1, 3, 4, 4, 0, 1, - ], - }, - { - label: 'Pudgy Penguins', - topics: 'penguins,pengu,penguin,pudgy,penguasia', - description: - 'The key topics discussed in the messages from twitter are:\n1. Labor Day Weekend being described as epic for $PENGU 2021Pengu.\n2. The value of owning a Penguin.\n3. Pudgy Penguins breaking news.\n4. Suggestions for PENGU to announce buybacks with revenue.\n5. $PENGU surging to the #1 spot in 24hr memecoin volume.\n6. PENGU holding steady at $0.030 despite a daily dip, with potential for price climb if resistance at $0.036 breaks.\n7. Positive sentiment towards PENGU and Pudgy Penguins in general.', - data: [ - 6, 0, 4, 2, 0, 0, 2, 3, 1, 1, 0, 1, 1, 1, 1, 3, 3, 2, 0, 1, 2, 1, 1, 0, 5, 3, 3, 2, 3, 4, 5, - 9, 1, 2, 2, 1, 5, 106, 5, 24, 1, 3, 5, 1, 4, 4, 2, 1, 1, 2, 1, 3, 2, 2, 3, - ], - }, - { - label: 'Chainlink', - topics: 'chainlink,link,mev,sustainability,gmx', - description: - 'The key topics currently being discussed about $LINK #ChainLink and $ETH #Ethereum in the crypto community include:\n\n1. Potential buying opportunity at $23.5 for Chainlink ($LINK) as something big is expected to happen.\n2. Chainlink partnering with a $200 billion giant SBI, despite a drop in LINK price.\n3. Technical analysis indicating that $LINK needs to break above $25 for a good rally, with potential resistance at $30.\n4. Discussion about the role of Chainlink in providing trustworthy settlement across different networks and legal jurisdictions.\n5. Technical outlook suggesting that holding above $23 support is positive for LINK, with potential upside moves.\n6. Price predictions for LINK reaching $30 if it breaks above $26.50-$27.00, with potential correction risk if it fails to hold above $25.50.\n7. Analysis indicating strong potential for LINK to reach targets of $36, $47, and $53 in the current cycle.\n\nOverall, the sentiment around Chainlink ($LINK) appears to be positive, with discussions focusing on potential price movements, partnerships, and technical analysis.', - data: [ - 2, 1, 2, 2, 1, 1, 0, 4, 27, 2, 0, 1, 0, 1, 0, 4, 1, 1, 0, 0, 1, 1, 2, 1, 1, 2, 0, 1, 3, 124, - 5, 2, 5, 2, 1, 2, 1, 1, 4, 1, 3, 2, 1, 4, 2, 2, 2, 2, 1, 0, 4, 3, 1, 5, 1, - ], - }, - { - label: 'NFTs and DeFi', - topics: 'va77ss,hurts,pops,freaking,tickers', - description: - 'The key topic currently being discussed in the crypto community on social media is the bullish sentiment towards NFTs. Several users, including @_Juliaweb3, @Defi__Priestess, @memenetic, and @Ensofi_xyz, are expressing their strong optimism and positivity towards NFTs and various DeFi projects. Additionally, there is a mention of being bullish on airdrops and the importance of staying positive and optimistic in the crypto space. Overall, the sentiment towards NFTs and DeFi projects appears to be overwhelmingly positive among the users mentioned in the messages.', - data: [ - 1, 2, 2, 5, 0, 1, 0, 102, 1, 2, 6, 1, 4, 0, 2, 5, 11, 5, 2, 2, 3, 1, 2, 1, 2, 7, 1, 2, 2, 7, - 2, 3, 3, 2, 2, 5, 1, 1, 2, 1, 2, 3, 1, 1, 2, 10, 1, 1, 3, 4, 2, 0, 1, 0, 4, - ], - }, - { - label: 'Tokenized RWAs', - topics: 'rwa,rwas,tokenization,mavryk,pulse', - description: - "Hedera Hashgraph is unique because it focuses on real-world assets (RWAs) and tokenization, which is a growing trend in the crypto industry. The platform allows for the tokenization of various assets, such as bonds, stocks, and commodities, making them easily tradable with real liquidity and profit potential. Additionally, Hedera's partnership with various organizations and its focus on AI, finance, and real-world assets sets it apart from other projects in the space. Overall, Hedera's approach to RWAs and tokenization makes it a standout player in the industry.", - data: [ - 4, 2, 10, 2, 3, 3, 2, 4, 4, 7, 0, 1, 2, 3, 6, 3, 1, 4, 0, 0, 1, 1, 3, 4, 1, 1, 8, 8, 5, 3, - 0, 4, 4, 4, 3, 1, 2, 2, 1, 6, 5, 53, 0, 1, 4, 4, 3, 8, 8, 6, 4, 2, 3, 2, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-87.json b/priv/repo/major_topics_seed/data-87.json deleted file mode 100644 index 12595e1694..0000000000 --- a/priv/repo/major_topics_seed/data-87.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["28.08.25","29.08.25","29.08.25","29.08.25","29.08.25","29.08.25","29.08.25","29.08.25","30.08.25","30.08.25","30.08.25","30.08.25","30.08.25","30.08.25","30.08.25","30.08.25","31.08.25","31.08.25","31.08.25","31.08.25","31.08.25","31.08.25","31.08.25","31.08.25","01.09.25","01.09.25","01.09.25","01.09.25","01.09.25","01.09.25","01.09.25","01.09.25","02.09.25","02.09.25","02.09.25","02.09.25","02.09.25","02.09.25","02.09.25","02.09.25","03.09.25","03.09.25","03.09.25","03.09.25","03.09.25","03.09.25","03.09.25","03.09.25","04.09.25","04.09.25","04.09.25","04.09.25","04.09.25","04.09.25","04.09.25","04.09.25"],"datasets":[{"label":"World Liberty Fi","topics":"worldlibertyfi,liberty,erictrump,wlfi,realdonaldtrump","description":"The messages from twitter indicate that $WLFI, also known as World Liberty Financial, is experiencing significant fluctuations in price and market sentiment. The token is being discussed in relation to its potential for growth and investment opportunities. There is excitement surrounding the upcoming launch of $WLFI on various exchanges, as well as partnerships with other platforms. The community seems to be optimistic about the future of $WLFI, despite some fluctuations in price and market conditions. Overall, $WLFI is generating interest and discussion within the crypto community.","data":[27,10,12,31,17,11,18,13,17,18,11,13,19,15,8,39,5,10,15,12,9,14,16,21,12,12,35,29,21,13,15,11,10,13,19,11,8,29,15,11,7,12,14,9,16,12,27,12,14,40,8,10,7,15,103,6]},{"label":"Solana","topics":"sol,solanas,solana,ascending,outperforming","description":"The key topics discussed in the messages from twitter are:\n- The rise of Solana (SOL) as a promising cryptocurrency\n- The potential for high returns and staking opportunities on the Solana blockchain\n- Speculation on the price movement of SOL in the near future\n- Partnerships and developments within the Solana ecosystem\n- The comparison between Solana and other cryptocurrencies like Bitcoin and Ethereum\n- The excitement and optimism surrounding Solana's growth and potential for the future\n\nOverall, the sentiment towards Solana in the crypto community appears to be positive, with many users expressing bullish views on its future prospects.","data":[12,5,15,8,12,18,5,16,9,9,4,11,17,11,12,7,7,9,9,11,8,9,11,7,2,7,12,7,6,18,10,9,3,7,14,13,3,11,13,18,6,9,10,13,44,12,9,11,16,9,9,9,14,6,4,3]},{"label":"Ethereum","topics":"1h,7000,retest,ema,5k","description":"The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Ethereum (ETH) price movements and predictions, with mentions of reaching $5,000, potential dips to $4,000 - $3,900, and a possible surge towards the all-time high (ATH) if it breaks above the 20-Week EMA.\n\n2. Speculation on the future price of Ethereum, with some analysts predicting $7,000+ and others suggesting a crash to $2,500 or $5,500 before a bear market.\n\n3. Analysis of technical indicators and patterns for Ethereum, such as the falling wedge breakout and the multi-year trendline being reclaimed.\n\n4. Discussion of potential upcoming pumps and surges in the crypto market, with comparisons to previous market cycles and signals.\n\n5. Mention of specific cryptocurrencies like AKASH (AKT) and their price movements and potential bounce zones.\n\n6. Reference to specific individuals like Kenneth Roth and Ben Copen, who have made predictions or statements about Ethereum's future price movements.\n\nOverall, the sentiment in the crypto community on Twitter seems to be bullish on Ethereum, with expectations of significant price movements and potential for new all-time highs.","data":[8,3,5,3,5,20,5,6,4,11,4,5,4,13,19,9,9,7,6,12,5,9,15,9,7,4,4,9,16,16,8,3,4,6,4,7,7,11,16,11,13,7,12,13,7,15,14,7,11,8,9,6,3,6,1,2]},{"label":"Memecoin Revolution","topics":"memecoins,memes,memecoin,meme,survived","description":"The messages from twitter suggest a strong focus on memecoins and memes within the crypto industry. There is a lot of discussion about memecoins being modern art, the importance of memes in the internet language, and the potential for memecoins to blow up. The messages also touch on the idea of meme economies and the power of memes in driving engagement and community growth. Additionally, there are mentions of specific memecoins like #CHILLKRIS and $Saint, as well as a platform for memecoin trading called @agenttech_. Overall, the messages highlight the growing influence and popularity of memecoins and memes in the crypto space.","data":[2,6,4,5,15,3,9,5,3,4,5,4,4,2,2,0,10,3,4,5,2,4,2,4,7,6,5,4,11,4,53,44,1,5,2,6,1,1,5,2,6,3,2,2,3,7,8,9,10,3,6,4,7,1,3,2]},{"label":"DeFi","topics":"tradfi,band,defi,v3,protocols","description":"ZKML, or Zero-Knowledge Machine Learning, is a cutting-edge technology that combines the power of machine learning with the privacy and security of zero-knowledge proofs. This innovative approach allows for the training of machine learning models on encrypted data without compromising the privacy of the data itself. \n\nIn the world of decentralized finance (DeFi), ZKML has the potential to revolutionize how financial transactions are conducted. By enabling secure and private machine learning on sensitive financial data, ZKML can help improve risk management, enhance decision-making processes, and ultimately drive greater efficiency and transparency in the DeFi space.\n\nAs the future of DeFi continues to evolve, it is clear that technologies like ZKML will play a crucial role in shaping the industry. By embracing innovation and pushing the boundaries of what is possible, DeFi builders and enthusiasts can unlock new opportunities and drive the industry forward into a new era of decentralized finance.","data":[2,4,10,4,1,4,5,4,3,4,6,9,7,5,9,6,5,2,13,3,6,3,1,4,9,4,4,3,7,5,4,2,4,4,6,3,4,14,5,6,7,3,2,2,7,2,4,8,3,3,13,9,4,2,4,1]},{"label":"$BTC price","topics":"divergence,110k,108k,4h,bch","description":"Based on the messages from twitter, it seems that there is a lot of discussion and speculation about the price of Bitcoin. Some users are predicting that Bitcoin will reach above $200k within 6 months, while others are warning about potential corrections and support levels around $107k. There is also talk about Bitcoin dominance, alt season approaching, and institutional selling affecting the market. Additionally, there are mentions of technical analysis indicators like resistance levels, moving averages, and bullish divergences. Overall, the sentiment appears to be mixed with some users feeling bullish and others cautious about potential price movements.","data":[6,5,6,4,3,15,7,2,5,4,1,4,0,13,1,7,4,6,6,1,1,2,7,2,1,2,2,5,4,7,3,3,4,1,6,0,2,10,4,13,8,2,0,7,2,4,9,9,2,6,2,4,0,5,1,4]},{"label":"$XRP price","topics":"xrp,ripple,army,amplify,etf","description":"The key topics discussed in the messages from twitter regarding $XRP include:\n1. Debate on the utility and value of $XRP compared to other cryptocurrencies like Bitcoin and Litecoin.\n2. Speculation on the potential price movements of $XRP, with some predicting a rise to $4.\n3. Concerns about Coinbase dumping its $XRP stash, leading to a significant decrease in holdings.\n4. Criticism of $XRP as a centralized \"shitcoin\" and a scam by some influencers and bloggers.\n5. Support and loyalty from the \"XRP Army\" community, with claims of helping Ripple in its legal battle against the SEC.\n6. Analysis of $XRP charts and predictions for future price levels.\n7. Ripple CTO David Schwartz defending $XRP's functionality and energy efficiency compared to other cryptocurrencies.\n8. Expert opinions on the potential outperformance of $XRP compared to Ethereum in the near future.\n9. Discussion on the use of $XRP in cross-border payments and adoption by financial institutions.\n10. Mention of a potential XRP ETF and the impact of the SEC lawsuit on the future of $XRP.","data":[2,1,6,3,3,3,7,1,4,4,3,1,3,5,1,5,5,4,5,3,1,2,10,1,0,6,1,7,2,4,2,1,4,0,3,4,2,5,6,3,3,5,5,9,3,2,6,1,2,4,2,3,6,4,2,4]},{"label":"Whales","topics":"whale,whales,deposited,og,2000","description":"The key topics currently being discussed in the crypto community on Twitter include Bitcoin whales selling off their holdings to buy Ethereum, heavy Bitcoin accumulation, whales buying the dip in Bitcoin prices, and the movement of large amounts of Bitcoin by a specific whale. There is also mention of OG Bitcoin whales getting exposure to Ethereum and the potential for an altcoin season. Overall, the focus seems to be on whale activity and their impact on the market, particularly in relation to Bitcoin and Ethereum.","data":[8,2,2,1,4,3,13,0,0,1,3,0,2,3,6,3,0,3,1,0,1,1,4,2,0,3,1,2,2,3,4,0,2,1,5,4,2,3,3,4,4,0,10,4,1,2,2,1,4,1,3,0,1,47,3,1]},{"label":"Altseason","topics":"alt,altseason,altcoin,61,season","description":"The key topic currently being discussed in the crypto community on social media is the potential for an upcoming altcoin season. Many users are speculating about when it will start and how it will impact various altcoins. Some believe that the altcoin season is delayed but not cancelled, while others are predicting significant gains and life-changing profits. There is also discussion about the Altseason Index reaching high levels and the potential for parabolic moves in the market. Additionally, there are mentions of Bitcoin dominance decreasing and ETH/BTC bouncing off support, which could indicate a rotation towards altcoins. Overall, sentiment seems to be optimistic about the potential for an altcoin season in the near future.","data":[0,13,3,6,2,1,0,2,5,8,2,4,1,2,5,1,2,0,2,1,1,3,1,2,7,4,0,4,5,4,2,0,1,1,0,1,0,1,0,3,1,17,8,5,2,5,1,1,7,5,7,0,5,2,2,0]},{"label":"Stablecoins: Real-world utility and impact","topics":"stablecoins,stablecoin,genius,circle,payment","description":"The key topics currently being discussed in the crypto industry on social media accounts include stablecoins with real-world utility, the impact of stablecoins on modernizing finance, stablecoin issuers and their relationship with the US Treasury, the importance of stablecoins in emerging markets, the potential for stablecoins to revolutionize digital cash, the significance of stablecoins in the global financial landscape, and the potential regulations and geopolitical dynamics affecting stablecoins. Additionally, there is discussion about the GENIUS Act focusing on 1:1 backed stablecoins, the role of stablecoin issuers as premier US Treasury buyers, and the stability and purpose of stablecoins in avoiding volatility. The conversation also touches on the potential for stablecoins to face challenges from government regulations and the variety of stablecoins available in the market.","data":[2,2,8,3,2,0,2,6,5,2,1,1,7,4,4,2,1,1,3,1,1,3,1,2,6,0,4,2,1,0,4,3,1,3,2,4,2,3,2,1,0,2,2,3,14,0,2,0,0,3,2,0,1,3,2,1]},{"label":"Chainlink Price","topics":"chainlink,link,offchain,swift,oracle","description":"The key topics currently being discussed in the crypto community regarding $LINK are:\n\n1. Bullish sentiment: Many users are expressing optimism about the future price of $LINK, with some predicting a major breakout and targets of $31, $50, and even $100. The recent performance of $LINK is being praised, with some calling it one of the top choices for adding to their portfolio.\n\n2. Technical analysis: There is a mix of technical analysis being shared, with some indicating a bullish surge in the near future, while others are cautious about a potential further decline. The importance of monitoring key resistance levels, such as $24.85, is highlighted for making trading decisions.\n\n3. Accumulation strategy: Some users are discussing the opportunity to accumulate $LINK during dips, viewing it as a long-term investment with significant upside potential. The recent partnership announcements and institutional interest are seen as positive catalysts for the future price of $LINK.\n\n4. Chainlink's technology: There is speculation about Chainlink's upcoming announcements, particularly related to their #ccip tech, and how it could impact the price of $LINK. Some users are skeptical of potential hype and liquidity pumps, while others believe in the long-term success of Chainlink's technology.\n\nOverall, the sentiment around $LINK remains positive, with users expressing confidence in its future growth potential and encouraging others to have patience and faith in their investments.","data":[3,4,2,2,1,1,2,2,5,1,3,4,1,2,3,4,3,1,6,0,5,1,0,2,0,3,4,6,1,2,2,4,2,1,3,6,3,1,1,3,4,2,2,2,2,0,1,4,2,3,1,2,2,2,1,2]},{"label":"September Rate Cut","topics":"cuts,cut,powell,rates,fed","description":"The messages from twitter indicate a high probability of a rate cut by the Federal Reserve in September, with percentages ranging from 86.2% to nearly 97.6%. The general sentiment among the community is bullish, with expectations of a positive market impact if the rate cut indeed occurs. Many believe that a rate cut will lead to a surge in various assets, including Bitcoin and other cryptocurrencies. Some are even speculating on the potential outcomes of different scenarios, such as a 25 bps cut or a 50 bps cut. Overall, the community seems optimistic about the potential effects of a rate cut in September on the market.","data":[1,0,0,2,2,1,0,9,0,3,2,28,0,1,1,5,0,0,1,0,1,3,0,0,0,0,2,1,0,1,4,0,0,1,8,2,2,7,18,1,0,3,1,3,1,1,0,5,0,0,1,2,2,1,1,1]},{"label":"Linea Airdrop","topics":"linea,lineabuild,checker,eligibility,premarket","description":"The key topics currently discussed in the crypto community regarding Linea ($LINEA) are:\n\n1. The launch of an eligibility checker for the Linea airdrop, allowing users to preview whether they qualify before the token debut.\n2. The approval of a 4% LINEA token allocation for liquidity providers who joined the Linea Surge campaign.\n3. Linea being designed as an extension of Ethereum, with native ETH yield, protocol-level ETH burns, and Ethereum-equivalent ZK tech.\n4. The upcoming initial listing of $LINEA on September 10.\n5. The distribution of 1 billion LINEA tokens through the \"Ignition\" program to incentivize liquidity on various platforms.\n6. The announcement of the LINEA TGE and Native Yield built on Lido V3.\n7. The claim window for Linea airdrops running from September 10 to December 9.\n8. The release of an unofficial checker for Linea airdrop allocations based on LXP-L and Linea Activities Multiplier.\n9. The excitement and anticipation surrounding Linea's airdrop and token launch after years of development.\n\nOverall, the community is buzzing with excitement and anticipation for the upcoming events related to Linea and its token ($LINEA).","data":[0,11,4,0,4,0,3,0,8,2,1,0,1,2,4,1,2,1,1,1,3,0,1,2,0,2,6,8,2,1,0,4,2,3,2,2,2,3,2,1,3,0,3,2,1,2,0,2,5,4,0,3,1,1,1,2]},{"label":"Cryptocurrency Mining Trends","topics":"mining,miner,cooling,miners,solo","description":"The messages from twitter highlight various aspects of mining in the crypto industry. There is a focus on the environmental impact of mining, with discussions about clean energy usage and sustainable practices. Additionally, there are mentions of new mining platforms being launched, such as KuCoin's KuMining, which offers cloud mining solutions for Bitcoin and Dogecoin.\n\nThe messages also touch on the technical aspects of mining, such as the use of hydro cooling for mining hardware and the release of new hardware specifically designed for Scrypt mining. There is also excitement expressed about cleaning up mining setups and the potential for profits from mining activities.\n\nOverall, the messages convey a mix of environmental consciousness, technological advancements, and profitability opportunities in the mining sector of the crypto industry.","data":[2,1,3,2,1,4,0,2,3,1,3,2,2,3,1,5,2,1,3,0,1,3,0,1,2,1,4,2,1,1,0,18,0,1,1,0,2,3,1,4,1,0,0,1,8,3,2,1,1,0,0,3,2,6,1,0]},{"label":"Tokenized Stocks & ETFs on Ethereum","topics":"ondo,ondofinance,stocks,tokenized,street","description":"The key topic currently discussed in the messages from twitter is the launch of \"Wall Street 2.0\" by Ondo Finance. This new platform offers over 100 tokenized U.S. stocks and ETFs on Ethereum, providing liquidity and accessibility to traditional markets on decentralized rails. Ondo Global Markets has officially launched, with plans to expand to 1,000 securities by the end of the year. The platform aims to bridge regulated assets with on-chain settlement, creating composability between legacy securities and DeFi infrastructure. Additionally, Ondo Finance is looking to add support for BNB Chain and Solana to cater to global investors outside the U.S. and U.K. The launch of Ondo Global Markets is seen as a significant breakthrough in the tokenization era, offering 24/7 access to U.S. equities for institutions. The platform has already attracted attention from investors and is expected to continue growing in the future.","data":[4,2,2,3,2,3,0,0,0,3,1,2,1,0,0,2,1,0,2,2,2,0,0,0,1,2,23,1,5,2,3,0,0,2,8,2,1,0,2,0,1,4,0,0,2,3,0,2,0,13,0,1,4,1,0,1]},{"label":"TROLL Meme Coin","topics":"succeed,talent,success,failures,dreams","description":"The messages from twitter focus on themes of perseverance, hard work, resilience, and the importance of staying grounded in the face of success. The messages emphasize the value of persistence, discipline, and learning from failures in order to achieve success. They also touch on the idea of staying true to oneself and not getting caught up in external expectations or biases. Overall, the messages encourage readers to stay focused, work hard, and believe in themselves in order to achieve their goals in the crypto industry.","data":[0,2,0,0,5,3,2,4,0,2,2,0,2,5,2,2,0,3,1,1,4,3,0,1,1,7,3,1,1,2,1,2,1,2,2,6,2,0,0,2,4,0,4,1,0,3,1,3,1,1,5,3,1,3,8,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-87.ts b/priv/repo/major_topics_seed/data-87.ts deleted file mode 100644 index cab72848de..0000000000 --- a/priv/repo/major_topics_seed/data-87.ts +++ /dev/null @@ -1,225 +0,0 @@ -export const NARRATIVES = { - labels: [ - '28.08.25', - '29.08.25', - '29.08.25', - '29.08.25', - '29.08.25', - '29.08.25', - '29.08.25', - '29.08.25', - '30.08.25', - '30.08.25', - '30.08.25', - '30.08.25', - '30.08.25', - '30.08.25', - '30.08.25', - '30.08.25', - '31.08.25', - '31.08.25', - '31.08.25', - '31.08.25', - '31.08.25', - '31.08.25', - '31.08.25', - '31.08.25', - '01.09.25', - '01.09.25', - '01.09.25', - '01.09.25', - '01.09.25', - '01.09.25', - '01.09.25', - '01.09.25', - '02.09.25', - '02.09.25', - '02.09.25', - '02.09.25', - '02.09.25', - '02.09.25', - '02.09.25', - '02.09.25', - '03.09.25', - '03.09.25', - '03.09.25', - '03.09.25', - '03.09.25', - '03.09.25', - '03.09.25', - '03.09.25', - '04.09.25', - '04.09.25', - '04.09.25', - '04.09.25', - '04.09.25', - '04.09.25', - '04.09.25', - '04.09.25', - ], - datasets: [ - { - label: 'World Liberty Fi', - topics: 'worldlibertyfi,liberty,erictrump,wlfi,realdonaldtrump', - description: - 'The messages from twitter indicate that $WLFI, also known as World Liberty Financial, is experiencing significant fluctuations in price and market sentiment. The token is being discussed in relation to its potential for growth and investment opportunities. There is excitement surrounding the upcoming launch of $WLFI on various exchanges, as well as partnerships with other platforms. The community seems to be optimistic about the future of $WLFI, despite some fluctuations in price and market conditions. Overall, $WLFI is generating interest and discussion within the crypto community.', - data: [ - 27, 10, 12, 31, 17, 11, 18, 13, 17, 18, 11, 13, 19, 15, 8, 39, 5, 10, 15, 12, 9, 14, 16, 21, - 12, 12, 35, 29, 21, 13, 15, 11, 10, 13, 19, 11, 8, 29, 15, 11, 7, 12, 14, 9, 16, 12, 27, 12, - 14, 40, 8, 10, 7, 15, 103, 6, - ], - }, - { - label: 'Solana', - topics: 'sol,solanas,solana,ascending,outperforming', - description: - "The key topics discussed in the messages from twitter are:\n- The rise of Solana (SOL) as a promising cryptocurrency\n- The potential for high returns and staking opportunities on the Solana blockchain\n- Speculation on the price movement of SOL in the near future\n- Partnerships and developments within the Solana ecosystem\n- The comparison between Solana and other cryptocurrencies like Bitcoin and Ethereum\n- The excitement and optimism surrounding Solana's growth and potential for the future\n\nOverall, the sentiment towards Solana in the crypto community appears to be positive, with many users expressing bullish views on its future prospects.", - data: [ - 12, 5, 15, 8, 12, 18, 5, 16, 9, 9, 4, 11, 17, 11, 12, 7, 7, 9, 9, 11, 8, 9, 11, 7, 2, 7, 12, - 7, 6, 18, 10, 9, 3, 7, 14, 13, 3, 11, 13, 18, 6, 9, 10, 13, 44, 12, 9, 11, 16, 9, 9, 9, 14, - 6, 4, 3, - ], - }, - { - label: 'Ethereum', - topics: '1h,7000,retest,ema,5k', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Ethereum (ETH) price movements and predictions, with mentions of reaching $5,000, potential dips to $4,000 - $3,900, and a possible surge towards the all-time high (ATH) if it breaks above the 20-Week EMA.\n\n2. Speculation on the future price of Ethereum, with some analysts predicting $7,000+ and others suggesting a crash to $2,500 or $5,500 before a bear market.\n\n3. Analysis of technical indicators and patterns for Ethereum, such as the falling wedge breakout and the multi-year trendline being reclaimed.\n\n4. Discussion of potential upcoming pumps and surges in the crypto market, with comparisons to previous market cycles and signals.\n\n5. Mention of specific cryptocurrencies like AKASH (AKT) and their price movements and potential bounce zones.\n\n6. Reference to specific individuals like Kenneth Roth and Ben Copen, who have made predictions or statements about Ethereum's future price movements.\n\nOverall, the sentiment in the crypto community on Twitter seems to be bullish on Ethereum, with expectations of significant price movements and potential for new all-time highs.", - data: [ - 8, 3, 5, 3, 5, 20, 5, 6, 4, 11, 4, 5, 4, 13, 19, 9, 9, 7, 6, 12, 5, 9, 15, 9, 7, 4, 4, 9, - 16, 16, 8, 3, 4, 6, 4, 7, 7, 11, 16, 11, 13, 7, 12, 13, 7, 15, 14, 7, 11, 8, 9, 6, 3, 6, 1, - 2, - ], - }, - { - label: 'Memecoin Revolution', - topics: 'memecoins,memes,memecoin,meme,survived', - description: - 'The messages from twitter suggest a strong focus on memecoins and memes within the crypto industry. There is a lot of discussion about memecoins being modern art, the importance of memes in the internet language, and the potential for memecoins to blow up. The messages also touch on the idea of meme economies and the power of memes in driving engagement and community growth. Additionally, there are mentions of specific memecoins like #CHILLKRIS and $Saint, as well as a platform for memecoin trading called @agenttech_. Overall, the messages highlight the growing influence and popularity of memecoins and memes in the crypto space.', - data: [ - 2, 6, 4, 5, 15, 3, 9, 5, 3, 4, 5, 4, 4, 2, 2, 0, 10, 3, 4, 5, 2, 4, 2, 4, 7, 6, 5, 4, 11, 4, - 53, 44, 1, 5, 2, 6, 1, 1, 5, 2, 6, 3, 2, 2, 3, 7, 8, 9, 10, 3, 6, 4, 7, 1, 3, 2, - ], - }, - { - label: 'DeFi', - topics: 'tradfi,band,defi,v3,protocols', - description: - 'ZKML, or Zero-Knowledge Machine Learning, is a cutting-edge technology that combines the power of machine learning with the privacy and security of zero-knowledge proofs. This innovative approach allows for the training of machine learning models on encrypted data without compromising the privacy of the data itself. \n\nIn the world of decentralized finance (DeFi), ZKML has the potential to revolutionize how financial transactions are conducted. By enabling secure and private machine learning on sensitive financial data, ZKML can help improve risk management, enhance decision-making processes, and ultimately drive greater efficiency and transparency in the DeFi space.\n\nAs the future of DeFi continues to evolve, it is clear that technologies like ZKML will play a crucial role in shaping the industry. By embracing innovation and pushing the boundaries of what is possible, DeFi builders and enthusiasts can unlock new opportunities and drive the industry forward into a new era of decentralized finance.', - data: [ - 2, 4, 10, 4, 1, 4, 5, 4, 3, 4, 6, 9, 7, 5, 9, 6, 5, 2, 13, 3, 6, 3, 1, 4, 9, 4, 4, 3, 7, 5, - 4, 2, 4, 4, 6, 3, 4, 14, 5, 6, 7, 3, 2, 2, 7, 2, 4, 8, 3, 3, 13, 9, 4, 2, 4, 1, - ], - }, - { - label: '$BTC price', - topics: 'divergence,110k,108k,4h,bch', - description: - 'Based on the messages from twitter, it seems that there is a lot of discussion and speculation about the price of Bitcoin. Some users are predicting that Bitcoin will reach above $200k within 6 months, while others are warning about potential corrections and support levels around $107k. There is also talk about Bitcoin dominance, alt season approaching, and institutional selling affecting the market. Additionally, there are mentions of technical analysis indicators like resistance levels, moving averages, and bullish divergences. Overall, the sentiment appears to be mixed with some users feeling bullish and others cautious about potential price movements.', - data: [ - 6, 5, 6, 4, 3, 15, 7, 2, 5, 4, 1, 4, 0, 13, 1, 7, 4, 6, 6, 1, 1, 2, 7, 2, 1, 2, 2, 5, 4, 7, - 3, 3, 4, 1, 6, 0, 2, 10, 4, 13, 8, 2, 0, 7, 2, 4, 9, 9, 2, 6, 2, 4, 0, 5, 1, 4, - ], - }, - { - label: '$XRP price', - topics: 'xrp,ripple,army,amplify,etf', - description: - 'The key topics discussed in the messages from twitter regarding $XRP include:\n1. Debate on the utility and value of $XRP compared to other cryptocurrencies like Bitcoin and Litecoin.\n2. Speculation on the potential price movements of $XRP, with some predicting a rise to $4.\n3. Concerns about Coinbase dumping its $XRP stash, leading to a significant decrease in holdings.\n4. Criticism of $XRP as a centralized "shitcoin" and a scam by some influencers and bloggers.\n5. Support and loyalty from the "XRP Army" community, with claims of helping Ripple in its legal battle against the SEC.\n6. Analysis of $XRP charts and predictions for future price levels.\n7. Ripple CTO David Schwartz defending $XRP\'s functionality and energy efficiency compared to other cryptocurrencies.\n8. Expert opinions on the potential outperformance of $XRP compared to Ethereum in the near future.\n9. Discussion on the use of $XRP in cross-border payments and adoption by financial institutions.\n10. Mention of a potential XRP ETF and the impact of the SEC lawsuit on the future of $XRP.', - data: [ - 2, 1, 6, 3, 3, 3, 7, 1, 4, 4, 3, 1, 3, 5, 1, 5, 5, 4, 5, 3, 1, 2, 10, 1, 0, 6, 1, 7, 2, 4, - 2, 1, 4, 0, 3, 4, 2, 5, 6, 3, 3, 5, 5, 9, 3, 2, 6, 1, 2, 4, 2, 3, 6, 4, 2, 4, - ], - }, - { - label: 'Whales', - topics: 'whale,whales,deposited,og,2000', - description: - 'The key topics currently being discussed in the crypto community on Twitter include Bitcoin whales selling off their holdings to buy Ethereum, heavy Bitcoin accumulation, whales buying the dip in Bitcoin prices, and the movement of large amounts of Bitcoin by a specific whale. There is also mention of OG Bitcoin whales getting exposure to Ethereum and the potential for an altcoin season. Overall, the focus seems to be on whale activity and their impact on the market, particularly in relation to Bitcoin and Ethereum.', - data: [ - 8, 2, 2, 1, 4, 3, 13, 0, 0, 1, 3, 0, 2, 3, 6, 3, 0, 3, 1, 0, 1, 1, 4, 2, 0, 3, 1, 2, 2, 3, - 4, 0, 2, 1, 5, 4, 2, 3, 3, 4, 4, 0, 10, 4, 1, 2, 2, 1, 4, 1, 3, 0, 1, 47, 3, 1, - ], - }, - { - label: 'Altseason', - topics: 'alt,altseason,altcoin,61,season', - description: - 'The key topic currently being discussed in the crypto community on social media is the potential for an upcoming altcoin season. Many users are speculating about when it will start and how it will impact various altcoins. Some believe that the altcoin season is delayed but not cancelled, while others are predicting significant gains and life-changing profits. There is also discussion about the Altseason Index reaching high levels and the potential for parabolic moves in the market. Additionally, there are mentions of Bitcoin dominance decreasing and ETH/BTC bouncing off support, which could indicate a rotation towards altcoins. Overall, sentiment seems to be optimistic about the potential for an altcoin season in the near future.', - data: [ - 0, 13, 3, 6, 2, 1, 0, 2, 5, 8, 2, 4, 1, 2, 5, 1, 2, 0, 2, 1, 1, 3, 1, 2, 7, 4, 0, 4, 5, 4, - 2, 0, 1, 1, 0, 1, 0, 1, 0, 3, 1, 17, 8, 5, 2, 5, 1, 1, 7, 5, 7, 0, 5, 2, 2, 0, - ], - }, - { - label: 'Stablecoins: Real-world utility and impact', - topics: 'stablecoins,stablecoin,genius,circle,payment', - description: - 'The key topics currently being discussed in the crypto industry on social media accounts include stablecoins with real-world utility, the impact of stablecoins on modernizing finance, stablecoin issuers and their relationship with the US Treasury, the importance of stablecoins in emerging markets, the potential for stablecoins to revolutionize digital cash, the significance of stablecoins in the global financial landscape, and the potential regulations and geopolitical dynamics affecting stablecoins. Additionally, there is discussion about the GENIUS Act focusing on 1:1 backed stablecoins, the role of stablecoin issuers as premier US Treasury buyers, and the stability and purpose of stablecoins in avoiding volatility. The conversation also touches on the potential for stablecoins to face challenges from government regulations and the variety of stablecoins available in the market.', - data: [ - 2, 2, 8, 3, 2, 0, 2, 6, 5, 2, 1, 1, 7, 4, 4, 2, 1, 1, 3, 1, 1, 3, 1, 2, 6, 0, 4, 2, 1, 0, 4, - 3, 1, 3, 2, 4, 2, 3, 2, 1, 0, 2, 2, 3, 14, 0, 2, 0, 0, 3, 2, 0, 1, 3, 2, 1, - ], - }, - { - label: 'Chainlink Price', - topics: 'chainlink,link,offchain,swift,oracle', - description: - "The key topics currently being discussed in the crypto community regarding $LINK are:\n\n1. Bullish sentiment: Many users are expressing optimism about the future price of $LINK, with some predicting a major breakout and targets of $31, $50, and even $100. The recent performance of $LINK is being praised, with some calling it one of the top choices for adding to their portfolio.\n\n2. Technical analysis: There is a mix of technical analysis being shared, with some indicating a bullish surge in the near future, while others are cautious about a potential further decline. The importance of monitoring key resistance levels, such as $24.85, is highlighted for making trading decisions.\n\n3. Accumulation strategy: Some users are discussing the opportunity to accumulate $LINK during dips, viewing it as a long-term investment with significant upside potential. The recent partnership announcements and institutional interest are seen as positive catalysts for the future price of $LINK.\n\n4. Chainlink's technology: There is speculation about Chainlink's upcoming announcements, particularly related to their #ccip tech, and how it could impact the price of $LINK. Some users are skeptical of potential hype and liquidity pumps, while others believe in the long-term success of Chainlink's technology.\n\nOverall, the sentiment around $LINK remains positive, with users expressing confidence in its future growth potential and encouraging others to have patience and faith in their investments.", - data: [ - 3, 4, 2, 2, 1, 1, 2, 2, 5, 1, 3, 4, 1, 2, 3, 4, 3, 1, 6, 0, 5, 1, 0, 2, 0, 3, 4, 6, 1, 2, 2, - 4, 2, 1, 3, 6, 3, 1, 1, 3, 4, 2, 2, 2, 2, 0, 1, 4, 2, 3, 1, 2, 2, 2, 1, 2, - ], - }, - { - label: 'September Rate Cut', - topics: 'cuts,cut,powell,rates,fed', - description: - 'The messages from twitter indicate a high probability of a rate cut by the Federal Reserve in September, with percentages ranging from 86.2% to nearly 97.6%. The general sentiment among the community is bullish, with expectations of a positive market impact if the rate cut indeed occurs. Many believe that a rate cut will lead to a surge in various assets, including Bitcoin and other cryptocurrencies. Some are even speculating on the potential outcomes of different scenarios, such as a 25 bps cut or a 50 bps cut. Overall, the community seems optimistic about the potential effects of a rate cut in September on the market.', - data: [ - 1, 0, 0, 2, 2, 1, 0, 9, 0, 3, 2, 28, 0, 1, 1, 5, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 2, 1, 0, 1, - 4, 0, 0, 1, 8, 2, 2, 7, 18, 1, 0, 3, 1, 3, 1, 1, 0, 5, 0, 0, 1, 2, 2, 1, 1, 1, - ], - }, - { - label: 'Linea Airdrop', - topics: 'linea,lineabuild,checker,eligibility,premarket', - description: - 'The key topics currently discussed in the crypto community regarding Linea ($LINEA) are:\n\n1. The launch of an eligibility checker for the Linea airdrop, allowing users to preview whether they qualify before the token debut.\n2. The approval of a 4% LINEA token allocation for liquidity providers who joined the Linea Surge campaign.\n3. Linea being designed as an extension of Ethereum, with native ETH yield, protocol-level ETH burns, and Ethereum-equivalent ZK tech.\n4. The upcoming initial listing of $LINEA on September 10.\n5. The distribution of 1 billion LINEA tokens through the "Ignition" program to incentivize liquidity on various platforms.\n6. The announcement of the LINEA TGE and Native Yield built on Lido V3.\n7. The claim window for Linea airdrops running from September 10 to December 9.\n8. The release of an unofficial checker for Linea airdrop allocations based on LXP-L and Linea Activities Multiplier.\n9. The excitement and anticipation surrounding Linea\'s airdrop and token launch after years of development.\n\nOverall, the community is buzzing with excitement and anticipation for the upcoming events related to Linea and its token ($LINEA).', - data: [ - 0, 11, 4, 0, 4, 0, 3, 0, 8, 2, 1, 0, 1, 2, 4, 1, 2, 1, 1, 1, 3, 0, 1, 2, 0, 2, 6, 8, 2, 1, - 0, 4, 2, 3, 2, 2, 2, 3, 2, 1, 3, 0, 3, 2, 1, 2, 0, 2, 5, 4, 0, 3, 1, 1, 1, 2, - ], - }, - { - label: 'Cryptocurrency Mining Trends', - topics: 'mining,miner,cooling,miners,solo', - description: - "The messages from twitter highlight various aspects of mining in the crypto industry. There is a focus on the environmental impact of mining, with discussions about clean energy usage and sustainable practices. Additionally, there are mentions of new mining platforms being launched, such as KuCoin's KuMining, which offers cloud mining solutions for Bitcoin and Dogecoin.\n\nThe messages also touch on the technical aspects of mining, such as the use of hydro cooling for mining hardware and the release of new hardware specifically designed for Scrypt mining. There is also excitement expressed about cleaning up mining setups and the potential for profits from mining activities.\n\nOverall, the messages convey a mix of environmental consciousness, technological advancements, and profitability opportunities in the mining sector of the crypto industry.", - data: [ - 2, 1, 3, 2, 1, 4, 0, 2, 3, 1, 3, 2, 2, 3, 1, 5, 2, 1, 3, 0, 1, 3, 0, 1, 2, 1, 4, 2, 1, 1, 0, - 18, 0, 1, 1, 0, 2, 3, 1, 4, 1, 0, 0, 1, 8, 3, 2, 1, 1, 0, 0, 3, 2, 6, 1, 0, - ], - }, - { - label: 'Tokenized Stocks & ETFs on Ethereum', - topics: 'ondo,ondofinance,stocks,tokenized,street', - description: - 'The key topic currently discussed in the messages from twitter is the launch of "Wall Street 2.0" by Ondo Finance. This new platform offers over 100 tokenized U.S. stocks and ETFs on Ethereum, providing liquidity and accessibility to traditional markets on decentralized rails. Ondo Global Markets has officially launched, with plans to expand to 1,000 securities by the end of the year. The platform aims to bridge regulated assets with on-chain settlement, creating composability between legacy securities and DeFi infrastructure. Additionally, Ondo Finance is looking to add support for BNB Chain and Solana to cater to global investors outside the U.S. and U.K. The launch of Ondo Global Markets is seen as a significant breakthrough in the tokenization era, offering 24/7 access to U.S. equities for institutions. The platform has already attracted attention from investors and is expected to continue growing in the future.', - data: [ - 4, 2, 2, 3, 2, 3, 0, 0, 0, 3, 1, 2, 1, 0, 0, 2, 1, 0, 2, 2, 2, 0, 0, 0, 1, 2, 23, 1, 5, 2, - 3, 0, 0, 2, 8, 2, 1, 0, 2, 0, 1, 4, 0, 0, 2, 3, 0, 2, 0, 13, 0, 1, 4, 1, 0, 1, - ], - }, - { - label: 'TROLL Meme Coin', - topics: 'succeed,talent,success,failures,dreams', - description: - 'The messages from twitter focus on themes of perseverance, hard work, resilience, and the importance of staying grounded in the face of success. The messages emphasize the value of persistence, discipline, and learning from failures in order to achieve success. They also touch on the idea of staying true to oneself and not getting caught up in external expectations or biases. Overall, the messages encourage readers to stay focused, work hard, and believe in themselves in order to achieve their goals in the crypto industry.', - data: [ - 0, 2, 0, 0, 5, 3, 2, 4, 0, 2, 2, 0, 2, 5, 2, 2, 0, 3, 1, 1, 4, 3, 0, 1, 1, 7, 3, 1, 1, 2, 1, - 2, 1, 2, 2, 6, 2, 0, 0, 2, 4, 0, 4, 1, 0, 3, 1, 3, 1, 1, 5, 3, 1, 3, 8, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-88.json b/priv/repo/major_topics_seed/data-88.json deleted file mode 100644 index 0efbc15a02..0000000000 --- a/priv/repo/major_topics_seed/data-88.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["04.09.25","05.09.25","05.09.25","05.09.25","05.09.25","05.09.25","05.09.25","05.09.25","06.09.25","06.09.25","06.09.25","06.09.25","06.09.25","06.09.25","06.09.25","06.09.25","07.09.25","07.09.25","07.09.25","07.09.25","07.09.25","07.09.25","07.09.25","07.09.25","08.09.25","08.09.25","08.09.25","08.09.25","08.09.25","08.09.25","08.09.25","08.09.25","09.09.25","09.09.25","09.09.25","09.09.25","09.09.25","09.09.25","09.09.25","09.09.25","10.09.25","10.09.25","10.09.25","10.09.25","10.09.25","10.09.25","10.09.25","10.09.25","11.09.25","11.09.25","11.09.25","11.09.25","11.09.25","11.09.25","11.09.25","11.09.25"],"datasets":[{"label":"AI","topics":"gpu,agents,agent,miranetwork,compute","description":"Based on the messages from twitter, the best AI crypto coins to watch for in 2025 include:\n\n1. Mistral (associated with AI firm valued at $14 billion)\n2. Virtuals_io (shipping agents that think and adapt)\n3. FractionAI_xyz (Co-founder & CEO speaking at WebX_Asia)\n4. DingTalk One (AI assistant powered by Alibaba's Qwen)\n5. TheAndrometa (building living 3D companions)\n6. CARV (AI Agents Unchained)\n\nThese AI crypto coins have massive potential and are at the forefront of the AI and blockchain trend, making them top picks for investors to watch in 2025.","data":[123,185,16,16,17,15,7,18,18,19,21,19,13,22,15,14,22,9,40,20,2,18,17,12,15,24,17,9,10,14,15,16,13,8,11,17,16,14,12,14,20,20,11,11,7,18,20,18,13,20,18,11,13,16,17,10]},{"label":"$BTC price","topics":"112k,113k,110k,4h,rejection","description":"The key topic currently discussed in the crypto community on Twitter is the potential bottoming of Bitcoin, with predictions of a price target of $130,000. There is also discussion about Bitcoin's recent price movements, with mentions of a potential breakout above $116,000 and a bullish inverse head & shoulders pattern signaling more gains ahead. Additionally, there is speculation about Bitcoin's all-time high coming soon and the stability of the economy despite market fears. Traders are also discussing potential trades and investments, with mentions of altcoins and Binance Simple Earn.","data":[12,7,1,9,153,126,12,270,6,10,7,4,10,4,5,0,6,20,1,4,7,4,6,10,5,7,3,4,5,2,18,11,6,4,5,8,2,6,9,5,4,6,2,7,1,6,4,7,5,5,3,5,8,3,3,2]},{"label":"Gold vs Bitcoin","topics":"silver,platinum,metals,precious,goldman","description":"The key topics currently being discussed in the crypto industry on social media include the performance of gold compared to Bitcoin, with predictions of Bitcoin outperforming gold by the end of the year. There is also discussion about the potential for a real bull market to start soon, with gold hitting new all-time highs. Additionally, there is mention of the outperformance of gold stocks compared to the S&P 500 over the past 10 years. Other topics include the potential benefits of investing in silver projects and the impact of USD weakness on gold and silver prices. Overall, the sentiment seems to be bullish on gold and silver investments in the current market environment.","data":[4,3,4,5,28,9,22,13,15,2,12,8,5,3,2,2,2,2,7,5,160,107,3,4,3,5,10,5,6,3,3,6,4,5,8,6,5,9,7,4,12,2,3,31,2,14,2,2,9,4,7,7,7,2,17,3]},{"label":"Unemployment Rate and Job Data","topics":"unemployment,revision,revised,43,unemployed","description":"The key topics currently being discussed in the crypto industry on social media include the rising unemployment rate in the US, the potential impact of inflation, and the Federal Reserve's strategy for rate cuts after the latest job data. There is skepticism about the accuracy of labor statistics and concerns about the health of the economy, with some suggesting that a recession triggered by the Sahm Rule may be looming. Additionally, there is confusion surrounding job growth in the Healthcare and Social Assistance sector compared to data from the ADP report. Overall, there is a sense of uncertainty and caution among social media users regarding the current economic climate and its potential implications for the crypto industry.","data":[9,9,21,6,7,20,59,0,5,7,6,11,13,8,14,13,11,13,3,2,1,2,7,8,5,16,63,8,23,4,9,11,3,4,15,15,18,3,10,1,16,10,3,10,4,3,5,4,4,4,46,5,8,8,11,9]},{"label":"$XRP","topics":"ripple,xrp,remittix,12b,crossborder","description":"The key topics currently being discussed in the crypto community on Twitter include the price movement of XRP, with expectations of it breaking $3 soon and potentially reaching $20 this cycle. There is also discussion about XRP whales moving large amounts to exchanges, as well as speculation about ETF approval potentially unlocking institutional flows. Technical analysis suggests a re-accumulation phase for XRP with key support zones and bullish targets identified. Additionally, there is mention of using XRP as collateral for trading and a window of opportunity to load up on XRP bags in the near future.","data":[7,3,5,4,5,3,3,5,6,3,3,0,8,3,5,0,7,4,4,2,1,0,1,6,5,4,5,3,8,3,8,3,2,2,6,4,1,3,7,9,13,29,6,4,3,4,5,2,3,2,3,2,3,3,213,1]},{"label":"CPI reaction","topics":"03,ppi,yoy,mom,cpi","description":"The key topics currently being discussed in the crypto community on Twitter include the recent CPI data release, which showed a 2.9% actual rate compared to the estimated 2.9% and prior 2.7%. There is speculation about the impact of this data on interest rates and the potential for rate cuts, which could affect Bitcoin and altcoins. Additionally, there is anticipation for the upcoming release of PPI data and its potential impact on inflation pressure and Fed rate cut hopes. Overall, the community is closely monitoring economic data releases and their potential effects on the crypto market.","data":[1,2,19,0,6,0,38,2,4,3,2,113,7,1,3,3,7,2,1,0,2,1,1,9,5,15,0,3,2,4,2,4,2,3,8,6,4,3,92,3,25,0,0,1,2,1,2,5,6,2,1,2,3,3,1,0]},{"label":"AceCoin","topics":"apecoin,ape,apes,apechain,raid","description":"Summary: The ApeCoin community is excited about the growth of the ecosystem, particularly on Solana. They are actively participating in campaigns on Wallchain and are expanding their partnerships with projects like Bankr. There is also anticipation for an upcoming AMA with the founder of ApeVenturesVC. Overall, the community is engaged and looking forward to the future developments of ApeCoin.","data":[2,7,91,3,3,3,3,1,6,1,5,2,4,6,4,0,8,4,1,17,11,7,4,19,6,3,4,3,7,2,9,3,3,6,8,3,6,4,7,7,4,8,6,1,7,5,13,4,7,1,2,4,5,7,2,2]},{"label":"Rate Cut Expectations","topics":"bps,50bps,odds,cuts,pricing","description":"The messages from twitter suggest that there is a high likelihood of rate cuts by the Federal Reserve in the near future. Market participants are anticipating rate cuts of varying magnitudes, with some expecting as much as 75bps by the end of 2025. The general sentiment is that rate cuts will be positive for risk assets, including cryptocurrencies like Ethereum ($ETH). Some analysts believe that continuous rate cuts may be necessary to support the economy through 2026. Traders on Polymarket are now predicting three rate cuts in 2025, indicating a shift towards a more dovish stance by the Fed. Overall, the consensus in the crypto community seems to be that rate cuts will have a positive impact on the market, with some expecting significant gains in assets like $ETH.","data":[15,0,2,1,3,3,26,2,1,20,5,1,8,2,5,1,3,35,1,2,4,1,1,3,3,3,2,6,6,4,4,21,1,4,9,11,2,6,14,3,50,3,0,9,2,6,3,12,4,5,11,8,0,4,1,2]},{"label":"Whale Staking Surge","topics":"whales,dormant,deposited,unusual,ico","description":"The key topics currently discussed in the crypto industry on social media include the awakening of dormant Ethereum ICO-era whales, significant movements in whale reserves, and the buying and selling activities of whales in the market. There is a focus on large transactions involving Ethereum, Bitcoin, ADA, and other cryptocurrencies, with whales making massive moves and staking large amounts of crypto assets. The market sentiment towards whales and their impact on prices is also being closely monitored. Additionally, there are mentions of whales engineering price premiums and triggering liquidations, as well as instances of whales being involved in unusual activities such as rescuing beluga whales or battling sharks. Overall, the presence and actions of whales in the crypto market continue to be a topic of interest and discussion among social media users.","data":[4,5,0,2,9,21,9,6,4,2,10,5,6,3,9,5,21,1,2,1,1,1,2,0,7,4,1,3,7,3,4,8,5,3,8,4,1,0,0,2,2,2,3,1,6,3,1,2,4,2,4,4,3,85,2,6]},{"label":"LINEA Token Launch and Airdrop","topics":"lineabuild,linea,layer2,hodler,launchpool","description":"The key topics currently being discussed in the crypto community regarding Linea include:\n- Linea launching an airdrop for its token to enhance network performance and reduce transaction costs\n- Concerns about the Linea contract and potential issues with claiming Linea tokens\n- Gas fees being too high for claiming Linea tokens\n- Linea Ignition rewards increasing to 160M future LINEA tokens\n- Linea launching on Binance with a HODLer Airdrop\n- Speculation about Linea's price performance on DigiFinex\n- The launch of Linea Launchpool for staking and earning rewards\n- An upcoming event discussing how Linea could change everything in the crypto industry\n\nOverall, there seems to be a mix of excitement, skepticism, and confusion surrounding Linea and its token launch. Investors are closely watching the developments and price movements of Linea to make informed trading decisions.","data":[4,4,0,3,17,3,1,0,2,2,2,5,0,4,1,2,5,2,2,2,0,3,1,2,7,3,6,2,7,105,3,1,5,0,17,4,2,0,1,1,7,3,3,3,1,5,3,8,7,5,6,1,6,3,5,3]},{"label":"$HYPE","topics":"hype,assistance,composite,prep,hyperliquidx","description":"The key topics discussed in the messages from twitter about $HYPE include:\n- $HYPE reaching $50 and $51.17 all-time highs\n- $HYPE reclaiming $50 and clearing Fibonacci targets at $53.45\n- Momentum pointing towards the next extension target at $61.52\n- $HYPE being 500% from the low and testing resistance at $56\n- Gann's analysis being accurate even before crypto was popular\n- Bullish sentiment as long as price remains above $50\n- Shallow pullbacks and consolidations being favored for price discovery\n\nOverall, the sentiment towards $HYPE seems positive with expectations of further growth and bullish momentum.","data":[5,2,10,11,1,1,2,3,0,1,2,4,0,4,3,2,5,5,1,1,4,5,2,2,108,1,4,2,2,3,5,1,3,1,5,4,4,3,3,3,6,8,7,5,1,4,4,4,5,5,1,5,1,4,4,7]},{"label":"Ethereum breakout","topics":"4400,4h,7000,repeating,shock","description":"The key topics currently being discussed in the crypto community on Twitter include the breakout configuration of $DOT, the significant drop in $ETH on exchanges, important levels for $ETH, OBV breakout before price for $ETH, attempts to invalidate a 4hr reversal for $ETH, confirmed breakout for $ETH, price discovery for $ETH, supply shock for $ETH, Ethereum Treasury Companies and Institutions buying at a massive pace, potential violent move up for $ETH, contrarian views on Ethereum going higher, $THETA protocol delivering, opportunity time for $THETA beneath the 20-Week MA, aggressive shorting into the lows for $ETH, potential trending moves for $SOL and $HYPE, market cap rankings for $ETH and $KAS, potential unwinding lower for $ETH if trap door at $4260 is opened.","data":[1,0,2,1,3,1,1,2,1,0,1,0,1,2,2,170,37,1,1,1,4,0,3,3,2,2,1,0,2,2,2,7,0,3,1,0,2,1,3,5,0,2,0,1,0,2,5,2,4,0,0,1,1,0,1,0]},{"label":"MSTR S&P 500 Rejection Analysis","topics":"mstr,inclusion,saylors,sp,sampp","description":"The key topic currently being discussed in the crypto community on Twitter is the news that MSTR (MicroStrategy) is not joining the S&P 500. This decision has been described as a historic mistake and has led to discussions about Michael Saylor's strategy not being approved for inclusion. Some users are analyzing MSTR's stock price performance and comparing it to previous years. There is also speculation about the impact of this rejection on crypto treasuries and the potential for MSTR to outperform the S&P 500. Additionally, there are discussions about MSTR's accessories being popular within the community and the meaning behind the company's name. Overall, the community is closely following developments related to MSTR and its involvement in the S&P 500.","data":[4,0,1,5,7,3,16,0,1,0,4,1,2,5,2,1,6,3,3,2,0,1,4,4,8,8,2,7,4,2,1,1,27,42,1,3,2,4,2,1,2,4,7,2,0,22,5,2,3,1,4,3,3,0,1,2]},{"label":"Web3","topics":"web2,domains,web3,domain,galxe","description":"In simple terms, Web3 is a new way of using the internet where the community has more control and decision-making power compared to Web2. It rewards those who are willing to learn and contribute, regardless of traditional qualifications. However, there are still challenges such as lack of proper code review in some Web3 teams. Despite this, Web3 startups are attracting significant funding and thriving in the current market. It is not a scam, but a growing and evolving space that offers opportunities for innovation and collaboration.","data":[3,0,5,0,4,1,0,6,0,3,4,3,2,2,3,4,8,4,9,3,3,3,3,3,2,5,2,5,4,6,4,1,7,2,10,1,7,4,1,4,2,3,2,3,2,2,7,6,1,0,6,3,60,5,5,3]},{"label":"Bitcoin ETF outflows","topics":"outflows,inflows,inflow,etfs,flows","description":"The key topics currently discussed in the messages from twitter are the lack of a Bitcoin ETF in the UK, the significant inflows and outflows in Bitcoin and Ethereum ETFs, the return of traditional finance bids to Bitcoin, the heavy outflows from spot crypto ETFs, and the overall flow of funds into ETFs for Bitcoin and Ethereum. There is also mention of record inflows to the world's largest ETFs, particularly those from BlackRock. The data shows a mix of inflows and outflows in the ETF market, with Bitcoin ETFs seeing strong net inflows while Ethereum ETFs experienced significant outflows.","data":[4,4,2,2,19,2,7,7,0,0,3,5,2,0,1,56,5,6,1,1,0,1,0,0,4,7,1,1,4,0,0,2,1,1,4,2,0,0,1,2,1,3,1,20,0,14,1,0,3,2,4,6,1,6,0,6]},{"label":"RWA Trends","topics":"rwas,rwa,tokenizing,raydium,realworld","description":"The key topic discussed in the messages from twitter is RWA tokenization, which involves turning real-world assets into tradable tokens on the blockchain. This process allows for steady passive income and increased liquidity for assets such as stocks, real estate, and commodities. Various projects and platforms, such as @glider_fi, @RialoHQ, @four_meme, and @MavrykNetwork, are mentioned as leaders in the RWA tokenization space. Additionally, the potential risks and benefits of tokenizing RWAs are highlighted, as well as the importance of good market making for these assets. Overall, the discussion emphasizes the growing trend of bringing real-world assets onto the blockchain for easier access and trading.","data":[8,5,2,3,3,3,0,5,1,3,6,3,2,3,3,1,9,2,4,2,5,2,3,3,4,1,2,3,4,2,2,3,3,1,5,4,3,2,2,2,14,44,1,3,1,6,0,4,9,4,8,2,2,1,2,0]},{"label":"Bitcoin Mining Funding and Innovation","topics":"miner,miners,mining,solo,mined","description":"The key topics currently discussed in the crypto industry on social media include universities gaining funding through Bitcoin mining with purpose, the increase in unknown miners finding blocks, the profitability of mining different coins, the start of a new Bitcoin mining period, the importance of strong miners for the security of Bitcoin, and partnerships for financing Bitcoin mining equipment. There is also discussion about the impact of decreasing block rewards on mining fees, the potential for miners to improve tokenomics, and the need for miners to switch to more sustainable practices. Overall, there is a focus on the evolving landscape of Bitcoin mining and the various factors influencing its profitability and sustainability.","data":[7,2,4,1,8,32,5,3,2,1,1,1,5,3,0,4,7,1,2,5,0,3,3,9,2,2,2,4,8,0,5,1,21,0,9,6,0,2,3,3,0,2,4,4,10,4,2,2,4,1,5,0,3,1,0,1]},{"label":"DeFi","topics":"defai,borrowing,seasons,defi,lending","description":"The key topics currently discussed in the messages from twitter related to DeFi are:\n1. The importance of long-term value creation in DeFi, not just short-term hype.\n2. Exploring the insurability of DeFi and potential solutions.\n3. Rewarding the DeFi community and ensuring token holders share in the value created.\n4. Uncovering lesser-known aspects of DeFi that are not commonly discussed.\n5. Personal updates and reflections on experiences in the DeFi space.\n6. Discussions on the future of DeFi, including fixed-income era, yield, risk, and next-gen infrastructure.\n7. Deep dives and conversations on yield, risk, and the future of DeFi.\n8. Announcements of upcoming events and AMAs related to DeFi.\n9. Launches of new DeFi products and platforms, such as Taicho, aimed at simplifying and organizing DeFi interactions.\n10. Speculation and excitement around new developments and advancements in DeFi, such as protocol integrations and new networks.","data":[3,0,2,3,2,1,1,6,2,2,2,1,2,72,1,2,2,5,4,3,0,3,3,1,3,4,2,5,2,3,4,1,0,1,4,4,3,4,5,1,3,2,2,2,0,2,10,5,1,10,2,1,1,0,4,4]},{"label":"SPX6900","topics":"spx6900,spx,spy,ndx,qqq","description":"The key topics currently being discussed in the crypto industry on social media include the concept of DCA (Dollar Cost Averaging) with SPX6900, the idea of diversification failing in the age of passive investing, market analysis and trade opportunities with various stocks and indices such as QQQ, IWM, SPY, SPX, NDX, and more. There is also mention of the Swiss National Bank's comfort with CHF strength, liquidity-fueled rallies trumping geopolitics, and the potential for a new crypto movement with SPX6900. The discussion also touches on the success of crypto coins as social phenomena and movements, with a focus on Bitcoin, XRP, and DOGE. Overall, the sentiment seems to be optimistic about the future of SPX6900 and the potential for growth and success in the market.","data":[2,2,1,4,0,3,1,1,0,1,4,2,6,4,5,4,2,7,8,1,0,1,3,0,1,3,2,3,1,1,0,13,1,5,3,2,0,1,2,2,1,2,1,0,14,77,2,0,3,2,2,1,1,6,2,2]},{"label":"$PUMP","topics":"buyback,buybacks,circulating,mcap,001","description":"The messages from twitter suggest that there is a lot of discussion and activity surrounding the cryptocurrency $PUMP. Traders are closely monitoring the price movements and looking for opportunities to buy during dips. There is also mention of a potential pump cycle and the importance of considering fundamentals when valuing tokens. Additionally, there is excitement about recent gains in $PUMP's price and anticipation of further market repricing. Overall, it seems that $PUMP is a hot topic in the crypto community with a lot of interest and speculation surrounding it.","data":[0,1,0,1,1,3,0,1,4,1,0,1,2,0,3,1,0,1,3,2,2,4,1,2,1,4,0,5,1,1,5,4,2,0,0,1,2,2,4,99,4,5,2,2,0,0,1,3,2,2,0,1,2,2,0,0]},{"label":"Chainlink breakout potential in 2021","topics":"chainlink,link,sliding,interoperability,agencies","description":"The key topics currently being discussed in the crypto community on Twitter include the potential breakout of Chainlink ($LINK), its integration with other cryptocurrencies like $BTC and $ETH, its role in financial transformation, and the possibility of major asset management giants like BlackRock and Fidelity following UBS in adopting Chainlink. There is also speculation about Chainlink's reserve being a hidden catalyst for the next bull run, with analysts pointing to factors like liquidity, staking, and network growth. Traders are eyeing a potential breakout above $24, with technical indicators showing cautious optimism. Additionally, there is discussion about Chainlink's price consolidation, potential buy zones, and targets for upside movement. Overall, sentiment towards Chainlink appears positive, with expectations of significant growth in the near future.","data":[3,0,0,0,0,0,1,0,1,42,1,1,1,1,0,0,2,1,0,0,0,0,3,1,0,2,1,1,4,72,0,1,0,1,2,1,0,5,1,1,3,1,0,1,1,4,1,2,2,0,3,3,2,0,0,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-88.ts b/priv/repo/major_topics_seed/data-88.ts deleted file mode 100644 index fcb82b74da..0000000000 --- a/priv/repo/major_topics_seed/data-88.ts +++ /dev/null @@ -1,274 +0,0 @@ -export const NARRATIVES = { - labels: [ - '04.09.25', - '05.09.25', - '05.09.25', - '05.09.25', - '05.09.25', - '05.09.25', - '05.09.25', - '05.09.25', - '06.09.25', - '06.09.25', - '06.09.25', - '06.09.25', - '06.09.25', - '06.09.25', - '06.09.25', - '06.09.25', - '07.09.25', - '07.09.25', - '07.09.25', - '07.09.25', - '07.09.25', - '07.09.25', - '07.09.25', - '07.09.25', - '08.09.25', - '08.09.25', - '08.09.25', - '08.09.25', - '08.09.25', - '08.09.25', - '08.09.25', - '08.09.25', - '09.09.25', - '09.09.25', - '09.09.25', - '09.09.25', - '09.09.25', - '09.09.25', - '09.09.25', - '09.09.25', - '10.09.25', - '10.09.25', - '10.09.25', - '10.09.25', - '10.09.25', - '10.09.25', - '10.09.25', - '10.09.25', - '11.09.25', - '11.09.25', - '11.09.25', - '11.09.25', - '11.09.25', - '11.09.25', - '11.09.25', - '11.09.25', - ], - datasets: [ - { - label: 'AI', - topics: 'gpu,agents,agent,miranetwork,compute', - description: - "Based on the messages from twitter, the best AI crypto coins to watch for in 2025 include:\n\n1. Mistral (associated with AI firm valued at $14 billion)\n2. Virtuals_io (shipping agents that think and adapt)\n3. FractionAI_xyz (Co-founder & CEO speaking at WebX_Asia)\n4. DingTalk One (AI assistant powered by Alibaba's Qwen)\n5. TheAndrometa (building living 3D companions)\n6. CARV (AI Agents Unchained)\n\nThese AI crypto coins have massive potential and are at the forefront of the AI and blockchain trend, making them top picks for investors to watch in 2025.", - data: [ - 123, 185, 16, 16, 17, 15, 7, 18, 18, 19, 21, 19, 13, 22, 15, 14, 22, 9, 40, 20, 2, 18, 17, - 12, 15, 24, 17, 9, 10, 14, 15, 16, 13, 8, 11, 17, 16, 14, 12, 14, 20, 20, 11, 11, 7, 18, 20, - 18, 13, 20, 18, 11, 13, 16, 17, 10, - ], - }, - { - label: '$BTC price', - topics: '112k,113k,110k,4h,rejection', - description: - "The key topic currently discussed in the crypto community on Twitter is the potential bottoming of Bitcoin, with predictions of a price target of $130,000. There is also discussion about Bitcoin's recent price movements, with mentions of a potential breakout above $116,000 and a bullish inverse head & shoulders pattern signaling more gains ahead. Additionally, there is speculation about Bitcoin's all-time high coming soon and the stability of the economy despite market fears. Traders are also discussing potential trades and investments, with mentions of altcoins and Binance Simple Earn.", - data: [ - 12, 7, 1, 9, 153, 126, 12, 270, 6, 10, 7, 4, 10, 4, 5, 0, 6, 20, 1, 4, 7, 4, 6, 10, 5, 7, 3, - 4, 5, 2, 18, 11, 6, 4, 5, 8, 2, 6, 9, 5, 4, 6, 2, 7, 1, 6, 4, 7, 5, 5, 3, 5, 8, 3, 3, 2, - ], - }, - { - label: 'Gold vs Bitcoin', - topics: 'silver,platinum,metals,precious,goldman', - description: - 'The key topics currently being discussed in the crypto industry on social media include the performance of gold compared to Bitcoin, with predictions of Bitcoin outperforming gold by the end of the year. There is also discussion about the potential for a real bull market to start soon, with gold hitting new all-time highs. Additionally, there is mention of the outperformance of gold stocks compared to the S&P 500 over the past 10 years. Other topics include the potential benefits of investing in silver projects and the impact of USD weakness on gold and silver prices. Overall, the sentiment seems to be bullish on gold and silver investments in the current market environment.', - data: [ - 4, 3, 4, 5, 28, 9, 22, 13, 15, 2, 12, 8, 5, 3, 2, 2, 2, 2, 7, 5, 160, 107, 3, 4, 3, 5, 10, - 5, 6, 3, 3, 6, 4, 5, 8, 6, 5, 9, 7, 4, 12, 2, 3, 31, 2, 14, 2, 2, 9, 4, 7, 7, 7, 2, 17, 3, - ], - }, - { - label: 'Unemployment Rate and Job Data', - topics: 'unemployment,revision,revised,43,unemployed', - description: - "The key topics currently being discussed in the crypto industry on social media include the rising unemployment rate in the US, the potential impact of inflation, and the Federal Reserve's strategy for rate cuts after the latest job data. There is skepticism about the accuracy of labor statistics and concerns about the health of the economy, with some suggesting that a recession triggered by the Sahm Rule may be looming. Additionally, there is confusion surrounding job growth in the Healthcare and Social Assistance sector compared to data from the ADP report. Overall, there is a sense of uncertainty and caution among social media users regarding the current economic climate and its potential implications for the crypto industry.", - data: [ - 9, 9, 21, 6, 7, 20, 59, 0, 5, 7, 6, 11, 13, 8, 14, 13, 11, 13, 3, 2, 1, 2, 7, 8, 5, 16, 63, - 8, 23, 4, 9, 11, 3, 4, 15, 15, 18, 3, 10, 1, 16, 10, 3, 10, 4, 3, 5, 4, 4, 4, 46, 5, 8, 8, - 11, 9, - ], - }, - { - label: '$XRP', - topics: 'ripple,xrp,remittix,12b,crossborder', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the price movement of XRP, with expectations of it breaking $3 soon and potentially reaching $20 this cycle. There is also discussion about XRP whales moving large amounts to exchanges, as well as speculation about ETF approval potentially unlocking institutional flows. Technical analysis suggests a re-accumulation phase for XRP with key support zones and bullish targets identified. Additionally, there is mention of using XRP as collateral for trading and a window of opportunity to load up on XRP bags in the near future.', - data: [ - 7, 3, 5, 4, 5, 3, 3, 5, 6, 3, 3, 0, 8, 3, 5, 0, 7, 4, 4, 2, 1, 0, 1, 6, 5, 4, 5, 3, 8, 3, 8, - 3, 2, 2, 6, 4, 1, 3, 7, 9, 13, 29, 6, 4, 3, 4, 5, 2, 3, 2, 3, 2, 3, 3, 213, 1, - ], - }, - { - label: 'CPI reaction', - topics: '03,ppi,yoy,mom,cpi', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the recent CPI data release, which showed a 2.9% actual rate compared to the estimated 2.9% and prior 2.7%. There is speculation about the impact of this data on interest rates and the potential for rate cuts, which could affect Bitcoin and altcoins. Additionally, there is anticipation for the upcoming release of PPI data and its potential impact on inflation pressure and Fed rate cut hopes. Overall, the community is closely monitoring economic data releases and their potential effects on the crypto market.', - data: [ - 1, 2, 19, 0, 6, 0, 38, 2, 4, 3, 2, 113, 7, 1, 3, 3, 7, 2, 1, 0, 2, 1, 1, 9, 5, 15, 0, 3, 2, - 4, 2, 4, 2, 3, 8, 6, 4, 3, 92, 3, 25, 0, 0, 1, 2, 1, 2, 5, 6, 2, 1, 2, 3, 3, 1, 0, - ], - }, - { - label: 'AceCoin', - topics: 'apecoin,ape,apes,apechain,raid', - description: - 'Summary: The ApeCoin community is excited about the growth of the ecosystem, particularly on Solana. They are actively participating in campaigns on Wallchain and are expanding their partnerships with projects like Bankr. There is also anticipation for an upcoming AMA with the founder of ApeVenturesVC. Overall, the community is engaged and looking forward to the future developments of ApeCoin.', - data: [ - 2, 7, 91, 3, 3, 3, 3, 1, 6, 1, 5, 2, 4, 6, 4, 0, 8, 4, 1, 17, 11, 7, 4, 19, 6, 3, 4, 3, 7, - 2, 9, 3, 3, 6, 8, 3, 6, 4, 7, 7, 4, 8, 6, 1, 7, 5, 13, 4, 7, 1, 2, 4, 5, 7, 2, 2, - ], - }, - { - label: 'Rate Cut Expectations', - topics: 'bps,50bps,odds,cuts,pricing', - description: - 'The messages from twitter suggest that there is a high likelihood of rate cuts by the Federal Reserve in the near future. Market participants are anticipating rate cuts of varying magnitudes, with some expecting as much as 75bps by the end of 2025. The general sentiment is that rate cuts will be positive for risk assets, including cryptocurrencies like Ethereum ($ETH). Some analysts believe that continuous rate cuts may be necessary to support the economy through 2026. Traders on Polymarket are now predicting three rate cuts in 2025, indicating a shift towards a more dovish stance by the Fed. Overall, the consensus in the crypto community seems to be that rate cuts will have a positive impact on the market, with some expecting significant gains in assets like $ETH.', - data: [ - 15, 0, 2, 1, 3, 3, 26, 2, 1, 20, 5, 1, 8, 2, 5, 1, 3, 35, 1, 2, 4, 1, 1, 3, 3, 3, 2, 6, 6, - 4, 4, 21, 1, 4, 9, 11, 2, 6, 14, 3, 50, 3, 0, 9, 2, 6, 3, 12, 4, 5, 11, 8, 0, 4, 1, 2, - ], - }, - { - label: 'Whale Staking Surge', - topics: 'whales,dormant,deposited,unusual,ico', - description: - 'The key topics currently discussed in the crypto industry on social media include the awakening of dormant Ethereum ICO-era whales, significant movements in whale reserves, and the buying and selling activities of whales in the market. There is a focus on large transactions involving Ethereum, Bitcoin, ADA, and other cryptocurrencies, with whales making massive moves and staking large amounts of crypto assets. The market sentiment towards whales and their impact on prices is also being closely monitored. Additionally, there are mentions of whales engineering price premiums and triggering liquidations, as well as instances of whales being involved in unusual activities such as rescuing beluga whales or battling sharks. Overall, the presence and actions of whales in the crypto market continue to be a topic of interest and discussion among social media users.', - data: [ - 4, 5, 0, 2, 9, 21, 9, 6, 4, 2, 10, 5, 6, 3, 9, 5, 21, 1, 2, 1, 1, 1, 2, 0, 7, 4, 1, 3, 7, 3, - 4, 8, 5, 3, 8, 4, 1, 0, 0, 2, 2, 2, 3, 1, 6, 3, 1, 2, 4, 2, 4, 4, 3, 85, 2, 6, - ], - }, - { - label: 'LINEA Token Launch and Airdrop', - topics: 'lineabuild,linea,layer2,hodler,launchpool', - description: - "The key topics currently being discussed in the crypto community regarding Linea include:\n- Linea launching an airdrop for its token to enhance network performance and reduce transaction costs\n- Concerns about the Linea contract and potential issues with claiming Linea tokens\n- Gas fees being too high for claiming Linea tokens\n- Linea Ignition rewards increasing to 160M future LINEA tokens\n- Linea launching on Binance with a HODLer Airdrop\n- Speculation about Linea's price performance on DigiFinex\n- The launch of Linea Launchpool for staking and earning rewards\n- An upcoming event discussing how Linea could change everything in the crypto industry\n\nOverall, there seems to be a mix of excitement, skepticism, and confusion surrounding Linea and its token launch. Investors are closely watching the developments and price movements of Linea to make informed trading decisions.", - data: [ - 4, 4, 0, 3, 17, 3, 1, 0, 2, 2, 2, 5, 0, 4, 1, 2, 5, 2, 2, 2, 0, 3, 1, 2, 7, 3, 6, 2, 7, 105, - 3, 1, 5, 0, 17, 4, 2, 0, 1, 1, 7, 3, 3, 3, 1, 5, 3, 8, 7, 5, 6, 1, 6, 3, 5, 3, - ], - }, - { - label: '$HYPE', - topics: 'hype,assistance,composite,prep,hyperliquidx', - description: - "The key topics discussed in the messages from twitter about $HYPE include:\n- $HYPE reaching $50 and $51.17 all-time highs\n- $HYPE reclaiming $50 and clearing Fibonacci targets at $53.45\n- Momentum pointing towards the next extension target at $61.52\n- $HYPE being 500% from the low and testing resistance at $56\n- Gann's analysis being accurate even before crypto was popular\n- Bullish sentiment as long as price remains above $50\n- Shallow pullbacks and consolidations being favored for price discovery\n\nOverall, the sentiment towards $HYPE seems positive with expectations of further growth and bullish momentum.", - data: [ - 5, 2, 10, 11, 1, 1, 2, 3, 0, 1, 2, 4, 0, 4, 3, 2, 5, 5, 1, 1, 4, 5, 2, 2, 108, 1, 4, 2, 2, - 3, 5, 1, 3, 1, 5, 4, 4, 3, 3, 3, 6, 8, 7, 5, 1, 4, 4, 4, 5, 5, 1, 5, 1, 4, 4, 7, - ], - }, - { - label: 'Ethereum breakout', - topics: '4400,4h,7000,repeating,shock', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the breakout configuration of $DOT, the significant drop in $ETH on exchanges, important levels for $ETH, OBV breakout before price for $ETH, attempts to invalidate a 4hr reversal for $ETH, confirmed breakout for $ETH, price discovery for $ETH, supply shock for $ETH, Ethereum Treasury Companies and Institutions buying at a massive pace, potential violent move up for $ETH, contrarian views on Ethereum going higher, $THETA protocol delivering, opportunity time for $THETA beneath the 20-Week MA, aggressive shorting into the lows for $ETH, potential trending moves for $SOL and $HYPE, market cap rankings for $ETH and $KAS, potential unwinding lower for $ETH if trap door at $4260 is opened.', - data: [ - 1, 0, 2, 1, 3, 1, 1, 2, 1, 0, 1, 0, 1, 2, 2, 170, 37, 1, 1, 1, 4, 0, 3, 3, 2, 2, 1, 0, 2, 2, - 2, 7, 0, 3, 1, 0, 2, 1, 3, 5, 0, 2, 0, 1, 0, 2, 5, 2, 4, 0, 0, 1, 1, 0, 1, 0, - ], - }, - { - label: 'MSTR S&P 500 Rejection Analysis', - topics: 'mstr,inclusion,saylors,sp,sampp', - description: - "The key topic currently being discussed in the crypto community on Twitter is the news that MSTR (MicroStrategy) is not joining the S&P 500. This decision has been described as a historic mistake and has led to discussions about Michael Saylor's strategy not being approved for inclusion. Some users are analyzing MSTR's stock price performance and comparing it to previous years. There is also speculation about the impact of this rejection on crypto treasuries and the potential for MSTR to outperform the S&P 500. Additionally, there are discussions about MSTR's accessories being popular within the community and the meaning behind the company's name. Overall, the community is closely following developments related to MSTR and its involvement in the S&P 500.", - data: [ - 4, 0, 1, 5, 7, 3, 16, 0, 1, 0, 4, 1, 2, 5, 2, 1, 6, 3, 3, 2, 0, 1, 4, 4, 8, 8, 2, 7, 4, 2, - 1, 1, 27, 42, 1, 3, 2, 4, 2, 1, 2, 4, 7, 2, 0, 22, 5, 2, 3, 1, 4, 3, 3, 0, 1, 2, - ], - }, - { - label: 'Web3', - topics: 'web2,domains,web3,domain,galxe', - description: - 'In simple terms, Web3 is a new way of using the internet where the community has more control and decision-making power compared to Web2. It rewards those who are willing to learn and contribute, regardless of traditional qualifications. However, there are still challenges such as lack of proper code review in some Web3 teams. Despite this, Web3 startups are attracting significant funding and thriving in the current market. It is not a scam, but a growing and evolving space that offers opportunities for innovation and collaboration.', - data: [ - 3, 0, 5, 0, 4, 1, 0, 6, 0, 3, 4, 3, 2, 2, 3, 4, 8, 4, 9, 3, 3, 3, 3, 3, 2, 5, 2, 5, 4, 6, 4, - 1, 7, 2, 10, 1, 7, 4, 1, 4, 2, 3, 2, 3, 2, 2, 7, 6, 1, 0, 6, 3, 60, 5, 5, 3, - ], - }, - { - label: 'Bitcoin ETF outflows', - topics: 'outflows,inflows,inflow,etfs,flows', - description: - "The key topics currently discussed in the messages from twitter are the lack of a Bitcoin ETF in the UK, the significant inflows and outflows in Bitcoin and Ethereum ETFs, the return of traditional finance bids to Bitcoin, the heavy outflows from spot crypto ETFs, and the overall flow of funds into ETFs for Bitcoin and Ethereum. There is also mention of record inflows to the world's largest ETFs, particularly those from BlackRock. The data shows a mix of inflows and outflows in the ETF market, with Bitcoin ETFs seeing strong net inflows while Ethereum ETFs experienced significant outflows.", - data: [ - 4, 4, 2, 2, 19, 2, 7, 7, 0, 0, 3, 5, 2, 0, 1, 56, 5, 6, 1, 1, 0, 1, 0, 0, 4, 7, 1, 1, 4, 0, - 0, 2, 1, 1, 4, 2, 0, 0, 1, 2, 1, 3, 1, 20, 0, 14, 1, 0, 3, 2, 4, 6, 1, 6, 0, 6, - ], - }, - { - label: 'RWA Trends', - topics: 'rwas,rwa,tokenizing,raydium,realworld', - description: - 'The key topic discussed in the messages from twitter is RWA tokenization, which involves turning real-world assets into tradable tokens on the blockchain. This process allows for steady passive income and increased liquidity for assets such as stocks, real estate, and commodities. Various projects and platforms, such as @glider_fi, @RialoHQ, @four_meme, and @MavrykNetwork, are mentioned as leaders in the RWA tokenization space. Additionally, the potential risks and benefits of tokenizing RWAs are highlighted, as well as the importance of good market making for these assets. Overall, the discussion emphasizes the growing trend of bringing real-world assets onto the blockchain for easier access and trading.', - data: [ - 8, 5, 2, 3, 3, 3, 0, 5, 1, 3, 6, 3, 2, 3, 3, 1, 9, 2, 4, 2, 5, 2, 3, 3, 4, 1, 2, 3, 4, 2, 2, - 3, 3, 1, 5, 4, 3, 2, 2, 2, 14, 44, 1, 3, 1, 6, 0, 4, 9, 4, 8, 2, 2, 1, 2, 0, - ], - }, - { - label: 'Bitcoin Mining Funding and Innovation', - topics: 'miner,miners,mining,solo,mined', - description: - 'The key topics currently discussed in the crypto industry on social media include universities gaining funding through Bitcoin mining with purpose, the increase in unknown miners finding blocks, the profitability of mining different coins, the start of a new Bitcoin mining period, the importance of strong miners for the security of Bitcoin, and partnerships for financing Bitcoin mining equipment. There is also discussion about the impact of decreasing block rewards on mining fees, the potential for miners to improve tokenomics, and the need for miners to switch to more sustainable practices. Overall, there is a focus on the evolving landscape of Bitcoin mining and the various factors influencing its profitability and sustainability.', - data: [ - 7, 2, 4, 1, 8, 32, 5, 3, 2, 1, 1, 1, 5, 3, 0, 4, 7, 1, 2, 5, 0, 3, 3, 9, 2, 2, 2, 4, 8, 0, - 5, 1, 21, 0, 9, 6, 0, 2, 3, 3, 0, 2, 4, 4, 10, 4, 2, 2, 4, 1, 5, 0, 3, 1, 0, 1, - ], - }, - { - label: 'DeFi', - topics: 'defai,borrowing,seasons,defi,lending', - description: - 'The key topics currently discussed in the messages from twitter related to DeFi are:\n1. The importance of long-term value creation in DeFi, not just short-term hype.\n2. Exploring the insurability of DeFi and potential solutions.\n3. Rewarding the DeFi community and ensuring token holders share in the value created.\n4. Uncovering lesser-known aspects of DeFi that are not commonly discussed.\n5. Personal updates and reflections on experiences in the DeFi space.\n6. Discussions on the future of DeFi, including fixed-income era, yield, risk, and next-gen infrastructure.\n7. Deep dives and conversations on yield, risk, and the future of DeFi.\n8. Announcements of upcoming events and AMAs related to DeFi.\n9. Launches of new DeFi products and platforms, such as Taicho, aimed at simplifying and organizing DeFi interactions.\n10. Speculation and excitement around new developments and advancements in DeFi, such as protocol integrations and new networks.', - data: [ - 3, 0, 2, 3, 2, 1, 1, 6, 2, 2, 2, 1, 2, 72, 1, 2, 2, 5, 4, 3, 0, 3, 3, 1, 3, 4, 2, 5, 2, 3, - 4, 1, 0, 1, 4, 4, 3, 4, 5, 1, 3, 2, 2, 2, 0, 2, 10, 5, 1, 10, 2, 1, 1, 0, 4, 4, - ], - }, - { - label: 'SPX6900', - topics: 'spx6900,spx,spy,ndx,qqq', - description: - "The key topics currently being discussed in the crypto industry on social media include the concept of DCA (Dollar Cost Averaging) with SPX6900, the idea of diversification failing in the age of passive investing, market analysis and trade opportunities with various stocks and indices such as QQQ, IWM, SPY, SPX, NDX, and more. There is also mention of the Swiss National Bank's comfort with CHF strength, liquidity-fueled rallies trumping geopolitics, and the potential for a new crypto movement with SPX6900. The discussion also touches on the success of crypto coins as social phenomena and movements, with a focus on Bitcoin, XRP, and DOGE. Overall, the sentiment seems to be optimistic about the future of SPX6900 and the potential for growth and success in the market.", - data: [ - 2, 2, 1, 4, 0, 3, 1, 1, 0, 1, 4, 2, 6, 4, 5, 4, 2, 7, 8, 1, 0, 1, 3, 0, 1, 3, 2, 3, 1, 1, 0, - 13, 1, 5, 3, 2, 0, 1, 2, 2, 1, 2, 1, 0, 14, 77, 2, 0, 3, 2, 2, 1, 1, 6, 2, 2, - ], - }, - { - label: '$PUMP', - topics: 'buyback,buybacks,circulating,mcap,001', - description: - "The messages from twitter suggest that there is a lot of discussion and activity surrounding the cryptocurrency $PUMP. Traders are closely monitoring the price movements and looking for opportunities to buy during dips. There is also mention of a potential pump cycle and the importance of considering fundamentals when valuing tokens. Additionally, there is excitement about recent gains in $PUMP's price and anticipation of further market repricing. Overall, it seems that $PUMP is a hot topic in the crypto community with a lot of interest and speculation surrounding it.", - data: [ - 0, 1, 0, 1, 1, 3, 0, 1, 4, 1, 0, 1, 2, 0, 3, 1, 0, 1, 3, 2, 2, 4, 1, 2, 1, 4, 0, 5, 1, 1, 5, - 4, 2, 0, 0, 1, 2, 2, 4, 99, 4, 5, 2, 2, 0, 0, 1, 3, 2, 2, 0, 1, 2, 2, 0, 0, - ], - }, - { - label: 'Chainlink breakout potential in 2021', - topics: 'chainlink,link,sliding,interoperability,agencies', - description: - "The key topics currently being discussed in the crypto community on Twitter include the potential breakout of Chainlink ($LINK), its integration with other cryptocurrencies like $BTC and $ETH, its role in financial transformation, and the possibility of major asset management giants like BlackRock and Fidelity following UBS in adopting Chainlink. There is also speculation about Chainlink's reserve being a hidden catalyst for the next bull run, with analysts pointing to factors like liquidity, staking, and network growth. Traders are eyeing a potential breakout above $24, with technical indicators showing cautious optimism. Additionally, there is discussion about Chainlink's price consolidation, potential buy zones, and targets for upside movement. Overall, sentiment towards Chainlink appears positive, with expectations of significant growth in the near future.", - data: [ - 3, 0, 0, 0, 0, 0, 1, 0, 1, 42, 1, 1, 1, 1, 0, 0, 2, 1, 0, 0, 0, 0, 3, 1, 0, 2, 1, 1, 4, 72, - 0, 1, 0, 1, 2, 1, 0, 5, 1, 1, 3, 1, 0, 1, 1, 4, 1, 2, 2, 0, 3, 3, 2, 0, 0, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-89.json b/priv/repo/major_topics_seed/data-89.json deleted file mode 100644 index 4bedd4db1f..0000000000 --- a/priv/repo/major_topics_seed/data-89.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["11.09.25","12.09.25","12.09.25","12.09.25","12.09.25","12.09.25","12.09.25","12.09.25","13.09.25","13.09.25","13.09.25","13.09.25","13.09.25","13.09.25","13.09.25","13.09.25","14.09.25","14.09.25","14.09.25","14.09.25","14.09.25","14.09.25","14.09.25","14.09.25","15.09.25","15.09.25","15.09.25","15.09.25","15.09.25","15.09.25","15.09.25","15.09.25","16.09.25","16.09.25","16.09.25","16.09.25","16.09.25","16.09.25","16.09.25","16.09.25","17.09.25","17.09.25","17.09.25","17.09.25","17.09.25","17.09.25","17.09.25","17.09.25","18.09.25","18.09.25","18.09.25","18.09.25","18.09.25","18.09.25","18.09.25"],"datasets":[{"label":"SOL price","topics":"sol,solana,240,250,ford","description":"The messages from twitter suggest that there is a lot of excitement and optimism surrounding Solana ($SOL) and its potential for significant price increases. The possibility of $100x on $SOL to $235 is still being discussed, with some even speculating about $240 and $250 price targets. There are mentions of big money moves into Solana, with Pantera Capital revealing a $1.1B allocation to the project. The Solana ecosystem is highlighted for its diverse offerings, including global payments, staking, NFTs, trading, and more. The DeFi ecosystem on Solana is particularly emphasized, with over $12.5B locked in DeFi protocols. Overall, the sentiment around Solana is bullish, with expectations of new all-time highs and continued growth in the future.","data":[18,8,10,15,15,14,21,13,14,21,14,11,8,17,10,12,9,7,5,16,12,17,28,8,12,9,16,16,11,11,10,18,13,8,12,10,17,14,14,15,16,14,15,54,13,22,10,6,16,13,11,10,11,13,5]},{"label":"BTC price","topics":"btc,bitcoin,117k,resistance,retest","description":"The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Bitcoin hitting $116k and trying to confirm a reversal in September 2021.\n2. Bitcoin's price history, including its dip to $40,000 after China's mining ban and its significant increase since Warren Buffett's comments.\n3. Resistance levels for Bitcoin and predictions for future price movements.\n4. The increasing illiquid supply of Bitcoin and the potential supply shock.\n5. Speculation on the future growth of Bitcoin and other assets.\n6. Analysis of Bitcoin's volatility and potential for wild price movements.\n7. Technical analysis of Bitcoin's price movements and potential trends.\n8. Speculation on Bitcoin's future price movements post-FOMC meeting.\n9. Comparison of Bitcoin's growth potential with other major investments like Nvidia, Apple, and Tesla.\n10. Discussion of Bitcoin's stability and support levels, as well as potential reversal points.\n\nOverall, the sentiment in the crypto community seems to be bullish on Bitcoin's future price movements, with many users predicting new all-time highs and positive trends in the market.","data":[5,10,7,7,8,15,35,9,3,11,5,16,7,10,3,10,7,3,5,19,6,7,28,9,5,5,3,7,20,12,9,6,9,5,7,2,19,3,12,15,11,11,10,5,8,13,13,5,11,17,6,9,12,8,11]},{"label":"DOGE bullish news","topics":"doge,dogecoin,etf,shorts,resistance","description":"The key topics currently being discussed in the crypto community on Twitter include the bullish outlook for Dogecoin ($DOGE), with mentions of potential price breakouts, entry points, and positive sentiment towards the coin. There is also discussion about the unique behavior of Dogecoin compared to other cryptocurrencies and traditional markets. Additionally, there are mentions of other cryptocurrencies such as $ANON, $EIGEN, $PYTH, and $WLD, as well as trading opportunities and rewards on various platforms. Overall, the sentiment towards Dogecoin appears to be optimistic, with users expressing excitement about potential price increases and positive developments in the market.","data":[8,8,9,7,5,12,9,8,11,5,7,14,7,23,5,1,7,7,3,8,6,4,13,18,2,6,10,4,11,3,7,14,4,5,5,5,11,7,1,7,6,7,8,7,8,8,6,3,6,11,3,5,11,10,4]},{"label":"Trading strategies","topics":"patience,traders,profits,trading,trade","description":"The key topics discussed in the messages from twitter are:\n- Fear of selling the bottom (JeetPhobia)\n- The importance of being selective and patient in trading\n- Taking profits during a bull run\n- Managing risk in investing\n- The need for deregulation in Europe\n- Advice on trading and portfolio management\n- The difference between professional traders and those learning and testing\n- The impact of emotions on trading decisions\n- Optimizing execution in a volatile market\n- The life of a futures trader and the balance between caution and risk-taking.","data":[5,4,8,3,7,2,2,13,8,6,5,3,4,11,4,4,9,7,8,8,4,14,1,7,7,6,4,9,2,12,8,8,12,5,16,9,5,8,5,11,14,5,9,5,7,2,11,2,4,43,2,7,6,3,4]},{"label":"BNB price","topics":"bnb,1000,czbinance,binance,digits","description":"The key topic discussed in the messages from twitter is the significant increase in the price of Binance Coin (BNB) to over $1,000. The community members are celebrating this milestone and expressing their confidence in BNB's future growth potential. There is also mention of the Binance ecosystem and BNB blockchain's contributions to this achievement. Additionally, there are references to historical price points of BNB, predictions for future price targets, and comparisons to other cryptocurrencies in the market. Overall, the sentiment towards BNB's performance is positive and optimistic.","data":[2,5,3,4,5,21,16,4,8,9,8,6,8,5,3,7,3,7,4,7,5,4,34,0,7,5,2,4,6,7,4,3,7,9,5,1,9,3,12,9,4,8,7,22,8,6,3,9,20,7,10,1,2,5,10]},{"label":"BTC and the future of finance","topics":"bitcoin,bitcoiners,fiat,core,monetary","description":"The messages from twitter suggest that Bitcoin is seen as a solution to currency debasement and a way to protect purchasing power in the long-term. There is a belief that Bitcoin is the apex monetary protocol that humans can participate in, and that it is not taught in colleges for a reason. There are discussions about the government potentially trying to confiscate Bitcoin, and the importance of separating money from state. The messages also touch on the idea of Bitcoin being a spiritual war and going beyond just being digital money. Overall, the sentiment towards Bitcoin in these messages is positive, with a focus on its potential to change the world and protect financial assets.","data":[5,5,11,11,9,13,14,8,4,3,6,3,8,5,6,3,6,8,6,2,3,8,10,6,11,8,2,4,5,3,3,12,7,2,7,11,8,3,3,7,12,6,5,5,5,5,8,9,3,8,8,5,13,3,6]},{"label":"AI","topics":"ai,agents,agent,workflows,gtgtgt","description":"The key topics discussed in the messages from twitter include the impact of AI on jobs, the potential for AI to take over various industries, the importance of smarter data for AI applications, the rise of AI agents in the workplace, the potential for AI to improve medical care and legal advice, and the competition in the AI industry. There is also mention of societal expectations regarding AI adoption, the potential for AI to combat climate change, and the role of AI in mainstream content generation. Additionally, there is discussion about the future of tech jobs, the impact of AI on democracy and capitalism, and the importance of values in AI development.","data":[2,20,10,2,6,8,4,0,5,7,8,3,7,3,5,2,7,5,6,7,5,6,3,12,15,1,2,5,2,6,6,5,9,0,7,5,10,6,1,7,5,6,2,9,5,5,6,6,7,9,8,10,3,8,6]},{"label":"Jesus","topics":"jesus,god,lord,christ,evil","description":"The messages from twitter primarily focus on discussions about God, Jesus Christ, faith, and spirituality. There are mentions of praying for good leadership, the importance of faith in Jesus, and the power of the Holy Spirit. Some messages also touch on the idea of standing firm in one's beliefs and not being swayed by false connections to Christianity. Overall, the messages convey a strong sense of devotion and belief in God and Jesus Christ within the crypto community.","data":[4,6,4,3,6,3,3,6,1,6,1,3,6,5,9,9,4,5,5,13,2,9,7,3,2,4,3,3,5,8,5,3,9,3,7,5,15,4,7,1,5,7,6,2,9,2,7,10,4,6,7,1,7,10,9]},{"label":"Political division","topics":"left,violence,politics,right,unity","description":"The messages from twitter reflect a strong polarization between the left and right political ideologies, with a focus on demonizing the left as evil and destructive. There is a belief that the left is responsible for the downfall of society and that the right is morally superior. The discussion also touches on the concept of free speech and the need for accountability in political actions. Overall, the messages highlight a deep divide and animosity between the two sides, with a call for unity against what is perceived as insanity and extremism.","data":[5,2,2,2,5,2,1,8,7,9,4,0,3,1,5,6,0,2,1,3,4,1,8,5,5,5,30,6,4,5,1,4,5,4,13,5,5,3,5,5,13,4,9,6,6,7,2,6,3,1,11,6,9,7,5]},{"label":"Iphone release","topics":"iphone,apple,phone,air,ios","description":"Based on the messages from twitter, it is evident that there is a lot of discussion about Apple and its products, particularly the iPhone and AirPods. Some key topics include the delay of AirPower, the potential release of a foldable iPhone in 2026, and the evolution of AirPods Pro 3 with features like heart rate monitoring and live translation. There is also mention of Apple's real-time language translation for AirPods Pro 3 and the design of the iPhone 5s. Additionally, there is speculation about Apple's future products, such as minimalist smart glasses and the potential removal of the camera bump on the next iPhone Air. The messages also touch on the need for a new phone and discussions about Android phones for rooting and hacking. Overall, the conversations on twitter highlight the ongoing interest and excitement surrounding Apple and its products within the crypto community.","data":[5,8,13,4,5,4,3,2,1,5,5,2,6,1,5,4,3,2,10,2,3,2,5,3,3,3,6,6,6,5,3,6,15,5,2,11,8,3,3,7,4,7,5,4,5,3,2,4,4,2,10,10,6,3,5]},{"label":"HYPE","topics":"hyperliquid,hype,hyperliquids,hyper,hip3","description":"The key topics discussed in the messages from twitter about $HYPE and Hyperliquid include:\n- The announcement of a Hyperliquid killer being launched\n- Speculation about the future price of $HYPE, with targets around $60\n- Partnerships and developments with other companies such as MetaMask, Ripple, BlackRock, and Apollo\n- The potential for a $HYPE ETF from VanEck\n- The availability of data and tracking tools for Hyperliquid\n- The launch of the mHYPE-HYPE pool on Upheavalfi\n- The bullish trend of $HYPE, with resistance levels and potential gains\n- The launch of a meme launchpad on Hyperliquid with bonding curves and yield opportunities\n\nOverall, the messages indicate a high level of excitement and optimism surrounding $HYPE and Hyperliquid, with discussions about price targets, partnerships, and new features on the platform.","data":[3,2,4,2,5,2,8,3,2,4,2,2,5,3,0,5,3,2,5,6,5,7,7,24,6,6,9,5,9,7,6,3,3,4,1,9,5,5,6,1,3,2,1,2,1,2,2,12,1,8,4,4,4,2,1]},{"label":"Football","topics":"football,game,fan,fans,games","description":"The key topics discussed in the messages from twitter include:\n1. Discussion about NFL games, teams, and players such as the Packers, Chiefs, Eagles, Texans, Browns, Colts, Commanders, and Steelers.\n2. Criticism and frustration towards certain teams and players, such as the Texans and Chiefs.\n3. Analysis of game strategies and performances, including concerns about defense, offensive line, and game plans.\n4. Speculation about potential Super Bowl contenders, such as the Packers.\n5. Fantasy football discussions and frustrations.\n6. Comparisons between different quarterbacks and coaches, such as Josh Allen and Kevin.\n7. Critique of media coverage and propaganda in sports reporting.\n8. Calls for changes in coaching staff or game plans based on team performances.","data":[1,1,6,3,3,4,1,2,3,4,0,2,8,5,3,11,7,5,10,7,5,6,5,3,2,9,2,5,6,4,2,3,3,3,4,7,3,2,2,7,3,6,6,0,4,3,5,5,3,7,3,6,6,4,8]},{"label":"FOMC","topics":"fomc,meeting,volatility,decision,tomorrow","description":"The messages from twitter suggest that there is a lot of anticipation and speculation surrounding the upcoming FOMC meeting. Traders are preparing for potential market volatility and are discussing different strategies for trading before and after the announcement. Some are advising caution and staying on the sidelines, while others are confident in their trading plans. Overall, there is a mix of excitement and nervousness about the potential impact of the FOMC meeting on the crypto market.","data":[3,1,1,0,6,3,2,1,2,2,2,18,7,4,1,5,10,8,3,13,5,3,5,6,1,4,3,2,3,3,14,5,2,6,4,1,6,1,4,4,1,9,4,4,0,1,1,1,15,0,0,4,5,3,0]},{"label":"Art","topics":"art,artist,artists,piece,pixel","description":"The key topics discussed in the messages from twitter are about supporting artists by buying tokens, bidding on their art, and the importance of recognizing the creation date of artwork. The messages also touch on the democratization of art and the impact of technology on the art industry. Overall, the messages emphasize the value of authenticity and the need for artists to be paid for their work.","data":[3,7,32,2,3,5,4,1,2,3,7,1,0,6,2,5,1,2,3,2,10,3,2,4,0,2,1,5,0,4,2,4,7,3,6,7,1,1,1,7,2,4,5,2,7,1,4,4,5,2,1,5,4,5,2]},{"label":"Gold price","topics":"gold,silver,platinum,prices,4000","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the rising price of gold, the relationship between gold and Bitcoin, predictions for gold reaching new all-time highs, and the impact of Federal Reserve policies on gold prices. There is also discussion about the potential for gold to reach $4,000 per ounce and the role of tokenized gold like PAX Gold as a safe-haven asset. Additionally, there are mentions of silver prices reaching a 14-year high and the potential for silver, platinum, and palladium to also see significant price increases. Overall, the focus is on the performance of precious metals in relation to economic uncertainty and market volatility.","data":[2,4,4,2,1,4,4,5,2,3,2,3,3,1,2,2,2,0,0,19,2,3,12,4,0,5,6,4,3,2,1,6,4,2,1,7,12,0,10,3,3,4,8,2,2,8,4,1,5,5,2,6,4,1,5]},{"label":"RWA","topics":"rwa,rwas,tokenization,tokenized,realworld","description":"The key topic discussed in the messages from twitter is the rapid growth of Real World Assets (RWAs) in the crypto industry, particularly focusing on the Aave Horizon. The messages highlight the increasing adoption of RWAs, the potential for bringing in millions of users onchain, the success of RWAs in Singapore with proper regulatory frameworks, and the infrastructure being created for tokenization in traditional finance. Additionally, there are mentions of specific projects and tokens related to RWAs, such as Centrifuge, Raydium, and Figure. The messages also touch upon upcoming news related to RWAs and the future potential of tokenized assets in the financial market. Overall, the sentiment is positive towards the growth and potential of RWAs in the crypto industry.","data":[3,2,5,4,5,3,4,1,1,7,1,1,2,3,5,0,3,1,6,3,3,2,2,5,7,6,9,1,3,4,4,4,6,6,5,6,4,4,5,6,4,1,3,3,1,2,5,4,14,3,5,3,4,3,1]},{"label":"Base token","topics":"base,exploring,token,coinbase,network","description":"The messages from twitter suggest that there is a lot of excitement and speculation surrounding the potential launch of a network token by Base. Both Brian Armstrong and Jesse Pollak have confirmed that Base is exploring the idea of launching a native token, although there are no definitive plans yet. The community seems to be eagerly anticipating more details about the $BASE token and its potential impact on the ecosystem. Some are even speculating about the token's potential as a dividend-generating asset for Coinbase shareholders. Overall, the sentiment appears to be positive, with many users expressing excitement and anticipation for the potential launch of the Base network token.","data":[2,2,6,12,4,2,2,2,3,6,5,1,3,2,0,17,5,0,1,1,4,1,3,2,3,1,15,3,1,2,4,0,7,6,1,4,5,3,5,1,1,7,4,1,2,3,3,4,15,3,4,1,3,2,1]},{"label":"Pokemon cards","topics":"packs,pokemon,cards,vibedotmarket,card","description":"The key topics currently discussed in the crypto industry on social media include the rising popularity and value of Pokemon cards, the excitement surrounding new releases and collaborations such as Yugioh x @dotSWOOSH, the nostalgia and hype surrounding classic Pokemon characters like Charizards and Mew, as well as the potential for valuable finds in card packs and the growing market for rare and limited edition cards. There is also discussion about the utility and potential market cap growth of trading card games like POKEBASE, as well as the potential for cryptocurrency investments in the space. Additionally, there is anticipation for upcoming livestream events and pack openings, as well as community engagement and support for various projects and tokens like $VLADY.","data":[7,0,4,2,0,3,1,17,6,4,2,0,6,3,3,1,1,0,0,4,7,1,1,3,2,1,1,4,6,7,4,1,8,8,11,8,4,6,5,2,4,3,0,5,7,2,2,5,4,1,3,3,2,1,1]},{"label":"APE and BAYC","topics":"ape,apecoin,raid,apes,wallchainxyz","description":"ApeCoin is gaining significant attention and popularity after the launch of the @ApeChainHUB RAID on Solana. The expansion of the Ape ecosystem is being praised for its borderless nature and partnerships with @AEON_Community. Project RAID is seen as a game-changer for bringing ApeCoin to Solana and hyperfinancializing it before a major pump. The integration of ApeCoin on Solana is seen as a positive move, offering faster and cheaper swaps, deeper liquidity, and new DeFi integrations. The R.A.I.D initiative is highlighted as a catalyst for ApeCoin's growth and success in the BAYC ecosystem. The community is excited about the possibilities and opportunities that ApeCoin on Solana presents, with various strategies and tools being discussed for maximizing returns and engagement. Overall, ApeCoin's presence on Solana is seen as a significant step towards its potential as a top 20 token in the future.","data":[4,5,12,3,3,2,3,1,0,4,4,1,3,7,4,10,2,4,3,6,5,4,4,3,1,6,6,5,5,4,6,2,9,4,2,0,5,3,1,2,0,6,2,3,3,4,3,0,2,2,2,2,2,3,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-89.ts b/priv/repo/major_topics_seed/data-89.ts deleted file mode 100644 index d911eaecb3..0000000000 --- a/priv/repo/major_topics_seed/data-89.ts +++ /dev/null @@ -1,253 +0,0 @@ -export const NARRATIVES = { - labels: [ - '11.09.25', - '12.09.25', - '12.09.25', - '12.09.25', - '12.09.25', - '12.09.25', - '12.09.25', - '12.09.25', - '13.09.25', - '13.09.25', - '13.09.25', - '13.09.25', - '13.09.25', - '13.09.25', - '13.09.25', - '13.09.25', - '14.09.25', - '14.09.25', - '14.09.25', - '14.09.25', - '14.09.25', - '14.09.25', - '14.09.25', - '14.09.25', - '15.09.25', - '15.09.25', - '15.09.25', - '15.09.25', - '15.09.25', - '15.09.25', - '15.09.25', - '15.09.25', - '16.09.25', - '16.09.25', - '16.09.25', - '16.09.25', - '16.09.25', - '16.09.25', - '16.09.25', - '16.09.25', - '17.09.25', - '17.09.25', - '17.09.25', - '17.09.25', - '17.09.25', - '17.09.25', - '17.09.25', - '17.09.25', - '18.09.25', - '18.09.25', - '18.09.25', - '18.09.25', - '18.09.25', - '18.09.25', - '18.09.25', - ], - datasets: [ - { - label: 'SOL price', - topics: 'sol,solana,240,250,ford', - description: - 'The messages from twitter suggest that there is a lot of excitement and optimism surrounding Solana ($SOL) and its potential for significant price increases. The possibility of $100x on $SOL to $235 is still being discussed, with some even speculating about $240 and $250 price targets. There are mentions of big money moves into Solana, with Pantera Capital revealing a $1.1B allocation to the project. The Solana ecosystem is highlighted for its diverse offerings, including global payments, staking, NFTs, trading, and more. The DeFi ecosystem on Solana is particularly emphasized, with over $12.5B locked in DeFi protocols. Overall, the sentiment around Solana is bullish, with expectations of new all-time highs and continued growth in the future.', - data: [ - 18, 8, 10, 15, 15, 14, 21, 13, 14, 21, 14, 11, 8, 17, 10, 12, 9, 7, 5, 16, 12, 17, 28, 8, - 12, 9, 16, 16, 11, 11, 10, 18, 13, 8, 12, 10, 17, 14, 14, 15, 16, 14, 15, 54, 13, 22, 10, 6, - 16, 13, 11, 10, 11, 13, 5, - ], - }, - { - label: 'BTC price', - topics: 'btc,bitcoin,117k,resistance,retest', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Bitcoin hitting $116k and trying to confirm a reversal in September 2021.\n2. Bitcoin's price history, including its dip to $40,000 after China's mining ban and its significant increase since Warren Buffett's comments.\n3. Resistance levels for Bitcoin and predictions for future price movements.\n4. The increasing illiquid supply of Bitcoin and the potential supply shock.\n5. Speculation on the future growth of Bitcoin and other assets.\n6. Analysis of Bitcoin's volatility and potential for wild price movements.\n7. Technical analysis of Bitcoin's price movements and potential trends.\n8. Speculation on Bitcoin's future price movements post-FOMC meeting.\n9. Comparison of Bitcoin's growth potential with other major investments like Nvidia, Apple, and Tesla.\n10. Discussion of Bitcoin's stability and support levels, as well as potential reversal points.\n\nOverall, the sentiment in the crypto community seems to be bullish on Bitcoin's future price movements, with many users predicting new all-time highs and positive trends in the market.", - data: [ - 5, 10, 7, 7, 8, 15, 35, 9, 3, 11, 5, 16, 7, 10, 3, 10, 7, 3, 5, 19, 6, 7, 28, 9, 5, 5, 3, 7, - 20, 12, 9, 6, 9, 5, 7, 2, 19, 3, 12, 15, 11, 11, 10, 5, 8, 13, 13, 5, 11, 17, 6, 9, 12, 8, - 11, - ], - }, - { - label: 'DOGE bullish news', - topics: 'doge,dogecoin,etf,shorts,resistance', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the bullish outlook for Dogecoin ($DOGE), with mentions of potential price breakouts, entry points, and positive sentiment towards the coin. There is also discussion about the unique behavior of Dogecoin compared to other cryptocurrencies and traditional markets. Additionally, there are mentions of other cryptocurrencies such as $ANON, $EIGEN, $PYTH, and $WLD, as well as trading opportunities and rewards on various platforms. Overall, the sentiment towards Dogecoin appears to be optimistic, with users expressing excitement about potential price increases and positive developments in the market.', - data: [ - 8, 8, 9, 7, 5, 12, 9, 8, 11, 5, 7, 14, 7, 23, 5, 1, 7, 7, 3, 8, 6, 4, 13, 18, 2, 6, 10, 4, - 11, 3, 7, 14, 4, 5, 5, 5, 11, 7, 1, 7, 6, 7, 8, 7, 8, 8, 6, 3, 6, 11, 3, 5, 11, 10, 4, - ], - }, - { - label: 'Trading strategies', - topics: 'patience,traders,profits,trading,trade', - description: - 'The key topics discussed in the messages from twitter are:\n- Fear of selling the bottom (JeetPhobia)\n- The importance of being selective and patient in trading\n- Taking profits during a bull run\n- Managing risk in investing\n- The need for deregulation in Europe\n- Advice on trading and portfolio management\n- The difference between professional traders and those learning and testing\n- The impact of emotions on trading decisions\n- Optimizing execution in a volatile market\n- The life of a futures trader and the balance between caution and risk-taking.', - data: [ - 5, 4, 8, 3, 7, 2, 2, 13, 8, 6, 5, 3, 4, 11, 4, 4, 9, 7, 8, 8, 4, 14, 1, 7, 7, 6, 4, 9, 2, - 12, 8, 8, 12, 5, 16, 9, 5, 8, 5, 11, 14, 5, 9, 5, 7, 2, 11, 2, 4, 43, 2, 7, 6, 3, 4, - ], - }, - { - label: 'BNB price', - topics: 'bnb,1000,czbinance,binance,digits', - description: - "The key topic discussed in the messages from twitter is the significant increase in the price of Binance Coin (BNB) to over $1,000. The community members are celebrating this milestone and expressing their confidence in BNB's future growth potential. There is also mention of the Binance ecosystem and BNB blockchain's contributions to this achievement. Additionally, there are references to historical price points of BNB, predictions for future price targets, and comparisons to other cryptocurrencies in the market. Overall, the sentiment towards BNB's performance is positive and optimistic.", - data: [ - 2, 5, 3, 4, 5, 21, 16, 4, 8, 9, 8, 6, 8, 5, 3, 7, 3, 7, 4, 7, 5, 4, 34, 0, 7, 5, 2, 4, 6, 7, - 4, 3, 7, 9, 5, 1, 9, 3, 12, 9, 4, 8, 7, 22, 8, 6, 3, 9, 20, 7, 10, 1, 2, 5, 10, - ], - }, - { - label: 'BTC and the future of finance', - topics: 'bitcoin,bitcoiners,fiat,core,monetary', - description: - 'The messages from twitter suggest that Bitcoin is seen as a solution to currency debasement and a way to protect purchasing power in the long-term. There is a belief that Bitcoin is the apex monetary protocol that humans can participate in, and that it is not taught in colleges for a reason. There are discussions about the government potentially trying to confiscate Bitcoin, and the importance of separating money from state. The messages also touch on the idea of Bitcoin being a spiritual war and going beyond just being digital money. Overall, the sentiment towards Bitcoin in these messages is positive, with a focus on its potential to change the world and protect financial assets.', - data: [ - 5, 5, 11, 11, 9, 13, 14, 8, 4, 3, 6, 3, 8, 5, 6, 3, 6, 8, 6, 2, 3, 8, 10, 6, 11, 8, 2, 4, 5, - 3, 3, 12, 7, 2, 7, 11, 8, 3, 3, 7, 12, 6, 5, 5, 5, 5, 8, 9, 3, 8, 8, 5, 13, 3, 6, - ], - }, - { - label: 'AI', - topics: 'ai,agents,agent,workflows,gtgtgt', - description: - 'The key topics discussed in the messages from twitter include the impact of AI on jobs, the potential for AI to take over various industries, the importance of smarter data for AI applications, the rise of AI agents in the workplace, the potential for AI to improve medical care and legal advice, and the competition in the AI industry. There is also mention of societal expectations regarding AI adoption, the potential for AI to combat climate change, and the role of AI in mainstream content generation. Additionally, there is discussion about the future of tech jobs, the impact of AI on democracy and capitalism, and the importance of values in AI development.', - data: [ - 2, 20, 10, 2, 6, 8, 4, 0, 5, 7, 8, 3, 7, 3, 5, 2, 7, 5, 6, 7, 5, 6, 3, 12, 15, 1, 2, 5, 2, - 6, 6, 5, 9, 0, 7, 5, 10, 6, 1, 7, 5, 6, 2, 9, 5, 5, 6, 6, 7, 9, 8, 10, 3, 8, 6, - ], - }, - { - label: 'Jesus', - topics: 'jesus,god,lord,christ,evil', - description: - "The messages from twitter primarily focus on discussions about God, Jesus Christ, faith, and spirituality. There are mentions of praying for good leadership, the importance of faith in Jesus, and the power of the Holy Spirit. Some messages also touch on the idea of standing firm in one's beliefs and not being swayed by false connections to Christianity. Overall, the messages convey a strong sense of devotion and belief in God and Jesus Christ within the crypto community.", - data: [ - 4, 6, 4, 3, 6, 3, 3, 6, 1, 6, 1, 3, 6, 5, 9, 9, 4, 5, 5, 13, 2, 9, 7, 3, 2, 4, 3, 3, 5, 8, - 5, 3, 9, 3, 7, 5, 15, 4, 7, 1, 5, 7, 6, 2, 9, 2, 7, 10, 4, 6, 7, 1, 7, 10, 9, - ], - }, - { - label: 'Political division', - topics: 'left,violence,politics,right,unity', - description: - 'The messages from twitter reflect a strong polarization between the left and right political ideologies, with a focus on demonizing the left as evil and destructive. There is a belief that the left is responsible for the downfall of society and that the right is morally superior. The discussion also touches on the concept of free speech and the need for accountability in political actions. Overall, the messages highlight a deep divide and animosity between the two sides, with a call for unity against what is perceived as insanity and extremism.', - data: [ - 5, 2, 2, 2, 5, 2, 1, 8, 7, 9, 4, 0, 3, 1, 5, 6, 0, 2, 1, 3, 4, 1, 8, 5, 5, 5, 30, 6, 4, 5, - 1, 4, 5, 4, 13, 5, 5, 3, 5, 5, 13, 4, 9, 6, 6, 7, 2, 6, 3, 1, 11, 6, 9, 7, 5, - ], - }, - { - label: 'Iphone release', - topics: 'iphone,apple,phone,air,ios', - description: - "Based on the messages from twitter, it is evident that there is a lot of discussion about Apple and its products, particularly the iPhone and AirPods. Some key topics include the delay of AirPower, the potential release of a foldable iPhone in 2026, and the evolution of AirPods Pro 3 with features like heart rate monitoring and live translation. There is also mention of Apple's real-time language translation for AirPods Pro 3 and the design of the iPhone 5s. Additionally, there is speculation about Apple's future products, such as minimalist smart glasses and the potential removal of the camera bump on the next iPhone Air. The messages also touch on the need for a new phone and discussions about Android phones for rooting and hacking. Overall, the conversations on twitter highlight the ongoing interest and excitement surrounding Apple and its products within the crypto community.", - data: [ - 5, 8, 13, 4, 5, 4, 3, 2, 1, 5, 5, 2, 6, 1, 5, 4, 3, 2, 10, 2, 3, 2, 5, 3, 3, 3, 6, 6, 6, 5, - 3, 6, 15, 5, 2, 11, 8, 3, 3, 7, 4, 7, 5, 4, 5, 3, 2, 4, 4, 2, 10, 10, 6, 3, 5, - ], - }, - { - label: 'HYPE', - topics: 'hyperliquid,hype,hyperliquids,hyper,hip3', - description: - 'The key topics discussed in the messages from twitter about $HYPE and Hyperliquid include:\n- The announcement of a Hyperliquid killer being launched\n- Speculation about the future price of $HYPE, with targets around $60\n- Partnerships and developments with other companies such as MetaMask, Ripple, BlackRock, and Apollo\n- The potential for a $HYPE ETF from VanEck\n- The availability of data and tracking tools for Hyperliquid\n- The launch of the mHYPE-HYPE pool on Upheavalfi\n- The bullish trend of $HYPE, with resistance levels and potential gains\n- The launch of a meme launchpad on Hyperliquid with bonding curves and yield opportunities\n\nOverall, the messages indicate a high level of excitement and optimism surrounding $HYPE and Hyperliquid, with discussions about price targets, partnerships, and new features on the platform.', - data: [ - 3, 2, 4, 2, 5, 2, 8, 3, 2, 4, 2, 2, 5, 3, 0, 5, 3, 2, 5, 6, 5, 7, 7, 24, 6, 6, 9, 5, 9, 7, - 6, 3, 3, 4, 1, 9, 5, 5, 6, 1, 3, 2, 1, 2, 1, 2, 2, 12, 1, 8, 4, 4, 4, 2, 1, - ], - }, - { - label: 'Football', - topics: 'football,game,fan,fans,games', - description: - 'The key topics discussed in the messages from twitter include:\n1. Discussion about NFL games, teams, and players such as the Packers, Chiefs, Eagles, Texans, Browns, Colts, Commanders, and Steelers.\n2. Criticism and frustration towards certain teams and players, such as the Texans and Chiefs.\n3. Analysis of game strategies and performances, including concerns about defense, offensive line, and game plans.\n4. Speculation about potential Super Bowl contenders, such as the Packers.\n5. Fantasy football discussions and frustrations.\n6. Comparisons between different quarterbacks and coaches, such as Josh Allen and Kevin.\n7. Critique of media coverage and propaganda in sports reporting.\n8. Calls for changes in coaching staff or game plans based on team performances.', - data: [ - 1, 1, 6, 3, 3, 4, 1, 2, 3, 4, 0, 2, 8, 5, 3, 11, 7, 5, 10, 7, 5, 6, 5, 3, 2, 9, 2, 5, 6, 4, - 2, 3, 3, 3, 4, 7, 3, 2, 2, 7, 3, 6, 6, 0, 4, 3, 5, 5, 3, 7, 3, 6, 6, 4, 8, - ], - }, - { - label: 'FOMC', - topics: 'fomc,meeting,volatility,decision,tomorrow', - description: - 'The messages from twitter suggest that there is a lot of anticipation and speculation surrounding the upcoming FOMC meeting. Traders are preparing for potential market volatility and are discussing different strategies for trading before and after the announcement. Some are advising caution and staying on the sidelines, while others are confident in their trading plans. Overall, there is a mix of excitement and nervousness about the potential impact of the FOMC meeting on the crypto market.', - data: [ - 3, 1, 1, 0, 6, 3, 2, 1, 2, 2, 2, 18, 7, 4, 1, 5, 10, 8, 3, 13, 5, 3, 5, 6, 1, 4, 3, 2, 3, 3, - 14, 5, 2, 6, 4, 1, 6, 1, 4, 4, 1, 9, 4, 4, 0, 1, 1, 1, 15, 0, 0, 4, 5, 3, 0, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,piece,pixel', - description: - 'The key topics discussed in the messages from twitter are about supporting artists by buying tokens, bidding on their art, and the importance of recognizing the creation date of artwork. The messages also touch on the democratization of art and the impact of technology on the art industry. Overall, the messages emphasize the value of authenticity and the need for artists to be paid for their work.', - data: [ - 3, 7, 32, 2, 3, 5, 4, 1, 2, 3, 7, 1, 0, 6, 2, 5, 1, 2, 3, 2, 10, 3, 2, 4, 0, 2, 1, 5, 0, 4, - 2, 4, 7, 3, 6, 7, 1, 1, 1, 7, 2, 4, 5, 2, 7, 1, 4, 4, 5, 2, 1, 5, 4, 5, 2, - ], - }, - { - label: 'Gold price', - topics: 'gold,silver,platinum,prices,4000', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the rising price of gold, the relationship between gold and Bitcoin, predictions for gold reaching new all-time highs, and the impact of Federal Reserve policies on gold prices. There is also discussion about the potential for gold to reach $4,000 per ounce and the role of tokenized gold like PAX Gold as a safe-haven asset. Additionally, there are mentions of silver prices reaching a 14-year high and the potential for silver, platinum, and palladium to also see significant price increases. Overall, the focus is on the performance of precious metals in relation to economic uncertainty and market volatility.', - data: [ - 2, 4, 4, 2, 1, 4, 4, 5, 2, 3, 2, 3, 3, 1, 2, 2, 2, 0, 0, 19, 2, 3, 12, 4, 0, 5, 6, 4, 3, 2, - 1, 6, 4, 2, 1, 7, 12, 0, 10, 3, 3, 4, 8, 2, 2, 8, 4, 1, 5, 5, 2, 6, 4, 1, 5, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,tokenization,tokenized,realworld', - description: - 'The key topic discussed in the messages from twitter is the rapid growth of Real World Assets (RWAs) in the crypto industry, particularly focusing on the Aave Horizon. The messages highlight the increasing adoption of RWAs, the potential for bringing in millions of users onchain, the success of RWAs in Singapore with proper regulatory frameworks, and the infrastructure being created for tokenization in traditional finance. Additionally, there are mentions of specific projects and tokens related to RWAs, such as Centrifuge, Raydium, and Figure. The messages also touch upon upcoming news related to RWAs and the future potential of tokenized assets in the financial market. Overall, the sentiment is positive towards the growth and potential of RWAs in the crypto industry.', - data: [ - 3, 2, 5, 4, 5, 3, 4, 1, 1, 7, 1, 1, 2, 3, 5, 0, 3, 1, 6, 3, 3, 2, 2, 5, 7, 6, 9, 1, 3, 4, 4, - 4, 6, 6, 5, 6, 4, 4, 5, 6, 4, 1, 3, 3, 1, 2, 5, 4, 14, 3, 5, 3, 4, 3, 1, - ], - }, - { - label: 'Base token', - topics: 'base,exploring,token,coinbase,network', - description: - "The messages from twitter suggest that there is a lot of excitement and speculation surrounding the potential launch of a network token by Base. Both Brian Armstrong and Jesse Pollak have confirmed that Base is exploring the idea of launching a native token, although there are no definitive plans yet. The community seems to be eagerly anticipating more details about the $BASE token and its potential impact on the ecosystem. Some are even speculating about the token's potential as a dividend-generating asset for Coinbase shareholders. Overall, the sentiment appears to be positive, with many users expressing excitement and anticipation for the potential launch of the Base network token.", - data: [ - 2, 2, 6, 12, 4, 2, 2, 2, 3, 6, 5, 1, 3, 2, 0, 17, 5, 0, 1, 1, 4, 1, 3, 2, 3, 1, 15, 3, 1, 2, - 4, 0, 7, 6, 1, 4, 5, 3, 5, 1, 1, 7, 4, 1, 2, 3, 3, 4, 15, 3, 4, 1, 3, 2, 1, - ], - }, - { - label: 'Pokemon cards', - topics: 'packs,pokemon,cards,vibedotmarket,card', - description: - 'The key topics currently discussed in the crypto industry on social media include the rising popularity and value of Pokemon cards, the excitement surrounding new releases and collaborations such as Yugioh x @dotSWOOSH, the nostalgia and hype surrounding classic Pokemon characters like Charizards and Mew, as well as the potential for valuable finds in card packs and the growing market for rare and limited edition cards. There is also discussion about the utility and potential market cap growth of trading card games like POKEBASE, as well as the potential for cryptocurrency investments in the space. Additionally, there is anticipation for upcoming livestream events and pack openings, as well as community engagement and support for various projects and tokens like $VLADY.', - data: [ - 7, 0, 4, 2, 0, 3, 1, 17, 6, 4, 2, 0, 6, 3, 3, 1, 1, 0, 0, 4, 7, 1, 1, 3, 2, 1, 1, 4, 6, 7, - 4, 1, 8, 8, 11, 8, 4, 6, 5, 2, 4, 3, 0, 5, 7, 2, 2, 5, 4, 1, 3, 3, 2, 1, 1, - ], - }, - { - label: 'APE and BAYC', - topics: 'ape,apecoin,raid,apes,wallchainxyz', - description: - "ApeCoin is gaining significant attention and popularity after the launch of the @ApeChainHUB RAID on Solana. The expansion of the Ape ecosystem is being praised for its borderless nature and partnerships with @AEON_Community. Project RAID is seen as a game-changer for bringing ApeCoin to Solana and hyperfinancializing it before a major pump. The integration of ApeCoin on Solana is seen as a positive move, offering faster and cheaper swaps, deeper liquidity, and new DeFi integrations. The R.A.I.D initiative is highlighted as a catalyst for ApeCoin's growth and success in the BAYC ecosystem. The community is excited about the possibilities and opportunities that ApeCoin on Solana presents, with various strategies and tools being discussed for maximizing returns and engagement. Overall, ApeCoin's presence on Solana is seen as a significant step towards its potential as a top 20 token in the future.", - data: [ - 4, 5, 12, 3, 3, 2, 3, 1, 0, 4, 4, 1, 3, 7, 4, 10, 2, 4, 3, 6, 5, 4, 4, 3, 1, 6, 6, 5, 5, 4, - 6, 2, 9, 4, 2, 0, 5, 3, 1, 2, 0, 6, 2, 3, 3, 4, 3, 0, 2, 2, 2, 2, 2, 3, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-9.json b/priv/repo/major_topics_seed/data-9.json deleted file mode 100644 index 1905bde5a0..0000000000 --- a/priv/repo/major_topics_seed/data-9.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["29.02.24","01.03.24","01.03.24","01.03.24","01.03.24","01.03.24","01.03.24","01.03.24","02.03.24","02.03.24","02.03.24","02.03.24","02.03.24","02.03.24","02.03.24","02.03.24","03.03.24","03.03.24","03.03.24","03.03.24","03.03.24","03.03.24","03.03.24","03.03.24","04.03.24","04.03.24","04.03.24","04.03.24","04.03.24","04.03.24","04.03.24","04.03.24","05.03.24","05.03.24","05.03.24","05.03.24","05.03.24","05.03.24","05.03.24","05.03.24","06.03.24","06.03.24","06.03.24","06.03.24","06.03.24","06.03.24","06.03.24","06.03.24","07.03.24","07.03.24","07.03.24","07.03.24","07.03.24","07.03.24","07.03.24"],"datasets":[{"label":"AI","topics":"ai,training,intelligence,nvidia,artificial","description":"The messages from Twitter discuss various topics related to AI and crypto industry. Some key words mentioned include AI advancements, legal 'safe harbor' for researchers, journalists, and artists to evaluate AI tools, onchain AI, AI tokens, democratizing coding with AIGNE, crypto enabling AI applications, XG's grl gvng using pattern matching, $LAI token, $SCALE distribution, origin of life via auto-catalytic networks, parameters and tokens in AI models, Grass AI, and AI DRAGON on ETH. The messages also mention specific tokens like $VAI, $FET, $AGIX, and $OCEAN as top AI tokens to watch in 2024. The overall sentiment seems positive towards the intersection of AI and crypto technologies.","data":[42,80,15,16,0,1,2,8,2,19,19,13,14,6,9,9,7,12,21,5,17,4,12,7,11,20,15,16,8,12,14,8,7,9,16,16,10,10,22,18,9,6,12,9,10,8,5,12,17,9,9,14,8,8,10]},{"label":"PEPE","topics":"pepe,frens,69,pepenals,mc","description":"Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community include:\n\n1. $PEPE: The cryptocurrency $PEPE is gaining attention and popularity within the community. Users are excited about its rise in value and potential for growth. There is also a mention of trading $PEPE on different platforms like @okx and @binance.\n\n2. Pepe the Frog: The meme of Pepe the Frog is being used to represent $PEPE cryptocurrency. Users are discussing the meme's connection to the crypto world and its potential impact on the market.\n\n3. Memecoin Madness: The concept of memecoins, such as $PEPE, is being highlighted as a trend in the crypto industry. Users are interested in the origins and reasons behind the popularity of memecoins like $PEPE.\n\n4. Trading Advice: There is a cautionary message about greed in trading $PEPE for profit. Users are advised to relax, enjoy the ride, and not make impulsive decisions when trading cryptocurrencies.\n\nOverall, the discussion on Twitter revolves around the excitement and potential of $PEPE cryptocurrency, its connection to the Pepe the Frog meme, the rise of memecoins in the industry, and trading advice for users.","data":[8,3,5,11,0,0,1,3,12,6,4,5,9,7,6,8,3,2,13,14,6,8,5,14,17,6,2,4,7,7,4,8,13,8,3,5,110,5,7,6,3,7,4,10,3,4,6,6,11,11,5,4,8,7,6]},{"label":"DOGE","topics":"doge,dogecoin,elon,cents,moon","description":"Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto community include the rivalry between $SHIB and $DOGE, with speculation on whether $SHIB will flip $DOGE. There is also discussion about the high flow of $DOGE and potential long opportunities, as well as Elon Musk's interest in $DOGE. Additionally, there are mentions of $egld losing its rank, a slumdog becoming a millionaire through $DOGE, and skepticism about the trading activity surrounding Dogecoin. The extraordinary rally of Dogecoin and its meteoric rise in social sentiment are also highlighted, along with warnings about potential risks for traders. Overall, the community seems to be closely monitoring the developments and price movements of these cryptocurrencies.","data":[8,5,1,3,2,0,1,3,6,5,8,2,8,4,158,21,1,4,7,6,8,9,6,4,4,6,2,8,12,8,0,9,2,5,5,6,2,2,5,9,6,6,6,7,5,4,9,7,7,2,7,7,3,11,5]},{"label":"Art","topics":"art,artists,artist,piece,artwork","description":"The key topics discussed in the messages from Twitter related to the crypto industry and art include:\n- Beeple art as a top signal\n- Discussion on the need for centralized platforms for better curation in the art space\n- The fascination with digital art and its ability to modulate reality\n- Accessibility of art collections like the Digibyte elf society DigiAssets\n- AI collections and their intentional use in art\n- High-end gen art collection on bitcoin, Flora Forms\n- 3D photography exhibition at the Sweet Lorraine Gallery\n- Bitcorn/bitcoin art and generative art\n- Tokenized IRL murals collection by EfdotStudio\n- Collaborative AI art collection at TheMetaScapes\n\nOverall, the messages highlight the intersection of art and technology in the crypto industry, with a focus on digital art, AI collections, and tokenized art collections.","data":[7,7,77,3,2,0,2,1,4,10,8,6,11,3,9,6,2,7,13,6,7,1,11,3,4,10,2,3,3,3,10,3,6,11,6,11,11,5,7,9,9,6,4,5,8,5,7,4,9,3,5,5,12,4,6]},{"label":"Solana","topics":"sol,solana,140,ca,jup","description":"The key topics currently being discussed in the crypto community on Twitter include:\n1. Solana ($SOL) and Avalanche ($AVAX) being bought on the dip for potential profits.\n2. Solana's AI technology and its impact on the ecosystem.\n3. The rise of Solana-based meme coins like \"Jeo Boden\" and \"Danold Tromp\".\n4. Speculation and trading strategies involving Solana and other cryptocurrencies like Bitcoin ($BTC) and Polkadot ($DOT).\n5. Solana's record trading volume on decentralized exchanges.\n6. Solana's price rally and potential for further growth.\n7. Analysis of market behavior and trading patterns related to Solana.\n8. Comparison between Solana and Elrond ($egld) in terms of market movement.\n9. QuickSwap's dominance in decentralized exchange volume on Polygon.\n10. General sentiment and trading strategies within the crypto community.","data":[6,4,5,0,1,2,4,3,10,11,4,3,5,6,5,6,6,5,4,11,7,7,2,3,9,5,2,5,8,9,5,11,9,7,2,3,5,6,20,11,7,9,9,6,36,2,8,3,5,8,7,3,5,4,6]},{"label":"SHIB","topics":"inu,shiba,shib,shibarium,shibarmy","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- The rise of Shiba Inu (#SHIB) and its battle for the #9 spot in the market\n- Shiba Inu's dominance over other cryptocurrencies like XRP and Solana\n- The launch of Shiba Inu's Shib Name Service and its impact on price volatility\n- The burning of over 643 million Shiba Inu tokens in February 2024\n- The trading volume of Shiba Inu surpassing other popular cryptocurrencies like DOGE, XRP, and ADA\n- The potential growth and value of Shiba Inu compared to other cryptocurrencies like PEPE, PNDC, PORK, STC, and A4M\n- The anticipation of Shiba Inu reaching new heights and potentially developing a new Re-Accumulation Range\n- The interest in new meme coins like Shiba Budz (BUDZ) and Pepecoin (PEPE) with gaming and DeFi integration\n- Concerns about whale domination in the supplies of Shiba Inu, Baby Doge Coin, and other meme coins\n\nOverall, the sentiment seems to be positive towards Shiba Inu and its potential for growth in the crypto market.","data":[5,6,3,2,1,0,3,8,6,4,11,3,3,1,10,3,1,11,3,3,3,0,5,2,4,1,80,12,2,1,3,3,5,3,5,4,1,3,4,1,2,7,6,75,2,2,5,2,4,1,4,2,1,5,1]},{"label":"Blackrock","topics":"blackrock,inflow,outflow,gbtc,net","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Inflows in Bitcoin ETFs: There has been a significant increase in inflows in Bitcoin ETFs, with BlackRock's Chainlink ETF becoming the fastest ever to reach $1 billion in total assets. There is speculation about whether we will see $1 billion in inflows in the near future.\n\n2. BlackRock's involvement in the crypto industry: BlackRock's Bitcoin ETF has seen massive inflows, counteracting outflows from other funds like GBTC. There is anticipation and excitement surrounding BlackRock's future moves in the crypto space.\n\n3. Institutional confidence in Bitcoin: Despite outflows from certain funds, there is a general trend of institutional confidence in Bitcoin, as evidenced by record inflows in various ETFs.\n\n4. Comparison with traditional assets: The speed at which Bitcoin ETFs are accumulating assets is being compared to traditional assets like gold, highlighting the growing interest in cryptocurrencies among institutional investors.\n\n5. Speculation on future trends: There is speculation about the impact of ETFs on the price and adoption of cryptocurrencies like Bitcoin and Ethereum, with discussions about potential future trends and developments in the market.\n\nOverall, the discussions on social media reflect a mix of excitement, speculation, and analysis of the current trends and developments in the crypto industry, particularly in relation to institutional involvement and the impact of ETFs.","data":[8,2,1,4,21,2,58,4,5,1,2,1,2,7,1,1,39,8,4,1,8,4,4,3,12,17,2,6,0,0,5,2,2,5,4,8,0,5,3,5,3,2,5,4,2,10,2,1,2,6,3,6,1,5,9]},{"label":"BTC prices","topics":"69k,65000,67000,64k,69000","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin reaching $70,000 by the end of the week\n- Bitcoin hitting $65,000 USD and reaching 420M for $IBIT\n- Speculation about Bitcoin reaching 69,420 and 63,156 American dollars\n- Normies being silent about Bitcoin's climb\n- Speculation about Bitcoin hitting $100,000 in AUD\n- Bitcoin breaking ATH and hitting $69,000\n- Bitcoin breakout attempt at $69,000\n- Predictions about Bitcoin hitting 69k and then dumping before repeating the cycle\n- Holding onto Bitcoin despite fluctuations in price\n- Easy return to $69,000 for Bitcoin\n- Excitement about Bitcoin's price and potential gains\n- Live updates on Bitcoin's pump to $67,000 and altcoins' returns.","data":[1,2,3,9,32,22,20,9,3,3,7,1,3,3,3,8,0,0,4,4,8,5,2,12,2,6,1,0,7,5,4,3,5,4,3,5,2,7,4,7,2,2,7,4,10,2,2,4,3,5,3,3,3,4,1]},{"label":"ATH","topics":"ath,aths,halving,new,breaks","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin hitting a new all-time high (ATH)\n- Speculation about Bitcoin reaching $100K before the halving\n- Debate about the significance of breaking ATHs early\n- Potential release of a Bitcoin fee estimation app\n- Halving event and its impact on Bitcoin mining\n- RIP halving narrative as Bitcoin breaks ATH before the halving\n- Analysis of why this round of ATHs is different\n- Bitcoin featured on CoinPasar with predictions of breaking ATH before the halving\n\nOverall, the sentiment seems to be optimistic and bullish on Bitcoin's price performance, with discussions focusing on the potential for further price increases and the impact of key events like the halving.","data":[1,0,16,3,13,11,8,14,4,2,6,6,3,1,1,2,1,2,7,2,10,4,4,20,3,6,3,1,5,0,1,4,2,10,6,4,2,5,3,9,8,6,1,3,4,1,6,3,11,7,1,2,4,6,4]},{"label":"Microstrategy","topics":"microstrategy,mstr,notes,saylor,600","description":"The key topics currently discussed in the crypto industry on Twitter include:\n1. Michael Saylor hailing the success of new Bitcoin ETFs\n2. MicroStrategy offering $600 million in convertible notes to buy more Bitcoin\n3. MicroStrategy issuing another $600 million in convertible notes for Bitcoin acquisition\n4. Minting NFTs on Solana using USDC in March\n5. Discussion on execution risk in the market and sustainability\n6. MicroStrategy increasing latest stock sale to $700 million for Bitcoin purchases\n7. Comparison of MicroStrategy's stock performance with NVIDIA\n8. MicroStrategy's shares surging 23% overnight\n9. Super Micro joining S&P 500 after stock price soars due to AI boom\n10. Speculation on MicroStrategy becoming the most valuable company in the world due to its Bitcoin strategy\n\nOverall, the discussions on Twitter revolve around MicroStrategy's actions in the crypto market, particularly in relation to Bitcoin investments and stock performance. Michael Saylor's influence and strategies are also a prominent topic of conversation.","data":[5,5,1,1,2,3,3,6,5,4,0,4,5,2,0,2,2,3,2,4,5,2,3,5,5,5,4,6,0,2,5,1,37,4,9,4,1,4,2,13,4,0,10,6,6,5,2,0,0,0,3,5,2,0,3]},{"label":"Coinbase","topics":"join,ama,spaces,chat,pm","description":"The messages from Twitter are discussing various upcoming events and discussions related to the crypto industry. Some key topics mentioned include live round table discussions on Discord, exhibitions, NFTs, digital asset regulation in Europe, Golem Network shaping the future of computing, joining the Killaverse community, PancakeTalks featuring Arbitrum Network, AMA with CEO of CeDeFiAI, and Office Hours with SuperRare discussing challenges and opportunities for artists in Web3. Additionally, there are reminders to tune in to various events and meetups with industry experts and partners. Overall, the crypto community on Twitter seems to be actively engaged in discussions and events related to the industry.","data":[2,1,3,1,0,0,0,0,6,2,10,3,0,6,3,3,0,2,3,7,1,5,3,3,27,1,38,3,3,1,0,0,15,2,1,2,0,2,0,1,7,0,0,8,5,7,2,1,0,8,2,0,4,6,1]},{"label":"GameFi","topics":"gaming,games,game,immutable,web3","description":"The key topics currently discussed in the crypto industry on social media include:\n- GameFi\n- NFT\n- Web3 gaming\n- Indie game picks\n- Play2Earn games\n- Gaming DAOs\n- Tokenomics\n- Mobile gaming\n\nThese topics are being widely discussed and analyzed by the crypto community on platforms like Twitter.","data":[3,1,0,5,0,0,0,2,2,4,6,3,3,1,4,3,2,2,1,7,30,7,4,3,2,7,5,5,4,3,3,0,3,3,4,3,4,6,0,2,3,1,4,0,3,2,1,1,0,0,2,2,5,2,6]},{"label":"DEX","topics":"dex,decentralized,pizza,distributed,ecosystem","description":"The key topics currently being discussed in the crypto industry on Twitter include:\n- Initial Exchange Offering for REXX Coin\n- REXX Coin's ecosystem and decentralized ecosystem reshaping industries through blockchain technology\n- Acquiring REXX Coin through Initial Coin Offering (ICO) and listings on various exchanges\n- The native Rexx Ecosystem enabling users to buy, trade, and monetize in-game assets securely\n- Seamless transactions and access to a growing network of merchants worldwide with REXX Coin\n- XYO as the supply chain for data and flawless data requiring XYO\n- Launch of Rexx Coin as a revolutionary digital currency with lightning-fast transactions and low fees\n- Milestone achievement of 3000 users on RoseonX with a giveaway opportunity\n- Canonical wstETH brought to Cosmos by @osmosiszone, @neutron_org, and @axelarnetwork with incentives allocated towards wstETH\n- Liquidity farming with SmarDex on multiple networks and earning thousands of SDEX tokens\n- SRX trading competition live on LCX with a chance to win 5000 SRX tokens\n\nOverall, the discussions on Twitter revolve around new coin offerings, ecosystem development, trading competitions, milestone achievements, and opportunities for earning tokens through various means in the crypto industry.","data":[2,3,0,4,0,0,1,2,1,3,4,2,5,4,9,7,0,4,0,2,1,0,1,0,1,4,12,5,4,3,2,4,1,7,3,4,2,7,5,4,2,15,6,1,1,5,3,2,3,1,3,4,2,5,3]},{"label":"DeFi","topics":"defi,lending,v3,joe,liquidity","description":"The key topics currently discussed in the crypto industry on social media platforms include self custody, platform composability, transparency, DeFi marketing strategies, partnerships in the DeFi space, growth of DeFi ecosystems, collaborations between companies, new tools and technologies in DeFi, financial market data usage, decentralized finance strategies, liquidity pools, order execution protocols, safety tips in DeFi, tracking of different DeFi projects, and discussions on DeFi across different chains. The community is also talking about specific projects such as Ankr, SHIB, XRP, Bitcoin DeFi, dHEDGE, SUI ecosystem, Scallop_io, Nomura's subsidiary Laser Digital, Pyth Network, Volt Finance, Bancor, Graphene, and Fuse. Overall, the conversations revolve around innovation, growth, partnerships, and advancements in the DeFi space.","data":[3,1,2,1,1,0,2,2,0,3,0,3,1,12,6,3,1,5,2,3,0,3,1,3,1,4,7,6,3,4,2,1,3,1,3,1,2,3,5,5,2,2,4,0,3,4,2,1,1,5,4,6,1,2,1]},{"label":"Ordinals","topics":"ordinals,ordinal,pepenals,nfts,collection","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include Bitcoin ordinals, NFTs, Litecoin, Ethereum, BRC-20 tokens, and the impact of ordinals on transaction fees and network security. There is also a focus on the potential for ordinals to continue increasing in value, the high costs associated with minting and inscribing art on platforms like MagicEden, and the unique hand-drawn art collections being created on Litecoin. Additionally, there are discussions about the potential risks and drawbacks of ordinals, such as increased transaction fees and security vulnerabilities. The community seems to be actively engaged and enthusiastic about the developments in the crypto industry, particularly in relation to Bitcoin ordinals and NFTs.","data":[1,2,3,0,0,6,0,4,1,2,1,3,1,1,3,2,1,2,2,2,5,3,2,3,4,3,0,2,1,1,5,2,2,1,3,30,4,1,2,4,3,0,4,0,0,1,2,1,5,1,2,3,1,1,3]},{"label":"WIF","topics":"wif,hat,dog,yo,listing","description":"Based on the messages from Twitter, it is evident that the cryptocurrency community is actively discussing meme coins such as Dogwifhat (WIF) and Frogwifhat (FWIF). These coins have experienced significant price rallies and are being listed on popular exchanges like Binance. There are also mentions of Wintermute, a market maker involved in questionable activities, and predictions of certain coins potentially 25x-ing by the end of 2024. Additionally, there is excitement around the listing of Catwifhat (CWIF) on LBank. Overall, the crypto community seems to be engaged in trading and discussing various meme coins and their potential for growth.","data":[0,4,1,3,0,0,2,3,2,2,1,0,0,2,5,2,0,2,5,4,3,1,1,2,1,0,2,1,10,4,1,7,2,1,3,4,2,0,6,1,3,2,2,1,1,1,2,3,1,0,5,1,1,8,1]},{"label":"Halving","topics":"days,halving,left,49,bitcoinhalving","description":"The key topic currently being discussed on Twitter in the crypto industry is the upcoming Bitcoin halving. Messages indicate that there are approximately 40-50 days left until the halving event, with a countdown of blocks left to be mined. There is excitement and anticipation surrounding the event, with some users predicting a new all-time high for Bitcoin. Additionally, there is mention of new mining buildings being set up and developments in the crypto gaming space. Overall, the sentiment seems positive and optimistic within the crypto community on Twitter.","data":[2,0,1,0,15,2,2,0,0,0,0,5,1,46,0,0,3,1,1,2,1,1,3,1,1,0,1,1,2,0,0,1,4,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,1,0,1,0,2,1]},{"label":"SEC","topics":"sec,court,secs,securities,lawsuit","description":"The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Coinbase's legal battle with the SEC over default judgment rulings in an ongoing lawsuit.\n2. Eight state attorney generals pushing back against SEC enforcement actions involving crypto exchanges.\n3. Ripple's Chief Legal Officer calling out the SEC for misleading court submissions.\n4. Terraform Labs defending the SEC's objection to retain a top law firm.\n5. The impact of the SEC's lawsuit against Binance last June on the cryptocurrency exchange.\n6. The Attorney Generals of 8 U.S. States siding with Kraken against the SEC's enforcement actions.\n7. The implications of recent SEC rulings on crypto regulations and enforcement actions.\n8. The significance of default judgments in insider trading cases involving crypto exchanges.\n9. The challenges of limited uplink bandwidth for SEC filings and image submissions.\n10. The comparison of SEC filings in the 2000s to the present day and the impact on historical data ingest.","data":[2,0,5,0,0,0,3,0,0,4,8,4,7,0,3,0,2,8,2,2,1,1,2,0,2,2,1,6,3,0,0,0,0,0,1,1,0,0,0,0,4,1,2,1,1,11,1,1,1,2,0,2,0,2,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-9.ts b/priv/repo/major_topics_seed/data-9.ts deleted file mode 100644 index a4bc9e32a7..0000000000 --- a/priv/repo/major_topics_seed/data-9.ts +++ /dev/null @@ -1,242 +0,0 @@ -export const NARRATIVES = { - labels: [ - '29.02.24', - '01.03.24', - '01.03.24', - '01.03.24', - '01.03.24', - '01.03.24', - '01.03.24', - '01.03.24', - '02.03.24', - '02.03.24', - '02.03.24', - '02.03.24', - '02.03.24', - '02.03.24', - '02.03.24', - '02.03.24', - '03.03.24', - '03.03.24', - '03.03.24', - '03.03.24', - '03.03.24', - '03.03.24', - '03.03.24', - '03.03.24', - '04.03.24', - '04.03.24', - '04.03.24', - '04.03.24', - '04.03.24', - '04.03.24', - '04.03.24', - '04.03.24', - '05.03.24', - '05.03.24', - '05.03.24', - '05.03.24', - '05.03.24', - '05.03.24', - '05.03.24', - '05.03.24', - '06.03.24', - '06.03.24', - '06.03.24', - '06.03.24', - '06.03.24', - '06.03.24', - '06.03.24', - '06.03.24', - '07.03.24', - '07.03.24', - '07.03.24', - '07.03.24', - '07.03.24', - '07.03.24', - '07.03.24', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,training,intelligence,nvidia,artificial', - description: - "The messages from Twitter discuss various topics related to AI and crypto industry. Some key words mentioned include AI advancements, legal 'safe harbor' for researchers, journalists, and artists to evaluate AI tools, onchain AI, AI tokens, democratizing coding with AIGNE, crypto enabling AI applications, XG's grl gvng using pattern matching, $LAI token, $SCALE distribution, origin of life via auto-catalytic networks, parameters and tokens in AI models, Grass AI, and AI DRAGON on ETH. The messages also mention specific tokens like $VAI, $FET, $AGIX, and $OCEAN as top AI tokens to watch in 2024. The overall sentiment seems positive towards the intersection of AI and crypto technologies.", - data: [ - 42, 80, 15, 16, 0, 1, 2, 8, 2, 19, 19, 13, 14, 6, 9, 9, 7, 12, 21, 5, 17, 4, 12, 7, 11, 20, - 15, 16, 8, 12, 14, 8, 7, 9, 16, 16, 10, 10, 22, 18, 9, 6, 12, 9, 10, 8, 5, 12, 17, 9, 9, 14, - 8, 8, 10, - ], - }, - { - label: 'PEPE', - topics: 'pepe,frens,69,pepenals,mc', - description: - "Based on the messages from Twitter, it is evident that the key topics being discussed in the crypto community include:\n\n1. $PEPE: The cryptocurrency $PEPE is gaining attention and popularity within the community. Users are excited about its rise in value and potential for growth. There is also a mention of trading $PEPE on different platforms like @okx and @binance.\n\n2. Pepe the Frog: The meme of Pepe the Frog is being used to represent $PEPE cryptocurrency. Users are discussing the meme's connection to the crypto world and its potential impact on the market.\n\n3. Memecoin Madness: The concept of memecoins, such as $PEPE, is being highlighted as a trend in the crypto industry. Users are interested in the origins and reasons behind the popularity of memecoins like $PEPE.\n\n4. Trading Advice: There is a cautionary message about greed in trading $PEPE for profit. Users are advised to relax, enjoy the ride, and not make impulsive decisions when trading cryptocurrencies.\n\nOverall, the discussion on Twitter revolves around the excitement and potential of $PEPE cryptocurrency, its connection to the Pepe the Frog meme, the rise of memecoins in the industry, and trading advice for users.", - data: [ - 8, 3, 5, 11, 0, 0, 1, 3, 12, 6, 4, 5, 9, 7, 6, 8, 3, 2, 13, 14, 6, 8, 5, 14, 17, 6, 2, 4, 7, - 7, 4, 8, 13, 8, 3, 5, 110, 5, 7, 6, 3, 7, 4, 10, 3, 4, 6, 6, 11, 11, 5, 4, 8, 7, 6, - ], - }, - { - label: 'DOGE', - topics: 'doge,dogecoin,elon,cents,moon', - description: - "Based on the messages from Twitter, it seems that the key topics currently being discussed in the crypto community include the rivalry between $SHIB and $DOGE, with speculation on whether $SHIB will flip $DOGE. There is also discussion about the high flow of $DOGE and potential long opportunities, as well as Elon Musk's interest in $DOGE. Additionally, there are mentions of $egld losing its rank, a slumdog becoming a millionaire through $DOGE, and skepticism about the trading activity surrounding Dogecoin. The extraordinary rally of Dogecoin and its meteoric rise in social sentiment are also highlighted, along with warnings about potential risks for traders. Overall, the community seems to be closely monitoring the developments and price movements of these cryptocurrencies.", - data: [ - 8, 5, 1, 3, 2, 0, 1, 3, 6, 5, 8, 2, 8, 4, 158, 21, 1, 4, 7, 6, 8, 9, 6, 4, 4, 6, 2, 8, 12, - 8, 0, 9, 2, 5, 5, 6, 2, 2, 5, 9, 6, 6, 6, 7, 5, 4, 9, 7, 7, 2, 7, 7, 3, 11, 5, - ], - }, - { - label: 'Art', - topics: 'art,artists,artist,piece,artwork', - description: - 'The key topics discussed in the messages from Twitter related to the crypto industry and art include:\n- Beeple art as a top signal\n- Discussion on the need for centralized platforms for better curation in the art space\n- The fascination with digital art and its ability to modulate reality\n- Accessibility of art collections like the Digibyte elf society DigiAssets\n- AI collections and their intentional use in art\n- High-end gen art collection on bitcoin, Flora Forms\n- 3D photography exhibition at the Sweet Lorraine Gallery\n- Bitcorn/bitcoin art and generative art\n- Tokenized IRL murals collection by EfdotStudio\n- Collaborative AI art collection at TheMetaScapes\n\nOverall, the messages highlight the intersection of art and technology in the crypto industry, with a focus on digital art, AI collections, and tokenized art collections.', - data: [ - 7, 7, 77, 3, 2, 0, 2, 1, 4, 10, 8, 6, 11, 3, 9, 6, 2, 7, 13, 6, 7, 1, 11, 3, 4, 10, 2, 3, 3, - 3, 10, 3, 6, 11, 6, 11, 11, 5, 7, 9, 9, 6, 4, 5, 8, 5, 7, 4, 9, 3, 5, 5, 12, 4, 6, - ], - }, - { - label: 'Solana', - topics: 'sol,solana,140,ca,jup', - description: - 'The key topics currently being discussed in the crypto community on Twitter include:\n1. Solana ($SOL) and Avalanche ($AVAX) being bought on the dip for potential profits.\n2. Solana\'s AI technology and its impact on the ecosystem.\n3. The rise of Solana-based meme coins like "Jeo Boden" and "Danold Tromp".\n4. Speculation and trading strategies involving Solana and other cryptocurrencies like Bitcoin ($BTC) and Polkadot ($DOT).\n5. Solana\'s record trading volume on decentralized exchanges.\n6. Solana\'s price rally and potential for further growth.\n7. Analysis of market behavior and trading patterns related to Solana.\n8. Comparison between Solana and Elrond ($egld) in terms of market movement.\n9. QuickSwap\'s dominance in decentralized exchange volume on Polygon.\n10. General sentiment and trading strategies within the crypto community.', - data: [ - 6, 4, 5, 0, 1, 2, 4, 3, 10, 11, 4, 3, 5, 6, 5, 6, 6, 5, 4, 11, 7, 7, 2, 3, 9, 5, 2, 5, 8, 9, - 5, 11, 9, 7, 2, 3, 5, 6, 20, 11, 7, 9, 9, 6, 36, 2, 8, 3, 5, 8, 7, 3, 5, 4, 6, - ], - }, - { - label: 'SHIB', - topics: 'inu,shiba,shib,shibarium,shibarmy', - description: - "The key topics currently discussed in the crypto industry on social media platforms like Twitter include:\n- The rise of Shiba Inu (#SHIB) and its battle for the #9 spot in the market\n- Shiba Inu's dominance over other cryptocurrencies like XRP and Solana\n- The launch of Shiba Inu's Shib Name Service and its impact on price volatility\n- The burning of over 643 million Shiba Inu tokens in February 2024\n- The trading volume of Shiba Inu surpassing other popular cryptocurrencies like DOGE, XRP, and ADA\n- The potential growth and value of Shiba Inu compared to other cryptocurrencies like PEPE, PNDC, PORK, STC, and A4M\n- The anticipation of Shiba Inu reaching new heights and potentially developing a new Re-Accumulation Range\n- The interest in new meme coins like Shiba Budz (BUDZ) and Pepecoin (PEPE) with gaming and DeFi integration\n- Concerns about whale domination in the supplies of Shiba Inu, Baby Doge Coin, and other meme coins\n\nOverall, the sentiment seems to be positive towards Shiba Inu and its potential for growth in the crypto market.", - data: [ - 5, 6, 3, 2, 1, 0, 3, 8, 6, 4, 11, 3, 3, 1, 10, 3, 1, 11, 3, 3, 3, 0, 5, 2, 4, 1, 80, 12, 2, - 1, 3, 3, 5, 3, 5, 4, 1, 3, 4, 1, 2, 7, 6, 75, 2, 2, 5, 2, 4, 1, 4, 2, 1, 5, 1, - ], - }, - { - label: 'Blackrock', - topics: 'blackrock,inflow,outflow,gbtc,net', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n\n1. Inflows in Bitcoin ETFs: There has been a significant increase in inflows in Bitcoin ETFs, with BlackRock's Chainlink ETF becoming the fastest ever to reach $1 billion in total assets. There is speculation about whether we will see $1 billion in inflows in the near future.\n\n2. BlackRock's involvement in the crypto industry: BlackRock's Bitcoin ETF has seen massive inflows, counteracting outflows from other funds like GBTC. There is anticipation and excitement surrounding BlackRock's future moves in the crypto space.\n\n3. Institutional confidence in Bitcoin: Despite outflows from certain funds, there is a general trend of institutional confidence in Bitcoin, as evidenced by record inflows in various ETFs.\n\n4. Comparison with traditional assets: The speed at which Bitcoin ETFs are accumulating assets is being compared to traditional assets like gold, highlighting the growing interest in cryptocurrencies among institutional investors.\n\n5. Speculation on future trends: There is speculation about the impact of ETFs on the price and adoption of cryptocurrencies like Bitcoin and Ethereum, with discussions about potential future trends and developments in the market.\n\nOverall, the discussions on social media reflect a mix of excitement, speculation, and analysis of the current trends and developments in the crypto industry, particularly in relation to institutional involvement and the impact of ETFs.", - data: [ - 8, 2, 1, 4, 21, 2, 58, 4, 5, 1, 2, 1, 2, 7, 1, 1, 39, 8, 4, 1, 8, 4, 4, 3, 12, 17, 2, 6, 0, - 0, 5, 2, 2, 5, 4, 8, 0, 5, 3, 5, 3, 2, 5, 4, 2, 10, 2, 1, 2, 6, 3, 6, 1, 5, 9, - ], - }, - { - label: 'BTC prices', - topics: '69k,65000,67000,64k,69000', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Bitcoin reaching $70,000 by the end of the week\n- Bitcoin hitting $65,000 USD and reaching 420M for $IBIT\n- Speculation about Bitcoin reaching 69,420 and 63,156 American dollars\n- Normies being silent about Bitcoin's climb\n- Speculation about Bitcoin hitting $100,000 in AUD\n- Bitcoin breaking ATH and hitting $69,000\n- Bitcoin breakout attempt at $69,000\n- Predictions about Bitcoin hitting 69k and then dumping before repeating the cycle\n- Holding onto Bitcoin despite fluctuations in price\n- Easy return to $69,000 for Bitcoin\n- Excitement about Bitcoin's price and potential gains\n- Live updates on Bitcoin's pump to $67,000 and altcoins' returns.", - data: [ - 1, 2, 3, 9, 32, 22, 20, 9, 3, 3, 7, 1, 3, 3, 3, 8, 0, 0, 4, 4, 8, 5, 2, 12, 2, 6, 1, 0, 7, - 5, 4, 3, 5, 4, 3, 5, 2, 7, 4, 7, 2, 2, 7, 4, 10, 2, 2, 4, 3, 5, 3, 3, 3, 4, 1, - ], - }, - { - label: 'ATH', - topics: 'ath,aths,halving,new,breaks', - description: - "The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n- Bitcoin hitting a new all-time high (ATH)\n- Speculation about Bitcoin reaching $100K before the halving\n- Debate about the significance of breaking ATHs early\n- Potential release of a Bitcoin fee estimation app\n- Halving event and its impact on Bitcoin mining\n- RIP halving narrative as Bitcoin breaks ATH before the halving\n- Analysis of why this round of ATHs is different\n- Bitcoin featured on CoinPasar with predictions of breaking ATH before the halving\n\nOverall, the sentiment seems to be optimistic and bullish on Bitcoin's price performance, with discussions focusing on the potential for further price increases and the impact of key events like the halving.", - data: [ - 1, 0, 16, 3, 13, 11, 8, 14, 4, 2, 6, 6, 3, 1, 1, 2, 1, 2, 7, 2, 10, 4, 4, 20, 3, 6, 3, 1, 5, - 0, 1, 4, 2, 10, 6, 4, 2, 5, 3, 9, 8, 6, 1, 3, 4, 1, 6, 3, 11, 7, 1, 2, 4, 6, 4, - ], - }, - { - label: 'Microstrategy', - topics: 'microstrategy,mstr,notes,saylor,600', - description: - "The key topics currently discussed in the crypto industry on Twitter include:\n1. Michael Saylor hailing the success of new Bitcoin ETFs\n2. MicroStrategy offering $600 million in convertible notes to buy more Bitcoin\n3. MicroStrategy issuing another $600 million in convertible notes for Bitcoin acquisition\n4. Minting NFTs on Solana using USDC in March\n5. Discussion on execution risk in the market and sustainability\n6. MicroStrategy increasing latest stock sale to $700 million for Bitcoin purchases\n7. Comparison of MicroStrategy's stock performance with NVIDIA\n8. MicroStrategy's shares surging 23% overnight\n9. Super Micro joining S&P 500 after stock price soars due to AI boom\n10. Speculation on MicroStrategy becoming the most valuable company in the world due to its Bitcoin strategy\n\nOverall, the discussions on Twitter revolve around MicroStrategy's actions in the crypto market, particularly in relation to Bitcoin investments and stock performance. Michael Saylor's influence and strategies are also a prominent topic of conversation.", - data: [ - 5, 5, 1, 1, 2, 3, 3, 6, 5, 4, 0, 4, 5, 2, 0, 2, 2, 3, 2, 4, 5, 2, 3, 5, 5, 5, 4, 6, 0, 2, 5, - 1, 37, 4, 9, 4, 1, 4, 2, 13, 4, 0, 10, 6, 6, 5, 2, 0, 0, 0, 3, 5, 2, 0, 3, - ], - }, - { - label: 'Coinbase', - topics: 'join,ama,spaces,chat,pm', - description: - 'The messages from Twitter are discussing various upcoming events and discussions related to the crypto industry. Some key topics mentioned include live round table discussions on Discord, exhibitions, NFTs, digital asset regulation in Europe, Golem Network shaping the future of computing, joining the Killaverse community, PancakeTalks featuring Arbitrum Network, AMA with CEO of CeDeFiAI, and Office Hours with SuperRare discussing challenges and opportunities for artists in Web3. Additionally, there are reminders to tune in to various events and meetups with industry experts and partners. Overall, the crypto community on Twitter seems to be actively engaged in discussions and events related to the industry.', - data: [ - 2, 1, 3, 1, 0, 0, 0, 0, 6, 2, 10, 3, 0, 6, 3, 3, 0, 2, 3, 7, 1, 5, 3, 3, 27, 1, 38, 3, 3, 1, - 0, 0, 15, 2, 1, 2, 0, 2, 0, 1, 7, 0, 0, 8, 5, 7, 2, 1, 0, 8, 2, 0, 4, 6, 1, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,immutable,web3', - description: - 'The key topics currently discussed in the crypto industry on social media include:\n- GameFi\n- NFT\n- Web3 gaming\n- Indie game picks\n- Play2Earn games\n- Gaming DAOs\n- Tokenomics\n- Mobile gaming\n\nThese topics are being widely discussed and analyzed by the crypto community on platforms like Twitter.', - data: [ - 3, 1, 0, 5, 0, 0, 0, 2, 2, 4, 6, 3, 3, 1, 4, 3, 2, 2, 1, 7, 30, 7, 4, 3, 2, 7, 5, 5, 4, 3, - 3, 0, 3, 3, 4, 3, 4, 6, 0, 2, 3, 1, 4, 0, 3, 2, 1, 1, 0, 0, 2, 2, 5, 2, 6, - ], - }, - { - label: 'DEX', - topics: 'dex,decentralized,pizza,distributed,ecosystem', - description: - "The key topics currently being discussed in the crypto industry on Twitter include:\n- Initial Exchange Offering for REXX Coin\n- REXX Coin's ecosystem and decentralized ecosystem reshaping industries through blockchain technology\n- Acquiring REXX Coin through Initial Coin Offering (ICO) and listings on various exchanges\n- The native Rexx Ecosystem enabling users to buy, trade, and monetize in-game assets securely\n- Seamless transactions and access to a growing network of merchants worldwide with REXX Coin\n- XYO as the supply chain for data and flawless data requiring XYO\n- Launch of Rexx Coin as a revolutionary digital currency with lightning-fast transactions and low fees\n- Milestone achievement of 3000 users on RoseonX with a giveaway opportunity\n- Canonical wstETH brought to Cosmos by @osmosiszone, @neutron_org, and @axelarnetwork with incentives allocated towards wstETH\n- Liquidity farming with SmarDex on multiple networks and earning thousands of SDEX tokens\n- SRX trading competition live on LCX with a chance to win 5000 SRX tokens\n\nOverall, the discussions on Twitter revolve around new coin offerings, ecosystem development, trading competitions, milestone achievements, and opportunities for earning tokens through various means in the crypto industry.", - data: [ - 2, 3, 0, 4, 0, 0, 1, 2, 1, 3, 4, 2, 5, 4, 9, 7, 0, 4, 0, 2, 1, 0, 1, 0, 1, 4, 12, 5, 4, 3, - 2, 4, 1, 7, 3, 4, 2, 7, 5, 4, 2, 15, 6, 1, 1, 5, 3, 2, 3, 1, 3, 4, 2, 5, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,lending,v3,joe,liquidity', - description: - "The key topics currently discussed in the crypto industry on social media platforms include self custody, platform composability, transparency, DeFi marketing strategies, partnerships in the DeFi space, growth of DeFi ecosystems, collaborations between companies, new tools and technologies in DeFi, financial market data usage, decentralized finance strategies, liquidity pools, order execution protocols, safety tips in DeFi, tracking of different DeFi projects, and discussions on DeFi across different chains. The community is also talking about specific projects such as Ankr, SHIB, XRP, Bitcoin DeFi, dHEDGE, SUI ecosystem, Scallop_io, Nomura's subsidiary Laser Digital, Pyth Network, Volt Finance, Bancor, Graphene, and Fuse. Overall, the conversations revolve around innovation, growth, partnerships, and advancements in the DeFi space.", - data: [ - 3, 1, 2, 1, 1, 0, 2, 2, 0, 3, 0, 3, 1, 12, 6, 3, 1, 5, 2, 3, 0, 3, 1, 3, 1, 4, 7, 6, 3, 4, - 2, 1, 3, 1, 3, 1, 2, 3, 5, 5, 2, 2, 4, 0, 3, 4, 2, 1, 1, 5, 4, 6, 1, 2, 1, - ], - }, - { - label: 'Ordinals', - topics: 'ordinals,ordinal,pepenals,nfts,collection', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include Bitcoin ordinals, NFTs, Litecoin, Ethereum, BRC-20 tokens, and the impact of ordinals on transaction fees and network security. There is also a focus on the potential for ordinals to continue increasing in value, the high costs associated with minting and inscribing art on platforms like MagicEden, and the unique hand-drawn art collections being created on Litecoin. Additionally, there are discussions about the potential risks and drawbacks of ordinals, such as increased transaction fees and security vulnerabilities. The community seems to be actively engaged and enthusiastic about the developments in the crypto industry, particularly in relation to Bitcoin ordinals and NFTs.', - data: [ - 1, 2, 3, 0, 0, 6, 0, 4, 1, 2, 1, 3, 1, 1, 3, 2, 1, 2, 2, 2, 5, 3, 2, 3, 4, 3, 0, 2, 1, 1, 5, - 2, 2, 1, 3, 30, 4, 1, 2, 4, 3, 0, 4, 0, 0, 1, 2, 1, 5, 1, 2, 3, 1, 1, 3, - ], - }, - { - label: 'WIF', - topics: 'wif,hat,dog,yo,listing', - description: - 'Based on the messages from Twitter, it is evident that the cryptocurrency community is actively discussing meme coins such as Dogwifhat (WIF) and Frogwifhat (FWIF). These coins have experienced significant price rallies and are being listed on popular exchanges like Binance. There are also mentions of Wintermute, a market maker involved in questionable activities, and predictions of certain coins potentially 25x-ing by the end of 2024. Additionally, there is excitement around the listing of Catwifhat (CWIF) on LBank. Overall, the crypto community seems to be engaged in trading and discussing various meme coins and their potential for growth.', - data: [ - 0, 4, 1, 3, 0, 0, 2, 3, 2, 2, 1, 0, 0, 2, 5, 2, 0, 2, 5, 4, 3, 1, 1, 2, 1, 0, 2, 1, 10, 4, - 1, 7, 2, 1, 3, 4, 2, 0, 6, 1, 3, 2, 2, 1, 1, 1, 2, 3, 1, 0, 5, 1, 1, 8, 1, - ], - }, - { - label: 'Halving', - topics: 'days,halving,left,49,bitcoinhalving', - description: - 'The key topic currently being discussed on Twitter in the crypto industry is the upcoming Bitcoin halving. Messages indicate that there are approximately 40-50 days left until the halving event, with a countdown of blocks left to be mined. There is excitement and anticipation surrounding the event, with some users predicting a new all-time high for Bitcoin. Additionally, there is mention of new mining buildings being set up and developments in the crypto gaming space. Overall, the sentiment seems positive and optimistic within the crypto community on Twitter.', - data: [ - 2, 0, 1, 0, 15, 2, 2, 0, 0, 0, 0, 5, 1, 46, 0, 0, 3, 1, 1, 2, 1, 1, 3, 1, 1, 0, 1, 1, 2, 0, - 0, 1, 4, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, - ], - }, - { - label: 'SEC', - topics: 'sec,court,secs,securities,lawsuit', - description: - "The key topics currently being discussed in the crypto industry on social media platforms such as Twitter include:\n1. Coinbase's legal battle with the SEC over default judgment rulings in an ongoing lawsuit.\n2. Eight state attorney generals pushing back against SEC enforcement actions involving crypto exchanges.\n3. Ripple's Chief Legal Officer calling out the SEC for misleading court submissions.\n4. Terraform Labs defending the SEC's objection to retain a top law firm.\n5. The impact of the SEC's lawsuit against Binance last June on the cryptocurrency exchange.\n6. The Attorney Generals of 8 U.S. States siding with Kraken against the SEC's enforcement actions.\n7. The implications of recent SEC rulings on crypto regulations and enforcement actions.\n8. The significance of default judgments in insider trading cases involving crypto exchanges.\n9. The challenges of limited uplink bandwidth for SEC filings and image submissions.\n10. The comparison of SEC filings in the 2000s to the present day and the impact on historical data ingest.", - data: [ - 2, 0, 5, 0, 0, 0, 3, 0, 0, 4, 8, 4, 7, 0, 3, 0, 2, 8, 2, 2, 1, 1, 2, 0, 2, 2, 1, 6, 3, 0, 0, - 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 2, 1, 1, 11, 1, 1, 1, 2, 0, 2, 0, 2, 0, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-90.json b/priv/repo/major_topics_seed/data-90.json deleted file mode 100644 index f7d071fddd..0000000000 --- a/priv/repo/major_topics_seed/data-90.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["18.09.25","19.09.25","19.09.25","19.09.25","19.09.25","19.09.25","19.09.25","19.09.25","20.09.25","20.09.25","20.09.25","20.09.25","20.09.25","20.09.25","20.09.25","20.09.25","21.09.25","21.09.25","21.09.25","21.09.25","21.09.25","21.09.25","21.09.25","21.09.25","22.09.25","22.09.25","22.09.25","22.09.25","22.09.25","22.09.25","22.09.25","22.09.25","23.09.25","23.09.25","23.09.25","23.09.25","23.09.25","23.09.25","23.09.25","23.09.25","24.09.25","24.09.25","24.09.25","24.09.25","24.09.25","24.09.25","24.09.25","24.09.25","25.09.25","25.09.25","25.09.25","25.09.25","25.09.25","25.09.25","25.09.25"],"datasets":[{"label":"AI","topics":"ai,agents,agent,robots,intelligence","description":"The key topics discussed in the messages from twitter are:\n1. AI being compared to the Dot-Com Bubble of 2025\n2. The potential replacement of the Fed by AI\n3. The development and use of AI Agents in various industries\n4. The impact of AI on data centers and water consumption\n5. The intersection of AI and Web3 technology\n6. The transparency and trust in AI models through blockchain technology\n7. The emergence of AI trading agents in the cryptocurrency market\n8. The rise of DeAI (Decentralized AI) and its impact on Web3\n9. The use of AI agents for automation and decision-making\n10. The future of income and work with AI agents and digital twins.","data":[7,57,23,10,20,16,19,11,17,18,24,15,19,12,20,15,11,12,30,12,20,15,12,24,39,31,21,16,16,22,12,7,16,21,23,14,18,22,22,20,38,16,14,13,11,12,21,19,15,21,21,10,15,14,19]},{"label":"ASTER","topics":"aster,ath,shorting,profits,short","description":"The key topic currently discussed in the messages from twitter is the cryptocurrency $ASTER. It seems that $ASTER is experiencing significant price movements and social traction, with mentions of potential gains and losses. Some users are discussing buying and selling strategies, while others are speculating on the future price of $ASTER. There is also mention of $ASTER being the \"chosen one\" and potentially shaking up the DeFi space. Overall, it appears that $ASTER is a hot topic of discussion in the crypto community at the moment.","data":[12,4,41,45,8,22,23,7,23,12,12,9,4,7,14,13,17,13,8,16,7,7,38,9,13,6,11,10,11,22,4,13,12,9,11,10,9,19,6,13,8,13,13,19,13,9,12,17,15,9,6,10,13,6,6]},{"label":"BTC and the future of finance","topics":"bitcoin,fiat,bitcoiners,spam,censorship","description":"The key topics discussed in the messages from twitter are:\n1. Bitcoin as a peaceful revolution and a way to free individuals from the fiat debt spiral.\n2. The importance of protecting and adopting Bitcoin for the future economy.\n3. The challenges and rewards of building on the Bitcoin network.\n4. The potential for Bitcoin to humble individuals and promote equality.\n5. The role of Bitcoin in financial freedom and understanding the true nature of money.\n6. The potential impact of Bitcoin on the future world economy.\n7. The importance of differentiating between censorship of non-fungible data and monetary transactions on the Bitcoin network.\n8. Updates on BitcoinRacing's performance and achievements.\n9. Discussions on the Fiat Standard and its impact on global economics.\n10. Controversies and debates within the Bitcoin community, such as the Ordinals/inscription controversy and the value of different policy changes.","data":[5,8,8,7,13,29,9,7,9,7,6,11,19,5,13,11,13,16,4,2,5,11,13,5,13,12,2,10,6,7,12,16,12,12,13,13,7,10,10,9,10,16,8,10,6,11,5,14,5,8,11,4,10,9,13]},{"label":"BTC price","topics":"btc,4h,bitcoin,lows,price","description":"The key topics currently discussed in the crypto community on Twitter include the potential for Bitcoin to reach $1 million this year, the bullish sentiment towards Bitcoin with mentions of hitting new all-time highs, the impact of big players on the market, the importance of staying long and strong in the market, and the potential for Bitcoin to reach $1 million by 2030. Additionally, there is discussion about market trends, technical analysis, and price predictions for Bitcoin. Overall, the sentiment is positive towards Bitcoin's future growth and potential.","data":[12,1,8,8,10,15,14,7,19,7,14,15,9,23,5,19,6,10,7,7,7,3,11,8,7,7,6,10,17,17,5,4,9,4,5,5,9,16,11,9,9,13,6,11,9,8,4,12,6,11,5,10,6,9,6]},{"label":"ETH price","topics":"eth,ethereum,retest,4k,4000","description":"The key topic currently being discussed on Twitter_crypto is the price movement of Ethereum (ETH). Specifically, there are mentions of ETH dropping below $4,000 and the potential for it to reach $5,400 or even $10,000 in the future. There are also discussions about long and short positions on ETH, as well as predictions from ARK Invest about ETH reaching $200,000 by 2030. Additionally, there is talk about ETH facing liquidation at certain price levels and the overall market sentiment towards ETH, with some expecting sideways price action and others anticipating upward momentum if certain resistance levels are reclaimed. Overall, the sentiment seems to be mixed with some traders waiting for further market strength before re-entering positions.","data":[10,5,6,6,11,10,20,2,13,10,5,11,4,10,24,15,4,8,10,6,5,6,10,8,3,5,8,9,10,11,7,4,7,5,7,6,4,14,7,12,18,6,9,7,5,12,5,5,5,9,9,3,1,4,4]},{"label":"Korea Blockchain Week","topics":"seoul,korea,kbw,kbw2025,korean","description":"The key topics discussed in the messages from twitter are related to Korea Blockchain Week (KBW), events and activities happening in Seoul, cryptocurrency projects and partnerships, blockchain technology, decentralized finance (DeFi), and the adoption of crypto in Korea. There is also mention of specific projects like Story Protocol, Solo Leveling, and IP-backed memecoins. Overall, the crypto community is excited about the developments and opportunities in Korea and are actively participating in events and discussions related to the industry.","data":[4,6,9,5,7,11,2,10,7,12,5,19,3,1,12,8,2,14,5,9,7,2,16,11,6,16,22,7,7,11,3,6,6,6,12,5,10,6,5,3,11,1,11,4,11,7,18,7,5,9,7,7,15,4,5]},{"label":"CZ makes big moves","topics":"cz,czbinance,czs,aster,binance","description":"The key topics discussed in the messages from twitter are:\n- CZ's influence and impact on the crypto industry\n- Speculation about CZ's involvement in various projects and tokens\n- Comparisons between Aster and other projects\n- Potential conflicts or competition between CZ and other figures in the industry, such as SBF and Sam from FTX\n- Predictions about the future success of Aster and CZ's involvement in its development\n\nOverall, the messages highlight the significant role that CZ plays in the crypto community and the excitement and speculation surrounding his actions and endorsements.","data":[8,7,9,9,8,9,6,10,5,5,10,32,3,3,5,9,6,12,15,8,2,9,8,4,3,8,9,13,10,9,8,5,5,10,4,6,5,10,13,2,10,8,8,9,7,4,9,10,6,7,7,7,9,9,7]},{"label":"SOL price","topics":"solana,sol,250,solanas,200","description":"The key topics currently being discussed about $SOL on Solana include:\n\n- $SOL acting like the DAT is selling at a loss\n- Curiosity about why people initially bought SolStrategies\n- Data being referred to as the new oil, with Solana being a digital data platform\n- Excitement about SOL finally being under $200\n- Speculation about SOL reaching $500 and potentially $1000\n- Positive sentiment about SOL's potential growth and bullish sentiment\n- Updates on SOL spot purchases and potential price reversals\n- Discussion about teenagers gambling and its impact on mental health, with a bullish outlook on Solana\n- Past gains on SOL and predictions for future price increases\n- Exponential growth in SOL and XRP Perpetual-Style Futures trading\n- Technical analysis predicting a decline in SOL followed by a bounce back towards $300\n- Discussion about Solana Oriental event and leading players in the Solana ecosystem\n- Sol Strategies as a validator for BitGo and ARK invest's Digital Asset Revolutions Fund\n- Solana app revenue hitting $193M in August, with growth from leaders like Axiom, Phantom, and Jupiter\n\nOverall, the sentiment around $SOL on Solana seems to be positive, with expectations of continued growth and potential price increases in the future.","data":[9,7,8,6,10,14,15,10,9,7,2,6,9,7,3,6,3,5,14,9,6,4,6,3,5,5,9,5,5,7,9,9,12,10,8,3,3,6,10,7,6,12,7,35,5,10,11,9,5,13,11,7,5,8,2]},{"label":"DeFi","topics":"defi,tradfi,vitalik,lending,yield","description":"The key topic discussed in the messages from twitter is the evolution and growth of DeFi (Decentralized Finance) in the crypto industry. The messages highlight how DeFi is revolutionizing traditional banking by providing banking services without the limitations of traditional banking hours. There is a focus on the importance of low-risk DeFi for Ethereum's sustainability and growth, as well as the increasing adoption of DeFi by institutions. The messages also mention the development of new DeFi projects, the importance of liquidity in DeFi, and partnerships within the DeFi space. Overall, the messages emphasize the potential for DeFi to reshape the financial industry and drive innovation in the crypto space.","data":[3,6,10,5,13,2,7,4,3,9,9,3,3,5,12,11,8,5,7,3,13,3,6,8,18,7,3,7,6,11,5,2,7,6,8,5,13,12,4,11,17,3,3,2,3,6,4,6,9,8,9,8,8,2,9]},{"label":"Gold and other metals","topics":"gold,silver,platinum,dollar,metal","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the significant rise in the price of gold, with predictions that it will continue to increase and potentially close above $4000 by the end of the year. There is also discussion about the correlation between the price movements of gold and Bitcoin, with some suggesting that a cooldown in gold prices could lead to capital flowing into Bitcoin. Additionally, there are mentions of the historical significance of gold prices, comparisons between gold in the 1970s and today, and the potential impact of global economic factors on the price of gold. Some users are also discussing the potential for Bitcoin to serve as a digital alternative to gold for payments. Overall, the sentiment seems to be bullish on both gold and Bitcoin, with users closely monitoring price movements and potential future trends.","data":[10,7,8,6,9,7,1,8,8,3,7,2,5,10,6,7,2,13,4,28,3,5,12,2,4,7,6,5,2,5,8,6,3,7,5,1,11,9,10,7,10,9,4,8,5,9,9,6,8,7,3,8,4,3,6]},{"label":"Memecoins","topics":"memes,meme,memecoin,memecoins,coin","description":"Based on the messages from twitter, it is clear that memes play a significant role in the crypto industry. Memecoins are discussed frequently, with mentions of meme supercycles, meme communities, and the importance of memes in the market. There is also a focus on the evolution of meme coins and the need for them to have real utility and advanced technology to succeed in the long term.\n\nSome specific memes mentioned include $Meme500, $WOJAK, $pepe, $doge, and $Troll. The messages also touch on the idea of meme coins funding trips to Antarctica and the potential for meme coins to create viral gamification or narratives.\n\nOverall, the crypto community on social media seems to be heavily influenced by memes and their impact on the market. It will be interesting to see how memes continue to shape the future of the crypto industry.","data":[3,2,1,3,10,6,7,3,8,5,6,7,1,6,1,6,6,2,4,1,2,3,4,3,2,10,4,5,5,4,84,15,9,4,7,3,4,2,4,3,7,8,7,3,5,5,3,6,6,7,6,3,11,4,3]},{"label":"Football","topics":"football,eagles,giants,games,coach","description":"The key topics discussed in the messages from twitter include:\n1. Performance of various NFL teams and players, such as the Browns, Rams, Cowboys, Lions, and Chiefs.\n2. Speculation and analysis on upcoming games and players, such as the Browns potentially being 2-1 or 0-3, and the performance of QB Mac Jones for the 49ers.\n3. Comparisons between current NFL players and past stars, such as Quinshon Judkins being compared to Ezekiel Elliott.\n4. Commentary on specific plays and moments in recent games, such as a touchdown allowed by the Steelers defense and a 64-yard field goal by the Cowboys.\n5. Quotes and insights from players and coaches, such as Davante Adams on facing off against Eagles' CB Quinyon Mitchell and Tom Brady discussing his role in football.\n6. Personal opinions and predictions on games and players, such as expectations for the Ravens vs. Lions game and the potential of the Browns' offense finding an identity.\n7. Off-field news and events, such as Will Compton losing a bet and having to shave his head for a podcast appearance.","data":[9,6,4,6,11,3,2,6,5,8,5,2,7,8,3,7,12,10,9,8,7,10,3,5,4,7,4,5,7,9,4,1,7,8,6,3,9,4,5,3,3,6,4,1,4,12,10,10,6,4,4,5,4,11,4]},{"label":"IPhone","topics":"iphone,apple,orange,pro,17","description":"Based on the messages from twitter, it is evident that there is a lot of discussion surrounding Apple products, particularly the iPhone. Some key points that are being discussed include:\n\n1. The quality of Apple products, specifically the iPhone, has been criticized for dropping dramatically in recent years.\n2. There is a debate about the aesthetics of the orange iPhone, with some calling it ugly.\n3. People are sharing their opinions on whether the new iPhone models are worth purchasing.\n4. The iPhone Air is generating hype and positive reviews.\n5. Some users prefer using cases to protect their iPhones, while others believe it is unnecessary.\n6. There are discussions about the pricing of Apple products and accessories, such as phone cases.\n7. The use of Apple devices, such as iPads, for different purposes like digital art and training in the aviation industry, is also being talked about.\n8. Some users are expressing interest in the new Apple products, such as the iPhone Air, while others are content with their current devices.\n\nOverall, the sentiment towards Apple products in the crypto community seems mixed, with some users praising the innovation and efficiency of the devices, while others are critical of the quality and pricing.","data":[1,11,12,3,3,3,3,4,6,4,5,0,2,4,4,0,7,1,1,5,3,5,1,3,3,6,3,8,2,2,1,5,5,16,13,11,3,12,1,4,6,6,7,1,3,2,4,5,4,2,5,6,5,4,10]},{"label":"Food","topics":"food,eat,pizza,eating,cooking","description":"The messages from twitter mainly focus on various food items and cooking techniques. There is a mention of adding cayenne powder to eggs, using potato chips as health food, and discussing the lack of tofu in Korean restaurants. Additionally, there are references to eating raw meat, finding high-quality beef online, and enjoying meals at tex mex joints. The overall tone is light-hearted and food-centric, with a mix of humor and genuine enjoyment of different dishes. The mention of chicken thighs and white monster for breakfast, along with other surprises in team cooking, adds to the playful and eclectic nature of the conversation.","data":[3,1,1,9,5,6,6,3,5,2,25,5,8,2,14,1,7,17,4,2,4,3,2,7,4,3,2,2,2,5,7,3,1,6,1,5,8,2,2,1,2,4,1,2,5,4,6,5,1,1,4,9,3,3,5]},{"label":"Perp DEX wars","topics":"perp,dex,dexes,dexs,perps","description":"The key topic currently discussed in the crypto industry on social media accounts is the rise of Perp dexes (decentralized exchanges) and the competition between different platforms. There is a focus on the potential of Perp dexes to revolutionize trading and generate cashflow on the blockchain. However, there is also a warning that not all Perp dexes will succeed, and only a few will emerge as winners in the long run. It is important for investors to be cautious and not be blinded by potential profits when investing in Perp dexes.","data":[1,2,1,7,2,4,5,5,1,1,3,5,13,1,5,5,6,3,5,1,2,5,4,7,3,3,10,4,3,2,3,11,2,6,3,36,5,2,3,2,2,2,1,0,3,1,3,4,4,6,6,5,8,3,2]},{"label":"BNB price","topics":"bnb,chain,1000,tut,ath","description":"The messages from twitter are discussing the impressive performance of BNB, with the price hitting all-time highs above $1,000 and showing no signs of slowing down. The BNB community is excited about the growth and potential of the coin, with predictions of it reaching $1,300 and even $2,500. Institutional inflows and ecosystem growth are driving the momentum of BNB, making it a top trending coin. Overall, BNB seems to be on a bullish trajectory, with many investors eagerly watching its progress.","data":[4,1,3,9,3,14,7,8,3,5,3,3,4,2,4,0,1,2,0,3,3,0,18,3,4,6,3,1,4,6,5,2,4,5,2,4,2,8,7,3,4,8,3,5,5,9,5,2,2,7,2,4,4,1,2]},{"label":"Altseason","topics":"altseason,season,altcoin,alt,alts","description":"The messages from twitter indicate that there is anticipation and discussion surrounding the upcoming Altseason in Q4. There are mentions of potential massive gains, exponential liftoffs, and the inevitability of a real altseason. However, there are also concerns raised about the current state of altcoins and the concept of altcoin season being degraded. The Altcoin Season Index has hit 100, but alts are not pumping as expected. Despite the excitement and anticipation, there are also warnings to be cautious and not to FOMO into the market. Overall, the sentiment seems to be mixed with both optimism and skepticism about the upcoming Altseason.","data":[2,28,5,1,8,2,2,3,6,10,5,3,0,4,2,1,3,0,0,1,1,3,2,2,2,2,1,2,6,3,3,0,4,2,6,7,4,6,7,8,4,34,3,3,6,2,2,3,1,5,0,2,2,2,2]},{"label":"Trading discipline","topics":"trader,discipline,losses,trading,psychology","description":"The key topics discussed in the messages from twitter are:\n\n1. The importance of having a trading strategy and process, rather than relying on hope or luck.\n2. Emphasizing the need for discipline, consistency, and risk management in trading.\n3. The significance of studying the market, making thoughtful moves, and taking calculated risks.\n4. The concept of edge in trading, focusing on smaller losses, bigger wins, and zero tilt.\n5. The necessity of planning, testing, and having a larger strategy/system in trading.\n6. The difference between trading and gambling, highlighting the skills, practice, and continuous learning required in trading.\n7. The importance of preparation, discipline, and patience in trading for success.\n8. The challenges and difficulties of trading, requiring dedication and a structured process.\n9. The common mistakes and reasons for failure in trading, such as impulsive decision-making and negligence.\n10. The need to appreciate profitable trades and avoid twisting them into failures.\n11. The importance of avoiding hype, practicing with discipline, managing risks, and following the market in trading.\n12. The idea of repeatable and strategic trading, rather than random or impulsive decisions.\n13. The emphasis on decoding chart patterns, spotting tested setups, and maintaining a mindset that pays off in trading.\n14. The importance of commanding one's process and strategies in trading, rather than trying to control the market.","data":[1,2,2,2,14,3,3,1,2,1,3,4,0,2,7,4,1,2,1,2,4,3,2,2,6,5,2,4,2,10,6,1,3,1,1,5,5,3,1,4,3,0,2,6,1,4,2,5,6,35,2,6,8,4,1]},{"label":"Web3 infrastructure","topics":"web3,web2,gaming,internet,scale","description":"The messages from twitter discuss various aspects of the Web3 industry, including the importance of building sustainable growth, leveraging existing infrastructure for mass adoption, the role of artists in carrying resilience and hope, the need for diversity in investments, and the shaping of the future of Web3 through composable ecosystems and real-world utility.\n\nKey topics mentioned in the messages include the integration of Web2 as a foundation for Web3's growth, the importance of authenticity in engagement, the connection between infrastructure, intelligence, liquidity, and culture in shaping the future of Web3, and the emphasis on building what lasts rather than focusing on hype.\n\nAdditionally, the messages highlight specific projects and partnerships within the Web3 space, such as @irys_xyz, @GG3_xyz, @wallchain_xyz, @HeyElsaAI, @trylimitless, @ZKcandyHQ, @TheTNetwork, @Surf_Liquid, @StellaSwap, @Galxe, @GravityChain, @Covalent_HQ, @apecoin, @Assemble_io, @Savitri Network, @CryptoRubic, and @MorphLayer.\n\nOverall, the messages emphasize the importance of collaboration, simplicity, and real-world utility in driving Web3 adoption and building a sustainable ecosystem.","data":[3,4,1,1,11,3,7,2,4,2,7,2,4,2,4,2,2,3,16,2,2,2,3,2,10,6,3,1,6,6,3,1,5,3,2,3,1,4,4,2,3,3,7,3,7,4,6,1,4,1,1,1,12,1,3]},{"label":"Uptober","topics":"uptober,september,october,month,historically","description":"The key topics currently being discussed in the crypto community on Twitter include the transition from September to October, with many users anticipating a positive uptrend in October, referred to as \"Uptober.\" There is a mix of optimism and caution, with some users warning of potential market manipulation and liquidations. The historical trends of September being a bearish month and October being a bullish month are also being highlighted. Additionally, there is discussion about the potential impact of global economic factors, such as aggressive rate cuts by the US and China, on the crypto market. Overall, there is a sense of anticipation and excitement for the upcoming month of October in the crypto industry.","data":[5,1,2,6,8,1,0,2,3,6,1,2,4,10,6,6,5,3,5,4,5,2,7,1,2,1,2,3,4,2,4,4,4,0,3,4,1,3,11,4,2,3,8,4,2,4,4,4,4,2,7,4,3,5,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-90.ts b/priv/repo/major_topics_seed/data-90.ts deleted file mode 100644 index a77853bda9..0000000000 --- a/priv/repo/major_topics_seed/data-90.ts +++ /dev/null @@ -1,265 +0,0 @@ -export const NARRATIVES = { - labels: [ - '18.09.25', - '19.09.25', - '19.09.25', - '19.09.25', - '19.09.25', - '19.09.25', - '19.09.25', - '19.09.25', - '20.09.25', - '20.09.25', - '20.09.25', - '20.09.25', - '20.09.25', - '20.09.25', - '20.09.25', - '20.09.25', - '21.09.25', - '21.09.25', - '21.09.25', - '21.09.25', - '21.09.25', - '21.09.25', - '21.09.25', - '21.09.25', - '22.09.25', - '22.09.25', - '22.09.25', - '22.09.25', - '22.09.25', - '22.09.25', - '22.09.25', - '22.09.25', - '23.09.25', - '23.09.25', - '23.09.25', - '23.09.25', - '23.09.25', - '23.09.25', - '23.09.25', - '23.09.25', - '24.09.25', - '24.09.25', - '24.09.25', - '24.09.25', - '24.09.25', - '24.09.25', - '24.09.25', - '24.09.25', - '25.09.25', - '25.09.25', - '25.09.25', - '25.09.25', - '25.09.25', - '25.09.25', - '25.09.25', - ], - datasets: [ - { - label: 'AI', - topics: 'ai,agents,agent,robots,intelligence', - description: - 'The key topics discussed in the messages from twitter are:\n1. AI being compared to the Dot-Com Bubble of 2025\n2. The potential replacement of the Fed by AI\n3. The development and use of AI Agents in various industries\n4. The impact of AI on data centers and water consumption\n5. The intersection of AI and Web3 technology\n6. The transparency and trust in AI models through blockchain technology\n7. The emergence of AI trading agents in the cryptocurrency market\n8. The rise of DeAI (Decentralized AI) and its impact on Web3\n9. The use of AI agents for automation and decision-making\n10. The future of income and work with AI agents and digital twins.', - data: [ - 7, 57, 23, 10, 20, 16, 19, 11, 17, 18, 24, 15, 19, 12, 20, 15, 11, 12, 30, 12, 20, 15, 12, - 24, 39, 31, 21, 16, 16, 22, 12, 7, 16, 21, 23, 14, 18, 22, 22, 20, 38, 16, 14, 13, 11, 12, - 21, 19, 15, 21, 21, 10, 15, 14, 19, - ], - }, - { - label: 'ASTER', - topics: 'aster,ath,shorting,profits,short', - description: - 'The key topic currently discussed in the messages from twitter is the cryptocurrency $ASTER. It seems that $ASTER is experiencing significant price movements and social traction, with mentions of potential gains and losses. Some users are discussing buying and selling strategies, while others are speculating on the future price of $ASTER. There is also mention of $ASTER being the "chosen one" and potentially shaking up the DeFi space. Overall, it appears that $ASTER is a hot topic of discussion in the crypto community at the moment.', - data: [ - 12, 4, 41, 45, 8, 22, 23, 7, 23, 12, 12, 9, 4, 7, 14, 13, 17, 13, 8, 16, 7, 7, 38, 9, 13, 6, - 11, 10, 11, 22, 4, 13, 12, 9, 11, 10, 9, 19, 6, 13, 8, 13, 13, 19, 13, 9, 12, 17, 15, 9, 6, - 10, 13, 6, 6, - ], - }, - { - label: 'BTC and the future of finance', - topics: 'bitcoin,fiat,bitcoiners,spam,censorship', - description: - "The key topics discussed in the messages from twitter are:\n1. Bitcoin as a peaceful revolution and a way to free individuals from the fiat debt spiral.\n2. The importance of protecting and adopting Bitcoin for the future economy.\n3. The challenges and rewards of building on the Bitcoin network.\n4. The potential for Bitcoin to humble individuals and promote equality.\n5. The role of Bitcoin in financial freedom and understanding the true nature of money.\n6. The potential impact of Bitcoin on the future world economy.\n7. The importance of differentiating between censorship of non-fungible data and monetary transactions on the Bitcoin network.\n8. Updates on BitcoinRacing's performance and achievements.\n9. Discussions on the Fiat Standard and its impact on global economics.\n10. Controversies and debates within the Bitcoin community, such as the Ordinals/inscription controversy and the value of different policy changes.", - data: [ - 5, 8, 8, 7, 13, 29, 9, 7, 9, 7, 6, 11, 19, 5, 13, 11, 13, 16, 4, 2, 5, 11, 13, 5, 13, 12, 2, - 10, 6, 7, 12, 16, 12, 12, 13, 13, 7, 10, 10, 9, 10, 16, 8, 10, 6, 11, 5, 14, 5, 8, 11, 4, - 10, 9, 13, - ], - }, - { - label: 'BTC price', - topics: 'btc,4h,bitcoin,lows,price', - description: - "The key topics currently discussed in the crypto community on Twitter include the potential for Bitcoin to reach $1 million this year, the bullish sentiment towards Bitcoin with mentions of hitting new all-time highs, the impact of big players on the market, the importance of staying long and strong in the market, and the potential for Bitcoin to reach $1 million by 2030. Additionally, there is discussion about market trends, technical analysis, and price predictions for Bitcoin. Overall, the sentiment is positive towards Bitcoin's future growth and potential.", - data: [ - 12, 1, 8, 8, 10, 15, 14, 7, 19, 7, 14, 15, 9, 23, 5, 19, 6, 10, 7, 7, 7, 3, 11, 8, 7, 7, 6, - 10, 17, 17, 5, 4, 9, 4, 5, 5, 9, 16, 11, 9, 9, 13, 6, 11, 9, 8, 4, 12, 6, 11, 5, 10, 6, 9, - 6, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,retest,4k,4000', - description: - 'The key topic currently being discussed on Twitter_crypto is the price movement of Ethereum (ETH). Specifically, there are mentions of ETH dropping below $4,000 and the potential for it to reach $5,400 or even $10,000 in the future. There are also discussions about long and short positions on ETH, as well as predictions from ARK Invest about ETH reaching $200,000 by 2030. Additionally, there is talk about ETH facing liquidation at certain price levels and the overall market sentiment towards ETH, with some expecting sideways price action and others anticipating upward momentum if certain resistance levels are reclaimed. Overall, the sentiment seems to be mixed with some traders waiting for further market strength before re-entering positions.', - data: [ - 10, 5, 6, 6, 11, 10, 20, 2, 13, 10, 5, 11, 4, 10, 24, 15, 4, 8, 10, 6, 5, 6, 10, 8, 3, 5, 8, - 9, 10, 11, 7, 4, 7, 5, 7, 6, 4, 14, 7, 12, 18, 6, 9, 7, 5, 12, 5, 5, 5, 9, 9, 3, 1, 4, 4, - ], - }, - { - label: 'Korea Blockchain Week', - topics: 'seoul,korea,kbw,kbw2025,korean', - description: - 'The key topics discussed in the messages from twitter are related to Korea Blockchain Week (KBW), events and activities happening in Seoul, cryptocurrency projects and partnerships, blockchain technology, decentralized finance (DeFi), and the adoption of crypto in Korea. There is also mention of specific projects like Story Protocol, Solo Leveling, and IP-backed memecoins. Overall, the crypto community is excited about the developments and opportunities in Korea and are actively participating in events and discussions related to the industry.', - data: [ - 4, 6, 9, 5, 7, 11, 2, 10, 7, 12, 5, 19, 3, 1, 12, 8, 2, 14, 5, 9, 7, 2, 16, 11, 6, 16, 22, - 7, 7, 11, 3, 6, 6, 6, 12, 5, 10, 6, 5, 3, 11, 1, 11, 4, 11, 7, 18, 7, 5, 9, 7, 7, 15, 4, 5, - ], - }, - { - label: 'CZ makes big moves', - topics: 'cz,czbinance,czs,aster,binance', - description: - "The key topics discussed in the messages from twitter are:\n- CZ's influence and impact on the crypto industry\n- Speculation about CZ's involvement in various projects and tokens\n- Comparisons between Aster and other projects\n- Potential conflicts or competition between CZ and other figures in the industry, such as SBF and Sam from FTX\n- Predictions about the future success of Aster and CZ's involvement in its development\n\nOverall, the messages highlight the significant role that CZ plays in the crypto community and the excitement and speculation surrounding his actions and endorsements.", - data: [ - 8, 7, 9, 9, 8, 9, 6, 10, 5, 5, 10, 32, 3, 3, 5, 9, 6, 12, 15, 8, 2, 9, 8, 4, 3, 8, 9, 13, - 10, 9, 8, 5, 5, 10, 4, 6, 5, 10, 13, 2, 10, 8, 8, 9, 7, 4, 9, 10, 6, 7, 7, 7, 9, 9, 7, - ], - }, - { - label: 'SOL price', - topics: 'solana,sol,250,solanas,200', - description: - "The key topics currently being discussed about $SOL on Solana include:\n\n- $SOL acting like the DAT is selling at a loss\n- Curiosity about why people initially bought SolStrategies\n- Data being referred to as the new oil, with Solana being a digital data platform\n- Excitement about SOL finally being under $200\n- Speculation about SOL reaching $500 and potentially $1000\n- Positive sentiment about SOL's potential growth and bullish sentiment\n- Updates on SOL spot purchases and potential price reversals\n- Discussion about teenagers gambling and its impact on mental health, with a bullish outlook on Solana\n- Past gains on SOL and predictions for future price increases\n- Exponential growth in SOL and XRP Perpetual-Style Futures trading\n- Technical analysis predicting a decline in SOL followed by a bounce back towards $300\n- Discussion about Solana Oriental event and leading players in the Solana ecosystem\n- Sol Strategies as a validator for BitGo and ARK invest's Digital Asset Revolutions Fund\n- Solana app revenue hitting $193M in August, with growth from leaders like Axiom, Phantom, and Jupiter\n\nOverall, the sentiment around $SOL on Solana seems to be positive, with expectations of continued growth and potential price increases in the future.", - data: [ - 9, 7, 8, 6, 10, 14, 15, 10, 9, 7, 2, 6, 9, 7, 3, 6, 3, 5, 14, 9, 6, 4, 6, 3, 5, 5, 9, 5, 5, - 7, 9, 9, 12, 10, 8, 3, 3, 6, 10, 7, 6, 12, 7, 35, 5, 10, 11, 9, 5, 13, 11, 7, 5, 8, 2, - ], - }, - { - label: 'DeFi', - topics: 'defi,tradfi,vitalik,lending,yield', - description: - "The key topic discussed in the messages from twitter is the evolution and growth of DeFi (Decentralized Finance) in the crypto industry. The messages highlight how DeFi is revolutionizing traditional banking by providing banking services without the limitations of traditional banking hours. There is a focus on the importance of low-risk DeFi for Ethereum's sustainability and growth, as well as the increasing adoption of DeFi by institutions. The messages also mention the development of new DeFi projects, the importance of liquidity in DeFi, and partnerships within the DeFi space. Overall, the messages emphasize the potential for DeFi to reshape the financial industry and drive innovation in the crypto space.", - data: [ - 3, 6, 10, 5, 13, 2, 7, 4, 3, 9, 9, 3, 3, 5, 12, 11, 8, 5, 7, 3, 13, 3, 6, 8, 18, 7, 3, 7, 6, - 11, 5, 2, 7, 6, 8, 5, 13, 12, 4, 11, 17, 3, 3, 2, 3, 6, 4, 6, 9, 8, 9, 8, 8, 2, 9, - ], - }, - { - label: 'Gold and other metals', - topics: 'gold,silver,platinum,dollar,metal', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include the significant rise in the price of gold, with predictions that it will continue to increase and potentially close above $4000 by the end of the year. There is also discussion about the correlation between the price movements of gold and Bitcoin, with some suggesting that a cooldown in gold prices could lead to capital flowing into Bitcoin. Additionally, there are mentions of the historical significance of gold prices, comparisons between gold in the 1970s and today, and the potential impact of global economic factors on the price of gold. Some users are also discussing the potential for Bitcoin to serve as a digital alternative to gold for payments. Overall, the sentiment seems to be bullish on both gold and Bitcoin, with users closely monitoring price movements and potential future trends.', - data: [ - 10, 7, 8, 6, 9, 7, 1, 8, 8, 3, 7, 2, 5, 10, 6, 7, 2, 13, 4, 28, 3, 5, 12, 2, 4, 7, 6, 5, 2, - 5, 8, 6, 3, 7, 5, 1, 11, 9, 10, 7, 10, 9, 4, 8, 5, 9, 9, 6, 8, 7, 3, 8, 4, 3, 6, - ], - }, - { - label: 'Memecoins', - topics: 'memes,meme,memecoin,memecoins,coin', - description: - 'Based on the messages from twitter, it is clear that memes play a significant role in the crypto industry. Memecoins are discussed frequently, with mentions of meme supercycles, meme communities, and the importance of memes in the market. There is also a focus on the evolution of meme coins and the need for them to have real utility and advanced technology to succeed in the long term.\n\nSome specific memes mentioned include $Meme500, $WOJAK, $pepe, $doge, and $Troll. The messages also touch on the idea of meme coins funding trips to Antarctica and the potential for meme coins to create viral gamification or narratives.\n\nOverall, the crypto community on social media seems to be heavily influenced by memes and their impact on the market. It will be interesting to see how memes continue to shape the future of the crypto industry.', - data: [ - 3, 2, 1, 3, 10, 6, 7, 3, 8, 5, 6, 7, 1, 6, 1, 6, 6, 2, 4, 1, 2, 3, 4, 3, 2, 10, 4, 5, 5, 4, - 84, 15, 9, 4, 7, 3, 4, 2, 4, 3, 7, 8, 7, 3, 5, 5, 3, 6, 6, 7, 6, 3, 11, 4, 3, - ], - }, - { - label: 'Football', - topics: 'football,eagles,giants,games,coach', - description: - "The key topics discussed in the messages from twitter include:\n1. Performance of various NFL teams and players, such as the Browns, Rams, Cowboys, Lions, and Chiefs.\n2. Speculation and analysis on upcoming games and players, such as the Browns potentially being 2-1 or 0-3, and the performance of QB Mac Jones for the 49ers.\n3. Comparisons between current NFL players and past stars, such as Quinshon Judkins being compared to Ezekiel Elliott.\n4. Commentary on specific plays and moments in recent games, such as a touchdown allowed by the Steelers defense and a 64-yard field goal by the Cowboys.\n5. Quotes and insights from players and coaches, such as Davante Adams on facing off against Eagles' CB Quinyon Mitchell and Tom Brady discussing his role in football.\n6. Personal opinions and predictions on games and players, such as expectations for the Ravens vs. Lions game and the potential of the Browns' offense finding an identity.\n7. Off-field news and events, such as Will Compton losing a bet and having to shave his head for a podcast appearance.", - data: [ - 9, 6, 4, 6, 11, 3, 2, 6, 5, 8, 5, 2, 7, 8, 3, 7, 12, 10, 9, 8, 7, 10, 3, 5, 4, 7, 4, 5, 7, - 9, 4, 1, 7, 8, 6, 3, 9, 4, 5, 3, 3, 6, 4, 1, 4, 12, 10, 10, 6, 4, 4, 5, 4, 11, 4, - ], - }, - { - label: 'IPhone', - topics: 'iphone,apple,orange,pro,17', - description: - 'Based on the messages from twitter, it is evident that there is a lot of discussion surrounding Apple products, particularly the iPhone. Some key points that are being discussed include:\n\n1. The quality of Apple products, specifically the iPhone, has been criticized for dropping dramatically in recent years.\n2. There is a debate about the aesthetics of the orange iPhone, with some calling it ugly.\n3. People are sharing their opinions on whether the new iPhone models are worth purchasing.\n4. The iPhone Air is generating hype and positive reviews.\n5. Some users prefer using cases to protect their iPhones, while others believe it is unnecessary.\n6. There are discussions about the pricing of Apple products and accessories, such as phone cases.\n7. The use of Apple devices, such as iPads, for different purposes like digital art and training in the aviation industry, is also being talked about.\n8. Some users are expressing interest in the new Apple products, such as the iPhone Air, while others are content with their current devices.\n\nOverall, the sentiment towards Apple products in the crypto community seems mixed, with some users praising the innovation and efficiency of the devices, while others are critical of the quality and pricing.', - data: [ - 1, 11, 12, 3, 3, 3, 3, 4, 6, 4, 5, 0, 2, 4, 4, 0, 7, 1, 1, 5, 3, 5, 1, 3, 3, 6, 3, 8, 2, 2, - 1, 5, 5, 16, 13, 11, 3, 12, 1, 4, 6, 6, 7, 1, 3, 2, 4, 5, 4, 2, 5, 6, 5, 4, 10, - ], - }, - { - label: 'Food', - topics: 'food,eat,pizza,eating,cooking', - description: - 'The messages from twitter mainly focus on various food items and cooking techniques. There is a mention of adding cayenne powder to eggs, using potato chips as health food, and discussing the lack of tofu in Korean restaurants. Additionally, there are references to eating raw meat, finding high-quality beef online, and enjoying meals at tex mex joints. The overall tone is light-hearted and food-centric, with a mix of humor and genuine enjoyment of different dishes. The mention of chicken thighs and white monster for breakfast, along with other surprises in team cooking, adds to the playful and eclectic nature of the conversation.', - data: [ - 3, 1, 1, 9, 5, 6, 6, 3, 5, 2, 25, 5, 8, 2, 14, 1, 7, 17, 4, 2, 4, 3, 2, 7, 4, 3, 2, 2, 2, 5, - 7, 3, 1, 6, 1, 5, 8, 2, 2, 1, 2, 4, 1, 2, 5, 4, 6, 5, 1, 1, 4, 9, 3, 3, 5, - ], - }, - { - label: 'Perp DEX wars', - topics: 'perp,dex,dexes,dexs,perps', - description: - 'The key topic currently discussed in the crypto industry on social media accounts is the rise of Perp dexes (decentralized exchanges) and the competition between different platforms. There is a focus on the potential of Perp dexes to revolutionize trading and generate cashflow on the blockchain. However, there is also a warning that not all Perp dexes will succeed, and only a few will emerge as winners in the long run. It is important for investors to be cautious and not be blinded by potential profits when investing in Perp dexes.', - data: [ - 1, 2, 1, 7, 2, 4, 5, 5, 1, 1, 3, 5, 13, 1, 5, 5, 6, 3, 5, 1, 2, 5, 4, 7, 3, 3, 10, 4, 3, 2, - 3, 11, 2, 6, 3, 36, 5, 2, 3, 2, 2, 2, 1, 0, 3, 1, 3, 4, 4, 6, 6, 5, 8, 3, 2, - ], - }, - { - label: 'BNB price', - topics: 'bnb,chain,1000,tut,ath', - description: - 'The messages from twitter are discussing the impressive performance of BNB, with the price hitting all-time highs above $1,000 and showing no signs of slowing down. The BNB community is excited about the growth and potential of the coin, with predictions of it reaching $1,300 and even $2,500. Institutional inflows and ecosystem growth are driving the momentum of BNB, making it a top trending coin. Overall, BNB seems to be on a bullish trajectory, with many investors eagerly watching its progress.', - data: [ - 4, 1, 3, 9, 3, 14, 7, 8, 3, 5, 3, 3, 4, 2, 4, 0, 1, 2, 0, 3, 3, 0, 18, 3, 4, 6, 3, 1, 4, 6, - 5, 2, 4, 5, 2, 4, 2, 8, 7, 3, 4, 8, 3, 5, 5, 9, 5, 2, 2, 7, 2, 4, 4, 1, 2, - ], - }, - { - label: 'Altseason', - topics: 'altseason,season,altcoin,alt,alts', - description: - 'The messages from twitter indicate that there is anticipation and discussion surrounding the upcoming Altseason in Q4. There are mentions of potential massive gains, exponential liftoffs, and the inevitability of a real altseason. However, there are also concerns raised about the current state of altcoins and the concept of altcoin season being degraded. The Altcoin Season Index has hit 100, but alts are not pumping as expected. Despite the excitement and anticipation, there are also warnings to be cautious and not to FOMO into the market. Overall, the sentiment seems to be mixed with both optimism and skepticism about the upcoming Altseason.', - data: [ - 2, 28, 5, 1, 8, 2, 2, 3, 6, 10, 5, 3, 0, 4, 2, 1, 3, 0, 0, 1, 1, 3, 2, 2, 2, 2, 1, 2, 6, 3, - 3, 0, 4, 2, 6, 7, 4, 6, 7, 8, 4, 34, 3, 3, 6, 2, 2, 3, 1, 5, 0, 2, 2, 2, 2, - ], - }, - { - label: 'Trading discipline', - topics: 'trader,discipline,losses,trading,psychology', - description: - "The key topics discussed in the messages from twitter are:\n\n1. The importance of having a trading strategy and process, rather than relying on hope or luck.\n2. Emphasizing the need for discipline, consistency, and risk management in trading.\n3. The significance of studying the market, making thoughtful moves, and taking calculated risks.\n4. The concept of edge in trading, focusing on smaller losses, bigger wins, and zero tilt.\n5. The necessity of planning, testing, and having a larger strategy/system in trading.\n6. The difference between trading and gambling, highlighting the skills, practice, and continuous learning required in trading.\n7. The importance of preparation, discipline, and patience in trading for success.\n8. The challenges and difficulties of trading, requiring dedication and a structured process.\n9. The common mistakes and reasons for failure in trading, such as impulsive decision-making and negligence.\n10. The need to appreciate profitable trades and avoid twisting them into failures.\n11. The importance of avoiding hype, practicing with discipline, managing risks, and following the market in trading.\n12. The idea of repeatable and strategic trading, rather than random or impulsive decisions.\n13. The emphasis on decoding chart patterns, spotting tested setups, and maintaining a mindset that pays off in trading.\n14. The importance of commanding one's process and strategies in trading, rather than trying to control the market.", - data: [ - 1, 2, 2, 2, 14, 3, 3, 1, 2, 1, 3, 4, 0, 2, 7, 4, 1, 2, 1, 2, 4, 3, 2, 2, 6, 5, 2, 4, 2, 10, - 6, 1, 3, 1, 1, 5, 5, 3, 1, 4, 3, 0, 2, 6, 1, 4, 2, 5, 6, 35, 2, 6, 8, 4, 1, - ], - }, - { - label: 'Web3 infrastructure', - topics: 'web3,web2,gaming,internet,scale', - description: - "The messages from twitter discuss various aspects of the Web3 industry, including the importance of building sustainable growth, leveraging existing infrastructure for mass adoption, the role of artists in carrying resilience and hope, the need for diversity in investments, and the shaping of the future of Web3 through composable ecosystems and real-world utility.\n\nKey topics mentioned in the messages include the integration of Web2 as a foundation for Web3's growth, the importance of authenticity in engagement, the connection between infrastructure, intelligence, liquidity, and culture in shaping the future of Web3, and the emphasis on building what lasts rather than focusing on hype.\n\nAdditionally, the messages highlight specific projects and partnerships within the Web3 space, such as @irys_xyz, @GG3_xyz, @wallchain_xyz, @HeyElsaAI, @trylimitless, @ZKcandyHQ, @TheTNetwork, @Surf_Liquid, @StellaSwap, @Galxe, @GravityChain, @Covalent_HQ, @apecoin, @Assemble_io, @Savitri Network, @CryptoRubic, and @MorphLayer.\n\nOverall, the messages emphasize the importance of collaboration, simplicity, and real-world utility in driving Web3 adoption and building a sustainable ecosystem.", - data: [ - 3, 4, 1, 1, 11, 3, 7, 2, 4, 2, 7, 2, 4, 2, 4, 2, 2, 3, 16, 2, 2, 2, 3, 2, 10, 6, 3, 1, 6, 6, - 3, 1, 5, 3, 2, 3, 1, 4, 4, 2, 3, 3, 7, 3, 7, 4, 6, 1, 4, 1, 1, 1, 12, 1, 3, - ], - }, - { - label: 'Uptober', - topics: 'uptober,september,october,month,historically', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the transition from September to October, with many users anticipating a positive uptrend in October, referred to as "Uptober." There is a mix of optimism and caution, with some users warning of potential market manipulation and liquidations. The historical trends of September being a bearish month and October being a bullish month are also being highlighted. Additionally, there is discussion about the potential impact of global economic factors, such as aggressive rate cuts by the US and China, on the crypto market. Overall, there is a sense of anticipation and excitement for the upcoming month of October in the crypto industry.', - data: [ - 5, 1, 2, 6, 8, 1, 0, 2, 3, 6, 1, 2, 4, 10, 6, 6, 5, 3, 5, 4, 5, 2, 7, 1, 2, 1, 2, 3, 4, 2, - 4, 4, 4, 0, 3, 4, 1, 3, 11, 4, 2, 3, 8, 4, 2, 4, 4, 4, 4, 2, 7, 4, 3, 5, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-91.json b/priv/repo/major_topics_seed/data-91.json deleted file mode 100644 index d1c21eb5e4..0000000000 --- a/priv/repo/major_topics_seed/data-91.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["25.09.25","26.09.25","26.09.25","26.09.25","26.09.25","26.09.25","26.09.25","26.09.25","27.09.25","27.09.25","27.09.25","27.09.25","27.09.25","27.09.25","27.09.25","27.09.25","28.09.25","28.09.25","28.09.25","28.09.25","28.09.25","28.09.25","28.09.25","28.09.25","29.09.25","29.09.25","29.09.25","29.09.25","29.09.25","29.09.25","29.09.25","29.09.25","30.09.25","30.09.25","30.09.25","30.09.25","30.09.25","30.09.25","30.09.25","30.09.25","01.10.25","01.10.25","01.10.25","01.10.25","01.10.25","01.10.25","01.10.25","01.10.25","02.10.25","02.10.25","02.10.25","02.10.25","02.10.25","02.10.25","02.10.25"],"datasets":[{"label":"BTC price","topics":"btc,120k,bitcoin,118k,resistance","description":"The key topics currently being discussed in the crypto community on Twitter include:\n- Bitcoin's price levels and potential for reaching $150k in October\n- Altcoins preparing for a big move\n- Resistance at the €100k zone for Bitcoin\n- Speculation on Bitcoin reaching $1 million and hyperbitcoinisation\n- Analysis and predictions for Bitcoin's price movements, including potential pullbacks and uptrends\n- Market sentiment and indicators such as NUPL and MVRV\n- Trading strategies and balancing multiple investments during the current market conditions\n\nOverall, the sentiment seems to be bullish on Bitcoin and altcoins, with traders closely monitoring key levels and indicators for potential opportunities.","data":[31,8,22,18,40,83,64,21,24,28,24,52,9,38,28,21,28,16,15,21,14,21,52,15,15,18,20,14,48,21,17,24,23,12,21,17,47,33,46,44,22,19,34,22,21,43,17,25,24,41,35,21,34,17,20]},{"label":"ZEC","topics":"zec,zcash,privacy,altcoins,zro","description":"The key topics discussed in the messages from twitter are:\n- Zcash (ZEC) dumping after seeing an update\n- Potential pullback in Long before continuing up\n- Speculation on ZKC being the next big move in the market\n- Discussion on ZEC and its potential for growth\n- Comparison of ZEC trading to Bitcoin\n- Analysis of ZEC's price movement and potential for a reversal\n- Personal regret over not holding onto ZEC when its price increased\n- Discussion on ZRO and its potential for growth\n- Speculation on ZKC being a potential 10-20x investment\n- Debate on the privacy features of Zcash compared to other cryptocurrencies\n- Analysis of ZANO's market performance\n- Comparison of ZKC's volume to other cryptocurrencies\n- Technical analysis on ZKC's RSI indicator\n\nOverall, the messages reflect a mix of speculation, analysis, and personal experiences related to various cryptocurrencies, with a focus on Zcash (ZEC) and ZKC.","data":[10,9,2,2,12,18,7,3,10,9,12,7,9,8,9,8,11,11,9,9,3,10,5,3,7,12,7,9,8,9,7,6,16,9,8,10,14,19,16,12,8,9,9,6,10,5,7,9,10,8,6,5,4,3,103]},{"label":"US government shutdown ","topics":"shutdown,government,shut,shutdowns,gov","description":"The messages from twitter suggest that there is a lot of discussion and speculation about the potential government shutdown in the US and how it may impact the markets, including Bitcoin. Some users seem to view the shutdown as a bullish opportunity for Bitcoin, highlighting its resilience compared to traditional government-controlled currencies. There are also mentions of potential market volatility and the impact on economic data releases. Overall, the sentiment seems to be mixed, with some seeing the shutdown as a negative event while others view it as an opportunity for Bitcoin to shine.","data":[7,10,5,6,10,6,5,4,6,1,4,8,3,3,8,15,3,3,1,30,126,10,11,8,4,7,11,3,11,7,4,4,5,20,8,4,12,6,5,7,5,2,82,4,9,3,4,9,6,5,6,1,5,1,1]},{"label":"AI","topics":"ai,agents,models,ais,intelligence","description":"The least controversial AI product launch this week is on NEAR, offering a better future for AI that is accessible to everyone. The key takeaway is to take your time to brainstorm features and architecture before rushing into implementation, as we are thriving in the AI age. The potential for AI to create category leaders and revolutionize industries is evident, with Deutsche Bank even stating that AI spending is crucial for avoiding a recession in 2025. However, it is important to remember that AI implementation should focus on efficiency and business outcomes, rather than just replacing human jobs. Overall, the future of AI is promising, but it is essential to approach it with caution and strategic planning.","data":[3,19,11,9,17,10,11,9,7,16,9,15,16,15,10,8,6,16,3,6,7,6,4,15,12,8,12,2,6,6,6,4,18,6,9,3,13,10,9,12,13,9,10,7,6,7,17,13,7,12,6,9,6,9,7]},{"label":"ETH price","topics":"eth,ethereum,4k,reclaim,resistance","description":"Based on the messages from twitter, it seems that there is a lot of discussion and analysis surrounding the price movements of Ethereum ($ETH). There are mentions of resistance and support levels, as well as predictions for potential price targets such as $4,500 and $4,200. Some users are optimistic about the future price appreciation of Ethereum, while others are cautious about potential retracements and corrections. Overall, there is a mix of bullish and bearish sentiment regarding Ethereum's price action in the near term.","data":[7,3,7,5,4,18,12,6,7,9,7,2,5,11,10,7,9,3,9,17,2,6,15,6,7,4,4,9,12,4,2,5,5,3,4,3,9,4,6,25,10,9,12,5,6,17,8,15,14,8,4,4,10,1,6]},{"label":"XPL","topics":"plasma,xpl,aave,tvl,trillions","description":"The attention on Plasma in the crypto community seems to be focused on its recent surge in value, potential for future growth, and the various opportunities it offers for trading and investment. There is discussion about the launch of new tokens on the Plasma network, the potential for creating memecoin LPs on Plasma, and the impact of billionaire backing on the project's success. Additionally, there are mentions of issues with wallets and transfers related to Plasma, as well as the launch of new projects and partnerships within the Plasma ecosystem. Overall, sentiment around Plasma appears to be positive, with many users excited about its potential for growth and innovation in the crypto industry.","data":[6,7,8,9,5,10,9,5,2,1,10,8,10,5,9,3,7,14,3,7,6,2,8,9,8,8,5,10,5,2,2,1,7,4,8,31,4,8,5,10,5,7,9,7,14,12,8,5,10,4,14,6,4,8,4]},{"label":"DeFi","topics":"defi,tradfi,yield,1inch,yields","description":"The messages from twitter discuss various aspects of the DeFi industry, including the potential for exponential growth, new DeFi protocols, partnerships bringing funding into DeFi projects, and the evolution of DeFi. There is also mention of the importance of scaling DeFi and building on existing successful strategies. Additionally, there are references to upcoming events and discussions on real-world assets redefining DeFi. Overall, the messages highlight the growing interest and opportunities in the DeFi space.","data":[4,10,9,6,7,8,11,8,6,8,9,3,7,3,9,7,5,12,9,4,3,4,0,8,16,6,5,9,2,10,9,7,8,8,6,6,5,10,10,10,7,3,2,5,4,7,8,5,7,3,9,3,6,7,3]},{"label":"XPL price","topics":"xpl,trillions,long,invalidation,longed","description":"Overall, the sentiment around $XPL seems to be mixed, with some investors optimistic about a potential price increase while others are cautious about a potential dip. The volatility of the market is causing uncertainty among investors, with some expecting sell pressure and others looking for buying opportunities. It is important to closely monitor the market and make informed decisions based on the current trends and news surrounding $XPL.","data":[6,3,3,6,5,11,12,6,7,3,3,4,4,4,2,5,7,11,5,16,10,5,7,12,4,6,3,12,21,4,6,2,3,6,5,7,6,5,5,5,5,6,10,2,4,6,2,9,6,7,6,2,7,4,28]},{"label":"Perp DEX meta","topics":"perp,dex,dexs,perps,dexes","description":"The messages from twitter suggest that the topic of discussion is the ongoing trend of perp dex meta in the crypto industry. There are mentions of various perp dex tokens, partnerships with big names like J.P. Morgan Freeman, and the competition among different perp dex platforms. The messages also touch upon the importance of learning how to trade in this environment and the potential risks involved. Overall, it seems like the crypto community is actively engaged in the perp dex meta and its implications for the market.","data":[2,7,2,4,2,14,4,3,4,5,5,3,13,4,5,6,5,9,4,3,7,4,9,6,5,6,7,3,5,2,9,2,18,9,8,53,8,8,10,4,3,4,7,4,4,6,3,4,4,2,7,6,3,5,5]},{"label":"Token2049","topics":"token2049,booth,singapore,token2049singapore,marina","description":"The key topics discussed in the messages from twitter are:\n1. Participation and activities at TOKEN2049 in Singapore\n2. Networking opportunities with various crypto teams and individuals\n3. Discussions on leverage, real-time on-chain subledgers, and future of crypto\n4. Partnerships and collaborations with different events and organizations\n5. Focus on treasury management, API trading, and backend trading engine\n6. Presence of various crypto teams and individuals at TOKEN2049\n7. Panels, discussions, and announcements related to DeFi, tokenization, and digital assets\n8. Exploration of new opportunities and connections in the crypto industry\n9. Future vision and themes aligning with Nuklai's vision for the future\n10. Showcase of how gold, powered by blockchain, is shaping the future of digital assets.","data":[2,3,11,3,5,12,2,8,7,9,4,6,2,1,17,4,5,4,2,2,4,13,3,4,4,13,5,8,3,1,4,5,4,9,5,3,3,5,8,5,2,2,3,8,10,6,15,2,9,1,5,4,14,3,4]},{"label":"GameFi","topics":"games,game,gaming,playing,gamers","description":"The messages from twitter mainly focus on various gaming communities and games, such as Atia's Legacy, BattleRiseGame, and the excitement surrounding new game launches. There is also mention of the Blockchain Game Alliance welcoming a new member, BUFF_Team, and the importance of loyalty in gaming ecosystems. Additionally, there is discussion about game development events like Avalanche Game Jams with LaunchLoop.\n\nIn terms of the topic of DAOs disrupting the gaming space, there is no direct mention of DAOs in the provided messages. However, the overall sentiment from the messages suggests a strong interest and engagement in the gaming industry, which could potentially be impacted by the introduction of DAOs in the future.","data":[6,4,5,3,6,7,5,4,3,7,4,1,7,4,7,5,1,39,11,6,4,5,2,4,5,3,5,6,10,3,2,3,7,5,4,31,2,3,5,3,2,5,5,3,1,0,11,3,5,5,2,5,4,4,0]},{"label":"Art","topics":"art,artist,artists,painting,paint","description":"\nOverall, the messages from twitter focus on various aspects of art within the crypto industry. From discussing the strategy of art collection to showcasing different artists and their works, there is a clear interest in the intersection of art and cryptocurrency. The community seems to appreciate the creativity and talent of artists, as well as the unique ways in which art can be digitalized and shared within the crypto space. Additionally, there is a sense of support for artists and their work, with mentions of collecting pieces and attending art events. The community also values the history and influence of renowned artists, such as Frank Frazetta, and recognizes the importance of showcasing and preserving art through collectible magazines. Overall, the messages convey a strong appreciation for art and its role within the crypto industry.","data":[1,5,60,1,5,1,2,3,10,6,11,2,7,14,2,8,8,2,4,2,4,5,4,3,3,3,4,5,8,3,5,3,8,2,12,4,4,0,1,4,2,1,3,5,5,8,2,4,1,3,9,3,5,6,0]},{"label":"RWA","topics":"rwa,rwas,tokenization,novastroxyz,tokenized","description":"The key topics discussed in the RWA (Real World Assets) community on Twitter include the tokenization of real-world assets, the growth of RWA tokenization, the democratization of knowledge and access to finance, the importance of liquidity and compliance in RWA tokenization, the potential of RWA tokenization to unlock new opportunities for ownership and investment access, and the upcoming opportunities in the RWA market, estimated to be a $16 trillion opportunity. Additionally, there is a focus on the importance of choosing the right chain for token issuance, the potential for RWA tokenization to reshape global markets, and the need for expert advisory and infrastructure to support RWA tokenization. Various industry experts and leaders are also highlighted as shaping the future of RWA, with upcoming events and conferences discussing the future of RWA tokenization.","data":[0,3,7,1,6,6,3,5,6,9,4,5,9,6,10,4,0,6,3,4,4,1,4,4,11,5,4,7,1,10,6,5,7,6,10,7,7,6,10,3,6,5,5,2,11,6,7,2,15,6,1,2,2,5,1]},{"label":"XRP price","topics":"xrp,ripple,breakout,etf,ripples","description":"The key topics discussed in the messages from twitter regarding XRP include:\n- Speculation on XRP price movements, with predictions of a potential breakout above $4\n- Analysis of technical indicators such as Elliott Wave and Bollinger Bands to predict price movements\n- Discussion of potential catalysts for a bullish breakout, such as ETF approvals and leadership shifts within Ripple\n- Concerns about short-term price dips and capitulation, but overall bullish outlook for XRP\n- Focus on long-term outlook and potential for XRP to reach new all-time highs\n- Speculation on XRP's potential to outperform other cryptocurrencies like Bitcoin and Ethereum\n- Analysis of support and resistance levels, with a focus on key levels like $2.70, $2.94, and $3.50\n- Discussion of market sentiment and potential triggers for a bullish rally in the near future\n\nOverall, the messages suggest a mix of optimism and caution regarding XRP's price movements, with a focus on technical analysis, market trends, and potential catalysts for future price movements.","data":[11,4,9,5,2,5,2,6,4,9,7,7,4,9,5,6,5,3,2,7,2,7,21,7,3,3,7,4,8,4,4,6,2,5,1,1,5,5,8,4,8,2,9,4,4,8,7,5,4,6,4,1,2,2,6]},{"label":"Hypurr NFT","topics":"hypurr,nfts,nft,hyperliquid,floor","description":"The key topic currently discussed in the crypto community on social media is the Hypurr NFT collection. There is excitement surrounding the recent sales of Hypurr NFTs, with one selling for $470,509 and another for $224,300. The community is also discussing the potential future value of Hypurr NFTs, with some speculating that it could become the most expensive NFT collection in history. Additionally, there is talk about airdrops of Hypurrs to holders of certain HyperEVM protocols, as well as the alignment and potential repricing of Hypurr NFTs in the future. Overall, the community is highly engaged and enthusiastic about the Hypurr NFT collection.","data":[6,4,5,3,1,1,3,3,4,2,4,3,4,14,2,4,13,6,1,8,2,0,11,21,4,6,7,5,2,5,3,5,3,5,5,3,5,5,7,5,5,2,1,9,2,4,3,7,6,4,4,4,2,3,3]},{"label":"SOL price","topics":"sol,solana,200,250,230","description":"The key topics discussed in the messages from twitter are:\n- $SOL potential for a breakout and second expansion wave\n- Days Sales Outstanding (DSO) and its importance in cash flow management\n- Pantera's Paul Veradittakit's views on $SOL and institutional capital recognition\n- Solana's cup-and-handle pattern and potential rally ahead\n- Speculation on Solana's bottom and potential relief rally\n- Analysts' expectations on SEC decisions regarding Solana funds\n- Updates on Solana's price movements and support levels\n- Discussion on conflicting signals and divergences in $SOL price movements\n\nOverall, the messages indicate a positive sentiment towards Solana ($SOL) and anticipation for potential price movements and developments in the near future.","data":[1,5,1,0,2,5,7,8,7,9,3,5,4,6,4,4,4,3,3,1,2,0,12,2,2,3,4,5,10,5,3,6,5,4,4,5,10,3,6,4,4,7,8,9,4,7,6,2,3,9,4,7,4,5,1]},{"label":"ASTER price","topics":"aster,wedge,leg,cope,trendline","description":"The key topics currently being discussed in the messages from twitter about $ASTER include:\n- Speculation on the price of $ASTER reaching $2.15 and potentially $3 in the short term\n- Predictions for the price of $ASTER in the future, with guesses ranging from $4.20 to above $40\n- Analysis of technical indicators and chart patterns for $ASTER, with some suggesting a potential breakout and others warning of downside risk\n- Discussion of market manipulation and potential rugpulls involving $ASTER\n- Mention of an upcoming airdrop for $ASTER and its potential impact on the price\n- Calls for caution and patience in trading $ASTER, with some users advising against buying at current levels\n\nOverall, the sentiment around $ASTER appears to be mixed, with some users bullish on its potential for growth while others are more cautious about the current market conditions.","data":[7,1,2,13,1,14,7,6,1,4,4,3,4,3,7,6,9,4,5,9,3,3,8,4,2,3,5,4,19,5,3,2,1,5,2,2,6,3,2,4,4,0,6,3,3,4,8,4,4,7,2,2,3,4,1]},{"label":"Gold and silver","topics":"gold,record,silver,alltime,reuters","description":"The key topic discussed in the messages from twitter is the significant rise in gold prices, with multiple mentions of gold hitting record highs and reaching levels not seen before. The messages also mention factors such as the US government shutdown, Fed rate cut bets, geopolitical concerns, and safe-haven demand driving the surge in gold prices. There are also warnings of potential corrections due to gold being overbought and trading significantly above its 200DMA. Overall, the sentiment towards gold in the crypto community seems to be bullish, with many investors turning to gold as a safe-haven asset in volatile markets.","data":[4,2,7,3,2,6,2,5,4,5,2,1,3,1,1,1,6,8,3,19,1,3,21,1,4,4,1,1,3,2,4,7,3,2,6,5,10,3,7,6,8,3,4,6,2,3,5,2,3,2,3,5,5,3,4]},{"label":"Bitcoin fundamentals","topics":"bitcoiners,bitcoin,money,economics,bitcoins","description":"The messages from twitter highlight the intense passion and belief in the fundamental value of Bitcoin within the crypto community. Bitcoin is seen as a superior form of money, with its singleness-of-purpose being its strength. The community believes that Bitcoin is a revolutionary invention that can fix the world's financial systems. There is a strong emphasis on the importance of understanding Bitcoin fully, as those who do are considered alpha apex predators in the financial world. The messages also touch on the ongoing debates and tensions within the crypto community, such as the divide between Bitcoin and other cryptocurrencies like Zcash and Monero. Overall, the messages convey a sense of determination and resilience in the face of challenges and opposition from traditional financial elites.","data":[5,5,5,4,10,9,1,3,3,4,1,3,4,5,4,5,5,2,5,3,3,2,0,9,12,5,2,4,3,2,2,9,1,0,4,3,1,7,7,4,5,4,2,4,1,5,2,5,1,8,5,8,5,4,0]},{"label":"Q4 bullrun","topics":"q4,quarter,lock,4th,q1","description":"The messages from twitter suggest that Q4 is expected to be a very significant and potentially profitable time for the crypto industry. There is a lot of excitement and anticipation surrounding Q4, with many believing that it will be a game-changing quarter for businesses and ventures in the industry. The messages also emphasize the importance of staying committed and having strong convictions in order to succeed during this time. Overall, Q4 is seen as a period of opportunity and potential growth for those involved in the crypto industry.","data":[5,5,2,4,7,1,10,2,2,4,7,3,3,6,4,5,8,2,2,15,9,2,6,3,1,7,0,2,8,7,3,5,3,2,2,2,5,11,3,2,3,4,6,2,9,2,2,1,4,2,2,1,2,2,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-91.ts b/priv/repo/major_topics_seed/data-91.ts deleted file mode 100644 index 8904d992a1..0000000000 --- a/priv/repo/major_topics_seed/data-91.ts +++ /dev/null @@ -1,263 +0,0 @@ -export const NARRATIVES = { - labels: [ - '25.09.25', - '26.09.25', - '26.09.25', - '26.09.25', - '26.09.25', - '26.09.25', - '26.09.25', - '26.09.25', - '27.09.25', - '27.09.25', - '27.09.25', - '27.09.25', - '27.09.25', - '27.09.25', - '27.09.25', - '27.09.25', - '28.09.25', - '28.09.25', - '28.09.25', - '28.09.25', - '28.09.25', - '28.09.25', - '28.09.25', - '28.09.25', - '29.09.25', - '29.09.25', - '29.09.25', - '29.09.25', - '29.09.25', - '29.09.25', - '29.09.25', - '29.09.25', - '30.09.25', - '30.09.25', - '30.09.25', - '30.09.25', - '30.09.25', - '30.09.25', - '30.09.25', - '30.09.25', - '01.10.25', - '01.10.25', - '01.10.25', - '01.10.25', - '01.10.25', - '01.10.25', - '01.10.25', - '01.10.25', - '02.10.25', - '02.10.25', - '02.10.25', - '02.10.25', - '02.10.25', - '02.10.25', - '02.10.25', - ], - datasets: [ - { - label: 'BTC price', - topics: 'btc,120k,bitcoin,118k,resistance', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n- Bitcoin's price levels and potential for reaching $150k in October\n- Altcoins preparing for a big move\n- Resistance at the €100k zone for Bitcoin\n- Speculation on Bitcoin reaching $1 million and hyperbitcoinisation\n- Analysis and predictions for Bitcoin's price movements, including potential pullbacks and uptrends\n- Market sentiment and indicators such as NUPL and MVRV\n- Trading strategies and balancing multiple investments during the current market conditions\n\nOverall, the sentiment seems to be bullish on Bitcoin and altcoins, with traders closely monitoring key levels and indicators for potential opportunities.", - data: [ - 31, 8, 22, 18, 40, 83, 64, 21, 24, 28, 24, 52, 9, 38, 28, 21, 28, 16, 15, 21, 14, 21, 52, - 15, 15, 18, 20, 14, 48, 21, 17, 24, 23, 12, 21, 17, 47, 33, 46, 44, 22, 19, 34, 22, 21, 43, - 17, 25, 24, 41, 35, 21, 34, 17, 20, - ], - }, - { - label: 'ZEC', - topics: 'zec,zcash,privacy,altcoins,zro', - description: - "The key topics discussed in the messages from twitter are:\n- Zcash (ZEC) dumping after seeing an update\n- Potential pullback in Long before continuing up\n- Speculation on ZKC being the next big move in the market\n- Discussion on ZEC and its potential for growth\n- Comparison of ZEC trading to Bitcoin\n- Analysis of ZEC's price movement and potential for a reversal\n- Personal regret over not holding onto ZEC when its price increased\n- Discussion on ZRO and its potential for growth\n- Speculation on ZKC being a potential 10-20x investment\n- Debate on the privacy features of Zcash compared to other cryptocurrencies\n- Analysis of ZANO's market performance\n- Comparison of ZKC's volume to other cryptocurrencies\n- Technical analysis on ZKC's RSI indicator\n\nOverall, the messages reflect a mix of speculation, analysis, and personal experiences related to various cryptocurrencies, with a focus on Zcash (ZEC) and ZKC.", - data: [ - 10, 9, 2, 2, 12, 18, 7, 3, 10, 9, 12, 7, 9, 8, 9, 8, 11, 11, 9, 9, 3, 10, 5, 3, 7, 12, 7, 9, - 8, 9, 7, 6, 16, 9, 8, 10, 14, 19, 16, 12, 8, 9, 9, 6, 10, 5, 7, 9, 10, 8, 6, 5, 4, 3, 103, - ], - }, - { - label: 'US government shutdown ', - topics: 'shutdown,government,shut,shutdowns,gov', - description: - 'The messages from twitter suggest that there is a lot of discussion and speculation about the potential government shutdown in the US and how it may impact the markets, including Bitcoin. Some users seem to view the shutdown as a bullish opportunity for Bitcoin, highlighting its resilience compared to traditional government-controlled currencies. There are also mentions of potential market volatility and the impact on economic data releases. Overall, the sentiment seems to be mixed, with some seeing the shutdown as a negative event while others view it as an opportunity for Bitcoin to shine.', - data: [ - 7, 10, 5, 6, 10, 6, 5, 4, 6, 1, 4, 8, 3, 3, 8, 15, 3, 3, 1, 30, 126, 10, 11, 8, 4, 7, 11, 3, - 11, 7, 4, 4, 5, 20, 8, 4, 12, 6, 5, 7, 5, 2, 82, 4, 9, 3, 4, 9, 6, 5, 6, 1, 5, 1, 1, - ], - }, - { - label: 'AI', - topics: 'ai,agents,models,ais,intelligence', - description: - 'The least controversial AI product launch this week is on NEAR, offering a better future for AI that is accessible to everyone. The key takeaway is to take your time to brainstorm features and architecture before rushing into implementation, as we are thriving in the AI age. The potential for AI to create category leaders and revolutionize industries is evident, with Deutsche Bank even stating that AI spending is crucial for avoiding a recession in 2025. However, it is important to remember that AI implementation should focus on efficiency and business outcomes, rather than just replacing human jobs. Overall, the future of AI is promising, but it is essential to approach it with caution and strategic planning.', - data: [ - 3, 19, 11, 9, 17, 10, 11, 9, 7, 16, 9, 15, 16, 15, 10, 8, 6, 16, 3, 6, 7, 6, 4, 15, 12, 8, - 12, 2, 6, 6, 6, 4, 18, 6, 9, 3, 13, 10, 9, 12, 13, 9, 10, 7, 6, 7, 17, 13, 7, 12, 6, 9, 6, - 9, 7, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,4k,reclaim,resistance', - description: - "Based on the messages from twitter, it seems that there is a lot of discussion and analysis surrounding the price movements of Ethereum ($ETH). There are mentions of resistance and support levels, as well as predictions for potential price targets such as $4,500 and $4,200. Some users are optimistic about the future price appreciation of Ethereum, while others are cautious about potential retracements and corrections. Overall, there is a mix of bullish and bearish sentiment regarding Ethereum's price action in the near term.", - data: [ - 7, 3, 7, 5, 4, 18, 12, 6, 7, 9, 7, 2, 5, 11, 10, 7, 9, 3, 9, 17, 2, 6, 15, 6, 7, 4, 4, 9, - 12, 4, 2, 5, 5, 3, 4, 3, 9, 4, 6, 25, 10, 9, 12, 5, 6, 17, 8, 15, 14, 8, 4, 4, 10, 1, 6, - ], - }, - { - label: 'XPL', - topics: 'plasma,xpl,aave,tvl,trillions', - description: - "The attention on Plasma in the crypto community seems to be focused on its recent surge in value, potential for future growth, and the various opportunities it offers for trading and investment. There is discussion about the launch of new tokens on the Plasma network, the potential for creating memecoin LPs on Plasma, and the impact of billionaire backing on the project's success. Additionally, there are mentions of issues with wallets and transfers related to Plasma, as well as the launch of new projects and partnerships within the Plasma ecosystem. Overall, sentiment around Plasma appears to be positive, with many users excited about its potential for growth and innovation in the crypto industry.", - data: [ - 6, 7, 8, 9, 5, 10, 9, 5, 2, 1, 10, 8, 10, 5, 9, 3, 7, 14, 3, 7, 6, 2, 8, 9, 8, 8, 5, 10, 5, - 2, 2, 1, 7, 4, 8, 31, 4, 8, 5, 10, 5, 7, 9, 7, 14, 12, 8, 5, 10, 4, 14, 6, 4, 8, 4, - ], - }, - { - label: 'DeFi', - topics: 'defi,tradfi,yield,1inch,yields', - description: - 'The messages from twitter discuss various aspects of the DeFi industry, including the potential for exponential growth, new DeFi protocols, partnerships bringing funding into DeFi projects, and the evolution of DeFi. There is also mention of the importance of scaling DeFi and building on existing successful strategies. Additionally, there are references to upcoming events and discussions on real-world assets redefining DeFi. Overall, the messages highlight the growing interest and opportunities in the DeFi space.', - data: [ - 4, 10, 9, 6, 7, 8, 11, 8, 6, 8, 9, 3, 7, 3, 9, 7, 5, 12, 9, 4, 3, 4, 0, 8, 16, 6, 5, 9, 2, - 10, 9, 7, 8, 8, 6, 6, 5, 10, 10, 10, 7, 3, 2, 5, 4, 7, 8, 5, 7, 3, 9, 3, 6, 7, 3, - ], - }, - { - label: 'XPL price', - topics: 'xpl,trillions,long,invalidation,longed', - description: - 'Overall, the sentiment around $XPL seems to be mixed, with some investors optimistic about a potential price increase while others are cautious about a potential dip. The volatility of the market is causing uncertainty among investors, with some expecting sell pressure and others looking for buying opportunities. It is important to closely monitor the market and make informed decisions based on the current trends and news surrounding $XPL.', - data: [ - 6, 3, 3, 6, 5, 11, 12, 6, 7, 3, 3, 4, 4, 4, 2, 5, 7, 11, 5, 16, 10, 5, 7, 12, 4, 6, 3, 12, - 21, 4, 6, 2, 3, 6, 5, 7, 6, 5, 5, 5, 5, 6, 10, 2, 4, 6, 2, 9, 6, 7, 6, 2, 7, 4, 28, - ], - }, - { - label: 'Perp DEX meta', - topics: 'perp,dex,dexs,perps,dexes', - description: - 'The messages from twitter suggest that the topic of discussion is the ongoing trend of perp dex meta in the crypto industry. There are mentions of various perp dex tokens, partnerships with big names like J.P. Morgan Freeman, and the competition among different perp dex platforms. The messages also touch upon the importance of learning how to trade in this environment and the potential risks involved. Overall, it seems like the crypto community is actively engaged in the perp dex meta and its implications for the market.', - data: [ - 2, 7, 2, 4, 2, 14, 4, 3, 4, 5, 5, 3, 13, 4, 5, 6, 5, 9, 4, 3, 7, 4, 9, 6, 5, 6, 7, 3, 5, 2, - 9, 2, 18, 9, 8, 53, 8, 8, 10, 4, 3, 4, 7, 4, 4, 6, 3, 4, 4, 2, 7, 6, 3, 5, 5, - ], - }, - { - label: 'Token2049', - topics: 'token2049,booth,singapore,token2049singapore,marina', - description: - "The key topics discussed in the messages from twitter are:\n1. Participation and activities at TOKEN2049 in Singapore\n2. Networking opportunities with various crypto teams and individuals\n3. Discussions on leverage, real-time on-chain subledgers, and future of crypto\n4. Partnerships and collaborations with different events and organizations\n5. Focus on treasury management, API trading, and backend trading engine\n6. Presence of various crypto teams and individuals at TOKEN2049\n7. Panels, discussions, and announcements related to DeFi, tokenization, and digital assets\n8. Exploration of new opportunities and connections in the crypto industry\n9. Future vision and themes aligning with Nuklai's vision for the future\n10. Showcase of how gold, powered by blockchain, is shaping the future of digital assets.", - data: [ - 2, 3, 11, 3, 5, 12, 2, 8, 7, 9, 4, 6, 2, 1, 17, 4, 5, 4, 2, 2, 4, 13, 3, 4, 4, 13, 5, 8, 3, - 1, 4, 5, 4, 9, 5, 3, 3, 5, 8, 5, 2, 2, 3, 8, 10, 6, 15, 2, 9, 1, 5, 4, 14, 3, 4, - ], - }, - { - label: 'GameFi', - topics: 'games,game,gaming,playing,gamers', - description: - "The messages from twitter mainly focus on various gaming communities and games, such as Atia's Legacy, BattleRiseGame, and the excitement surrounding new game launches. There is also mention of the Blockchain Game Alliance welcoming a new member, BUFF_Team, and the importance of loyalty in gaming ecosystems. Additionally, there is discussion about game development events like Avalanche Game Jams with LaunchLoop.\n\nIn terms of the topic of DAOs disrupting the gaming space, there is no direct mention of DAOs in the provided messages. However, the overall sentiment from the messages suggests a strong interest and engagement in the gaming industry, which could potentially be impacted by the introduction of DAOs in the future.", - data: [ - 6, 4, 5, 3, 6, 7, 5, 4, 3, 7, 4, 1, 7, 4, 7, 5, 1, 39, 11, 6, 4, 5, 2, 4, 5, 3, 5, 6, 10, 3, - 2, 3, 7, 5, 4, 31, 2, 3, 5, 3, 2, 5, 5, 3, 1, 0, 11, 3, 5, 5, 2, 5, 4, 4, 0, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,painting,paint', - description: - '\nOverall, the messages from twitter focus on various aspects of art within the crypto industry. From discussing the strategy of art collection to showcasing different artists and their works, there is a clear interest in the intersection of art and cryptocurrency. The community seems to appreciate the creativity and talent of artists, as well as the unique ways in which art can be digitalized and shared within the crypto space. Additionally, there is a sense of support for artists and their work, with mentions of collecting pieces and attending art events. The community also values the history and influence of renowned artists, such as Frank Frazetta, and recognizes the importance of showcasing and preserving art through collectible magazines. Overall, the messages convey a strong appreciation for art and its role within the crypto industry.', - data: [ - 1, 5, 60, 1, 5, 1, 2, 3, 10, 6, 11, 2, 7, 14, 2, 8, 8, 2, 4, 2, 4, 5, 4, 3, 3, 3, 4, 5, 8, - 3, 5, 3, 8, 2, 12, 4, 4, 0, 1, 4, 2, 1, 3, 5, 5, 8, 2, 4, 1, 3, 9, 3, 5, 6, 0, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,tokenization,novastroxyz,tokenized', - description: - 'The key topics discussed in the RWA (Real World Assets) community on Twitter include the tokenization of real-world assets, the growth of RWA tokenization, the democratization of knowledge and access to finance, the importance of liquidity and compliance in RWA tokenization, the potential of RWA tokenization to unlock new opportunities for ownership and investment access, and the upcoming opportunities in the RWA market, estimated to be a $16 trillion opportunity. Additionally, there is a focus on the importance of choosing the right chain for token issuance, the potential for RWA tokenization to reshape global markets, and the need for expert advisory and infrastructure to support RWA tokenization. Various industry experts and leaders are also highlighted as shaping the future of RWA, with upcoming events and conferences discussing the future of RWA tokenization.', - data: [ - 0, 3, 7, 1, 6, 6, 3, 5, 6, 9, 4, 5, 9, 6, 10, 4, 0, 6, 3, 4, 4, 1, 4, 4, 11, 5, 4, 7, 1, 10, - 6, 5, 7, 6, 10, 7, 7, 6, 10, 3, 6, 5, 5, 2, 11, 6, 7, 2, 15, 6, 1, 2, 2, 5, 1, - ], - }, - { - label: 'XRP price', - topics: 'xrp,ripple,breakout,etf,ripples', - description: - "The key topics discussed in the messages from twitter regarding XRP include:\n- Speculation on XRP price movements, with predictions of a potential breakout above $4\n- Analysis of technical indicators such as Elliott Wave and Bollinger Bands to predict price movements\n- Discussion of potential catalysts for a bullish breakout, such as ETF approvals and leadership shifts within Ripple\n- Concerns about short-term price dips and capitulation, but overall bullish outlook for XRP\n- Focus on long-term outlook and potential for XRP to reach new all-time highs\n- Speculation on XRP's potential to outperform other cryptocurrencies like Bitcoin and Ethereum\n- Analysis of support and resistance levels, with a focus on key levels like $2.70, $2.94, and $3.50\n- Discussion of market sentiment and potential triggers for a bullish rally in the near future\n\nOverall, the messages suggest a mix of optimism and caution regarding XRP's price movements, with a focus on technical analysis, market trends, and potential catalysts for future price movements.", - data: [ - 11, 4, 9, 5, 2, 5, 2, 6, 4, 9, 7, 7, 4, 9, 5, 6, 5, 3, 2, 7, 2, 7, 21, 7, 3, 3, 7, 4, 8, 4, - 4, 6, 2, 5, 1, 1, 5, 5, 8, 4, 8, 2, 9, 4, 4, 8, 7, 5, 4, 6, 4, 1, 2, 2, 6, - ], - }, - { - label: 'Hypurr NFT', - topics: 'hypurr,nfts,nft,hyperliquid,floor', - description: - 'The key topic currently discussed in the crypto community on social media is the Hypurr NFT collection. There is excitement surrounding the recent sales of Hypurr NFTs, with one selling for $470,509 and another for $224,300. The community is also discussing the potential future value of Hypurr NFTs, with some speculating that it could become the most expensive NFT collection in history. Additionally, there is talk about airdrops of Hypurrs to holders of certain HyperEVM protocols, as well as the alignment and potential repricing of Hypurr NFTs in the future. Overall, the community is highly engaged and enthusiastic about the Hypurr NFT collection.', - data: [ - 6, 4, 5, 3, 1, 1, 3, 3, 4, 2, 4, 3, 4, 14, 2, 4, 13, 6, 1, 8, 2, 0, 11, 21, 4, 6, 7, 5, 2, - 5, 3, 5, 3, 5, 5, 3, 5, 5, 7, 5, 5, 2, 1, 9, 2, 4, 3, 7, 6, 4, 4, 4, 2, 3, 3, - ], - }, - { - label: 'SOL price', - topics: 'sol,solana,200,250,230', - description: - "The key topics discussed in the messages from twitter are:\n- $SOL potential for a breakout and second expansion wave\n- Days Sales Outstanding (DSO) and its importance in cash flow management\n- Pantera's Paul Veradittakit's views on $SOL and institutional capital recognition\n- Solana's cup-and-handle pattern and potential rally ahead\n- Speculation on Solana's bottom and potential relief rally\n- Analysts' expectations on SEC decisions regarding Solana funds\n- Updates on Solana's price movements and support levels\n- Discussion on conflicting signals and divergences in $SOL price movements\n\nOverall, the messages indicate a positive sentiment towards Solana ($SOL) and anticipation for potential price movements and developments in the near future.", - data: [ - 1, 5, 1, 0, 2, 5, 7, 8, 7, 9, 3, 5, 4, 6, 4, 4, 4, 3, 3, 1, 2, 0, 12, 2, 2, 3, 4, 5, 10, 5, - 3, 6, 5, 4, 4, 5, 10, 3, 6, 4, 4, 7, 8, 9, 4, 7, 6, 2, 3, 9, 4, 7, 4, 5, 1, - ], - }, - { - label: 'ASTER price', - topics: 'aster,wedge,leg,cope,trendline', - description: - 'The key topics currently being discussed in the messages from twitter about $ASTER include:\n- Speculation on the price of $ASTER reaching $2.15 and potentially $3 in the short term\n- Predictions for the price of $ASTER in the future, with guesses ranging from $4.20 to above $40\n- Analysis of technical indicators and chart patterns for $ASTER, with some suggesting a potential breakout and others warning of downside risk\n- Discussion of market manipulation and potential rugpulls involving $ASTER\n- Mention of an upcoming airdrop for $ASTER and its potential impact on the price\n- Calls for caution and patience in trading $ASTER, with some users advising against buying at current levels\n\nOverall, the sentiment around $ASTER appears to be mixed, with some users bullish on its potential for growth while others are more cautious about the current market conditions.', - data: [ - 7, 1, 2, 13, 1, 14, 7, 6, 1, 4, 4, 3, 4, 3, 7, 6, 9, 4, 5, 9, 3, 3, 8, 4, 2, 3, 5, 4, 19, 5, - 3, 2, 1, 5, 2, 2, 6, 3, 2, 4, 4, 0, 6, 3, 3, 4, 8, 4, 4, 7, 2, 2, 3, 4, 1, - ], - }, - { - label: 'Gold and silver', - topics: 'gold,record,silver,alltime,reuters', - description: - 'The key topic discussed in the messages from twitter is the significant rise in gold prices, with multiple mentions of gold hitting record highs and reaching levels not seen before. The messages also mention factors such as the US government shutdown, Fed rate cut bets, geopolitical concerns, and safe-haven demand driving the surge in gold prices. There are also warnings of potential corrections due to gold being overbought and trading significantly above its 200DMA. Overall, the sentiment towards gold in the crypto community seems to be bullish, with many investors turning to gold as a safe-haven asset in volatile markets.', - data: [ - 4, 2, 7, 3, 2, 6, 2, 5, 4, 5, 2, 1, 3, 1, 1, 1, 6, 8, 3, 19, 1, 3, 21, 1, 4, 4, 1, 1, 3, 2, - 4, 7, 3, 2, 6, 5, 10, 3, 7, 6, 8, 3, 4, 6, 2, 3, 5, 2, 3, 2, 3, 5, 5, 3, 4, - ], - }, - { - label: 'Bitcoin fundamentals', - topics: 'bitcoiners,bitcoin,money,economics,bitcoins', - description: - "The messages from twitter highlight the intense passion and belief in the fundamental value of Bitcoin within the crypto community. Bitcoin is seen as a superior form of money, with its singleness-of-purpose being its strength. The community believes that Bitcoin is a revolutionary invention that can fix the world's financial systems. There is a strong emphasis on the importance of understanding Bitcoin fully, as those who do are considered alpha apex predators in the financial world. The messages also touch on the ongoing debates and tensions within the crypto community, such as the divide between Bitcoin and other cryptocurrencies like Zcash and Monero. Overall, the messages convey a sense of determination and resilience in the face of challenges and opposition from traditional financial elites.", - data: [ - 5, 5, 5, 4, 10, 9, 1, 3, 3, 4, 1, 3, 4, 5, 4, 5, 5, 2, 5, 3, 3, 2, 0, 9, 12, 5, 2, 4, 3, 2, - 2, 9, 1, 0, 4, 3, 1, 7, 7, 4, 5, 4, 2, 4, 1, 5, 2, 5, 1, 8, 5, 8, 5, 4, 0, - ], - }, - { - label: 'Q4 bullrun', - topics: 'q4,quarter,lock,4th,q1', - description: - 'The messages from twitter suggest that Q4 is expected to be a very significant and potentially profitable time for the crypto industry. There is a lot of excitement and anticipation surrounding Q4, with many believing that it will be a game-changing quarter for businesses and ventures in the industry. The messages also emphasize the importance of staying committed and having strong convictions in order to succeed during this time. Overall, Q4 is seen as a period of opportunity and potential growth for those involved in the crypto industry.', - data: [ - 5, 5, 2, 4, 7, 1, 10, 2, 2, 4, 7, 3, 3, 6, 4, 5, 8, 2, 2, 15, 9, 2, 6, 3, 1, 7, 0, 2, 8, 7, - 3, 5, 3, 2, 2, 2, 5, 11, 3, 2, 3, 4, 6, 2, 9, 2, 2, 1, 4, 2, 2, 1, 2, 2, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-92.json b/priv/repo/major_topics_seed/data-92.json deleted file mode 100644 index 8331cd431f..0000000000 --- a/priv/repo/major_topics_seed/data-92.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["02.10.25","03.10.25","03.10.25","03.10.25","03.10.25","03.10.25","03.10.25","03.10.25","04.10.25","04.10.25","04.10.25","04.10.25","04.10.25","04.10.25","04.10.25","04.10.25","05.10.25","05.10.25","05.10.25","05.10.25","05.10.25","05.10.25","05.10.25","05.10.25","06.10.25","06.10.25","06.10.25","06.10.25","06.10.25","06.10.25","06.10.25","06.10.25","07.10.25","07.10.25","07.10.25","07.10.25","07.10.25","07.10.25","07.10.25","07.10.25","08.10.25","08.10.25","08.10.25","08.10.25","08.10.25","08.10.25","08.10.25","08.10.25","09.10.25","09.10.25","09.10.25","09.10.25","09.10.25","09.10.25","09.10.25"],"datasets":[{"label":"Chinese coins","topics":"chinese,china,chinas,wechat,english","description":"The key topics discussed in the messages from twitter include:\n- The influence of China on the crypto industry, particularly in relation to BNB and other altcoins\n- The use of Chinese language and culture in the crypto space, including references to learning Chinese and Chinese traders\n- The impact of China on global trade and industrial policy, such as the weaponization of the rare earth supply chain\n- The Xi Jinpooh meme and the Chinese government's censorship of online content\n- The development of viral Chinese memes and their impact on social media platforms\n- The potential for a Chinese-based western mega film studio to dominate the entertainment industry\n- The changing status of China as a developing country and its implications for international trade negotiations\n- The collapse of a China spy case and its potential impact on UK-China relations\n\nOverall, the messages highlight the significant role that China plays in the crypto industry and global affairs, as well as the cultural and political dynamics at play in the Chinese online space.","data":[9,10,21,14,9,12,7,6,50,20,13,12,12,11,10,10,14,13,12,7,14,15,13,13,11,15,29,6,15,8,22,3,19,17,10,8,10,17,17,16,10,6,11,16,9,15,14,22,13,20,10,13,13,21,12]},{"label":"Bitcoin vs fiat","topics":"fiat,bitcoiners,bitcoin,money,satoshi","description":"The messages from twitter revolve around the idea of Bitcoin being the future of money and the flaws of the fiat system. There is a strong belief in Bitcoin as a form of currency that is simple, secure, and valuable. The concept of Hyperbitcoinization, where Bitcoin becomes the world's only money, is also discussed. Additionally, there is a focus on the importance of understanding Bitcoin and its value, as well as the potential for Bitcoin to revolutionize the financial system through decentralized finance (DeFi). Overall, the messages convey a sense of optimism and confidence in Bitcoin as a superior form of money compared to traditional fiat currencies.","data":[1,10,11,14,22,28,11,5,14,6,10,10,15,12,8,17,22,11,6,5,7,13,7,13,18,7,10,10,13,5,12,19,5,6,11,10,8,13,8,5,14,9,8,10,11,13,15,8,4,9,18,8,4,8,2]},{"label":"ETH price","topics":"eth,ethereum,5000,5k,resistance","description":"The key topic currently being discussed in the crypto community on Twitter is the price of Ethereum (ETH). There is excitement and optimism surrounding ETH reaching $5,000, with many users predicting a bullish breakout towards this milestone. Technical analysis and patterns are being used to support these predictions, with mentions of resistance levels turning into key supports and potential price discovery on the horizon. Additionally, there is discussion about the potential for ETH to reach even higher price targets in the future, with some users speculating on a super cycle that could see ETH reaching $30,000 - $80,000 by 2027. Overall, sentiment towards ETH is positive, with users anticipating further upside and bullish momentum in the market.","data":[14,3,5,5,6,23,17,3,14,10,11,18,8,7,14,13,15,6,8,14,5,2,19,13,6,4,6,11,14,5,4,2,7,4,4,5,18,3,12,12,9,7,17,1,5,16,9,12,7,6,11,5,9,6,5]},{"label":"ASTER ","topics":"aster,coded,airdrop,asterdex,dust","description":"The key topics currently being discussed in the crypto community on Twitter include the potential for ASTER to trade above $4, the utility of ASTER provided by Crypto Autos, the upcoming listing of ASTER, potential buybacks that could lead to significant price increases, and the recent surge in trading volume for ASTER. There is also discussion about holding ASTER until it reaches $10, as well as speculation about future price movements and resistance levels. Additionally, there is mention of a recent asteroid passing close to Earth and the impact of emotions on trading decisions. Overall, the sentiment appears to be bullish on ASTER with expectations of price increases and positive market movements.","data":[6,12,8,57,4,16,5,10,14,11,9,9,12,8,9,17,17,15,7,9,9,10,10,3,4,6,13,9,7,5,6,5,7,7,8,1,5,9,3,3,5,11,7,7,5,7,13,6,9,12,8,6,4,1,4]},{"label":"God","topics":"lord,holy,god,jesus,divine","description":"The messages from twitter are filled with references to God, prayer, faith, and power dynamics. There is a strong emphasis on seeking strength and guidance from a higher power, with mentions of praying for financial success and overcoming sins. The messages also touch on themes of humility, ego, and the importance of serving a higher purpose.\n\nOverall, the messages convey a sense of spiritual warfare and the belief in divine intervention in one's life. The mention of various religious texts and quotes suggests a deep connection to faith and a belief in the power of prayer. The messages also hint at a belief in a higher purpose and a desire to dominate reality in service of a greater good.","data":[7,7,7,10,10,9,2,5,13,12,4,3,15,5,8,9,7,14,7,30,10,9,6,12,14,5,9,3,5,10,10,2,7,4,23,6,24,6,8,13,12,6,7,9,5,11,8,8,4,5,8,11,8,13,2]},{"label":"Sora videos","topics":"sora,videos,video,youtube,content","description":"The key topics discussed in the messages from twitter are:\n1. The advancement of AI-generated videos and their indistinguishability from reality.\n2. Discussions about Sora content policies and the accuracy of Sora with physics.\n3. The use of AI for image and video generation for different purposes.\n4. Collaboration and community incentives in video creation tools like Everlyn_ai.\n5. The potential for AI to automatically create videos tailored to individual tastes.\n6. Speculation on the future of AI video apps and their revenue generation.\n7. The success story of MrBeast and setting goals for growth on social media platforms.\n8. The release of new models like Sora 2 for video creation and image generation.\n9. The use of numbers and symbols in video titles for attention-grabbing purposes.","data":[10,6,9,3,10,8,4,4,6,8,7,2,4,11,7,13,11,4,9,8,7,7,7,9,6,4,9,8,13,2,7,2,10,10,8,6,8,9,9,4,4,7,5,23,3,4,7,11,1,7,7,59,19,5,10]},{"label":"Gaza peace deal","topics":"hamas,gaza,peace,israel,deal","description":"The key topic discussed in the messages from twitter is the breaking news of a peace deal being reached between Hamas and Israel in Gaza. The messages highlight various aspects of the deal, including the handover of power to a new authority of Palestinian technocrats, the approval of an arms embargo by the Spanish parliament, celebrations in the streets of Khan Younis, and statements from US President Donald Trump regarding the ceasefire. The messages also mention the involvement of various world leaders, including Trump, in the negotiations and the importance of accepting the peace plan put forward by Trump. Additionally, there are references to guarantees received by Hamas from US and other mediators, as well as the potential consequences if Hamas does not accept the peace plan. Overall, the messages indicate a significant development in the ongoing conflict between Hamas and Israel in Gaza.","data":[7,30,21,5,6,4,7,26,6,3,5,2,11,4,13,8,2,1,3,4,4,9,11,5,4,3,15,2,1,3,7,3,7,15,10,8,10,8,8,22,13,39,12,5,3,3,13,3,6,4,6,3,9,5,3]},{"label":"NFL football","topics":"nfl,football,jets,joe,coach","description":"The key topics discussed in the messages from twitter are:\n1. Fantasy football excitement and analysis, including players' performances and game predictions.\n2. Betting lines and predictions for upcoming games, including the Patriots and Texans games.\n3. Speculation about Tyreek Hill's career as the fastest player in the NFL.\n4. Analysis of coaching styles and effectiveness in the NFL.\n5. Trade news between the Browns and Bengals in the NFL.\n6. Player contract extensions and trade updates in the NFL.\n7. Aaron Rodgers' durability compared to other AFC North quarterbacks.\n8. Heisman predictions and discussions about NFL quarterbacks.\n9. Julian Brown's innovative clean-burning fuel creation from plastic waste.\n10. Gambling picks and predictions for NFL games, including the Rams' overtime win on Thursday Night Football.","data":[17,7,5,13,12,1,7,8,6,6,2,3,6,9,9,10,9,12,15,11,7,9,9,7,3,10,4,10,14,6,3,4,5,9,12,16,2,2,7,8,6,11,4,4,7,7,5,15,13,9,6,6,12,18,8]},{"label":"GameFi","topics":"gaming,games,game,gamefi,gameplay","description":"The messages from twitter are mainly discussing various crypto and web3 games, such as Solana, Decimated, and Block Stranding. There is excitement about new game releases, gameplay experiences, and upcoming events like Gamescom Asia. Players are sharing their favorite games and experiences, as well as discussing the potential of web3 gaming. Overall, the crypto gaming community seems engaged and enthusiastic about the future of gaming on blockchain technology.","data":[4,7,6,4,11,5,8,5,9,9,3,5,6,6,9,10,7,11,50,6,5,4,3,11,4,7,6,1,2,8,4,5,14,10,4,22,6,6,7,9,5,4,9,4,12,3,6,1,7,4,4,8,10,3,4]},{"label":"Monad airdrop","topics":"monad,mon,airdrop,mainnet,claim","description":"The main topics currently discussed in the crypto community on Twitter include the upcoming mainnet launch of Zcash, the anticipation of new assets from Monad on the marketplace, the excitement surrounding the Monad airdrop, and the potential for significant growth in the value of Monad. There is also discussion about the Apriori project building a liquid staking platform for Monad, the progress of the Monad airdrop claim loading bar, and speculation about the timing of the Monad mainnet launch. Additionally, there are mentions of other projects such as Opensea, Abstract, Lighter, Zerion, base, metamask, lz s2, and harvest season. Insider trading concerns and the potential impact on the market are also being discussed. Overall, there is a mix of excitement, anticipation, and speculation surrounding the developments in the crypto industry.","data":[6,30,2,4,4,3,5,3,17,3,0,12,3,4,8,5,4,7,18,4,9,9,4,5,1,5,4,17,2,11,13,42,2,14,7,6,11,7,3,1,4,2,4,1,5,5,8,8,7,10,6,7,4,4,6]},{"label":"Memecoins","topics":"meme,memes,memecoin,memecoins,plortalai","description":"The messages from twitter are mainly discussing the rise of memecoins and the potential for them to 10x in value. There is also mention of the importance of community-driven memecoins over VC-backed ones for long-term success. The messages highlight the key factors that contribute to a memecoin's pump, such as hype, virality, strong identity, low market cap, and social engagement. Additionally, there is a discussion about the cultural significance of memes and their role in the crypto industry. Overall, the messages suggest a growing interest and investment in memecoins within the crypto community.","data":[4,6,6,8,11,3,7,7,3,10,2,6,4,7,2,7,5,4,4,11,6,5,4,8,4,4,4,6,10,6,95,4,15,4,4,6,5,8,2,5,8,6,1,1,3,6,4,5,5,10,0,3,16,2,2]},{"label":"ZEC price","topics":"zec,zcash,privacy,zen,monero","description":"Zeckoin (ZEC) is currently a hot topic in the crypto community, with many users discussing its potential for growth and comparing it to other coins like XRP and LTC. The recent surge in price from $54 to $147 in just 7 days has caught the attention of many investors, with some predicting a potential rise to $200 in the near future. The development of shielded pools and the improved user experience with Zashi have also been highlighted as positive factors for ZEC. However, there are also concerns about market manipulation and the lack of listings on major exchanges like Bybit. Overall, the sentiment towards ZEC seems positive, with many users believing in its long-term potential despite some skepticism and criticism.","data":[3,2,3,4,9,8,12,6,7,5,6,6,2,6,9,3,7,5,9,5,3,4,4,9,9,5,5,5,7,5,9,3,7,5,7,7,10,8,15,6,10,4,7,5,2,11,5,10,10,4,3,4,5,3,47]},{"label":"BTC all-time-high","topics":"ath,aths,btc,new,bitfinex","description":"The key topic currently being discussed in the crypto community on Twitter is the new all-time high (ATH) of Bitcoin (BTC). Many users are excited about BTC reaching new ATHs and are speculating on when the next one will occur. Some are discussing the potential impact on altcoins, while others are considering the importance of insuring their Bitcoin holdings during ATHs. Overall, there is a sense of optimism and anticipation surrounding Bitcoin's performance in the market.","data":[7,1,9,18,0,20,19,6,8,5,2,10,2,1,1,5,11,2,3,5,2,6,22,2,4,2,6,6,6,10,1,2,33,1,3,5,2,6,8,4,6,3,10,9,1,3,8,9,12,4,6,5,11,5,2]},{"label":"Art","topics":"art,artist,artists,painting,paint","description":"In the crypto industry, discussions on social media platforms like Twitter often revolve around various topics related to art and creativity. Artists are sharing their experiences, seeking advice, and showcasing their work. There is a mix of traditional and digital art being discussed, with a focus on techniques, mediums, and the creative process.\n\nSome artists are expressing frustration with the current state of the art world, particularly with the prevalence of AI-generated texts and the financialization of art. They emphasize the importance of staying true to oneself as an artist and focusing on personal growth and improvement.\n\nOverall, the crypto community seems to value authenticity, creativity, and individual expression in the world of art. Artists are encouraged to embrace their unique style, seek connection with their true selves, and not get caught up in comparisons or trends. The community also emphasizes the importance of high-resolution digital art and the potential for immersive, gamified art experiences.","data":[1,10,72,7,5,2,2,3,2,10,6,3,6,5,4,10,4,5,2,1,4,4,6,8,7,2,0,3,6,3,2,1,7,4,14,10,4,5,4,7,1,3,4,7,4,7,6,4,5,6,5,5,10,8,0]},{"label":"XRP price","topics":"xrp,ripple,xlm,descending,breakout","description":"$XRP, also known as Ripple, is a cryptocurrency that has been the subject of much discussion and speculation on social media platforms like Twitter. The messages from twitter reveal a mix of opinions about $XRP, with some users expressing skepticism about its value and purpose, while others are more optimistic about its potential for growth.\n\nOne user mentions that $XRP had a hyped bull run in the past, but questions its meaningful change and purpose in the current crypto landscape. However, another user highlights the potential for $XRP to reach new all-time highs soon, indicating a positive outlook for the cryptocurrency.\n\nThe messages also touch on institutional adoption of $XRP, with CME preparing regulated options for the cryptocurrency, signaling growing demand from institutional investors. Additionally, there are discussions about potential price targets for $XRP, with some analysts predicting a significant rally in the near future.\n\nOverall, the sentiment around $XRP in the crypto community seems to be mixed, with some users questioning its value and purpose, while others remain optimistic about its potential for growth and adoption.","data":[0,6,11,11,6,8,7,8,10,10,5,4,6,6,5,14,7,3,2,4,2,7,14,5,5,4,7,7,9,2,4,6,2,2,2,2,10,5,8,9,4,6,16,2,5,8,3,5,2,6,3,4,2,5,9]},{"label":"NFT","topics":"nft,nfts,collections,strategy,tokenworks","description":"The messages from twitter discuss the resurgence of interest in NFTs, with some users expressing excitement about the potential for NFTs to explode again. There is also mention of NFT strategies and projects, with some users praising the innovation in the space. However, there are also concerns raised about the demand for NFT projects and the need for better research and safety measures when evaluating NFT projects.\n\nOverall, the sentiment towards NFTs seems positive, with users acknowledging the potential for growth and the importance of foundational communities and projects in the space. There is also mention of the need for better fractionalization options for NFTs and the potential for NFTs to be programmable liquidity machines under the right conditions.\n\nIn conclusion, the messages from twitter reflect a mix of excitement, caution, and optimism about the future of NFTs in the crypto industry.","data":[2,3,3,4,10,2,6,7,3,6,8,2,5,1,4,8,8,4,3,5,2,9,2,11,8,10,2,2,10,3,3,1,10,9,4,9,3,13,7,6,4,4,5,6,3,13,4,13,14,5,2,3,5,3,2]},{"label":"Gold price","topics":"4000,gold,ounce,4k,golds","description":"The key topic currently being discussed in the crypto industry social media accounts and communities is the significant rise in the price of gold, with it surpassing $4,000 per ounce. Many are discussing the implications of this milestone, with some predicting further increases in the future. The surge in gold prices is being attributed to factors such as US government shutdown fears, rate cut expectations, and a rush to safety amid global turmoil. Some are comparing the rise in gold prices to the potential impact on Bitcoin as a store of value. Overall, the discussion around gold hitting $4,000 is dominating the conversation in the crypto industry social media space.","data":[3,1,8,3,1,13,5,5,2,4,5,5,3,1,3,4,3,8,4,27,0,2,25,2,5,3,0,0,3,5,4,4,12,4,7,4,16,3,9,4,8,3,7,8,6,4,3,5,7,2,5,1,3,2,3]},{"label":"DeFi","topics":"defi,networknoya,yield,protocols,strategies","description":"The messages from twitter highlight the ongoing evolution and growth of DeFi (Decentralized Finance). Key points mentioned include the power of DeFi numbers surpassing claims, the importance of being open and built to last, the focus on incentives, speed, and permissionlessness, and the continuous improvement of DeFi over time. The future of DeFi is seen as not just trading, but also saving, with vaults playing a crucial role. Privacy and compliance are also emphasized as important factors for the future of DeFi. The messages also touch on the importance of trust in DeFi, the need for stronger structure and resilience, and the potential for mass adoption through improved user experience. Overall, the messages convey a sense of optimism and excitement about the potential of DeFi and its continued growth and innovation.","data":[4,6,4,2,5,3,6,4,4,2,6,5,4,4,12,8,4,10,1,1,7,2,2,8,9,4,5,4,10,3,4,3,2,5,4,5,3,10,7,4,4,5,4,3,3,12,6,3,8,6,12,1,4,1,7]},{"label":"Limitless presale","topics":"trylimitless,limitless,allocation,kaito,sale","description":"The key topic discussed in the messages from twitter is the record-breaking $200M pledged for @trylimitless on the Kaito Launchpad. The project was oversubscribed by 200x, surpassing the previous record of $75M pledged. The community sale saw high participation and excitement, with predictions of allocations reaching $100k for some participants. The project is backed by Coinbase Ventures and has seen significant volume and interest in prediction markets. Overall, the sentiment towards @trylimitless is positive, with many users eager to participate in the community sale and engage in trading activities on the platform.","data":[3,12,1,4,5,2,3,2,4,6,4,9,3,4,3,3,4,1,5,4,2,2,3,9,4,2,3,10,2,6,6,4,3,9,5,12,13,7,9,2,7,1,0,1,1,5,4,2,8,6,4,5,0,1,10]},{"label":"XPL price","topics":"xpl,trillions,cents,longing,underwater","description":"Overall, the sentiment around $XPL seems to be mixed, with some users believing it is a good entry opportunity while others are skeptical about its potential. There is discussion about the price volatility and the possibility of a significant price increase in the future. Some users are optimistic about the project's potential, while others are more cautious. It is clear that there is a lot of speculation and differing opinions surrounding $XPL within the crypto community.","data":[2,6,2,2,2,5,5,4,6,4,4,2,2,3,1,6,3,4,0,12,4,1,4,2,3,2,1,8,11,6,2,0,0,3,5,4,6,5,4,4,5,1,3,6,3,8,9,7,7,5,4,3,3,0,16]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-92.ts b/priv/repo/major_topics_seed/data-92.ts deleted file mode 100644 index a54f4dcbd8..0000000000 --- a/priv/repo/major_topics_seed/data-92.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '02.10.25', - '03.10.25', - '03.10.25', - '03.10.25', - '03.10.25', - '03.10.25', - '03.10.25', - '03.10.25', - '04.10.25', - '04.10.25', - '04.10.25', - '04.10.25', - '04.10.25', - '04.10.25', - '04.10.25', - '04.10.25', - '05.10.25', - '05.10.25', - '05.10.25', - '05.10.25', - '05.10.25', - '05.10.25', - '05.10.25', - '05.10.25', - '06.10.25', - '06.10.25', - '06.10.25', - '06.10.25', - '06.10.25', - '06.10.25', - '06.10.25', - '06.10.25', - '07.10.25', - '07.10.25', - '07.10.25', - '07.10.25', - '07.10.25', - '07.10.25', - '07.10.25', - '07.10.25', - '08.10.25', - '08.10.25', - '08.10.25', - '08.10.25', - '08.10.25', - '08.10.25', - '08.10.25', - '08.10.25', - '09.10.25', - '09.10.25', - '09.10.25', - '09.10.25', - '09.10.25', - '09.10.25', - '09.10.25', - ], - datasets: [ - { - label: 'Chinese coins', - topics: 'chinese,china,chinas,wechat,english', - description: - "The key topics discussed in the messages from twitter include:\n- The influence of China on the crypto industry, particularly in relation to BNB and other altcoins\n- The use of Chinese language and culture in the crypto space, including references to learning Chinese and Chinese traders\n- The impact of China on global trade and industrial policy, such as the weaponization of the rare earth supply chain\n- The Xi Jinpooh meme and the Chinese government's censorship of online content\n- The development of viral Chinese memes and their impact on social media platforms\n- The potential for a Chinese-based western mega film studio to dominate the entertainment industry\n- The changing status of China as a developing country and its implications for international trade negotiations\n- The collapse of a China spy case and its potential impact on UK-China relations\n\nOverall, the messages highlight the significant role that China plays in the crypto industry and global affairs, as well as the cultural and political dynamics at play in the Chinese online space.", - data: [ - 9, 10, 21, 14, 9, 12, 7, 6, 50, 20, 13, 12, 12, 11, 10, 10, 14, 13, 12, 7, 14, 15, 13, 13, - 11, 15, 29, 6, 15, 8, 22, 3, 19, 17, 10, 8, 10, 17, 17, 16, 10, 6, 11, 16, 9, 15, 14, 22, - 13, 20, 10, 13, 13, 21, 12, - ], - }, - { - label: 'Bitcoin vs fiat', - topics: 'fiat,bitcoiners,bitcoin,money,satoshi', - description: - "The messages from twitter revolve around the idea of Bitcoin being the future of money and the flaws of the fiat system. There is a strong belief in Bitcoin as a form of currency that is simple, secure, and valuable. The concept of Hyperbitcoinization, where Bitcoin becomes the world's only money, is also discussed. Additionally, there is a focus on the importance of understanding Bitcoin and its value, as well as the potential for Bitcoin to revolutionize the financial system through decentralized finance (DeFi). Overall, the messages convey a sense of optimism and confidence in Bitcoin as a superior form of money compared to traditional fiat currencies.", - data: [ - 1, 10, 11, 14, 22, 28, 11, 5, 14, 6, 10, 10, 15, 12, 8, 17, 22, 11, 6, 5, 7, 13, 7, 13, 18, - 7, 10, 10, 13, 5, 12, 19, 5, 6, 11, 10, 8, 13, 8, 5, 14, 9, 8, 10, 11, 13, 15, 8, 4, 9, 18, - 8, 4, 8, 2, - ], - }, - { - label: 'ETH price', - topics: 'eth,ethereum,5000,5k,resistance', - description: - 'The key topic currently being discussed in the crypto community on Twitter is the price of Ethereum (ETH). There is excitement and optimism surrounding ETH reaching $5,000, with many users predicting a bullish breakout towards this milestone. Technical analysis and patterns are being used to support these predictions, with mentions of resistance levels turning into key supports and potential price discovery on the horizon. Additionally, there is discussion about the potential for ETH to reach even higher price targets in the future, with some users speculating on a super cycle that could see ETH reaching $30,000 - $80,000 by 2027. Overall, sentiment towards ETH is positive, with users anticipating further upside and bullish momentum in the market.', - data: [ - 14, 3, 5, 5, 6, 23, 17, 3, 14, 10, 11, 18, 8, 7, 14, 13, 15, 6, 8, 14, 5, 2, 19, 13, 6, 4, - 6, 11, 14, 5, 4, 2, 7, 4, 4, 5, 18, 3, 12, 12, 9, 7, 17, 1, 5, 16, 9, 12, 7, 6, 11, 5, 9, 6, - 5, - ], - }, - { - label: 'ASTER ', - topics: 'aster,coded,airdrop,asterdex,dust', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the potential for ASTER to trade above $4, the utility of ASTER provided by Crypto Autos, the upcoming listing of ASTER, potential buybacks that could lead to significant price increases, and the recent surge in trading volume for ASTER. There is also discussion about holding ASTER until it reaches $10, as well as speculation about future price movements and resistance levels. Additionally, there is mention of a recent asteroid passing close to Earth and the impact of emotions on trading decisions. Overall, the sentiment appears to be bullish on ASTER with expectations of price increases and positive market movements.', - data: [ - 6, 12, 8, 57, 4, 16, 5, 10, 14, 11, 9, 9, 12, 8, 9, 17, 17, 15, 7, 9, 9, 10, 10, 3, 4, 6, - 13, 9, 7, 5, 6, 5, 7, 7, 8, 1, 5, 9, 3, 3, 5, 11, 7, 7, 5, 7, 13, 6, 9, 12, 8, 6, 4, 1, 4, - ], - }, - { - label: 'God', - topics: 'lord,holy,god,jesus,divine', - description: - "The messages from twitter are filled with references to God, prayer, faith, and power dynamics. There is a strong emphasis on seeking strength and guidance from a higher power, with mentions of praying for financial success and overcoming sins. The messages also touch on themes of humility, ego, and the importance of serving a higher purpose.\n\nOverall, the messages convey a sense of spiritual warfare and the belief in divine intervention in one's life. The mention of various religious texts and quotes suggests a deep connection to faith and a belief in the power of prayer. The messages also hint at a belief in a higher purpose and a desire to dominate reality in service of a greater good.", - data: [ - 7, 7, 7, 10, 10, 9, 2, 5, 13, 12, 4, 3, 15, 5, 8, 9, 7, 14, 7, 30, 10, 9, 6, 12, 14, 5, 9, - 3, 5, 10, 10, 2, 7, 4, 23, 6, 24, 6, 8, 13, 12, 6, 7, 9, 5, 11, 8, 8, 4, 5, 8, 11, 8, 13, 2, - ], - }, - { - label: 'Sora videos', - topics: 'sora,videos,video,youtube,content', - description: - 'The key topics discussed in the messages from twitter are:\n1. The advancement of AI-generated videos and their indistinguishability from reality.\n2. Discussions about Sora content policies and the accuracy of Sora with physics.\n3. The use of AI for image and video generation for different purposes.\n4. Collaboration and community incentives in video creation tools like Everlyn_ai.\n5. The potential for AI to automatically create videos tailored to individual tastes.\n6. Speculation on the future of AI video apps and their revenue generation.\n7. The success story of MrBeast and setting goals for growth on social media platforms.\n8. The release of new models like Sora 2 for video creation and image generation.\n9. The use of numbers and symbols in video titles for attention-grabbing purposes.', - data: [ - 10, 6, 9, 3, 10, 8, 4, 4, 6, 8, 7, 2, 4, 11, 7, 13, 11, 4, 9, 8, 7, 7, 7, 9, 6, 4, 9, 8, 13, - 2, 7, 2, 10, 10, 8, 6, 8, 9, 9, 4, 4, 7, 5, 23, 3, 4, 7, 11, 1, 7, 7, 59, 19, 5, 10, - ], - }, - { - label: 'Gaza peace deal', - topics: 'hamas,gaza,peace,israel,deal', - description: - 'The key topic discussed in the messages from twitter is the breaking news of a peace deal being reached between Hamas and Israel in Gaza. The messages highlight various aspects of the deal, including the handover of power to a new authority of Palestinian technocrats, the approval of an arms embargo by the Spanish parliament, celebrations in the streets of Khan Younis, and statements from US President Donald Trump regarding the ceasefire. The messages also mention the involvement of various world leaders, including Trump, in the negotiations and the importance of accepting the peace plan put forward by Trump. Additionally, there are references to guarantees received by Hamas from US and other mediators, as well as the potential consequences if Hamas does not accept the peace plan. Overall, the messages indicate a significant development in the ongoing conflict between Hamas and Israel in Gaza.', - data: [ - 7, 30, 21, 5, 6, 4, 7, 26, 6, 3, 5, 2, 11, 4, 13, 8, 2, 1, 3, 4, 4, 9, 11, 5, 4, 3, 15, 2, - 1, 3, 7, 3, 7, 15, 10, 8, 10, 8, 8, 22, 13, 39, 12, 5, 3, 3, 13, 3, 6, 4, 6, 3, 9, 5, 3, - ], - }, - { - label: 'NFL football', - topics: 'nfl,football,jets,joe,coach', - description: - "The key topics discussed in the messages from twitter are:\n1. Fantasy football excitement and analysis, including players' performances and game predictions.\n2. Betting lines and predictions for upcoming games, including the Patriots and Texans games.\n3. Speculation about Tyreek Hill's career as the fastest player in the NFL.\n4. Analysis of coaching styles and effectiveness in the NFL.\n5. Trade news between the Browns and Bengals in the NFL.\n6. Player contract extensions and trade updates in the NFL.\n7. Aaron Rodgers' durability compared to other AFC North quarterbacks.\n8. Heisman predictions and discussions about NFL quarterbacks.\n9. Julian Brown's innovative clean-burning fuel creation from plastic waste.\n10. Gambling picks and predictions for NFL games, including the Rams' overtime win on Thursday Night Football.", - data: [ - 17, 7, 5, 13, 12, 1, 7, 8, 6, 6, 2, 3, 6, 9, 9, 10, 9, 12, 15, 11, 7, 9, 9, 7, 3, 10, 4, 10, - 14, 6, 3, 4, 5, 9, 12, 16, 2, 2, 7, 8, 6, 11, 4, 4, 7, 7, 5, 15, 13, 9, 6, 6, 12, 18, 8, - ], - }, - { - label: 'GameFi', - topics: 'gaming,games,game,gamefi,gameplay', - description: - 'The messages from twitter are mainly discussing various crypto and web3 games, such as Solana, Decimated, and Block Stranding. There is excitement about new game releases, gameplay experiences, and upcoming events like Gamescom Asia. Players are sharing their favorite games and experiences, as well as discussing the potential of web3 gaming. Overall, the crypto gaming community seems engaged and enthusiastic about the future of gaming on blockchain technology.', - data: [ - 4, 7, 6, 4, 11, 5, 8, 5, 9, 9, 3, 5, 6, 6, 9, 10, 7, 11, 50, 6, 5, 4, 3, 11, 4, 7, 6, 1, 2, - 8, 4, 5, 14, 10, 4, 22, 6, 6, 7, 9, 5, 4, 9, 4, 12, 3, 6, 1, 7, 4, 4, 8, 10, 3, 4, - ], - }, - { - label: 'Monad airdrop', - topics: 'monad,mon,airdrop,mainnet,claim', - description: - 'The main topics currently discussed in the crypto community on Twitter include the upcoming mainnet launch of Zcash, the anticipation of new assets from Monad on the marketplace, the excitement surrounding the Monad airdrop, and the potential for significant growth in the value of Monad. There is also discussion about the Apriori project building a liquid staking platform for Monad, the progress of the Monad airdrop claim loading bar, and speculation about the timing of the Monad mainnet launch. Additionally, there are mentions of other projects such as Opensea, Abstract, Lighter, Zerion, base, metamask, lz s2, and harvest season. Insider trading concerns and the potential impact on the market are also being discussed. Overall, there is a mix of excitement, anticipation, and speculation surrounding the developments in the crypto industry.', - data: [ - 6, 30, 2, 4, 4, 3, 5, 3, 17, 3, 0, 12, 3, 4, 8, 5, 4, 7, 18, 4, 9, 9, 4, 5, 1, 5, 4, 17, 2, - 11, 13, 42, 2, 14, 7, 6, 11, 7, 3, 1, 4, 2, 4, 1, 5, 5, 8, 8, 7, 10, 6, 7, 4, 4, 6, - ], - }, - { - label: 'Memecoins', - topics: 'meme,memes,memecoin,memecoins,plortalai', - description: - "The messages from twitter are mainly discussing the rise of memecoins and the potential for them to 10x in value. There is also mention of the importance of community-driven memecoins over VC-backed ones for long-term success. The messages highlight the key factors that contribute to a memecoin's pump, such as hype, virality, strong identity, low market cap, and social engagement. Additionally, there is a discussion about the cultural significance of memes and their role in the crypto industry. Overall, the messages suggest a growing interest and investment in memecoins within the crypto community.", - data: [ - 4, 6, 6, 8, 11, 3, 7, 7, 3, 10, 2, 6, 4, 7, 2, 7, 5, 4, 4, 11, 6, 5, 4, 8, 4, 4, 4, 6, 10, - 6, 95, 4, 15, 4, 4, 6, 5, 8, 2, 5, 8, 6, 1, 1, 3, 6, 4, 5, 5, 10, 0, 3, 16, 2, 2, - ], - }, - { - label: 'ZEC price', - topics: 'zec,zcash,privacy,zen,monero', - description: - 'Zeckoin (ZEC) is currently a hot topic in the crypto community, with many users discussing its potential for growth and comparing it to other coins like XRP and LTC. The recent surge in price from $54 to $147 in just 7 days has caught the attention of many investors, with some predicting a potential rise to $200 in the near future. The development of shielded pools and the improved user experience with Zashi have also been highlighted as positive factors for ZEC. However, there are also concerns about market manipulation and the lack of listings on major exchanges like Bybit. Overall, the sentiment towards ZEC seems positive, with many users believing in its long-term potential despite some skepticism and criticism.', - data: [ - 3, 2, 3, 4, 9, 8, 12, 6, 7, 5, 6, 6, 2, 6, 9, 3, 7, 5, 9, 5, 3, 4, 4, 9, 9, 5, 5, 5, 7, 5, - 9, 3, 7, 5, 7, 7, 10, 8, 15, 6, 10, 4, 7, 5, 2, 11, 5, 10, 10, 4, 3, 4, 5, 3, 47, - ], - }, - { - label: 'BTC all-time-high', - topics: 'ath,aths,btc,new,bitfinex', - description: - "The key topic currently being discussed in the crypto community on Twitter is the new all-time high (ATH) of Bitcoin (BTC). Many users are excited about BTC reaching new ATHs and are speculating on when the next one will occur. Some are discussing the potential impact on altcoins, while others are considering the importance of insuring their Bitcoin holdings during ATHs. Overall, there is a sense of optimism and anticipation surrounding Bitcoin's performance in the market.", - data: [ - 7, 1, 9, 18, 0, 20, 19, 6, 8, 5, 2, 10, 2, 1, 1, 5, 11, 2, 3, 5, 2, 6, 22, 2, 4, 2, 6, 6, 6, - 10, 1, 2, 33, 1, 3, 5, 2, 6, 8, 4, 6, 3, 10, 9, 1, 3, 8, 9, 12, 4, 6, 5, 11, 5, 2, - ], - }, - { - label: 'Art', - topics: 'art,artist,artists,painting,paint', - description: - 'In the crypto industry, discussions on social media platforms like Twitter often revolve around various topics related to art and creativity. Artists are sharing their experiences, seeking advice, and showcasing their work. There is a mix of traditional and digital art being discussed, with a focus on techniques, mediums, and the creative process.\n\nSome artists are expressing frustration with the current state of the art world, particularly with the prevalence of AI-generated texts and the financialization of art. They emphasize the importance of staying true to oneself as an artist and focusing on personal growth and improvement.\n\nOverall, the crypto community seems to value authenticity, creativity, and individual expression in the world of art. Artists are encouraged to embrace their unique style, seek connection with their true selves, and not get caught up in comparisons or trends. The community also emphasizes the importance of high-resolution digital art and the potential for immersive, gamified art experiences.', - data: [ - 1, 10, 72, 7, 5, 2, 2, 3, 2, 10, 6, 3, 6, 5, 4, 10, 4, 5, 2, 1, 4, 4, 6, 8, 7, 2, 0, 3, 6, - 3, 2, 1, 7, 4, 14, 10, 4, 5, 4, 7, 1, 3, 4, 7, 4, 7, 6, 4, 5, 6, 5, 5, 10, 8, 0, - ], - }, - { - label: 'XRP price', - topics: 'xrp,ripple,xlm,descending,breakout', - description: - '$XRP, also known as Ripple, is a cryptocurrency that has been the subject of much discussion and speculation on social media platforms like Twitter. The messages from twitter reveal a mix of opinions about $XRP, with some users expressing skepticism about its value and purpose, while others are more optimistic about its potential for growth.\n\nOne user mentions that $XRP had a hyped bull run in the past, but questions its meaningful change and purpose in the current crypto landscape. However, another user highlights the potential for $XRP to reach new all-time highs soon, indicating a positive outlook for the cryptocurrency.\n\nThe messages also touch on institutional adoption of $XRP, with CME preparing regulated options for the cryptocurrency, signaling growing demand from institutional investors. Additionally, there are discussions about potential price targets for $XRP, with some analysts predicting a significant rally in the near future.\n\nOverall, the sentiment around $XRP in the crypto community seems to be mixed, with some users questioning its value and purpose, while others remain optimistic about its potential for growth and adoption.', - data: [ - 0, 6, 11, 11, 6, 8, 7, 8, 10, 10, 5, 4, 6, 6, 5, 14, 7, 3, 2, 4, 2, 7, 14, 5, 5, 4, 7, 7, 9, - 2, 4, 6, 2, 2, 2, 2, 10, 5, 8, 9, 4, 6, 16, 2, 5, 8, 3, 5, 2, 6, 3, 4, 2, 5, 9, - ], - }, - { - label: 'NFT', - topics: 'nft,nfts,collections,strategy,tokenworks', - description: - 'The messages from twitter discuss the resurgence of interest in NFTs, with some users expressing excitement about the potential for NFTs to explode again. There is also mention of NFT strategies and projects, with some users praising the innovation in the space. However, there are also concerns raised about the demand for NFT projects and the need for better research and safety measures when evaluating NFT projects.\n\nOverall, the sentiment towards NFTs seems positive, with users acknowledging the potential for growth and the importance of foundational communities and projects in the space. There is also mention of the need for better fractionalization options for NFTs and the potential for NFTs to be programmable liquidity machines under the right conditions.\n\nIn conclusion, the messages from twitter reflect a mix of excitement, caution, and optimism about the future of NFTs in the crypto industry.', - data: [ - 2, 3, 3, 4, 10, 2, 6, 7, 3, 6, 8, 2, 5, 1, 4, 8, 8, 4, 3, 5, 2, 9, 2, 11, 8, 10, 2, 2, 10, - 3, 3, 1, 10, 9, 4, 9, 3, 13, 7, 6, 4, 4, 5, 6, 3, 13, 4, 13, 14, 5, 2, 3, 5, 3, 2, - ], - }, - { - label: 'Gold price', - topics: '4000,gold,ounce,4k,golds', - description: - 'The key topic currently being discussed in the crypto industry social media accounts and communities is the significant rise in the price of gold, with it surpassing $4,000 per ounce. Many are discussing the implications of this milestone, with some predicting further increases in the future. The surge in gold prices is being attributed to factors such as US government shutdown fears, rate cut expectations, and a rush to safety amid global turmoil. Some are comparing the rise in gold prices to the potential impact on Bitcoin as a store of value. Overall, the discussion around gold hitting $4,000 is dominating the conversation in the crypto industry social media space.', - data: [ - 3, 1, 8, 3, 1, 13, 5, 5, 2, 4, 5, 5, 3, 1, 3, 4, 3, 8, 4, 27, 0, 2, 25, 2, 5, 3, 0, 0, 3, 5, - 4, 4, 12, 4, 7, 4, 16, 3, 9, 4, 8, 3, 7, 8, 6, 4, 3, 5, 7, 2, 5, 1, 3, 2, 3, - ], - }, - { - label: 'DeFi', - topics: 'defi,networknoya,yield,protocols,strategies', - description: - 'The messages from twitter highlight the ongoing evolution and growth of DeFi (Decentralized Finance). Key points mentioned include the power of DeFi numbers surpassing claims, the importance of being open and built to last, the focus on incentives, speed, and permissionlessness, and the continuous improvement of DeFi over time. The future of DeFi is seen as not just trading, but also saving, with vaults playing a crucial role. Privacy and compliance are also emphasized as important factors for the future of DeFi. The messages also touch on the importance of trust in DeFi, the need for stronger structure and resilience, and the potential for mass adoption through improved user experience. Overall, the messages convey a sense of optimism and excitement about the potential of DeFi and its continued growth and innovation.', - data: [ - 4, 6, 4, 2, 5, 3, 6, 4, 4, 2, 6, 5, 4, 4, 12, 8, 4, 10, 1, 1, 7, 2, 2, 8, 9, 4, 5, 4, 10, 3, - 4, 3, 2, 5, 4, 5, 3, 10, 7, 4, 4, 5, 4, 3, 3, 12, 6, 3, 8, 6, 12, 1, 4, 1, 7, - ], - }, - { - label: 'Limitless presale', - topics: 'trylimitless,limitless,allocation,kaito,sale', - description: - 'The key topic discussed in the messages from twitter is the record-breaking $200M pledged for @trylimitless on the Kaito Launchpad. The project was oversubscribed by 200x, surpassing the previous record of $75M pledged. The community sale saw high participation and excitement, with predictions of allocations reaching $100k for some participants. The project is backed by Coinbase Ventures and has seen significant volume and interest in prediction markets. Overall, the sentiment towards @trylimitless is positive, with many users eager to participate in the community sale and engage in trading activities on the platform.', - data: [ - 3, 12, 1, 4, 5, 2, 3, 2, 4, 6, 4, 9, 3, 4, 3, 3, 4, 1, 5, 4, 2, 2, 3, 9, 4, 2, 3, 10, 2, 6, - 6, 4, 3, 9, 5, 12, 13, 7, 9, 2, 7, 1, 0, 1, 1, 5, 4, 2, 8, 6, 4, 5, 0, 1, 10, - ], - }, - { - label: 'XPL price', - topics: 'xpl,trillions,cents,longing,underwater', - description: - "Overall, the sentiment around $XPL seems to be mixed, with some users believing it is a good entry opportunity while others are skeptical about its potential. There is discussion about the price volatility and the possibility of a significant price increase in the future. Some users are optimistic about the project's potential, while others are more cautious. It is clear that there is a lot of speculation and differing opinions surrounding $XPL within the crypto community.", - data: [ - 2, 6, 2, 2, 2, 5, 5, 4, 6, 4, 4, 2, 2, 3, 1, 6, 3, 4, 0, 12, 4, 1, 4, 2, 3, 2, 1, 8, 11, 6, - 2, 0, 0, 3, 5, 4, 6, 5, 4, 4, 5, 1, 3, 6, 3, 8, 9, 7, 7, 5, 4, 3, 3, 0, 16, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-93.json b/priv/repo/major_topics_seed/data-93.json deleted file mode 100644 index c0b19b6d61..0000000000 --- a/priv/repo/major_topics_seed/data-93.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["09.10.25","10.10.25","10.10.25","10.10.25","10.10.25","10.10.25","10.10.25","10.10.25","11.10.25","11.10.25","11.10.25","11.10.25","11.10.25","11.10.25","11.10.25","11.10.25","12.10.25","12.10.25","12.10.25","12.10.25","12.10.25","12.10.25","12.10.25","12.10.25","13.10.25","13.10.25","13.10.25","13.10.25","13.10.25","13.10.25","13.10.25","13.10.25","14.10.25","14.10.25","14.10.25","14.10.25","14.10.25","14.10.25","14.10.25","14.10.25","15.10.25","15.10.25","15.10.25","15.10.25","15.10.25","15.10.25","15.10.25","15.10.25","16.10.25","16.10.25","16.10.25","16.10.25","16.10.25","16.10.25","16.10.25"],"datasets":[{"label":"Gold outperformance","topics":"silver,4200,paxg,precious,schiff","description":"The key topics discussed in the messages from twitter are:\n1. Gold outperforming Nasdaq over the last 5 years\n2. Liquidity flowing from Gold to Bitcoin\n3. Speculation on Bitcoin catching up to Gold\n4. Gold rush in Karachi's Malir river\n5. Factors that could cause Gold to drop\n6. Silver market fluctuations\n7. Central bank demand driving the gold market\n8. All-time highs in various assets including S&P500, Gold, Silver, Bitcoin, and US Home Prices\n9. Altcoins being perceived as still cheap compared to other assets.","data":[17,19,26,20,34,28,39,28,15,20,16,25,23,20,18,19,28,17,16,169,10,16,71,14,23,16,19,16,24,27,16,21,33,17,47,32,63,16,42,20,36,21,53,13,33,31,14,37,35,26,23,35,17,14,22]},{"label":"ZEC","topics":"zec,zcash,monero,zora,anonymous","description":"Zydeco is not mentioned in the messages provided from twitter. The key topics discussed in the messages include Zcash ($ZEC), privacy coins, market manipulation, altcoins, altseason, cryptocurrency investments, Chiliz Chain ($CHZ), and the potential flipping of Monero by Zcash. The messages also touch on the resurgence of certain coins, the value of privacy coins amid regulatory tightening, and the potential for a new and better version of Zcash. Overall, the messages highlight the ongoing developments and trends in the crypto industry.","data":[9,9,9,13,14,9,19,19,16,19,10,13,14,14,12,9,8,9,11,17,15,16,20,11,9,12,16,12,20,8,17,5,19,8,10,9,11,36,16,12,11,11,23,11,7,20,18,4,19,9,16,10,9,11,96]},{"label":"Trump family shady deals","topics":"heaven,realdonaldtrump,eric,donald,wlfi","description":"The key topics discussed in the messages from twitter are:\n1. Accusations of market manipulation by Trump and his associates.\n2. Speculation on the impact of Trump's announcements on the market.\n3. Criticism of Trump's handling of the crypto market.\n4. Calls to not idolize Trump or CZ as heroes in the crypto industry.\n5. Discussion of potential market nuking and manipulation by Trump.\n6. Comparison of Trump to historical figures like Roosevelt and Churchill.\n7. Criticism of universities discriminating based on race or sex.\n8. Personal trading strategies and predictions related to Trump's announcements.\n9. Mention of specific individuals like Eric Trump, Charlie Kirk, and Candace Owens in relation to Trump.\n10. Reference to Trump's Truth Social platform and posts.","data":[7,20,12,12,13,15,9,4,13,14,14,9,11,13,11,44,8,14,6,16,15,12,12,8,6,15,19,8,14,18,11,7,6,15,7,10,17,18,12,13,19,19,8,14,7,13,18,24,15,57,11,3,7,10,9]},{"label":"Monad airdrop","topics":"mon,monad,gmonad,eligible,portal","description":"The key topics currently being discussed in the crypto community on Twitter include the upcoming Monad airdrop, the potential impact of the Monad mainnet launch, and the excitement surrounding the launch of the $MON token. There is also discussion about the potential allocation of tokens for different roles and the possibility of claiming the airdrop as an NFT. Additionally, there is anticipation around the launch of the Monad Launchpool and the potential rewards for staking $BTR or $XRP. Overall, there is a sense of optimism and excitement surrounding the Monad project and its upcoming developments.","data":[10,37,10,10,13,4,0,21,21,15,6,9,6,10,19,11,9,10,21,13,6,9,7,17,9,12,6,9,7,13,6,62,7,8,8,4,13,3,10,5,8,5,4,9,4,5,15,12,14,8,12,12,5,8,4]},{"label":"Bitcoinization","topics":"bitcoiners,scarcity,fixes,monetary,permission","description":"The messages from twitter highlight the growing importance and mainstream acceptance of Bitcoin. The discussions emphasize Bitcoin's role in banking the unbanked, its potential to revolutionize the global economy, and its ability to provide financial freedom from traditional banking systems. The messages also touch on the idea of Bitcoin as a rebellious tool against the control of the state and the importance of understanding its future impact on society. Overall, the sentiment is positive towards Bitcoin's potential to reshape finance, energy, and society as a whole.","data":[10,10,11,12,33,11,11,10,5,15,5,8,17,11,16,9,10,13,3,10,8,4,12,11,15,6,5,5,12,9,8,17,24,6,11,11,9,8,5,14,14,2,2,12,5,8,19,10,6,11,16,11,7,9,5]},{"label":"AI","topics":"miranetwork,agents,intelligence,agentic,outputs","description":"The messages from twitter discuss the increasing integration of artificial intelligence (AI) into various industries, including finance, real estate, and technology. There is a mix of excitement and concern about the potential impact of AI on jobs and decision-making processes. Some messages highlight the importance of transparency and trustworthiness in AI development, while others warn about the risks of deepfake technology being used for scams. Overall, the discussions reflect a growing awareness of the role of AI in shaping the future of various sectors.","data":[7,30,7,5,17,6,13,4,11,13,10,5,11,9,13,7,6,13,11,6,11,3,6,22,19,8,9,4,6,8,5,4,12,3,17,6,8,11,12,12,5,16,6,2,10,12,19,8,3,16,10,6,13,10,6]},{"label":"ETH price","topics":"4k,4000,6000,fibonacci,confluence","description":"On October 11, 2025, Ethereum experienced a significant drop of approximately $1000, crossing the $5000 mark. Despite the global economy being heavily integrated with Ethereum, the price struggled to break $5000, with some users setting sell orders at $4000. There were concerns about Ethereum giving up support easily and heading towards $3834, causing fear among investors. However, there were also optimistic views, with some predicting a potential rally if there were signs of a US-China trade deal resolution. The price of Ethereum was expected to drift lower before potentially entering a bullish phase, with key levels to watch for being $3300 and $4000. Overall, the sentiment towards Ethereum was mixed, with some seeing bullish signs on the weekly chart while others remained cautious about further downside.","data":[14,5,7,10,4,23,16,13,7,9,3,6,9,9,16,14,17,7,2,5,12,8,18,5,5,4,12,7,10,7,4,6,7,3,8,0,15,5,14,12,13,6,13,8,7,14,7,8,5,6,9,3,17,4,3]},{"label":"US - China trade war","topics":"export,xi,chinas,impose,controls","description":"The key topics currently being discussed in the crypto industry related to China include the escalating trade tensions between the US and China, with President Trump threatening massive increases in tariffs on Chinese goods. There is also discussion about China's response to these threats, with warnings of countermeasures if the tariffs are implemented. Additionally, there is speculation about the impact of the trade war on deals such as the TikTok deal. The power struggle within China, particularly involving President Xi Jinping, is also a topic of interest. The influence of China on global markets, including equities and Bitcoin, is being closely monitored. Overall, there is a mix of sentiments towards China, ranging from underestimation to overestimation, with some individuals having more nuanced views. The use of tariffs as a tool in the trade war is a major point of contention, with concerns about the potential impact on the global economy.","data":[2,8,18,4,5,7,2,7,11,15,3,3,11,6,6,11,11,3,1,4,10,6,15,9,11,9,11,5,3,4,10,6,7,7,4,10,4,2,6,18,19,34,7,5,7,10,16,16,25,8,4,9,11,4,8]},{"label":"BNB","topics":"bnb,alltime,outperforming,recovered,fruit","description":"The key topics currently being discussed in the crypto community on Twitter include the impressive performance of $BNB, with it hitting new all-time highs and outperforming other major cryptocurrencies. There is excitement about BNB Chain and its ecosystem strength, with mentions of BSC builders and the overall hype surrounding BNB. Traders are discussing potential trading setups and targets for shorting or buying $BNB, as well as the potential for a double top formation. Additionally, there is speculation about the future price movements of $BNB and comparisons to other cryptocurrencies like $SOL. Overall, the sentiment towards $BNB is positive, with many users praising its resilience and strength in the market.","data":[7,3,5,7,3,32,5,7,7,6,6,4,4,10,4,6,9,6,5,7,4,7,21,7,2,10,3,4,9,2,3,2,16,3,6,6,7,7,12,8,12,9,11,9,0,11,8,8,4,8,4,2,2,2,4]},{"label":"DeFi","topics":"defai,defi,oracles,lending,aave","description":"The messages from twitter focus on the growing popularity and importance of DeFi (Decentralized Finance) in the crypto industry. DeFi is highlighted as the true crypto way, designed to eliminate middlemen and provide transparency and fairness in the market. The messages also discuss the recent market crash and how DeFi proved its resilience compared to centralized exchanges (CEXes).\n\nThere is a mention of partnerships and bounty programs aimed at improving the security and safety of DeFi platforms. The messages also touch upon the growth potential of DeFi, with projects like YuzuMoneyX aiming to make DeFi more accessible and transparent to a wider user base.\n\nAdditionally, there are references to specific DeFi projects like Dypius and turtledotxyz, which are gaining popularity and offering simplified ways for users to participate in DeFi activities such as yield farming and lending.\n\nOverall, the messages emphasize the benefits of DeFi over traditional centralized financial systems and highlight the ongoing innovation and growth within the DeFi space.","data":[10,4,9,0,8,4,9,5,6,4,4,0,11,4,8,7,7,6,5,2,9,1,3,9,10,5,7,6,5,6,6,1,12,9,12,5,4,11,6,11,3,4,6,5,7,8,9,8,10,8,10,3,6,9,5]},{"label":"\"Lion\" meme","topics":"lion,concern,concerned,lions,bother","description":"The messages from twitter suggest that \"the lion\" is a prominent figure in the crypto industry who is portrayed as confident, experienced, and unbothered by market fluctuations. The lion is described as fully invested in the market, unconcerned with losses, and focused on long-term growth. There are references to the lion's interactions with other animals, such as the lioness and the dog, as well as his interactions with specific individuals like CZ. Additionally, there are mentions of the lion's use of specific tools and platforms in the crypto space, such as clash royale and CoinbaseDev. Overall, the lion is depicted as a seasoned player in the crypto industry who is unfazed by challenges and remains optimistic about the future.","data":[1,0,1,0,1,1,2,0,2,3,1,0,0,3,0,2,0,3,1,1,0,1,0,1,2,2,0,283,3,0,0,1,0,2,3,1,2,1,0,3,0,1,3,2,0,0,1,1,1,0,0,1,1,0,1]},{"label":"Middle east politics","topics":"jews,jewish,israel,hamas,ceasefire","description":"The messages from twitter are filled with anti-Semitic rhetoric, conspiracy theories, and discussions about the Israeli-Palestinian conflict. There are mentions of Zionist occupation, accusations of Jewish behavior driving conflict, and criticism of Israel's actions. The messages also touch on the idea of a \"Greater Israel\" and the concept of a one-state solution for Palestine. Overall, the tone is divisive and inflammatory, with little room for constructive dialogue or understanding.","data":[7,5,11,5,8,5,2,8,6,7,7,2,5,4,5,7,8,3,4,3,7,4,1,8,12,3,14,7,4,5,5,6,8,6,3,10,5,10,5,7,5,2,5,2,6,7,6,7,5,12,4,14,6,6,10]},{"label":"Dangers of leverage ","topics":"leverage,lev,15x,lesson,careful","description":"The key topics discussed in the messages from twitter are the risks and dangers of leverage trading in the crypto industry. Many users shared their experiences of being liquidated or losing significant amounts of money due to leverage trading. The importance of setting stop-loss orders, using isolated margin, and only investing what you can afford to lose were emphasized. Some users warned against the use of leverage altogether, while others shared strategies for using leverage safely, such as using low leverage ratios and diversifying into spot trading. The message overall was to be cautious and informed when it comes to leverage trading in the volatile crypto market.","data":[2,3,3,4,5,2,6,8,3,3,2,3,4,6,3,2,6,5,4,5,8,2,4,2,6,4,54,10,11,5,4,2,5,3,3,13,9,3,7,7,7,1,4,1,9,5,8,5,20,8,13,2,1,6,5]},{"label":"Liquidations","topics":"lost,losses,hurting,sad,temporary","description":"The messages from twitter highlight the emotional rollercoaster that comes with trading in the crypto industry. Many individuals have experienced significant losses, liquidations, and the pain of regret from not following their trading plans. Despite the losses, there is a sense of resilience and determination to recover and learn from the mistakes.\n\nKey themes in the messages include the importance of risk management, avoiding leverage, and the need for community support during difficult times. There is also a reminder to focus on the long-term opportunities in the crypto market and to never give up, even in the face of major losses.\n\nOverall, the messages reflect the volatile nature of the crypto industry and the psychological impact it can have on traders. It serves as a reminder to approach trading with caution, proper risk management, and a supportive community to navigate through the ups and downs of the market.","data":[8,0,2,4,2,2,1,3,2,6,6,5,0,1,2,2,3,6,3,16,9,10,3,2,4,7,7,22,55,4,6,8,2,10,8,10,4,0,1,4,6,2,4,6,4,8,3,2,10,6,7,7,1,1,13]},{"label":"Buy the dip","topics":"dips,dipping,dip,anon,pnkstr","description":"Summary:\nThe messages from twitter mainly revolve around the concept of buying the dip in the crypto market. There is a strong emphasis on taking advantage of dip buying opportunities and using cash positions to buy the dip. The community encourages buying dips like candy bars and emphasizes the importance of being patient during market dips. Some users express frustration with the idea of buying the dip, questioning what to buy and with what funds. Overall, the sentiment is bullish on buying the dip and seizing opportunities for potential gains in the market.","data":[2,4,1,4,3,17,47,3,2,1,6,0,64,6,0,1,5,4,7,3,6,5,1,1,3,4,6,4,3,0,1,4,1,1,0,2,2,5,4,3,5,3,1,5,8,2,5,2,6,6,2,3,3,2,6]},{"label":"BTC price","topics":"swept,4h,consolidating,area,115k","description":"Overall, the sentiment around $BTC seems to be bearish in the short term, with discussions about potential pullbacks and lower price levels. However, there are also mentions of potential bounce-backs and bullish momentum if certain key levels are held. Traders are advised to pay close attention to exits and key support levels to navigate the current market conditions. The overall outlook for $BTC remains uncertain, with a mix of caution and optimism among traders and analysts.","data":[3,4,3,4,5,17,6,5,2,16,2,8,5,10,4,9,2,3,2,4,1,3,17,5,1,2,5,9,7,8,5,0,4,2,5,5,12,5,6,12,4,3,8,3,7,10,5,6,3,1,5,5,3,3,0]},{"label":"Art","topics":"artist,artists,art,museum,3d","description":"The messages from twitter mainly focus on the importance of art, the relationship between artists and collectors, and the impact of art on society. There is a strong emphasis on the value of art and the need for collectors to support artists by purchasing their works. The messages also touch on the evolution of art, with mentions of new artwork being revealed soon and artists improving their skills over time. Additionally, there is a discussion about the intersection of art and technology, as seen in the \"Art vs. Code\" collection for the @museumartlight. Overall, the messages highlight the significance of art in our lives and the need for continued support and appreciation for artists and their work.","data":[1,3,49,3,3,1,1,6,5,4,16,2,7,6,1,9,9,1,6,0,1,5,4,4,2,2,6,2,2,11,5,6,13,2,10,10,2,5,3,0,1,7,4,3,3,3,2,5,1,7,6,2,1,7,4]},{"label":"Football","topics":"football,coach,cam,firing,fired","description":"The messages from twitter mainly focus on football, particularly discussing the performance of various players, coaches, and teams. There is also mention of potential trades and the importance of accountability in the sport. Additionally, there is a comparison between college and NFL coaching positions, as well as a discussion about college basketball rankings. Overall, the messages highlight the passion and analysis surrounding football and sports in general within the crypto community.","data":[7,1,6,9,4,3,3,4,7,7,2,6,4,2,7,1,15,5,9,10,7,6,6,4,3,5,3,0,5,1,1,4,9,3,5,7,3,3,3,5,6,4,1,5,2,9,4,8,6,4,6,6,3,7,10]},{"label":"XRP price","topics":"xrp,ripple,270,explosive,280","description":"The messages from twitter suggest that XRP investors have been experiencing significant volatility in the market. There have been instances of profit-taking after the price surged above $2, with waves of realization in December 2024 and July 2025. Despite facing extreme volatility and liquidations, XRP has shown resilience and potential for a rebound. Traders are closely monitoring key support levels and potential breakout points, with mixed momentum keeping them on edge. Overall, the sentiment among XRP investors seems to be optimistic, with hopes for a potential rally towards $3.25-$3.33 range in the near future.","data":[6,3,4,6,5,6,6,8,8,4,4,4,3,7,1,11,5,2,1,6,0,5,10,2,7,1,4,4,7,3,3,3,5,1,1,0,5,5,4,3,7,5,6,4,2,7,5,1,3,5,3,6,4,3,10]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-93.ts b/priv/repo/major_topics_seed/data-93.ts deleted file mode 100644 index f4ed171c9e..0000000000 --- a/priv/repo/major_topics_seed/data-93.ts +++ /dev/null @@ -1,258 +0,0 @@ -export const NARRATIVES = { - labels: [ - '09.10.25', - '10.10.25', - '10.10.25', - '10.10.25', - '10.10.25', - '10.10.25', - '10.10.25', - '10.10.25', - '11.10.25', - '11.10.25', - '11.10.25', - '11.10.25', - '11.10.25', - '11.10.25', - '11.10.25', - '11.10.25', - '12.10.25', - '12.10.25', - '12.10.25', - '12.10.25', - '12.10.25', - '12.10.25', - '12.10.25', - '12.10.25', - '13.10.25', - '13.10.25', - '13.10.25', - '13.10.25', - '13.10.25', - '13.10.25', - '13.10.25', - '13.10.25', - '14.10.25', - '14.10.25', - '14.10.25', - '14.10.25', - '14.10.25', - '14.10.25', - '14.10.25', - '14.10.25', - '15.10.25', - '15.10.25', - '15.10.25', - '15.10.25', - '15.10.25', - '15.10.25', - '15.10.25', - '15.10.25', - '16.10.25', - '16.10.25', - '16.10.25', - '16.10.25', - '16.10.25', - '16.10.25', - '16.10.25', - ], - datasets: [ - { - label: 'Gold outperformance', - topics: 'silver,4200,paxg,precious,schiff', - description: - "The key topics discussed in the messages from twitter are:\n1. Gold outperforming Nasdaq over the last 5 years\n2. Liquidity flowing from Gold to Bitcoin\n3. Speculation on Bitcoin catching up to Gold\n4. Gold rush in Karachi's Malir river\n5. Factors that could cause Gold to drop\n6. Silver market fluctuations\n7. Central bank demand driving the gold market\n8. All-time highs in various assets including S&P500, Gold, Silver, Bitcoin, and US Home Prices\n9. Altcoins being perceived as still cheap compared to other assets.", - data: [ - 17, 19, 26, 20, 34, 28, 39, 28, 15, 20, 16, 25, 23, 20, 18, 19, 28, 17, 16, 169, 10, 16, 71, - 14, 23, 16, 19, 16, 24, 27, 16, 21, 33, 17, 47, 32, 63, 16, 42, 20, 36, 21, 53, 13, 33, 31, - 14, 37, 35, 26, 23, 35, 17, 14, 22, - ], - }, - { - label: 'ZEC', - topics: 'zec,zcash,monero,zora,anonymous', - description: - 'Zydeco is not mentioned in the messages provided from twitter. The key topics discussed in the messages include Zcash ($ZEC), privacy coins, market manipulation, altcoins, altseason, cryptocurrency investments, Chiliz Chain ($CHZ), and the potential flipping of Monero by Zcash. The messages also touch on the resurgence of certain coins, the value of privacy coins amid regulatory tightening, and the potential for a new and better version of Zcash. Overall, the messages highlight the ongoing developments and trends in the crypto industry.', - data: [ - 9, 9, 9, 13, 14, 9, 19, 19, 16, 19, 10, 13, 14, 14, 12, 9, 8, 9, 11, 17, 15, 16, 20, 11, 9, - 12, 16, 12, 20, 8, 17, 5, 19, 8, 10, 9, 11, 36, 16, 12, 11, 11, 23, 11, 7, 20, 18, 4, 19, 9, - 16, 10, 9, 11, 96, - ], - }, - { - label: 'Trump family shady deals', - topics: 'heaven,realdonaldtrump,eric,donald,wlfi', - description: - "The key topics discussed in the messages from twitter are:\n1. Accusations of market manipulation by Trump and his associates.\n2. Speculation on the impact of Trump's announcements on the market.\n3. Criticism of Trump's handling of the crypto market.\n4. Calls to not idolize Trump or CZ as heroes in the crypto industry.\n5. Discussion of potential market nuking and manipulation by Trump.\n6. Comparison of Trump to historical figures like Roosevelt and Churchill.\n7. Criticism of universities discriminating based on race or sex.\n8. Personal trading strategies and predictions related to Trump's announcements.\n9. Mention of specific individuals like Eric Trump, Charlie Kirk, and Candace Owens in relation to Trump.\n10. Reference to Trump's Truth Social platform and posts.", - data: [ - 7, 20, 12, 12, 13, 15, 9, 4, 13, 14, 14, 9, 11, 13, 11, 44, 8, 14, 6, 16, 15, 12, 12, 8, 6, - 15, 19, 8, 14, 18, 11, 7, 6, 15, 7, 10, 17, 18, 12, 13, 19, 19, 8, 14, 7, 13, 18, 24, 15, - 57, 11, 3, 7, 10, 9, - ], - }, - { - label: 'Monad airdrop', - topics: 'mon,monad,gmonad,eligible,portal', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the upcoming Monad airdrop, the potential impact of the Monad mainnet launch, and the excitement surrounding the launch of the $MON token. There is also discussion about the potential allocation of tokens for different roles and the possibility of claiming the airdrop as an NFT. Additionally, there is anticipation around the launch of the Monad Launchpool and the potential rewards for staking $BTR or $XRP. Overall, there is a sense of optimism and excitement surrounding the Monad project and its upcoming developments.', - data: [ - 10, 37, 10, 10, 13, 4, 0, 21, 21, 15, 6, 9, 6, 10, 19, 11, 9, 10, 21, 13, 6, 9, 7, 17, 9, - 12, 6, 9, 7, 13, 6, 62, 7, 8, 8, 4, 13, 3, 10, 5, 8, 5, 4, 9, 4, 5, 15, 12, 14, 8, 12, 12, - 5, 8, 4, - ], - }, - { - label: 'Bitcoinization', - topics: 'bitcoiners,scarcity,fixes,monetary,permission', - description: - "The messages from twitter highlight the growing importance and mainstream acceptance of Bitcoin. The discussions emphasize Bitcoin's role in banking the unbanked, its potential to revolutionize the global economy, and its ability to provide financial freedom from traditional banking systems. The messages also touch on the idea of Bitcoin as a rebellious tool against the control of the state and the importance of understanding its future impact on society. Overall, the sentiment is positive towards Bitcoin's potential to reshape finance, energy, and society as a whole.", - data: [ - 10, 10, 11, 12, 33, 11, 11, 10, 5, 15, 5, 8, 17, 11, 16, 9, 10, 13, 3, 10, 8, 4, 12, 11, 15, - 6, 5, 5, 12, 9, 8, 17, 24, 6, 11, 11, 9, 8, 5, 14, 14, 2, 2, 12, 5, 8, 19, 10, 6, 11, 16, - 11, 7, 9, 5, - ], - }, - { - label: 'AI', - topics: 'miranetwork,agents,intelligence,agentic,outputs', - description: - 'The messages from twitter discuss the increasing integration of artificial intelligence (AI) into various industries, including finance, real estate, and technology. There is a mix of excitement and concern about the potential impact of AI on jobs and decision-making processes. Some messages highlight the importance of transparency and trustworthiness in AI development, while others warn about the risks of deepfake technology being used for scams. Overall, the discussions reflect a growing awareness of the role of AI in shaping the future of various sectors.', - data: [ - 7, 30, 7, 5, 17, 6, 13, 4, 11, 13, 10, 5, 11, 9, 13, 7, 6, 13, 11, 6, 11, 3, 6, 22, 19, 8, - 9, 4, 6, 8, 5, 4, 12, 3, 17, 6, 8, 11, 12, 12, 5, 16, 6, 2, 10, 12, 19, 8, 3, 16, 10, 6, 13, - 10, 6, - ], - }, - { - label: 'ETH price', - topics: '4k,4000,6000,fibonacci,confluence', - description: - 'On October 11, 2025, Ethereum experienced a significant drop of approximately $1000, crossing the $5000 mark. Despite the global economy being heavily integrated with Ethereum, the price struggled to break $5000, with some users setting sell orders at $4000. There were concerns about Ethereum giving up support easily and heading towards $3834, causing fear among investors. However, there were also optimistic views, with some predicting a potential rally if there were signs of a US-China trade deal resolution. The price of Ethereum was expected to drift lower before potentially entering a bullish phase, with key levels to watch for being $3300 and $4000. Overall, the sentiment towards Ethereum was mixed, with some seeing bullish signs on the weekly chart while others remained cautious about further downside.', - data: [ - 14, 5, 7, 10, 4, 23, 16, 13, 7, 9, 3, 6, 9, 9, 16, 14, 17, 7, 2, 5, 12, 8, 18, 5, 5, 4, 12, - 7, 10, 7, 4, 6, 7, 3, 8, 0, 15, 5, 14, 12, 13, 6, 13, 8, 7, 14, 7, 8, 5, 6, 9, 3, 17, 4, 3, - ], - }, - { - label: 'US - China trade war', - topics: 'export,xi,chinas,impose,controls', - description: - "The key topics currently being discussed in the crypto industry related to China include the escalating trade tensions between the US and China, with President Trump threatening massive increases in tariffs on Chinese goods. There is also discussion about China's response to these threats, with warnings of countermeasures if the tariffs are implemented. Additionally, there is speculation about the impact of the trade war on deals such as the TikTok deal. The power struggle within China, particularly involving President Xi Jinping, is also a topic of interest. The influence of China on global markets, including equities and Bitcoin, is being closely monitored. Overall, there is a mix of sentiments towards China, ranging from underestimation to overestimation, with some individuals having more nuanced views. The use of tariffs as a tool in the trade war is a major point of contention, with concerns about the potential impact on the global economy.", - data: [ - 2, 8, 18, 4, 5, 7, 2, 7, 11, 15, 3, 3, 11, 6, 6, 11, 11, 3, 1, 4, 10, 6, 15, 9, 11, 9, 11, - 5, 3, 4, 10, 6, 7, 7, 4, 10, 4, 2, 6, 18, 19, 34, 7, 5, 7, 10, 16, 16, 25, 8, 4, 9, 11, 4, - 8, - ], - }, - { - label: 'BNB', - topics: 'bnb,alltime,outperforming,recovered,fruit', - description: - 'The key topics currently being discussed in the crypto community on Twitter include the impressive performance of $BNB, with it hitting new all-time highs and outperforming other major cryptocurrencies. There is excitement about BNB Chain and its ecosystem strength, with mentions of BSC builders and the overall hype surrounding BNB. Traders are discussing potential trading setups and targets for shorting or buying $BNB, as well as the potential for a double top formation. Additionally, there is speculation about the future price movements of $BNB and comparisons to other cryptocurrencies like $SOL. Overall, the sentiment towards $BNB is positive, with many users praising its resilience and strength in the market.', - data: [ - 7, 3, 5, 7, 3, 32, 5, 7, 7, 6, 6, 4, 4, 10, 4, 6, 9, 6, 5, 7, 4, 7, 21, 7, 2, 10, 3, 4, 9, - 2, 3, 2, 16, 3, 6, 6, 7, 7, 12, 8, 12, 9, 11, 9, 0, 11, 8, 8, 4, 8, 4, 2, 2, 2, 4, - ], - }, - { - label: 'DeFi', - topics: 'defai,defi,oracles,lending,aave', - description: - 'The messages from twitter focus on the growing popularity and importance of DeFi (Decentralized Finance) in the crypto industry. DeFi is highlighted as the true crypto way, designed to eliminate middlemen and provide transparency and fairness in the market. The messages also discuss the recent market crash and how DeFi proved its resilience compared to centralized exchanges (CEXes).\n\nThere is a mention of partnerships and bounty programs aimed at improving the security and safety of DeFi platforms. The messages also touch upon the growth potential of DeFi, with projects like YuzuMoneyX aiming to make DeFi more accessible and transparent to a wider user base.\n\nAdditionally, there are references to specific DeFi projects like Dypius and turtledotxyz, which are gaining popularity and offering simplified ways for users to participate in DeFi activities such as yield farming and lending.\n\nOverall, the messages emphasize the benefits of DeFi over traditional centralized financial systems and highlight the ongoing innovation and growth within the DeFi space.', - data: [ - 10, 4, 9, 0, 8, 4, 9, 5, 6, 4, 4, 0, 11, 4, 8, 7, 7, 6, 5, 2, 9, 1, 3, 9, 10, 5, 7, 6, 5, 6, - 6, 1, 12, 9, 12, 5, 4, 11, 6, 11, 3, 4, 6, 5, 7, 8, 9, 8, 10, 8, 10, 3, 6, 9, 5, - ], - }, - { - label: '"Lion" meme', - topics: 'lion,concern,concerned,lions,bother', - description: - 'The messages from twitter suggest that "the lion" is a prominent figure in the crypto industry who is portrayed as confident, experienced, and unbothered by market fluctuations. The lion is described as fully invested in the market, unconcerned with losses, and focused on long-term growth. There are references to the lion\'s interactions with other animals, such as the lioness and the dog, as well as his interactions with specific individuals like CZ. Additionally, there are mentions of the lion\'s use of specific tools and platforms in the crypto space, such as clash royale and CoinbaseDev. Overall, the lion is depicted as a seasoned player in the crypto industry who is unfazed by challenges and remains optimistic about the future.', - data: [ - 1, 0, 1, 0, 1, 1, 2, 0, 2, 3, 1, 0, 0, 3, 0, 2, 0, 3, 1, 1, 0, 1, 0, 1, 2, 2, 0, 283, 3, 0, - 0, 1, 0, 2, 3, 1, 2, 1, 0, 3, 0, 1, 3, 2, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, - ], - }, - { - label: 'Middle east politics', - topics: 'jews,jewish,israel,hamas,ceasefire', - description: - 'The messages from twitter are filled with anti-Semitic rhetoric, conspiracy theories, and discussions about the Israeli-Palestinian conflict. There are mentions of Zionist occupation, accusations of Jewish behavior driving conflict, and criticism of Israel\'s actions. The messages also touch on the idea of a "Greater Israel" and the concept of a one-state solution for Palestine. Overall, the tone is divisive and inflammatory, with little room for constructive dialogue or understanding.', - data: [ - 7, 5, 11, 5, 8, 5, 2, 8, 6, 7, 7, 2, 5, 4, 5, 7, 8, 3, 4, 3, 7, 4, 1, 8, 12, 3, 14, 7, 4, 5, - 5, 6, 8, 6, 3, 10, 5, 10, 5, 7, 5, 2, 5, 2, 6, 7, 6, 7, 5, 12, 4, 14, 6, 6, 10, - ], - }, - { - label: 'Dangers of leverage ', - topics: 'leverage,lev,15x,lesson,careful', - description: - 'The key topics discussed in the messages from twitter are the risks and dangers of leverage trading in the crypto industry. Many users shared their experiences of being liquidated or losing significant amounts of money due to leverage trading. The importance of setting stop-loss orders, using isolated margin, and only investing what you can afford to lose were emphasized. Some users warned against the use of leverage altogether, while others shared strategies for using leverage safely, such as using low leverage ratios and diversifying into spot trading. The message overall was to be cautious and informed when it comes to leverage trading in the volatile crypto market.', - data: [ - 2, 3, 3, 4, 5, 2, 6, 8, 3, 3, 2, 3, 4, 6, 3, 2, 6, 5, 4, 5, 8, 2, 4, 2, 6, 4, 54, 10, 11, 5, - 4, 2, 5, 3, 3, 13, 9, 3, 7, 7, 7, 1, 4, 1, 9, 5, 8, 5, 20, 8, 13, 2, 1, 6, 5, - ], - }, - { - label: 'Liquidations', - topics: 'lost,losses,hurting,sad,temporary', - description: - 'The messages from twitter highlight the emotional rollercoaster that comes with trading in the crypto industry. Many individuals have experienced significant losses, liquidations, and the pain of regret from not following their trading plans. Despite the losses, there is a sense of resilience and determination to recover and learn from the mistakes.\n\nKey themes in the messages include the importance of risk management, avoiding leverage, and the need for community support during difficult times. There is also a reminder to focus on the long-term opportunities in the crypto market and to never give up, even in the face of major losses.\n\nOverall, the messages reflect the volatile nature of the crypto industry and the psychological impact it can have on traders. It serves as a reminder to approach trading with caution, proper risk management, and a supportive community to navigate through the ups and downs of the market.', - data: [ - 8, 0, 2, 4, 2, 2, 1, 3, 2, 6, 6, 5, 0, 1, 2, 2, 3, 6, 3, 16, 9, 10, 3, 2, 4, 7, 7, 22, 55, - 4, 6, 8, 2, 10, 8, 10, 4, 0, 1, 4, 6, 2, 4, 6, 4, 8, 3, 2, 10, 6, 7, 7, 1, 1, 13, - ], - }, - { - label: 'Buy the dip', - topics: 'dips,dipping,dip,anon,pnkstr', - description: - 'Summary:\nThe messages from twitter mainly revolve around the concept of buying the dip in the crypto market. There is a strong emphasis on taking advantage of dip buying opportunities and using cash positions to buy the dip. The community encourages buying dips like candy bars and emphasizes the importance of being patient during market dips. Some users express frustration with the idea of buying the dip, questioning what to buy and with what funds. Overall, the sentiment is bullish on buying the dip and seizing opportunities for potential gains in the market.', - data: [ - 2, 4, 1, 4, 3, 17, 47, 3, 2, 1, 6, 0, 64, 6, 0, 1, 5, 4, 7, 3, 6, 5, 1, 1, 3, 4, 6, 4, 3, 0, - 1, 4, 1, 1, 0, 2, 2, 5, 4, 3, 5, 3, 1, 5, 8, 2, 5, 2, 6, 6, 2, 3, 3, 2, 6, - ], - }, - { - label: 'BTC price', - topics: 'swept,4h,consolidating,area,115k', - description: - 'Overall, the sentiment around $BTC seems to be bearish in the short term, with discussions about potential pullbacks and lower price levels. However, there are also mentions of potential bounce-backs and bullish momentum if certain key levels are held. Traders are advised to pay close attention to exits and key support levels to navigate the current market conditions. The overall outlook for $BTC remains uncertain, with a mix of caution and optimism among traders and analysts.', - data: [ - 3, 4, 3, 4, 5, 17, 6, 5, 2, 16, 2, 8, 5, 10, 4, 9, 2, 3, 2, 4, 1, 3, 17, 5, 1, 2, 5, 9, 7, - 8, 5, 0, 4, 2, 5, 5, 12, 5, 6, 12, 4, 3, 8, 3, 7, 10, 5, 6, 3, 1, 5, 5, 3, 3, 0, - ], - }, - { - label: 'Art', - topics: 'artist,artists,art,museum,3d', - description: - 'The messages from twitter mainly focus on the importance of art, the relationship between artists and collectors, and the impact of art on society. There is a strong emphasis on the value of art and the need for collectors to support artists by purchasing their works. The messages also touch on the evolution of art, with mentions of new artwork being revealed soon and artists improving their skills over time. Additionally, there is a discussion about the intersection of art and technology, as seen in the "Art vs. Code" collection for the @museumartlight. Overall, the messages highlight the significance of art in our lives and the need for continued support and appreciation for artists and their work.', - data: [ - 1, 3, 49, 3, 3, 1, 1, 6, 5, 4, 16, 2, 7, 6, 1, 9, 9, 1, 6, 0, 1, 5, 4, 4, 2, 2, 6, 2, 2, 11, - 5, 6, 13, 2, 10, 10, 2, 5, 3, 0, 1, 7, 4, 3, 3, 3, 2, 5, 1, 7, 6, 2, 1, 7, 4, - ], - }, - { - label: 'Football', - topics: 'football,coach,cam,firing,fired', - description: - 'The messages from twitter mainly focus on football, particularly discussing the performance of various players, coaches, and teams. There is also mention of potential trades and the importance of accountability in the sport. Additionally, there is a comparison between college and NFL coaching positions, as well as a discussion about college basketball rankings. Overall, the messages highlight the passion and analysis surrounding football and sports in general within the crypto community.', - data: [ - 7, 1, 6, 9, 4, 3, 3, 4, 7, 7, 2, 6, 4, 2, 7, 1, 15, 5, 9, 10, 7, 6, 6, 4, 3, 5, 3, 0, 5, 1, - 1, 4, 9, 3, 5, 7, 3, 3, 3, 5, 6, 4, 1, 5, 2, 9, 4, 8, 6, 4, 6, 6, 3, 7, 10, - ], - }, - { - label: 'XRP price', - topics: 'xrp,ripple,270,explosive,280', - description: - 'The messages from twitter suggest that XRP investors have been experiencing significant volatility in the market. There have been instances of profit-taking after the price surged above $2, with waves of realization in December 2024 and July 2025. Despite facing extreme volatility and liquidations, XRP has shown resilience and potential for a rebound. Traders are closely monitoring key support levels and potential breakout points, with mixed momentum keeping them on edge. Overall, the sentiment among XRP investors seems to be optimistic, with hopes for a potential rally towards $3.25-$3.33 range in the near future.', - data: [ - 6, 3, 4, 6, 5, 6, 6, 8, 8, 4, 4, 4, 3, 7, 1, 11, 5, 2, 1, 6, 0, 5, 10, 2, 7, 1, 4, 4, 7, 3, - 3, 3, 5, 1, 1, 0, 5, 5, 4, 3, 7, 5, 6, 4, 2, 7, 5, 1, 3, 5, 3, 6, 4, 3, 10, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-94.json b/priv/repo/major_topics_seed/data-94.json deleted file mode 100644 index 1690b210ba..0000000000 --- a/priv/repo/major_topics_seed/data-94.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["16.10.25","17.10.25","17.10.25","17.10.25","17.10.25","17.10.25","17.10.25","17.10.25","18.10.25","18.10.25","18.10.25","18.10.25","18.10.25","18.10.25","18.10.25","18.10.25","19.10.25","19.10.25","19.10.25","19.10.25","19.10.25","19.10.25","19.10.25","19.10.25","20.10.25","20.10.25","20.10.25","20.10.25","20.10.25","20.10.25","20.10.25","20.10.25","21.10.25","21.10.25","21.10.25","21.10.25","21.10.25","21.10.25","21.10.25","21.10.25","22.10.25","22.10.25","22.10.25","22.10.25","22.10.25","22.10.25","22.10.25","22.10.25","23.10.25","23.10.25","23.10.25","23.10.25","23.10.25","23.10.25","23.10.25"],"datasets":[{"label":"BTC price","topics":"107k,110k,106k,sma,ema","description":"The key topics discussed in the messages from twitter are:\n- Bitcoin price predictions, including potential highs of $500k, $150k, and $340k\n- Technical analysis patterns such as Broadening Wedge Pattern and Fibonacci retracement levels\n- Resistance levels and support levels for Bitcoin\n- Market reactions to external factors such as trade war fears and macroeconomic conditions\n- Speculation on potential price movements and volatility in the near future\n- Institutional inflows and market recovery\n- Sentiment analysis and euphoria surrounding Bitcoin price movements\n- Long-term game plan for Bitcoin and potential inflection points\n- Leveraged trades and total PnL for Bitcoin traders\n- Key levels to watch for Bitcoin price movements and potential targets\n\nOverall, the messages indicate a mix of technical analysis, market sentiment, and speculation on future price movements for Bitcoin.","data":[18,11,12,13,30,43,32,28,36,16,14,30,14,23,8,31,13,13,9,8,11,10,49,11,7,16,17,20,26,20,14,12,14,11,7,18,30,37,19,32,24,25,24,29,18,30,27,23,12,24,13,13,17,39,10]},{"label":"China","topics":"xi,chinas,jinping,tariffs,china","description":"The key topics currently discussed in the messages from twitter are:\n1. China's power output increase\n2. Tariffs and trade deals between US and China\n3. China's rare earth reserves\n4. European stance towards China\n5. AI hardware war between US and China\n6. US considering export curbs on China-made goods\n7. China's gold buying and its impact on the market\n\nOverall, the messages highlight the ongoing economic and trade dynamics between the US and China, as well as China's growing influence in various sectors such as technology, energy, and commodities like gold.","data":[24,17,24,9,10,9,15,14,29,36,11,8,15,9,11,15,8,12,9,11,10,10,20,13,18,7,15,7,9,20,39,8,6,8,13,10,20,15,16,9,23,77,12,8,12,16,28,15,7,19,20,10,21,11,6]},{"label":"AWS outage","topics":"outage,aws,amazon,downtime,uptime","description":"The messages from twitter highlight the significant impact of the recent AWS outage on various industries, including the crypto community. The outage has exposed the risks of relying heavily on centralized cloud infrastructure, with many services and platforms experiencing disruptions. There is a call for diversification of cloud providers and regions to prevent such widespread issues in the future. The need for distributed resilience and decentralized infrastructure is emphasized, with some suggesting that crypto as a whole should consider alternative solutions to avoid being affected by similar outages in the future. The outage has sparked debates on centralization and the importance of building more resilient systems in the crypto industry.","data":[2,12,13,33,3,19,10,7,24,16,16,16,18,17,17,12,4,6,12,19,9,16,10,11,26,10,7,15,6,10,17,3,9,11,73,11,6,8,9,20,10,10,9,9,5,3,12,6,12,4,16,3,8,23,12]},{"label":"Trump's crypto involvement","topics":"donald,potus,hitler,realdonaldtrump,obama","description":"The messages from twitter discuss various topics related to Trump, including his involvement in the crypto market, his impact on the economy, and his political maneuvers. There is mention of Trump manipulating the market, his family benefiting from market manipulation, and his son Barron becoming a self-made multimillionaire through crypto holdings. Additionally, there are references to Trump's debt, his potential impact on job availability, and his involvement in political campaigns. Overall, the messages convey a mix of opinions on Trump, ranging from admiration to criticism.","data":[9,18,18,9,10,7,6,16,11,12,18,10,15,7,15,16,9,12,4,10,9,18,6,14,6,11,22,11,6,9,10,8,12,6,8,10,30,6,8,11,7,25,11,8,13,12,12,12,17,35,5,12,9,13,12]},{"label":"Risk management","topics":"discipline,emotions,trader,psychology,emotional","description":"The messages from twitter emphasize the importance of having steady hands and smart gains in the crypto industry. It highlights the need to avoid panicking and instead focus on knowing and understanding what you hold. The data behind market shifts is crucial, as many investors tend to invest emotionally and without conviction, leading to bad investment decisions.\n\nThe messages also stress the importance of risk management and not borrowing conviction during volatile times. It is advised to trade what you know and understand, as well as to avoid trying to prove something to yourself or others through trades. The future of transparent markets is mentioned, along with the concept of yield farming and exploring different trading options.\n\nOverall, the key takeaway is to remain unemotional, adapt to market changes, and trust your instincts while avoiding panic entries and overanalyzing. It is important to have a solid risk management strategy and to focus on long-term success rather than short-term gains.","data":[4,5,3,7,14,5,5,4,1,12,11,5,8,5,5,7,4,2,5,7,9,12,10,9,13,8,12,7,2,14,29,5,3,4,9,12,8,6,1,4,16,2,4,18,4,4,8,9,7,58,8,5,6,5,5]},{"label":"Crypto gambling","topics":"casino,gambling,betting,poker,gamble","description":"The messages from twitter mainly focus on gambling, betting, and winning in the crypto industry. There are mentions of various platforms and opportunities for betting and winning money, as well as discussions about the risks and rewards of sports betting and casino games. Overall, the tone is enthusiastic about the potential for big wins but also acknowledges the challenges and regulations in the industry. The messages also touch on the importance of sound money and responsible gambling practices.","data":[9,7,5,6,41,4,1,24,4,8,7,9,5,11,4,2,8,4,25,4,13,13,1,10,8,8,2,14,1,8,7,6,4,6,5,8,21,5,7,7,8,3,5,9,8,3,8,10,6,5,6,5,8,17,7]},{"label":"NFL","topics":"nfl,football,giants,bowl,jets","description":"The messages from twitter do not mention any topics related to cryptocurrency or the crypto industry. Instead, they focus on various sports events, particularly football games and players. The messages discuss the performance of different teams and players, trade requests, game predictions, and opinions on specific players and teams. Overall, the messages revolve around football-related topics and do not touch upon any crypto-related discussions.","data":[6,4,6,11,9,3,2,7,7,10,1,4,11,5,5,9,6,12,13,7,5,10,5,5,9,14,8,8,5,5,1,7,6,5,7,10,20,3,7,6,13,9,5,6,11,5,12,20,7,7,8,7,7,10,5]},{"label":"IDOS network","topics":"portable,reuse,idos,verify,kyc","description":"The key topic currently discussed in the messages from twitter is the impact and importance of idOS in the crypto industry. Users are praising idOS for its ability to provide a single, user-owned identity that can be used across various platforms without the need for repeated KYC verifications. The decentralized identity layer offered by idOS is seen as a game-changer for Web3, with users having full control over their data and the ability to easily move between apps. The technology and goals of idOS are making many users bullish on the project, with its innovative solutions to identity verification and data control. Additionally, the privacy-first approach of idOS, such as the FaceSign feature, is being highlighted as a secure and efficient way to verify identity without compromising privacy. Overall, idOS is being recognized as a foundational element for the future of Web3 access and decentralized identity.","data":[2,5,9,1,7,2,8,6,8,8,6,11,10,3,9,5,11,6,9,2,4,5,1,24,7,9,7,4,11,7,2,1,7,5,12,9,12,5,9,5,7,2,7,9,6,4,7,5,6,3,9,17,4,4,2]},{"label":"Art","topics":"artist,artists,artwork,art,painting","description":"The messages from twitter discuss a wide range of topics related to art, including discussions about the value of art, the importance of originality, the impact of technology on art creation, the role of the art community, and the history of crypto art. The messages also touch on the concept of NFTs and the changing landscape of the art world. Overall, the messages highlight the diverse perspectives and conversations happening within the art community on social media platforms.","data":[3,7,62,6,8,2,2,1,9,5,12,7,6,8,4,4,4,2,7,4,3,2,4,8,2,5,3,5,2,10,4,1,8,2,12,4,4,2,4,12,3,5,9,5,6,4,5,9,4,3,7,4,8,6,5]},{"label":"Situation in Gaza ","topics":"gaza,israeli,hamas,bodies,vance","description":"The messages from twitter are discussing the ongoing conflict between Israel and Hamas in Gaza. The messages mention Israeli airstrikes on Gaza, violations of ceasefire by Hamas, casualties on both sides, and the fragile nature of the ceasefire agreement. There are also mentions of Hamas mobilizing security personnel and the horrific conditions of Palestinian prisoners returned by the Israeli army. The messages highlight the ongoing violence and tensions in the region.","data":[4,8,14,7,1,11,0,9,5,9,6,1,14,1,4,8,3,6,1,0,1,5,5,4,5,13,5,1,0,1,8,8,2,9,6,7,1,6,1,21,8,28,6,3,11,7,5,0,8,3,1,15,7,0,2]},{"label":"NFTs","topics":"nfts,merge,nft,fraction,plortalai","description":"The key topics currently discussed in the messages from twitter are:\n1. Historical NFT sales, including a recent NFT selling for $25 million and the fluctuating values of NFTs over time.\n2. Confusion and lack of understanding about NFTs among the general public.\n3. The potential for making money from NFTs, with some users sharing their success stories.\n4. The versatility of NFTs in representing various digital and physical items.\n5. The impact of NFTs on art and the art market, including the role of NFTs in kickstarting artists' careers.\n6. The launch of new NFT collections and projects, such as the upcoming launch of an NFT collection by AI Agent infra @FractionAI_xyz.\n7. The intersection of NFTs with other technologies, such as AI integration in generative art NFTs.\n8. The potential for NFTs to have a positive impact on communities and preservation, as seen in the example of Yamakoshi DAO saving a Japanese village through NFTs.\n9. The excitement and engagement around NFT trading and projects, with users sharing their experiences and successes in the space.","data":[7,3,6,4,1,12,7,1,8,7,7,3,4,4,1,4,13,4,4,4,8,5,9,4,4,2,4,8,3,7,6,17,4,12,2,7,3,10,6,4,4,4,2,7,4,5,7,11,4,2,7,4,8,1,4]},{"label":"OpenAI browser","topics":"atlas,browser,openai,chatgpt,gpt","description":"The key topics discussed in the messages from twitter are about the release of OpenAI's new AI web browser, ChatGPT Atlas. Users are excited about the potential of the browser and its AI capabilities, with some comparing it to Google Chrome and discussing its potential to compete in the browser market. There is also discussion about the use of AI agents in the browser to automate tasks and improve productivity. Additionally, there is mention of OpenAI's overall expansion into various AI-related products and services, positioning the company as a major player in the AI space.","data":[2,7,5,4,3,1,19,4,1,5,1,4,3,2,3,7,3,6,4,7,3,6,2,4,10,5,17,4,3,6,4,3,13,4,4,3,4,3,4,7,1,3,5,6,3,8,8,7,2,4,11,4,12,4,5]},{"label":"US government shutdown","topics":"shutdown,senate,democrats,republicans,longest","description":"The messages from twitter are discussing the ongoing government shutdown in the United States. There are mentions of Democrats and Republicans blaming each other for the shutdown, with Democrats accused of playing politics and Republicans accused of forcing policy changes. The impact of the shutdown on federal workers, such as TSA workers, is highlighted, with concerns about missed paychecks and increased absenteeism. There are also mentions of Senate votes on funding measures to end the shutdown, as well as warnings about the suspension of SNAP benefits and delays in flights. Overall, the messages reflect a divisive political climate and the struggles faced by individuals affected by the shutdown.","data":[2,2,3,5,5,10,2,8,2,3,2,11,4,2,3,4,12,6,0,0,37,2,3,2,3,2,6,1,2,3,7,2,3,7,4,2,6,4,1,10,5,10,4,25,7,3,1,3,3,6,1,6,2,7,1]},{"label":"DeFi","topics":"defis,layerbankfi,networknoya,defi,borrowing","description":"The messages from twitter highlight the growth and innovation within the DeFi (decentralized finance) space. Key points include the rise of new DeFi experiences, the importance of sustainable growth and community-driven projects, the need for clear regulations to attract institutional capital, and the surge in on-chain derivatives trading volume.\n\nThere is a focus on building and innovating within the DeFi space, with projects like @solsticefi and @DecibelTrade rewriting the DeFi landscape and offering new opportunities for users. The messages also touch on the complexity of DeFi, with the need for tools like @build_on_bob to simplify the process for users.\n\nOverall, the messages convey a sense of excitement and potential for the future of DeFi, with projects like @solsticefi, @noble_xyz, and @NetworkNoya leading the way in innovation and sustainability.","data":[5,2,6,0,4,4,2,3,3,12,7,5,13,7,5,4,6,1,6,2,6,5,3,2,12,5,5,2,3,4,7,4,10,4,1,4,9,12,6,3,7,2,6,0,8,3,1,3,5,7,5,3,4,4,10]},{"label":"Diwali","topics":"diwali,indias,india,indian,celebrates","description":"The messages from twitter are discussing various topics related to India, particularly focusing on the aftermath of Diwali celebrations in Delhi. The messages mention the severe air pollution in Delhi, burn injury cases reported in hospitals, and the use of artificial rain to fight pollution. Additionally, there are mentions of positive events such as the Chandrayaan-2 mission and the Indian army's transformation plans. The messages also highlight the demand for silver in India ahead of Diwali and the success of the Chester County Indian Festival. Overall, the discussions on twitter cover a range of topics related to India, from environmental issues to cultural celebrations and technological advancements.","data":[2,12,6,4,2,5,6,16,6,5,3,5,10,3,7,4,7,2,8,5,3,3,9,7,3,1,6,4,1,6,2,1,2,2,5,3,6,1,5,4,7,3,5,10,6,7,4,1,2,2,3,9,4,8,3]},{"label":"ETH price","topics":"4k,4000,reclaim,5k,8000","description":"Summary:\n- $ETH is making moves towards reclaiming $4,000, with potential for a breakout to $5,000.\n- There is discussion about the resistance levels at $4,100 and $4,057, which are crucial for Ethereum's upside.\n- Analysts are predicting price targets ranging from $7,000 to $10,000 for Ethereum.\n- There is optimism for Ethereum's future performance, with mentions of institutional adoption and technical analysis indicators like the Elliott Wave.\n- The lack of new buyers is noted as a factor keeping Ethereum below $4,000, but there is anticipation for a potential rally.\n- Traders are advised to watch key support levels and technical indicators for potential trading opportunities.","data":[2,3,2,0,2,15,8,3,4,7,3,1,5,4,4,9,7,2,4,5,2,7,10,6,0,3,1,2,14,7,1,6,5,2,1,2,2,9,3,8,11,1,8,11,4,5,8,3,3,8,4,4,2,2,1]},{"label":"Airdrops","topics":"airdrops,airdrop,farming,0g,airdropped","description":"The key topic discussed in the messages from twitter is airdrops in the crypto industry. Users are talking about various airdrops they have received or are anticipating, as well as the potential financial gains or losses associated with them. There is also mention of farming airdrops and the importance of contributing to projects rather than speculating on potential rewards. Additionally, the discretionary nature of airdrops is highlighted, with the reminder that they are not guaranteed and should not be relied upon as financial promises. Overall, the discussion revolves around the excitement and uncertainty surrounding airdrops in the crypto space.","data":[2,51,4,4,8,3,1,3,8,3,0,1,3,6,2,8,2,3,2,0,5,4,6,3,1,4,2,2,8,3,6,4,3,6,3,3,3,2,3,5,4,7,2,7,2,2,5,2,4,4,7,2,2,4,2]},{"label":"SOL price","topics":"sol,180,symmetrical,brokerage,corrective","description":"The messages from twitter suggest that there is a lot of discussion and speculation surrounding the price movement of SOL (Solana) in the crypto industry. Some traders are bullish on SOL, anticipating a potential pump to $120 and even higher targets of $300-$400. However, there are also concerns about the current price action, with some traders leaning bearish below $206 and predicting a potential drop to $193. \n\nThere is also mention of technical analysis indicators such as the Elliott Wave LTF count and the Ichimoku Cloud, which are being used to assess potential price movements and trend reversals. Traders are advised to watch for volume spikes and breakout levels to confirm bullish or bearish trends.\n\nOverall, the sentiment seems mixed with some traders expecting a breakout to new highs while others are more cautious about the current price levels. The discussion also highlights the importance of monitoring key support and resistance levels, as well as market sentiment and order flow, to make informed trading decisions.","data":[4,5,4,5,3,8,4,7,2,4,3,4,3,5,0,5,4,5,3,3,6,6,8,3,5,3,5,5,7,4,3,2,5,4,1,4,4,3,5,8,3,2,5,15,3,5,4,3,4,7,4,2,5,2,1]},{"label":"Israel - Palestine politics","topics":"jews,jewish,israel,palestine,genocide","description":"The messages from twitter contain a lot of anti-Israel and anti-Jewish sentiments, with accusations of ethnic cleansing, manipulation, and genocide. There is also discussion about the power dynamics between Israel and the US, as well as the influence of Zionism and evangelical beliefs. The messages also touch on the conflict between Israel and Hamas, with claims of false flag operations and propaganda. Overall, the tone is critical of Israel and its actions in the region.","data":[5,2,4,5,4,6,3,3,3,8,6,2,3,5,5,4,4,5,5,2,5,3,2,4,9,6,8,3,4,1,6,4,4,3,1,3,6,2,3,7,5,1,3,5,4,7,2,4,4,4,7,5,5,1,8]},{"label":"No Kings protest","topics":"kings,protests,protest,protesting,king","description":"The messages from twitter are discussing the \"No Kings\" protest movement. Some people find it hilarious and believe it is unnecessary, while others find it interesting and are participating in the protests. There are mentions of potential name changes to avoid offending anyone, as well as comparisons to other political figures. The protests seem to be gaining momentum with mentions of future rallies and a \"No Kings 2\" protest already underway. Overall, the messages show a mix of opinions and reactions to the \"No Kings\" protest movement.","data":[0,2,2,4,0,2,3,3,4,2,2,1,8,2,2,3,3,4,1,4,5,7,4,7,2,24,4,2,1,2,4,3,3,5,3,9,2,24,10,4,2,1,2,2,2,3,3,7,2,1,6,4,6,6,3]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-94.ts b/priv/repo/major_topics_seed/data-94.ts deleted file mode 100644 index a7802e5401..0000000000 --- a/priv/repo/major_topics_seed/data-94.ts +++ /dev/null @@ -1,265 +0,0 @@ -export const NARRATIVES = { - labels: [ - '16.10.25', - '17.10.25', - '17.10.25', - '17.10.25', - '17.10.25', - '17.10.25', - '17.10.25', - '17.10.25', - '18.10.25', - '18.10.25', - '18.10.25', - '18.10.25', - '18.10.25', - '18.10.25', - '18.10.25', - '18.10.25', - '19.10.25', - '19.10.25', - '19.10.25', - '19.10.25', - '19.10.25', - '19.10.25', - '19.10.25', - '19.10.25', - '20.10.25', - '20.10.25', - '20.10.25', - '20.10.25', - '20.10.25', - '20.10.25', - '20.10.25', - '20.10.25', - '21.10.25', - '21.10.25', - '21.10.25', - '21.10.25', - '21.10.25', - '21.10.25', - '21.10.25', - '21.10.25', - '22.10.25', - '22.10.25', - '22.10.25', - '22.10.25', - '22.10.25', - '22.10.25', - '22.10.25', - '22.10.25', - '23.10.25', - '23.10.25', - '23.10.25', - '23.10.25', - '23.10.25', - '23.10.25', - '23.10.25', - ], - datasets: [ - { - label: 'BTC price', - topics: '107k,110k,106k,sma,ema', - description: - 'The key topics discussed in the messages from twitter are:\n- Bitcoin price predictions, including potential highs of $500k, $150k, and $340k\n- Technical analysis patterns such as Broadening Wedge Pattern and Fibonacci retracement levels\n- Resistance levels and support levels for Bitcoin\n- Market reactions to external factors such as trade war fears and macroeconomic conditions\n- Speculation on potential price movements and volatility in the near future\n- Institutional inflows and market recovery\n- Sentiment analysis and euphoria surrounding Bitcoin price movements\n- Long-term game plan for Bitcoin and potential inflection points\n- Leveraged trades and total PnL for Bitcoin traders\n- Key levels to watch for Bitcoin price movements and potential targets\n\nOverall, the messages indicate a mix of technical analysis, market sentiment, and speculation on future price movements for Bitcoin.', - data: [ - 18, 11, 12, 13, 30, 43, 32, 28, 36, 16, 14, 30, 14, 23, 8, 31, 13, 13, 9, 8, 11, 10, 49, 11, - 7, 16, 17, 20, 26, 20, 14, 12, 14, 11, 7, 18, 30, 37, 19, 32, 24, 25, 24, 29, 18, 30, 27, - 23, 12, 24, 13, 13, 17, 39, 10, - ], - }, - { - label: 'China', - topics: 'xi,chinas,jinping,tariffs,china', - description: - "The key topics currently discussed in the messages from twitter are:\n1. China's power output increase\n2. Tariffs and trade deals between US and China\n3. China's rare earth reserves\n4. European stance towards China\n5. AI hardware war between US and China\n6. US considering export curbs on China-made goods\n7. China's gold buying and its impact on the market\n\nOverall, the messages highlight the ongoing economic and trade dynamics between the US and China, as well as China's growing influence in various sectors such as technology, energy, and commodities like gold.", - data: [ - 24, 17, 24, 9, 10, 9, 15, 14, 29, 36, 11, 8, 15, 9, 11, 15, 8, 12, 9, 11, 10, 10, 20, 13, - 18, 7, 15, 7, 9, 20, 39, 8, 6, 8, 13, 10, 20, 15, 16, 9, 23, 77, 12, 8, 12, 16, 28, 15, 7, - 19, 20, 10, 21, 11, 6, - ], - }, - { - label: 'AWS outage', - topics: 'outage,aws,amazon,downtime,uptime', - description: - 'The messages from twitter highlight the significant impact of the recent AWS outage on various industries, including the crypto community. The outage has exposed the risks of relying heavily on centralized cloud infrastructure, with many services and platforms experiencing disruptions. There is a call for diversification of cloud providers and regions to prevent such widespread issues in the future. The need for distributed resilience and decentralized infrastructure is emphasized, with some suggesting that crypto as a whole should consider alternative solutions to avoid being affected by similar outages in the future. The outage has sparked debates on centralization and the importance of building more resilient systems in the crypto industry.', - data: [ - 2, 12, 13, 33, 3, 19, 10, 7, 24, 16, 16, 16, 18, 17, 17, 12, 4, 6, 12, 19, 9, 16, 10, 11, - 26, 10, 7, 15, 6, 10, 17, 3, 9, 11, 73, 11, 6, 8, 9, 20, 10, 10, 9, 9, 5, 3, 12, 6, 12, 4, - 16, 3, 8, 23, 12, - ], - }, - { - label: "Trump's crypto involvement", - topics: 'donald,potus,hitler,realdonaldtrump,obama', - description: - "The messages from twitter discuss various topics related to Trump, including his involvement in the crypto market, his impact on the economy, and his political maneuvers. There is mention of Trump manipulating the market, his family benefiting from market manipulation, and his son Barron becoming a self-made multimillionaire through crypto holdings. Additionally, there are references to Trump's debt, his potential impact on job availability, and his involvement in political campaigns. Overall, the messages convey a mix of opinions on Trump, ranging from admiration to criticism.", - data: [ - 9, 18, 18, 9, 10, 7, 6, 16, 11, 12, 18, 10, 15, 7, 15, 16, 9, 12, 4, 10, 9, 18, 6, 14, 6, - 11, 22, 11, 6, 9, 10, 8, 12, 6, 8, 10, 30, 6, 8, 11, 7, 25, 11, 8, 13, 12, 12, 12, 17, 35, - 5, 12, 9, 13, 12, - ], - }, - { - label: 'Risk management', - topics: 'discipline,emotions,trader,psychology,emotional', - description: - 'The messages from twitter emphasize the importance of having steady hands and smart gains in the crypto industry. It highlights the need to avoid panicking and instead focus on knowing and understanding what you hold. The data behind market shifts is crucial, as many investors tend to invest emotionally and without conviction, leading to bad investment decisions.\n\nThe messages also stress the importance of risk management and not borrowing conviction during volatile times. It is advised to trade what you know and understand, as well as to avoid trying to prove something to yourself or others through trades. The future of transparent markets is mentioned, along with the concept of yield farming and exploring different trading options.\n\nOverall, the key takeaway is to remain unemotional, adapt to market changes, and trust your instincts while avoiding panic entries and overanalyzing. It is important to have a solid risk management strategy and to focus on long-term success rather than short-term gains.', - data: [ - 4, 5, 3, 7, 14, 5, 5, 4, 1, 12, 11, 5, 8, 5, 5, 7, 4, 2, 5, 7, 9, 12, 10, 9, 13, 8, 12, 7, - 2, 14, 29, 5, 3, 4, 9, 12, 8, 6, 1, 4, 16, 2, 4, 18, 4, 4, 8, 9, 7, 58, 8, 5, 6, 5, 5, - ], - }, - { - label: 'Crypto gambling', - topics: 'casino,gambling,betting,poker,gamble', - description: - 'The messages from twitter mainly focus on gambling, betting, and winning in the crypto industry. There are mentions of various platforms and opportunities for betting and winning money, as well as discussions about the risks and rewards of sports betting and casino games. Overall, the tone is enthusiastic about the potential for big wins but also acknowledges the challenges and regulations in the industry. The messages also touch on the importance of sound money and responsible gambling practices.', - data: [ - 9, 7, 5, 6, 41, 4, 1, 24, 4, 8, 7, 9, 5, 11, 4, 2, 8, 4, 25, 4, 13, 13, 1, 10, 8, 8, 2, 14, - 1, 8, 7, 6, 4, 6, 5, 8, 21, 5, 7, 7, 8, 3, 5, 9, 8, 3, 8, 10, 6, 5, 6, 5, 8, 17, 7, - ], - }, - { - label: 'NFL', - topics: 'nfl,football,giants,bowl,jets', - description: - 'The messages from twitter do not mention any topics related to cryptocurrency or the crypto industry. Instead, they focus on various sports events, particularly football games and players. The messages discuss the performance of different teams and players, trade requests, game predictions, and opinions on specific players and teams. Overall, the messages revolve around football-related topics and do not touch upon any crypto-related discussions.', - data: [ - 6, 4, 6, 11, 9, 3, 2, 7, 7, 10, 1, 4, 11, 5, 5, 9, 6, 12, 13, 7, 5, 10, 5, 5, 9, 14, 8, 8, - 5, 5, 1, 7, 6, 5, 7, 10, 20, 3, 7, 6, 13, 9, 5, 6, 11, 5, 12, 20, 7, 7, 8, 7, 7, 10, 5, - ], - }, - { - label: 'IDOS network', - topics: 'portable,reuse,idos,verify,kyc', - description: - 'The key topic currently discussed in the messages from twitter is the impact and importance of idOS in the crypto industry. Users are praising idOS for its ability to provide a single, user-owned identity that can be used across various platforms without the need for repeated KYC verifications. The decentralized identity layer offered by idOS is seen as a game-changer for Web3, with users having full control over their data and the ability to easily move between apps. The technology and goals of idOS are making many users bullish on the project, with its innovative solutions to identity verification and data control. Additionally, the privacy-first approach of idOS, such as the FaceSign feature, is being highlighted as a secure and efficient way to verify identity without compromising privacy. Overall, idOS is being recognized as a foundational element for the future of Web3 access and decentralized identity.', - data: [ - 2, 5, 9, 1, 7, 2, 8, 6, 8, 8, 6, 11, 10, 3, 9, 5, 11, 6, 9, 2, 4, 5, 1, 24, 7, 9, 7, 4, 11, - 7, 2, 1, 7, 5, 12, 9, 12, 5, 9, 5, 7, 2, 7, 9, 6, 4, 7, 5, 6, 3, 9, 17, 4, 4, 2, - ], - }, - { - label: 'Art', - topics: 'artist,artists,artwork,art,painting', - description: - 'The messages from twitter discuss a wide range of topics related to art, including discussions about the value of art, the importance of originality, the impact of technology on art creation, the role of the art community, and the history of crypto art. The messages also touch on the concept of NFTs and the changing landscape of the art world. Overall, the messages highlight the diverse perspectives and conversations happening within the art community on social media platforms.', - data: [ - 3, 7, 62, 6, 8, 2, 2, 1, 9, 5, 12, 7, 6, 8, 4, 4, 4, 2, 7, 4, 3, 2, 4, 8, 2, 5, 3, 5, 2, 10, - 4, 1, 8, 2, 12, 4, 4, 2, 4, 12, 3, 5, 9, 5, 6, 4, 5, 9, 4, 3, 7, 4, 8, 6, 5, - ], - }, - { - label: 'Situation in Gaza ', - topics: 'gaza,israeli,hamas,bodies,vance', - description: - 'The messages from twitter are discussing the ongoing conflict between Israel and Hamas in Gaza. The messages mention Israeli airstrikes on Gaza, violations of ceasefire by Hamas, casualties on both sides, and the fragile nature of the ceasefire agreement. There are also mentions of Hamas mobilizing security personnel and the horrific conditions of Palestinian prisoners returned by the Israeli army. The messages highlight the ongoing violence and tensions in the region.', - data: [ - 4, 8, 14, 7, 1, 11, 0, 9, 5, 9, 6, 1, 14, 1, 4, 8, 3, 6, 1, 0, 1, 5, 5, 4, 5, 13, 5, 1, 0, - 1, 8, 8, 2, 9, 6, 7, 1, 6, 1, 21, 8, 28, 6, 3, 11, 7, 5, 0, 8, 3, 1, 15, 7, 0, 2, - ], - }, - { - label: 'NFTs', - topics: 'nfts,merge,nft,fraction,plortalai', - description: - "The key topics currently discussed in the messages from twitter are:\n1. Historical NFT sales, including a recent NFT selling for $25 million and the fluctuating values of NFTs over time.\n2. Confusion and lack of understanding about NFTs among the general public.\n3. The potential for making money from NFTs, with some users sharing their success stories.\n4. The versatility of NFTs in representing various digital and physical items.\n5. The impact of NFTs on art and the art market, including the role of NFTs in kickstarting artists' careers.\n6. The launch of new NFT collections and projects, such as the upcoming launch of an NFT collection by AI Agent infra @FractionAI_xyz.\n7. The intersection of NFTs with other technologies, such as AI integration in generative art NFTs.\n8. The potential for NFTs to have a positive impact on communities and preservation, as seen in the example of Yamakoshi DAO saving a Japanese village through NFTs.\n9. The excitement and engagement around NFT trading and projects, with users sharing their experiences and successes in the space.", - data: [ - 7, 3, 6, 4, 1, 12, 7, 1, 8, 7, 7, 3, 4, 4, 1, 4, 13, 4, 4, 4, 8, 5, 9, 4, 4, 2, 4, 8, 3, 7, - 6, 17, 4, 12, 2, 7, 3, 10, 6, 4, 4, 4, 2, 7, 4, 5, 7, 11, 4, 2, 7, 4, 8, 1, 4, - ], - }, - { - label: 'OpenAI browser', - topics: 'atlas,browser,openai,chatgpt,gpt', - description: - "The key topics discussed in the messages from twitter are about the release of OpenAI's new AI web browser, ChatGPT Atlas. Users are excited about the potential of the browser and its AI capabilities, with some comparing it to Google Chrome and discussing its potential to compete in the browser market. There is also discussion about the use of AI agents in the browser to automate tasks and improve productivity. Additionally, there is mention of OpenAI's overall expansion into various AI-related products and services, positioning the company as a major player in the AI space.", - data: [ - 2, 7, 5, 4, 3, 1, 19, 4, 1, 5, 1, 4, 3, 2, 3, 7, 3, 6, 4, 7, 3, 6, 2, 4, 10, 5, 17, 4, 3, 6, - 4, 3, 13, 4, 4, 3, 4, 3, 4, 7, 1, 3, 5, 6, 3, 8, 8, 7, 2, 4, 11, 4, 12, 4, 5, - ], - }, - { - label: 'US government shutdown', - topics: 'shutdown,senate,democrats,republicans,longest', - description: - 'The messages from twitter are discussing the ongoing government shutdown in the United States. There are mentions of Democrats and Republicans blaming each other for the shutdown, with Democrats accused of playing politics and Republicans accused of forcing policy changes. The impact of the shutdown on federal workers, such as TSA workers, is highlighted, with concerns about missed paychecks and increased absenteeism. There are also mentions of Senate votes on funding measures to end the shutdown, as well as warnings about the suspension of SNAP benefits and delays in flights. Overall, the messages reflect a divisive political climate and the struggles faced by individuals affected by the shutdown.', - data: [ - 2, 2, 3, 5, 5, 10, 2, 8, 2, 3, 2, 11, 4, 2, 3, 4, 12, 6, 0, 0, 37, 2, 3, 2, 3, 2, 6, 1, 2, - 3, 7, 2, 3, 7, 4, 2, 6, 4, 1, 10, 5, 10, 4, 25, 7, 3, 1, 3, 3, 6, 1, 6, 2, 7, 1, - ], - }, - { - label: 'DeFi', - topics: 'defis,layerbankfi,networknoya,defi,borrowing', - description: - 'The messages from twitter highlight the growth and innovation within the DeFi (decentralized finance) space. Key points include the rise of new DeFi experiences, the importance of sustainable growth and community-driven projects, the need for clear regulations to attract institutional capital, and the surge in on-chain derivatives trading volume.\n\nThere is a focus on building and innovating within the DeFi space, with projects like @solsticefi and @DecibelTrade rewriting the DeFi landscape and offering new opportunities for users. The messages also touch on the complexity of DeFi, with the need for tools like @build_on_bob to simplify the process for users.\n\nOverall, the messages convey a sense of excitement and potential for the future of DeFi, with projects like @solsticefi, @noble_xyz, and @NetworkNoya leading the way in innovation and sustainability.', - data: [ - 5, 2, 6, 0, 4, 4, 2, 3, 3, 12, 7, 5, 13, 7, 5, 4, 6, 1, 6, 2, 6, 5, 3, 2, 12, 5, 5, 2, 3, 4, - 7, 4, 10, 4, 1, 4, 9, 12, 6, 3, 7, 2, 6, 0, 8, 3, 1, 3, 5, 7, 5, 3, 4, 4, 10, - ], - }, - { - label: 'Diwali', - topics: 'diwali,indias,india,indian,celebrates', - description: - "The messages from twitter are discussing various topics related to India, particularly focusing on the aftermath of Diwali celebrations in Delhi. The messages mention the severe air pollution in Delhi, burn injury cases reported in hospitals, and the use of artificial rain to fight pollution. Additionally, there are mentions of positive events such as the Chandrayaan-2 mission and the Indian army's transformation plans. The messages also highlight the demand for silver in India ahead of Diwali and the success of the Chester County Indian Festival. Overall, the discussions on twitter cover a range of topics related to India, from environmental issues to cultural celebrations and technological advancements.", - data: [ - 2, 12, 6, 4, 2, 5, 6, 16, 6, 5, 3, 5, 10, 3, 7, 4, 7, 2, 8, 5, 3, 3, 9, 7, 3, 1, 6, 4, 1, 6, - 2, 1, 2, 2, 5, 3, 6, 1, 5, 4, 7, 3, 5, 10, 6, 7, 4, 1, 2, 2, 3, 9, 4, 8, 3, - ], - }, - { - label: 'ETH price', - topics: '4k,4000,reclaim,5k,8000', - description: - "Summary:\n- $ETH is making moves towards reclaiming $4,000, with potential for a breakout to $5,000.\n- There is discussion about the resistance levels at $4,100 and $4,057, which are crucial for Ethereum's upside.\n- Analysts are predicting price targets ranging from $7,000 to $10,000 for Ethereum.\n- There is optimism for Ethereum's future performance, with mentions of institutional adoption and technical analysis indicators like the Elliott Wave.\n- The lack of new buyers is noted as a factor keeping Ethereum below $4,000, but there is anticipation for a potential rally.\n- Traders are advised to watch key support levels and technical indicators for potential trading opportunities.", - data: [ - 2, 3, 2, 0, 2, 15, 8, 3, 4, 7, 3, 1, 5, 4, 4, 9, 7, 2, 4, 5, 2, 7, 10, 6, 0, 3, 1, 2, 14, 7, - 1, 6, 5, 2, 1, 2, 2, 9, 3, 8, 11, 1, 8, 11, 4, 5, 8, 3, 3, 8, 4, 4, 2, 2, 1, - ], - }, - { - label: 'Airdrops', - topics: 'airdrops,airdrop,farming,0g,airdropped', - description: - 'The key topic discussed in the messages from twitter is airdrops in the crypto industry. Users are talking about various airdrops they have received or are anticipating, as well as the potential financial gains or losses associated with them. There is also mention of farming airdrops and the importance of contributing to projects rather than speculating on potential rewards. Additionally, the discretionary nature of airdrops is highlighted, with the reminder that they are not guaranteed and should not be relied upon as financial promises. Overall, the discussion revolves around the excitement and uncertainty surrounding airdrops in the crypto space.', - data: [ - 2, 51, 4, 4, 8, 3, 1, 3, 8, 3, 0, 1, 3, 6, 2, 8, 2, 3, 2, 0, 5, 4, 6, 3, 1, 4, 2, 2, 8, 3, - 6, 4, 3, 6, 3, 3, 3, 2, 3, 5, 4, 7, 2, 7, 2, 2, 5, 2, 4, 4, 7, 2, 2, 4, 2, - ], - }, - { - label: 'SOL price', - topics: 'sol,180,symmetrical,brokerage,corrective', - description: - 'The messages from twitter suggest that there is a lot of discussion and speculation surrounding the price movement of SOL (Solana) in the crypto industry. Some traders are bullish on SOL, anticipating a potential pump to $120 and even higher targets of $300-$400. However, there are also concerns about the current price action, with some traders leaning bearish below $206 and predicting a potential drop to $193. \n\nThere is also mention of technical analysis indicators such as the Elliott Wave LTF count and the Ichimoku Cloud, which are being used to assess potential price movements and trend reversals. Traders are advised to watch for volume spikes and breakout levels to confirm bullish or bearish trends.\n\nOverall, the sentiment seems mixed with some traders expecting a breakout to new highs while others are more cautious about the current price levels. The discussion also highlights the importance of monitoring key support and resistance levels, as well as market sentiment and order flow, to make informed trading decisions.', - data: [ - 4, 5, 4, 5, 3, 8, 4, 7, 2, 4, 3, 4, 3, 5, 0, 5, 4, 5, 3, 3, 6, 6, 8, 3, 5, 3, 5, 5, 7, 4, 3, - 2, 5, 4, 1, 4, 4, 3, 5, 8, 3, 2, 5, 15, 3, 5, 4, 3, 4, 7, 4, 2, 5, 2, 1, - ], - }, - { - label: 'Israel - Palestine politics', - topics: 'jews,jewish,israel,palestine,genocide', - description: - 'The messages from twitter contain a lot of anti-Israel and anti-Jewish sentiments, with accusations of ethnic cleansing, manipulation, and genocide. There is also discussion about the power dynamics between Israel and the US, as well as the influence of Zionism and evangelical beliefs. The messages also touch on the conflict between Israel and Hamas, with claims of false flag operations and propaganda. Overall, the tone is critical of Israel and its actions in the region.', - data: [ - 5, 2, 4, 5, 4, 6, 3, 3, 3, 8, 6, 2, 3, 5, 5, 4, 4, 5, 5, 2, 5, 3, 2, 4, 9, 6, 8, 3, 4, 1, 6, - 4, 4, 3, 1, 3, 6, 2, 3, 7, 5, 1, 3, 5, 4, 7, 2, 4, 4, 4, 7, 5, 5, 1, 8, - ], - }, - { - label: 'No Kings protest', - topics: 'kings,protests,protest,protesting,king', - description: - 'The messages from twitter are discussing the "No Kings" protest movement. Some people find it hilarious and believe it is unnecessary, while others find it interesting and are participating in the protests. There are mentions of potential name changes to avoid offending anyone, as well as comparisons to other political figures. The protests seem to be gaining momentum with mentions of future rallies and a "No Kings 2" protest already underway. Overall, the messages show a mix of opinions and reactions to the "No Kings" protest movement.', - data: [ - 0, 2, 2, 4, 0, 2, 3, 3, 4, 2, 2, 1, 8, 2, 2, 3, 3, 4, 1, 4, 5, 7, 4, 7, 2, 24, 4, 2, 1, 2, - 4, 3, 3, 5, 3, 9, 2, 24, 10, 4, 2, 1, 2, 2, 2, 3, 3, 7, 2, 1, 6, 4, 6, 6, 3, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-95.json b/priv/repo/major_topics_seed/data-95.json deleted file mode 100644 index 3cd1e960ef..0000000000 --- a/priv/repo/major_topics_seed/data-95.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["23.10.25","24.10.25","24.10.25","24.10.25","24.10.25","24.10.25","24.10.25","24.10.25","25.10.25","25.10.25","25.10.25","25.10.25","25.10.25","25.10.25","25.10.25","25.10.25","26.10.25","26.10.25","26.10.25","26.10.25","26.10.25","26.10.25","26.10.25","26.10.25","27.10.25","27.10.25","27.10.25","27.10.25","27.10.25","27.10.25","27.10.25","27.10.25","28.10.25","28.10.25","28.10.25","28.10.25","28.10.25","28.10.25","28.10.25","28.10.25","29.10.25","29.10.25","29.10.25","29.10.25","29.10.25","29.10.25","29.10.25","29.10.25","30.10.25","30.10.25","30.10.25","30.10.25","30.10.25","30.10.25","30.10.25"],"datasets":[{"label":"Rate cut","topics":"25bps,qt,bps,quantitative,powells","description":"The key topics currently being discussed in the crypto community on social media include the Federal Reserve's announcement that Quantitative Tightening (QT) will end on December 1st, rate cuts, and the overall impact on the market. There is speculation about whether there will be further rate cuts or a pivot towards Quantitative Easing (QE). The market seems to be reacting to the Fed's decisions, with some uncertainty about the future direction. Overall, there is anticipation and analysis of how these decisions will affect various assets, including cryptocurrencies like Bitcoin.","data":[15,10,28,13,6,11,8,33,17,8,136,48,14,41,29,21,14,10,8,16,10,13,14,7,13,8,8,12,10,27,28,8,7,22,6,14,32,20,91,14,22,13,12,5,23,17,10,15,32,6,8,12,17,9,7]},{"label":"US - China trade deal","topics":"chinas,jinping,xi,fentanyl,earths","description":"The key topics discussed in the messages from twitter are:\n1. Trump negotiating and accomplishing a massive trade deal between Pakistan and Bangladesh\n2. The US and China reducing port fees on shipments between both countries\n3. Speculation about Trump announcing a TikTok deal by Thursday\n4. The relationship between the US and China, focusing on working together versus fighting each other\n5. President Trump's successful meeting with China's President Xi, highlighting agreements on trade and collaboration\n6. China's hairy crab industry facing climate stress\n7. Discussions on trade deals, export controls, and tariffs between China and the US\n8. The impact of Chinese overproduction and cost-competitive manufacturing on global markets\n9. General Flynn's warning about the Chinese threat\n10. High-stakes trade talks between the US and China in Malaysia\n11. Donald Trump calling Xi a tough negotiator during talks in South Korea\n\nOverall, the messages highlight the ongoing trade negotiations and relationships between the US and China, as well as the potential impact on various industries and global markets.","data":[5,31,43,18,16,4,11,29,6,18,18,20,19,11,20,15,13,3,15,10,24,18,12,15,11,17,8,15,11,17,68,9,16,16,14,13,20,16,28,25,26,76,16,12,13,20,19,13,39,6,21,18,16,17,13]},{"label":"Gold and other metals ","topics":"silver,4000,gold,platinum,rotation","description":"The key topics currently being discussed in the crypto industry on social media include the relationship between gold and Bitcoin, with some predicting that Bitcoin will surpass gold in market cap in the next 5 years. There is also discussion about gold's recent performance, with some noting that gold is down while Bitcoin is up. Additionally, there is talk about central banks buying unprecedented amounts of gold and the impact of technology on the value of gold. Some are also discussing the recent drop in gold prices and the potential for a correction. Finally, there is mention of a silver shortage at the Perth Mint and the declining validator count for Solana.","data":[11,11,16,22,12,19,20,27,16,20,15,18,19,17,12,14,14,15,6,105,11,14,17,10,18,5,8,19,16,8,15,9,17,8,30,16,35,11,23,18,20,14,25,27,13,14,8,21,28,14,18,21,18,11,9]},{"label":"Monad airdrop","topics":"mon,boxes,gmonad,monad,reveal","description":"The monad team is receiving high praise for their work, with users expressing excitement about the potential of the monad tokenomics. There is anticipation for the opening of monad boxes, with some users reporting disappointment while others are excited about the potential rewards. The community is discussing the value of MON tokens and the potential for significant gains. Overall, there is a sense of optimism and enthusiasm surrounding the monad project.","data":[8,66,8,11,7,27,7,22,19,10,15,45,8,10,13,11,10,18,34,41,14,21,16,18,4,9,8,9,19,10,7,81,12,16,27,9,7,7,6,9,33,11,8,7,16,9,24,21,11,6,15,11,11,12,12]},{"label":"AI","topics":"miranetwork,mira,ais,perlelabs,models","description":"The messages from twitter discuss a variety of topics related to AI, including the impact of AI on industries, the future of AI in human society, the challenges and opportunities of AI in startups, the integration of AI frameworks with agents, and the rise of agentic AI. There is also mention of AI-driven precision medicine, the use of AI agents in drafting job descriptions, and the development of multimodal AI pipelines. Additionally, there is discussion about the cost differences of building AI in different countries, the emergence of decentralized AI agents, and the self-improving capabilities of decentralized AI layers in the crypto industry. Overall, the messages highlight the growing importance and complexity of AI in various sectors.","data":[15,43,14,7,16,16,19,14,17,22,15,7,19,17,21,10,17,17,8,15,10,13,12,23,22,23,13,8,5,6,7,22,26,5,16,20,10,13,15,16,11,8,8,15,12,11,26,22,6,17,8,8,13,17,5]},{"label":"ZEC","topics":"zcash,zec,hayes,xmr,monero","description":"The key topics discussed in the messages from twitter are:\n1. Zcash (ZEC) market cap compared to Ethereum (ETH)\n2. Zcash being a better name than Monero\n3. Zcash's recent surge in price\n4. Zcash's potential for further growth\n5. Zcash's privacy features and its appeal to the libertarian community\n6. Zcash's upcoming halving in 2025\n7. Speculation on Zcash's future price potential\n8. Zcash's recent gains and attention from well-known figures in the crypto industry\n9. The importance of privacy in cryptocurrency transactions\n10. Discussion about buying Zcash directly onchain vs. through a centralized exchange\n11. Mention of a new cryptocurrency project called CZ Guardian on BSC\n\nOverall, the messages indicate a positive sentiment towards Zcash, with discussions focusing on its price performance, privacy features, and potential for future growth.","data":[16,6,9,13,14,12,18,16,21,11,15,6,7,13,11,8,22,11,7,10,10,14,14,9,14,6,12,10,17,11,8,12,7,10,9,11,10,35,14,12,19,9,26,19,8,23,16,8,8,9,17,12,6,8,70]},{"label":"X402 protocol","topics":"402,x402,autonomously,cloudflare,apis","description":"The key topics discussed in the messages from twitter regarding x402 are:\n\n1. x402 is a new crypto payment standard for digital agents that enables automated, machine-to-machine micropayments using stablecoins.\n2. x402 standardizes botting your blockchain with transactions, allowing developers to build on it.\n3. There is speculation about the potential impact of x402 on the market, with some predicting that Coinbase will see a significant increase in trading volume.\n4. x402 is seen as a way to unlock revenue across various platforms, including web2, web3, and AI.\n5. Some projects have already pivoted to x402, and it is being implemented by companies like Cloudflare.\n6. x402 allows for frictionless microtransactions over HTTP, bringing back the long-dormant HTTP 402 \"Payment Required\" code.\n7. The x402 ecosystem and market roadmap are seen as exciting, with a focus on consumer apps, chains, protocols, wallets, payments, identity, and emerging technologies.\n8. There is discussion about the potential killer applications for x402 and why certain companies, like the President of the United States, have not launched a token using x402.\n9. x402 is praised for its potential to enable real-world use cases for cryptocurrency and facilitate on-chain payments with stablecoins.\n10. There is a livestream available on how to build apps and agents using x402, showcasing its practical applications in the crypto industry.","data":[5,26,12,5,9,13,10,9,12,9,9,4,7,5,14,8,5,10,4,4,6,7,13,18,14,14,21,8,13,9,5,6,15,14,21,5,6,2,8,6,5,12,6,12,6,9,18,21,10,5,11,7,3,4,220]},{"label":"USA immigration issues","topics":"immigration,attorney,charges,illegals,ice","description":"The messages from twitter discuss a variety of topics related to immigration, politics, legal issues, and cultural shifts in America. There is mention of immigrants, illegal immigration, the American National anthem, political instability, lawsuits, drug markets, background checks, American exceptionalism, and cultural changes in America. The messages also touch on issues related to denaturalization and deportation of naturalized citizens, as well as the impact of woke fundamentalism on art and culture in America. Overall, the messages reflect a range of opinions and concerns about the current state of affairs in the United States.","data":[13,18,25,7,9,9,4,13,18,12,11,7,31,11,15,16,11,14,2,14,9,10,5,30,24,13,24,7,16,18,13,6,13,10,13,13,13,23,6,14,16,13,13,4,14,21,6,20,3,10,7,9,16,11,12]},{"label":"Israel - Palestine","topics":"gaza,israel,hamas,jews,jewish","description":"The messages from twitter are discussing a variety of topics related to the conflict between Israel and Palestine. There are mentions of the ongoing occupation of Palestine, the search for hostages in Gaza, the potential for a UN resolution authorizing a peacekeeping force in Gaza, accusations of genocide by Israel, and the treatment of Palestinian prisoners. Additionally, there are references to international involvement in the conflict, including discussions about foreign troops securing a ceasefire and meetings in Cairo to forge a unified Palestinian position. The messages also touch on historical aspects of the conflict, such as the presence of Jews in Baghdad in 1948 and the rejection of annexation of the West Bank by Israeli lawmakers. There are also mentions of religious tensions between Jews and Christians, particularly regarding beliefs about Jesus and the concept of Zionism.","data":[11,27,28,8,3,12,9,19,14,14,3,5,23,12,14,9,14,7,6,9,6,23,11,12,26,16,12,1,8,2,18,4,13,18,20,15,8,15,6,18,22,27,16,12,9,24,10,10,5,7,7,14,10,22,12]},{"label":"BTC","topics":"bitcoiner,fiat,bitcoiners,guytalksfinance,monetary","description":"@YungGucciT is a strong advocate for Bitcoin, believing in its potential to separate money from the state and heralding its global adoption as inevitable. They criticize those in the crypto community who do not own Bitcoin, emphasizing the importance of math in their reasoning. They also express frustration with those who do not understand Bitcoin, calling for knowledgeable opponents in discussions. Additionally, they highlight the importance of buying Bitcoin now before the cost of labor decreases significantly. Despite some playful attacks on others in the community, @YungGucciT is focused on promoting Bitcoin and ensuring its integration into everyday payments.","data":[11,16,12,12,44,9,10,21,10,12,14,11,17,18,11,10,32,10,10,7,6,9,13,17,13,11,14,13,8,8,12,19,16,6,9,21,10,10,11,11,16,13,9,11,3,11,16,12,7,16,24,4,8,19,1]},{"label":"Memecoins","topics":"memecoin,memecoins,memes,meme,floki","description":"The messages from twitter suggest that meme coins are a popular topic of discussion within the crypto community. The messages mention various meme coins such as $WOJAK, $MEME, $NUB, $BLINK, $MIGGLES, and $GARTH, highlighting their unique features and community support. There is also a mention of job titles being a meme in the crypto industry.\n\nIt is clear that meme coins are seen as a fun and potentially profitable investment by some individuals, with discussions about which meme coins to buy, which ones have the most organic replies, and which ones have the potential for a 1000x return. The messages also touch on the idea of meme coins being a high-risk asset and the importance of community support in the success of a meme coin.\n\nOverall, the messages reflect the playful and speculative nature of meme coins within the crypto industry, with a focus on community engagement, humor, and potential for high returns.","data":[11,2,6,10,12,10,19,7,11,10,20,7,9,9,5,14,11,11,5,11,10,7,8,6,11,12,15,9,6,18,158,6,9,7,8,12,9,7,9,13,16,9,6,3,7,7,9,24,8,12,12,13,7,6,2]},{"label":"VULT","topics":"vult,vultisig,wl,3m,kaito","description":"The messages from @NenitoCrypto, @vultisig, and others on Twitter discuss various topics related to the crypto industry, particularly focusing on the launch of $VULT. Some key points mentioned include the seedless setup of the VULT wallet, the fair distribution of tokens, the success of the flash campaign, and the potential for significant profits for participants. The community seems excited about the project and its innovative features, such as multi-party computation and multiple device signatures for enhanced security. Overall, the sentiment appears positive, with users expressing enthusiasm for the project and its potential for growth.","data":[12,15,4,2,4,7,15,3,7,11,8,11,5,9,8,11,11,6,7,8,5,6,7,8,19,19,10,5,17,7,3,7,16,6,7,8,9,7,9,4,12,34,15,11,11,6,6,8,17,4,15,53,8,14,15]},{"label":"Halloween ","topics":"costume,halloween,spooky,treats,candy","description":"The key topics discussed in the messages from twitter are Halloween costumes, Halloween events and challenges, Halloween giveaways, and Halloween-themed contests. There is also mention of a Halloween stream with spooky content. The messages also touch on the excitement and preparations for Halloween, with some users sharing their costume ideas and plans for the holiday. Overall, the crypto community on Twitter seems to be actively participating in Halloween-themed activities and events.","data":[11,5,10,6,6,11,10,11,15,20,8,24,5,22,10,7,5,5,13,12,6,34,10,2,7,7,5,17,5,4,6,9,11,7,10,9,3,7,13,3,3,21,6,10,36,10,15,10,4,19,10,11,9,11,5]},{"label":"Hyperliquid","topics":"hip3,hyperliquid,hyperliquids,hype,robinhood","description":"The key topics discussed in the messages from twitter regarding Hyperliquid include:\n- Speculation on ATH's in November\n- Positive sentiment towards the team and their actions\n- Holding onto $HYPE tokens for potential future gains\n- Comparisons to other competitors and potential for growth\n- Mention in a16z's state of crypto report\n- Impact of partnerships and collaborations, such as with Arbitrum\n- Trading volume and fees generated\n- Potential airdrops and value appreciation\n\nOverall, the sentiment towards Hyperliquid appears to be bullish, with a focus on potential growth and success in the crypto industry.","data":[16,5,6,6,10,13,18,7,8,9,8,7,12,5,7,10,7,8,16,14,9,3,53,8,8,6,11,17,25,10,5,2,7,5,7,10,7,11,14,12,6,2,10,7,14,14,8,6,15,5,17,8,5,9,8]},{"label":"Trump's influence on crypto ","topics":"epstein,barron,donald,realdonaldtrump,trumps","description":"The messages from twitter suggest that there is a lot of discussion surrounding Trump and his involvement in the crypto industry. Some key points mentioned include:\n- Trump being referred to as a \"crypto president\"\n- Speculation about Trump's involvement in financial networks and potential influence on the market\n- Trump's family allegedly profiting from various crypto trends\n- Trump potentially replacing the Federal Reserve with a cryptocurrency\n- Trump's impact on the price of the $TRUMP token\n- Comparisons between Trump and past presidents like Reagan\n- Trump's approval ratings and potential future plans\n- Retail traders fueling momentum for the $TRUMP token\n- Potential expansion moves for TRUMP token and FIGHT FIGHT FIGHT LLC\n\nOverall, it seems that Trump's actions and statements are closely monitored and analyzed within the crypto community, with speculation about his influence on the market and potential future developments.","data":[7,10,8,12,9,8,7,8,9,9,8,11,11,7,4,12,4,5,7,8,10,6,10,13,10,10,10,9,9,15,10,6,5,10,8,10,16,10,9,9,17,22,10,12,6,24,8,12,14,19,6,8,10,12,4]},{"label":"GameFi","topics":"gaming,gamers,games,gamefi,studios","description":"The key topics currently being discussed in the crypto industry on social media include the evolution of video game consoles, the potential for merge mining related to gaming, the idea of creating a HQ Trivia style game on Spaces, the challenges and potential of Web3 gaming, the gamification of everything on the internet, the concept of community-driven marketing in Web3 gaming, the emergence of player-driven metaverses, the impact of AI and automation on gaming, the importance of community and belonging in games, and the development of player-owned worlds in Web3 gaming. Additionally, specific projects such as Alien Worlds, Decimated, Pirate Nation, Providence, and GameChain are being highlighted and discussed within the community.","data":[3,7,5,11,10,2,9,5,7,14,6,3,5,5,6,8,5,73,3,8,10,9,5,11,8,15,12,6,10,5,8,4,16,10,9,25,7,5,10,10,5,4,4,7,4,4,4,16,3,7,9,7,12,11,11]},{"label":"BTC price","topics":"112k,116k,115k,111k,110k","description":"Summary: Bitcoin is currently on its way to retest the Point of Control (POC) around the $117k range. There is speculation about breaking through resistance and hitting new highs, with key support levels at $112k and $111k. Institutional interest in Bitcoin is rising, and there are bullish signals indicating a potential turning point in the rally. Traders are closely watching for confirmation of an uptrend and potential price movements based on upcoming events like the Federal Open Market Committee (FOMC) meeting. Overall, the sentiment is cautiously optimistic with a bullish outlook for the mid-term target of $130k and above.","data":[11,4,9,7,6,38,12,4,11,13,16,9,9,2,7,8,8,4,2,9,3,5,25,7,10,5,10,3,18,8,6,2,12,2,9,4,15,9,11,19,9,0,11,12,8,17,14,1,9,11,12,7,7,1,1]},{"label":"MegaETH ICO","topics":"megaeth,mega,oversubscribed,ico,megaethlabs","description":"The messages from twitter regarding the megaETH sale show a lot of excitement and anticipation. There are discussions about oversubscription, allocation, and the potential for high returns. Some users express concerns about the ICO being oversubscribed and the potential risks involved. Others highlight the unique features of megaETH, such as its approach to token emissions and real-time chain technology. Overall, there is a mix of optimism, skepticism, and strategic planning among participants in the crypto community.","data":[17,18,5,8,17,3,5,7,12,7,5,3,5,6,5,5,4,4,1,11,6,5,3,7,10,3,3,5,5,4,58,6,5,6,17,12,13,24,10,6,1,28,3,7,3,6,7,12,13,4,14,8,7,4,5]},{"label":"Apefest","topics":"apes,apefest,ape,bayc,yacht","description":"The messages from twitter mainly revolve around the recent Apefest event, where attendees had a great time and bonded over their shared love for apes and the crypto industry. There is excitement about buying and trading APE coin, as well as attending events like ComplexCon. The community is shown to be supportive and inclusive, with mentions of meeting friends and enjoying the vibes at Apefest. There is also discussion about the rise of APE coin and potential investment opportunities. Overall, the messages reflect a passionate and engaged community within the crypto industry.","data":[6,8,54,13,14,11,4,8,16,3,4,1,5,6,7,12,10,8,7,11,5,9,13,7,9,5,6,13,6,7,16,6,8,8,10,11,4,6,6,10,6,11,9,6,9,5,7,7,3,2,6,13,9,4,8]},{"label":"ETH price","topics":"4k,4200,4300,4000,fibonacci","description":"The sentiment around Ethereum (ETH) on social media seems to be overwhelmingly positive, with many users expressing bullish expectations for the price of ETH. There is talk of a potential breakout, with some users predicting price targets as high as $10,000 or even $15,000. Despite some cautionary notes about potential pullbacks, the overall tone is one of excitement and optimism.\n\nThere is also discussion about technical analysis indicators, such as the On-Balance Volume (OBV) and resistance levels, suggesting that traders are closely monitoring these factors to make informed decisions about their ETH investments.\n\nOverall, it appears that the crypto community on social media is highly engaged with the ETH market and is eagerly anticipating potential price movements and opportunities for profit.","data":[2,4,2,9,6,17,10,11,5,16,3,7,4,6,23,4,6,6,4,2,0,2,23,4,7,4,9,5,16,9,2,4,5,3,5,7,16,5,4,10,4,5,5,8,10,3,11,7,8,6,7,3,6,1,4]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-95.ts b/priv/repo/major_topics_seed/data-95.ts deleted file mode 100644 index ac578ccc34..0000000000 --- a/priv/repo/major_topics_seed/data-95.ts +++ /dev/null @@ -1,276 +0,0 @@ -export const NARRATIVES = { - labels: [ - '23.10.25', - '24.10.25', - '24.10.25', - '24.10.25', - '24.10.25', - '24.10.25', - '24.10.25', - '24.10.25', - '25.10.25', - '25.10.25', - '25.10.25', - '25.10.25', - '25.10.25', - '25.10.25', - '25.10.25', - '25.10.25', - '26.10.25', - '26.10.25', - '26.10.25', - '26.10.25', - '26.10.25', - '26.10.25', - '26.10.25', - '26.10.25', - '27.10.25', - '27.10.25', - '27.10.25', - '27.10.25', - '27.10.25', - '27.10.25', - '27.10.25', - '27.10.25', - '28.10.25', - '28.10.25', - '28.10.25', - '28.10.25', - '28.10.25', - '28.10.25', - '28.10.25', - '28.10.25', - '29.10.25', - '29.10.25', - '29.10.25', - '29.10.25', - '29.10.25', - '29.10.25', - '29.10.25', - '29.10.25', - '30.10.25', - '30.10.25', - '30.10.25', - '30.10.25', - '30.10.25', - '30.10.25', - '30.10.25', - ], - datasets: [ - { - label: 'Rate cut', - topics: '25bps,qt,bps,quantitative,powells', - description: - "The key topics currently being discussed in the crypto community on social media include the Federal Reserve's announcement that Quantitative Tightening (QT) will end on December 1st, rate cuts, and the overall impact on the market. There is speculation about whether there will be further rate cuts or a pivot towards Quantitative Easing (QE). The market seems to be reacting to the Fed's decisions, with some uncertainty about the future direction. Overall, there is anticipation and analysis of how these decisions will affect various assets, including cryptocurrencies like Bitcoin.", - data: [ - 15, 10, 28, 13, 6, 11, 8, 33, 17, 8, 136, 48, 14, 41, 29, 21, 14, 10, 8, 16, 10, 13, 14, 7, - 13, 8, 8, 12, 10, 27, 28, 8, 7, 22, 6, 14, 32, 20, 91, 14, 22, 13, 12, 5, 23, 17, 10, 15, - 32, 6, 8, 12, 17, 9, 7, - ], - }, - { - label: 'US - China trade deal', - topics: 'chinas,jinping,xi,fentanyl,earths', - description: - "The key topics discussed in the messages from twitter are:\n1. Trump negotiating and accomplishing a massive trade deal between Pakistan and Bangladesh\n2. The US and China reducing port fees on shipments between both countries\n3. Speculation about Trump announcing a TikTok deal by Thursday\n4. The relationship between the US and China, focusing on working together versus fighting each other\n5. President Trump's successful meeting with China's President Xi, highlighting agreements on trade and collaboration\n6. China's hairy crab industry facing climate stress\n7. Discussions on trade deals, export controls, and tariffs between China and the US\n8. The impact of Chinese overproduction and cost-competitive manufacturing on global markets\n9. General Flynn's warning about the Chinese threat\n10. High-stakes trade talks between the US and China in Malaysia\n11. Donald Trump calling Xi a tough negotiator during talks in South Korea\n\nOverall, the messages highlight the ongoing trade negotiations and relationships between the US and China, as well as the potential impact on various industries and global markets.", - data: [ - 5, 31, 43, 18, 16, 4, 11, 29, 6, 18, 18, 20, 19, 11, 20, 15, 13, 3, 15, 10, 24, 18, 12, 15, - 11, 17, 8, 15, 11, 17, 68, 9, 16, 16, 14, 13, 20, 16, 28, 25, 26, 76, 16, 12, 13, 20, 19, - 13, 39, 6, 21, 18, 16, 17, 13, - ], - }, - { - label: 'Gold and other metals ', - topics: 'silver,4000,gold,platinum,rotation', - description: - "The key topics currently being discussed in the crypto industry on social media include the relationship between gold and Bitcoin, with some predicting that Bitcoin will surpass gold in market cap in the next 5 years. There is also discussion about gold's recent performance, with some noting that gold is down while Bitcoin is up. Additionally, there is talk about central banks buying unprecedented amounts of gold and the impact of technology on the value of gold. Some are also discussing the recent drop in gold prices and the potential for a correction. Finally, there is mention of a silver shortage at the Perth Mint and the declining validator count for Solana.", - data: [ - 11, 11, 16, 22, 12, 19, 20, 27, 16, 20, 15, 18, 19, 17, 12, 14, 14, 15, 6, 105, 11, 14, 17, - 10, 18, 5, 8, 19, 16, 8, 15, 9, 17, 8, 30, 16, 35, 11, 23, 18, 20, 14, 25, 27, 13, 14, 8, - 21, 28, 14, 18, 21, 18, 11, 9, - ], - }, - { - label: 'Monad airdrop', - topics: 'mon,boxes,gmonad,monad,reveal', - description: - 'The monad team is receiving high praise for their work, with users expressing excitement about the potential of the monad tokenomics. There is anticipation for the opening of monad boxes, with some users reporting disappointment while others are excited about the potential rewards. The community is discussing the value of MON tokens and the potential for significant gains. Overall, there is a sense of optimism and enthusiasm surrounding the monad project.', - data: [ - 8, 66, 8, 11, 7, 27, 7, 22, 19, 10, 15, 45, 8, 10, 13, 11, 10, 18, 34, 41, 14, 21, 16, 18, - 4, 9, 8, 9, 19, 10, 7, 81, 12, 16, 27, 9, 7, 7, 6, 9, 33, 11, 8, 7, 16, 9, 24, 21, 11, 6, - 15, 11, 11, 12, 12, - ], - }, - { - label: 'AI', - topics: 'miranetwork,mira,ais,perlelabs,models', - description: - 'The messages from twitter discuss a variety of topics related to AI, including the impact of AI on industries, the future of AI in human society, the challenges and opportunities of AI in startups, the integration of AI frameworks with agents, and the rise of agentic AI. There is also mention of AI-driven precision medicine, the use of AI agents in drafting job descriptions, and the development of multimodal AI pipelines. Additionally, there is discussion about the cost differences of building AI in different countries, the emergence of decentralized AI agents, and the self-improving capabilities of decentralized AI layers in the crypto industry. Overall, the messages highlight the growing importance and complexity of AI in various sectors.', - data: [ - 15, 43, 14, 7, 16, 16, 19, 14, 17, 22, 15, 7, 19, 17, 21, 10, 17, 17, 8, 15, 10, 13, 12, 23, - 22, 23, 13, 8, 5, 6, 7, 22, 26, 5, 16, 20, 10, 13, 15, 16, 11, 8, 8, 15, 12, 11, 26, 22, 6, - 17, 8, 8, 13, 17, 5, - ], - }, - { - label: 'ZEC', - topics: 'zcash,zec,hayes,xmr,monero', - description: - "The key topics discussed in the messages from twitter are:\n1. Zcash (ZEC) market cap compared to Ethereum (ETH)\n2. Zcash being a better name than Monero\n3. Zcash's recent surge in price\n4. Zcash's potential for further growth\n5. Zcash's privacy features and its appeal to the libertarian community\n6. Zcash's upcoming halving in 2025\n7. Speculation on Zcash's future price potential\n8. Zcash's recent gains and attention from well-known figures in the crypto industry\n9. The importance of privacy in cryptocurrency transactions\n10. Discussion about buying Zcash directly onchain vs. through a centralized exchange\n11. Mention of a new cryptocurrency project called CZ Guardian on BSC\n\nOverall, the messages indicate a positive sentiment towards Zcash, with discussions focusing on its price performance, privacy features, and potential for future growth.", - data: [ - 16, 6, 9, 13, 14, 12, 18, 16, 21, 11, 15, 6, 7, 13, 11, 8, 22, 11, 7, 10, 10, 14, 14, 9, 14, - 6, 12, 10, 17, 11, 8, 12, 7, 10, 9, 11, 10, 35, 14, 12, 19, 9, 26, 19, 8, 23, 16, 8, 8, 9, - 17, 12, 6, 8, 70, - ], - }, - { - label: 'X402 protocol', - topics: '402,x402,autonomously,cloudflare,apis', - description: - 'The key topics discussed in the messages from twitter regarding x402 are:\n\n1. x402 is a new crypto payment standard for digital agents that enables automated, machine-to-machine micropayments using stablecoins.\n2. x402 standardizes botting your blockchain with transactions, allowing developers to build on it.\n3. There is speculation about the potential impact of x402 on the market, with some predicting that Coinbase will see a significant increase in trading volume.\n4. x402 is seen as a way to unlock revenue across various platforms, including web2, web3, and AI.\n5. Some projects have already pivoted to x402, and it is being implemented by companies like Cloudflare.\n6. x402 allows for frictionless microtransactions over HTTP, bringing back the long-dormant HTTP 402 "Payment Required" code.\n7. The x402 ecosystem and market roadmap are seen as exciting, with a focus on consumer apps, chains, protocols, wallets, payments, identity, and emerging technologies.\n8. There is discussion about the potential killer applications for x402 and why certain companies, like the President of the United States, have not launched a token using x402.\n9. x402 is praised for its potential to enable real-world use cases for cryptocurrency and facilitate on-chain payments with stablecoins.\n10. There is a livestream available on how to build apps and agents using x402, showcasing its practical applications in the crypto industry.', - data: [ - 5, 26, 12, 5, 9, 13, 10, 9, 12, 9, 9, 4, 7, 5, 14, 8, 5, 10, 4, 4, 6, 7, 13, 18, 14, 14, 21, - 8, 13, 9, 5, 6, 15, 14, 21, 5, 6, 2, 8, 6, 5, 12, 6, 12, 6, 9, 18, 21, 10, 5, 11, 7, 3, 4, - 220, - ], - }, - { - label: 'USA immigration issues', - topics: 'immigration,attorney,charges,illegals,ice', - description: - 'The messages from twitter discuss a variety of topics related to immigration, politics, legal issues, and cultural shifts in America. There is mention of immigrants, illegal immigration, the American National anthem, political instability, lawsuits, drug markets, background checks, American exceptionalism, and cultural changes in America. The messages also touch on issues related to denaturalization and deportation of naturalized citizens, as well as the impact of woke fundamentalism on art and culture in America. Overall, the messages reflect a range of opinions and concerns about the current state of affairs in the United States.', - data: [ - 13, 18, 25, 7, 9, 9, 4, 13, 18, 12, 11, 7, 31, 11, 15, 16, 11, 14, 2, 14, 9, 10, 5, 30, 24, - 13, 24, 7, 16, 18, 13, 6, 13, 10, 13, 13, 13, 23, 6, 14, 16, 13, 13, 4, 14, 21, 6, 20, 3, - 10, 7, 9, 16, 11, 12, - ], - }, - { - label: 'Israel - Palestine', - topics: 'gaza,israel,hamas,jews,jewish', - description: - 'The messages from twitter are discussing a variety of topics related to the conflict between Israel and Palestine. There are mentions of the ongoing occupation of Palestine, the search for hostages in Gaza, the potential for a UN resolution authorizing a peacekeeping force in Gaza, accusations of genocide by Israel, and the treatment of Palestinian prisoners. Additionally, there are references to international involvement in the conflict, including discussions about foreign troops securing a ceasefire and meetings in Cairo to forge a unified Palestinian position. The messages also touch on historical aspects of the conflict, such as the presence of Jews in Baghdad in 1948 and the rejection of annexation of the West Bank by Israeli lawmakers. There are also mentions of religious tensions between Jews and Christians, particularly regarding beliefs about Jesus and the concept of Zionism.', - data: [ - 11, 27, 28, 8, 3, 12, 9, 19, 14, 14, 3, 5, 23, 12, 14, 9, 14, 7, 6, 9, 6, 23, 11, 12, 26, - 16, 12, 1, 8, 2, 18, 4, 13, 18, 20, 15, 8, 15, 6, 18, 22, 27, 16, 12, 9, 24, 10, 10, 5, 7, - 7, 14, 10, 22, 12, - ], - }, - { - label: 'BTC', - topics: 'bitcoiner,fiat,bitcoiners,guytalksfinance,monetary', - description: - '@YungGucciT is a strong advocate for Bitcoin, believing in its potential to separate money from the state and heralding its global adoption as inevitable. They criticize those in the crypto community who do not own Bitcoin, emphasizing the importance of math in their reasoning. They also express frustration with those who do not understand Bitcoin, calling for knowledgeable opponents in discussions. Additionally, they highlight the importance of buying Bitcoin now before the cost of labor decreases significantly. Despite some playful attacks on others in the community, @YungGucciT is focused on promoting Bitcoin and ensuring its integration into everyday payments.', - data: [ - 11, 16, 12, 12, 44, 9, 10, 21, 10, 12, 14, 11, 17, 18, 11, 10, 32, 10, 10, 7, 6, 9, 13, 17, - 13, 11, 14, 13, 8, 8, 12, 19, 16, 6, 9, 21, 10, 10, 11, 11, 16, 13, 9, 11, 3, 11, 16, 12, 7, - 16, 24, 4, 8, 19, 1, - ], - }, - { - label: 'Memecoins', - topics: 'memecoin,memecoins,memes,meme,floki', - description: - 'The messages from twitter suggest that meme coins are a popular topic of discussion within the crypto community. The messages mention various meme coins such as $WOJAK, $MEME, $NUB, $BLINK, $MIGGLES, and $GARTH, highlighting their unique features and community support. There is also a mention of job titles being a meme in the crypto industry.\n\nIt is clear that meme coins are seen as a fun and potentially profitable investment by some individuals, with discussions about which meme coins to buy, which ones have the most organic replies, and which ones have the potential for a 1000x return. The messages also touch on the idea of meme coins being a high-risk asset and the importance of community support in the success of a meme coin.\n\nOverall, the messages reflect the playful and speculative nature of meme coins within the crypto industry, with a focus on community engagement, humor, and potential for high returns.', - data: [ - 11, 2, 6, 10, 12, 10, 19, 7, 11, 10, 20, 7, 9, 9, 5, 14, 11, 11, 5, 11, 10, 7, 8, 6, 11, 12, - 15, 9, 6, 18, 158, 6, 9, 7, 8, 12, 9, 7, 9, 13, 16, 9, 6, 3, 7, 7, 9, 24, 8, 12, 12, 13, 7, - 6, 2, - ], - }, - { - label: 'VULT', - topics: 'vult,vultisig,wl,3m,kaito', - description: - 'The messages from @NenitoCrypto, @vultisig, and others on Twitter discuss various topics related to the crypto industry, particularly focusing on the launch of $VULT. Some key points mentioned include the seedless setup of the VULT wallet, the fair distribution of tokens, the success of the flash campaign, and the potential for significant profits for participants. The community seems excited about the project and its innovative features, such as multi-party computation and multiple device signatures for enhanced security. Overall, the sentiment appears positive, with users expressing enthusiasm for the project and its potential for growth.', - data: [ - 12, 15, 4, 2, 4, 7, 15, 3, 7, 11, 8, 11, 5, 9, 8, 11, 11, 6, 7, 8, 5, 6, 7, 8, 19, 19, 10, - 5, 17, 7, 3, 7, 16, 6, 7, 8, 9, 7, 9, 4, 12, 34, 15, 11, 11, 6, 6, 8, 17, 4, 15, 53, 8, 14, - 15, - ], - }, - { - label: 'Halloween ', - topics: 'costume,halloween,spooky,treats,candy', - description: - 'The key topics discussed in the messages from twitter are Halloween costumes, Halloween events and challenges, Halloween giveaways, and Halloween-themed contests. There is also mention of a Halloween stream with spooky content. The messages also touch on the excitement and preparations for Halloween, with some users sharing their costume ideas and plans for the holiday. Overall, the crypto community on Twitter seems to be actively participating in Halloween-themed activities and events.', - data: [ - 11, 5, 10, 6, 6, 11, 10, 11, 15, 20, 8, 24, 5, 22, 10, 7, 5, 5, 13, 12, 6, 34, 10, 2, 7, 7, - 5, 17, 5, 4, 6, 9, 11, 7, 10, 9, 3, 7, 13, 3, 3, 21, 6, 10, 36, 10, 15, 10, 4, 19, 10, 11, - 9, 11, 5, - ], - }, - { - label: 'Hyperliquid', - topics: 'hip3,hyperliquid,hyperliquids,hype,robinhood', - description: - "The key topics discussed in the messages from twitter regarding Hyperliquid include:\n- Speculation on ATH's in November\n- Positive sentiment towards the team and their actions\n- Holding onto $HYPE tokens for potential future gains\n- Comparisons to other competitors and potential for growth\n- Mention in a16z's state of crypto report\n- Impact of partnerships and collaborations, such as with Arbitrum\n- Trading volume and fees generated\n- Potential airdrops and value appreciation\n\nOverall, the sentiment towards Hyperliquid appears to be bullish, with a focus on potential growth and success in the crypto industry.", - data: [ - 16, 5, 6, 6, 10, 13, 18, 7, 8, 9, 8, 7, 12, 5, 7, 10, 7, 8, 16, 14, 9, 3, 53, 8, 8, 6, 11, - 17, 25, 10, 5, 2, 7, 5, 7, 10, 7, 11, 14, 12, 6, 2, 10, 7, 14, 14, 8, 6, 15, 5, 17, 8, 5, 9, - 8, - ], - }, - { - label: "Trump's influence on crypto ", - topics: 'epstein,barron,donald,realdonaldtrump,trumps', - description: - "The messages from twitter suggest that there is a lot of discussion surrounding Trump and his involvement in the crypto industry. Some key points mentioned include:\n- Trump being referred to as a \"crypto president\"\n- Speculation about Trump's involvement in financial networks and potential influence on the market\n- Trump's family allegedly profiting from various crypto trends\n- Trump potentially replacing the Federal Reserve with a cryptocurrency\n- Trump's impact on the price of the $TRUMP token\n- Comparisons between Trump and past presidents like Reagan\n- Trump's approval ratings and potential future plans\n- Retail traders fueling momentum for the $TRUMP token\n- Potential expansion moves for TRUMP token and FIGHT FIGHT FIGHT LLC\n\nOverall, it seems that Trump's actions and statements are closely monitored and analyzed within the crypto community, with speculation about his influence on the market and potential future developments.", - data: [ - 7, 10, 8, 12, 9, 8, 7, 8, 9, 9, 8, 11, 11, 7, 4, 12, 4, 5, 7, 8, 10, 6, 10, 13, 10, 10, 10, - 9, 9, 15, 10, 6, 5, 10, 8, 10, 16, 10, 9, 9, 17, 22, 10, 12, 6, 24, 8, 12, 14, 19, 6, 8, 10, - 12, 4, - ], - }, - { - label: 'GameFi', - topics: 'gaming,gamers,games,gamefi,studios', - description: - 'The key topics currently being discussed in the crypto industry on social media include the evolution of video game consoles, the potential for merge mining related to gaming, the idea of creating a HQ Trivia style game on Spaces, the challenges and potential of Web3 gaming, the gamification of everything on the internet, the concept of community-driven marketing in Web3 gaming, the emergence of player-driven metaverses, the impact of AI and automation on gaming, the importance of community and belonging in games, and the development of player-owned worlds in Web3 gaming. Additionally, specific projects such as Alien Worlds, Decimated, Pirate Nation, Providence, and GameChain are being highlighted and discussed within the community.', - data: [ - 3, 7, 5, 11, 10, 2, 9, 5, 7, 14, 6, 3, 5, 5, 6, 8, 5, 73, 3, 8, 10, 9, 5, 11, 8, 15, 12, 6, - 10, 5, 8, 4, 16, 10, 9, 25, 7, 5, 10, 10, 5, 4, 4, 7, 4, 4, 4, 16, 3, 7, 9, 7, 12, 11, 11, - ], - }, - { - label: 'BTC price', - topics: '112k,116k,115k,111k,110k', - description: - 'Summary: Bitcoin is currently on its way to retest the Point of Control (POC) around the $117k range. There is speculation about breaking through resistance and hitting new highs, with key support levels at $112k and $111k. Institutional interest in Bitcoin is rising, and there are bullish signals indicating a potential turning point in the rally. Traders are closely watching for confirmation of an uptrend and potential price movements based on upcoming events like the Federal Open Market Committee (FOMC) meeting. Overall, the sentiment is cautiously optimistic with a bullish outlook for the mid-term target of $130k and above.', - data: [ - 11, 4, 9, 7, 6, 38, 12, 4, 11, 13, 16, 9, 9, 2, 7, 8, 8, 4, 2, 9, 3, 5, 25, 7, 10, 5, 10, 3, - 18, 8, 6, 2, 12, 2, 9, 4, 15, 9, 11, 19, 9, 0, 11, 12, 8, 17, 14, 1, 9, 11, 12, 7, 7, 1, 1, - ], - }, - { - label: 'MegaETH ICO', - topics: 'megaeth,mega,oversubscribed,ico,megaethlabs', - description: - 'The messages from twitter regarding the megaETH sale show a lot of excitement and anticipation. There are discussions about oversubscription, allocation, and the potential for high returns. Some users express concerns about the ICO being oversubscribed and the potential risks involved. Others highlight the unique features of megaETH, such as its approach to token emissions and real-time chain technology. Overall, there is a mix of optimism, skepticism, and strategic planning among participants in the crypto community.', - data: [ - 17, 18, 5, 8, 17, 3, 5, 7, 12, 7, 5, 3, 5, 6, 5, 5, 4, 4, 1, 11, 6, 5, 3, 7, 10, 3, 3, 5, 5, - 4, 58, 6, 5, 6, 17, 12, 13, 24, 10, 6, 1, 28, 3, 7, 3, 6, 7, 12, 13, 4, 14, 8, 7, 4, 5, - ], - }, - { - label: 'Apefest', - topics: 'apes,apefest,ape,bayc,yacht', - description: - 'The messages from twitter mainly revolve around the recent Apefest event, where attendees had a great time and bonded over their shared love for apes and the crypto industry. There is excitement about buying and trading APE coin, as well as attending events like ComplexCon. The community is shown to be supportive and inclusive, with mentions of meeting friends and enjoying the vibes at Apefest. There is also discussion about the rise of APE coin and potential investment opportunities. Overall, the messages reflect a passionate and engaged community within the crypto industry.', - data: [ - 6, 8, 54, 13, 14, 11, 4, 8, 16, 3, 4, 1, 5, 6, 7, 12, 10, 8, 7, 11, 5, 9, 13, 7, 9, 5, 6, - 13, 6, 7, 16, 6, 8, 8, 10, 11, 4, 6, 6, 10, 6, 11, 9, 6, 9, 5, 7, 7, 3, 2, 6, 13, 9, 4, 8, - ], - }, - { - label: 'ETH price', - topics: '4k,4200,4300,4000,fibonacci', - description: - 'The sentiment around Ethereum (ETH) on social media seems to be overwhelmingly positive, with many users expressing bullish expectations for the price of ETH. There is talk of a potential breakout, with some users predicting price targets as high as $10,000 or even $15,000. Despite some cautionary notes about potential pullbacks, the overall tone is one of excitement and optimism.\n\nThere is also discussion about technical analysis indicators, such as the On-Balance Volume (OBV) and resistance levels, suggesting that traders are closely monitoring these factors to make informed decisions about their ETH investments.\n\nOverall, it appears that the crypto community on social media is highly engaged with the ETH market and is eagerly anticipating potential price movements and opportunities for profit.', - data: [ - 2, 4, 2, 9, 6, 17, 10, 11, 5, 16, 3, 7, 4, 6, 23, 4, 6, 6, 4, 2, 0, 2, 23, 4, 7, 4, 9, 5, - 16, 9, 2, 4, 5, 3, 5, 7, 16, 5, 4, 10, 4, 5, 5, 8, 10, 3, 11, 7, 8, 6, 7, 3, 6, 1, 4, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-96.json b/priv/repo/major_topics_seed/data-96.json deleted file mode 100644 index 2c0f483d80..0000000000 --- a/priv/repo/major_topics_seed/data-96.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["30.10.25","31.10.25","31.10.25","31.10.25","31.10.25","31.10.25","31.10.25","31.10.25","01.11.25","01.11.25","01.11.25","01.11.25","01.11.25","01.11.25","01.11.25","01.11.25","02.11.25","02.11.25","02.11.25","02.11.25","02.11.25","02.11.25","02.11.25","02.11.25","03.11.25","03.11.25","03.11.25","03.11.25","03.11.25","03.11.25","03.11.25","03.11.25","04.11.25","04.11.25","04.11.25","04.11.25","04.11.25","04.11.25","04.11.25","04.11.25","05.11.25","05.11.25","05.11.25","05.11.25","05.11.25","05.11.25","05.11.25","05.11.25","06.11.25","06.11.25","06.11.25","06.11.25","06.11.25","06.11.25","06.11.25"],"datasets":[{"label":"NYC mayoral election","topics":"mayoral,cuomo,mayor,zohran,mamdanis","description":"The key topics discussed in the messages from twitter are the NYC mayoral race, specifically the victory of Zohran Mamdani, the impact of Mamdani's win on NYC, the polarization of private vs public participation in NYC life, and the potential consequences of Mamdani's socialist ideals. There is also mention of the potential exodus of residents from NYC if Mamdani wins, as well as criticism and support for Mamdani's victory. Additionally, there are references to the impact of Mamdani's win on the future of NYC and the potential division between rich and poor residents. The messages also touch on the comparison between NYC and other cities, such as the Bay Area, and the need for unity and understanding among different political ideologies.","data":[18,7,17,28,18,9,30,25,27,15,20,18,19,69,26,23,20,19,12,30,15,20,27,18,19,17,29,23,30,23,45,12,31,29,27,34,22,28,22,29,27,15,17,28,18,16,17,25,16,17,18,53,20,89,23]},{"label":"ZEC price","topics":"shielded,zcash,zec,0xmert,monero","description":"The key topics currently being discussed about Zcash (ZEC) in the crypto community include:\n1. ZEC reaching new highs and potentially continuing to rise\n2. Speculation about ZEC being tied to other altcoins on exchanges and the potential for shorts to get \"rekt\"\n3. Plans for ZEC's future development, including reducing technical debt and improving wallet privacy\n4. Mixed opinions on the future of ZEC, with some predicting a major bull market continuation and others warning of a potential blow off top and market nuke\n5. Discussion of ZEC's privacy features and potential for a major fork to create the \"most private chain in the world\"\n6. Personal experiences and strategies related to trading ZEC, including taking profits and diversifying holdings\n7. Calls for caution and careful trading strategies when dealing with ZEC's volatile price movements.","data":[18,11,12,12,20,17,23,18,29,11,20,20,11,9,7,17,17,18,13,21,14,7,29,15,11,7,13,14,19,15,9,24,8,15,26,18,29,23,14,11,13,11,26,11,12,17,21,12,17,19,19,12,14,13,82]},{"label":"Bitcoin revolution","topics":"bitcoiners,knots,luke,bitcoiner,arbitrary","description":"The key topics discussed in the messages from twitter are:\n- Bitcoin being a form of cleansing from government corruption\n- The difference between Bitcoin and other cryptocurrencies like Ethereum, Zcash, and Monero\n- The impact of compounding fees on Bitcoin gains\n- Politicians losing elections after attacking Bitcoin\n- The importance of self-custody and programmability in Bitcoin\n- The usefulness of Bitcoin in global use cases\n- The attack on Bitcoin by various groups\n- The value of Bitcoin as a new financial standard\n\nOverall, the messages highlight the ongoing debate and discussion surrounding Bitcoin, its utility, and its role in the financial industry.","data":[10,19,13,12,40,10,12,16,13,20,13,12,18,6,15,11,25,17,7,7,16,9,9,18,15,26,10,7,7,7,20,20,17,19,13,24,16,15,14,18,12,17,19,15,15,13,11,10,6,28,21,13,9,16,8]},{"label":"IDOS protocol","topics":"idos,portable,kyc,idosnetwork,identity","description":"The key topics currently discussed in the messages from twitter are:\n- The development of web3 infrastructure and decentralized identity by @idOS_network\n- The importance of portable and verified digital identity in the crypto industry\n- The integration of KYC Plus for identity verification across different platforms\n- The collaboration between @idOS_network and other crypto projects like @wallchain and @billions_ntwk\n- The potential of decentralized identity in the stablecoin economy\n- The use of smart contracts and blockchain technology in the web3 stack\n- The emphasis on privacy, security, and compliance in decentralized identity solutions\n- The growth and adoption of @idOS_network, with millions of credentials verified and thousands of users\n- The need for a common and portable identity solution in the crypto space\n- The evolution of web3 technology and the importance of seamless user experience.","data":[2,11,10,11,11,8,10,14,14,20,14,11,18,10,11,22,15,28,16,9,8,11,9,41,27,18,8,15,6,6,9,3,14,13,15,19,11,22,16,10,8,15,17,8,18,15,22,8,12,14,22,17,24,14,5]},{"label":"BTC price","topics":"ema,june,107k,deviation,106k","description":"The key topics currently being discussed in the crypto community on Twitter include BTC holding above the daily MA200, BTC's performance on the weekly close, the importance of weekly EMA 50, potential price levels for BTC, sentiment analysis on BTC prices, institutional involvement in BTC trading, and technical analysis on BTC price movements. Traders are closely monitoring key support levels and potential rebound opportunities for BTC. There is also discussion about fear in the market, potential corrections, and the impact of recent price drops on the overall crypto market. Overall, the sentiment seems to be mixed with some traders expecting a rebound while others are cautious about further price drops.","data":[14,7,14,8,9,33,10,9,17,19,13,31,15,37,7,23,17,8,5,12,5,5,40,8,4,5,10,8,20,12,4,10,8,10,5,11,22,4,27,25,11,7,11,7,12,22,19,9,10,10,14,5,41,2,4]},{"label":"ETH price","topics":"obv,htf,4k,retracement,3000","description":"The key topic currently discussed in the crypto community on Twitter is the price movement of Ethereum (ETH). There are mixed opinions on the direction of ETH, with some users expressing bearish sentiments due to recent price drops and others remaining bullish on its potential for a bounce back. Some users are closely monitoring key support zones and potential buying opportunities, while others are cautious about the current market conditions and the need for a daily close above certain levels for a stronger bullish trend. Overall, there is a lot of attention on ETH's price movements and potential for future growth or decline.","data":[14,1,11,5,0,20,12,16,15,7,7,12,5,11,39,20,11,5,5,10,4,7,27,8,7,5,15,12,29,7,3,6,9,3,6,6,22,10,19,10,7,6,14,10,15,22,9,14,18,7,10,11,12,8,9]},{"label":"CZ and ASTER shenanigans","topics":"cz,aster,czs,czbinance,asterdex","description":"The key topics currently being discussed in the crypto community on Twitter include CZ's endorsement and purchase of $ASTER, resulting in a price spike and increased volume. Some users are skeptical of CZ's influence and believe that his actions may have a negative impact on the market. There is also discussion about the potential for $ASTER to see significant growth and become a top decentralized exchange (DEX) token. Additionally, there are mentions of other altcoins and trading strategies, such as shorting $ASTER and buying $URANUS. Overall, the community seems divided on whether to follow CZ's lead in investing in $ASTER or to take a more cautious approach.","data":[6,11,36,10,8,20,14,3,14,7,5,11,9,8,4,9,4,14,9,8,10,9,8,5,8,11,10,8,13,10,6,1,9,6,6,10,18,25,7,11,11,10,16,6,6,12,8,7,5,21,8,10,7,5,2]},{"label":"US - China rare earth deal","topics":"chinas,xi,export,china,chinese","description":"The messages from twitter are discussing various topics related to China, including rare earth supply chain, trade deals with the US, economic agreements, and technological advancements. There is also mention of the US-China trade tensions, investments in rare-earth magnet makers, and the potential impact of AI and Robots on society. Overall, the messages highlight the ongoing developments and competition between the US and China in various sectors.","data":[8,12,10,11,7,3,11,13,7,15,6,9,7,8,16,16,8,4,4,5,6,3,4,7,10,8,9,6,7,6,10,6,15,14,3,7,4,7,13,16,20,23,7,12,10,23,10,7,17,9,9,14,6,6,6]},{"label":"AI","topics":"ais,replacing,sacks,jobs,generative","description":"The messages from twitter suggest a variety of opinions and discussions about AI in the crypto industry. Some users express concerns about AI taking over jobs, while others highlight the potential benefits of AI in creating scalable architectures and improving productivity. There is also mention of the optimism that AI has for the future, contrasting with some humans' pessimism. Additionally, there is a mention of the importance of continuous feedback loops for AI systems to improve performance.\n\nOverall, the messages reflect a mix of excitement, skepticism, and curiosity about the role of AI in the crypto industry and its potential impact on society.","data":[4,32,11,7,9,10,9,9,8,14,7,8,11,10,10,10,7,10,5,7,5,11,5,11,19,8,8,7,9,5,5,6,10,7,15,7,13,10,16,12,8,7,2,12,5,18,14,15,9,11,7,4,10,7,3]},{"label":"Elon Musk and TSLA","topics":"tesla,tsla,musk,elon,musks","description":"The messages from twitter discuss various topics related to Elon Musk and Tesla ($TSLA). Some key points mentioned include Elon Musk using Polygon in 2021, Schwab voting in favor of Musk's pay package, Musk talking about flying cars on Joe Rogan, and the potential for SpaceX to become a public company. There is also mention of autonomous vehicles, Tesla selling trucks to SpaceX, and Musk's comments on the new Roadster. Overall, the sentiment towards Musk and Tesla seems positive, with a focus on the company's future potential in areas such as EVs, robotics, and AI.","data":[6,8,13,11,6,4,5,9,7,13,7,5,12,9,9,11,12,4,4,7,9,3,5,8,12,3,11,8,12,6,8,15,6,13,20,5,13,5,7,14,10,20,20,10,12,10,11,13,8,17,10,15,3,7,5]},{"label":"Monad mainnet launch","topics":"monad,mon,24th,mainnet,boxes","description":"The main topic being discussed in the messages from twitter is the launch of the Monad mainnet on November 24th. There are mentions of excitement and anticipation for the launch, as well as discussions about potential strategies for investing in Monad. Some users are expressing skepticism about the project, while others are defending it and highlighting its potential for scalability and low fees. Overall, there is a mix of opinions and discussions about the project, with some focusing on the airdrop distribution and others on the technology and potential of Monad.","data":[10,16,6,6,5,5,6,2,8,3,5,7,5,9,4,8,9,8,12,21,11,10,4,11,5,6,6,9,9,13,10,49,3,7,7,4,3,8,7,1,2,11,8,8,2,7,14,7,4,4,11,6,3,4,3]},{"label":"Trump's crypto involvement","topics":"superpower,eric,donald,potus,announcement","description":"The messages from twitter suggest that there is a lot of discussion surrounding Donald Trump and his impact on the cryptocurrency market. Some key points mentioned include Trump's interest in Bitcoin and desire to make the United States a leader in cryptocurrency, criticism of Trump's handling of the market, speculation about Trump's influence on market movements, and Eric Trump's optimistic predictions for Bitcoin in Q4. Additionally, there are mentions of Trump's involvement in launching a predicting market and accusations of endorsing speculative assets. Overall, the sentiment towards Trump in the crypto community seems mixed, with some viewing him positively and others expressing frustration or skepticism.","data":[3,13,14,5,8,8,14,6,5,4,6,2,6,3,5,6,8,9,1,4,6,6,3,10,6,10,9,7,7,11,4,3,9,7,1,2,16,8,11,10,21,20,12,13,11,6,10,4,7,13,2,6,2,2,2]},{"label":"Memecoins","topics":"memecoins,memecoin,memes,meme,milady","description":"The key topics discussed in the messages from twitter are:\n- Memecoins and their potential for explosive growth\n- The importance of creating elite memes for success in the crypto industry\n- Speculation on which memecoin will 100x next\n- The influence of memes on various aspects of society, including politics and finance\n- Strategies for managing memecoin volatility\n- The cultural significance of memes and the need for a shift in how they are perceived\n- The integration of memecoins with trading platforms and content creation\n- The current trends and narratives in the crypto industry, including the rise of NeoBanks and the potential of meme-based cryptocurrencies like #lodicoin\n\nOverall, the messages reflect a strong interest in memecoins and their impact on the crypto market, as well as the importance of meme culture in shaping trends and narratives within the industry.","data":[5,2,5,5,12,6,6,5,15,6,7,1,5,3,4,5,4,9,8,3,5,0,2,5,10,3,7,6,6,8,101,4,15,8,3,9,3,3,9,6,5,4,3,4,5,5,5,12,6,4,3,8,3,6,3]},{"label":"Bitcoin Whitepaper Anniversary","topics":"whitepaper,satoshi,nakamoto,17th,2008","description":"The key topic currently being discussed in the crypto community on Twitter is the 17th anniversary of the release of the Bitcoin whitepaper by Satoshi Nakamoto. Many users are celebrating this milestone and reflecting on the impact that the whitepaper has had on the world of cryptocurrency and decentralized finance. Some are highlighting the revolutionary nature of the whitepaper, while others are discussing its role in shaping the future of money and financial systems. Overall, there is a sense of appreciation and gratitude towards Satoshi Nakamoto for introducing the concept of Bitcoin and kickstarting the crypto revolution.","data":[23,1,6,5,9,3,0,9,3,1,1,34,3,4,4,4,1,2,5,0,3,8,6,2,7,6,2,0,1,9,4,6,3,3,9,1,4,6,3,6,1,3,5,3,6,1,4,2,2,6,4,3,1,32,105]},{"label":"Trading Discipline and Risk Management","topics":"emotions,psychology,discipline,journal,sizing","description":"The key trading lessons discussed in the messages from twitter include the importance of emotional control, discipline, risk management, and patience in trading. It is emphasized that successful traders do not trade every day, but rather wait for the right opportunities to seize. The messages also highlight the significance of simplicity in investing, long-term consistent strategies, and the need to avoid overtrading. Additionally, the importance of experience, risk management, and taking profits are emphasized as priorities in trading. The messages also touch on the importance of waiting for obvious trades, avoiding chasing after money, and the value of trying new strategies and being curious in trading. Overall, the messages stress the importance of patience, discipline, and strategic decision-making in successful trading.","data":[3,7,2,4,12,1,1,5,4,11,4,5,6,3,6,3,3,5,4,9,5,4,4,6,14,7,11,2,8,18,2,7,4,4,11,4,3,2,2,4,6,5,3,4,8,2,5,7,51,9,5,4,6,4,6]},{"label":"Stablecoins","topics":"stablecoins,stablecoin,visa,100b,usde","description":"The key topic discussed in the messages from twitter is the stability and growth of stablecoins. There is a focus on different types of stablecoins, their trustworthiness, and their use cases such as lending and high yield opportunities. The messages also highlight the increasing adoption and transfer volume of stablecoins on the Ethereum network, as well as the launch of stablecoins like the Japanese YEN and Korean KRW on Ethereum. Additionally, there is mention of the importance of stablecoins in the crypto market, their role in tokenization, and their impact on cross-border payments. Overall, the messages emphasize the significance of stablecoins in the crypto industry and their potential for disruption and growth.","data":[5,7,3,9,7,2,3,7,7,6,7,2,6,7,7,8,4,2,7,2,8,7,3,6,6,4,4,3,3,9,5,6,2,3,9,5,5,4,4,7,4,9,5,3,51,17,5,7,4,7,5,7,4,2,2]},{"label":"Baseball World Series","topics":"dodgers,toronto,series,angeles,sport","description":"The key topics currently being discussed in the crypto industry on social media include the World Series, specifically the Dodgers winning and Shohei Ohtani's impressive performance. There is also mention of predictions, such as Nostradamus calling the Jays to win in 11 games. Additionally, there is excitement over Ohtani's pitching and hitting abilities, with some comparing him to an anime superhero. The financial aspect of Ohtani's contract with the Dodgers is also being highlighted, as he chose to defer a significant portion of his salary to help the team build a better roster. Overall, the crypto community seems to be engaged in discussing the recent World Series events and the impressive performances of key players.","data":[7,2,0,20,21,7,2,5,6,3,3,5,12,5,0,7,6,3,9,6,10,5,8,8,8,2,6,4,7,6,3,3,3,7,2,8,4,4,1,2,11,7,7,6,6,3,6,9,3,3,4,2,9,17,8]},{"label":"DeFi","topics":"defis,fragmentation,vaults,thrive,pendlefi","description":"The messages from twitter highlight various discussions and developments in the DeFi industry. Some key points include:\n\n- Different teams are focusing on making DeFi successful.\n- There is a breakdown of the ongoing DeFi Renaissance on Arbitrum.\n- The importance of transparency in DeFi platforms is emphasized.\n- Institutional-grade DeFi platforms like Solsticefi are being built.\n- The Spark ecosystem and its liquidity layer are discussed.\n- The evolution of DeFi with more institutional interest and new market infrastructure is noted.\n- Projects like Velvet Capital are working towards revolutionizing DeFi.\n- The growth of the DeFi market cap and market share is highlighted.\n- The need for transparency in DeFi products, especially stablecoin products, is emphasized.\n- The introduction of Profiles on Realms V2 for building onchain identities in the DeFi space.\n- An upcoming \"State of DeFi\" report will provide insights into the growth, financials, and trends in the industry.\n\nOverall, the messages reflect a dynamic and evolving DeFi landscape with a focus on transparency, innovation, and community involvement.","data":[5,6,3,3,6,8,6,10,2,7,4,7,10,9,12,7,6,8,2,4,2,6,3,6,5,4,8,5,7,5,8,5,9,3,3,8,5,11,5,6,5,4,4,1,4,6,6,4,4,8,10,9,5,3,5]},{"label":"Hyperliquid","topics":"hyperevm,hyperliquid,hype,assistance,hyperliquidx","description":"The messages from twitter suggest that there is a lot of hype surrounding the $HYPE cryptocurrency. People are discussing buying and selling $HYPE at different price points, with some expressing excitement about potential gains. Hyperliquid, the platform where $HYPE is traded, is also mentioned as a key player in the market. Overall, it seems that there is a lot of attention and interest in $HYPE within the crypto community.","data":[9,7,7,2,6,4,4,2,6,5,6,4,4,2,3,4,9,5,5,1,2,3,5,23,6,5,6,8,7,7,3,1,4,3,4,2,5,12,6,7,4,0,9,6,3,7,7,4,11,5,5,4,8,5,3]},{"label":"RWA","topics":"rwa,rwas,aum,tokenized,tokenization","description":"The key topic currently discussed in the crypto community is Real World Assets (RWA) and their potential to revolutionize finance. The message highlights the importance of trust in the RWA industry for it to scale, as well as the emergence of various RWA projects and their impact on the market. Projects like XEND, Nexera, Mantle_Official, and BeamRWA are mentioned as leaders in the space, with a focus on tokenizing real-world assets and bridging traditional finance with decentralized finance (DeFi). Additionally, the message touches on the growth of RWA-backed stablecoins and the potential for the RWA market to reach $2 trillion by 2028. Overall, the sentiment is optimistic about the future of RWA and its role in reshaping the financial industry.","data":[5,6,3,7,4,2,8,3,6,5,5,2,5,1,7,10,10,10,5,4,5,0,3,18,8,6,5,4,1,10,4,5,4,3,4,0,1,18,12,8,5,6,4,1,4,5,1,4,14,4,5,4,6,3,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-96.ts b/priv/repo/major_topics_seed/data-96.ts deleted file mode 100644 index 2a32ce6c5f..0000000000 --- a/priv/repo/major_topics_seed/data-96.ts +++ /dev/null @@ -1,271 +0,0 @@ -export const NARRATIVES = { - labels: [ - '30.10.25', - '31.10.25', - '31.10.25', - '31.10.25', - '31.10.25', - '31.10.25', - '31.10.25', - '31.10.25', - '01.11.25', - '01.11.25', - '01.11.25', - '01.11.25', - '01.11.25', - '01.11.25', - '01.11.25', - '01.11.25', - '02.11.25', - '02.11.25', - '02.11.25', - '02.11.25', - '02.11.25', - '02.11.25', - '02.11.25', - '02.11.25', - '03.11.25', - '03.11.25', - '03.11.25', - '03.11.25', - '03.11.25', - '03.11.25', - '03.11.25', - '03.11.25', - '04.11.25', - '04.11.25', - '04.11.25', - '04.11.25', - '04.11.25', - '04.11.25', - '04.11.25', - '04.11.25', - '05.11.25', - '05.11.25', - '05.11.25', - '05.11.25', - '05.11.25', - '05.11.25', - '05.11.25', - '05.11.25', - '06.11.25', - '06.11.25', - '06.11.25', - '06.11.25', - '06.11.25', - '06.11.25', - '06.11.25', - ], - datasets: [ - { - label: 'NYC mayoral election', - topics: 'mayoral,cuomo,mayor,zohran,mamdanis', - description: - "The key topics discussed in the messages from twitter are the NYC mayoral race, specifically the victory of Zohran Mamdani, the impact of Mamdani's win on NYC, the polarization of private vs public participation in NYC life, and the potential consequences of Mamdani's socialist ideals. There is also mention of the potential exodus of residents from NYC if Mamdani wins, as well as criticism and support for Mamdani's victory. Additionally, there are references to the impact of Mamdani's win on the future of NYC and the potential division between rich and poor residents. The messages also touch on the comparison between NYC and other cities, such as the Bay Area, and the need for unity and understanding among different political ideologies.", - data: [ - 18, 7, 17, 28, 18, 9, 30, 25, 27, 15, 20, 18, 19, 69, 26, 23, 20, 19, 12, 30, 15, 20, 27, - 18, 19, 17, 29, 23, 30, 23, 45, 12, 31, 29, 27, 34, 22, 28, 22, 29, 27, 15, 17, 28, 18, 16, - 17, 25, 16, 17, 18, 53, 20, 89, 23, - ], - }, - { - label: 'ZEC price', - topics: 'shielded,zcash,zec,0xmert,monero', - description: - 'The key topics currently being discussed about Zcash (ZEC) in the crypto community include:\n1. ZEC reaching new highs and potentially continuing to rise\n2. Speculation about ZEC being tied to other altcoins on exchanges and the potential for shorts to get "rekt"\n3. Plans for ZEC\'s future development, including reducing technical debt and improving wallet privacy\n4. Mixed opinions on the future of ZEC, with some predicting a major bull market continuation and others warning of a potential blow off top and market nuke\n5. Discussion of ZEC\'s privacy features and potential for a major fork to create the "most private chain in the world"\n6. Personal experiences and strategies related to trading ZEC, including taking profits and diversifying holdings\n7. Calls for caution and careful trading strategies when dealing with ZEC\'s volatile price movements.', - data: [ - 18, 11, 12, 12, 20, 17, 23, 18, 29, 11, 20, 20, 11, 9, 7, 17, 17, 18, 13, 21, 14, 7, 29, 15, - 11, 7, 13, 14, 19, 15, 9, 24, 8, 15, 26, 18, 29, 23, 14, 11, 13, 11, 26, 11, 12, 17, 21, 12, - 17, 19, 19, 12, 14, 13, 82, - ], - }, - { - label: 'Bitcoin revolution', - topics: 'bitcoiners,knots,luke,bitcoiner,arbitrary', - description: - 'The key topics discussed in the messages from twitter are:\n- Bitcoin being a form of cleansing from government corruption\n- The difference between Bitcoin and other cryptocurrencies like Ethereum, Zcash, and Monero\n- The impact of compounding fees on Bitcoin gains\n- Politicians losing elections after attacking Bitcoin\n- The importance of self-custody and programmability in Bitcoin\n- The usefulness of Bitcoin in global use cases\n- The attack on Bitcoin by various groups\n- The value of Bitcoin as a new financial standard\n\nOverall, the messages highlight the ongoing debate and discussion surrounding Bitcoin, its utility, and its role in the financial industry.', - data: [ - 10, 19, 13, 12, 40, 10, 12, 16, 13, 20, 13, 12, 18, 6, 15, 11, 25, 17, 7, 7, 16, 9, 9, 18, - 15, 26, 10, 7, 7, 7, 20, 20, 17, 19, 13, 24, 16, 15, 14, 18, 12, 17, 19, 15, 15, 13, 11, 10, - 6, 28, 21, 13, 9, 16, 8, - ], - }, - { - label: 'IDOS protocol', - topics: 'idos,portable,kyc,idosnetwork,identity', - description: - 'The key topics currently discussed in the messages from twitter are:\n- The development of web3 infrastructure and decentralized identity by @idOS_network\n- The importance of portable and verified digital identity in the crypto industry\n- The integration of KYC Plus for identity verification across different platforms\n- The collaboration between @idOS_network and other crypto projects like @wallchain and @billions_ntwk\n- The potential of decentralized identity in the stablecoin economy\n- The use of smart contracts and blockchain technology in the web3 stack\n- The emphasis on privacy, security, and compliance in decentralized identity solutions\n- The growth and adoption of @idOS_network, with millions of credentials verified and thousands of users\n- The need for a common and portable identity solution in the crypto space\n- The evolution of web3 technology and the importance of seamless user experience.', - data: [ - 2, 11, 10, 11, 11, 8, 10, 14, 14, 20, 14, 11, 18, 10, 11, 22, 15, 28, 16, 9, 8, 11, 9, 41, - 27, 18, 8, 15, 6, 6, 9, 3, 14, 13, 15, 19, 11, 22, 16, 10, 8, 15, 17, 8, 18, 15, 22, 8, 12, - 14, 22, 17, 24, 14, 5, - ], - }, - { - label: 'BTC price', - topics: 'ema,june,107k,deviation,106k', - description: - "The key topics currently being discussed in the crypto community on Twitter include BTC holding above the daily MA200, BTC's performance on the weekly close, the importance of weekly EMA 50, potential price levels for BTC, sentiment analysis on BTC prices, institutional involvement in BTC trading, and technical analysis on BTC price movements. Traders are closely monitoring key support levels and potential rebound opportunities for BTC. There is also discussion about fear in the market, potential corrections, and the impact of recent price drops on the overall crypto market. Overall, the sentiment seems to be mixed with some traders expecting a rebound while others are cautious about further price drops.", - data: [ - 14, 7, 14, 8, 9, 33, 10, 9, 17, 19, 13, 31, 15, 37, 7, 23, 17, 8, 5, 12, 5, 5, 40, 8, 4, 5, - 10, 8, 20, 12, 4, 10, 8, 10, 5, 11, 22, 4, 27, 25, 11, 7, 11, 7, 12, 22, 19, 9, 10, 10, 14, - 5, 41, 2, 4, - ], - }, - { - label: 'ETH price', - topics: 'obv,htf,4k,retracement,3000', - description: - "The key topic currently discussed in the crypto community on Twitter is the price movement of Ethereum (ETH). There are mixed opinions on the direction of ETH, with some users expressing bearish sentiments due to recent price drops and others remaining bullish on its potential for a bounce back. Some users are closely monitoring key support zones and potential buying opportunities, while others are cautious about the current market conditions and the need for a daily close above certain levels for a stronger bullish trend. Overall, there is a lot of attention on ETH's price movements and potential for future growth or decline.", - data: [ - 14, 1, 11, 5, 0, 20, 12, 16, 15, 7, 7, 12, 5, 11, 39, 20, 11, 5, 5, 10, 4, 7, 27, 8, 7, 5, - 15, 12, 29, 7, 3, 6, 9, 3, 6, 6, 22, 10, 19, 10, 7, 6, 14, 10, 15, 22, 9, 14, 18, 7, 10, 11, - 12, 8, 9, - ], - }, - { - label: 'CZ and ASTER shenanigans', - topics: 'cz,aster,czs,czbinance,asterdex', - description: - "The key topics currently being discussed in the crypto community on Twitter include CZ's endorsement and purchase of $ASTER, resulting in a price spike and increased volume. Some users are skeptical of CZ's influence and believe that his actions may have a negative impact on the market. There is also discussion about the potential for $ASTER to see significant growth and become a top decentralized exchange (DEX) token. Additionally, there are mentions of other altcoins and trading strategies, such as shorting $ASTER and buying $URANUS. Overall, the community seems divided on whether to follow CZ's lead in investing in $ASTER or to take a more cautious approach.", - data: [ - 6, 11, 36, 10, 8, 20, 14, 3, 14, 7, 5, 11, 9, 8, 4, 9, 4, 14, 9, 8, 10, 9, 8, 5, 8, 11, 10, - 8, 13, 10, 6, 1, 9, 6, 6, 10, 18, 25, 7, 11, 11, 10, 16, 6, 6, 12, 8, 7, 5, 21, 8, 10, 7, 5, - 2, - ], - }, - { - label: 'US - China rare earth deal', - topics: 'chinas,xi,export,china,chinese', - description: - 'The messages from twitter are discussing various topics related to China, including rare earth supply chain, trade deals with the US, economic agreements, and technological advancements. There is also mention of the US-China trade tensions, investments in rare-earth magnet makers, and the potential impact of AI and Robots on society. Overall, the messages highlight the ongoing developments and competition between the US and China in various sectors.', - data: [ - 8, 12, 10, 11, 7, 3, 11, 13, 7, 15, 6, 9, 7, 8, 16, 16, 8, 4, 4, 5, 6, 3, 4, 7, 10, 8, 9, 6, - 7, 6, 10, 6, 15, 14, 3, 7, 4, 7, 13, 16, 20, 23, 7, 12, 10, 23, 10, 7, 17, 9, 9, 14, 6, 6, - 6, - ], - }, - { - label: 'AI', - topics: 'ais,replacing,sacks,jobs,generative', - description: - "The messages from twitter suggest a variety of opinions and discussions about AI in the crypto industry. Some users express concerns about AI taking over jobs, while others highlight the potential benefits of AI in creating scalable architectures and improving productivity. There is also mention of the optimism that AI has for the future, contrasting with some humans' pessimism. Additionally, there is a mention of the importance of continuous feedback loops for AI systems to improve performance.\n\nOverall, the messages reflect a mix of excitement, skepticism, and curiosity about the role of AI in the crypto industry and its potential impact on society.", - data: [ - 4, 32, 11, 7, 9, 10, 9, 9, 8, 14, 7, 8, 11, 10, 10, 10, 7, 10, 5, 7, 5, 11, 5, 11, 19, 8, 8, - 7, 9, 5, 5, 6, 10, 7, 15, 7, 13, 10, 16, 12, 8, 7, 2, 12, 5, 18, 14, 15, 9, 11, 7, 4, 10, 7, - 3, - ], - }, - { - label: 'Elon Musk and TSLA', - topics: 'tesla,tsla,musk,elon,musks', - description: - "The messages from twitter discuss various topics related to Elon Musk and Tesla ($TSLA). Some key points mentioned include Elon Musk using Polygon in 2021, Schwab voting in favor of Musk's pay package, Musk talking about flying cars on Joe Rogan, and the potential for SpaceX to become a public company. There is also mention of autonomous vehicles, Tesla selling trucks to SpaceX, and Musk's comments on the new Roadster. Overall, the sentiment towards Musk and Tesla seems positive, with a focus on the company's future potential in areas such as EVs, robotics, and AI.", - data: [ - 6, 8, 13, 11, 6, 4, 5, 9, 7, 13, 7, 5, 12, 9, 9, 11, 12, 4, 4, 7, 9, 3, 5, 8, 12, 3, 11, 8, - 12, 6, 8, 15, 6, 13, 20, 5, 13, 5, 7, 14, 10, 20, 20, 10, 12, 10, 11, 13, 8, 17, 10, 15, 3, - 7, 5, - ], - }, - { - label: 'Monad mainnet launch', - topics: 'monad,mon,24th,mainnet,boxes', - description: - 'The main topic being discussed in the messages from twitter is the launch of the Monad mainnet on November 24th. There are mentions of excitement and anticipation for the launch, as well as discussions about potential strategies for investing in Monad. Some users are expressing skepticism about the project, while others are defending it and highlighting its potential for scalability and low fees. Overall, there is a mix of opinions and discussions about the project, with some focusing on the airdrop distribution and others on the technology and potential of Monad.', - data: [ - 10, 16, 6, 6, 5, 5, 6, 2, 8, 3, 5, 7, 5, 9, 4, 8, 9, 8, 12, 21, 11, 10, 4, 11, 5, 6, 6, 9, - 9, 13, 10, 49, 3, 7, 7, 4, 3, 8, 7, 1, 2, 11, 8, 8, 2, 7, 14, 7, 4, 4, 11, 6, 3, 4, 3, - ], - }, - { - label: "Trump's crypto involvement", - topics: 'superpower,eric,donald,potus,announcement', - description: - "The messages from twitter suggest that there is a lot of discussion surrounding Donald Trump and his impact on the cryptocurrency market. Some key points mentioned include Trump's interest in Bitcoin and desire to make the United States a leader in cryptocurrency, criticism of Trump's handling of the market, speculation about Trump's influence on market movements, and Eric Trump's optimistic predictions for Bitcoin in Q4. Additionally, there are mentions of Trump's involvement in launching a predicting market and accusations of endorsing speculative assets. Overall, the sentiment towards Trump in the crypto community seems mixed, with some viewing him positively and others expressing frustration or skepticism.", - data: [ - 3, 13, 14, 5, 8, 8, 14, 6, 5, 4, 6, 2, 6, 3, 5, 6, 8, 9, 1, 4, 6, 6, 3, 10, 6, 10, 9, 7, 7, - 11, 4, 3, 9, 7, 1, 2, 16, 8, 11, 10, 21, 20, 12, 13, 11, 6, 10, 4, 7, 13, 2, 6, 2, 2, 2, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memecoin,memes,meme,milady', - description: - 'The key topics discussed in the messages from twitter are:\n- Memecoins and their potential for explosive growth\n- The importance of creating elite memes for success in the crypto industry\n- Speculation on which memecoin will 100x next\n- The influence of memes on various aspects of society, including politics and finance\n- Strategies for managing memecoin volatility\n- The cultural significance of memes and the need for a shift in how they are perceived\n- The integration of memecoins with trading platforms and content creation\n- The current trends and narratives in the crypto industry, including the rise of NeoBanks and the potential of meme-based cryptocurrencies like #lodicoin\n\nOverall, the messages reflect a strong interest in memecoins and their impact on the crypto market, as well as the importance of meme culture in shaping trends and narratives within the industry.', - data: [ - 5, 2, 5, 5, 12, 6, 6, 5, 15, 6, 7, 1, 5, 3, 4, 5, 4, 9, 8, 3, 5, 0, 2, 5, 10, 3, 7, 6, 6, 8, - 101, 4, 15, 8, 3, 9, 3, 3, 9, 6, 5, 4, 3, 4, 5, 5, 5, 12, 6, 4, 3, 8, 3, 6, 3, - ], - }, - { - label: 'Bitcoin Whitepaper Anniversary', - topics: 'whitepaper,satoshi,nakamoto,17th,2008', - description: - 'The key topic currently being discussed in the crypto community on Twitter is the 17th anniversary of the release of the Bitcoin whitepaper by Satoshi Nakamoto. Many users are celebrating this milestone and reflecting on the impact that the whitepaper has had on the world of cryptocurrency and decentralized finance. Some are highlighting the revolutionary nature of the whitepaper, while others are discussing its role in shaping the future of money and financial systems. Overall, there is a sense of appreciation and gratitude towards Satoshi Nakamoto for introducing the concept of Bitcoin and kickstarting the crypto revolution.', - data: [ - 23, 1, 6, 5, 9, 3, 0, 9, 3, 1, 1, 34, 3, 4, 4, 4, 1, 2, 5, 0, 3, 8, 6, 2, 7, 6, 2, 0, 1, 9, - 4, 6, 3, 3, 9, 1, 4, 6, 3, 6, 1, 3, 5, 3, 6, 1, 4, 2, 2, 6, 4, 3, 1, 32, 105, - ], - }, - { - label: 'Trading Discipline and Risk Management', - topics: 'emotions,psychology,discipline,journal,sizing', - description: - 'The key trading lessons discussed in the messages from twitter include the importance of emotional control, discipline, risk management, and patience in trading. It is emphasized that successful traders do not trade every day, but rather wait for the right opportunities to seize. The messages also highlight the significance of simplicity in investing, long-term consistent strategies, and the need to avoid overtrading. Additionally, the importance of experience, risk management, and taking profits are emphasized as priorities in trading. The messages also touch on the importance of waiting for obvious trades, avoiding chasing after money, and the value of trying new strategies and being curious in trading. Overall, the messages stress the importance of patience, discipline, and strategic decision-making in successful trading.', - data: [ - 3, 7, 2, 4, 12, 1, 1, 5, 4, 11, 4, 5, 6, 3, 6, 3, 3, 5, 4, 9, 5, 4, 4, 6, 14, 7, 11, 2, 8, - 18, 2, 7, 4, 4, 11, 4, 3, 2, 2, 4, 6, 5, 3, 4, 8, 2, 5, 7, 51, 9, 5, 4, 6, 4, 6, - ], - }, - { - label: 'Stablecoins', - topics: 'stablecoins,stablecoin,visa,100b,usde', - description: - 'The key topic discussed in the messages from twitter is the stability and growth of stablecoins. There is a focus on different types of stablecoins, their trustworthiness, and their use cases such as lending and high yield opportunities. The messages also highlight the increasing adoption and transfer volume of stablecoins on the Ethereum network, as well as the launch of stablecoins like the Japanese YEN and Korean KRW on Ethereum. Additionally, there is mention of the importance of stablecoins in the crypto market, their role in tokenization, and their impact on cross-border payments. Overall, the messages emphasize the significance of stablecoins in the crypto industry and their potential for disruption and growth.', - data: [ - 5, 7, 3, 9, 7, 2, 3, 7, 7, 6, 7, 2, 6, 7, 7, 8, 4, 2, 7, 2, 8, 7, 3, 6, 6, 4, 4, 3, 3, 9, 5, - 6, 2, 3, 9, 5, 5, 4, 4, 7, 4, 9, 5, 3, 51, 17, 5, 7, 4, 7, 5, 7, 4, 2, 2, - ], - }, - { - label: 'Baseball World Series', - topics: 'dodgers,toronto,series,angeles,sport', - description: - "The key topics currently being discussed in the crypto industry on social media include the World Series, specifically the Dodgers winning and Shohei Ohtani's impressive performance. There is also mention of predictions, such as Nostradamus calling the Jays to win in 11 games. Additionally, there is excitement over Ohtani's pitching and hitting abilities, with some comparing him to an anime superhero. The financial aspect of Ohtani's contract with the Dodgers is also being highlighted, as he chose to defer a significant portion of his salary to help the team build a better roster. Overall, the crypto community seems to be engaged in discussing the recent World Series events and the impressive performances of key players.", - data: [ - 7, 2, 0, 20, 21, 7, 2, 5, 6, 3, 3, 5, 12, 5, 0, 7, 6, 3, 9, 6, 10, 5, 8, 8, 8, 2, 6, 4, 7, - 6, 3, 3, 3, 7, 2, 8, 4, 4, 1, 2, 11, 7, 7, 6, 6, 3, 6, 9, 3, 3, 4, 2, 9, 17, 8, - ], - }, - { - label: 'DeFi', - topics: 'defis,fragmentation,vaults,thrive,pendlefi', - description: - 'The messages from twitter highlight various discussions and developments in the DeFi industry. Some key points include:\n\n- Different teams are focusing on making DeFi successful.\n- There is a breakdown of the ongoing DeFi Renaissance on Arbitrum.\n- The importance of transparency in DeFi platforms is emphasized.\n- Institutional-grade DeFi platforms like Solsticefi are being built.\n- The Spark ecosystem and its liquidity layer are discussed.\n- The evolution of DeFi with more institutional interest and new market infrastructure is noted.\n- Projects like Velvet Capital are working towards revolutionizing DeFi.\n- The growth of the DeFi market cap and market share is highlighted.\n- The need for transparency in DeFi products, especially stablecoin products, is emphasized.\n- The introduction of Profiles on Realms V2 for building onchain identities in the DeFi space.\n- An upcoming "State of DeFi" report will provide insights into the growth, financials, and trends in the industry.\n\nOverall, the messages reflect a dynamic and evolving DeFi landscape with a focus on transparency, innovation, and community involvement.', - data: [ - 5, 6, 3, 3, 6, 8, 6, 10, 2, 7, 4, 7, 10, 9, 12, 7, 6, 8, 2, 4, 2, 6, 3, 6, 5, 4, 8, 5, 7, 5, - 8, 5, 9, 3, 3, 8, 5, 11, 5, 6, 5, 4, 4, 1, 4, 6, 6, 4, 4, 8, 10, 9, 5, 3, 5, - ], - }, - { - label: 'Hyperliquid', - topics: 'hyperevm,hyperliquid,hype,assistance,hyperliquidx', - description: - 'The messages from twitter suggest that there is a lot of hype surrounding the $HYPE cryptocurrency. People are discussing buying and selling $HYPE at different price points, with some expressing excitement about potential gains. Hyperliquid, the platform where $HYPE is traded, is also mentioned as a key player in the market. Overall, it seems that there is a lot of attention and interest in $HYPE within the crypto community.', - data: [ - 9, 7, 7, 2, 6, 4, 4, 2, 6, 5, 6, 4, 4, 2, 3, 4, 9, 5, 5, 1, 2, 3, 5, 23, 6, 5, 6, 8, 7, 7, - 3, 1, 4, 3, 4, 2, 5, 12, 6, 7, 4, 0, 9, 6, 3, 7, 7, 4, 11, 5, 5, 4, 8, 5, 3, - ], - }, - { - label: 'RWA', - topics: 'rwa,rwas,aum,tokenized,tokenization', - description: - 'The key topic currently discussed in the crypto community is Real World Assets (RWA) and their potential to revolutionize finance. The message highlights the importance of trust in the RWA industry for it to scale, as well as the emergence of various RWA projects and their impact on the market. Projects like XEND, Nexera, Mantle_Official, and BeamRWA are mentioned as leaders in the space, with a focus on tokenizing real-world assets and bridging traditional finance with decentralized finance (DeFi). Additionally, the message touches on the growth of RWA-backed stablecoins and the potential for the RWA market to reach $2 trillion by 2028. Overall, the sentiment is optimistic about the future of RWA and its role in reshaping the financial industry.', - data: [ - 5, 6, 3, 7, 4, 2, 8, 3, 6, 5, 5, 2, 5, 1, 7, 10, 10, 10, 5, 4, 5, 0, 3, 18, 8, 6, 5, 4, 1, - 10, 4, 5, 4, 3, 4, 0, 1, 18, 12, 8, 5, 6, 4, 1, 4, 5, 1, 4, 14, 4, 5, 4, 6, 3, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-97.json b/priv/repo/major_topics_seed/data-97.json deleted file mode 100644 index 9071aa9c4e..0000000000 --- a/priv/repo/major_topics_seed/data-97.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["06.11.25","07.11.25","07.11.25","07.11.25","07.11.25","07.11.25","07.11.25","07.11.25","08.11.25","08.11.25","08.11.25","08.11.25","08.11.25","08.11.25","08.11.25","08.11.25","09.11.25","09.11.25","09.11.25","09.11.25","09.11.25","09.11.25","09.11.25","09.11.25","10.11.25","10.11.25","10.11.25","10.11.25","10.11.25","10.11.25","10.11.25","10.11.25","11.11.25","11.11.25","11.11.25","11.11.25","11.11.25","11.11.25","11.11.25","11.11.25","12.11.25","12.11.25","12.11.25","12.11.25","12.11.25","12.11.25","12.11.25","12.11.25","13.11.25","13.11.25","13.11.25","13.11.25","13.11.25","13.11.25","13.11.25"],"datasets":[{"label":"ZEC price","topics":"zcash,zec,zooko,monero,700","description":"The key topics currently being discussed in the messages from twitter about Zcash ($ZEC) include:\n- The significant price increase of Zcash, with a 1,486% surge in 3 months and reaching its highest price since 2018.\n- Speculation and analysis on the price action of Zcash, with mentions of potential levels to look for a bounce or pullback.\n- Comparisons between Zcash and other cryptocurrencies, such as Dogecoin and Monero.\n- Discussions on the reasons behind Zcash's recent pump, with some attributing it to a newfound market appreciation for privacy-focused coins.\n- Excitement and surprise over Zcash's price performance, with mentions of it overtaking other cryptocurrencies in market ranking.\n- Critiques and suggestions for improvement, such as listing Zcash on more platforms for increased trading volume.\n- Updates on new developments and projects related to Zcash, such as Zenrock and ZenZEC.\n- Trading strategies and analysis, including short positions and potential price movements.\n- Offers for discounted items related to Zcash, such as a laptop used in a Zcash ceremony.\n- Updates on notable traders and their positions on Zcash, including high-stakes trades and potential liquidation prices.","data":[29,27,18,19,26,32,36,30,33,25,25,18,27,27,19,22,27,37,21,24,14,24,25,26,22,19,34,27,30,26,30,28,15,30,25,15,55,34,28,25,20,17,50,28,20,34,20,34,36,18,20,25,19,14,131]},{"label":"AI","topics":"openai,centers,capex,ais,sam","description":"The messages from twitter highlight the growing importance and potential of AI in various industries, particularly in the crypto space. Key points discussed include the potential for AI to revolutionize labor productivity, decrease labor participation, and shape the future economy. The concept of a K-shaped economy, where AI plays a central role, is also mentioned.\n\nAdditionally, there is a focus on the power and potential of AI models, with the idea of a centralized platform for all AI models being discussed. The role of AI in various sectors, such as marketing, law, and infrastructure, is highlighted, showcasing the wide-ranging impact of AI technology.\n\nThe messages also touch on the challenges and limitations of AI, such as the need for more data and the potential for data monopolies by big tech firms. The importance of data in the AI economy is emphasized, with comparisons to oil and discussions on data access and ownership.\n\nOverall, the messages convey a sense of excitement and optimism about the future of AI, while also acknowledging the complexities and challenges that come with its widespread adoption.","data":[17,75,31,17,21,21,33,20,19,42,23,27,31,18,17,17,15,37,28,13,14,25,15,41,33,26,18,17,15,20,21,14,28,21,32,17,34,23,29,26,28,15,16,30,18,29,30,34,16,31,32,13,15,27,11]},{"label":"BTC price","topics":"sma,107k,103k,104k,98k","description":"The key topics discussed in the messages from twitter are:\n- Bitcoin's 22% drawdown in 5 weeks and its attempt to climb back over $100K\n- Market signals indicating a potential new Wave III rally for Bitcoin\n- Bitcoin facing resistance at various price levels such as $111,600 and $110K\n- Speculation on whether the bull run is over and potential price movements\n- Analysis of Bitcoin's moving averages and support levels\n- Discussion on Bitcoin's price movements and potential future scenarios\n- Mention of a potential pump-and-dump situation and questions for crypto traders\n- Analysis of Bitcoin's current trading patterns and resistance levels\n- Speculation on Bitcoin's price reaching new highs in the future\n- Discussion on Bitcoin's liquidity and market momentum\n- Clarification on a false claim about Bitcoin dropping to $63,000\n- Analysis of Ethereum's bounce and its correlation with Bitcoin's bullish trend\n\nOverall, the messages indicate a mix of technical analysis, price predictions, and market sentiment regarding Bitcoin and the broader crypto market.","data":[17,5,8,15,29,57,25,24,39,19,24,29,35,31,17,39,26,14,6,7,11,28,46,18,19,5,21,19,47,20,8,13,22,11,9,15,31,24,29,20,14,21,25,22,8,33,31,22,25,15,16,12,57,9,14]},{"label":"GameFi","topics":"raiders,gaming,valanniagame,gamers,games","description":"The key topics discussed in the messages from twitter are:\n1. Web3 gaming and the future of gaming with mentions of games like ARC Raiders, HYTOPIA, and Decimated.\n2. The integration of cryptocurrency and blockchain technology in gaming, such as using game currency and turning game loot into liquid assets.\n3. The growth and success of specific games like World of Dypians (WOD) and the potential for new players to start their gaming journey.\n4. The use of AI and new learning agents in gaming for strategic wins and boosted earnings.\n5. Critiques and suggestions for improvements in gaming experiences, such as climbing and holding onto edges in games like OthersideMeta.\n6. The excitement and adrenaline of gameplay experiences, such as surviving clutch moments in games like Decimated.\n7. The impact of visuals, gameplay mechanics, and player engagement in the success and longevity of games.\n8. The potential for new gaming projects like Cyberlife to become meta starters in the industry.\n9. The celebration of gaming milestones, such as the 50th anniversary of the \"Rudy\" game.\n10. The intersection of gaming, DeFi, NFTs, and AI in creating a complete gaming ecosystem.","data":[1,7,15,4,8,6,6,4,8,9,9,4,11,8,15,8,5,73,10,7,10,6,7,7,12,5,11,14,8,7,4,7,8,5,3,38,7,13,9,2,6,9,7,5,8,6,7,8,8,7,10,10,11,9,2]},{"label":"Delhi terror attack ","topics":"fort,terror,delhi,blast,module","description":"The messages from twitter are discussing the recent terror attack in Delhi, specifically focusing on the collection of body parts from the blast site near Red Fort. The Former Prime Minister of Nepal Prachanda has condemned the attack, while the Delhi Police and Forensic Team are actively investigating the incident. India's Defence Minister has vowed that those responsible for the car blast will face justice. Additionally, there are reports of arrests and dismissals of individuals with terror links in different regions, including Jammu & Kashmir and Faridabad. The investigation into the Red Fort blast is ongoing, with a focus on potential terrorist doctors and search operations for explosives. The security has been heightened across states in India, with high alerts in place at various locations. Multiple casualties have been reported, and victims are receiving treatment at LNJP hospital.","data":[4,25,16,4,33,14,6,18,4,16,3,12,17,5,1,26,17,5,1,1,2,14,4,8,9,6,4,3,5,2,12,12,4,10,10,27,12,4,6,9,9,7,6,3,6,12,22,0,2,2,3,13,1,7,1]},{"label":"Bitcoin vs fiat","topics":"fiat,bitcoiners,beyondtech,beautifully,opt","description":"The messages from twitter highlight the belief that traditional monetary systems are broken and that Bitcoin is the solution. There is a strong emphasis on the potential of Bitcoin to fix societal issues and provide financial freedom. The messages also touch on the importance of understanding the value of Bitcoin and how it can benefit individuals. Additionally, there is a discussion about the potential for Bitcoin to become a smart contract platform and the removal of limits on technology within the Bitcoin Core. Overall, the messages convey a sense of optimism and belief in the transformative power of Bitcoin in the financial world.","data":[4,11,9,6,22,3,6,9,8,12,13,6,12,17,13,5,11,7,3,2,7,0,7,7,19,15,13,13,4,7,6,9,6,6,12,4,7,9,10,6,6,7,4,5,10,3,13,9,6,5,15,5,11,12,3]},{"label":"NFTs","topics":"spaace,spaaceio,xp,marketplace,nfts","description":"The messages from twitter suggest that NFTs are currently evolving beyond just art or investment assets, with platforms like @spaace_io introducing gamified experiences and community-driven features. @spaace_io is highlighted as a platform that rewards active participation and engagement, offering a dynamic ecosystem for collectors and creators. The platform aims to bridge the gap between collectors and creators, providing a space where users can trade, complete quests, and earn rewards through XP. Additionally, @spaace_io is praised for its unique approach of giving back 100% of marketplace revenue to participants, creating a radical alignment model. Overall, the messages indicate a shift towards more interactive and engaging NFT experiences, with a focus on community building and real rewards for active contributors.","data":[2,5,9,6,7,9,16,7,9,7,5,11,10,7,7,11,7,12,6,7,11,8,10,3,4,7,6,8,10,24,7,5,13,5,5,14,3,10,6,7,11,6,3,7,7,7,7,13,7,11,11,7,1,11,4]},{"label":"Monad sale on Coinbase","topics":"mon,monad,25b,ico,premarket","description":"The key topic discussed in the messages from twitter is the upcoming ICO of Monad on Coinbase. The messages mention that Monad is raising almost $200 million in their ICO, with 7.5% of the total supply being offered at a price of $0.025 per MON. There is speculation about whether this amount, along with the Monad airdrop, is enough to retire. Some users are comparing Monad to MegaETH and discussing the valuation of both projects. Overall, there is a mix of excitement and skepticism surrounding the Monad ICO and its potential impact on the crypto industry.","data":[8,5,10,4,10,1,5,6,5,4,4,4,6,3,5,10,3,1,10,8,7,4,7,8,7,13,5,5,7,3,5,41,5,4,8,9,14,30,8,3,15,6,5,3,4,8,14,6,16,5,8,11,8,6,2]},{"label":"Whales selling BTC and ETH","topics":"whale,whales,borrowed,unusual,accumulated","description":"The key topics currently discussed in the messages from twitter are:\n\n1. Whale activity in the crypto market, including buying, selling, and transferring large amounts of Bitcoin and Ethereum.\n2. Speculation on the actions of OG Bitcoin whales and their impact on the market.\n3. Analysis of on-chain data to determine whether whales are accumulating or dumping Bitcoin.\n4. The impact of whale activity on the price of Bitcoin and other cryptocurrencies.\n5. The potential bullish or bearish signals from whale movements in the market.\n6. The influence of large entities on the price and future projections of Bitcoin.\n7. The use of AI and data analysis tools to track whale movements and predict market trends.\n8. Comparison of current whale behavior to historical patterns and market cycles.\n9. Discussion on the resilience of Bitcoin in the face of whale selling pressure.\n10. Updates on specific whale transactions and movements, such as deposits and withdrawals from exchanges.","data":[13,6,4,2,9,7,7,8,2,3,5,3,1,4,4,2,2,1,1,3,0,4,7,9,6,2,1,8,4,7,2,7,4,4,4,8,4,5,6,5,3,11,6,7,10,5,4,5,3,5,2,4,3,115,2]},{"label":"UNI fee switch","topics":"uni,uniswap,unification,proposal,switch","description":"The key topics currently discussed in the crypto industry on social media platforms like Twitter include the fee switch on Uniswap, the introduction of protocol fees, and the alignment of incentives across the Uniswap ecosystem. There is excitement and anticipation surrounding the fee switch proposal, with $UNI experiencing significant price movements in response to the news. The community is also discussing the impact of the fee switch on DeFi governance and the broader Ethereum ecosystem. Overall, there is a sense of optimism and enthusiasm for the future of Uniswap and decentralized finance as a whole.","data":[7,6,6,4,2,3,8,3,3,7,1,8,6,9,8,12,10,3,4,9,4,6,8,16,5,9,3,6,5,7,3,6,8,3,5,2,2,22,9,5,3,5,3,7,8,18,2,5,12,4,28,3,1,7,5]},{"label":"Wallchain","topics":"quack,genesis,minted,heads,mint","description":"The @wallchain Genesis NFT Mint is a highly anticipated event in the crypto community. The minting process involves different stages with limited quantities of NFTs available for purchase. Participants are excited about the opportunity to mint their own @wallchain Genesis NFT and are eagerly awaiting the release. The minting process requires participants to have a certain amount of SOL in their wallets and be prepared for a fast-paced, first-come-first-serve minting experience. Overall, the @wallchain Genesis NFT Mint is generating a lot of buzz and excitement within the community.","data":[0,2,6,2,4,2,1,2,8,3,1,8,3,10,6,5,5,4,16,9,4,12,10,3,4,4,4,7,4,1,92,1,7,6,2,2,1,5,6,1,4,8,2,7,9,6,2,0,10,1,7,11,4,6,2]},{"label":"Government shutdown is over","topics":"longest,reopened,shutdowns,gov,govt","description":"The messages from twitter indicate that there is a mix of reactions to the end of the US government shutdown. Some users believe that the shutdown ending will lead to a positive impact on the crypto market, while others are skeptical and do not see it as a bullish sign. There are also discussions about the potential effects on Bitcoin and the overall market, with some speculating about potential price movements. Additionally, there are mentions of specific projects and their developments in relation to the government shutdown. Overall, the sentiment seems to be uncertain and varied among users in the crypto community.","data":[3,4,2,2,3,1,8,5,1,1,7,8,2,15,5,4,1,1,0,69,2,2,3,3,0,2,12,12,2,5,1,7,3,3,2,3,4,4,3,6,4,3,65,7,0,0,3,22,3,2,2,2,1,4,4]},{"label":"Privacy in crypto ","topics":"cypherpunks,cypherpunk,privacy,confidential,hide","description":"The key topic being discussed in the messages from twitter is the importance of privacy in the crypto industry. The messages emphasize that privacy is a fundamental right and should be prioritized in the digital realm. There is a focus on normalizing privacy in crypto and understanding the difference between privacy preservation and secrecy. The messages also highlight privacy as a form of freedom and revolution, with some suggesting that privacy will be the next big meta in the industry. Overall, the discussion revolves around the significance of privacy in the crypto space and its role in shaping a more open and secure digital society.","data":[1,5,6,3,6,2,6,5,10,12,11,5,3,5,10,3,1,6,7,3,6,7,2,3,11,5,5,4,4,6,5,3,10,7,2,3,63,6,7,7,4,7,4,3,1,3,9,2,2,5,8,7,1,4,3]},{"label":"ETH price","topics":"3600,diagonal,fibonacci,4000,5k","description":"The key topics discussed in the messages from twitter regarding Ethereum ($ETH) include price predictions ranging from $1,500 to $20,000, resistance levels at $3,800, support levels at $3,420, potential breakout triggers at $3,645, and a potential rally above $5,000. There is also mention of network upgrades, institutional interest, staking, and the possibility of altcoins performing well in the coming weeks. Additionally, there is discussion about technical analysis, Fibonacci retracement levels, volume profiles, and potential price targets. Overall, there is a mix of cautious optimism and bullish sentiment surrounding Ethereum's price outlook in the crypto community.","data":[9,2,7,4,6,9,4,4,4,12,7,3,7,2,7,11,0,2,5,8,8,4,10,7,3,2,9,11,14,2,3,4,5,2,1,7,17,5,14,8,2,5,10,9,3,8,8,6,5,4,6,3,7,3,1]},{"label":"ORE","topics":"ore,mines,circulation,miners,400k","description":"The key topics currently being discussed in the crypto community on Twitter regarding $ORE include:\n- The excitement and anticipation surrounding the potential growth and success of $ORE, with many users expressing optimism about its future prospects.\n- The comparison of $ORE to other well-known companies and organizations, highlighting its potential value and impact in the market.\n- The limited supply of $ORE coins in circulation, leading to discussions about the potential scarcity and value of owning a full coin.\n- The recent price movements of $ORE, with some users noting significant gains and expressing confidence in its continued upward trajectory.\n- The involvement of $ORE in partnerships and collaborations within the crypto industry, such as with @photofinishgame and the @KentuckyDerby, leading to expectations of increased adoption and user base growth.\n- The revenue-generating and yield-generating capabilities of $ORE, as well as its growing developer ecosystem and community support.\n- The overall positive sentiment towards $ORE, with users viewing it as a valuable asset and potential store of value within the Solana blockchain ecosystem.","data":[8,2,3,4,5,6,6,8,5,6,5,9,5,4,3,1,2,3,5,6,3,7,4,6,0,3,9,4,8,5,14,7,3,33,4,5,7,7,7,14,1,3,6,10,4,6,4,5,4,8,5,1,3,1,4]},{"label":"50 year mortgage ","topics":"mortgage,50year,mortgages,loan,renting","description":"The discussion on social media about 50-year mortgages is mixed, with some seeing it as a viable option for homebuyers who may not be able to afford traditional mortgages, while others criticize it as a form of indentured servitude to banks. Some suggest even longer mortgage terms, such as 75 or 100 years, while others propose an \"infinity year mortgage\" where only interest is paid and no principal is ever reduced. The debate also touches on the potential financial benefits and drawbacks of longer mortgage terms, with some arguing that it could lead to higher total interest paid over the loan term. Overall, opinions on the topic vary, with some seeing potential for profit and others expressing skepticism about the long-term implications of such mortgage options.","data":[11,3,3,9,4,3,3,2,2,5,5,1,4,1,3,2,2,2,2,5,2,1,6,3,5,3,11,4,4,0,1,7,2,4,4,4,1,4,4,1,1,1,1,1,0,4,3,6,4,1,4,3,5,5,90]},{"label":"Klout platform","topics":"klout,kloutgg,hashtag,influence,measurable","description":"The key topic currently being discussed in the messages from twitter is the rise of Klout (@kloutgg) as a platform for trading attention as a valuable asset. Klout is described as a prediction market built on Solana where users can turn their social influence, likes, comments, and trends into tradable assets. The platform rewards awareness and early trend spotting, allowing users to capitalize on emerging viral waves. Klout is seen as the future of on-chain reputation and a way for early adopters to win big in the crypto industry. The platform is praised for its gamified engagement, seamless DeFi integration, and real utility in tracking social influence. Users are encouraged to connect their Twitter accounts to Klout to start earning Klout scores and participating in trend markets and hashtag NFTs. Overall, Klout is portrayed as a revolutionary platform that is transforming social media attention into a valuable currency in the Web3 era.","data":[3,3,3,13,2,1,4,6,1,2,8,6,1,2,3,4,5,3,10,0,3,7,4,10,9,4,6,4,4,10,2,1,9,7,7,5,2,6,2,4,1,3,3,4,7,4,5,7,7,16,7,2,5,3,0]},{"label":"RWA","topics":"rwa,rwas,tokenizing,tokenization,realworld","description":"The messages from twitter highlight the growing trend of Real World Asset (RWA) tokenization in the crypto industry. Key points mentioned include the adoption of RWA tokenization at a trillion-dollar scale, the top blockchains hosting billions in tokenized assets, the importance of tokenizing assets for increased distribution and liquidity, and the potential for RWA tokenization to unlock a $40 trillion on-chain lending market.\n\nAdditionally, the messages discuss the need for a scalable RWA tokenization model, the deployment of RWA infrastructure, and the significance of institutions understanding and adopting RWAs. The potential for RWA tokenization to bring real-world assets on-chain, the importance of seamless and institution-grade liquidity, and the impact of deRWA tokens are also highlighted.\n\nOverall, the messages emphasize the increasing importance and potential of RWA tokenization in the crypto industry, with various projects and initiatives focused on advancing this technology.","data":[3,3,8,4,5,10,7,3,4,2,2,1,8,5,3,9,3,6,0,3,3,3,4,2,5,8,2,8,1,8,2,2,11,3,2,3,8,9,12,1,5,8,4,4,5,6,3,3,11,3,6,3,1,5,5]},{"label":"Israel - Palestine","topics":"israeli,israel,netanyahu,bodies,ministry","description":"The messages from twitter are not related to the crypto industry. They mainly focus on the ongoing conflict between Israel and Palestine, with updates on Israeli military actions, Palestinian casualties, and UN warnings about the situation in Gaza and the West Bank. The messages also mention Israeli settler attacks, arrests of Palestinians, and the passing of a bill authorizing the execution of Palestinian detainees. The situation is described as grim, with concerns about shelter conditions in Gaza and the potential for a low-level insurgency.","data":[3,5,9,5,0,5,1,7,5,5,0,6,8,5,8,1,13,3,1,1,5,2,6,6,6,5,2,1,1,6,6,4,4,3,8,6,3,1,8,15,14,4,13,8,2,2,3,2,3,5,0,1,4,1,2]},{"label":"Tariff stimulus checks","topics":"dividend,tariff,2000,stimulus,tariffs","description":"The messages from twitter are discussing President Trump's announcement of a $2,000 stimulus check for Americans, funded by U.S. tariff revenues. Some are speculating that the stimulus could come in the form of tax cuts or stablecoins instead of cash. There is excitement in the market, with predictions of a bull run and potential impacts on inflation and cryptocurrency prices. Some are skeptical of the plan, suggesting it could lead to inflation and benefit lower-income individuals more. Overall, the announcement is seen as a potential boost for high-risk assets like cryptocurrencies.","data":[1,4,35,3,4,2,5,6,11,2,3,4,6,1,3,2,1,2,10,3,1,5,1,1,4,2,4,3,0,3,1,6,2,0,6,4,2,10,6,4,26,3,0,2,13,3,14,5,0,2,0,4,3,0,1]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-97.ts b/priv/repo/major_topics_seed/data-97.ts deleted file mode 100644 index bc5c1f0d8c..0000000000 --- a/priv/repo/major_topics_seed/data-97.ts +++ /dev/null @@ -1,284 +0,0 @@ -export const NARRATIVES = { - labels: [ - '06.11.25', - '07.11.25', - '07.11.25', - '07.11.25', - '07.11.25', - '07.11.25', - '07.11.25', - '07.11.25', - '08.11.25', - '08.11.25', - '08.11.25', - '08.11.25', - '08.11.25', - '08.11.25', - '08.11.25', - '08.11.25', - '09.11.25', - '09.11.25', - '09.11.25', - '09.11.25', - '09.11.25', - '09.11.25', - '09.11.25', - '09.11.25', - '10.11.25', - '10.11.25', - '10.11.25', - '10.11.25', - '10.11.25', - '10.11.25', - '10.11.25', - '10.11.25', - '11.11.25', - '11.11.25', - '11.11.25', - '11.11.25', - '11.11.25', - '11.11.25', - '11.11.25', - '11.11.25', - '12.11.25', - '12.11.25', - '12.11.25', - '12.11.25', - '12.11.25', - '12.11.25', - '12.11.25', - '12.11.25', - '13.11.25', - '13.11.25', - '13.11.25', - '13.11.25', - '13.11.25', - '13.11.25', - '13.11.25', - ], - datasets: [ - { - label: 'ZEC price', - infofi: false, - topics: 'zcash,zec,zooko,monero,700', - description: - "The key topics currently being discussed in the messages from twitter about Zcash ($ZEC) include:\n- The significant price increase of Zcash, with a 1,486% surge in 3 months and reaching its highest price since 2018.\n- Speculation and analysis on the price action of Zcash, with mentions of potential levels to look for a bounce or pullback.\n- Comparisons between Zcash and other cryptocurrencies, such as Dogecoin and Monero.\n- Discussions on the reasons behind Zcash's recent pump, with some attributing it to a newfound market appreciation for privacy-focused coins.\n- Excitement and surprise over Zcash's price performance, with mentions of it overtaking other cryptocurrencies in market ranking.\n- Critiques and suggestions for improvement, such as listing Zcash on more platforms for increased trading volume.\n- Updates on new developments and projects related to Zcash, such as Zenrock and ZenZEC.\n- Trading strategies and analysis, including short positions and potential price movements.\n- Offers for discounted items related to Zcash, such as a laptop used in a Zcash ceremony.\n- Updates on notable traders and their positions on Zcash, including high-stakes trades and potential liquidation prices.", - data: [ - 29, 27, 18, 19, 26, 32, 36, 30, 33, 25, 25, 18, 27, 27, 19, 22, 27, 37, 21, 24, 14, 24, 25, - 26, 22, 19, 34, 27, 30, 26, 30, 28, 15, 30, 25, 15, 55, 34, 28, 25, 20, 17, 50, 28, 20, 34, - 20, 34, 36, 18, 20, 25, 19, 14, 131, - ], - }, - { - label: 'AI', - infofi: false, - topics: 'openai,centers,capex,ais,sam', - description: - 'The messages from twitter highlight the growing importance and potential of AI in various industries, particularly in the crypto space. Key points discussed include the potential for AI to revolutionize labor productivity, decrease labor participation, and shape the future economy. The concept of a K-shaped economy, where AI plays a central role, is also mentioned.\n\nAdditionally, there is a focus on the power and potential of AI models, with the idea of a centralized platform for all AI models being discussed. The role of AI in various sectors, such as marketing, law, and infrastructure, is highlighted, showcasing the wide-ranging impact of AI technology.\n\nThe messages also touch on the challenges and limitations of AI, such as the need for more data and the potential for data monopolies by big tech firms. The importance of data in the AI economy is emphasized, with comparisons to oil and discussions on data access and ownership.\n\nOverall, the messages convey a sense of excitement and optimism about the future of AI, while also acknowledging the complexities and challenges that come with its widespread adoption.', - data: [ - 17, 75, 31, 17, 21, 21, 33, 20, 19, 42, 23, 27, 31, 18, 17, 17, 15, 37, 28, 13, 14, 25, 15, - 41, 33, 26, 18, 17, 15, 20, 21, 14, 28, 21, 32, 17, 34, 23, 29, 26, 28, 15, 16, 30, 18, 29, - 30, 34, 16, 31, 32, 13, 15, 27, 11, - ], - }, - { - label: 'BTC price', - infofi: false, - topics: 'sma,107k,103k,104k,98k', - description: - "The key topics discussed in the messages from twitter are:\n- Bitcoin's 22% drawdown in 5 weeks and its attempt to climb back over $100K\n- Market signals indicating a potential new Wave III rally for Bitcoin\n- Bitcoin facing resistance at various price levels such as $111,600 and $110K\n- Speculation on whether the bull run is over and potential price movements\n- Analysis of Bitcoin's moving averages and support levels\n- Discussion on Bitcoin's price movements and potential future scenarios\n- Mention of a potential pump-and-dump situation and questions for crypto traders\n- Analysis of Bitcoin's current trading patterns and resistance levels\n- Speculation on Bitcoin's price reaching new highs in the future\n- Discussion on Bitcoin's liquidity and market momentum\n- Clarification on a false claim about Bitcoin dropping to $63,000\n- Analysis of Ethereum's bounce and its correlation with Bitcoin's bullish trend\n\nOverall, the messages indicate a mix of technical analysis, price predictions, and market sentiment regarding Bitcoin and the broader crypto market.", - data: [ - 17, 5, 8, 15, 29, 57, 25, 24, 39, 19, 24, 29, 35, 31, 17, 39, 26, 14, 6, 7, 11, 28, 46, 18, - 19, 5, 21, 19, 47, 20, 8, 13, 22, 11, 9, 15, 31, 24, 29, 20, 14, 21, 25, 22, 8, 33, 31, 22, - 25, 15, 16, 12, 57, 9, 14, - ], - }, - { - label: 'GameFi', - infofi: false, - topics: 'raiders,gaming,valanniagame,gamers,games', - description: - 'The key topics discussed in the messages from twitter are:\n1. Web3 gaming and the future of gaming with mentions of games like ARC Raiders, HYTOPIA, and Decimated.\n2. The integration of cryptocurrency and blockchain technology in gaming, such as using game currency and turning game loot into liquid assets.\n3. The growth and success of specific games like World of Dypians (WOD) and the potential for new players to start their gaming journey.\n4. The use of AI and new learning agents in gaming for strategic wins and boosted earnings.\n5. Critiques and suggestions for improvements in gaming experiences, such as climbing and holding onto edges in games like OthersideMeta.\n6. The excitement and adrenaline of gameplay experiences, such as surviving clutch moments in games like Decimated.\n7. The impact of visuals, gameplay mechanics, and player engagement in the success and longevity of games.\n8. The potential for new gaming projects like Cyberlife to become meta starters in the industry.\n9. The celebration of gaming milestones, such as the 50th anniversary of the "Rudy" game.\n10. The intersection of gaming, DeFi, NFTs, and AI in creating a complete gaming ecosystem.', - data: [ - 1, 7, 15, 4, 8, 6, 6, 4, 8, 9, 9, 4, 11, 8, 15, 8, 5, 73, 10, 7, 10, 6, 7, 7, 12, 5, 11, 14, - 8, 7, 4, 7, 8, 5, 3, 38, 7, 13, 9, 2, 6, 9, 7, 5, 8, 6, 7, 8, 8, 7, 10, 10, 11, 9, 2, - ], - }, - { - label: 'Delhi terror attack ', - infofi: false, - topics: 'fort,terror,delhi,blast,module', - description: - "The messages from twitter are discussing the recent terror attack in Delhi, specifically focusing on the collection of body parts from the blast site near Red Fort. The Former Prime Minister of Nepal Prachanda has condemned the attack, while the Delhi Police and Forensic Team are actively investigating the incident. India's Defence Minister has vowed that those responsible for the car blast will face justice. Additionally, there are reports of arrests and dismissals of individuals with terror links in different regions, including Jammu & Kashmir and Faridabad. The investigation into the Red Fort blast is ongoing, with a focus on potential terrorist doctors and search operations for explosives. The security has been heightened across states in India, with high alerts in place at various locations. Multiple casualties have been reported, and victims are receiving treatment at LNJP hospital.", - data: [ - 4, 25, 16, 4, 33, 14, 6, 18, 4, 16, 3, 12, 17, 5, 1, 26, 17, 5, 1, 1, 2, 14, 4, 8, 9, 6, 4, - 3, 5, 2, 12, 12, 4, 10, 10, 27, 12, 4, 6, 9, 9, 7, 6, 3, 6, 12, 22, 0, 2, 2, 3, 13, 1, 7, 1, - ], - }, - { - label: 'Bitcoin vs fiat', - infofi: false, - topics: 'fiat,bitcoiners,beyondtech,beautifully,opt', - description: - 'The messages from twitter highlight the belief that traditional monetary systems are broken and that Bitcoin is the solution. There is a strong emphasis on the potential of Bitcoin to fix societal issues and provide financial freedom. The messages also touch on the importance of understanding the value of Bitcoin and how it can benefit individuals. Additionally, there is a discussion about the potential for Bitcoin to become a smart contract platform and the removal of limits on technology within the Bitcoin Core. Overall, the messages convey a sense of optimism and belief in the transformative power of Bitcoin in the financial world.', - data: [ - 4, 11, 9, 6, 22, 3, 6, 9, 8, 12, 13, 6, 12, 17, 13, 5, 11, 7, 3, 2, 7, 0, 7, 7, 19, 15, 13, - 13, 4, 7, 6, 9, 6, 6, 12, 4, 7, 9, 10, 6, 6, 7, 4, 5, 10, 3, 13, 9, 6, 5, 15, 5, 11, 12, 3, - ], - }, - { - label: 'NFTs', - infofi: false, - topics: 'spaace,spaaceio,xp,marketplace,nfts', - description: - 'The messages from twitter suggest that NFTs are currently evolving beyond just art or investment assets, with platforms like @spaace_io introducing gamified experiences and community-driven features. @spaace_io is highlighted as a platform that rewards active participation and engagement, offering a dynamic ecosystem for collectors and creators. The platform aims to bridge the gap between collectors and creators, providing a space where users can trade, complete quests, and earn rewards through XP. Additionally, @spaace_io is praised for its unique approach of giving back 100% of marketplace revenue to participants, creating a radical alignment model. Overall, the messages indicate a shift towards more interactive and engaging NFT experiences, with a focus on community building and real rewards for active contributors.', - data: [ - 2, 5, 9, 6, 7, 9, 16, 7, 9, 7, 5, 11, 10, 7, 7, 11, 7, 12, 6, 7, 11, 8, 10, 3, 4, 7, 6, 8, - 10, 24, 7, 5, 13, 5, 5, 14, 3, 10, 6, 7, 11, 6, 3, 7, 7, 7, 7, 13, 7, 11, 11, 7, 1, 11, 4, - ], - }, - { - label: 'Monad sale on Coinbase', - infofi: false, - topics: 'mon,monad,25b,ico,premarket', - description: - 'The key topic discussed in the messages from twitter is the upcoming ICO of Monad on Coinbase. The messages mention that Monad is raising almost $200 million in their ICO, with 7.5% of the total supply being offered at a price of $0.025 per MON. There is speculation about whether this amount, along with the Monad airdrop, is enough to retire. Some users are comparing Monad to MegaETH and discussing the valuation of both projects. Overall, there is a mix of excitement and skepticism surrounding the Monad ICO and its potential impact on the crypto industry.', - data: [ - 8, 5, 10, 4, 10, 1, 5, 6, 5, 4, 4, 4, 6, 3, 5, 10, 3, 1, 10, 8, 7, 4, 7, 8, 7, 13, 5, 5, 7, - 3, 5, 41, 5, 4, 8, 9, 14, 30, 8, 3, 15, 6, 5, 3, 4, 8, 14, 6, 16, 5, 8, 11, 8, 6, 2, - ], - }, - { - label: 'Whales selling BTC and ETH', - infofi: false, - topics: 'whale,whales,borrowed,unusual,accumulated', - description: - 'The key topics currently discussed in the messages from twitter are:\n\n1. Whale activity in the crypto market, including buying, selling, and transferring large amounts of Bitcoin and Ethereum.\n2. Speculation on the actions of OG Bitcoin whales and their impact on the market.\n3. Analysis of on-chain data to determine whether whales are accumulating or dumping Bitcoin.\n4. The impact of whale activity on the price of Bitcoin and other cryptocurrencies.\n5. The potential bullish or bearish signals from whale movements in the market.\n6. The influence of large entities on the price and future projections of Bitcoin.\n7. The use of AI and data analysis tools to track whale movements and predict market trends.\n8. Comparison of current whale behavior to historical patterns and market cycles.\n9. Discussion on the resilience of Bitcoin in the face of whale selling pressure.\n10. Updates on specific whale transactions and movements, such as deposits and withdrawals from exchanges.', - data: [ - 13, 6, 4, 2, 9, 7, 7, 8, 2, 3, 5, 3, 1, 4, 4, 2, 2, 1, 1, 3, 0, 4, 7, 9, 6, 2, 1, 8, 4, 7, - 2, 7, 4, 4, 4, 8, 4, 5, 6, 5, 3, 11, 6, 7, 10, 5, 4, 5, 3, 5, 2, 4, 3, 115, 2, - ], - }, - { - label: 'UNI fee switch', - infofi: false, - topics: 'uni,uniswap,unification,proposal,switch', - description: - 'The key topics currently discussed in the crypto industry on social media platforms like Twitter include the fee switch on Uniswap, the introduction of protocol fees, and the alignment of incentives across the Uniswap ecosystem. There is excitement and anticipation surrounding the fee switch proposal, with $UNI experiencing significant price movements in response to the news. The community is also discussing the impact of the fee switch on DeFi governance and the broader Ethereum ecosystem. Overall, there is a sense of optimism and enthusiasm for the future of Uniswap and decentralized finance as a whole.', - data: [ - 7, 6, 6, 4, 2, 3, 8, 3, 3, 7, 1, 8, 6, 9, 8, 12, 10, 3, 4, 9, 4, 6, 8, 16, 5, 9, 3, 6, 5, 7, - 3, 6, 8, 3, 5, 2, 2, 22, 9, 5, 3, 5, 3, 7, 8, 18, 2, 5, 12, 4, 28, 3, 1, 7, 5, - ], - }, - { - label: 'Wallchain', - infofi: true, - topics: 'quack,genesis,minted,heads,mint', - description: - 'The @wallchain Genesis NFT Mint is a highly anticipated event in the crypto community. The minting process involves different stages with limited quantities of NFTs available for purchase. Participants are excited about the opportunity to mint their own @wallchain Genesis NFT and are eagerly awaiting the release. The minting process requires participants to have a certain amount of SOL in their wallets and be prepared for a fast-paced, first-come-first-serve minting experience. Overall, the @wallchain Genesis NFT Mint is generating a lot of buzz and excitement within the community.', - data: [ - 0, 2, 6, 2, 4, 2, 1, 2, 8, 3, 1, 8, 3, 10, 6, 5, 5, 4, 16, 9, 4, 12, 10, 3, 4, 4, 4, 7, 4, - 1, 92, 1, 7, 6, 2, 2, 1, 5, 6, 1, 4, 8, 2, 7, 9, 6, 2, 0, 10, 1, 7, 11, 4, 6, 2, - ], - }, - { - label: 'Government shutdown is over', - infofi: false, - topics: 'longest,reopened,shutdowns,gov,govt', - description: - 'The messages from twitter indicate that there is a mix of reactions to the end of the US government shutdown. Some users believe that the shutdown ending will lead to a positive impact on the crypto market, while others are skeptical and do not see it as a bullish sign. There are also discussions about the potential effects on Bitcoin and the overall market, with some speculating about potential price movements. Additionally, there are mentions of specific projects and their developments in relation to the government shutdown. Overall, the sentiment seems to be uncertain and varied among users in the crypto community.', - data: [ - 3, 4, 2, 2, 3, 1, 8, 5, 1, 1, 7, 8, 2, 15, 5, 4, 1, 1, 0, 69, 2, 2, 3, 3, 0, 2, 12, 12, 2, - 5, 1, 7, 3, 3, 2, 3, 4, 4, 3, 6, 4, 3, 65, 7, 0, 0, 3, 22, 3, 2, 2, 2, 1, 4, 4, - ], - }, - { - label: 'Privacy in crypto ', - infofi: false, - topics: 'cypherpunks,cypherpunk,privacy,confidential,hide', - description: - 'The key topic being discussed in the messages from twitter is the importance of privacy in the crypto industry. The messages emphasize that privacy is a fundamental right and should be prioritized in the digital realm. There is a focus on normalizing privacy in crypto and understanding the difference between privacy preservation and secrecy. The messages also highlight privacy as a form of freedom and revolution, with some suggesting that privacy will be the next big meta in the industry. Overall, the discussion revolves around the significance of privacy in the crypto space and its role in shaping a more open and secure digital society.', - data: [ - 1, 5, 6, 3, 6, 2, 6, 5, 10, 12, 11, 5, 3, 5, 10, 3, 1, 6, 7, 3, 6, 7, 2, 3, 11, 5, 5, 4, 4, - 6, 5, 3, 10, 7, 2, 3, 63, 6, 7, 7, 4, 7, 4, 3, 1, 3, 9, 2, 2, 5, 8, 7, 1, 4, 3, - ], - }, - { - label: 'ETH price', - infofi: false, - topics: '3600,diagonal,fibonacci,4000,5k', - description: - "The key topics discussed in the messages from twitter regarding Ethereum ($ETH) include price predictions ranging from $1,500 to $20,000, resistance levels at $3,800, support levels at $3,420, potential breakout triggers at $3,645, and a potential rally above $5,000. There is also mention of network upgrades, institutional interest, staking, and the possibility of altcoins performing well in the coming weeks. Additionally, there is discussion about technical analysis, Fibonacci retracement levels, volume profiles, and potential price targets. Overall, there is a mix of cautious optimism and bullish sentiment surrounding Ethereum's price outlook in the crypto community.", - data: [ - 9, 2, 7, 4, 6, 9, 4, 4, 4, 12, 7, 3, 7, 2, 7, 11, 0, 2, 5, 8, 8, 4, 10, 7, 3, 2, 9, 11, 14, - 2, 3, 4, 5, 2, 1, 7, 17, 5, 14, 8, 2, 5, 10, 9, 3, 8, 8, 6, 5, 4, 6, 3, 7, 3, 1, - ], - }, - { - label: 'ORE', - infofi: true, - topics: 'ore,mines,circulation,miners,400k', - description: - 'The key topics currently being discussed in the crypto community on Twitter regarding $ORE include:\n- The excitement and anticipation surrounding the potential growth and success of $ORE, with many users expressing optimism about its future prospects.\n- The comparison of $ORE to other well-known companies and organizations, highlighting its potential value and impact in the market.\n- The limited supply of $ORE coins in circulation, leading to discussions about the potential scarcity and value of owning a full coin.\n- The recent price movements of $ORE, with some users noting significant gains and expressing confidence in its continued upward trajectory.\n- The involvement of $ORE in partnerships and collaborations within the crypto industry, such as with @photofinishgame and the @KentuckyDerby, leading to expectations of increased adoption and user base growth.\n- The revenue-generating and yield-generating capabilities of $ORE, as well as its growing developer ecosystem and community support.\n- The overall positive sentiment towards $ORE, with users viewing it as a valuable asset and potential store of value within the Solana blockchain ecosystem.', - data: [ - 8, 2, 3, 4, 5, 6, 6, 8, 5, 6, 5, 9, 5, 4, 3, 1, 2, 3, 5, 6, 3, 7, 4, 6, 0, 3, 9, 4, 8, 5, - 14, 7, 3, 33, 4, 5, 7, 7, 7, 14, 1, 3, 6, 10, 4, 6, 4, 5, 4, 8, 5, 1, 3, 1, 4, - ], - }, - { - label: '50 year mortgage ', - infofi: false, - topics: 'mortgage,50year,mortgages,loan,renting', - description: - 'The discussion on social media about 50-year mortgages is mixed, with some seeing it as a viable option for homebuyers who may not be able to afford traditional mortgages, while others criticize it as a form of indentured servitude to banks. Some suggest even longer mortgage terms, such as 75 or 100 years, while others propose an "infinity year mortgage" where only interest is paid and no principal is ever reduced. The debate also touches on the potential financial benefits and drawbacks of longer mortgage terms, with some arguing that it could lead to higher total interest paid over the loan term. Overall, opinions on the topic vary, with some seeing potential for profit and others expressing skepticism about the long-term implications of such mortgage options.', - data: [ - 11, 3, 3, 9, 4, 3, 3, 2, 2, 5, 5, 1, 4, 1, 3, 2, 2, 2, 2, 5, 2, 1, 6, 3, 5, 3, 11, 4, 4, 0, - 1, 7, 2, 4, 4, 4, 1, 4, 4, 1, 1, 1, 1, 1, 0, 4, 3, 6, 4, 1, 4, 3, 5, 5, 90, - ], - }, - { - label: 'Klout platform', - infofi: true, - topics: 'klout,kloutgg,hashtag,influence,measurable', - description: - 'The key topic currently being discussed in the messages from twitter is the rise of Klout (@kloutgg) as a platform for trading attention as a valuable asset. Klout is described as a prediction market built on Solana where users can turn their social influence, likes, comments, and trends into tradable assets. The platform rewards awareness and early trend spotting, allowing users to capitalize on emerging viral waves. Klout is seen as the future of on-chain reputation and a way for early adopters to win big in the crypto industry. The platform is praised for its gamified engagement, seamless DeFi integration, and real utility in tracking social influence. Users are encouraged to connect their Twitter accounts to Klout to start earning Klout scores and participating in trend markets and hashtag NFTs. Overall, Klout is portrayed as a revolutionary platform that is transforming social media attention into a valuable currency in the Web3 era.', - data: [ - 3, 3, 3, 13, 2, 1, 4, 6, 1, 2, 8, 6, 1, 2, 3, 4, 5, 3, 10, 0, 3, 7, 4, 10, 9, 4, 6, 4, 4, - 10, 2, 1, 9, 7, 7, 5, 2, 6, 2, 4, 1, 3, 3, 4, 7, 4, 5, 7, 7, 16, 7, 2, 5, 3, 0, - ], - }, - { - label: 'RWA', - infofi: false, - topics: 'rwa,rwas,tokenizing,tokenization,realworld', - description: - 'The messages from twitter highlight the growing trend of Real World Asset (RWA) tokenization in the crypto industry. Key points mentioned include the adoption of RWA tokenization at a trillion-dollar scale, the top blockchains hosting billions in tokenized assets, the importance of tokenizing assets for increased distribution and liquidity, and the potential for RWA tokenization to unlock a $40 trillion on-chain lending market.\n\nAdditionally, the messages discuss the need for a scalable RWA tokenization model, the deployment of RWA infrastructure, and the significance of institutions understanding and adopting RWAs. The potential for RWA tokenization to bring real-world assets on-chain, the importance of seamless and institution-grade liquidity, and the impact of deRWA tokens are also highlighted.\n\nOverall, the messages emphasize the increasing importance and potential of RWA tokenization in the crypto industry, with various projects and initiatives focused on advancing this technology.', - data: [ - 3, 3, 8, 4, 5, 10, 7, 3, 4, 2, 2, 1, 8, 5, 3, 9, 3, 6, 0, 3, 3, 3, 4, 2, 5, 8, 2, 8, 1, 8, - 2, 2, 11, 3, 2, 3, 8, 9, 12, 1, 5, 8, 4, 4, 5, 6, 3, 3, 11, 3, 6, 3, 1, 5, 5, - ], - }, - { - label: 'Israel - Palestine', - infofi: false, - topics: 'israeli,israel,netanyahu,bodies,ministry', - description: - 'The messages from twitter are not related to the crypto industry. They mainly focus on the ongoing conflict between Israel and Palestine, with updates on Israeli military actions, Palestinian casualties, and UN warnings about the situation in Gaza and the West Bank. The messages also mention Israeli settler attacks, arrests of Palestinians, and the passing of a bill authorizing the execution of Palestinian detainees. The situation is described as grim, with concerns about shelter conditions in Gaza and the potential for a low-level insurgency.', - data: [ - 3, 5, 9, 5, 0, 5, 1, 7, 5, 5, 0, 6, 8, 5, 8, 1, 13, 3, 1, 1, 5, 2, 6, 6, 6, 5, 2, 1, 1, 6, - 6, 4, 4, 3, 8, 6, 3, 1, 8, 15, 14, 4, 13, 8, 2, 2, 3, 2, 3, 5, 0, 1, 4, 1, 2, - ], - }, - { - label: 'Tariff stimulus checks', - infofi: false, - topics: 'dividend,tariff,2000,stimulus,tariffs', - description: - "The messages from twitter are discussing President Trump's announcement of a $2,000 stimulus check for Americans, funded by U.S. tariff revenues. Some are speculating that the stimulus could come in the form of tax cuts or stablecoins instead of cash. There is excitement in the market, with predictions of a bull run and potential impacts on inflation and cryptocurrency prices. Some are skeptical of the plan, suggesting it could lead to inflation and benefit lower-income individuals more. Overall, the announcement is seen as a potential boost for high-risk assets like cryptocurrencies.", - data: [ - 1, 4, 35, 3, 4, 2, 5, 6, 11, 2, 3, 4, 6, 1, 3, 2, 1, 2, 10, 3, 1, 5, 1, 1, 4, 2, 4, 3, 0, 3, - 1, 6, 2, 0, 6, 4, 2, 10, 6, 4, 26, 3, 0, 2, 13, 3, 14, 5, 0, 2, 0, 4, 3, 0, 1, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-98.json b/priv/repo/major_topics_seed/data-98.json deleted file mode 100644 index dcd4b236e4..0000000000 --- a/priv/repo/major_topics_seed/data-98.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["13.11.25","14.11.25","14.11.25","14.11.25","14.11.25","14.11.25","14.11.25","14.11.25","15.11.25","15.11.25","15.11.25","15.11.25","15.11.25","15.11.25","15.11.25","15.11.25","16.11.25","16.11.25","16.11.25","16.11.25","16.11.25","16.11.25","16.11.25","16.11.25","17.11.25","17.11.25","17.11.25","17.11.25","17.11.25","17.11.25","17.11.25","17.11.25","18.11.25","18.11.25","18.11.25","18.11.25","18.11.25","18.11.25","18.11.25","18.11.25","19.11.25","19.11.25","19.11.25","19.11.25","19.11.25","19.11.25","19.11.25","19.11.25","20.11.25","20.11.25","20.11.25","20.11.25","20.11.25","20.11.25","20.11.25"],"datasets":[{"label":"ZEC price","topics":"zcash,zec,moar,700,ghost","description":"The messages from twitter suggest that there is a lot of excitement and discussion surrounding Zcash (ZEC) in the crypto community. Some key points mentioned include:\n\n- Speculation about Zora trading at $1 in 2026 and the potential for ZEC to reach high price levels in the future.\n- References to Zcash as a form of VC exit bag liquidity and an anonymous encrypted honeybadger.\n- Discussions about ZEC swaps on Zashi and its strength within the privacy sector.\n- Concerns about potential pullbacks in the price of ZEC and issues with withdrawing assets from Ledger.\n- Overall, there seems to be a mix of optimism and caution surrounding Zcash in the crypto community.","data":[24,15,21,22,16,19,21,24,29,21,33,13,26,18,11,17,16,15,15,20,20,18,21,14,15,17,19,17,27,23,13,19,18,16,27,18,38,31,22,21,23,32,33,18,16,30,24,13,17,18,26,16,12,13,188]},{"label":"Bitcoin ideology","topics":"bitcoiners,bitcointwitter,fiat,bitcoiner,monetary","description":"The key topics currently discussed in the messages from twitter are:\n1. Bitcoin as a symbol of freedom and alternative to government control\n2. Belief in Bitcoin as a form of financial empowerment\n3. The limited supply of Bitcoin compared to government-controlled currencies\n4. The potential for Bitcoin to disrupt traditional financial systems\n5. The importance of personal responsibility in adopting Bitcoin\n6. Comparisons between Bitcoin and traditional financial institutions like the Bank of England\n7. The need for user-friendly interfaces and coins that resonate with individuals\n8. The use of technical indicators to analyze Bitcoin trends\n9. Discussions about different camps within the Bitcoin community\n\nOverall, the messages reflect a strong belief in the potential of Bitcoin to revolutionize the financial industry and empower individuals to take control of their own wealth.","data":[7,13,14,9,51,19,11,10,3,6,12,7,8,7,14,11,19,22,7,4,11,12,3,10,9,8,11,9,11,5,8,11,11,7,15,7,15,10,7,6,10,5,6,9,6,4,3,18,5,10,13,11,12,8,3]},{"label":"Lord help us","topics":"lord,serve,jesus,bloodline,gods","description":"The messages from twitter seem to revolve around themes of faith, power, and devotion to a higher power, specifically referencing the Holy Emperor and God. There is a strong emphasis on serving and obeying the will of the Holy Emperor, with warnings against being insolent or disrespectful. The messages also touch on the idea of eternal life through God and the importance of staying true to one's beliefs. Overall, the messages convey a sense of spiritual authority and the consequences of not aligning with the divine will.","data":[5,10,14,8,26,11,5,5,9,3,6,3,21,4,16,6,4,17,15,17,7,10,3,17,5,16,12,5,17,5,9,5,3,6,20,5,28,14,9,10,16,8,6,14,8,12,7,9,5,11,7,9,3,14,14]},{"label":"AI","topics":"ais,productivity,agents,replace,workflows","description":"The key topics discussed in the messages from twitter are:\n1. The importance and impact of AI in various industries, including finance, e-commerce, energy, and media.\n2. The potential of AI to revolutionize the economy and create wealth for everyone.\n3. The role of AI in reshaping traditional business models and job roles.\n4. The need for transparency and verification in online content creation.\n5. The risks and challenges associated with AI, including concerns about decentralization and AI alignment.\n6. The comparison of AI to historical technological advancements like electricity and the industrial revolution.\n7. The potential of AI to improve healthcare, entertainment, and other aspects of daily life.\n8. The use of AI in data collection and research methods.\n9. The collaboration between companies and open-source communities in advancing AI technology.\n10. The discussion of AI agents and their impact on white-collar job roles in the future.","data":[8,38,11,9,6,4,8,8,6,23,12,9,9,5,12,6,6,6,20,10,14,10,4,13,13,4,9,9,6,5,5,10,12,7,8,11,5,12,9,8,9,6,8,16,6,7,11,13,12,5,12,4,5,11,5]},{"label":"Israel - Gaza","topics":"gaza,israel,jews,jewish,resolution","description":"The messages from twitter are discussing various topics related to the conflict in Gaza, including accusations of genocide by Israel, criticism of Zionists, reports of Palestinian captives held by Israel, and the role of European Union in training Palestinian police officers. There are also mentions of antisemitism, the influence of Jews in the US, and the involvement of Russia and China in UN negotiations regarding Gaza stabilization. The messages reflect a range of opinions and emotions surrounding the ongoing conflict in the region.","data":[5,12,18,11,4,4,4,6,11,14,3,5,14,3,8,11,5,11,3,5,11,8,10,9,15,14,7,2,4,5,17,7,7,9,11,9,7,12,18,22,5,23,12,4,6,14,11,6,4,7,9,13,12,11,8]},{"label":"FOMC and CPI","topics":"manufacturing,fomc,cpi,busy,marvel","description":"The key topics discussed in the messages from twitter include the anticipation of a big week in the crypto industry, with mentions of green Tuesday, new details being shared, analyst calls, and the possibility of significant events happening. There is also excitement about the Ethereum ecosystem, upcoming events such as FOMC minutes and NVIDIA earnings, and market outlooks for various cryptocurrencies and stocks. Additionally, there are references to specific projects and opportunities in the crypto market, as well as discussions about upcoming schedules and events in the financial world.","data":[7,6,4,7,16,4,15,9,12,5,9,17,5,4,10,2,4,5,5,9,3,4,7,8,2,4,1,7,3,9,7,8,13,6,8,2,3,7,8,6,10,4,6,2,4,7,5,4,5,6,4,6,135,10,3]},{"label":"DevCon Argentina","topics":"buenos,aires,argentina,stakingsummit,efdevcon","description":"The key topics discussed in the messages from twitter are:\n1. Buenos Aires and Argentina being beautiful and ready for events like Devconnect and EFDevcon.\n2. The impact of market conditions on Uber liquidity in Buenos Aires.\n3. The excitement and anticipation for events and meetups in Buenos Aires, such as Devconnect and EFDevcon.\n4. The adoption of crypto in Argentina and its practical solutions to economic problems.\n5. The presence of various crypto and blockchain companies and teams in Buenos Aires for events and meetups.\n6. Recommendations for places to visit and food to try in Buenos Aires.\n7. Discussions about Argentina's economic story and potential for becoming investment grade.\n8. The involvement of key figures and companies in the crypto industry in events and discussions in Buenos Aires.","data":[3,8,22,11,9,6,28,7,13,6,6,12,11,8,12,3,6,7,10,11,9,8,11,10,5,12,6,11,11,4,10,8,6,5,11,4,3,3,9,3,9,4,6,12,4,7,26,8,13,3,4,5,18,5,1]},{"label":"Memecoins","topics":"memecoins,memes,memecoin,meme,mememaxfi","description":"The messages from twitter are discussing various memecoins and meme communities within the crypto industry. Some key points mentioned include:\n- The Next 1000x memecoin is being closely watched.\n- Memes are seen as a fundamental aspect of the market.\n- The community plays a crucial role in the success of memecoins.\n- The Threadguy Murad stream is mentioned as marking a significant point for memecoins.\n- Kirkify and Quarterzips are highlighted as popular memes with associated coins.\n- Lumeme is mentioned as a potential opportunity for developers to launch a successful memecoin on the Stellar DEX.\n- The importance of utility and real activity in shaping meme-coin opportunities is emphasized.\n- The impact of memecoin communities on real-world change is recognized.\n- $DETECTIVE is highlighted as a popular meme in 2025.\n- MemeMaxFi is discussed as a dedicated memecoin trading layer designed to support the volatility and culture of the meme space.","data":[9,4,8,6,12,10,8,8,12,5,7,4,9,8,4,1,11,9,7,2,13,7,8,9,2,6,6,6,4,6,101,10,5,7,7,5,4,5,2,5,5,7,4,2,5,2,8,10,8,4,6,6,6,8,6]},{"label":"DeFi","topics":"katana,android,infinitlabs,defi,protocols","description":"The messages from twitter highlight the ongoing growth and evolution of the DeFi (Decentralized Finance) industry. Key points include the continued development of DeFi projects like Gearbox and Hotstuff, the importance of accessible infrastructure for adoption, the need for advanced security frameworks, and the focus on transparency and safety in DeFi platforms like Solsticefi. There is also discussion about the need for innovation in DeFi beyond just high returns, with a focus on credit risk and user experience. Overall, the messages suggest that DeFi is maturing rapidly and facing challenges such as misaligned incentives and the need for mainstream adoption.","data":[4,5,13,6,7,3,8,8,9,6,2,9,12,11,16,10,15,12,5,8,8,4,8,8,12,5,5,12,5,7,9,9,13,6,6,9,6,15,7,8,11,3,7,6,2,9,7,8,10,5,15,6,4,8,8]},{"label":"ASTER","topics":"aster,machi,wealthgroup,128,cz","description":"The key topics currently discussed in the crypto community on Twitter include the launch of Aster on Coinbase, its strong performance in the market, buybacks kicking in, expectations for future price movements, comparisons to other cryptocurrencies like Solana and Binance Coin, decentralized AI and finance trends, accumulation zones, ATH predictions, and the influence of key opinion leaders (KOLs) in the industry. There is also discussion about potential market manipulation, trading strategies, and warnings about potential price dumps and reversals. Overall, there is a lot of excitement and optimism surrounding Aster and its potential for growth in the crypto market.","data":[6,5,27,7,7,11,14,8,4,8,2,4,9,5,7,7,17,7,8,3,5,4,19,3,10,7,9,13,20,6,8,3,3,12,7,4,5,5,2,7,8,10,9,3,2,13,4,9,13,6,3,6,8,1,3]},{"label":"Hyperliquid","topics":"hyperliquid,hyperevm,hype,hyper,hyperliquidx","description":"The hype around the $HYPE token and Hyperliquid is currently strong, with discussions about buy-backs, price levels, and potential growth. The community is excited about the potential of Hyperliquid and its various products, such as Perp Dex, stablecoin, borrow/lend protocol, and more. There is a focus on building a sustainable revenue model and providing value to HYPE holders. The platform is seen as a game-changer in the crypto/TradFi space, with endless possibilities for trading and investment. Overall, the sentiment is positive and optimistic about the future of Hyperliquid and the $HYPE token.","data":[14,3,9,6,3,7,3,7,5,7,3,10,5,6,10,7,10,4,7,6,9,6,9,38,4,4,9,6,8,8,4,8,6,4,9,8,6,9,9,7,8,1,7,4,10,9,5,5,15,12,7,7,5,1,2]},{"label":"Cloudflare downtime","topics":"outage,cloudflare,websites,affected,experiencing","description":"The recent Cloudflare outage has caused widespread disruption across the internet, affecting major crypto platforms and highlighting the reliance of Web3 on Web2 infrastructure. While some protocols froze during the outage, others like @THORChain remained unaffected, sparking discussions about decentralization and the future of decentralized applications. The outage also emphasized the need to move away from dependencies on services like Cloudflare to prevent similar disruptions in the future. Overall, the incident serves as a reminder of the risks associated with relying on a single point of failure in the digital world.","data":[3,4,9,8,9,5,1,4,36,4,10,8,2,2,8,11,6,4,9,9,5,5,2,5,40,4,5,5,2,5,4,6,2,7,31,5,2,5,3,10,3,2,10,4,1,8,6,4,2,3,5,2,8,16,4]},{"label":"Bitcoin selloff","topics":"90000,95000,briefly,falls,slipped","description":"The key topic discussed in the messages from twitter on December 17th is the significant sell-off in Bitcoin, with the price falling below $93,000 to reach its lowest level since April. The messages also mention the volatility in the market, with Bitcoin trading above $90,000 and then falling below key support levels, leading to a market wipeout of over $700 billion. Additionally, there are discussions about Bitcoin shorts stacking up and betting on further crashes, as well as analysts predicting potential price movements towards $82K or even $66K. Overall, the sentiment in the messages seems to be cautious and focused on risk management in light of the market fluctuations.","data":[1,4,2,5,8,20,5,3,3,2,9,2,14,35,5,27,12,4,0,1,0,8,10,1,0,1,1,1,5,10,2,0,4,6,1,12,12,5,2,5,3,3,8,19,4,3,2,3,2,13,1,1,7,7,0]},{"label":"Prediction markets","topics":"kalshi,polymarket,prediction,pol,wong","description":"The unique Polymarket tool being discussed in the messages is the prediction markets platform. Users are discussing the potential of Polymarket to stop listing MetaDAO launches and focusing on other events. The platform is seen as a solid product that needs more attention from Polymarket. Additionally, Kalshi is mentioned as a platform heading towards zero, similar to FTX. Prediction markets are highlighted as a tool that not only generates financial incentives but also has a direct impact on people's actions on a massive scale. The messages also touch on the future potential of prediction markets and the dominance they are expected to have in narratives in the future. The partnership between Kalshi and Coinbase Custody to safeguard USDC reserves is also highlighted as a boost for regulated prediction markets. Overall, the messages showcase a growing interest and discussion around prediction markets and their potential impact on various industries.","data":[6,6,4,3,4,3,2,1,3,5,3,3,4,3,7,4,1,4,5,3,4,4,0,5,2,9,8,5,7,33,6,5,5,7,13,8,44,5,7,8,6,3,4,2,7,3,7,8,5,4,4,4,1,1,4]},{"label":"NVDA earnings","topics":"nvidias,nvidia,huang,jensen,earnings","description":"The key topics discussed in the messages from twitter regarding Nvidia are:\n1. Anticipation and excitement surrounding Nvidia's earnings report.\n2. Speculation about the impact of Nvidia's earnings on the financial markets.\n3. Concerns about Nvidia's performance and potential loss of momentum.\n4. Positive reactions to Nvidia's earnings results exceeding expectations and the subsequent rally in share prices.\n5. Mention of Nvidia's involvement in green efforts, specifically the use of hydrogen fuel cells at its headquarters.\n6. Recognition of Nvidia's influence on AI and crypto markets.\n7. Gratitude towards Nvidia for its positive impact on the market.","data":[7,5,3,14,7,4,3,5,4,1,9,5,7,35,3,9,2,9,1,4,2,2,4,4,3,3,2,3,3,6,1,8,4,16,7,0,5,3,4,23,14,5,8,5,4,3,2,5,2,2,4,5,4,9,4]},{"label":"Whales selling","topics":"whale,whales,unusual,deposited,unrealized","description":"The messages from twitter suggest that there is significant activity from whales in the crypto market. Whales are large holders of cryptocurrencies who have the power to influence prices with their trading decisions. The messages indicate that whales are actively buying and selling large amounts of Bitcoin and Ethereum, with some taking bearish stances and others accumulating more assets.\n\nThere is speculation about OG whales (original whales) driving market movements, as well as concerns about the impact of whale activity on smaller holders. Some are questioning whether developers can intervene to address the dominance of whales in the market.\n\nOverall, the messages highlight the ongoing influence of whales in the crypto industry and the potential implications for other market participants.","data":[14,4,2,6,6,4,13,3,6,5,4,3,7,5,1,3,4,3,0,2,2,1,7,4,2,1,0,2,6,3,7,4,5,11,5,4,3,2,3,6,0,10,8,4,2,4,5,1,2,3,4,7,3,88,2]},{"label":"Monad TGE","topics":"monad,mon,ico,25b,fdv","description":"The key topic discussed in the messages from twitter is the Monad token sale, which is officially live on Coinbase. The token sale has already seen significant interest, with over $53M of the available $187.5M sold within the first hour. The project is valued at $2.5B and is backed by Dragonfly & Paradigm, making it a serious competitor to Ethereum. The sale is open to users in 80+ countries, including the U.S. and has generated a lot of buzz within the crypto community. Participants are debating whether to invest in the Monad ICO or other options like USDAI, with some warning about potential risks and others seeing it as a high-reward opportunity. Overall, the community is excited about the launch of Monad Mainnet and the potential for early investors to benefit from the project's success.","data":[9,3,1,3,8,2,5,1,5,2,4,6,1,5,1,3,6,6,6,12,4,4,2,2,6,8,10,5,4,8,5,26,8,3,2,3,11,15,4,3,12,2,6,4,5,5,5,5,11,5,6,6,4,7,4]},{"label":"Art","topics":"painting,artist,artwork,art,artists","description":"The messages from twitter are mainly focused on various aspects of art, including generative art projects, NFTs, tutorials on drawing, different art styles, and discussions about the value of art. There are mentions of creating, collecting, and appreciating art in different forms such as painting, sculpture, and illustration. The messages also touch on the intersection of art and technology, such as using Web3 for creating art. Overall, the crypto community on Twitter seems to be actively engaged in discussions about art and its various forms.","data":[3,2,53,5,3,4,3,7,4,5,9,4,7,11,5,5,0,4,4,1,3,5,2,9,3,2,7,7,7,3,6,6,7,2,6,3,5,5,4,3,1,7,3,5,6,3,2,2,4,3,7,5,3,5,1]},{"label":"SOL price","topics":"sol,130,140,139,reduction","description":"The key topics discussed in the messages from twitter are:\n1. Discussion about the price of Solana (SOL) and its technology.\n2. Speculation on the potential price movements of SOL, with some predicting it to hit $130 in November.\n3. Analysis of SOL's performance relative to other coins and its potential for a new all-time high.\n4. Mention of a possible death cross formation in SOL's price.\n5. Supportive community of SOL investors who have been through market fluctuations.\n6. Technical analysis of SOL's price movements and potential bounce levels.\n7. Calls for investment in SOL for potential high returns in the future.\n8. Discussion about the bullish sentiment towards SOL and its potential for profit.\n9. Mention of a specific trading group (@AlphaAiGroup) making calls on SOL's price movements.\n10. Speculation on the future price of SOL and potential for significant returns on investment.","data":[4,3,5,5,3,9,5,4,4,2,1,4,4,10,2,9,3,1,5,5,4,2,6,1,2,6,5,6,6,8,7,2,3,5,5,3,10,0,7,4,5,3,9,26,5,10,5,8,4,6,5,6,3,1,5]},{"label":"ETH price","topics":"3000,3500,3k,28k,3100","description":"The current discussion on Ethereum in the crypto community revolves around its price dropping below $2900. Despite the recent volatility and \"carnage\" in the market, Ethereum has managed to stay above $1000, leading to speculation about its future performance. Traders are closely monitoring key support levels, such as $2800-$2900 and $3000, as well as resistance levels like $3200 and $3500. There is optimism for a potential rally towards $3400-$3600 if Ethereum can reclaim certain levels. Institutional investors like BlackRock, Vanguard, JPMorgan, Schwab, and Ark are reportedly accumulating ETH, indicating strong conviction in the asset. Overall, the sentiment is mixed, with some predicting a potential bounce towards $3300-$3500, while others warn of a possible drop below $2800-$2900.","data":[5,1,3,3,2,9,2,5,5,2,3,4,6,2,13,11,7,4,3,4,2,5,14,6,2,5,4,9,10,4,4,2,6,3,3,4,10,2,4,9,2,3,11,6,4,10,6,5,3,6,3,1,7,5,2]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-98.ts b/priv/repo/major_topics_seed/data-98.ts deleted file mode 100644 index 1db303d28c..0000000000 --- a/priv/repo/major_topics_seed/data-98.ts +++ /dev/null @@ -1,266 +0,0 @@ -export const NARRATIVES = { - labels: [ - '13.11.25', - '14.11.25', - '14.11.25', - '14.11.25', - '14.11.25', - '14.11.25', - '14.11.25', - '14.11.25', - '15.11.25', - '15.11.25', - '15.11.25', - '15.11.25', - '15.11.25', - '15.11.25', - '15.11.25', - '15.11.25', - '16.11.25', - '16.11.25', - '16.11.25', - '16.11.25', - '16.11.25', - '16.11.25', - '16.11.25', - '16.11.25', - '17.11.25', - '17.11.25', - '17.11.25', - '17.11.25', - '17.11.25', - '17.11.25', - '17.11.25', - '17.11.25', - '18.11.25', - '18.11.25', - '18.11.25', - '18.11.25', - '18.11.25', - '18.11.25', - '18.11.25', - '18.11.25', - '19.11.25', - '19.11.25', - '19.11.25', - '19.11.25', - '19.11.25', - '19.11.25', - '19.11.25', - '19.11.25', - '20.11.25', - '20.11.25', - '20.11.25', - '20.11.25', - '20.11.25', - '20.11.25', - '20.11.25', - ], - datasets: [ - { - label: 'ZEC price', - topics: 'zcash,zec,moar,700,ghost', - description: - 'The messages from twitter suggest that there is a lot of excitement and discussion surrounding Zcash (ZEC) in the crypto community. Some key points mentioned include:\n\n- Speculation about Zora trading at $1 in 2026 and the potential for ZEC to reach high price levels in the future.\n- References to Zcash as a form of VC exit bag liquidity and an anonymous encrypted honeybadger.\n- Discussions about ZEC swaps on Zashi and its strength within the privacy sector.\n- Concerns about potential pullbacks in the price of ZEC and issues with withdrawing assets from Ledger.\n- Overall, there seems to be a mix of optimism and caution surrounding Zcash in the crypto community.', - data: [ - 24, 15, 21, 22, 16, 19, 21, 24, 29, 21, 33, 13, 26, 18, 11, 17, 16, 15, 15, 20, 20, 18, 21, - 14, 15, 17, 19, 17, 27, 23, 13, 19, 18, 16, 27, 18, 38, 31, 22, 21, 23, 32, 33, 18, 16, 30, - 24, 13, 17, 18, 26, 16, 12, 13, 188, - ], - }, - { - label: 'Bitcoin ideology', - topics: 'bitcoiners,bitcointwitter,fiat,bitcoiner,monetary', - description: - 'The key topics currently discussed in the messages from twitter are:\n1. Bitcoin as a symbol of freedom and alternative to government control\n2. Belief in Bitcoin as a form of financial empowerment\n3. The limited supply of Bitcoin compared to government-controlled currencies\n4. The potential for Bitcoin to disrupt traditional financial systems\n5. The importance of personal responsibility in adopting Bitcoin\n6. Comparisons between Bitcoin and traditional financial institutions like the Bank of England\n7. The need for user-friendly interfaces and coins that resonate with individuals\n8. The use of technical indicators to analyze Bitcoin trends\n9. Discussions about different camps within the Bitcoin community\n\nOverall, the messages reflect a strong belief in the potential of Bitcoin to revolutionize the financial industry and empower individuals to take control of their own wealth.', - data: [ - 7, 13, 14, 9, 51, 19, 11, 10, 3, 6, 12, 7, 8, 7, 14, 11, 19, 22, 7, 4, 11, 12, 3, 10, 9, 8, - 11, 9, 11, 5, 8, 11, 11, 7, 15, 7, 15, 10, 7, 6, 10, 5, 6, 9, 6, 4, 3, 18, 5, 10, 13, 11, - 12, 8, 3, - ], - }, - { - label: 'Lord help us', - topics: 'lord,serve,jesus,bloodline,gods', - description: - "The messages from twitter seem to revolve around themes of faith, power, and devotion to a higher power, specifically referencing the Holy Emperor and God. There is a strong emphasis on serving and obeying the will of the Holy Emperor, with warnings against being insolent or disrespectful. The messages also touch on the idea of eternal life through God and the importance of staying true to one's beliefs. Overall, the messages convey a sense of spiritual authority and the consequences of not aligning with the divine will.", - data: [ - 5, 10, 14, 8, 26, 11, 5, 5, 9, 3, 6, 3, 21, 4, 16, 6, 4, 17, 15, 17, 7, 10, 3, 17, 5, 16, - 12, 5, 17, 5, 9, 5, 3, 6, 20, 5, 28, 14, 9, 10, 16, 8, 6, 14, 8, 12, 7, 9, 5, 11, 7, 9, 3, - 14, 14, - ], - }, - { - label: 'AI', - topics: 'ais,productivity,agents,replace,workflows', - description: - 'The key topics discussed in the messages from twitter are:\n1. The importance and impact of AI in various industries, including finance, e-commerce, energy, and media.\n2. The potential of AI to revolutionize the economy and create wealth for everyone.\n3. The role of AI in reshaping traditional business models and job roles.\n4. The need for transparency and verification in online content creation.\n5. The risks and challenges associated with AI, including concerns about decentralization and AI alignment.\n6. The comparison of AI to historical technological advancements like electricity and the industrial revolution.\n7. The potential of AI to improve healthcare, entertainment, and other aspects of daily life.\n8. The use of AI in data collection and research methods.\n9. The collaboration between companies and open-source communities in advancing AI technology.\n10. The discussion of AI agents and their impact on white-collar job roles in the future.', - data: [ - 8, 38, 11, 9, 6, 4, 8, 8, 6, 23, 12, 9, 9, 5, 12, 6, 6, 6, 20, 10, 14, 10, 4, 13, 13, 4, 9, - 9, 6, 5, 5, 10, 12, 7, 8, 11, 5, 12, 9, 8, 9, 6, 8, 16, 6, 7, 11, 13, 12, 5, 12, 4, 5, 11, - 5, - ], - }, - { - label: 'Israel - Gaza', - topics: 'gaza,israel,jews,jewish,resolution', - description: - 'The messages from twitter are discussing various topics related to the conflict in Gaza, including accusations of genocide by Israel, criticism of Zionists, reports of Palestinian captives held by Israel, and the role of European Union in training Palestinian police officers. There are also mentions of antisemitism, the influence of Jews in the US, and the involvement of Russia and China in UN negotiations regarding Gaza stabilization. The messages reflect a range of opinions and emotions surrounding the ongoing conflict in the region.', - data: [ - 5, 12, 18, 11, 4, 4, 4, 6, 11, 14, 3, 5, 14, 3, 8, 11, 5, 11, 3, 5, 11, 8, 10, 9, 15, 14, 7, - 2, 4, 5, 17, 7, 7, 9, 11, 9, 7, 12, 18, 22, 5, 23, 12, 4, 6, 14, 11, 6, 4, 7, 9, 13, 12, 11, - 8, - ], - }, - { - label: 'FOMC and CPI', - topics: 'manufacturing,fomc,cpi,busy,marvel', - description: - 'The key topics discussed in the messages from twitter include the anticipation of a big week in the crypto industry, with mentions of green Tuesday, new details being shared, analyst calls, and the possibility of significant events happening. There is also excitement about the Ethereum ecosystem, upcoming events such as FOMC minutes and NVIDIA earnings, and market outlooks for various cryptocurrencies and stocks. Additionally, there are references to specific projects and opportunities in the crypto market, as well as discussions about upcoming schedules and events in the financial world.', - data: [ - 7, 6, 4, 7, 16, 4, 15, 9, 12, 5, 9, 17, 5, 4, 10, 2, 4, 5, 5, 9, 3, 4, 7, 8, 2, 4, 1, 7, 3, - 9, 7, 8, 13, 6, 8, 2, 3, 7, 8, 6, 10, 4, 6, 2, 4, 7, 5, 4, 5, 6, 4, 6, 135, 10, 3, - ], - }, - { - label: 'DevCon Argentina', - topics: 'buenos,aires,argentina,stakingsummit,efdevcon', - description: - "The key topics discussed in the messages from twitter are:\n1. Buenos Aires and Argentina being beautiful and ready for events like Devconnect and EFDevcon.\n2. The impact of market conditions on Uber liquidity in Buenos Aires.\n3. The excitement and anticipation for events and meetups in Buenos Aires, such as Devconnect and EFDevcon.\n4. The adoption of crypto in Argentina and its practical solutions to economic problems.\n5. The presence of various crypto and blockchain companies and teams in Buenos Aires for events and meetups.\n6. Recommendations for places to visit and food to try in Buenos Aires.\n7. Discussions about Argentina's economic story and potential for becoming investment grade.\n8. The involvement of key figures and companies in the crypto industry in events and discussions in Buenos Aires.", - data: [ - 3, 8, 22, 11, 9, 6, 28, 7, 13, 6, 6, 12, 11, 8, 12, 3, 6, 7, 10, 11, 9, 8, 11, 10, 5, 12, 6, - 11, 11, 4, 10, 8, 6, 5, 11, 4, 3, 3, 9, 3, 9, 4, 6, 12, 4, 7, 26, 8, 13, 3, 4, 5, 18, 5, 1, - ], - }, - { - label: 'Memecoins', - topics: 'memecoins,memes,memecoin,meme,mememaxfi', - description: - 'The messages from twitter are discussing various memecoins and meme communities within the crypto industry. Some key points mentioned include:\n- The Next 1000x memecoin is being closely watched.\n- Memes are seen as a fundamental aspect of the market.\n- The community plays a crucial role in the success of memecoins.\n- The Threadguy Murad stream is mentioned as marking a significant point for memecoins.\n- Kirkify and Quarterzips are highlighted as popular memes with associated coins.\n- Lumeme is mentioned as a potential opportunity for developers to launch a successful memecoin on the Stellar DEX.\n- The importance of utility and real activity in shaping meme-coin opportunities is emphasized.\n- The impact of memecoin communities on real-world change is recognized.\n- $DETECTIVE is highlighted as a popular meme in 2025.\n- MemeMaxFi is discussed as a dedicated memecoin trading layer designed to support the volatility and culture of the meme space.', - data: [ - 9, 4, 8, 6, 12, 10, 8, 8, 12, 5, 7, 4, 9, 8, 4, 1, 11, 9, 7, 2, 13, 7, 8, 9, 2, 6, 6, 6, 4, - 6, 101, 10, 5, 7, 7, 5, 4, 5, 2, 5, 5, 7, 4, 2, 5, 2, 8, 10, 8, 4, 6, 6, 6, 8, 6, - ], - }, - { - label: 'DeFi', - topics: 'katana,android,infinitlabs,defi,protocols', - description: - 'The messages from twitter highlight the ongoing growth and evolution of the DeFi (Decentralized Finance) industry. Key points include the continued development of DeFi projects like Gearbox and Hotstuff, the importance of accessible infrastructure for adoption, the need for advanced security frameworks, and the focus on transparency and safety in DeFi platforms like Solsticefi. There is also discussion about the need for innovation in DeFi beyond just high returns, with a focus on credit risk and user experience. Overall, the messages suggest that DeFi is maturing rapidly and facing challenges such as misaligned incentives and the need for mainstream adoption.', - data: [ - 4, 5, 13, 6, 7, 3, 8, 8, 9, 6, 2, 9, 12, 11, 16, 10, 15, 12, 5, 8, 8, 4, 8, 8, 12, 5, 5, 12, - 5, 7, 9, 9, 13, 6, 6, 9, 6, 15, 7, 8, 11, 3, 7, 6, 2, 9, 7, 8, 10, 5, 15, 6, 4, 8, 8, - ], - }, - { - label: 'ASTER', - topics: 'aster,machi,wealthgroup,128,cz', - description: - 'The key topics currently discussed in the crypto community on Twitter include the launch of Aster on Coinbase, its strong performance in the market, buybacks kicking in, expectations for future price movements, comparisons to other cryptocurrencies like Solana and Binance Coin, decentralized AI and finance trends, accumulation zones, ATH predictions, and the influence of key opinion leaders (KOLs) in the industry. There is also discussion about potential market manipulation, trading strategies, and warnings about potential price dumps and reversals. Overall, there is a lot of excitement and optimism surrounding Aster and its potential for growth in the crypto market.', - data: [ - 6, 5, 27, 7, 7, 11, 14, 8, 4, 8, 2, 4, 9, 5, 7, 7, 17, 7, 8, 3, 5, 4, 19, 3, 10, 7, 9, 13, - 20, 6, 8, 3, 3, 12, 7, 4, 5, 5, 2, 7, 8, 10, 9, 3, 2, 13, 4, 9, 13, 6, 3, 6, 8, 1, 3, - ], - }, - { - label: 'Hyperliquid', - topics: 'hyperliquid,hyperevm,hype,hyper,hyperliquidx', - description: - 'The hype around the $HYPE token and Hyperliquid is currently strong, with discussions about buy-backs, price levels, and potential growth. The community is excited about the potential of Hyperliquid and its various products, such as Perp Dex, stablecoin, borrow/lend protocol, and more. There is a focus on building a sustainable revenue model and providing value to HYPE holders. The platform is seen as a game-changer in the crypto/TradFi space, with endless possibilities for trading and investment. Overall, the sentiment is positive and optimistic about the future of Hyperliquid and the $HYPE token.', - data: [ - 14, 3, 9, 6, 3, 7, 3, 7, 5, 7, 3, 10, 5, 6, 10, 7, 10, 4, 7, 6, 9, 6, 9, 38, 4, 4, 9, 6, 8, - 8, 4, 8, 6, 4, 9, 8, 6, 9, 9, 7, 8, 1, 7, 4, 10, 9, 5, 5, 15, 12, 7, 7, 5, 1, 2, - ], - }, - { - label: 'Cloudflare downtime', - topics: 'outage,cloudflare,websites,affected,experiencing', - description: - 'The recent Cloudflare outage has caused widespread disruption across the internet, affecting major crypto platforms and highlighting the reliance of Web3 on Web2 infrastructure. While some protocols froze during the outage, others like @THORChain remained unaffected, sparking discussions about decentralization and the future of decentralized applications. The outage also emphasized the need to move away from dependencies on services like Cloudflare to prevent similar disruptions in the future. Overall, the incident serves as a reminder of the risks associated with relying on a single point of failure in the digital world.', - data: [ - 3, 4, 9, 8, 9, 5, 1, 4, 36, 4, 10, 8, 2, 2, 8, 11, 6, 4, 9, 9, 5, 5, 2, 5, 40, 4, 5, 5, 2, - 5, 4, 6, 2, 7, 31, 5, 2, 5, 3, 10, 3, 2, 10, 4, 1, 8, 6, 4, 2, 3, 5, 2, 8, 16, 4, - ], - }, - { - label: 'Bitcoin selloff', - topics: '90000,95000,briefly,falls,slipped', - description: - 'The key topic discussed in the messages from twitter on December 17th is the significant sell-off in Bitcoin, with the price falling below $93,000 to reach its lowest level since April. The messages also mention the volatility in the market, with Bitcoin trading above $90,000 and then falling below key support levels, leading to a market wipeout of over $700 billion. Additionally, there are discussions about Bitcoin shorts stacking up and betting on further crashes, as well as analysts predicting potential price movements towards $82K or even $66K. Overall, the sentiment in the messages seems to be cautious and focused on risk management in light of the market fluctuations.', - data: [ - 1, 4, 2, 5, 8, 20, 5, 3, 3, 2, 9, 2, 14, 35, 5, 27, 12, 4, 0, 1, 0, 8, 10, 1, 0, 1, 1, 1, 5, - 10, 2, 0, 4, 6, 1, 12, 12, 5, 2, 5, 3, 3, 8, 19, 4, 3, 2, 3, 2, 13, 1, 1, 7, 7, 0, - ], - }, - { - label: 'Prediction markets', - topics: 'kalshi,polymarket,prediction,pol,wong', - description: - "The unique Polymarket tool being discussed in the messages is the prediction markets platform. Users are discussing the potential of Polymarket to stop listing MetaDAO launches and focusing on other events. The platform is seen as a solid product that needs more attention from Polymarket. Additionally, Kalshi is mentioned as a platform heading towards zero, similar to FTX. Prediction markets are highlighted as a tool that not only generates financial incentives but also has a direct impact on people's actions on a massive scale. The messages also touch on the future potential of prediction markets and the dominance they are expected to have in narratives in the future. The partnership between Kalshi and Coinbase Custody to safeguard USDC reserves is also highlighted as a boost for regulated prediction markets. Overall, the messages showcase a growing interest and discussion around prediction markets and their potential impact on various industries.", - data: [ - 6, 6, 4, 3, 4, 3, 2, 1, 3, 5, 3, 3, 4, 3, 7, 4, 1, 4, 5, 3, 4, 4, 0, 5, 2, 9, 8, 5, 7, 33, - 6, 5, 5, 7, 13, 8, 44, 5, 7, 8, 6, 3, 4, 2, 7, 3, 7, 8, 5, 4, 4, 4, 1, 1, 4, - ], - }, - { - label: 'NVDA earnings', - topics: 'nvidias,nvidia,huang,jensen,earnings', - description: - "The key topics discussed in the messages from twitter regarding Nvidia are:\n1. Anticipation and excitement surrounding Nvidia's earnings report.\n2. Speculation about the impact of Nvidia's earnings on the financial markets.\n3. Concerns about Nvidia's performance and potential loss of momentum.\n4. Positive reactions to Nvidia's earnings results exceeding expectations and the subsequent rally in share prices.\n5. Mention of Nvidia's involvement in green efforts, specifically the use of hydrogen fuel cells at its headquarters.\n6. Recognition of Nvidia's influence on AI and crypto markets.\n7. Gratitude towards Nvidia for its positive impact on the market.", - data: [ - 7, 5, 3, 14, 7, 4, 3, 5, 4, 1, 9, 5, 7, 35, 3, 9, 2, 9, 1, 4, 2, 2, 4, 4, 3, 3, 2, 3, 3, 6, - 1, 8, 4, 16, 7, 0, 5, 3, 4, 23, 14, 5, 8, 5, 4, 3, 2, 5, 2, 2, 4, 5, 4, 9, 4, - ], - }, - { - label: 'Whales selling', - topics: 'whale,whales,unusual,deposited,unrealized', - description: - 'The messages from twitter suggest that there is significant activity from whales in the crypto market. Whales are large holders of cryptocurrencies who have the power to influence prices with their trading decisions. The messages indicate that whales are actively buying and selling large amounts of Bitcoin and Ethereum, with some taking bearish stances and others accumulating more assets.\n\nThere is speculation about OG whales (original whales) driving market movements, as well as concerns about the impact of whale activity on smaller holders. Some are questioning whether developers can intervene to address the dominance of whales in the market.\n\nOverall, the messages highlight the ongoing influence of whales in the crypto industry and the potential implications for other market participants.', - data: [ - 14, 4, 2, 6, 6, 4, 13, 3, 6, 5, 4, 3, 7, 5, 1, 3, 4, 3, 0, 2, 2, 1, 7, 4, 2, 1, 0, 2, 6, 3, - 7, 4, 5, 11, 5, 4, 3, 2, 3, 6, 0, 10, 8, 4, 2, 4, 5, 1, 2, 3, 4, 7, 3, 88, 2, - ], - }, - { - label: 'Monad TGE', - topics: 'monad,mon,ico,25b,fdv', - description: - "The key topic discussed in the messages from twitter is the Monad token sale, which is officially live on Coinbase. The token sale has already seen significant interest, with over $53M of the available $187.5M sold within the first hour. The project is valued at $2.5B and is backed by Dragonfly & Paradigm, making it a serious competitor to Ethereum. The sale is open to users in 80+ countries, including the U.S. and has generated a lot of buzz within the crypto community. Participants are debating whether to invest in the Monad ICO or other options like USDAI, with some warning about potential risks and others seeing it as a high-reward opportunity. Overall, the community is excited about the launch of Monad Mainnet and the potential for early investors to benefit from the project's success.", - data: [ - 9, 3, 1, 3, 8, 2, 5, 1, 5, 2, 4, 6, 1, 5, 1, 3, 6, 6, 6, 12, 4, 4, 2, 2, 6, 8, 10, 5, 4, 8, - 5, 26, 8, 3, 2, 3, 11, 15, 4, 3, 12, 2, 6, 4, 5, 5, 5, 5, 11, 5, 6, 6, 4, 7, 4, - ], - }, - { - label: 'Art', - topics: 'painting,artist,artwork,art,artists', - description: - 'The messages from twitter are mainly focused on various aspects of art, including generative art projects, NFTs, tutorials on drawing, different art styles, and discussions about the value of art. There are mentions of creating, collecting, and appreciating art in different forms such as painting, sculpture, and illustration. The messages also touch on the intersection of art and technology, such as using Web3 for creating art. Overall, the crypto community on Twitter seems to be actively engaged in discussions about art and its various forms.', - data: [ - 3, 2, 53, 5, 3, 4, 3, 7, 4, 5, 9, 4, 7, 11, 5, 5, 0, 4, 4, 1, 3, 5, 2, 9, 3, 2, 7, 7, 7, 3, - 6, 6, 7, 2, 6, 3, 5, 5, 4, 3, 1, 7, 3, 5, 6, 3, 2, 2, 4, 3, 7, 5, 3, 5, 1, - ], - }, - { - label: 'SOL price', - topics: 'sol,130,140,139,reduction', - description: - "The key topics discussed in the messages from twitter are:\n1. Discussion about the price of Solana (SOL) and its technology.\n2. Speculation on the potential price movements of SOL, with some predicting it to hit $130 in November.\n3. Analysis of SOL's performance relative to other coins and its potential for a new all-time high.\n4. Mention of a possible death cross formation in SOL's price.\n5. Supportive community of SOL investors who have been through market fluctuations.\n6. Technical analysis of SOL's price movements and potential bounce levels.\n7. Calls for investment in SOL for potential high returns in the future.\n8. Discussion about the bullish sentiment towards SOL and its potential for profit.\n9. Mention of a specific trading group (@AlphaAiGroup) making calls on SOL's price movements.\n10. Speculation on the future price of SOL and potential for significant returns on investment.", - data: [ - 4, 3, 5, 5, 3, 9, 5, 4, 4, 2, 1, 4, 4, 10, 2, 9, 3, 1, 5, 5, 4, 2, 6, 1, 2, 6, 5, 6, 6, 8, - 7, 2, 3, 5, 5, 3, 10, 0, 7, 4, 5, 3, 9, 26, 5, 10, 5, 8, 4, 6, 5, 6, 3, 1, 5, - ], - }, - { - label: 'ETH price', - topics: '3000,3500,3k,28k,3100', - description: - 'The current discussion on Ethereum in the crypto community revolves around its price dropping below $2900. Despite the recent volatility and "carnage" in the market, Ethereum has managed to stay above $1000, leading to speculation about its future performance. Traders are closely monitoring key support levels, such as $2800-$2900 and $3000, as well as resistance levels like $3200 and $3500. There is optimism for a potential rally towards $3400-$3600 if Ethereum can reclaim certain levels. Institutional investors like BlackRock, Vanguard, JPMorgan, Schwab, and Ark are reportedly accumulating ETH, indicating strong conviction in the asset. Overall, the sentiment is mixed, with some predicting a potential bounce towards $3300-$3500, while others warn of a possible drop below $2800-$2900.', - data: [ - 5, 1, 3, 3, 2, 9, 2, 5, 5, 2, 3, 4, 6, 2, 13, 11, 7, 4, 3, 4, 2, 5, 14, 6, 2, 5, 4, 9, 10, - 4, 4, 2, 6, 3, 3, 4, 10, 2, 4, 9, 2, 3, 11, 6, 4, 10, 6, 5, 3, 6, 3, 1, 7, 5, 2, - ], - }, - ], -} diff --git a/priv/repo/major_topics_seed/data-99.json b/priv/repo/major_topics_seed/data-99.json deleted file mode 100644 index 984671378f..0000000000 --- a/priv/repo/major_topics_seed/data-99.json +++ /dev/null @@ -1 +0,0 @@ -{"labels":["20.11.25","21.11.25","21.11.25","21.11.25","21.11.25","21.11.25","21.11.25","21.11.25","22.11.25","22.11.25","22.11.25","22.11.25","22.11.25","22.11.25","22.11.25","22.11.25","23.11.25","23.11.25","23.11.25","23.11.25","23.11.25","23.11.25","23.11.25","23.11.25","24.11.25","24.11.25","24.11.25","24.11.25","24.11.25","24.11.25","24.11.25","24.11.25","25.11.25","25.11.25","25.11.25","25.11.25","25.11.25","25.11.25","25.11.25","25.11.25","26.11.25","26.11.25","26.11.25","26.11.25","26.11.25","26.11.25","26.11.25","26.11.25","27.11.25","27.11.25","27.11.25","27.11.25","27.11.25","27.11.25","27.11.25"],"datasets":[{"label":"ZEC price","topics":"zec,zcash,vaneck,reliance,maxis","description":"The key topics currently being discussed in the crypto community on Twitter regarding Zcash (ZEC) include:\n1. Bullish sentiment towards Zcash and its potential for growth, with mentions of chainlink, zcash rivian, and the $zyield program.\n2. Concerns about \"splitting the vote\" for Zcash when Bitcoin (BTC) needs unity.\n3. Speculation about potential wave correction patterns for Zcash.\n4. Analysis of Zcash's price movements, with predictions of a pump and potential resistance levels.\n5. Discussion of the Z-Asset Standard and its implications for Zcash.\n6. Criticism of Zcash CEO's actions regarding friendly and unfriendly forks.\n7. Traders sharing their experiences with Zcash trades, including losses and gains.\n8. Speculation about Zcash's future price movements and potential scenarios.\n9. Analysis of the recent Zcash rally and rebound in price.\n10. Mention of a trader closing a Zcash long position with a significant loss and opening new short and long positions on Zcash and Bitcoin.\n\nOverall, the sentiment towards Zcash appears to be mixed, with some traders expressing optimism about its potential for growth while others are more cautious about its price movements and potential risks.","data":[5,9,9,9,8,14,16,5,12,11,10,11,7,12,13,6,13,10,9,10,8,14,6,6,7,12,10,15,10,14,7,9,10,9,10,11,20,13,7,4,11,13,29,11,11,18,9,16,8,10,11,7,9,8,74]},{"label":"Memecoins","topics":"memecoin,memecoins,memes,meme,mememaxfi","description":"The meme contest for $same is live and people are encouraged to get involved. Memecoins are being discussed, with some questioning if they have been replaced. There is talk about meme trading and the transition of equity and debt markets into extensions of the entertainment industry. The importance of asset selection in the meme coin market is emphasized, with a focus on good memecoins making new all-time highs. Meme-coin options are dominating the market, and there is excitement about the potential for high volatility. The community is discussing various meme projects and their sustainability. Overall, the meme culture in the crypto industry is alive and well, with a mix of humor, speculation, and excitement surrounding meme coins and trading.","data":[5,4,8,6,7,6,10,9,10,6,11,8,14,3,6,13,8,10,4,12,6,9,9,9,9,12,11,9,7,11,116,5,10,5,5,10,5,8,4,10,11,8,2,6,11,6,10,15,7,11,6,7,5,7,6]},{"label":"AI","topics":"ais,workflows,assistant,sentient,productivity","description":"The messages from twitter focus on the impact of AI on various industries, including finance, healthcare, and manufacturing. There is a discussion about the potential dominance of AI-based learning in the coming decade and the importance of using AI to increase productivity and reduce costs. The messages also touch on the dangers of not understanding how AI works and the potential job displacement caused by AI automation. Additionally, there is mention of the need for humans to adapt their skills to survive the AI transition. Overall, the messages highlight the growing influence of AI in various sectors and the need for individuals and businesses to adapt to this technological shift.","data":[6,34,22,8,8,6,7,5,8,17,9,11,10,4,18,8,13,9,8,5,6,8,6,18,11,9,8,8,3,8,5,12,11,7,16,7,6,14,10,10,6,9,5,8,8,18,5,11,7,10,9,6,4,12,7]},{"label":"China's impact on crypto","topics":"chinas,china,taiwan,xi,chinese","description":"The messages from twitter highlight various discussions and concerns related to China's influence and activities in the crypto industry and beyond. There are mentions of Chinese immigrants flooding the United States, Chinese ASICs having backdoors in Bitcoin, potential deals between the US and China regarding technology sales, and China's increasing dominance in Bitcoin mining despite bans.\n\nAdditionally, there are references to China's advancements in AI technology, concerns about China's crackdown on religious freedom, and the impact of Chinese influence on global power dynamics. The messages also touch on the growing anti-Chinese sentiment in countries like Japan and South Korea.\n\nOverall, the messages suggest a complex and multifaceted relationship between China and the rest of the world, particularly in the context of technology, geopolitics, and economic power.","data":[5,18,10,14,4,6,9,15,12,14,6,4,8,10,3,12,12,5,3,6,6,5,12,14,14,7,7,3,2,4,19,5,9,15,8,11,5,11,5,24,31,15,8,17,16,8,10,3,6,3,8,6,10,10,7]},{"label":"Thanksgiving","topics":"turkey,dinner,cousin,turkeys,pie","description":"The messages from twitter cover a wide range of topics related to Thanksgiving, including discussions about traditional Thanksgiving meals, hosting Thanksgiving dinner with crypto profits, bringing up Bitcoin and cryptocurrency at the dinner table, and even controversial opinions about brisket being the meat of choice for Thanksgiving. There are also mentions of Thanksgiving recipes, entertainment glitches at the dinner table, and the history of Thanksgiving observance dates.\n\nAdditionally, there are references to Thanksgiving-themed events such as the Turkey Bowl and the importance of being mindful of the nutritional content of traditional Thanksgiving foods like turkey.\n\nOverall, the messages reflect a mix of humor, personal anecdotes, and discussions about various aspects of Thanksgiving within the context of the crypto industry and social media community.","data":[4,4,11,6,10,11,3,6,11,4,19,4,20,15,8,17,14,15,6,8,9,11,5,6,4,7,10,9,6,4,4,3,2,8,9,6,7,6,13,14,11,4,10,8,3,15,32,5,10,24,4,10,11,6,14]},{"label":"Black friday","topics":"black,discounts,friday,deals,metal","description":"The key topics discussed in the messages from twitter related to Black Friday include:\n- Early start of Black Friday sales\n- Various deals and discounts offered by different companies\n- Recommendations on what to buy during Black Friday\n- Importance of budgeting and not going into debt\n- Promotions and promo codes for trading groups\n- Discounts on trading memberships and subscriptions\n- Learning opportunities for trading automation\n- Sales and discounts on cryptocurrency-related products and services\n- Recommendations for preparing for Black Friday sales\n- Limited time offers and deadlines for discounts\n\nOverall, the messages highlight the excitement and anticipation surrounding Black Friday sales in the crypto industry, with a focus on deals, discounts, and promotions available to customers.","data":[9,8,4,3,31,6,8,17,12,4,6,16,10,8,4,4,7,7,5,8,11,13,4,4,7,5,7,9,8,3,4,6,9,6,5,3,11,5,8,3,27,2,9,8,5,3,1,7,8,4,7,8,6,8,3]},{"label":"Israel - Palestine","topics":"gaza,israel,israeli,jewish,killed","description":"The messages from twitter contain a mix of anti-Semitic and anti-Israel sentiments, with mentions of Zionists, Hamas, Hezbollah, and Israeli actions in Palestine. There are also references to conspiracy theories and accusations of corruption within Israeli political parties. The messages reflect a deep-seated animosity towards Israel and Jewish people, with some messages promoting harmful stereotypes and misinformation. It is important to approach such content critically and with an understanding of the complex political dynamics in the region.","data":[4,6,18,9,2,3,5,16,6,13,6,2,12,1,0,9,8,4,4,1,8,7,3,7,19,4,5,5,6,1,8,8,6,8,9,7,4,7,9,11,9,8,9,14,7,12,8,3,1,3,3,7,3,5,8]},{"label":"Devconnect","topics":"aires,buenos,devconnect,argentina,devcon","description":"The messages from twitter about Devconnect ARG in Argentina highlight the excitement and success of the event. Attendees discussed various topics such as the impact of Ethereum on trading, the underrated dish of Mollejas, and the positive outlook for Argentina's future. The event saw a large turnout with attendees from around the world, showcasing the global interest in cryptocurrency and blockchain technology. The closing happy hour was a chance for attendees to celebrate and network, reflecting the vibrant and innovative atmosphere of Devconnect. Overall, the event was a success and left a positive impression on those who attended.","data":[3,9,7,6,11,9,7,7,5,11,3,8,13,4,10,7,9,5,2,3,11,8,8,12,7,2,4,2,9,3,7,4,8,7,5,3,3,5,3,7,5,0,6,6,5,12,5,8,1,4,4,3,11,8,6]},{"label":"Bitcoin vs fiat","topics":"fiat,finite,monetary,salt,currency","description":"The messages from twitter highlight the importance and potential of Bitcoin as the future of money. It is described as the universal language of capital, a sovereign asset that is not controlled by corporations or governments. The messages emphasize the scarcity and decentralization of Bitcoin, making it a valuable and secure asset for long-term wealth protection. There is also a discussion about the evolution of Bitcoin and its role in forcing regulators to accept digital bearer assets. Overall, the messages convey a strong belief in the power and potential of Bitcoin as a transformative asset in the financial industry.","data":[3,2,11,9,29,5,2,3,7,5,7,4,12,3,13,2,9,6,4,8,6,2,2,13,12,3,6,1,3,6,2,12,12,7,8,7,5,3,7,5,4,1,2,11,5,0,3,9,3,2,12,5,6,5,6]},{"label":"Gambling","topics":"poker,gambling,casino,betting,addiction","description":"The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Gambling addiction and betting on various platforms like Polymarket and sports betting.\n2. The rise of prediction markets and casino-style platforms in the crypto space.\n3. The concept of a \"Creator Casino\" where players become founders and founders become the house.\n4. The impact of gambling addiction on individuals and families, including personal stories of addiction.\n5. The use of crypto platforms like Gamblr to make on-chain wagers more clean and deliberate.\n6. The influence of advisors and celebrities on gambling websites and potential government policy changes.\n7. The excitement around events like the CS2 Major and impromptu pick-em contests in Discord.\n8. The potential for big wins and losses in the crypto gambling space, with users sharing their experiences and strategies.\n\nOverall, the discussion around gambling and betting in the crypto industry is diverse, ranging from personal experiences with addiction to strategies for making successful bets on various platforms.","data":[5,3,2,4,42,9,4,13,4,3,6,6,6,5,3,6,2,18,10,4,5,6,6,2,5,2,3,6,6,5,4,2,3,9,7,17,7,3,2,3,6,5,1,12,5,6,7,7,6,1,5,3,4,9,3]},{"label":"Twitter's location doxxing","topics":"doxxing,location,doxxed,locations,profiles","description":"The messages from twitter are discussing the new feature on platform X that displays the country or region where an account is based. Some users are concerned about privacy and potential doxxing, while others see it as a way to increase transparency and combat fraud. Vitalik Buterin has raised privacy concerns about the feature, stating that it reveals user locations without consent. Some users are suggesting ways to avoid having their exact location revealed, such as using VPNs or selecting to disclose only their continent or region. Overall, the reactions to the new feature are mixed, with some seeing it as a positive step towards transparency and others expressing concerns about privacy and potential negative consequences.","data":[14,5,4,1,3,3,3,5,2,3,19,6,1,19,3,9,11,6,6,4,4,1,1,2,1,4,7,25,6,4,1,3,15,7,6,2,9,4,6,11,8,2,8,4,3,3,1,8,3,3,10,3,4,4,4]},{"label":"US CPI data","topics":"ppi,inflation,prior,employment,03","description":"The key topics discussed in the messages from twitter are:\n- US Labor Department announcing the release of November CPI data on December 18\n- US decision to no longer release Q3 GDP report\n- 21e8 building a US manufacturing hub in Louisiana with no capex or opex on balance sheet\n- US ADP employment change\n- US inflation cooling down\n- DallasFed Services Index rising\n- Fiscal policy and growth in Europe\n- Calls for large interest rate cuts by Fed\n- Producer inflation cooling down\n- UK's Chancellor Reeves deciding against cutting VAT on energy bills\n- Modest increase in sales at US retailers and restaurants\n- Discrepancy in reported inflation rates\n- ATL Fed's estimate for Q3 GDP\n- Delayed August wholesale inventories and sales\n- Central bankers' changing stance on inflation\n- US PPI and Core PPI data drop\n- Atlanta Fed's GDPNow model\n- US S&P manufacturing, services, and composite PMI\n- Real story behind retail sales and PPI numbers\n- Inflation expectations below long term average\n\nOverall, the messages discuss various economic indicators, policy decisions, and market impacts related to the crypto industry.","data":[1,7,5,4,2,1,17,2,9,17,3,17,1,13,5,2,5,1,1,6,4,5,3,28,4,4,1,2,3,6,3,10,2,3,5,2,6,1,6,26,15,12,2,3,3,4,2,2,3,2,4,7,4,4,2]},{"label":"Airdrops","topics":"kinetiq,hyperevm,airdrops,airdrop,eligibility","description":"The key topics discussed in the messages from @maverick23NFT and other users in the crypto community include:\n1. Airdrops: There are mentions of various airdrops, including Opensea token airdrop, $KNTQ airdrop, $OPEN stock warrants airdrop, Hyperliquid airdrops, and more. Users are excited about receiving airdrops and discussing their experiences with them.\n2. Token Updates: Users are discussing updates and developments related to different tokens such as $sol, $KNTQ, $PUNKSR, $BLUFF, $S, $SOON, $CHZ, and $IN. They are sharing information about token performance, events, and potential opportunities.\n3. Airdrop Participation: There are mentions of users participating in airdrops, staking tokens, and claiming rewards. Some users express concerns about missing out on airdrops due to lack of announcements or information.\n4. Community Engagement: Users are engaging with each other, mentioning other users, projects, and events in the crypto community. They are sharing insights, opinions, and experiences related to airdrops and tokens.\n5. Speculation and Analysis: There is speculation about token purchases, market trends, and potential strategies for maximizing rewards from airdrops. Users are analyzing the behavior of other participants and making decisions based on their observations.\n6. Platform Updates: Users are discussing updates and features of different platforms such as Opensea, Hyperliquid, Airtasker, and Binance Alpha. They are sharing information about platform raises, events, and opportunities for users.\n7. Future Airdrops: There is anticipation and discussion about upcoming airdrops, events, and opportunities in the crypto industry. Users are looking forward to potential rewards and benefits from participating in future airdrops.","data":[3,35,6,7,4,7,1,3,7,6,8,6,6,12,7,5,5,1,2,3,5,5,4,2,3,6,3,5,9,3,4,4,7,9,8,12,3,5,8,3,3,5,1,3,4,3,6,6,6,3,1,7,2,2,7]},{"label":"DeFi","topics":"eigenlayer,defi,pts,defai,lending","description":"The key topics discussed in the messages from twitter are:\n1. DeFi stability and the future of Real assets with blockchain transparency\n2. The importance of sustainable yield sources in DeFi\n3. The strategic success of Morpho's DeFi mullet strategy\n4. The need for clarity on DeFi credit protocols and their classification under investment contracts\n5. The shift of traditional finance players towards entering DeFi\n6. The innovation and efficiency of Ensofi_xyz's unified dashboard for managing assets in DeFi\n7. The importance of stable money in DeFi for a strong foundation\n8. The support for accelerating Solana's path to terminal inflation rate by DeFi Development Corp\n9. The importance of DEXs, LSDs, Stablecoins, and Derivatives in generating fees and sustaining DeFi\n10. The introduction of BubbleSwap + BubbleAI on Shido Network for DeFi meets AI integration\n11. The independent DeFi protocols under Each Leaf with their unique product offerings and value capture mechanisms\n12. New York's push for a zero-emissions grid by 2040 and the role of Dispatchable Emissions-Free Resources (DEFR) in achieving this goal.","data":[2,4,7,4,4,3,8,3,5,8,4,4,2,7,6,2,9,15,5,3,2,6,4,12,6,10,6,6,2,8,9,6,4,7,3,2,5,7,3,4,6,3,3,4,4,6,2,4,6,6,9,3,5,6,4]},{"label":"Privacy and encryption","topics":"confidentiality,privacy,surveillance,encrypted,freedom","description":"The messages from twitter focus heavily on the importance of privacy in the crypto industry. Key points include the idea that privacy is essential for personal and digital rights, the need for privacy to be programmable by default, and the concept of privacy as a form of resistance against mass surveillance. There is also discussion about the role of privacy in cryptocurrency transactions and the importance of privacy projects in the industry.\n\nOverall, the messages emphasize the significance of privacy in the crypto space and highlight the efforts of various projects and individuals to prioritize and enhance privacy within the ecosystem.","data":[0,4,5,10,8,1,3,5,4,6,8,6,0,1,8,5,5,7,5,3,3,4,2,5,7,1,5,4,3,7,8,6,5,8,4,2,40,10,3,8,4,8,1,0,5,4,5,4,0,9,3,5,6,3,2]},{"label":"BTC price","topics":"h4,4hr,4h,1d,91k","description":"The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Bitcoin's current resistance levels: There is a lot of discussion about Bitcoin facing resistance around the $88,000-$90,000 zone. If Bitcoin doesn't break above this level soon, there is a possibility of dropping towards a new monthly low.\n\n2. Potential price movements for Bitcoin: Analysts are predicting various scenarios for Bitcoin's price, with some suggesting a fall towards $79k or even $76k, while others are looking for a bounce towards $100k or even $110k if certain support levels hold.\n\n3. Accumulation territory for Bitcoin: Some traders are suggesting that Bitcoin has entered accumulation territory, with short-term holders experiencing losses and the market potentially reacting at certain key levels.\n\n4. Technical analysis and resistance levels: Traders are analyzing technical charts and key resistance levels, such as the 91k zone and the 96-97k range, to make informed trading decisions.\n\nOverall, the sentiment in the crypto community seems to be cautious optimism, with traders closely monitoring Bitcoin's price movements and key levels to determine the next potential direction for the market.","data":[12,0,5,3,6,26,4,4,6,5,7,5,1,7,0,9,7,2,1,4,1,4,8,4,3,3,8,7,3,5,3,1,2,1,7,3,11,1,12,5,4,4,6,2,1,10,6,2,3,11,7,2,3,3,3]},{"label":"MON price","topics":"mon,010,presale,ico,dumped","description":"The key topics currently being discussed in the crypto community on Twitter regarding $MON include:\n1. Speculation on whether $MON will cause a maximum price increase and if it will reach $0.084 or higher.\n2. Mixed opinions on whether to invest in $MON, with some users yeeting half of their holdings while others believe it will make them rich.\n3. Observations of price movements and predictions of potential gains, with some users claiming it will 100x from its current low.\n4. Concerns about potential market manipulation, with suspicions of whales unloading $MON and impacting other altcoins.\n5. Speculation on the influence of Coinbase, as $MON is owned by the exchange, and predictions of potential price increases.\n6. Warnings of a potential market dump and advice to stay safe and cautious.\n7. Discussions on the involvement of bots in pumping and dumping coins, particularly $MON.\n8. Predictions of positive price action for $MON due to Coinbase's stake in its success, despite concerns about fundamentals and real value.\n9. Observations of significant gains for those who invested in $MON, despite the overall market conditions.\n10. Overall, there is a mix of excitement, skepticism, and caution surrounding $MON and its potential future performance in the crypto market.","data":[8,3,1,7,1,7,6,2,6,4,4,1,1,2,1,5,1,3,1,7,4,5,4,3,3,3,8,5,4,2,2,58,3,5,1,1,12,10,2,1,3,4,4,5,3,1,5,5,2,9,2,2,4,1,5]},{"label":"ETF outflows","topics":"outflows,outflow,inflows,etfs,inflow","description":"The key topics discussed in the messages from twitter are:\n- Record-breaking Bitcoin ETF volume\n- Ethereum ETF outflows and inflows\n- Bitcoin ETF net inflows and outflows\n- Digital asset investment products outflows\n- XRP funds bucking the trend with inflows\n- Massive BTC outflows from exchanges\n- Bitcoin ETFs hitting record volume\n- Drawdowns in Bitcoin ETF flows\n- ETH ETFs turning positive\n- Solana ETF inflows\n- Rotation in ETF flows\n- US spot ETFs net inflows\n- Institutional capital flowing into ETH\n- Altcoins attracting fresh capital\n\nOverall, the messages highlight the volatility and trends in ETF flows, with a focus on Bitcoin and Ethereum, as well as other digital assets like XRP and Solana.","data":[3,2,8,1,12,2,2,4,3,4,7,2,4,2,5,5,16,5,0,0,3,2,6,9,3,4,4,2,3,3,1,2,4,1,22,1,4,1,10,3,12,9,2,7,28,3,1,1,2,1,4,6,4,1,2]},{"label":"Trump's impact on crypto","topics":"donald,tariff,potus,realdonaldtrump,election","description":"President Trump has issued a statement about potentially eliminating income tax due to tariff proceeds. He also mentioned that by the end of the year, there will be $21 trillion invested in the US, which will make the US dollar stronger. Additionally, there are speculations about potential buying opportunities in Trump Media despite recent losses.","data":[3,6,7,4,4,6,4,4,3,4,6,1,6,6,4,4,4,7,1,12,4,8,5,1,5,4,7,3,5,4,2,2,5,4,4,3,9,2,6,3,11,11,0,1,1,4,3,5,6,4,2,4,6,6,5]},{"label":"December rate cuts","topics":"odds,cut,fomc,williams,71","description":"The key topic currently being discussed in the crypto industry on social media platforms is the likelihood of a rate cut by the Federal Reserve in December. Various sources, such as Polymarket and Fed fund futures, are indicating high probabilities of a rate cut, ranging from 70% to as high as 85%. The market is reacting to these predictions, with some speculating that a rate cut could lead to a bullish trend in the markets. However, there is also uncertainty and division among officials, with some suggesting that a rate cut may not be necessary. Overall, the market is closely monitoring the situation as the FOMC meeting approaches in 13 days, and the outcome of a rate cut decision could have significant implications for market trends and investor sentiment.","data":[4,1,2,1,3,5,0,18,2,0,26,18,1,2,6,3,3,3,0,3,1,4,1,1,2,0,4,1,2,11,3,7,0,12,0,0,12,3,32,0,3,1,3,2,1,2,0,4,2,1,2,1,4,5,0]}]} \ No newline at end of file diff --git a/priv/repo/major_topics_seed/data-99.ts b/priv/repo/major_topics_seed/data-99.ts deleted file mode 100644 index 92c32eb519..0000000000 --- a/priv/repo/major_topics_seed/data-99.ts +++ /dev/null @@ -1,264 +0,0 @@ -export const NARRATIVES = { - labels: [ - '20.11.25', - '21.11.25', - '21.11.25', - '21.11.25', - '21.11.25', - '21.11.25', - '21.11.25', - '21.11.25', - '22.11.25', - '22.11.25', - '22.11.25', - '22.11.25', - '22.11.25', - '22.11.25', - '22.11.25', - '22.11.25', - '23.11.25', - '23.11.25', - '23.11.25', - '23.11.25', - '23.11.25', - '23.11.25', - '23.11.25', - '23.11.25', - '24.11.25', - '24.11.25', - '24.11.25', - '24.11.25', - '24.11.25', - '24.11.25', - '24.11.25', - '24.11.25', - '25.11.25', - '25.11.25', - '25.11.25', - '25.11.25', - '25.11.25', - '25.11.25', - '25.11.25', - '25.11.25', - '26.11.25', - '26.11.25', - '26.11.25', - '26.11.25', - '26.11.25', - '26.11.25', - '26.11.25', - '26.11.25', - '27.11.25', - '27.11.25', - '27.11.25', - '27.11.25', - '27.11.25', - '27.11.25', - '27.11.25', - ], - datasets: [ - { - label: 'ZEC price', - topics: 'zec,zcash,vaneck,reliance,maxis', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding Zcash (ZEC) include:\n1. Bullish sentiment towards Zcash and its potential for growth, with mentions of chainlink, zcash rivian, and the $zyield program.\n2. Concerns about \"splitting the vote\" for Zcash when Bitcoin (BTC) needs unity.\n3. Speculation about potential wave correction patterns for Zcash.\n4. Analysis of Zcash's price movements, with predictions of a pump and potential resistance levels.\n5. Discussion of the Z-Asset Standard and its implications for Zcash.\n6. Criticism of Zcash CEO's actions regarding friendly and unfriendly forks.\n7. Traders sharing their experiences with Zcash trades, including losses and gains.\n8. Speculation about Zcash's future price movements and potential scenarios.\n9. Analysis of the recent Zcash rally and rebound in price.\n10. Mention of a trader closing a Zcash long position with a significant loss and opening new short and long positions on Zcash and Bitcoin.\n\nOverall, the sentiment towards Zcash appears to be mixed, with some traders expressing optimism about its potential for growth while others are more cautious about its price movements and potential risks.", - data: [ - 5, 9, 9, 9, 8, 14, 16, 5, 12, 11, 10, 11, 7, 12, 13, 6, 13, 10, 9, 10, 8, 14, 6, 6, 7, 12, - 10, 15, 10, 14, 7, 9, 10, 9, 10, 11, 20, 13, 7, 4, 11, 13, 29, 11, 11, 18, 9, 16, 8, 10, 11, - 7, 9, 8, 74, - ], - }, - { - label: 'Memecoins', - topics: 'memecoin,memecoins,memes,meme,mememaxfi', - description: - 'The meme contest for $same is live and people are encouraged to get involved. Memecoins are being discussed, with some questioning if they have been replaced. There is talk about meme trading and the transition of equity and debt markets into extensions of the entertainment industry. The importance of asset selection in the meme coin market is emphasized, with a focus on good memecoins making new all-time highs. Meme-coin options are dominating the market, and there is excitement about the potential for high volatility. The community is discussing various meme projects and their sustainability. Overall, the meme culture in the crypto industry is alive and well, with a mix of humor, speculation, and excitement surrounding meme coins and trading.', - data: [ - 5, 4, 8, 6, 7, 6, 10, 9, 10, 6, 11, 8, 14, 3, 6, 13, 8, 10, 4, 12, 6, 9, 9, 9, 9, 12, 11, 9, - 7, 11, 116, 5, 10, 5, 5, 10, 5, 8, 4, 10, 11, 8, 2, 6, 11, 6, 10, 15, 7, 11, 6, 7, 5, 7, 6, - ], - }, - { - label: 'AI', - topics: 'ais,workflows,assistant,sentient,productivity', - description: - 'The messages from twitter focus on the impact of AI on various industries, including finance, healthcare, and manufacturing. There is a discussion about the potential dominance of AI-based learning in the coming decade and the importance of using AI to increase productivity and reduce costs. The messages also touch on the dangers of not understanding how AI works and the potential job displacement caused by AI automation. Additionally, there is mention of the need for humans to adapt their skills to survive the AI transition. Overall, the messages highlight the growing influence of AI in various sectors and the need for individuals and businesses to adapt to this technological shift.', - data: [ - 6, 34, 22, 8, 8, 6, 7, 5, 8, 17, 9, 11, 10, 4, 18, 8, 13, 9, 8, 5, 6, 8, 6, 18, 11, 9, 8, 8, - 3, 8, 5, 12, 11, 7, 16, 7, 6, 14, 10, 10, 6, 9, 5, 8, 8, 18, 5, 11, 7, 10, 9, 6, 4, 12, 7, - ], - }, - { - label: "China's impact on crypto", - topics: 'chinas,china,taiwan,xi,chinese', - description: - "The messages from twitter highlight various discussions and concerns related to China's influence and activities in the crypto industry and beyond. There are mentions of Chinese immigrants flooding the United States, Chinese ASICs having backdoors in Bitcoin, potential deals between the US and China regarding technology sales, and China's increasing dominance in Bitcoin mining despite bans.\n\nAdditionally, there are references to China's advancements in AI technology, concerns about China's crackdown on religious freedom, and the impact of Chinese influence on global power dynamics. The messages also touch on the growing anti-Chinese sentiment in countries like Japan and South Korea.\n\nOverall, the messages suggest a complex and multifaceted relationship between China and the rest of the world, particularly in the context of technology, geopolitics, and economic power.", - data: [ - 5, 18, 10, 14, 4, 6, 9, 15, 12, 14, 6, 4, 8, 10, 3, 12, 12, 5, 3, 6, 6, 5, 12, 14, 14, 7, 7, - 3, 2, 4, 19, 5, 9, 15, 8, 11, 5, 11, 5, 24, 31, 15, 8, 17, 16, 8, 10, 3, 6, 3, 8, 6, 10, 10, - 7, - ], - }, - { - label: 'Thanksgiving', - topics: 'turkey,dinner,cousin,turkeys,pie', - description: - 'The messages from twitter cover a wide range of topics related to Thanksgiving, including discussions about traditional Thanksgiving meals, hosting Thanksgiving dinner with crypto profits, bringing up Bitcoin and cryptocurrency at the dinner table, and even controversial opinions about brisket being the meat of choice for Thanksgiving. There are also mentions of Thanksgiving recipes, entertainment glitches at the dinner table, and the history of Thanksgiving observance dates.\n\nAdditionally, there are references to Thanksgiving-themed events such as the Turkey Bowl and the importance of being mindful of the nutritional content of traditional Thanksgiving foods like turkey.\n\nOverall, the messages reflect a mix of humor, personal anecdotes, and discussions about various aspects of Thanksgiving within the context of the crypto industry and social media community.', - data: [ - 4, 4, 11, 6, 10, 11, 3, 6, 11, 4, 19, 4, 20, 15, 8, 17, 14, 15, 6, 8, 9, 11, 5, 6, 4, 7, 10, - 9, 6, 4, 4, 3, 2, 8, 9, 6, 7, 6, 13, 14, 11, 4, 10, 8, 3, 15, 32, 5, 10, 24, 4, 10, 11, 6, - 14, - ], - }, - { - label: 'Black friday', - topics: 'black,discounts,friday,deals,metal', - description: - 'The key topics discussed in the messages from twitter related to Black Friday include:\n- Early start of Black Friday sales\n- Various deals and discounts offered by different companies\n- Recommendations on what to buy during Black Friday\n- Importance of budgeting and not going into debt\n- Promotions and promo codes for trading groups\n- Discounts on trading memberships and subscriptions\n- Learning opportunities for trading automation\n- Sales and discounts on cryptocurrency-related products and services\n- Recommendations for preparing for Black Friday sales\n- Limited time offers and deadlines for discounts\n\nOverall, the messages highlight the excitement and anticipation surrounding Black Friday sales in the crypto industry, with a focus on deals, discounts, and promotions available to customers.', - data: [ - 9, 8, 4, 3, 31, 6, 8, 17, 12, 4, 6, 16, 10, 8, 4, 4, 7, 7, 5, 8, 11, 13, 4, 4, 7, 5, 7, 9, - 8, 3, 4, 6, 9, 6, 5, 3, 11, 5, 8, 3, 27, 2, 9, 8, 5, 3, 1, 7, 8, 4, 7, 8, 6, 8, 3, - ], - }, - { - label: 'Israel - Palestine', - topics: 'gaza,israel,israeli,jewish,killed', - description: - 'The messages from twitter contain a mix of anti-Semitic and anti-Israel sentiments, with mentions of Zionists, Hamas, Hezbollah, and Israeli actions in Palestine. There are also references to conspiracy theories and accusations of corruption within Israeli political parties. The messages reflect a deep-seated animosity towards Israel and Jewish people, with some messages promoting harmful stereotypes and misinformation. It is important to approach such content critically and with an understanding of the complex political dynamics in the region.', - data: [ - 4, 6, 18, 9, 2, 3, 5, 16, 6, 13, 6, 2, 12, 1, 0, 9, 8, 4, 4, 1, 8, 7, 3, 7, 19, 4, 5, 5, 6, - 1, 8, 8, 6, 8, 9, 7, 4, 7, 9, 11, 9, 8, 9, 14, 7, 12, 8, 3, 1, 3, 3, 7, 3, 5, 8, - ], - }, - { - label: 'Devconnect', - topics: 'aires,buenos,devconnect,argentina,devcon', - description: - "The messages from twitter about Devconnect ARG in Argentina highlight the excitement and success of the event. Attendees discussed various topics such as the impact of Ethereum on trading, the underrated dish of Mollejas, and the positive outlook for Argentina's future. The event saw a large turnout with attendees from around the world, showcasing the global interest in cryptocurrency and blockchain technology. The closing happy hour was a chance for attendees to celebrate and network, reflecting the vibrant and innovative atmosphere of Devconnect. Overall, the event was a success and left a positive impression on those who attended.", - data: [ - 3, 9, 7, 6, 11, 9, 7, 7, 5, 11, 3, 8, 13, 4, 10, 7, 9, 5, 2, 3, 11, 8, 8, 12, 7, 2, 4, 2, 9, - 3, 7, 4, 8, 7, 5, 3, 3, 5, 3, 7, 5, 0, 6, 6, 5, 12, 5, 8, 1, 4, 4, 3, 11, 8, 6, - ], - }, - { - label: 'Bitcoin vs fiat', - topics: 'fiat,finite,monetary,salt,currency', - description: - 'The messages from twitter highlight the importance and potential of Bitcoin as the future of money. It is described as the universal language of capital, a sovereign asset that is not controlled by corporations or governments. The messages emphasize the scarcity and decentralization of Bitcoin, making it a valuable and secure asset for long-term wealth protection. There is also a discussion about the evolution of Bitcoin and its role in forcing regulators to accept digital bearer assets. Overall, the messages convey a strong belief in the power and potential of Bitcoin as a transformative asset in the financial industry.', - data: [ - 3, 2, 11, 9, 29, 5, 2, 3, 7, 5, 7, 4, 12, 3, 13, 2, 9, 6, 4, 8, 6, 2, 2, 13, 12, 3, 6, 1, 3, - 6, 2, 12, 12, 7, 8, 7, 5, 3, 7, 5, 4, 1, 2, 11, 5, 0, 3, 9, 3, 2, 12, 5, 6, 5, 6, - ], - }, - { - label: 'Gambling', - topics: 'poker,gambling,casino,betting,addiction', - description: - 'The key topics currently being discussed in the crypto industry on social media platforms like Twitter include:\n\n1. Gambling addiction and betting on various platforms like Polymarket and sports betting.\n2. The rise of prediction markets and casino-style platforms in the crypto space.\n3. The concept of a "Creator Casino" where players become founders and founders become the house.\n4. The impact of gambling addiction on individuals and families, including personal stories of addiction.\n5. The use of crypto platforms like Gamblr to make on-chain wagers more clean and deliberate.\n6. The influence of advisors and celebrities on gambling websites and potential government policy changes.\n7. The excitement around events like the CS2 Major and impromptu pick-em contests in Discord.\n8. The potential for big wins and losses in the crypto gambling space, with users sharing their experiences and strategies.\n\nOverall, the discussion around gambling and betting in the crypto industry is diverse, ranging from personal experiences with addiction to strategies for making successful bets on various platforms.', - data: [ - 5, 3, 2, 4, 42, 9, 4, 13, 4, 3, 6, 6, 6, 5, 3, 6, 2, 18, 10, 4, 5, 6, 6, 2, 5, 2, 3, 6, 6, - 5, 4, 2, 3, 9, 7, 17, 7, 3, 2, 3, 6, 5, 1, 12, 5, 6, 7, 7, 6, 1, 5, 3, 4, 9, 3, - ], - }, - { - label: "Twitter's location doxxing", - topics: 'doxxing,location,doxxed,locations,profiles', - description: - 'The messages from twitter are discussing the new feature on platform X that displays the country or region where an account is based. Some users are concerned about privacy and potential doxxing, while others see it as a way to increase transparency and combat fraud. Vitalik Buterin has raised privacy concerns about the feature, stating that it reveals user locations without consent. Some users are suggesting ways to avoid having their exact location revealed, such as using VPNs or selecting to disclose only their continent or region. Overall, the reactions to the new feature are mixed, with some seeing it as a positive step towards transparency and others expressing concerns about privacy and potential negative consequences.', - data: [ - 14, 5, 4, 1, 3, 3, 3, 5, 2, 3, 19, 6, 1, 19, 3, 9, 11, 6, 6, 4, 4, 1, 1, 2, 1, 4, 7, 25, 6, - 4, 1, 3, 15, 7, 6, 2, 9, 4, 6, 11, 8, 2, 8, 4, 3, 3, 1, 8, 3, 3, 10, 3, 4, 4, 4, - ], - }, - { - label: 'US CPI data', - topics: 'ppi,inflation,prior,employment,03', - description: - "The key topics discussed in the messages from twitter are:\n- US Labor Department announcing the release of November CPI data on December 18\n- US decision to no longer release Q3 GDP report\n- 21e8 building a US manufacturing hub in Louisiana with no capex or opex on balance sheet\n- US ADP employment change\n- US inflation cooling down\n- DallasFed Services Index rising\n- Fiscal policy and growth in Europe\n- Calls for large interest rate cuts by Fed\n- Producer inflation cooling down\n- UK's Chancellor Reeves deciding against cutting VAT on energy bills\n- Modest increase in sales at US retailers and restaurants\n- Discrepancy in reported inflation rates\n- ATL Fed's estimate for Q3 GDP\n- Delayed August wholesale inventories and sales\n- Central bankers' changing stance on inflation\n- US PPI and Core PPI data drop\n- Atlanta Fed's GDPNow model\n- US S&P manufacturing, services, and composite PMI\n- Real story behind retail sales and PPI numbers\n- Inflation expectations below long term average\n\nOverall, the messages discuss various economic indicators, policy decisions, and market impacts related to the crypto industry.", - data: [ - 1, 7, 5, 4, 2, 1, 17, 2, 9, 17, 3, 17, 1, 13, 5, 2, 5, 1, 1, 6, 4, 5, 3, 28, 4, 4, 1, 2, 3, - 6, 3, 10, 2, 3, 5, 2, 6, 1, 6, 26, 15, 12, 2, 3, 3, 4, 2, 2, 3, 2, 4, 7, 4, 4, 2, - ], - }, - { - label: 'Airdrops', - topics: 'kinetiq,hyperevm,airdrops,airdrop,eligibility', - description: - 'The key topics discussed in the messages from @maverick23NFT and other users in the crypto community include:\n1. Airdrops: There are mentions of various airdrops, including Opensea token airdrop, $KNTQ airdrop, $OPEN stock warrants airdrop, Hyperliquid airdrops, and more. Users are excited about receiving airdrops and discussing their experiences with them.\n2. Token Updates: Users are discussing updates and developments related to different tokens such as $sol, $KNTQ, $PUNKSR, $BLUFF, $S, $SOON, $CHZ, and $IN. They are sharing information about token performance, events, and potential opportunities.\n3. Airdrop Participation: There are mentions of users participating in airdrops, staking tokens, and claiming rewards. Some users express concerns about missing out on airdrops due to lack of announcements or information.\n4. Community Engagement: Users are engaging with each other, mentioning other users, projects, and events in the crypto community. They are sharing insights, opinions, and experiences related to airdrops and tokens.\n5. Speculation and Analysis: There is speculation about token purchases, market trends, and potential strategies for maximizing rewards from airdrops. Users are analyzing the behavior of other participants and making decisions based on their observations.\n6. Platform Updates: Users are discussing updates and features of different platforms such as Opensea, Hyperliquid, Airtasker, and Binance Alpha. They are sharing information about platform raises, events, and opportunities for users.\n7. Future Airdrops: There is anticipation and discussion about upcoming airdrops, events, and opportunities in the crypto industry. Users are looking forward to potential rewards and benefits from participating in future airdrops.', - data: [ - 3, 35, 6, 7, 4, 7, 1, 3, 7, 6, 8, 6, 6, 12, 7, 5, 5, 1, 2, 3, 5, 5, 4, 2, 3, 6, 3, 5, 9, 3, - 4, 4, 7, 9, 8, 12, 3, 5, 8, 3, 3, 5, 1, 3, 4, 3, 6, 6, 6, 3, 1, 7, 2, 2, 7, - ], - }, - { - label: 'DeFi', - topics: 'eigenlayer,defi,pts,defai,lending', - description: - "The key topics discussed in the messages from twitter are:\n1. DeFi stability and the future of Real assets with blockchain transparency\n2. The importance of sustainable yield sources in DeFi\n3. The strategic success of Morpho's DeFi mullet strategy\n4. The need for clarity on DeFi credit protocols and their classification under investment contracts\n5. The shift of traditional finance players towards entering DeFi\n6. The innovation and efficiency of Ensofi_xyz's unified dashboard for managing assets in DeFi\n7. The importance of stable money in DeFi for a strong foundation\n8. The support for accelerating Solana's path to terminal inflation rate by DeFi Development Corp\n9. The importance of DEXs, LSDs, Stablecoins, and Derivatives in generating fees and sustaining DeFi\n10. The introduction of BubbleSwap + BubbleAI on Shido Network for DeFi meets AI integration\n11. The independent DeFi protocols under Each Leaf with their unique product offerings and value capture mechanisms\n12. New York's push for a zero-emissions grid by 2040 and the role of Dispatchable Emissions-Free Resources (DEFR) in achieving this goal.", - data: [ - 2, 4, 7, 4, 4, 3, 8, 3, 5, 8, 4, 4, 2, 7, 6, 2, 9, 15, 5, 3, 2, 6, 4, 12, 6, 10, 6, 6, 2, 8, - 9, 6, 4, 7, 3, 2, 5, 7, 3, 4, 6, 3, 3, 4, 4, 6, 2, 4, 6, 6, 9, 3, 5, 6, 4, - ], - }, - { - label: 'Privacy and encryption', - topics: 'confidentiality,privacy,surveillance,encrypted,freedom', - description: - 'The messages from twitter focus heavily on the importance of privacy in the crypto industry. Key points include the idea that privacy is essential for personal and digital rights, the need for privacy to be programmable by default, and the concept of privacy as a form of resistance against mass surveillance. There is also discussion about the role of privacy in cryptocurrency transactions and the importance of privacy projects in the industry.\n\nOverall, the messages emphasize the significance of privacy in the crypto space and highlight the efforts of various projects and individuals to prioritize and enhance privacy within the ecosystem.', - data: [ - 0, 4, 5, 10, 8, 1, 3, 5, 4, 6, 8, 6, 0, 1, 8, 5, 5, 7, 5, 3, 3, 4, 2, 5, 7, 1, 5, 4, 3, 7, - 8, 6, 5, 8, 4, 2, 40, 10, 3, 8, 4, 8, 1, 0, 5, 4, 5, 4, 0, 9, 3, 5, 6, 3, 2, - ], - }, - { - label: 'BTC price', - topics: 'h4,4hr,4h,1d,91k', - description: - "The key topics currently being discussed in the crypto community on Twitter include:\n\n1. Bitcoin's current resistance levels: There is a lot of discussion about Bitcoin facing resistance around the $88,000-$90,000 zone. If Bitcoin doesn't break above this level soon, there is a possibility of dropping towards a new monthly low.\n\n2. Potential price movements for Bitcoin: Analysts are predicting various scenarios for Bitcoin's price, with some suggesting a fall towards $79k or even $76k, while others are looking for a bounce towards $100k or even $110k if certain support levels hold.\n\n3. Accumulation territory for Bitcoin: Some traders are suggesting that Bitcoin has entered accumulation territory, with short-term holders experiencing losses and the market potentially reacting at certain key levels.\n\n4. Technical analysis and resistance levels: Traders are analyzing technical charts and key resistance levels, such as the 91k zone and the 96-97k range, to make informed trading decisions.\n\nOverall, the sentiment in the crypto community seems to be cautious optimism, with traders closely monitoring Bitcoin's price movements and key levels to determine the next potential direction for the market.", - data: [ - 12, 0, 5, 3, 6, 26, 4, 4, 6, 5, 7, 5, 1, 7, 0, 9, 7, 2, 1, 4, 1, 4, 8, 4, 3, 3, 8, 7, 3, 5, - 3, 1, 2, 1, 7, 3, 11, 1, 12, 5, 4, 4, 6, 2, 1, 10, 6, 2, 3, 11, 7, 2, 3, 3, 3, - ], - }, - { - label: 'MON price', - topics: 'mon,010,presale,ico,dumped', - description: - "The key topics currently being discussed in the crypto community on Twitter regarding $MON include:\n1. Speculation on whether $MON will cause a maximum price increase and if it will reach $0.084 or higher.\n2. Mixed opinions on whether to invest in $MON, with some users yeeting half of their holdings while others believe it will make them rich.\n3. Observations of price movements and predictions of potential gains, with some users claiming it will 100x from its current low.\n4. Concerns about potential market manipulation, with suspicions of whales unloading $MON and impacting other altcoins.\n5. Speculation on the influence of Coinbase, as $MON is owned by the exchange, and predictions of potential price increases.\n6. Warnings of a potential market dump and advice to stay safe and cautious.\n7. Discussions on the involvement of bots in pumping and dumping coins, particularly $MON.\n8. Predictions of positive price action for $MON due to Coinbase's stake in its success, despite concerns about fundamentals and real value.\n9. Observations of significant gains for those who invested in $MON, despite the overall market conditions.\n10. Overall, there is a mix of excitement, skepticism, and caution surrounding $MON and its potential future performance in the crypto market.", - data: [ - 8, 3, 1, 7, 1, 7, 6, 2, 6, 4, 4, 1, 1, 2, 1, 5, 1, 3, 1, 7, 4, 5, 4, 3, 3, 3, 8, 5, 4, 2, 2, - 58, 3, 5, 1, 1, 12, 10, 2, 1, 3, 4, 4, 5, 3, 1, 5, 5, 2, 9, 2, 2, 4, 1, 5, - ], - }, - { - label: 'ETF outflows', - topics: 'outflows,outflow,inflows,etfs,inflow', - description: - 'The key topics discussed in the messages from twitter are:\n- Record-breaking Bitcoin ETF volume\n- Ethereum ETF outflows and inflows\n- Bitcoin ETF net inflows and outflows\n- Digital asset investment products outflows\n- XRP funds bucking the trend with inflows\n- Massive BTC outflows from exchanges\n- Bitcoin ETFs hitting record volume\n- Drawdowns in Bitcoin ETF flows\n- ETH ETFs turning positive\n- Solana ETF inflows\n- Rotation in ETF flows\n- US spot ETFs net inflows\n- Institutional capital flowing into ETH\n- Altcoins attracting fresh capital\n\nOverall, the messages highlight the volatility and trends in ETF flows, with a focus on Bitcoin and Ethereum, as well as other digital assets like XRP and Solana.', - data: [ - 3, 2, 8, 1, 12, 2, 2, 4, 3, 4, 7, 2, 4, 2, 5, 5, 16, 5, 0, 0, 3, 2, 6, 9, 3, 4, 4, 2, 3, 3, - 1, 2, 4, 1, 22, 1, 4, 1, 10, 3, 12, 9, 2, 7, 28, 3, 1, 1, 2, 1, 4, 6, 4, 1, 2, - ], - }, - { - label: "Trump's impact on crypto", - topics: 'donald,tariff,potus,realdonaldtrump,election', - description: - 'President Trump has issued a statement about potentially eliminating income tax due to tariff proceeds. He also mentioned that by the end of the year, there will be $21 trillion invested in the US, which will make the US dollar stronger. Additionally, there are speculations about potential buying opportunities in Trump Media despite recent losses.', - data: [ - 3, 6, 7, 4, 4, 6, 4, 4, 3, 4, 6, 1, 6, 6, 4, 4, 4, 7, 1, 12, 4, 8, 5, 1, 5, 4, 7, 3, 5, 4, - 2, 2, 5, 4, 4, 3, 9, 2, 6, 3, 11, 11, 0, 1, 1, 4, 3, 5, 6, 4, 2, 4, 6, 6, 5, - ], - }, - { - label: 'December rate cuts', - topics: 'odds,cut,fomc,williams,71', - description: - 'The key topic currently being discussed in the crypto industry on social media platforms is the likelihood of a rate cut by the Federal Reserve in December. Various sources, such as Polymarket and Fed fund futures, are indicating high probabilities of a rate cut, ranging from 70% to as high as 85%. The market is reacting to these predictions, with some speculating that a rate cut could lead to a bullish trend in the markets. However, there is also uncertainty and division among officials, with some suggesting that a rate cut may not be necessary. Overall, the market is closely monitoring the situation as the FOMC meeting approaches in 13 days, and the outcome of a rate cut decision could have significant implications for market trends and investor sentiment.', - data: [ - 4, 1, 2, 1, 3, 5, 0, 18, 2, 0, 26, 18, 1, 2, 6, 3, 3, 3, 0, 3, 1, 4, 1, 1, 2, 0, 4, 1, 2, - 11, 3, 7, 0, 12, 0, 0, 12, 3, 32, 0, 3, 1, 3, 2, 1, 2, 0, 4, 2, 1, 2, 1, 4, 5, 0, - ], - }, - ], -}