@beefyfinance/blockchain-addressbook 0.58.3 → 0.58.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -80,7 +80,7 @@ declare const robinhood: {
80
80
  readonly description: "GameStop Robinhood Token is a tokenized debt security issued by Robinhood Assets (Jersey) Limited that provides price exposure to GameStop shares without conferring ownership or shareholder rights.";
81
81
  readonly documentation: "https://cdn.robinhood.com/assets/robinhood/legal/rhj_final_terms_for_tokenised_debt_securities_linked_to_gamestop.pdf";
82
82
  readonly bridge: "native";
83
- readonly tags: readonly ["LARGE_HOLDERS"];
83
+ readonly tags: readonly ["LARGE_HOLDERS", "STOCK"];
84
84
  };
85
85
  readonly CASHCAT: {
86
86
  readonly name: "Cash Cat";
@@ -244,7 +244,7 @@ declare const robinhood: {
244
244
  readonly description: "GameStop Robinhood Token is a tokenized debt security issued by Robinhood Assets (Jersey) Limited that provides price exposure to GameStop shares without conferring ownership or shareholder rights.";
245
245
  readonly documentation: "https://cdn.robinhood.com/assets/robinhood/legal/rhj_final_terms_for_tokenised_debt_securities_linked_to_gamestop.pdf";
246
246
  readonly bridge: "native";
247
- readonly tags: readonly ["LARGE_HOLDERS"];
247
+ readonly tags: readonly ["LARGE_HOLDERS", "STOCK"];
248
248
  };
249
249
  readonly CASHCAT: {
250
250
  readonly name: "Cash Cat";
@@ -80,7 +80,7 @@ declare const robinhood: {
80
80
  readonly description: "GameStop Robinhood Token is a tokenized debt security issued by Robinhood Assets (Jersey) Limited that provides price exposure to GameStop shares without conferring ownership or shareholder rights.";
81
81
  readonly documentation: "https://cdn.robinhood.com/assets/robinhood/legal/rhj_final_terms_for_tokenised_debt_securities_linked_to_gamestop.pdf";
82
82
  readonly bridge: "native";
83
- readonly tags: readonly ["LARGE_HOLDERS"];
83
+ readonly tags: readonly ["LARGE_HOLDERS", "STOCK"];
84
84
  };
85
85
  readonly CASHCAT: {
86
86
  readonly name: "Cash Cat";
@@ -244,7 +244,7 @@ declare const robinhood: {
244
244
  readonly description: "GameStop Robinhood Token is a tokenized debt security issued by Robinhood Assets (Jersey) Limited that provides price exposure to GameStop shares without conferring ownership or shareholder rights.";
245
245
  readonly documentation: "https://cdn.robinhood.com/assets/robinhood/legal/rhj_final_terms_for_tokenised_debt_securities_linked_to_gamestop.pdf";
246
246
  readonly bridge: "native";
247
- readonly tags: readonly ["LARGE_HOLDERS"];
247
+ readonly tags: readonly ["LARGE_HOLDERS", "STOCK"];
248
248
  };
249
249
  readonly CASHCAT: {
250
250
  readonly name: "Cash Cat";
@@ -53,7 +53,7 @@ const tokens = {
53
53
  description: "GameStop Robinhood Token is a tokenized debt security issued by Robinhood Assets (Jersey) Limited that provides price exposure to GameStop shares without conferring ownership or shareholder rights.",
54
54
  documentation: "https://cdn.robinhood.com/assets/robinhood/legal/rhj_final_terms_for_tokenised_debt_securities_linked_to_gamestop.pdf",
55
55
  bridge: "native",
56
- tags: ["LARGE_HOLDERS"]
56
+ tags: ["LARGE_HOLDERS", "STOCK"]
57
57
  },
58
58
  CASHCAT: {
59
59
  name: "Cash Cat",
@@ -53,7 +53,7 @@ const tokens = {
53
53
  description: "GameStop Robinhood Token is a tokenized debt security issued by Robinhood Assets (Jersey) Limited that provides price exposure to GameStop shares without conferring ownership or shareholder rights.",
54
54
  documentation: "https://cdn.robinhood.com/assets/robinhood/legal/rhj_final_terms_for_tokenised_debt_securities_linked_to_gamestop.pdf",
55
55
  bridge: "native",
56
- tags: ["LARGE_HOLDERS"]
56
+ tags: ["LARGE_HOLDERS", "STOCK"]
57
57
  },
58
58
  CASHCAT: {
59
59
  name: "Cash Cat",
@@ -12,7 +12,7 @@ interface Token {
12
12
  oracle?: 'tokens' | 'lps';
13
13
  bridge?: string;
14
14
  staked?: boolean;
15
- tags?: ReadonlyArray<'NO_TIMELOCK' | 'STABLECOIN' | 'SYNTHETIC' | 'CURATED' | 'LARGE_HOLDERS' | 'BLUECHIP' | 'MEMECOIN'>;
15
+ tags?: ReadonlyArray<'NO_TIMELOCK' | 'STABLECOIN' | 'SYNTHETIC' | 'CURATED' | 'LARGE_HOLDERS' | 'BLUECHIP' | 'MEMECOIN' | 'STOCK'>;
16
16
  }
17
17
  interface TokenWithId extends Token {
18
18
  id: string;
@@ -12,7 +12,7 @@ interface Token {
12
12
  oracle?: 'tokens' | 'lps';
13
13
  bridge?: string;
14
14
  staked?: boolean;
15
- tags?: ReadonlyArray<'NO_TIMELOCK' | 'STABLECOIN' | 'SYNTHETIC' | 'CURATED' | 'LARGE_HOLDERS' | 'BLUECHIP' | 'MEMECOIN'>;
15
+ tags?: ReadonlyArray<'NO_TIMELOCK' | 'STABLECOIN' | 'SYNTHETIC' | 'CURATED' | 'LARGE_HOLDERS' | 'BLUECHIP' | 'MEMECOIN' | 'STOCK'>;
16
16
  }
17
17
  interface TokenWithId extends Token {
18
18
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beefyfinance/blockchain-addressbook",
3
- "version": "0.58.3",
3
+ "version": "0.58.4",
4
4
  "description": "A collection of useful addresses on various chains for defi development",
5
5
  "type": "module",
6
6
  "types": "./dist/address-book/index.d.ts",