diff --git a/.github/schemas/accounts-schema.json b/.github/schemas/accounts-schema.json
new file mode 100644
index 0000000000..34e6e5b097
--- /dev/null
+++ b/.github/schemas/accounts-schema.json
@@ -0,0 +1,12 @@
+{
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "additionalProperties": true
+}
diff --git a/.github/schemas/identities-schema.json b/.github/schemas/identities-schema.json
new file mode 100644
index 0000000000..9bc2c95230
--- /dev/null
+++ b/.github/schemas/identities-schema.json
@@ -0,0 +1,4 @@
+{
+ "type": "object",
+ "additionalProperties": true
+}
diff --git a/schema.json b/.github/schemas/tokens-schema.json
similarity index 97%
rename from schema.json
rename to .github/schemas/tokens-schema.json
index 97618f44bc..e73cb1a049 100644
--- a/schema.json
+++ b/.github/schemas/tokens-schema.json
@@ -30,7 +30,6 @@
}
},
"required": [
- "website",
"description",
"status"
],
diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml
new file mode 100644
index 0000000000..3e843d3687
--- /dev/null
+++ b/.github/workflows/auto-merge.yml
@@ -0,0 +1,31 @@
+name: automerge
+on:
+ pull_request:
+ types:
+ - labeled
+ - unlabeled
+ - synchronize
+ - opened
+ - edited
+ - ready_for_review
+ - reopened
+ - unlocked
+ pull_request_review:
+ types:
+ - submitted
+ check_suite:
+ types:
+ - completed
+ status: {}
+jobs:
+ automerge:
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write
+ pull-requests: write
+ steps:
+ - id: automerge
+ name: automerge
+ uses: "pascalgn/automerge-action@v0.16.4"
+ env:
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
\ No newline at end of file
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
index 389afccd09..1f98400666 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validate.yml
@@ -17,7 +17,14 @@ jobs:
sudo apt install imagemagick-6.q16
- name: Collecting file paths
run: |
- echo "FILE_PATHS=$(find ./tokens -type f -name '*info.json' -printf '%p,'| sed 's/,$//' )" >> $GITHUB_ENV
+ # Collect all JSON files in 'tokens' directories
+ echo "TOKENS_FILE_PATHS=$(find . -type f -path '*/tokens/*.json' ! -name 'ranks.json' -printf '%p,' | sed 's/,$//')" >> $GITHUB_ENV
+
+ # Collect all JSON files in 'accounts' directories
+ echo "ACCOUNTS_FILE_PATHS=$(find . -type f -path '*/accounts/*.json' -printf '%p,' | sed 's/,$//')" >> $GITHUB_ENV
+
+ # Collect all JSON files in 'identities' directories
+ echo "IDENTITIES_FILE_PATHS=$(find . -type f -path '*/identities/*.json' -printf '%p,' | sed 's/,$//')" >> $GITHUB_ENV
- id: files
uses: jitterbit/get-changed-files@v1
- name: Validate file size
@@ -35,8 +42,18 @@ jobs:
- name: Validate token existence
run: |
source .github/snippet.sh; validate_token_existence
- - name: Validate JSON
+ - name: Validate tokens JSON
+ uses: docker://orrosenblatt/validate-json-action:latest
+ env:
+ INPUT_SCHEMA: ./.github/schemas/tokens-schema.json
+ INPUT_JSONS: ${{ env.TOKENS_FILE_PATHS }}
+ - name: Validate accounts JSON
+ uses: docker://orrosenblatt/validate-json-action:latest
+ env:
+ INPUT_SCHEMA: ./.github/schemas/accounts-schema.json
+ INPUT_JSONS: ${{ env.ACCOUNTS_FILE_PATHS }}
+ - name: Validate identities JSON
uses: docker://orrosenblatt/validate-json-action:latest
env:
- INPUT_SCHEMA: ./schema.json
- INPUT_JSONS: ${{ env.FILE_PATHS }}
+ INPUT_SCHEMA: ./.github/schemas/identities-schema.json
+ INPUT_JSONS: ${{ env.IDENTITIES_FILE_PATHS }}
diff --git a/README.md b/README.md
index 45271899da..b6b9aad13c 100644
--- a/README.md
+++ b/README.md
@@ -178,3 +178,49 @@ This is done via a message signature verification, where the message is the late
To do so, on the PR page, go to the `Commits` tab of the Pull Request and copy the latest commit hash (should look similar to `9c6164f1b195ce96bc5b65d6878ebe813e852550`). Then sign
that string by using the owner of the asset you are branding. The easiest way is to use our [Utils Dapp](https://utils.multiversx.com) where you should log in with the owner wallet
and then go to the 'Sign Message' tab and sign the commit hash previously copied. After that, leave a comment inside the Pull Request with the obtained signature.
+
+# Custom token price fetching
+
+By default, tokens issued on MultiversX will have their price displayed on frontend products (such as Explorer, Web Wallet, and so on) only if they have a pair listed on xExchange.
+
+However, there is the possibility for tokens to provide a custom price source for tokens. Here's how:
+
+Inside the `info.json` file corresponding to the token, add the following property:
+
+```
+ "priceSource": {
+ "type": "customUrl",
+ "url": "https://your-api.com/your-token-price-endpoint",
+ "path": "0.usdPrice"
+ },
+```
+
+Using the above settings, your endpoint must return a response that follows this definition:
+
+```json
+[
+ {
+ "usdPrice": 0.05
+ }
+]
+```
+
+The default `path`, also used when nothing is set (`0.usdPrice`), will assume that the object containing the `usdPrice` is the first entry of an array.
+
+If you want to expose something different on your endpoint, such as:
+
+```json
+{
+ "myCustomPriceField": 0.05
+}
+```
+
+you'll need to update the `path` field accordingly:
+
+```
+ "priceSource": {
+ "type": "customUrl",
+ "url": "https://your-api.com/your-token-price-endpoint",
+ "path": "myCustomPriceField"
+ },
+```
diff --git a/accounts/erd12jzgjldrh7f0uy6zxc5vkctjwchxdvnv385rvmv3hux5uwjaf8uqw6jlg5.json b/accounts/erd12jzgjldrh7f0uy6zxc5vkctjwchxdvnv385rvmv3hux5uwjaf8uqw6jlg5.json
new file mode 100644
index 0000000000..883a141614
--- /dev/null
+++ b/accounts/erd12jzgjldrh7f0uy6zxc5vkctjwchxdvnv385rvmv3hux5uwjaf8uqw6jlg5.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Team Wallet",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
\ No newline at end of file
diff --git a/accounts/erd12xjvwqeycr2arhcfl02mxrx6l0y0dm67sdmetdpr8ytkqwh6mf4ss22lzl.json b/accounts/erd12xjvwqeycr2arhcfl02mxrx6l0y0dm67sdmetdpr8ytkqwh6mf4ss22lzl.json
new file mode 100644
index 0000000000..095d5c6463
--- /dev/null
+++ b/accounts/erd12xjvwqeycr2arhcfl02mxrx6l0y0dm67sdmetdpr8ytkqwh6mf4ss22lzl.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - IRL Stuff",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
diff --git a/accounts/erd18lgcppxaly7smepe09q22h02jne3nv7rhkm2yf8e0g7xzpznucesgpndjf.json b/accounts/erd18lgcppxaly7smepe09q22h02jne3nv7rhkm2yf8e0g7xzpznucesgpndjf.json
new file mode 100644
index 0000000000..37ec43fe9d
--- /dev/null
+++ b/accounts/erd18lgcppxaly7smepe09q22h02jne3nv7rhkm2yf8e0g7xzpznucesgpndjf.json
@@ -0,0 +1,16 @@
+{
+ "name": "🚀 EDGE Sniper 🚀",
+ "description": "A Project X Telegram bot. Snipe a token faster than anyone else!",
+ "social": {
+ "website": "https://projectx.mx/",
+ "twitter": "https://twitter.com/ProjectX_DAO",
+ "discord": "https://discord.gg/projectx-dao",
+ "whitepaper": "https://docs.projectx.mx/",
+ "medium": "https://medium.com/@ProjectX_dao"
+ },
+ "tags": [
+ "projectx",
+ "bot"
+ ],
+ "icon": "projectx-edge-sniper"
+}
\ No newline at end of file
diff --git a/accounts/erd1cfyadenn4k9wndha0ljhlsdrww9k0jqafqq626hu9zt79urzvzasalgycz.json b/accounts/erd1cfyadenn4k9wndha0ljhlsdrww9k0jqafqq626hu9zt79urzvzasalgycz.json
index dd90e85a60..37bf9c27a9 100644
--- a/accounts/erd1cfyadenn4k9wndha0ljhlsdrww9k0jqafqq626hu9zt79urzvzasalgycz.json
+++ b/accounts/erd1cfyadenn4k9wndha0ljhlsdrww9k0jqafqq626hu9zt79urzvzasalgycz.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1dg6umnh4yxw4yjtl9k7n6plhcmhsrghpyg5vyl928l96crs7pr9scashvp.json b/accounts/erd1dg6umnh4yxw4yjtl9k7n6plhcmhsrghpyg5vyl928l96crs7pr9scashvp.json
new file mode 100644
index 0000000000..d22bfac25b
--- /dev/null
+++ b/accounts/erd1dg6umnh4yxw4yjtl9k7n6plhcmhsrghpyg5vyl928l96crs7pr9scashvp.json
@@ -0,0 +1,30 @@
+{
+ "name": "Ofero: VIP Cashback",
+ "description": "The Ofero Network's VIP Cashback Wallet",
+ "social": {
+ "website": "https://www.ofero.network",
+ "email": "contact@ofero.network",
+ "twitter": "https://twitter.com/oferonetwork",
+ "whitepaper": "https://ofero.network/documents/whitepaper.pdf",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ofero-network",
+ "coingecko": "https://www.coingecko.com/en/coins/ofero",
+ "telegram": "https://t.me/oferonetwork",
+ "youtube": "https://www.youtube.com/@oferonetwork",
+ "facebook": "https://www.facebook.com/oferonetwork",
+ "instagram": "http://instagram.com/oferonetwork",
+ "linkedin": "https://www.linkedin.com/company/oferonetwork",
+ "linktree": "https://linktr.ee/oferonetwork",
+ "discord": "https://discord.gg/PrKZpqbwk4",
+ "blog": "https://medium.com/@oferonetwork",
+ "reddit": "https://www.reddit.com/r/ofero_network"
+ },
+ "tags": [
+ "ofero",
+ "ofero network",
+ "vip",
+ "cashback",
+ "secure",
+ "community"
+ ],
+ "icon": "oferonetwork"
+}
diff --git a/accounts/erd1dmf9w52f5jar2d9qgq05yjaj5e2at72zer805kp99hwjz4mn40aspcswsw.json b/accounts/erd1dmf9w52f5jar2d9qgq05yjaj5e2at72zer805kp99hwjz4mn40aspcswsw.json
new file mode 100644
index 0000000000..105a547fc1
--- /dev/null
+++ b/accounts/erd1dmf9w52f5jar2d9qgq05yjaj5e2at72zer805kp99hwjz4mn40aspcswsw.json
@@ -0,0 +1,13 @@
+{
+ "name": "Boogas",
+ "description": "A storytelling brand about the Boogas: fun-loving, prehistoric characters that unexpectedly end up in modern times.",
+ "social": {
+ "website": "https://boogasofficial.com",
+ "twitter": "https://x.com/BoogasOfficial",
+ "whitepaper": "https://x.com/boogasofficial/status/1801132954913038429"
+ },
+ "tags": [
+ "community"
+ ],
+ "icon": "boogasofficial"
+}
\ No newline at end of file
diff --git a/accounts/erd1ee0m69sz6pyqf65gvnft47s82vfvelqxd8f68n22mjv8ndz6fsrs75z7g6.json b/accounts/erd1ee0m69sz6pyqf65gvnft47s82vfvelqxd8f68n22mjv8ndz6fsrs75z7g6.json
new file mode 100644
index 0000000000..4f9e171ce1
--- /dev/null
+++ b/accounts/erd1ee0m69sz6pyqf65gvnft47s82vfvelqxd8f68n22mjv8ndz6fsrs75z7g6.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - DAO Wallet",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
\ No newline at end of file
diff --git a/accounts/erd1f40mehrrtr6j29g7vv3exajxw92k0wwm0nc8agd7n6h0gezx3q6q086xzc.json b/accounts/erd1f40mehrrtr6j29g7vv3exajxw92k0wwm0nc8agd7n6h0gezx3q6q086xzc.json
new file mode 100644
index 0000000000..31f3bbd3e8
--- /dev/null
+++ b/accounts/erd1f40mehrrtr6j29g7vv3exajxw92k0wwm0nc8agd7n6h0gezx3q6q086xzc.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Airdrop Wallet",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
\ No newline at end of file
diff --git a/accounts/erd1g3ufcfdlnpamunzpaa4kutg3z7y9vtuqm3twpkh57ye2ppycgenseekdcl.json b/accounts/erd1g3ufcfdlnpamunzpaa4kutg3z7y9vtuqm3twpkh57ye2ppycgenseekdcl.json
index ede4d09a72..5e5419632d 100644
--- a/accounts/erd1g3ufcfdlnpamunzpaa4kutg3z7y9vtuqm3twpkh57ye2ppycgenseekdcl.json
+++ b/accounts/erd1g3ufcfdlnpamunzpaa4kutg3z7y9vtuqm3twpkh57ye2ppycgenseekdcl.json
@@ -2,8 +2,8 @@
"name": "PLΛTΛ",
"description": "Driver One",
"social": {
- "website": "https://plata.network",
- "twitter": "https://twitter.com/plataNetwork"
+ "website": "https://linktr.ee/plataLinks",
+ "twitter": "https://x.com/plataNetwork"
},
"tags": [
"plata",
diff --git a/accounts/erd1h76yr4k3yqywmhkqxz5fseq4kzqh390fxc293r0k784qj7h8nxjs5pa0vt.json b/accounts/erd1h76yr4k3yqywmhkqxz5fseq4kzqh390fxc293r0k784qj7h8nxjs5pa0vt.json
new file mode 100644
index 0000000000..877aae7e26
--- /dev/null
+++ b/accounts/erd1h76yr4k3yqywmhkqxz5fseq4kzqh390fxc293r0k784qj7h8nxjs5pa0vt.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - PfpContest Pot Wallet",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
\ No newline at end of file
diff --git a/accounts/erd1l8qmksyvfgn60hqhqgucufzx5adp4kny8gf07vypmgytyxqcgr9q3u6jnk/info.json b/accounts/erd1l8qmksyvfgn60hqhqgucufzx5adp4kny8gf07vypmgytyxqcgr9q3u6jnk/info.json
new file mode 100644
index 0000000000..8935d2a6b8
--- /dev/null
+++ b/accounts/erd1l8qmksyvfgn60hqhqgucufzx5adp4kny8gf07vypmgytyxqcgr9q3u6jnk/info.json
@@ -0,0 +1,13 @@
+{
+ "name": "ƆƆ⅁ ** 🅾🆁🅸🅶🅸🅽🆂 ** PLΛTΛ ",
+ "description": "Gentleman's Crypto Club. EST MMXXI",
+ "social": {
+ "website": "https://linktr.ee/plataLinks",
+ "twitter": "https://x.com/plataLegacy"
+ },
+ "tags": [
+ "plata",
+ "droids",
+ "council"
+ ]
+}
diff --git a/accounts/erd1nprkc7sy244ljjhxfpuwzzx0g7vesg4eze9cp9zu7hqxqmfjeqpsz6fx90/info.json b/accounts/erd1nprkc7sy244ljjhxfpuwzzx0g7vesg4eze9cp9zu7hqxqmfjeqpsz6fx90/info.json
new file mode 100644
index 0000000000..45c2c6337a
--- /dev/null
+++ b/accounts/erd1nprkc7sy244ljjhxfpuwzzx0g7vesg4eze9cp9zu7hqxqmfjeqpsz6fx90/info.json
@@ -0,0 +1,13 @@
+{
+ "name": "TRΛCKΞR ** 🅲🅾🆄🅽🅲🅸🅻 ** PLΛTΛ ",
+ "description": "Advanced Droid Reconnaissance.",
+ "social": {
+ "website": "https://xspotlight.com/collections/GCCMMXXI-ccc198",
+ "twitter": "https://x.com/plataNetwork"
+ },
+ "tags": [
+ "gcc",
+ "droids",
+ "council"
+ ]
+}
diff --git a/accounts/erd1p0vcffsc4fw7vp3ldm02mq3kmvv4j2g4pl0rxgr3x2pty3gfmq8s700000.json b/accounts/erd1p0vcffsc4fw7vp3ldm02mq3kmvv4j2g4pl0rxgr3x2pty3gfmq8s700000.json
new file mode 100644
index 0000000000..7ae17bcb29
--- /dev/null
+++ b/accounts/erd1p0vcffsc4fw7vp3ldm02mq3kmvv4j2g4pl0rxgr3x2pty3gfmq8s700000.json
@@ -0,0 +1,29 @@
+{
+ "name": "Ofero: Zero Protocol",
+ "description": "The Ofero Network's Relayer Protocol",
+ "social": {
+ "website": "https://www.ofero.network",
+ "email": "info@ofero.network",
+ "twitter": "https://twitter.com/oferonetwork",
+ "whitepaper": "https://ofero.network/documents/whitepaper.pdf",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ofero-network",
+ "coingecko": "https://www.coingecko.com/en/coins/ofero",
+ "telegram": "https://t.me/oferonetwork",
+ "youtube": "https://www.youtube.com/@oferonetwork",
+ "facebook": "https://www.facebook.com/oferonetwork",
+ "instagram": "http://instagram.com/oferonetwork",
+ "linkedin": "https://www.linkedin.com/company/oferonetwork",
+ "linktree": "https://linktr.ee/oferonetwork",
+ "discord": "https://discord.gg/PrKZpqbwk4",
+ "blog": "https://medium.com/@oferonetwork",
+ "reddit": "https://www.reddit.com/r/ofero_network"
+ },
+ "tags": [
+ "ofero",
+ "ofero network",
+ "zero",
+ "zero protocol",
+ "community"
+ ],
+ "icon": "oferonetwork"
+}
\ No newline at end of file
diff --git a/accounts/erd1pws6zyhwv7t8dut0rkkvxgqatt5dzag4ghdlkqxm3jjutwaytuqque48zp.json b/accounts/erd1pws6zyhwv7t8dut0rkkvxgqatt5dzag4ghdlkqxm3jjutwaytuqque48zp.json
new file mode 100644
index 0000000000..13e2f9915a
--- /dev/null
+++ b/accounts/erd1pws6zyhwv7t8dut0rkkvxgqatt5dzag4ghdlkqxm3jjutwaytuqque48zp.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Owner Wallet",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq0e2xyy53jf8twy0fpdp7myxmq59jqurh27rs4afl3w.json b/accounts/erd1qqqqqqqqqqqqqpgq0e2xyy53jf8twy0fpdp7myxmq59jqurh27rs4afl3w.json
new file mode 100644
index 0000000000..b2af3e61b3
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq0e2xyy53jf8twy0fpdp7myxmq59jqurh27rs4afl3w.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: ROARHighSpeX",
+ "description": "DAO of ROARHighSpeX community driven project",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq0x2jseza48up502keamqh9y8pvzvxaam548sgh4e3l.json b/accounts/erd1qqqqqqqqqqqqqpgq0x2jseza48up502keamqh9y8pvzvxaam548sgh4e3l.json
index 1111338746..dcd8064f7c 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq0x2jseza48up502keamqh9y8pvzvxaam548sgh4e3l.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq0x2jseza48up502keamqh9y8pvzvxaam548sgh4e3l.json
@@ -16,5 +16,6 @@
"bhero",
"cowcow",
"launchpad"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq26sws3qgf6jjeymr54ff6a9v5ar8gemyu7zs9y5nxh.json b/accounts/erd1qqqqqqqqqqqqqpgq26sws3qgf6jjeymr54ff6a9v5ar8gemyu7zs9y5nxh.json
new file mode 100644
index 0000000000..aa7e5d25a3
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq26sws3qgf6jjeymr54ff6a9v5ar8gemyu7zs9y5nxh.json
@@ -0,0 +1,18 @@
+{
+ "name": "Valoro: MemeX Fund",
+ "description": "Valoro MemeX is a lighthearted fund dedicated to supporting and growing the meme culture.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/memex",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "meme",
+ "memex"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq277y4a5fqluldp5k7q0gayk87djyq3meah0sh7n378.json b/accounts/erd1qqqqqqqqqqqqqpgq277y4a5fqluldp5k7q0gayk87djyq3meah0sh7n378.json
index 04dcf76ca0..3109b75788 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq277y4a5fqluldp5k7q0gayk87djyq3meah0sh7n378.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq277y4a5fqluldp5k7q0gayk87djyq3meah0sh7n378.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq27gr6uyrta9qc33den2uchu3vlcl2v3qwmfs8dtgc4.json b/accounts/erd1qqqqqqqqqqqqqpgq27gr6uyrta9qc33den2uchu3vlcl2v3qwmfs8dtgc4.json
new file mode 100644
index 0000000000..a6464c6465
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq27gr6uyrta9qc33den2uchu3vlcl2v3qwmfs8dtgc4.json
@@ -0,0 +1,14 @@
+{
+ "name": "ESTAR: xCastle Craft",
+ "description": "",
+ "social": {
+ "website": "https://estar.games",
+ "twitter": "https://twitter.com/EstarToken",
+ "whitepaper": "https://whitepaper.estar.games",
+ "email": "contact@estar.games",
+ "discord": "https://discord.com/invite/estar",
+ "telegram": "https://t.me/estartoken"
+ },
+ "tags": ["game", "craft"],
+ "icon": "estar"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq29tw6alsuguf5hhjvgf96hhxl2n627vf548sckjuq9.json b/accounts/erd1qqqqqqqqqqqqqpgq29tw6alsuguf5hhjvgf96hhxl2n627vf548sckjuq9.json
index c9d4f11526..6b96e72bac 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq29tw6alsuguf5hhjvgf96hhxl2n627vf548sckjuq9.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq29tw6alsuguf5hhjvgf96hhxl2n627vf548sckjuq9.json
@@ -16,5 +16,6 @@
"bhero",
"staking",
"m3"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq2fr9t2mgf8suh3s4gmf3uu6q5adu9pzwe3yq5946vm.json b/accounts/erd1qqqqqqqqqqqqqpgq2fr9t2mgf8suh3s4gmf3uu6q5adu9pzwe3yq5946vm.json
new file mode 100644
index 0000000000..3520162915
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq2fr9t2mgf8suh3s4gmf3uu6q5adu9pzwe3yq5946vm.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Bsc MultiTransfer",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "bsc",
+ "multitransfer"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq2g3s5mzkmglqk5vjr2axkppp65grxv8fjn5qevdrr3.json b/accounts/erd1qqqqqqqqqqqqqpgq2g3s5mzkmglqk5vjr2axkppp65grxv8fjn5qevdrr3.json
new file mode 100644
index 0000000000..4aebc14731
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq2g3s5mzkmglqk5vjr2axkppp65grxv8fjn5qevdrr3.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: Extra Rewards",
+ "description": "Manage the Partners Rewards",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq2hxmw7fl3khv0m8vhw9948jlk3sd5thdsyxseumqjm.json b/accounts/erd1qqqqqqqqqqqqqpgq2hxmw7fl3khv0m8vhw9948jlk3sd5thdsyxseumqjm.json
index b3775ec34a..02d9ac43b7 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq2hxmw7fl3khv0m8vhw9948jlk3sd5thdsyxseumqjm.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq2hxmw7fl3khv0m8vhw9948jlk3sd5thdsyxseumqjm.json
@@ -16,5 +16,6 @@
"bhero",
"bee",
"launchpad"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq2j3m8w8zt5nvqpkg3pgmzq5x4tk8c2hfyfkqyk3few.json b/accounts/erd1qqqqqqqqqqqqqpgq2j3m8w8zt5nvqpkg3pgmzq5x4tk8c2hfyfkqyk3few.json
index 3520162915..fca192af9a 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq2j3m8w8zt5nvqpkg3pgmzq5x4tk8c2hfyfkqyk3few.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq2j3m8w8zt5nvqpkg3pgmzq5x4tk8c2hfyfkqyk3few.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Bsc MultiTransfer",
+ "name": "xBridge v2 (deprecated): Bsc MultiTransfer",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq2rnjnp543m5d8fac8v2ltkr5w2quh0v978ssswj939.json b/accounts/erd1qqqqqqqqqqqqqpgq2rnjnp543m5d8fac8v2ltkr5w2quh0v978ssswj939.json
new file mode 100644
index 0000000000..900983c858
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq2rnjnp543m5d8fac8v2ltkr5w2quh0v978ssswj939.json
@@ -0,0 +1,16 @@
+{
+ "name": "Hatom: MEX Money Market",
+ "description": "Hatom's MEX Lending & Borrowing Protocol Money Market",
+ "social": {
+ "website": "https://hatom.com",
+ "discord": "https://discord.com/invite/WekwfUDXGp",
+ "github": "https://github.com/HatomProtocol",
+ "blog": "https://mirror.xyz/0xDac8B6141d28C46765255607f3572c73A064383f",
+ "telegram": "https://t.me/HatomLabs",
+ "twitter": "https://twitter.com/HatomProtocol",
+ "whitepaper": "https://docs.hatom.com/getting-started/learn-more-about-hatom-token/whitepaper",
+ "linkedin": "https://www.linkedin.com/company/hatomlabs"
+ },
+ "tags": ["hatom", "money-market", "lending", "borrowing"],
+ "icon": "hatom-lending"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq2tf9zm9xxv96gz50p8jq5jesudhz45dvyfkqyefrss.json b/accounts/erd1qqqqqqqqqqqqqpgq2tf9zm9xxv96gz50p8jq5jesudhz45dvyfkqyefrss.json
index 5b4a1cac9c..062065dfbb 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq2tf9zm9xxv96gz50p8jq5jesudhz45dvyfkqyefrss.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq2tf9zm9xxv96gz50p8jq5jesudhz45dvyfkqyefrss.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Bsc Safe",
+ "name": "xBridge v2 (deprecated): Bsc Safe",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq2w4nu8h9wdyh55ycr4ngjzcrrs8q538827rsh72u0t.json b/accounts/erd1qqqqqqqqqqqqqpgq2w4nu8h9wdyh55ycr4ngjzcrrs8q538827rsh72u0t.json
new file mode 100644
index 0000000000..fd9088a6e8
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq2w4nu8h9wdyh55ycr4ngjzcrrs8q538827rsh72u0t.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: REPER Marea Britanie",
+ "description": "Filiala din Marea Britanie a partidului REPER",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq39sg74kkz6rguecv3nfl9jtmcq27culk548s6ryvdu.json b/accounts/erd1qqqqqqqqqqqqqpgq39sg74kkz6rguecv3nfl9jtmcq27culk548s6ryvdu.json
index 7259a8a84d..993a863194 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq39sg74kkz6rguecv3nfl9jtmcq27culk548s6ryvdu.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq39sg74kkz6rguecv3nfl9jtmcq27culk548s6ryvdu.json
@@ -17,5 +17,6 @@
"bhat",
"staking",
"flexible"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq3adwymgtenxfcvk0ar99dzka0hxc6fx9u7zsk9suhw.json b/accounts/erd1qqqqqqqqqqqqqpgq3adwymgtenxfcvk0ar99dzka0hxc6fx9u7zsk9suhw.json
new file mode 100644
index 0000000000..4e7996a12d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq3adwymgtenxfcvk0ar99dzka0hxc6fx9u7zsk9suhw.json
@@ -0,0 +1,18 @@
+{
+ "name": "Valoro: Infrastructure & Tools Fund",
+ "description": "Valoro Infrastructure & Tools Fund is a portfolio of cutting-edge crypto projects focused on empowering the next wave of Web3 innovation.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/tools",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "tools",
+ "infrastructure"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq3ejrrh6gk53dl7qelcmwj48u8g6pkrtmdn3qrhmgjz.json b/accounts/erd1qqqqqqqqqqqqqpgq3ejrrh6gk53dl7qelcmwj48u8g6pkrtmdn3qrhmgjz.json
new file mode 100644
index 0000000000..75695e6ca4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq3ejrrh6gk53dl7qelcmwj48u8g6pkrtmdn3qrhmgjz.json
@@ -0,0 +1,30 @@
+{
+ "name": "XOXNO: CV Pad Distribution",
+ "description": "CV Pad is a launchpad that democratizes early-stage venture capital investments, by leveraging CV VC, CV Labs and DuckDAO's VC and acceleration / incubation frameworks.",
+ "social": {
+ "email": "contact@xoxno.com",
+ "website": "https://www.cvpad.io/project/xoxno",
+ "discord": "https://discord.com/invite/CVPAD",
+ "twitter": "https://x.com/CvPad_xyz",
+ "telegram": "https://t.me/CVPAD_NEWS",
+ "instagram": "https://instagram.com/xoxnoNFTs",
+ "github": "https://github.com/XOXNO",
+ "whitepaper": "https://xoxno.com/whitepaper",
+ "linkedin": "https://www.linkedin.com/company/cv-pad",
+ "youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
+ },
+ "tags": [
+ "XOXNO",
+ "Marketplace",
+ "Launchpad",
+ "Liquid Staking",
+ "Finance",
+ "DeFi",
+ "Ticketing",
+ "L2",
+ "Web2",
+ "Real Yield"
+ ],
+ "icon": "xoxno"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq3mrpj3u6q7tejv6d7eqhnyd27n9v5c5tl3ts08mffe.json b/accounts/erd1qqqqqqqqqqqqqpgq3mrpj3u6q7tejv6d7eqhnyd27n9v5c5tl3ts08mffe.json
new file mode 100644
index 0000000000..5b458d055c
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq3mrpj3u6q7tejv6d7eqhnyd27n9v5c5tl3ts08mffe.json
@@ -0,0 +1,13 @@
+{
+ "name": "vLeap: Warp Registry",
+ "description": "Registers and manages Warps on Multiversᕽ.",
+ "social": {
+ "website": "https://vleap.io",
+ "email": "hello@vleap.io",
+ "twitter": "https://x.com/vLeapGroup",
+ "telegram": "https://telegram.vleap.io",
+ "github": "https://github.com/vLeapGroup"
+ },
+ "tags": ["vleap", "warps", "actions"],
+ "icon": "vleap"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq3n2w97lwdcppghqzkavn9v39ttuhk5yye3yqq0hlcr.json b/accounts/erd1qqqqqqqqqqqqqpgq3n2w97lwdcppghqzkavn9v39ttuhk5yye3yqq0hlcr.json
new file mode 100644
index 0000000000..4e9b00d10f
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq3n2w97lwdcppghqzkavn9v39ttuhk5yye3yqq0hlcr.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Ethereum Multisig",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "ethereum",
+ "multisig"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq3uzpsutjdkf2fzf2xtr2hkj2am7pak5eys5shffwec.json b/accounts/erd1qqqqqqqqqqqqqpgq3uzpsutjdkf2fzf2xtr2hkj2am7pak5eys5shffwec.json
index 2ee3c5a563..37aa4335ef 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq3uzpsutjdkf2fzf2xtr2hkj2am7pak5eys5shffwec.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq3uzpsutjdkf2fzf2xtr2hkj2am7pak5eys5shffwec.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq43cyf9yjfy79ey0cax55kenxgpefhayk2jps6zt793.json b/accounts/erd1qqqqqqqqqqqqqpgq43cyf9yjfy79ey0cax55kenxgpefhayk2jps6zt793.json
new file mode 100644
index 0000000000..3aebc21cfe
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq43cyf9yjfy79ey0cax55kenxgpefhayk2jps6zt793.json
@@ -0,0 +1,15 @@
+{
+ "name": "xExchange: Position Creator",
+ "description": "",
+ "social": {
+ "website": "https://xexchange.com",
+ "twitter": "https://twitter.com/xExchangeApp",
+ "telegram": "https://t.me/xExchangeApp",
+ "blog": "https://xexchange.com/x-exchange-economics.pdf"
+ },
+ "tags": [
+ "xexchange",
+ "positioncreator"
+ ],
+ "icon": "xexchange"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq47y8hnct68v6asjv6gxem6h9rumn9frzah0skhxxt6.json b/accounts/erd1qqqqqqqqqqqqqpgq47y8hnct68v6asjv6gxem6h9rumn9frzah0skhxxt6.json
index 7a4b7f1c34..4240e08a97 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq47y8hnct68v6asjv6gxem6h9rumn9frzah0skhxxt6.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq47y8hnct68v6asjv6gxem6h9rumn9frzah0skhxxt6.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq49xdh8493ms6qnlc3svkx46vs528jjhsmvlsc2tuk5.json b/accounts/erd1qqqqqqqqqqqqqpgq49xdh8493ms6qnlc3svkx46vs528jjhsmvlsc2tuk5.json
index e5db07d288..2d79a85971 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq49xdh8493ms6qnlc3svkx46vs528jjhsmvlsc2tuk5.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq49xdh8493ms6qnlc3svkx46vs528jjhsmvlsc2tuk5.json
@@ -16,5 +16,5 @@
"public",
"sale"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq4f205g7vtt74zqvhedvagvs0atl0np2x548sxdx5ug.json b/accounts/erd1qqqqqqqqqqqqqpgq4f205g7vtt74zqvhedvagvs0atl0np2x548sxdx5ug.json
index 9ef42c8d82..2a2c8a127a 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq4f205g7vtt74zqvhedvagvs0atl0np2x548sxdx5ug.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq4f205g7vtt74zqvhedvagvs0atl0np2x548sxdx5ug.json
@@ -17,5 +17,6 @@
"bhat",
"staking",
"sm12"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq4he8sd0hatnjemg6mv89w28h0rc7yd6jrpeq92s428.json b/accounts/erd1qqqqqqqqqqqqqpgq4he8sd0hatnjemg6mv89w28h0rc7yd6jrpeq92s428.json
new file mode 100644
index 0000000000..7fe04a582e
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq4he8sd0hatnjemg6mv89w28h0rc7yd6jrpeq92s428.json
@@ -0,0 +1,17 @@
+{
+ "name": "E.V Ecosystem: Roma Tickets Ed.2",
+ "social": {
+ "website": "https://www.eventivivi.it/nft",
+ "email": "evnftreal@gmail.com",
+ "twitter": "https://twitter.com/EVNFTreal",
+ "instagram": "https://www.instagram.com/evnftreal",
+ "discord": "https://discord.gg/63w5zDujzA",
+ "dApp": "https://dapp.eventivivi.it",
+ "facebook": "https://www.facebook.com/evnftreal",
+ "telegram": "https://t.me/evnftreal",
+ "tiktok": "https://www.tiktok.com/@evnftreal",
+ "whitepaper": "https://e-v-ecosystem.gitbook.io/e.v-ecosystem"
+ },
+ "tags": ["ev", "nft"],
+ "icon": "ev"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq4kns8he9r84c58ed3jjuam3tp7u9zl4n27rsy2kv6u.json b/accounts/erd1qqqqqqqqqqqqqpgq4kns8he9r84c58ed3jjuam3tp7u9zl4n27rsy2kv6u.json
index e58b1194f1..50a1bb130e 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq4kns8he9r84c58ed3jjuam3tp7u9zl4n27rsy2kv6u.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq4kns8he9r84c58ed3jjuam3tp7u9zl4n27rsy2kv6u.json
@@ -1,6 +1,6 @@
{
- "name": "PeerMe: Identities",
- "description": "Manages identities inside PeerMe's ecosystem of DAOs.",
+ "name": "PeerMe: Identity Module",
+ "description": "Manages identities inside PeerMe's ecosystem of cryptocompanies, communities and DAOs.",
"social": {
"website": "https://peerme.io",
"email": "hello@peerme.io",
@@ -13,10 +13,5 @@
"github": "https://github.com/PeerMeHQ",
"community": "https://egld.community/projects/PeerMe"
},
- "tags": [
- "peerme",
- "dao",
- "governance",
- "identity"
- ]
-}
\ No newline at end of file
+ "tags": ["peerme", "dao", "multisig", "governance", "identity"]
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq4qvrwlr2e6ld50f3qfc94am38p8298kthg4s3f0vfn.json b/accounts/erd1qqqqqqqqqqqqqpgq4qvrwlr2e6ld50f3qfc94am38p8298kthg4s3f0vfn.json
new file mode 100644
index 0000000000..a6fc914a3b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq4qvrwlr2e6ld50f3qfc94am38p8298kthg4s3f0vfn.json
@@ -0,0 +1,16 @@
+{
+ "name": "Protocol: Spica Governance",
+ "description": "",
+ "social": {
+ "website": "http://multiversx.com",
+ "twitter": "https://twitter.com/intent/user?screen_name=multiversx",
+ "telegram": "https://t.me/MultiversX",
+ "youtube": "https://youtube.com/@MultiversXOfficial",
+ "github": "https://github.com/MultiversX"
+ },
+ "tags": [
+ "protocol",
+ "governance"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5774jcntdqkzv62tlvvhfn2y7eevpty6mvlszk3dla.json b/accounts/erd1qqqqqqqqqqqqqpgq5774jcntdqkzv62tlvvhfn2y7eevpty6mvlszk3dla.json
index 3a34999a74..e4e177716d 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq5774jcntdqkzv62tlvvhfn2y7eevpty6mvlszk3dla.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq5774jcntdqkzv62tlvvhfn2y7eevpty6mvlszk3dla.json
@@ -16,5 +16,5 @@
"onedex",
"farms"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5cy2vjpn5uzdt0ufxlmceg9q6vvqpnaa6avs3q3u22.json b/accounts/erd1qqqqqqqqqqqqqpgq5cy2vjpn5uzdt0ufxlmceg9q6vvqpnaa6avs3q3u22.json
new file mode 100644
index 0000000000..74145433c9
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq5cy2vjpn5uzdt0ufxlmceg9q6vvqpnaa6avs3q3u22.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Unwanted Kwak SC",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": ""
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5d2pammlumgtlhh9ugersqkd9nt4nztqdn3q3wt3v3.json b/accounts/erd1qqqqqqqqqqqqqpgq5d2pammlumgtlhh9ugersqkd9nt4nztqdn3q3wt3v3.json
new file mode 100644
index 0000000000..edf6bd6ce5
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq5d2pammlumgtlhh9ugersqkd9nt4nztqdn3q3wt3v3.json
@@ -0,0 +1,6 @@
+{
+ "name": "xBulk: MAGAX distribution",
+ "description": "MAGAX distribution contract for xBulk.app",
+ "tags": ["commmunity", "bulk"],
+ "icon": "xbulk"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5q4uf6f678xfsahrangctn5sur5m5q44v3ys564let.json b/accounts/erd1qqqqqqqqqqqqqpgq5q4uf6f678xfsahrangctn5sur5m5q44v3ys564let.json
new file mode 100644
index 0000000000..ad30c01fd4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq5q4uf6f678xfsahrangctn5sur5m5q44v3ys564let.json
@@ -0,0 +1,16 @@
+{
+ "name": "BHero: Build21 Minter",
+ "description": "Build21 Minter via BHero Launchpad",
+ "social": {
+ "blog": "https://build21.io/en/news",
+ "twitter": "https://x.com/Build21io",
+ "whitepaper": "https://whitepaper.build21.io/",
+ "telegram": "https://t.me/Build21_En"
+ },
+ "tags": [
+ "build21",
+ "bhero",
+ "launchpad"
+ ],
+ "icon": "bhero"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5re66vt0dlee8v83dtyh6k54qqpjs3ketxfq9tcd29.json b/accounts/erd1qqqqqqqqqqqqqpgq5re66vt0dlee8v83dtyh6k54qqpjs3ketxfq9tcd29.json
new file mode 100644
index 0000000000..79fe418802
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq5re66vt0dlee8v83dtyh6k54qqpjs3ketxfq9tcd29.json
@@ -0,0 +1,11 @@
+{
+ "name": "Middle Staking : NFT Contract",
+ "description": "Stake NFT to earn rewards",
+ "social": {
+ "website": "https://www.middlestaking.fr/",
+ "twitter": "MiddleStaking",
+ "telegram": "https://t.me/middlestaking"
+ },
+ "tags": ["middlestaking", "staking", "nft", "contract"],
+ "icon": "middle"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5sm9ces3tpuuthrah5tnjhxmwgz308pkdrnqtqhj0q.json b/accounts/erd1qqqqqqqqqqqqqpgq5sm9ces3tpuuthrah5tnjhxmwgz308pkdrnqtqhj0q.json
new file mode 100644
index 0000000000..482af853ac
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq5sm9ces3tpuuthrah5tnjhxmwgz308pkdrnqtqhj0q.json
@@ -0,0 +1,16 @@
+{
+ "name": "xLaunchpad: AI Nexus",
+ "description": "",
+ "social": {
+ "website": "https://xlaunchpad.com",
+ "twitter": "https://twitter.com/xLaunchpadApp",
+ "telegram": "https://t.me/xLaunchpadApp",
+ "facebook": "https://www.facebook.com/MultiversX",
+ "linkedin": "https://mt.linkedin.com/company/multiversx"
+ },
+ "tags": [
+ "xlaunchpad",
+ "ainexus"
+ ],
+ "icon": "xlaunchpad"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5xu6me8xveumsunfyq9352pa0hpkplsqsyxszfw8sd.json b/accounts/erd1qqqqqqqqqqqqqpgq5xu6me8xveumsunfyq9352pa0hpkplsqsyxszfw8sd.json
index f8ea43970b..eefa8506a2 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq5xu6me8xveumsunfyq9352pa0hpkplsqsyxszfw8sd.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq5xu6me8xveumsunfyq9352pa0hpkplsqsyxszfw8sd.json
@@ -11,5 +11,6 @@
"tcl",
"bhero",
"launchpad"
- ]
-}
+ ],
+ "icon": "bhero"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq672uprklqj6qvx4kw02mlwexqw9ss63f984s2f46zg.json b/accounts/erd1qqqqqqqqqqqqqpgq672uprklqj6qvx4kw02mlwexqw9ss63f984s2f46zg.json
new file mode 100644
index 0000000000..97a2b69702
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq672uprklqj6qvx4kw02mlwexqw9ss63f984s2f46zg.json
@@ -0,0 +1,11 @@
+{
+ "name": "MemeversX: Airdrop Lottery",
+ "description": "MemeversX is a fair-launch platform that allows anyone to create their meme tokens in an easy, secure and transparent way.",
+ "website": "https://memeversx.com/",
+ "social": {
+ "blog": "",
+ "twitter": "https://x.com/memevers_x"
+ },
+ "tags": [],
+ "icon": "memeversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq6emnyqqxdrkwjegdulsamrja2tttwpj3wmfs9cmszf.json b/accounts/erd1qqqqqqqqqqqqqpgq6emnyqqxdrkwjegdulsamrja2tttwpj3wmfs9cmszf.json
new file mode 100644
index 0000000000..05e03e7f81
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq6emnyqqxdrkwjegdulsamrja2tttwpj3wmfs9cmszf.json
@@ -0,0 +1,14 @@
+{
+ "name": "ESTAR: xCastle Marketplace",
+ "description": "",
+ "social": {
+ "website": "https://estar.games",
+ "twitter": "https://twitter.com/EstarToken",
+ "whitepaper": "https://whitepaper.estar.games",
+ "email": "contact@estar.games",
+ "discord": "https://discord.com/invite/estar",
+ "telegram": "https://t.me/estartoken"
+ },
+ "tags": ["game", "marketplace"],
+ "icon": "estar"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq6jwjt7yy4jxgcnf988hug870xrg86kh0548stzgy5r.json b/accounts/erd1qqqqqqqqqqqqqpgq6jwjt7yy4jxgcnf988hug870xrg86kh0548stzgy5r.json
index eddaf572ee..7afd1a43ec 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq6jwjt7yy4jxgcnf988hug870xrg86kh0548stzgy5r.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq6jwjt7yy4jxgcnf988hug870xrg86kh0548stzgy5r.json
@@ -17,5 +17,6 @@
"bhat",
"staking",
"flexible2"
- ]
-}
+ ],
+ "icon": "bhero"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq6pg5e8twgk6vvnzxzmvfyrphrfs3e3c3yfkqe6kx0x.json b/accounts/erd1qqqqqqqqqqqqqpgq6pg5e8twgk6vvnzxzmvfyrphrfs3e3c3yfkqe6kx0x.json
index 02e851f5ab..511d326696 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq6pg5e8twgk6vvnzxzmvfyrphrfs3e3c3yfkqe6kx0x.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq6pg5e8twgk6vvnzxzmvfyrphrfs3e3c3yfkqe6kx0x.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Bsc Multisig",
+ "name": "xBridge v2 (deprecated): Bsc Multisig",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq6qeyptq8tck8ytndrjz0mrafe4ugre74tuqqek99jx.json b/accounts/erd1qqqqqqqqqqqqqpgq6qeyptq8tck8ytndrjz0mrafe4ugre74tuqqek99jx.json
new file mode 100644
index 0000000000..dabf446bd2
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq6qeyptq8tck8ytndrjz0mrafe4ugre74tuqqek99jx.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Airdrop xSafe SC",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak", "xSafe"],
+ "icon": ""
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq6r9tallamtyyrya42vy0nsvxudtxpeh9c6cqtm84s9.json b/accounts/erd1qqqqqqqqqqqqqpgq6r9tallamtyyrya42vy0nsvxudtxpeh9c6cqtm84s9.json
index 0d5ca1481d..b6d2d240ac 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq6r9tallamtyyrya42vy0nsvxudtxpeh9c6cqtm84s9.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq6r9tallamtyyrya42vy0nsvxudtxpeh9c6cqtm84s9.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Polygon Multisig",
+ "name": "xBridge v2 (deprecated): Polygon Multisig",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqpa3pdmemt5l2ex80g7pksr2ettt955d66avsz76hyt.json b/accounts/erd1qqqqqqqqqqqqqpgq6ujd72lxyap4qeljj4auy6nwel2cjmvx6avsytceg9.json
similarity index 100%
rename from accounts/erd1qqqqqqqqqqqqqpgqpa3pdmemt5l2ex80g7pksr2ettt955d66avsz76hyt.json
rename to accounts/erd1qqqqqqqqqqqqqpgq6ujd72lxyap4qeljj4auy6nwel2cjmvx6avsytceg9.json
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8.json b/accounts/erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8.json
index 8a03b5abeb..a7ea45424e 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq782vk9ql6q336437n55u7535v8jj50eydn3q7r3apr.json b/accounts/erd1qqqqqqqqqqqqqpgq782vk9ql6q336437n55u7535v8jj50eydn3q7r3apr.json
new file mode 100644
index 0000000000..508e5b039d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq782vk9ql6q336437n55u7535v8jj50eydn3q7r3apr.json
@@ -0,0 +1,6 @@
+{
+ "name": "xBulk: Masstino",
+ "description": "Masstino distribution contract for xBulk.app",
+ "tags": ["commmunity", "bulk"],
+ "icon": "xbulk"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq7gjlvngmzdx84k2tjwdla2k076w7d58cdn3q63am67.json b/accounts/erd1qqqqqqqqqqqqqpgq7gjlvngmzdx84k2tjwdla2k076w7d58cdn3q63am67.json
new file mode 100644
index 0000000000..522f31e4cd
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq7gjlvngmzdx84k2tjwdla2k076w7d58cdn3q63am67.json
@@ -0,0 +1,9 @@
+{
+ "name": "xBulk: OnionXVendorMachine",
+ "description": "OnionXVendorMachine distribution contract for xBulk.app",
+ "tags": [
+ "commmunity",
+ "bulk"
+ ],
+ "icon": "xbulk"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq7h8farhz7dz3tmpk4el28fjmw9x0wqw672kqmh9cke.json b/accounts/erd1qqqqqqqqqqqqqpgq7h8farhz7dz3tmpk4el28fjmw9x0wqw672kqmh9cke.json
new file mode 100644
index 0000000000..8bb636e171
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq7h8farhz7dz3tmpk4el28fjmw9x0wqw672kqmh9cke.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : Staking 1 Month",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgquenuwz852khuxcau49md27wk2qp03v4s6avsdvmxkc.json b/accounts/erd1qqqqqqqqqqqqqpgq7u4y0qle773mcelvnkapjv36pn2whzy36avs2qccja.json
similarity index 100%
rename from accounts/erd1qqqqqqqqqqqqqpgquenuwz852khuxcau49md27wk2qp03v4s6avsdvmxkc.json
rename to accounts/erd1qqqqqqqqqqqqqpgq7u4y0qle773mcelvnkapjv36pn2whzy36avs2qccja.json
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq7uhc2gkkkld4shnt3cyjqers0gjaa36cc6cq6atg99.json b/accounts/erd1qqqqqqqqqqqqqpgq7uhc2gkkkld4shnt3cyjqers0gjaa36cc6cq6atg99.json
index b1b141a354..7205ad9c2e 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq7uhc2gkkkld4shnt3cyjqers0gjaa36cc6cq6atg99.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq7uhc2gkkkld4shnt3cyjqers0gjaa36cc6cq6atg99.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Polygon MultiTransfer",
+ "name": "xBridge v2 (deprecated): Polygon MultiTransfer",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq7xlfzmea55dk540ha9sy7nskcnwq5e7fdn3qpxzqjn.json b/accounts/erd1qqqqqqqqqqqqqpgq7xlfzmea55dk540ha9sy7nskcnwq5e7fdn3qpxzqjn.json
new file mode 100644
index 0000000000..eb7b7bd711
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq7xlfzmea55dk540ha9sy7nskcnwq5e7fdn3qpxzqjn.json
@@ -0,0 +1,12 @@
+{
+ "name": "xBulk: SWSverse",
+ "description": "SWSverse distribution contract for xBulk.app",
+ "social": {
+ "website": "https://xbulk.app"
+ },
+ "tags": [
+ "commmunity",
+ "bulk"
+ ],
+ "icon": "xbulk"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq9xrlefh7w7346fdv6ggusufawe5aqg446avsl6xfqd.json b/accounts/erd1qqqqqqqqqqqqqpgq8372f63glekg7zl22tmx7wzp4drql25r6avs70dmp0.json
similarity index 100%
rename from accounts/erd1qqqqqqqqqqqqqpgq9xrlefh7w7346fdv6ggusufawe5aqg446avsl6xfqd.json
rename to accounts/erd1qqqqqqqqqqqqqpgq8372f63glekg7zl22tmx7wzp4drql25r6avs70dmp0.json
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq83fz9dra9wcrm4tqnx0d3dd645a7y2d0jn5qksle89.json b/accounts/erd1qqqqqqqqqqqqqpgq83fz9dra9wcrm4tqnx0d3dd645a7y2d0jn5qksle89.json
new file mode 100644
index 0000000000..f0a7717108
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq83fz9dra9wcrm4tqnx0d3dd645a7y2d0jn5qksle89.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: NFT Preminter",
+ "description": "Creator of the Bees Collection",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq84sgu59qzjfdh7c20m4newj525nh2cfe27rskglll0.json b/accounts/erd1qqqqqqqqqqqqqpgq84sgu59qzjfdh7c20m4newj525nh2cfe27rskglll0.json
new file mode 100644
index 0000000000..041491754d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq84sgu59qzjfdh7c20m4newj525nh2cfe27rskglll0.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: OnionX",
+ "description": "Official OnionX DAO",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq8538ku69p97lq4eug75y8d6g6yfwhd7c45qs4zvejt.json b/accounts/erd1qqqqqqqqqqqqqpgq8538ku69p97lq4eug75y8d6g6yfwhd7c45qs4zvejt.json
new file mode 100644
index 0000000000..4c48a4836e
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq8538ku69p97lq4eug75y8d6g6yfwhd7c45qs4zvejt.json
@@ -0,0 +1,30 @@
+{
+ "name": "XOXNO: Accumulator",
+ "description": "The XOXNO Accumulator serves as the central hub for XOXNO liquid stakers' utility. This smart contract aggregates $XOXNO tokens and other assets, including eGLD, from various platform activities such as market fees, launchpad fees, lending/borrowing interest and liquidation fees, eGLD liquid staking, and NFT ticketing. At the end of each day, the contract converts all accumulated tokens to $XOXNO by purchasing them from the open market (xExchange). The acquired $XOXNO tokens are then distributed as rewards to the XOXNO: Real Yield Staking, allocated to the treasury, and partially burned. Additionally, it collects all creator royalties, which are distributed and auto-compounded daily.",
+ "social": {
+ "email": "contact@xoxno.com",
+ "website": "https://xoxno.com",
+ "discord": "https://discord.gg/xoxno",
+ "twitter": "https://x.com/XoxnoNetwork",
+ "telegram": "https://xoxno.t.me",
+ "instagram": "https://instagram.com/xoxnoNFTs",
+ "github": "https://github.com/XOXNO",
+ "whitepaper": "https://xoxno.com/whitepaper",
+ "linkedin": "https://linkedin.com/company/xoxno",
+ "youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
+ },
+ "tags": [
+ "XOXNO",
+ "Marketplace",
+ "Launchpad",
+ "Liquid Staking",
+ "Finance",
+ "DeFi",
+ "Ticketing",
+ "L2",
+ "Web2",
+ "Real Yield"
+ ],
+ "icon": "xoxno"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq8dhq0d5t2ck8yagrnwghgwmf38egse2t6avszxwx4m.json b/accounts/erd1qqqqqqqqqqqqqpgq8dhq0d5t2ck8yagrnwghgwmf38egse2t6avszxwx4m.json
new file mode 100644
index 0000000000..c8a41ebab7
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq8dhq0d5t2ck8yagrnwghgwmf38egse2t6avszxwx4m.json
@@ -0,0 +1,25 @@
+{
+ "name": "JEXchange: OMI-WBTC LP",
+ "description": "Technology & Humans.",
+ "social": {
+ "website": "https://peerme.io/at-cromdao",
+ "twitter": "https://x.com/cromdao"
+ },
+ "tags": [
+ "crom",
+ "cromdao",
+ "technology",
+ "humans",
+ "omi",
+ "wbtc",
+ "community",
+ "peerme",
+ "governance",
+ "dao",
+ "multisig",
+ "lp",
+ "liquidity",
+ "pool"
+ ],
+ "icon": "cromdao"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq8nlmvjm8gum6y2kqe0v296kgu8cm4jlemvlsays3ku.json b/accounts/erd1qqqqqqqqqqqqqpgq8nlmvjm8gum6y2kqe0v296kgu8cm4jlemvlsays3ku.json
index 23f41d60f9..8f4d44b7c1 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq8nlmvjm8gum6y2kqe0v296kgu8cm4jlemvlsays3ku.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgq8nlmvjm8gum6y2kqe0v296kgu8cm4jlemvlsays3ku.json
@@ -16,5 +16,5 @@
"boosted",
"staking"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq8s6qy9as7z6ycex880z20h3t4t6tqgz58l0qxld6pn.json b/accounts/erd1qqqqqqqqqqqqqpgq8s6qy9as7z6ycex880z20h3t4t6tqgz58l0qxld6pn.json
new file mode 100644
index 0000000000..de69e14544
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq8s6qy9as7z6ycex880z20h3t4t6tqgz58l0qxld6pn.json
@@ -0,0 +1,10 @@
+{
+ "name": "Bidhouse Eagles",
+ "description": "A premier NFT collection granting exclusive access to the Bidhouse Club. Featuring three rarity tiers - Legendary, Patrimony, and Dynasty - each Eagle NFT offers unique benefits such as significant discounts, priority access to events in the Crypto Forest, and exclusive privileges within the Bidhouse ecosystem. Holders can merge two specific rarities, with the help of an #EAAE NFT, to achieve the coveted Dynasty NFT benefits, unlocking the most comprehensive set of advantages available.",
+ "website": "https://bidhouse.club/",
+ "social": {
+ "blog": "",
+ "twitter": "https://twitter.com/bidhouseclub"
+ },
+ "tags": "[\"Bidhouse\", \"Bidhouse Club\", \"Bidhouse NFT\", \"Crypto Forest\", \"Eagle\"]"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq8sghdk8af6qx3ft5wxnq8mwhvmkzg7sq27rsakjpg5.json b/accounts/erd1qqqqqqqqqqqqqpgq8sghdk8af6qx3ft5wxnq8mwhvmkzg7sq27rsakjpg5.json
new file mode 100644
index 0000000000..3b120c9127
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq8sghdk8af6qx3ft5wxnq8mwhvmkzg7sq27rsakjpg5.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: WOJA X INU",
+ "description": "Auto-sustainable MemeCoin Project with utility for MvX Gamers & NFT degens < WOJA Games > < WOJAX > < WOJAINU > < WOJA LTD > < WSD > < WOJA > < SHTC- Shitcoin >",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq8xqp6c0kzwn3f2c5zsxfex6h69s2x9rwhg4smw0gfc.json b/accounts/erd1qqqqqqqqqqqqqpgq8xqp6c0kzwn3f2c5zsxfex6h69s2x9rwhg4smw0gfc.json
new file mode 100644
index 0000000000..102bac8b71
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq8xqp6c0kzwn3f2c5zsxfex6h69s2x9rwhg4smw0gfc.json
@@ -0,0 +1,16 @@
+{
+ "name": "Protocol: Vega Governance",
+ "description": "",
+ "social": {
+ "website": "http://multiversx.com",
+ "twitter": "https://twitter.com/intent/user?screen_name=multiversx",
+ "telegram": "https://t.me/MultiversX",
+ "youtube": "https://youtube.com/@MultiversXOfficial",
+ "github": "https://github.com/MultiversX"
+ },
+ "tags": [
+ "protocol",
+ "governance"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq8zrazrkn7mqugu9x4fcvukh0xv3ru7dd27rsc3gytt.json b/accounts/erd1qqqqqqqqqqqqqpgq8zrazrkn7mqugu9x4fcvukh0xv3ru7dd27rsc3gytt.json
new file mode 100644
index 0000000000..39754ea37d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq8zrazrkn7mqugu9x4fcvukh0xv3ru7dd27rsc3gytt.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: Super Agent",
+ "description": "\ud83d\udd1c a super agent will create this description \ud83e\udde0",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq904t9q6rrljvzxvm36gq7pfq0cs4f5petuqqekugjc.json b/accounts/erd1qqqqqqqqqqqqqpgq904t9q6rrljvzxvm36gq7pfq0cs4f5petuqqekugjc.json
new file mode 100644
index 0000000000..022730d25f
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq904t9q6rrljvzxvm36gq7pfq0cs4f5petuqqekugjc.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Cex xSafe SC",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak", "xSafe"],
+ "icon": ""
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq97axlw2euvr3kenudu6xlch8zwmz2ah50ufspnfks0.json b/accounts/erd1qqqqqqqqqqqqqpgq97axlw2euvr3kenudu6xlch8zwmz2ah50ufspnfks0.json
new file mode 100644
index 0000000000..24582bfd6b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq97axlw2euvr3kenudu6xlch8zwmz2ah50ufspnfks0.json
@@ -0,0 +1,20 @@
+{
+ "name": "The Cursed Land: Seed",
+ "description": "Vesting TCL Contract",
+ "social": {
+ "website": "https://www.thecursedland.com/",
+ "blog": "https://medium.com/@TheCursedLand",
+ "twitter": "https://twitter.com/TheCursedLand",
+ "discord": "https://discord.gg/NAbQ5WChrs",
+ "whitepaper": "https://whitepaper.thecursedland.com/",
+ "telegram": "https://t.me/TheCursedLand_Community"
+ },
+ "tags": [
+ "tcl",
+ "mmorpg",
+ "thecursedland",
+ "game",
+ "play&earn"
+ ],
+ "icon": "the-cursed-land"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq9fhrp9yzw9z74mt86up6lgj2g2exkldhl3tsrrkt4d.json b/accounts/erd1qqqqqqqqqqqqqpgq9fhrp9yzw9z74mt86up6lgj2g2exkldhl3tsrrkt4d.json
new file mode 100644
index 0000000000..ff19b74d2a
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq9fhrp9yzw9z74mt86up6lgj2g2exkldhl3tsrrkt4d.json
@@ -0,0 +1,13 @@
+{
+ "name": "Tagrity: Registry",
+ "description": "Registers and manages real world assets and services.",
+ "social": {
+ "website": "https://tagrity.io",
+ "email": "hello@tagrity.io",
+ "twitter": "https://twitter.com/Tagrity",
+ "telegram": "https://telegram.tagrity.io",
+ "github": "https://github.com/TagrityHQ"
+ },
+ "tags": ["tagrity", "rwa", "nft", "assets", "nfc"],
+ "icon": "tagrity"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq9sqqfwnqw7kl4wckw3qa8dq62d8lhse9u7zs6a4v8v.json b/accounts/erd1qqqqqqqqqqqqqpgq9sqqfwnqw7kl4wckw3qa8dq62d8lhse9u7zs6a4v8v.json
new file mode 100644
index 0000000000..e7242d2427
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgq9sqqfwnqw7kl4wckw3qa8dq62d8lhse9u7zs6a4v8v.json
@@ -0,0 +1,17 @@
+{
+ "name": "Valoro: Growth Fund",
+ "description": "Valoro Growth is crafted for investors aiming to tap into high-potential projects within the MultiversX ecosystem, with a focus on real-world applications and dynamic growth sectors.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/growth",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "growth"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqa3vfumuxu30xhvucyptjyjla69ftddcup4hqjh662q.json b/accounts/erd1qqqqqqqqqqqqqpgqa3vfumuxu30xhvucyptjyjla69ftddcup4hqjh662q.json
new file mode 100644
index 0000000000..ce50036396
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqa3vfumuxu30xhvucyptjyjla69ftddcup4hqjh662q.json
@@ -0,0 +1,15 @@
+{
+
+ "name": "Emorya Investors NFTs Marketplace",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "emr",
+ "smartContract"
+ ],
+ "icon": "emr"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqa89ts8s3un2tpxcml340phcgypyyr609e3yqv4d8nz.json b/accounts/erd1qqqqqqqqqqqqqpgqa89ts8s3un2tpxcml340phcgypyyr609e3yqv4d8nz.json
new file mode 100644
index 0000000000..5b4a1cac9c
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqa89ts8s3un2tpxcml340phcgypyyr609e3yqv4d8nz.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Bsc Safe",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "bsc",
+ "safe"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqacxghsl47g74n8jfycvdmay8pf8kc08wm0qstpnyhr.json b/accounts/erd1qqqqqqqqqqqqqpgqacxghsl47g74n8jfycvdmay8pf8kc08wm0qstpnyhr.json
index 3e275b9f16..f16cb96e0e 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqacxghsl47g74n8jfycvdmay8pf8kc08wm0qstpnyhr.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqacxghsl47g74n8jfycvdmay8pf8kc08wm0qstpnyhr.json
@@ -16,5 +16,6 @@
"BHero",
"BHAT",
"Launchpad"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqhrm4x0f20q2ftdyzpkfsftpchme5ute06avs3h2gk7.json b/accounts/erd1qqqqqqqqqqqqqpgqadsz6y4feh6fge868tk65hamhf2pwsxt6avsyhtppv.json
similarity index 91%
rename from accounts/erd1qqqqqqqqqqqqqpgqhrm4x0f20q2ftdyzpkfsftpchme5ute06avs3h2gk7.json
rename to accounts/erd1qqqqqqqqqqqqqpgqadsz6y4feh6fge868tk65hamhf2pwsxt6avsyhtppv.json
index 6c2ad72e8b..f134563bbf 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqhrm4x0f20q2ftdyzpkfsftpchme5ute06avs3h2gk7.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqadsz6y4feh6fge868tk65hamhf2pwsxt6avsyhtppv.json
@@ -1,5 +1,5 @@
{
- "name": "JEXchange: JEX-RARE LP",
+ "name": "JEXchange: RARE-JEX LP",
"description": "",
"social": {
"website": "https://jexchange.io/",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqae0wn6q04sz6c3zmz265j4tyuc4dyh88dn3qx8lhcv.json b/accounts/erd1qqqqqqqqqqqqqpgqae0wn6q04sz6c3zmz265j4tyuc4dyh88dn3qx8lhcv.json
new file mode 100644
index 0000000000..a7c32a344b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqae0wn6q04sz6c3zmz265j4tyuc4dyh88dn3qx8lhcv.json
@@ -0,0 +1,6 @@
+{
+ "name": "xBulk: Pittz Incremental Rewards",
+ "description": "Pittz Incremental Rewards distribution contract for xBulk.app",
+ "tags": ["commmunity", "bulk"],
+ "icon": "xbulk"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqaevn6wk073lne5mt6fhjcz3wa5385e07548s7x53us.json b/accounts/erd1qqqqqqqqqqqqqpgqaevn6wk073lne5mt6fhjcz3wa5385e07548s7x53us.json
index 65b3225e26..382f095368 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqaevn6wk073lne5mt6fhjcz3wa5385e07548s7x53us.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqaevn6wk073lne5mt6fhjcz3wa5385e07548s7x53us.json
@@ -16,5 +16,6 @@
"BHero",
"Perks",
"System"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqah0q4k4293m2l272w4zyhqtcyscyhwggwmfs8tdt5f.json b/accounts/erd1qqqqqqqqqqqqqpgqah0q4k4293m2l272w4zyhqtcyscyhwggwmfs8tdt5f.json
new file mode 100644
index 0000000000..b4703b7a3a
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqah0q4k4293m2l272w4zyhqtcyscyhwggwmfs8tdt5f.json
@@ -0,0 +1,14 @@
+{
+ "name": "ESTAR: xCastle Drop",
+ "description": "",
+ "social": {
+ "website": "https://estar.games",
+ "twitter": "https://twitter.com/EstarToken",
+ "whitepaper": "https://whitepaper.estar.games",
+ "email": "contact@estar.games",
+ "discord": "https://discord.com/invite/estar",
+ "telegram": "https://t.me/estartoken"
+ },
+ "tags": ["game", "drop"],
+ "icon": "estar"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqakyy2eaxmv7njv2z6fn4p9makpty3lfpl3tshxnz97.json b/accounts/erd1qqqqqqqqqqqqqpgqakyy2eaxmv7njv2z6fn4p9makpty3lfpl3tshxnz97.json
index f8e1baf219..2cbea6d6f9 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqakyy2eaxmv7njv2z6fn4p9makpty3lfpl3tshxnz97.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqakyy2eaxmv7njv2z6fn4p9makpty3lfpl3tshxnz97.json
@@ -1,5 +1,5 @@
{
- "name": "PeerMe: Bounties",
+ "name": "PeerMe: Bounty Module",
"description": "Facilitates end-to-end journeys of bounty tasks, from creation to successful completion.",
"social": {
"website": "https://peerme.io",
@@ -13,9 +13,5 @@
"github": "https://github.com/PeerMeHQ",
"community": "https://egld.community/projects/PeerMe"
},
- "tags": [
- "peerme",
- "bounties",
- "p2p"
- ]
-}
\ No newline at end of file
+ "tags": ["peerme", "bounties", "p2p"]
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqarunmmq8vwaevtnr304wqkwladqc0n9645qsrwxs7f.json b/accounts/erd1qqqqqqqqqqqqqpgqarunmmq8vwaevtnr304wqkwladqc0n9645qsrwxs7f.json
new file mode 100644
index 0000000000..fcdcae54e0
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqarunmmq8vwaevtnr304wqkwladqc0n9645qsrwxs7f.json
@@ -0,0 +1,30 @@
+{
+ "name": "XOXNO: Airdrop",
+ "description": "XOXNO Marketplace is a decentralized platform for buying, selling, and trading NFTs, tickets and other digital assets.",
+ "social": {
+ "email": "contact@xoxno.com",
+ "website": "https://xoxno.com",
+ "discord": "https://discord.gg/xoxno",
+ "twitter": "https://x.com/XoxnoNetwork",
+ "telegram": "https://xoxno.t.me",
+ "instagram": "https://instagram.com/xoxnoNFTs",
+ "github": "https://github.com/XOXNO",
+ "whitepaper": "https://xoxno.com/whitepaper",
+ "linkedin": "https://linkedin.com/company/xoxno",
+ "youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
+ },
+ "tags": [
+ "XOXNO",
+ "Marketplace",
+ "Launchpad",
+ "Liquid Staking",
+ "Finance",
+ "DeFi",
+ "Ticketing",
+ "L2",
+ "Web2",
+ "Real Yield"
+ ],
+ "icon": "xoxno"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqats3dt3lqkjvnhqk2ywu6f7lvslq734htuqqz4qad5.json b/accounts/erd1qqqqqqqqqqqqqpgqats3dt3lqkjvnhqk2ywu6f7lvslq734htuqqz4qad5.json
new file mode 100644
index 0000000000..1c1526b50b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqats3dt3lqkjvnhqk2ywu6f7lvslq734htuqqz4qad5.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Marketing xSafe SC",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak", "xSafe"],
+ "icon": ""
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqau6phx8tzxe370juj4q2pczpns6sxzh5wmfsg3vk4s.json b/accounts/erd1qqqqqqqqqqqqqpgqau6phx8tzxe370juj4q2pczpns6sxzh5wmfsg3vk4s.json
new file mode 100644
index 0000000000..cd4e98d260
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqau6phx8tzxe370juj4q2pczpns6sxzh5wmfsg3vk4s.json
@@ -0,0 +1,14 @@
+{
+ "name": "ESTAR: xCastle Raid",
+ "description": "",
+ "social": {
+ "website": "https://estar.games",
+ "twitter": "https://twitter.com/EstarToken",
+ "whitepaper": "https://whitepaper.estar.games",
+ "email": "contact@estar.games",
+ "discord": "https://discord.com/invite/estar",
+ "telegram": "https://t.me/estartoken"
+ },
+ "tags": ["game", "raid"],
+ "icon": "estar"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqavnmtujaa9f6qkepexpurphtrhn7r408ldhsvmgr6y.json b/accounts/erd1qqqqqqqqqqqqqpgqavnmtujaa9f6qkepexpurphtrhn7r408ldhsvmgr6y.json
new file mode 100644
index 0000000000..e2acf8cb88
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqavnmtujaa9f6qkepexpurphtrhn7r408ldhsvmgr6y.json
@@ -0,0 +1,16 @@
+{
+ "name": "BHero: Inspir3 Launchpad Phase 2",
+ "description": "Inspir3 Launchpad Phase 2 via BHero Launchpad",
+ "social": {
+ "website": "https://www.inspir3.io",
+ "twitter": "https://x.com/Inspir3NFT",
+ "whitepaper": "https://whitepaper.inspir3.io",
+ "discord": "http://discord.gg/inspir3"
+ },
+ "tags": [
+ "inspir3",
+ "bhero",
+ "launchpad"
+ ],
+ "icon": "bhero"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqc45lurvvvpldzjkgc3lxueyjvp47mju60ufsmw0law.json b/accounts/erd1qqqqqqqqqqqqqpgqc45lurvvvpldzjkgc3lxueyjvp47mju60ufsmw0law.json
new file mode 100644
index 0000000000..8499f41055
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqc45lurvvvpldzjkgc3lxueyjvp47mju60ufsmw0law.json
@@ -0,0 +1,20 @@
+{
+ "name": "The Cursed Land: Treasury",
+ "description": "Vesting TCL Contract",
+ "social": {
+ "website": "https://www.thecursedland.com/",
+ "blog": "https://medium.com/@TheCursedLand",
+ "twitter": "https://twitter.com/TheCursedLand",
+ "discord": "https://discord.gg/NAbQ5WChrs",
+ "whitepaper": "https://whitepaper.thecursedland.com/",
+ "telegram": "https://t.me/TheCursedLand_Community"
+ },
+ "tags": [
+ "tcl",
+ "mmorpg",
+ "thecursedland",
+ "game",
+ "play&earn"
+ ],
+ "icon": "the-cursed-land"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqc6mqe4794v9hz60eynhlku6fpgtrtfgx27rsdxq3et.json b/accounts/erd1qqqqqqqqqqqqqpgqc6mqe4794v9hz60eynhlku6fpgtrtfgx27rsdxq3et.json
new file mode 100644
index 0000000000..139b4b4237
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqc6mqe4794v9hz60eynhlku6fpgtrtfgx27rsdxq3et.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: Tagrity",
+ "description": "Tag and connect your real-world belongings with MultiversX using NFC technology.",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqch70kfltxgd6gf5gc3thqjm5kq2kjjv827rs8g53g6.json b/accounts/erd1qqqqqqqqqqqqqpgqch70kfltxgd6gf5gc3thqjm5kq2kjjv827rs8g53g6.json
new file mode 100644
index 0000000000..90f5b2eb6d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqch70kfltxgd6gf5gc3thqjm5kq2kjjv827rs8g53g6.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: MXDOGE Community",
+ "description": "The most vibrant, happy and loyal community!",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqcl3dytkacwp0kkxwmykvag50rh5z27kw45qs5dmpk2.json b/accounts/erd1qqqqqqqqqqqqqpgqcl3dytkacwp0kkxwmykvag50rh5z27kw45qs5dmpk2.json
new file mode 100644
index 0000000000..63e21b7ea4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqcl3dytkacwp0kkxwmykvag50rh5z27kw45qs5dmpk2.json
@@ -0,0 +1,30 @@
+{
+ "name": "XOXNO: Vested Tokens Manager",
+ "description": "The Vested Tokens Manager is the primary contract responsible for creating, distributing, and releasing vested XOXNO tokens. This contract holds all the real XOXNO tokens that are locked and excluded from the circulating supply.",
+ "social": {
+ "email": "contact@xoxno.com",
+ "website": "https://xoxno.com",
+ "discord": "https://discord.gg/xoxno",
+ "twitter": "https://x.com/XoxnoNetwork",
+ "telegram": "https://xoxno.t.me",
+ "instagram": "https://instagram.com/xoxnoNFTs",
+ "github": "https://github.com/XOXNO",
+ "whitepaper": "https://xoxno.com/whitepaper",
+ "linkedin": "https://linkedin.com/company/xoxno",
+ "youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
+ },
+ "tags": [
+ "XOXNO",
+ "Marketplace",
+ "Launchpad",
+ "Liquid Staking",
+ "Finance",
+ "DeFi",
+ "Ticketing",
+ "L2",
+ "Web2",
+ "Real Yield"
+ ],
+ "icon": "xoxno"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqcpratednmrj5gttfqq52wq8r683tmk56f0kqzv05wv.json b/accounts/erd1qqqqqqqqqqqqqpgqcpratednmrj5gttfqq52wq8r683tmk56f0kqzv05wv.json
new file mode 100644
index 0000000000..e073c1e27b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqcpratednmrj5gttfqq52wq8r683tmk56f0kqzv05wv.json
@@ -0,0 +1,14 @@
+{
+ "name": "A1X Vesting by Pulsar Money",
+ "description": "AI Nexus Vesting contract by Pulsar Money.\n\nPayments reimagined.",
+ "website": "https://beta.pulsar.money/",
+ "social": {
+ "blog": "",
+ "twitter": "https://x.com/PulsarMoneyApp"
+ },
+ "tags": [
+ "A1x",
+ "Pulsar Money",
+ "AI Nexus"
+ ]
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqcs6cwyy6s5v9ggcx3gz4zhyu6k60gvya72kqqagntm.json b/accounts/erd1qqqqqqqqqqqqqpgqcs6cwyy6s5v9ggcx3gz4zhyu6k60gvya72kqqagntm.json
new file mode 100644
index 0000000000..9bef038fb0
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqcs6cwyy6s5v9ggcx3gz4zhyu6k60gvya72kqqagntm.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : Staking proxy",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqd0e2nwxe5nx3hu6zupmzy0mhgyvrqmtv4fvsff5vsl.json b/accounts/erd1qqqqqqqqqqqqqpgqd0e2nwxe5nx3hu6zupmzy0mhgyvrqmtv4fvsff5vsl.json
new file mode 100644
index 0000000000..8c67525b6c
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqd0e2nwxe5nx3hu6zupmzy0mhgyvrqmtv4fvsff5vsl.json
@@ -0,0 +1,16 @@
+{
+ "name": "AshSwap: XOXNO/LXOXNO Pool",
+ "description": "",
+ "social": {
+ "website": "https://ashswap.io",
+ "email": "hello@ashswap.io",
+ "blog": "https://medium.com/@ashswap",
+ "twitter": "https://twitter.com/ash_swap",
+ "telegram": "https://t.me/ash_swap",
+ "discord": "https://discord.gg/apmhYCPDbW",
+ "facebook": "https://www.facebook.com/ashswap.io",
+ "commmunity": "https://egld.community/projects/ashswap"
+ },
+ "tags": ["ashswap", "lending-pool"],
+ "icon": "ashswap"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqd245fd2cycl5u4gj5tgv8n4qzqz5x2us0ufsv3y0sp.json b/accounts/erd1qqqqqqqqqqqqqpgqd245fd2cycl5u4gj5tgv8n4qzqz5x2us0ufsv3y0sp.json
new file mode 100644
index 0000000000..b2f1f65b90
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqd245fd2cycl5u4gj5tgv8n4qzqz5x2us0ufsv3y0sp.json
@@ -0,0 +1,20 @@
+{
+ "name": "The Cursed Land: Advisors/Team",
+ "description": "Vesting TCL Contract",
+ "social": {
+ "website": "https://www.thecursedland.com/",
+ "blog": "https://medium.com/@TheCursedLand",
+ "twitter": "https://twitter.com/TheCursedLand",
+ "discord": "https://discord.gg/NAbQ5WChrs",
+ "whitepaper": "https://whitepaper.thecursedland.com/",
+ "telegram": "https://t.me/TheCursedLand_Community"
+ },
+ "tags": [
+ "tcl",
+ "mmorpg",
+ "thecursedland",
+ "game",
+ "play&earn"
+ ],
+ "icon": "the-cursed-land"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqd9azvcr2a9c953a2gfdm5f7ty49ycqa7gmus63aepv.json b/accounts/erd1qqqqqqqqqqqqqpgqd9azvcr2a9c953a2gfdm5f7ty49ycqa7gmus63aepv.json
new file mode 100644
index 0000000000..1322e7717f
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqd9azvcr2a9c953a2gfdm5f7ty49ycqa7gmus63aepv.json
@@ -0,0 +1,12 @@
+{
+ "name": "BOBER Battle",
+ "description": "BoberBattle.com - 1v1 PvP coin toss on MvX. Powered by Project X. Win or lose, it's fun!",
+ "social": {
+ "website": "https://boberbattle.com/"
+ },
+ "tags": [
+ "game",
+ "bober"
+ ],
+ "icon": "bober-battle"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqdswrk3wvcvq6pd07w8nnd2xwvc490whl27rs6jr8rl.json b/accounts/erd1qqqqqqqqqqqqqpgqdswrk3wvcvq6pd07w8nnd2xwvc490whl27rs6jr8rl.json
new file mode 100644
index 0000000000..622220d483
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqdswrk3wvcvq6pd07w8nnd2xwvc490whl27rs6jr8rl.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: GalacticXsocios",
+ "description": "A Web3 space where football meets blockchain tech, with NFTs reflecting real players and clubs, redefining fantasy football by bringing real emotions and rewards to fans through digital ownership.",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqdu68ux62vremraxdjx499584hlfqafupdn3qg52l2e.json b/accounts/erd1qqqqqqqqqqqqqpgqdu68ux62vremraxdjx499584hlfqafupdn3qg52l2e.json
new file mode 100644
index 0000000000..3ca562e184
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqdu68ux62vremraxdjx499584hlfqafupdn3qg52l2e.json
@@ -0,0 +1,12 @@
+{
+ "name": "xBulk: GalacticXbet",
+ "description": "GalacticXbet distribution contract for xBulk.app",
+ "social": {
+ "website": "https://xbulk.app"
+ },
+ "tags": [
+ "commmunity",
+ "bulk"
+ ],
+ "icon": "xbulk"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqdztpqvxpwf6f9tkmrdfqdn737z7vk6r86avsna4nsd.json b/accounts/erd1qqqqqqqqqqqqqpgqdztpqvxpwf6f9tkmrdfqdn737z7vk6r86avsna4nsd.json
new file mode 100644
index 0000000000..0d586e07ab
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqdztpqvxpwf6f9tkmrdfqdn737z7vk6r86avsna4nsd.json
@@ -0,0 +1,25 @@
+{
+ "name": "JEXchange: OMI-USDC LP",
+ "description": "Technology & Humans.",
+ "social": {
+ "website": "https://peerme.io/at-cromdao",
+ "twitter": "https://x.com/cromdao"
+ },
+ "tags": [
+ "crom",
+ "cromdao",
+ "technology",
+ "humans",
+ "omi",
+ "usdc",
+ "community",
+ "peerme",
+ "governance",
+ "dao",
+ "multisig",
+ "lp",
+ "liquidity",
+ "pool"
+ ],
+ "icon": "cromdao"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqe2yknk9rz2ss8hrprzwymsyvzh58zlvw548sv5mk67.json b/accounts/erd1qqqqqqqqqqqqqpgqe2yknk9rz2ss8hrprzwymsyvzh58zlvw548sv5mk67.json
index d2a5721356..c626e2ae15 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqe2yknk9rz2ss8hrprzwymsyvzh58zlvw548sv5mk67.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqe2yknk9rz2ss8hrprzwymsyvzh58zlvw548sv5mk67.json
@@ -17,5 +17,6 @@
"locking",
"points",
"M18"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqed4re4upmy8qmtpwfqk7jfkepduyn7y0yfkq4ew7s6.json b/accounts/erd1qqqqqqqqqqqqqpgqed4re4upmy8qmtpwfqk7jfkepduyn7y0yfkq4ew7s6.json
index de80e305d9..7a87c7dcc5 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqed4re4upmy8qmtpwfqk7jfkepduyn7y0yfkq4ew7s6.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqed4re4upmy8qmtpwfqk7jfkepduyn7y0yfkq4ew7s6.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Gas Price Aggregator",
+ "name": "xBridge v2 (deprecated): Gas Price Aggregator",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqedhnrfsxc2anl0t6ej6sfakpjqn8w4h7g34skzc9f0.json b/accounts/erd1qqqqqqqqqqqqqpgqedhnrfsxc2anl0t6ej6sfakpjqn8w4h7g34skzc9f0.json
new file mode 100644
index 0000000000..ff6e05bd0f
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqedhnrfsxc2anl0t6ej6sfakpjqn8w4h7g34skzc9f0.json
@@ -0,0 +1,11 @@
+{
+ "name": "OneDex: DCA",
+ "description": "Smart Contract used for the Dollar Cost Averaging feature of OneDex.",
+ "website": "https://onedex.app/",
+ "social": {
+ "blog": "https://onedex.app/",
+ "twitter": "https://x.com/OneDex_X"
+ },
+ "icon": "one",
+ "tags": []
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqedsn6sfnndtlv5wtpdem2jll72fyprxfjn5qy4g3ps.json b/accounts/erd1qqqqqqqqqqqqqpgqedsn6sfnndtlv5wtpdem2jll72fyprxfjn5qy4g3ps.json
new file mode 100644
index 0000000000..2670f5a6b0
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqedsn6sfnndtlv5wtpdem2jll72fyprxfjn5qy4g3ps.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: Basic Rewards",
+ "description": "Vault for the basic Rewards",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqegr4sq8w9xvaf5r20dnc8zggyn0ahc4grpeqdcfyu7.json b/accounts/erd1qqqqqqqqqqqqqpgqegr4sq8w9xvaf5r20dnc8zggyn0ahc4grpeqdcfyu7.json
new file mode 100644
index 0000000000..b42ab8dc66
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqegr4sq8w9xvaf5r20dnc8zggyn0ahc4grpeqdcfyu7.json
@@ -0,0 +1,14 @@
+{
+ "name": "xKingNFTx: xBoost Merge",
+ "social": {
+ "website": "https://www.xkingnftx.com",
+ "blog": "https://discord.gg/Xq9QBjxf4M",
+ "twitter": "https://twitter.com/xKingNFTx",
+ "discord": "https://discord.gg/UZ46h9UCNa"
+ },
+ "tags": [
+ "xking",
+ "nft"
+ ],
+ "icon": "xking"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqeuh8nven2epv29cf4et3425620s2kmp927rsrc2c4k.json b/accounts/erd1qqqqqqqqqqqqqpgqeuh8nven2epv29cf4et3425620s2kmp927rsrc2c4k.json
new file mode 100644
index 0000000000..7d2261d1df
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqeuh8nven2epv29cf4et3425620s2kmp927rsrc2c4k.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: CROM Framework Rewards",
+ "description": "Framework Rewards: 3,000,000 $OMI over a 3 years period",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqexjtx7j6dpkg8m8mq9zkxmz7sn8dwsjcp4hqspsd3y.json b/accounts/erd1qqqqqqqqqqqqqpgqexjtx7j6dpkg8m8mq9zkxmz7sn8dwsjcp4hqspsd3y.json
new file mode 100644
index 0000000000..2681dcf65a
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqexjtx7j6dpkg8m8mq9zkxmz7sn8dwsjcp4hqspsd3y.json
@@ -0,0 +1,15 @@
+{
+
+ "name": "Emorya NFTs Marketplace",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "emr",
+ "smartContract"
+ ],
+ "icon": "emr"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqf2cu60ffz9v68r0h62sufxxf67n7xprue3yq4ap4k2.json b/accounts/erd1qqqqqqqqqqqqqpgqf2cu60ffz9v68r0h62sufxxf67n7xprue3yq4ap4k2.json
new file mode 100644
index 0000000000..9e41278df6
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqf2cu60ffz9v68r0h62sufxxf67n7xprue3yq4ap4k2.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Ethereum Safe",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "ethereum",
+ "safe"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqf7f5syzk5d8vqqsstsk0rf07wpvrdxu578ssm302xz.json b/accounts/erd1qqqqqqqqqqqqqpgqf7f5syzk5d8vqqsstsk0rf07wpvrdxu578ssm302xz.json
new file mode 100644
index 0000000000..5830696102
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqf7f5syzk5d8vqqsstsk0rf07wpvrdxu578ssm302xz.json
@@ -0,0 +1,16 @@
+{
+ "name": "Hatom: MEX Interest Rate model",
+ "description": "Hatom's MEX Lending & Borrowing Protocol Interest Rate Model",
+ "social": {
+ "website": "https://hatom.com",
+ "discord": "https://discord.com/invite/WekwfUDXGp",
+ "github": "https://github.com/HatomProtocol",
+ "blog": "https://blog.hatom.com",
+ "telegram": "https://t.me/HatomLabs",
+ "twitter": "https://twitter.com/HatomProtocol",
+ "whitepaper": "https://docs.hatom.com/getting-started/learn-more-about-hatom-token/whitepaper",
+ "linkedin": "https://www.linkedin.com/company/hatomlabs"
+ },
+ "tags": ["hatom", "money-market", "lending", "borrowing", "interest-rate"],
+ "icon": "hatom-lending"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqfnarkmhu6tgjgtpenya0dek54jcwkak23g6su00nwn.json b/accounts/erd1qqqqqqqqqqqqqpgqfnarkmhu6tgjgtpenya0dek54jcwkak23g6su00nwn.json
index 4b2fb92366..21281857e9 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqfnarkmhu6tgjgtpenya0dek54jcwkak23g6su00nwn.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqfnarkmhu6tgjgtpenya0dek54jcwkak23g6su00nwn.json
@@ -1,14 +1,13 @@
{
- "name": "Arda: Swap",
+ "name": "xBoard: Swap",
"description": "",
"social": {
- "website": "https://arda.run",
- "twitter": "https://twitter.com/arda_project",
- "telegram": "https://t.co/PkTUYkUjtk",
- "blog": "https://docs.arda.run"
+ "website": "https://xboard.run",
+ "twitter": "https://x.com/xboard_app",
+ "telegram": "https://t.me/xboard_app"
},
"tags": [
- "arda",
+ "xboard",
"swap"
]
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqfw5l86j2g0qsn9r3xfp89l692326qa44dn3ql4txsr.json b/accounts/erd1qqqqqqqqqqqqqpgqfw5l86j2g0qsn9r3xfp89l692326qa44dn3ql4txsr.json
new file mode 100644
index 0000000000..c3d88fe5a5
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqfw5l86j2g0qsn9r3xfp89l692326qa44dn3ql4txsr.json
@@ -0,0 +1,20 @@
+{
+ "name": "E.V Ecosystem: Badge Staking Pool",
+ "social": {
+ "website": "https://www.eventivivi.it/nft",
+ "email": "evnftreal@gmail.com",
+ "twitter": "https://twitter.com/EVNFTreal",
+ "instagram": "https://www.instagram.com/evnftreal",
+ "discord": "https://discord.gg/63w5zDujzA",
+ "dApp": "https://dapp.eventivivi.it",
+ "facebook": "https://www.facebook.com/evnftreal",
+ "telegram": "https://t.me/evnftreal",
+ "tiktok": "https://www.tiktok.com/@evnftreal",
+ "whitepaper": "https://e-v-ecosystem.gitbook.io/e.v-ecosystem"
+ },
+ "tags": [
+ "ev",
+ "nft"
+ ],
+ "icon": "ev"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqg0spha3en5yyaegv97u03wh4zf834ttt72kq5wjaht.json b/accounts/erd1qqqqqqqqqqqqqpgqg0spha3en5yyaegv97u03wh4zf834ttt72kq5wjaht.json
new file mode 100644
index 0000000000..4df9578dc3
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqg0spha3en5yyaegv97u03wh4zf834ttt72kq5wjaht.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : Staking 12 Month",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqg0sshhkwaxz8fxu47z4svrmp48mzydjlptzsdhxjpd.json b/accounts/erd1qqqqqqqqqqqqqpgqg0sshhkwaxz8fxu47z4svrmp48mzydjlptzsdhxjpd.json
new file mode 100644
index 0000000000..669dd6b4b6
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqg0sshhkwaxz8fxu47z4svrmp48mzydjlptzsdhxjpd.json
@@ -0,0 +1,11 @@
+{
+ "name": "FunDex",
+ "description": "Launch your memecoin on MultiversX easily in a few simple steps and explore others with Fundex",
+ "website": "https://fundex.fun/",
+ "social": {
+ "blog": "",
+ "twitter": "https://x.com/dex_funx"
+ },
+ "tags": [],
+ "icon": "FunDex"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqg9fa0dmpn8fu3fnleeqn5zt8rl8mdqjkys5s2gtas7.json b/accounts/erd1qqqqqqqqqqqqqpgqg9fa0dmpn8fu3fnleeqn5zt8rl8mdqjkys5s2gtas7.json
index e541e02a9b..a011152eaf 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqg9fa0dmpn8fu3fnleeqn5zt8rl8mdqjkys5s2gtas7.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqg9fa0dmpn8fu3fnleeqn5zt8rl8mdqjkys5s2gtas7.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqgcqfwc6k08jm0mnnjs4mdqaxtq98meu627rskt9rea.json b/accounts/erd1qqqqqqqqqqqqqpgqgcqfwc6k08jm0mnnjs4mdqaxtq98meu627rskt9rea.json
new file mode 100644
index 0000000000..809b2fd8eb
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqgcqfwc6k08jm0mnnjs4mdqaxtq98meu627rskt9rea.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: The Ducks",
+ "description": "We are THE OG NFT community on MultiversX (formerly Elrond Ducks).5,000 PFP ducks living in a DAO pond. We like to have fun, play games, do giveaways, and even have our own animated show!",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqgdf6vk43c2jxk4a6nw2adv8vmnpqagegtxfqmf8et2.json b/accounts/erd1qqqqqqqqqqqqqpgqgdf6vk43c2jxk4a6nw2adv8vmnpqagegtxfqmf8et2.json
new file mode 100644
index 0000000000..d52129ee2b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqgdf6vk43c2jxk4a6nw2adv8vmnpqagegtxfqmf8et2.json
@@ -0,0 +1,11 @@
+{
+ "name": "Middle Staking : Stake Contract",
+ "description": "Stake $MID and other tokens to earn rewards",
+ "social": {
+ "website": "https://www.middlestaking.fr/",
+ "twitter": "MiddleStaking",
+ "telegram": "https://t.me/middlestaking"
+ },
+ "tags": ["middlestaking", "staking", "contract"],
+ "icon": "middle"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqgheln00y7mtyr0kqms4qt4ynz0nrv2czxp7slkap30.json b/accounts/erd1qqqqqqqqqqqqqpgqgheln00y7mtyr0kqms4qt4ynz0nrv2czxp7slkap30.json
new file mode 100644
index 0000000000..3c3f51b9f0
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqgheln00y7mtyr0kqms4qt4ynz0nrv2czxp7slkap30.json
@@ -0,0 +1,14 @@
+{
+ "name": "xKingNFTx: xTrading Staking Pool",
+ "social": {
+ "website": "https://www.xkingnftx.com",
+ "blog": "https://discord.gg/Xq9QBjxf4M",
+ "twitter": "https://twitter.com/xKingNFTx",
+ "discord": "https://discord.gg/UZ46h9UCNa"
+ },
+ "tags": [
+ "xking",
+ "nft"
+ ],
+ "icon": "xking"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqgywwlj0s9wj4r8cz4d0t90j2hu0apdltdn3qeecxu0.json b/accounts/erd1qqqqqqqqqqqqqpgqgywwlj0s9wj4r8cz4d0t90j2hu0apdltdn3qeecxu0.json
new file mode 100644
index 0000000000..b63f5b769d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqgywwlj0s9wj4r8cz4d0t90j2hu0apdltdn3qeecxu0.json
@@ -0,0 +1,12 @@
+{
+ "name": "xBulk: SCAM ALERT (check @pepeversx on twitter)",
+ "description": "SCAM ALERT (check @pepeversx on twitter) distribution contract for xBulk.app",
+ "social": {
+ "website": "https://xbulk.app"
+ },
+ "tags": [
+ "commmunity",
+ "bulk"
+ ],
+ "icon": "xbulk"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqh3e67630mm7t6awvgdrh78ws9hfh85tz78sssecur8.json b/accounts/erd1qqqqqqqqqqqqqpgqh3e67630mm7t6awvgdrh78ws9hfh85tz78sssecur8.json
new file mode 100644
index 0000000000..a0d5eea279
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqh3e67630mm7t6awvgdrh78ws9hfh85tz78sssecur8.json
@@ -0,0 +1,13 @@
+{
+ "name": "Hatom: Price Aggregator v2",
+ "description": "Hatom's Price Aggregator v2 module",
+ "tags": [
+ "hatom",
+ "money-market",
+ "lending",
+ "borrowing",
+ "oracle",
+ "pricing"
+ ],
+ "icon": "hatom-lending"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqh5njwzpqwg7dwvxhqjt22xa0jeqmd7l9548sunvkeq.json b/accounts/erd1qqqqqqqqqqqqqpgqh5njwzpqwg7dwvxhqjt22xa0jeqmd7l9548sunvkeq.json
index e5bed53520..18446499f0 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqh5njwzpqwg7dwvxhqjt22xa0jeqmd7l9548sunvkeq.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqh5njwzpqwg7dwvxhqjt22xa0jeqmd7l9548sunvkeq.json
@@ -15,5 +15,6 @@
"tags": [
"bhero",
"launchpad"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqh8l2e6z9nj2557qplj9cd2hxr69pcvkl27rs6x65sh.json b/accounts/erd1qqqqqqqqqqqqqpgqh8l2e6z9nj2557qplj9cd2hxr69pcvkl27rs6x65sh.json
new file mode 100644
index 0000000000..8c4c30e791
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqh8l2e6z9nj2557qplj9cd2hxr69pcvkl27rs6x65sh.json
@@ -0,0 +1,18 @@
+{
+ "name": "PeerMe: @cromdao",
+ "description": "Technology & Humans",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": ["peerme", "governance", "dao", "multisig"],
+ "icon": "peerme"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqhluk66a0ll35ujuytryvfn9wcfmq8l6e27rskw9qps.json b/accounts/erd1qqqqqqqqqqqqqpgqhluk66a0ll35ujuytryvfn9wcfmq8l6e27rskw9qps.json
new file mode 100644
index 0000000000..5d88d092ec
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqhluk66a0ll35ujuytryvfn9wcfmq8l6e27rskw9qps.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: QUBE house",
+ "description": "Official QUBE DAO",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqhs7qdry2fmeau35mzgk89yjfwls3dy59e3yqk48rtc.json b/accounts/erd1qqqqqqqqqqqqqpgqhs7qdry2fmeau35mzgk89yjfwls3dy59e3yqk48rtc.json
new file mode 100644
index 0000000000..5607b7cbe1
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqhs7qdry2fmeau35mzgk89yjfwls3dy59e3yqk48rtc.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Ethereum SC calls executor",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "bsc",
+ "multitransfer"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqhst80r3txn7wa25v62ejngcj0ptm9m8v6avsskjz5k.json b/accounts/erd1qqqqqqqqqqqqqpgqhst80r3txn7wa25v62ejngcj0ptm9m8v6avsskjz5k.json
new file mode 100644
index 0000000000..fc0ac2edc4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqhst80r3txn7wa25v62ejngcj0ptm9m8v6avsskjz5k.json
@@ -0,0 +1,25 @@
+{
+ "name": "JEXchange: OMI-WEGLD LP",
+ "description": "Technology & Humans.",
+ "social": {
+ "website": "https://peerme.io/at-cromdao",
+ "twitter": "https://x.com/cromdao"
+ },
+ "tags": [
+ "crom",
+ "cromdao",
+ "technology",
+ "humans",
+ "omi",
+ "wegld",
+ "community",
+ "peerme",
+ "governance",
+ "dao",
+ "multisig",
+ "lp",
+ "liquidity",
+ "pool"
+ ],
+ "icon": "cromdao"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqhxkc48lt5uv2hejj4wtjqvugfm4wgv6gyfkqw0uuxl.json b/accounts/erd1qqqqqqqqqqqqqpgqhxkc48lt5uv2hejj4wtjqvugfm4wgv6gyfkqw0uuxl.json
index 9e41278df6..9c3ee814c5 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqhxkc48lt5uv2hejj4wtjqvugfm4wgv6gyfkqw0uuxl.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqhxkc48lt5uv2hejj4wtjqvugfm4wgv6gyfkqw0uuxl.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Ethereum Safe",
+ "name": "xBridge v2 (deprecated): Ethereum Safe",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqdj70la9z3x22exu7hmhws0a6z0waf92y27rsgudkq5.json b/accounts/erd1qqqqqqqqqqqqqpgqjhn0rrta3hceyguqlmkqgklxc0eh0r5rl3tsv6a9k0.json
similarity index 75%
rename from accounts/erd1qqqqqqqqqqqqqpgqdj70la9z3x22exu7hmhws0a6z0waf92y27rsgudkq5.json
rename to accounts/erd1qqqqqqqqqqqqqpgqjhn0rrta3hceyguqlmkqgklxc0eh0r5rl3tsv6a9k0.json
index a4d487f694..229ac9c941 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqdj70la9z3x22exu7hmhws0a6z0waf92y27rsgudkq5.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqjhn0rrta3hceyguqlmkqgklxc0eh0r5rl3tsv6a9k0.json
@@ -1,6 +1,6 @@
{
- "name": "PeerMe: Earn Module",
- "description": "Enables the stake-for-profit-share program by PeerMe and feeds the official PeerMe DAO with voting power information.",
+ "name": "PeerMe: Stake & Earn Module",
+ "description": "Enables users to stake and earn from MultiSigs and DAOs.",
"social": {
"website": "https://peerme.io",
"email": "hello@peerme.io",
@@ -16,8 +16,11 @@
"tags": [
"peerme",
"dao",
+ "multisig",
"governance",
"staking",
- "profitshare"
+ "earn",
+ "distribution",
+ "dividends"
]
-}
\ No newline at end of file
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqjkk9srjerx2ssy298e2z0jzxvkw7qpgt27rs7mn7h6.json b/accounts/erd1qqqqqqqqqqqqqpgqjkk9srjerx2ssy298e2z0jzxvkw7qpgt27rs7mn7h6.json
new file mode 100644
index 0000000000..d0e833a2fc
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqjkk9srjerx2ssy298e2z0jzxvkw7qpgt27rs7mn7h6.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: Valoro Team",
+ "description": "The Multisig SC for Valoro Protocol owners.",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqjq0vnjqj52vf0ft8x87jkdma78y28l2ze3yqzlms5h.json b/accounts/erd1qqqqqqqqqqqqqpgqjq0vnjqj52vf0ft8x87jkdma78y28l2ze3yqzlms5h.json
new file mode 100644
index 0000000000..74ab176ba8
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqjq0vnjqj52vf0ft8x87jkdma78y28l2ze3yqzlms5h.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Ethereum MultiTransfer",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "ethereum",
+ "multitransfer"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqjsjkkllj3lk2mp3f5rg94xxj6dhz3wgu6avs8zrcjm.json b/accounts/erd1qqqqqqqqqqqqqpgqjsjkkllj3lk2mp3f5rg94xxj6dhz3wgu6avs8zrcjm.json
new file mode 100644
index 0000000000..5992f9d27e
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqjsjkkllj3lk2mp3f5rg94xxj6dhz3wgu6avs8zrcjm.json
@@ -0,0 +1,11 @@
+{
+ "name": "xMPH-BOBY Liquidity Pool",
+ "description": "xMorPH - BOBY liquidity pool",
+ "tags": [
+ "xMorPH",
+ "liquidity",
+ "swap",
+ "BOBY"
+ ],
+ "icon": "bobyxmph"
+ }
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqk9yf8y32wzwupjy7724j5wm3rk737ph20ufslxuppr.json b/accounts/erd1qqqqqqqqqqqqqpgqk9yf8y32wzwupjy7724j5wm3rk737ph20ufslxuppr.json
new file mode 100644
index 0000000000..d555349a9b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqk9yf8y32wzwupjy7724j5wm3rk737ph20ufslxuppr.json
@@ -0,0 +1,20 @@
+{
+ "name": "The Cursed Land: Seed Zero",
+ "description": "Vesting TCL Contract",
+ "social": {
+ "website": "https://www.thecursedland.com/",
+ "blog": "https://medium.com/@TheCursedLand",
+ "twitter": "https://twitter.com/TheCursedLand",
+ "discord": "https://discord.gg/NAbQ5WChrs",
+ "whitepaper": "https://whitepaper.thecursedland.com/",
+ "telegram": "https://t.me/TheCursedLand_Community"
+ },
+ "tags": [
+ "tcl",
+ "mmorpg",
+ "thecursedland",
+ "game",
+ "play&earn"
+ ],
+ "icon": "the-cursed-land"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqkcllq2mgrnshhf543ese6gww3y2fjgs6u7zsmq34k6.json b/accounts/erd1qqqqqqqqqqqqqpgqkcllq2mgrnshhf543ese6gww3y2fjgs6u7zsmq34k6.json
new file mode 100644
index 0000000000..fad79a5753
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqkcllq2mgrnshhf543ese6gww3y2fjgs6u7zsmq34k6.json
@@ -0,0 +1,18 @@
+{
+ "name": "Valoro: Fees Distributor",
+ "description": "Valoro's SC for collecting fees from Funds orders and distributing them to the shareholders.",
+ "social": {
+ "website": "https://valoro.fund/",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-funds",
+ "investments",
+ "defi",
+ "fees-distributor"
+ ],
+ "icon": "valoro"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqkwlmxrp32m0zh8h00xsq29fapzt793pl548s6a3kp4.json b/accounts/erd1qqqqqqqqqqqqqpgqkwlmxrp32m0zh8h00xsq29fapzt793pl548s6a3kp4.json
index 1f0fc8d3e3..4354c0ef69 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqkwlmxrp32m0zh8h00xsq29fapzt793pl548s6a3kp4.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqkwlmxrp32m0zh8h00xsq29fapzt793pl548s6a3kp4.json
@@ -17,5 +17,6 @@
"dreamy",
"whales",
"launchpad"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgql2gmsgmgfhhmkzawhdvfv9d2j2ddf70aah0syj4psk.json b/accounts/erd1qqqqqqqqqqqqqpgql2gmsgmgfhhmkzawhdvfv9d2j2ddf70aah0syj4psk.json
new file mode 100644
index 0000000000..626cd837a4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgql2gmsgmgfhhmkzawhdvfv9d2j2ddf70aah0syj4psk.json
@@ -0,0 +1,30 @@
+{
+ "name": "XOXNO: On-Chain Prices Query",
+ "description": "On-Chain Prices Query is a utility smart contract viewer designed to fetch all token pairs listed across different decentralized exchanges (DEXs) and return their liquidity reserves. This contract provides users with real-time data on liquidity pools, facilitating informed trading and investment decisions.",
+ "social": {
+ "email": "contact@xoxno.com",
+ "website": "https://xoxno.com",
+ "discord": "https://discord.gg/xoxno",
+ "twitter": "https://x.com/XoxnoNetwork",
+ "telegram": "https://xoxno.t.me",
+ "instagram": "https://instagram.com/xoxnoNFTs",
+ "github": "https://github.com/XOXNO",
+ "whitepaper": "https://xoxno.com/whitepaper",
+ "linkedin": "https://linkedin.com/company/xoxno",
+ "youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
+ },
+ "tags": [
+ "XOXNO",
+ "Marketplace",
+ "Launchpad",
+ "Liquid Staking",
+ "Finance",
+ "DeFi",
+ "Ticketing",
+ "L2",
+ "Web2",
+ "Real Yield"
+ ],
+ "icon": "xoxno"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgql3z3jyvl76uj8ta04hxp4ar6h32ekntfjn5qlvut93.json b/accounts/erd1qqqqqqqqqqqqqpgql3z3jyvl76uj8ta04hxp4ar6h32ekntfjn5qlvut93.json
new file mode 100644
index 0000000000..aeb4264aa4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgql3z3jyvl76uj8ta04hxp4ar6h32ekntfjn5qlvut93.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: Boosted Rewards",
+ "description": "Vault for the boosted Rewards",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgql9z9vm8d599ya2r9seklpkcas6qmude4mvlsgrj7hv.json b/accounts/erd1qqqqqqqqqqqqqpgql9z9vm8d599ya2r9seklpkcas6qmude4mvlsgrj7hv.json
index 568a152f40..d9dc7390fc 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgql9z9vm8d599ya2r9seklpkcas6qmude4mvlsgrj7hv.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgql9z9vm8d599ya2r9seklpkcas6qmude4mvlsgrj7hv.json
@@ -15,5 +15,5 @@
"exchange",
"staking"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqljlay6fn09jhvgfhwqll3xfgva382gkxmp3s4wmt7f.json b/accounts/erd1qqqqqqqqqqqqqpgqljlay6fn09jhvgfhwqll3xfgva382gkxmp3s4wmt7f.json
new file mode 100644
index 0000000000..aae2a840be
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqljlay6fn09jhvgfhwqll3xfgva382gkxmp3s4wmt7f.json
@@ -0,0 +1,14 @@
+{
+ "name": "EMR Hyperdeflation SC",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "emr",
+ "smartContract"
+ ],
+ "icon": "emr"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqlrhlz8hdfalmhku6ln60r3836suz8xf527rs7w2nmy.json b/accounts/erd1qqqqqqqqqqqqqpgqlrhlz8hdfalmhku6ln60r3836suz8xf527rs7w2nmy.json
index 5b9be5eea1..7db1f40da8 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqlrhlz8hdfalmhku6ln60r3836suz8xf527rs7w2nmy.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqlrhlz8hdfalmhku6ln60r3836suz8xf527rs7w2nmy.json
@@ -1,6 +1,6 @@
{
- "name": "PeerMe: PPNP",
- "description": "Association Pourquoi Pas Nu Provence",
+ "name": "PeerMe: BOBY on MultiversX DAO",
+ "description": "BOBY DAO, the place to discuss, fund, play and push BOBY to 500M$",
"social": {
"website": "https://peerme.io",
"email": "hello@peerme.io",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqlsxrfn89u25r7hx4fjaes4qmvqkfhzuwe3yqlafwga.json b/accounts/erd1qqqqqqqqqqqqqpgqlsxrfn89u25r7hx4fjaes4qmvqkfhzuwe3yqlafwga.json
new file mode 100644
index 0000000000..55377f64f8
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqlsxrfn89u25r7hx4fjaes4qmvqkfhzuwe3yqlafwga.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Bsc SC calls executor",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "bsc",
+ "multitransfer"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgq5c3q0p6lw2lltlpqnlv8gelmlk8wt7kk6avsagmnss.json b/accounts/erd1qqqqqqqqqqqqqpgqlyp4lw5u56r2sv0uyf346f6a6a6gcj726avskt2he0.json
similarity index 91%
rename from accounts/erd1qqqqqqqqqqqqqpgq5c3q0p6lw2lltlpqnlv8gelmlk8wt7kk6avsagmnss.json
rename to accounts/erd1qqqqqqqqqqqqqpgqlyp4lw5u56r2sv0uyf346f6a6a6gcj726avskt2he0.json
index 4b185ad315..f8f0b659cf 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgq5c3q0p6lw2lltlpqnlv8gelmlk8wt7kk6avsagmnss.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqlyp4lw5u56r2sv0uyf346f6a6a6gcj726avskt2he0.json
@@ -1,5 +1,5 @@
{
- "name": "JEXchange: JEX-BEE LP",
+ "name": "JEXchange: BEE-JEX LP",
"description": "",
"social": {
"website": "https://jexchange.io/",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqlzry84nqra87p42uqz5p686y2j088r5je3yqnt84qs.json b/accounts/erd1qqqqqqqqqqqqqpgqlzry84nqra87p42uqz5p686y2j088r5je3yqnt84qs.json
new file mode 100644
index 0000000000..de80e305d9
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqlzry84nqra87p42uqz5p686y2j088r5je3yqnt84qs.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Gas Price Aggregator",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "gas",
+ "aggregator"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqm77vv5dcqs6kuzhj540vf67f90xemypd0ufsygvnvk.json b/accounts/erd1qqqqqqqqqqqqqpgqm77vv5dcqs6kuzhj540vf67f90xemypd0ufsygvnvk.json
new file mode 100644
index 0000000000..fb330b0925
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqm77vv5dcqs6kuzhj540vf67f90xemypd0ufsygvnvk.json
@@ -0,0 +1,20 @@
+{
+ "name": "The Cursed Land: Main SC",
+ "description": "The main contract of 'TheCursedLand' game",
+ "social": {
+ "website": "https://www.thecursedland.com/",
+ "blog": "https://medium.com/@TheCursedLand",
+ "twitter": "https://twitter.com/TheCursedLand",
+ "discord": "https://discord.gg/NAbQ5WChrs",
+ "whitepaper": "https://whitepaper.thecursedland.com/",
+ "telegram": "https://t.me/TheCursedLand_Community"
+ },
+ "tags": [
+ "tcl",
+ "mmorpg",
+ "thecursedland",
+ "game",
+ "play&earn"
+ ],
+ "icon": "the-cursed-land"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqmcf5lv9kxjl8jkp9qrme74y2ft3kwzultxfq03fghn.json b/accounts/erd1qqqqqqqqqqqqqpgqmcf5lv9kxjl8jkp9qrme74y2ft3kwzultxfq03fghn.json
new file mode 100644
index 0000000000..e8cff2f083
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqmcf5lv9kxjl8jkp9qrme74y2ft3kwzultxfq03fghn.json
@@ -0,0 +1,11 @@
+{
+ "name": "Middle Staking : MIDSTERS Minter",
+ "description": "Mint MIDSTERS NFTs by burning MIDGIFT",
+ "social": {
+ "website": "https://www.middlestaking.fr/",
+ "twitter": "MiddleStaking",
+ "telegram": "https://t.me/middlestaking"
+ },
+ "tags": ["middlestaking", "mint", "gift"],
+ "icon": "middle"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqmds6zllwvdx3nl0yfq2lppqhjl5h49c627rsex5z2z.json b/accounts/erd1qqqqqqqqqqqqqpgqmds6zllwvdx3nl0yfq2lppqhjl5h49c627rsex5z2z.json
new file mode 100644
index 0000000000..b2e7ed0c50
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqmds6zllwvdx3nl0yfq2lppqhjl5h49c627rsex5z2z.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: CROM Vault",
+ "description": "7.000.000 $OMI Locked until September 2027 ( 3years )",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqmt4wa4uljl603waa7qc3mgv054twt2af548st36e4h.json b/accounts/erd1qqqqqqqqqqqqqpgqmt4wa4uljl603waa7qc3mgv054twt2af548st36e4h.json
index 33991310ec..b9aee3b326 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqmt4wa4uljl603waa7qc3mgv054twt2af548st36e4h.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqmt4wa4uljl603waa7qc3mgv054twt2af548st36e4h.json
@@ -16,5 +16,6 @@
"bhero",
"sfitlegend",
"nft"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqmtem32rx2ans9xg8yv7wv7pfq35wal4hldhs5uushw.json b/accounts/erd1qqqqqqqqqqqqqpgqmtem32rx2ans9xg8yv7wv7pfq35wal4hldhs5uushw.json
new file mode 100644
index 0000000000..4e835e4733
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqmtem32rx2ans9xg8yv7wv7pfq35wal4hldhs5uushw.json
@@ -0,0 +1,16 @@
+{
+ "name": "BHero: Inspir3 Launchpad Phase 1",
+ "description": "Inspir3 Launchpad Phase 1 via BHero Launchpad",
+ "social": {
+ "website": "https://www.inspir3.io",
+ "twitter": "https://x.com/Inspir3NFT",
+ "whitepaper": "https://whitepaper.inspir3.io",
+ "discord": "http://discord.gg/inspir3"
+ },
+ "tags": [
+ "inspir3",
+ "bhero",
+ "launchpad"
+ ],
+ "icon": "bhero"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqmttxmflkxkzzw6my5dnz5kk6upeph4c3uzesyf4x6t.json b/accounts/erd1qqqqqqqqqqqqqpgqmttxmflkxkzzw6my5dnz5kk6upeph4c3uzesyf4x6t.json
new file mode 100644
index 0000000000..ea5ca35921
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqmttxmflkxkzzw6my5dnz5kk6upeph4c3uzesyf4x6t.json
@@ -0,0 +1,16 @@
+{
+ "name": "DinoVox: Box Reveal",
+ "description": "Open DinoBox and reveal your DinoVox",
+ "social": {
+ "blog": "https://medium.com/dinovox",
+ "twitter": "https://twitter.com/TheDinoVox",
+ "whitepaper": "https://www.dinovox.com/assets/pdf/whitepaper_fr.pdf",
+ "website": "https://www.dinovox.com/",
+ "discord": "https://discord.com/invite/thedinovox",
+ "facebook": "https://www.facebook.com/TheDinoVox",
+ "telegram": "https://t.me/thedinovox",
+ "instagram": "https://www.instagram.com/jointhedinovox/"
+ },
+ "tags": ["dinovox", "reveal", "graou"],
+ "icon": "dinovox"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqn7wy983tdh5katf5yn5nl2gcdflf4azh6jtsggjx9a.json b/accounts/erd1qqqqqqqqqqqqqpgqn7wy983tdh5katf5yn5nl2gcdflf4azh6jtsggjx9a.json
index a2c12d750c..ce2831c7b1 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqn7wy983tdh5katf5yn5nl2gcdflf4azh6jtsggjx9a.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqn7wy983tdh5katf5yn5nl2gcdflf4azh6jtsggjx9a.json
@@ -5,5 +5,5 @@
"exchange",
"swap"
],
- "icon": "onedex"
-}
+ "icon": "one"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqna0yrqqlef9vg5z2gw7nd59fqe6j8ug8c6cqgsu99p.json b/accounts/erd1qqqqqqqqqqqqqpgqna0yrqqlef9vg5z2gw7nd59fqe6j8ug8c6cqgsu99p.json
index 84b37aee85..a6e60ad43a 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqna0yrqqlef9vg5z2gw7nd59fqe6j8ug8c6cqgsu99p.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqna0yrqqlef9vg5z2gw7nd59fqe6j8ug8c6cqgsu99p.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Polygon Safe",
+ "name": "xBridge v2 (deprecated): Polygon Safe",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqndkdvsqgl84228nvwrnnwseaxvtqhftc27rsceuqjk.json b/accounts/erd1qqqqqqqqqqqqqpgqndkdvsqgl84228nvwrnnwseaxvtqhftc27rsceuqjk.json
new file mode 100644
index 0000000000..7d8346faa9
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqndkdvsqgl84228nvwrnnwseaxvtqhftc27rsceuqjk.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: SuperRareBears",
+ "description": "DAO & community funds for $BATES memecoin",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqnjmyp62wxh5x89ttpcxvwueujeu4tqrygcwsg7pwpc.json b/accounts/erd1qqqqqqqqqqqqqpgqnjmyp62wxh5x89ttpcxvwueujeu4tqrygcwsg7pwpc.json
index cf4bbef9ef..51500a4518 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqnjmyp62wxh5x89ttpcxvwueujeu4tqrygcwsg7pwpc.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqnjmyp62wxh5x89ttpcxvwueujeu4tqrygcwsg7pwpc.json
@@ -1,6 +1,6 @@
{
- "name": "Hatom: Price Aggregator",
- "description": "Hatom's Price Aggregator module",
+ "name": "Hatom: Price Aggregator v1",
+ "description": "Hatom's Price Aggregator v1 module",
"tags": [
"hatom",
"money-market",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqnkrgvdjra6t9rrzdlrv04q6fy549e9y2548sksuenf.json b/accounts/erd1qqqqqqqqqqqqqpgqnkrgvdjra6t9rrzdlrv04q6fy549e9y2548sksuenf.json
index 70f92d0fc6..be8002b74d 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqnkrgvdjra6t9rrzdlrv04q6fy549e9y2548sksuenf.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqnkrgvdjra6t9rrzdlrv04q6fy549e9y2548sksuenf.json
@@ -17,5 +17,6 @@
"locking",
"points",
"m12"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqnp0cfymcjtghgqcdqaqvgzsyregek5gcuzesgumycy.json b/accounts/erd1qqqqqqqqqqqqqpgqnp0cfymcjtghgqcdqaqvgzsyregek5gcuzesgumycy.json
new file mode 100644
index 0000000000..8e3a927f83
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqnp0cfymcjtghgqcdqaqvgzsyregek5gcuzesgumycy.json
@@ -0,0 +1,16 @@
+{
+ "name": "DinoVox: Box Mint",
+ "description": "DinoBox minting",
+ "social": {
+ "blog": "https://medium.com/dinovox",
+ "twitter": "https://twitter.com/TheDinoVox",
+ "whitepaper": "https://www.dinovox.com/assets/pdf/whitepaper_fr.pdf",
+ "website": "https://www.dinovox.com/",
+ "discord": "https://discord.com/invite/thedinovox",
+ "facebook": "https://www.facebook.com/TheDinoVox",
+ "telegram": "https://t.me/thedinovox",
+ "instagram": "https://www.instagram.com/jointhedinovox/"
+ },
+ "tags": ["dinovox", "mint", "graou"],
+ "icon": "dinovox"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqnux6hmzfk4w89mhkzua3nsuwglwl0skfu7zssxhys7.json b/accounts/erd1qqqqqqqqqqqqqpgqnux6hmzfk4w89mhkzua3nsuwglwl0skfu7zssxhys7.json
new file mode 100644
index 0000000000..f30f5d0435
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqnux6hmzfk4w89mhkzua3nsuwglwl0skfu7zssxhys7.json
@@ -0,0 +1,17 @@
+{
+ "name": "Valoro: AI Fund",
+ "description": "Valoro AI is a dedicated fund comprising the leading AI-based projects within the MultiversX ecosystem.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/vlr-ai",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "ai"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqp9d6gwu5h8j73w7z2tg3hap5p7ugxdv827rstr53wm.json b/accounts/erd1qqqqqqqqqqqqqpgqp9d6gwu5h8j73w7z2tg3hap5p7ugxdv827rstr53wm.json
new file mode 100644
index 0000000000..f104e90e5e
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqp9d6gwu5h8j73w7z2tg3hap5p7ugxdv827rstr53wm.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: CROM Community Rewards",
+ "description": "Rewards Period: 3 years | 48,611 $OMI/week",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqpkm97uwlef6kvzdgwcjgjxch2um639tlmp3serap7e.json b/accounts/erd1qqqqqqqqqqqqqpgqpkm97uwlef6kvzdgwcjgjxch2um639tlmp3serap7e.json
new file mode 100644
index 0000000000..71dc508f1d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqpkm97uwlef6kvzdgwcjgjxch2um639tlmp3serap7e.json
@@ -0,0 +1,15 @@
+{
+
+ "name": "EMRS Allocation SC",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "emr",
+ "smartContract"
+ ],
+ "icon": "emr"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqpppwvamys50nx8nkzyuvslhd27da7dd9dn3qxtf5ev.json b/accounts/erd1qqqqqqqqqqqqqpgqpppwvamys50nx8nkzyuvslhd27da7dd9dn3qxtf5ev.json
new file mode 100644
index 0000000000..79f7fddb0e
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqpppwvamys50nx8nkzyuvslhd27da7dd9dn3qxtf5ev.json
@@ -0,0 +1,6 @@
+{
+ "name": "xBulk: Triskel",
+ "description": "Triskel distribution contract for xBulk.app",
+ "tags": ["commmunity", "bulk"],
+ "icon": "xbulk"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqpqqyfcgpna60vw0g8y5m9qwyq5essws7dn3q6v0cfy.json b/accounts/erd1qqqqqqqqqqqqqpgqpqqyfcgpna60vw0g8y5m9qwyq5essws7dn3q6v0cfy.json
new file mode 100644
index 0000000000..804209f6e4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqpqqyfcgpna60vw0g8y5m9qwyq5essws7dn3q6v0cfy.json
@@ -0,0 +1,12 @@
+{
+ "name": "xBulk: Wavenode Bonus Staking Rewards",
+ "description": "Wavenode Bonus Staking Rewards distribution contract for xBulk.app",
+ "social": {
+ "website": "https://xbulk.app"
+ },
+ "tags": [
+ "commmunity",
+ "bulk"
+ ],
+ "icon": "xbulk"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqprfdrgwawzclt4pwwwrp6g50rt9nnt9mrpeqthyx5h.json b/accounts/erd1qqqqqqqqqqqqqpgqprfdrgwawzclt4pwwwrp6g50rt9nnt9mrpeqthyx5h.json
new file mode 100644
index 0000000000..fe90d22214
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqprfdrgwawzclt4pwwwrp6g50rt9nnt9mrpeqthyx5h.json
@@ -0,0 +1,11 @@
+{
+ "name": "xKingNFTx: Controller",
+ "social": {
+ "website": "https://www.xkingnftx.com",
+ "blog": "https://discord.gg/Xq9QBjxf4M",
+ "twitter": "https://twitter.com/xKingNFTx",
+ "discord": "https://discord.gg/UZ46h9UCNa"
+ },
+ "tags": ["xking", "nft"],
+ "icon": "xking"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqpusuvw09ae3486jnxm8tffukyrf56xrmdn3qrcudml.json b/accounts/erd1qqqqqqqqqqqqqpgqpusuvw09ae3486jnxm8tffukyrf56xrmdn3qrcudml.json
new file mode 100644
index 0000000000..e05574a133
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqpusuvw09ae3486jnxm8tffukyrf56xrmdn3qrcudml.json
@@ -0,0 +1,12 @@
+{
+ "name": "xBulk: XperiencePoker",
+ "description": "XperiencePoker distribution contract for xBulk.app",
+ "social": {
+ "website": "https://xbulk.app"
+ },
+ "tags": [
+ "commmunity",
+ "bulk"
+ ],
+ "icon": "xbulk"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqpwd0p83w3s9qw9hvmmppjklj88kc4kvnu7zs8cuk0k.json b/accounts/erd1qqqqqqqqqqqqqpgqpwd0p83w3s9qw9hvmmppjklj88kc4kvnu7zs8cuk0k.json
new file mode 100644
index 0000000000..6bfb117a95
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqpwd0p83w3s9qw9hvmmppjklj88kc4kvnu7zs8cuk0k.json
@@ -0,0 +1,17 @@
+{
+ "name": "Valoro: WAGMI Fund",
+ "description": "Valoro's 'We All Gonna Make It' fund is composed of a diverse range of promising tokens within the MultiversX ecosystem.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/wagmi",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "wagmi"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqq590qcdr7sadf8c47dtxuzlls5z722pq72kq7vj6ss.json b/accounts/erd1qqqqqqqqqqqqqpgqq590qcdr7sadf8c47dtxuzlls5z722pq72kq7vj6ss.json
new file mode 100644
index 0000000000..4aefa773c2
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqq590qcdr7sadf8c47dtxuzlls5z722pq72kq7vj6ss.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : Staking 3 Month",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqq7t0k5zh7qwht2xk3rc5s9zdf7td9an5u7zs56vyvy.json b/accounts/erd1qqqqqqqqqqqqqpgqq7t0k5zh7qwht2xk3rc5s9zdf7td9an5u7zs56vyvy.json
new file mode 100644
index 0000000000..de951a2187
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqq7t0k5zh7qwht2xk3rc5s9zdf7td9an5u7zs56vyvy.json
@@ -0,0 +1,12 @@
+{
+ "name": "Burnify: NFT Burn",
+ "description": "",
+ "tags": [
+ "burnify",
+ "quantumx",
+ "nft",
+ "sft",
+ "burn"
+ ],
+ "icon": "burnify"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqqvj2zrdfv4lsc38p8cvh4e0yd4av6njfu7zsj7ztzl.json b/accounts/erd1qqqqqqqqqqqqqpgqqvj2zrdfv4lsc38p8cvh4e0yd4av6njfu7zsj7ztzl.json
new file mode 100644
index 0000000000..c200cf78af
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqqvj2zrdfv4lsc38p8cvh4e0yd4av6njfu7zsj7ztzl.json
@@ -0,0 +1,18 @@
+{
+ "name": "Valoro: Proxy",
+ "description": "Valoro's SC for managing the Protocol and deploying the Smart Contracts of the Funds.",
+ "social": {
+ "website": "https://valoro.fund/",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-funds",
+ "investments",
+ "defi",
+ "proxy"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqqz6vp9y50ep867vnr296mqf3dduh6guvmvlsu3sujc.json b/accounts/erd1qqqqqqqqqqqqqpgqqz6vp9y50ep867vnr296mqf3dduh6guvmvlsu3sujc.json
index bafe24e4f3..2a7caed0e4 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqqz6vp9y50ep867vnr296mqf3dduh6guvmvlsu3sujc.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqqz6vp9y50ep867vnr296mqf3dduh6guvmvlsu3sujc.json
@@ -15,5 +15,5 @@
"exchange",
"swap"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqr6aw7zmytygstu7pheeeg0sx2jmu97m4548syzlrc7.json b/accounts/erd1qqqqqqqqqqqqqpgqr6aw7zmytygstu7pheeeg0sx2jmu97m4548syzlrc7.json
index 85cd777083..2907f15da2 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqr6aw7zmytygstu7pheeeg0sx2jmu97m4548syzlrc7.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqr6aw7zmytygstu7pheeeg0sx2jmu97m4548syzlrc7.json
@@ -16,5 +16,6 @@
"bhero",
"gocharge",
"launchpad"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqr7p4pww4qqyl3k4ezyn7jh894d8asl3har5sd47vlg.json b/accounts/erd1qqqqqqqqqqqqqpgqr7p4pww4qqyl3k4ezyn7jh894d8asl3har5sd47vlg.json
index 85f6e119f6..7647bdc10f 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqr7p4pww4qqyl3k4ezyn7jh894d8asl3har5sd47vlg.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqr7p4pww4qqyl3k4ezyn7jh894d8asl3har5sd47vlg.json
@@ -17,5 +17,6 @@
"BHAgents",
"NFTs",
"Launch"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqrdkz05f3lfpf9csn7ck35xtl6pcmgec0mp3s4cwsp3.json b/accounts/erd1qqqqqqqqqqqqqpgqrdkz05f3lfpf9csn7ck35xtl6pcmgec0mp3s4cwsp3.json
new file mode 100644
index 0000000000..21e11e052e
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqrdkz05f3lfpf9csn7ck35xtl6pcmgec0mp3s4cwsp3.json
@@ -0,0 +1,15 @@
+{
+
+ "name": "EMR Wrapper SC",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "wemr",
+ "smartContract"
+ ],
+ "icon": "emr"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqrgnkavjf5nl943crczz5wjxzs5garatj47dsnupxm6.json b/accounts/erd1qqqqqqqqqqqqqpgqrgnkavjf5nl943crczz5wjxzs5garatj47dsnupxm6.json
index 2cda58080b..fdebfc03b7 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqrgnkavjf5nl943crczz5wjxzs5garatj47dsnupxm6.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqrgnkavjf5nl943crczz5wjxzs5garatj47dsnupxm6.json
@@ -1,5 +1,5 @@
{
- "name": "Protocol: Governance",
+ "name": "Protocol: Sirius Governance",
"description": "",
"social": {
"website": "http://multiversx.com",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqrswahk5sxkpwjl0gj6cx2up0cgx2usg7ah0sxnujs6.json b/accounts/erd1qqqqqqqqqqqqqpgqrswahk5sxkpwjl0gj6cx2up0cgx2usg7ah0sxnujs6.json
index 54d710cdf8..9022f128df 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqrswahk5sxkpwjl0gj6cx2up0cgx2usg7ah0sxnujs6.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqrswahk5sxkpwjl0gj6cx2up0cgx2usg7ah0sxnujs6.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqrxmnuq6y62ecsqgznp896lgxl7dpjanpjn5qsd4dtn.json b/accounts/erd1qqqqqqqqqqqqqpgqrxmnuq6y62ecsqgznp896lgxl7dpjanpjn5qsd4dtn.json
new file mode 100644
index 0000000000..e87c6b8fcd
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqrxmnuq6y62ecsqgznp896lgxl7dpjanpjn5qsd4dtn.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: Vesting",
+ "description": "Manage Vesting and Token distribution",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqrztc0a6fa4005rnh6xs80gykspvnfxzquzeswz037u.json b/accounts/erd1qqqqqqqqqqqqqpgqrztc0a6fa4005rnh6xs80gykspvnfxzquzeswz037u.json
new file mode 100644
index 0000000000..dac7b85071
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqrztc0a6fa4005rnh6xs80gykspvnfxzquzeswz037u.json
@@ -0,0 +1,16 @@
+{
+ "name": "DinoVox: Staking",
+ "description": "Stake DinoVox, DinoBox and bonus tokens to $GRAOU rewards",
+ "social": {
+ "blog": "https://medium.com/dinovox",
+ "twitter": "https://twitter.com/TheDinoVox",
+ "whitepaper": "https://www.dinovox.com/assets/pdf/whitepaper_fr.pdf",
+ "website": "https://www.dinovox.com/",
+ "discord": "https://discord.com/invite/thedinovox",
+ "facebook": "https://www.facebook.com/TheDinoVox",
+ "telegram": "https://t.me/thedinovox",
+ "instagram": "https://www.instagram.com/jointhedinovox/"
+ },
+ "tags": ["dinovox", "staking", "nft", "graou"],
+ "icon": "dinovox"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqs266zfksqqdds05af2qswk3u4lsex2ma6jtsk8uaz4.json b/accounts/erd1qqqqqqqqqqqqqpgqs266zfksqqdds05af2qswk3u4lsex2ma6jtsk8uaz4.json
index 4584861cb8..9d4969d0bd 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqs266zfksqqdds05af2qswk3u4lsex2ma6jtsk8uaz4.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqs266zfksqqdds05af2qswk3u4lsex2ma6jtsk8uaz4.json
@@ -15,5 +15,5 @@
"exchange",
"staking"
],
- "icon": "onedex"
-}
+ "icon": "one"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqs2y5luzq0kf9vn2ja642n446ddspknjmdn3qpncjgg.json b/accounts/erd1qqqqqqqqqqqqqpgqs2y5luzq0kf9vn2ja642n446ddspknjmdn3qpncjgg.json
new file mode 100644
index 0000000000..6445c8ea59
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqs2y5luzq0kf9vn2ja642n446ddspknjmdn3qpncjgg.json
@@ -0,0 +1,6 @@
+{
+ "name": "xBulk: Pittz Monthly Profit Share Rewards",
+ "description": "Pittz Monthly Profit Share Rewards distribution contract for xBulk.app",
+ "tags": ["commmunity", "bulk"],
+ "icon": "xbulk"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqs5w0wfmf5gw7qae82upgu26cpk2ug8l245qszu3dxf.json b/accounts/erd1qqqqqqqqqqqqqpgqs5w0wfmf5gw7qae82upgu26cpk2ug8l245qszu3dxf.json
new file mode 100644
index 0000000000..c88266ce9d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqs5w0wfmf5gw7qae82upgu26cpk2ug8l245qszu3dxf.json
@@ -0,0 +1,30 @@
+{
+ "name": "XOXNO: Real Yield Staking",
+ "description": "The XOXNO Liquid Staking contract is central to the XOXNO Network, managing real yield staking and issuing LXOXNO tokens. Users stake XOXNO to receive LXOXNO, which grows daily based on network activity. To unstake, users undergo a 10-day unbound period and receive an NFT as a withdrawal receipt. This NFT can be used to reclaim the original XOXNO tokens after 10 days. Additionally, all royalties are paid in LXOXNO, providing an auto-compounding effect for creators.",
+ "social": {
+ "email": "contact@xoxno.com",
+ "website": "https://xoxno.com",
+ "discord": "https://discord.gg/xoxno",
+ "twitter": "https://x.com/XoxnoNetwork",
+ "telegram": "https://xoxno.t.me",
+ "instagram": "https://instagram.com/xoxnoNFTs",
+ "github": "https://github.com/XOXNO",
+ "whitepaper": "https://xoxno.com/whitepaper",
+ "linkedin": "https://linkedin.com/company/xoxno",
+ "youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
+ },
+ "tags": [
+ "XOXNO",
+ "Marketplace",
+ "Launchpad",
+ "Liquid Staking",
+ "Finance",
+ "DeFi",
+ "Ticketing",
+ "L2",
+ "Web2",
+ "Real Yield"
+ ],
+ "icon": "xoxno"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqscgww6dn8029mm0gyflu3ksep78decapah0s46nj67.json b/accounts/erd1qqqqqqqqqqqqqpgqscgww6dn8029mm0gyflu3ksep78decapah0s46nj67.json
index 45dcb8fd5e..4663659053 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqscgww6dn8029mm0gyflu3ksep78decapah0s46nj67.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqscgww6dn8029mm0gyflu3ksep78decapah0s46nj67.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqsevgnqk0vu424sg866nh8k2v2hdekrwdyfkqh2mdwr.json b/accounts/erd1qqqqqqqqqqqqqpgqsevgnqk0vu424sg866nh8k2v2hdekrwdyfkqh2mdwr.json
index 74ab176ba8..01a56b9eb5 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqsevgnqk0vu424sg866nh8k2v2hdekrwdyfkqh2mdwr.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqsevgnqk0vu424sg866nh8k2v2hdekrwdyfkqh2mdwr.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Ethereum MultiTransfer",
+ "name": "xBridge v2 (deprecated): Ethereum MultiTransfer",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqsfj4alkefq953u4ldl2jfsnhn2r58fycdn3qjz7my5.json b/accounts/erd1qqqqqqqqqqqqqpgqsfj4alkefq953u4ldl2jfsnhn2r58fycdn3qjz7my5.json
new file mode 100644
index 0000000000..4c4ec65a71
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqsfj4alkefq953u4ldl2jfsnhn2r58fycdn3qjz7my5.json
@@ -0,0 +1,6 @@
+{
+ "name": "xBulk: Today",
+ "description": "Today distribution contract for xBulk.app",
+ "tags": ["commmunity", "bulk"],
+ "icon": "xbulk"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqsgvnfzwwdmjpf55hvp66eeq3xu5pd40k5gcsm5vzlw.json b/accounts/erd1qqqqqqqqqqqqqpgqsgvnfzwwdmjpf55hvp66eeq3xu5pd40k5gcsm5vzlw.json
new file mode 100644
index 0000000000..7094f41f38
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqsgvnfzwwdmjpf55hvp66eeq3xu5pd40k5gcsm5vzlw.json
@@ -0,0 +1,11 @@
+{
+ "name": "Middle Staking : Dinogazette Locker",
+ "description": "Locker for Dinogazette NFTs",
+ "social": {
+ "website": "https://www.middlestaking.fr/",
+ "twitter": "MiddleStaking",
+ "telegram": "https://t.me/middlestaking"
+ },
+ "tags": ["middlestaking", "locker", "game"],
+ "icon": "middle"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqskq4m74h3jech2kx66fgzetg0jz38j65548savxhkc.json b/accounts/erd1qqqqqqqqqqqqqpgqskq4m74h3jech2kx66fgzetg0jz38j65548savxhkc.json
index 11c59a8e36..3d6593f160 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqskq4m74h3jech2kx66fgzetg0jz38j65548savxhkc.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqskq4m74h3jech2kx66fgzetg0jz38j65548savxhkc.json
@@ -17,5 +17,6 @@
"bhat",
"staking",
"m6"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqsqlpvz7wr9aau9w9p06x9vq6gmmntkkmdn3q4ygcrl.json b/accounts/erd1qqqqqqqqqqqqqpgqsqlpvz7wr9aau9w9p06x9vq6gmmntkkmdn3q4ygcrl.json
new file mode 100644
index 0000000000..107983ec42
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqsqlpvz7wr9aau9w9p06x9vq6gmmntkkmdn3q4ygcrl.json
@@ -0,0 +1,12 @@
+{
+ "name": "xBulk: WoodyMeme",
+ "description": "WoodyMeme distribution contract for xBulk.app",
+ "social": {
+ "website": "https://xbulk.app"
+ },
+ "tags": [
+ "commmunity",
+ "bulk"
+ ],
+ "icon": "xbulk"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqss9ah9c3wc3gh38ldj8aht3eeh22chn9jn5q5hder6.json b/accounts/erd1qqqqqqqqqqqqqpgqss9ah9c3wc3gh38ldj8aht3eeh22chn9jn5q5hder6.json
new file mode 100644
index 0000000000..d7497e5db7
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqss9ah9c3wc3gh38ldj8aht3eeh22chn9jn5q5hder6.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: Hive Manager",
+ "description": "Stake NFT into Hive and Earn rewards",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqsvmrdrtnxfgmphexegrae93zf28n9dnywmfs8uy68v.json b/accounts/erd1qqqqqqqqqqqqqpgqsvmrdrtnxfgmphexegrae93zf28n9dnywmfs8uy68v.json
new file mode 100644
index 0000000000..b3cb6bec8d
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqsvmrdrtnxfgmphexegrae93zf28n9dnywmfs8uy68v.json
@@ -0,0 +1,14 @@
+{
+ "name": "ESTAR: xCastle Funds Collector",
+ "description": "",
+ "social": {
+ "website": "https://estar.games",
+ "twitter": "https://twitter.com/EstarToken",
+ "whitepaper": "https://whitepaper.estar.games",
+ "email": "contact@estar.games",
+ "discord": "https://discord.com/invite/estar",
+ "telegram": "https://t.me/estartoken"
+ },
+ "tags": ["game"],
+ "icon": "estar"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqsytkvnexypp7argk02l0rasnj57sxa542jpshkl7df.json b/accounts/erd1qqqqqqqqqqqqqpgqsytkvnexypp7argk02l0rasnj57sxa542jpshkl7df.json
new file mode 100644
index 0000000000..a43e6fd9fc
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqsytkvnexypp7argk02l0rasnj57sxa542jpshkl7df.json
@@ -0,0 +1,16 @@
+{
+ "name": "xExchange: Tasks Composer",
+ "description": "",
+ "social": {
+ "website": "https://xexchange.com",
+ "twitter": "https://twitter.com/xExchangeApp",
+ "telegram": "https://t.me/xExchangeApp",
+ "blog": "https://xexchange.com/x-exchange-economics.pdf"
+ },
+ "tags": [
+ "xexchange",
+ "composabletasks",
+ "composer"
+ ],
+ "icon": "xexchange"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqt0404a43znlzqegt9defqv0kljsr7yj7wmfsep5tmj.json b/accounts/erd1qqqqqqqqqqqqqpgqt0404a43znlzqegt9defqv0kljsr7yj7wmfsep5tmj.json
new file mode 100644
index 0000000000..c4f0a166fa
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqt0404a43znlzqegt9defqv0kljsr7yj7wmfsep5tmj.json
@@ -0,0 +1,14 @@
+{
+ "name": "ESTAR: xCastle Mission",
+ "description": "",
+ "social": {
+ "website": "https://estar.games",
+ "twitter": "https://twitter.com/EstarToken",
+ "whitepaper": "https://whitepaper.estar.games",
+ "email": "contact@estar.games",
+ "discord": "https://discord.com/invite/estar",
+ "telegram": "https://t.me/estartoken"
+ },
+ "tags": ["game", "mission"],
+ "icon": "estar"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqt434nktxkn8grnvfr9rjx0743sdv05maytsq92c48x.json b/accounts/erd1qqqqqqqqqqqqqpgqt434nktxkn8grnvfr9rjx0743sdv05maytsq92c48x.json
new file mode 100644
index 0000000000..e9167fb252
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqt434nktxkn8grnvfr9rjx0743sdv05maytsq92c48x.json
@@ -0,0 +1,16 @@
+{
+ "name": "DinoVox: Marketplace",
+ "description": "DinoVox marketplace",
+ "social": {
+ "blog": "https://medium.com/dinovox",
+ "twitter": "https://twitter.com/TheDinoVox",
+ "whitepaper": "https://www.dinovox.com/assets/pdf/whitepaper_fr.pdf",
+ "website": "https://www.dinovox.com/",
+ "discord": "https://discord.com/invite/thedinovox",
+ "facebook": "https://www.facebook.com/TheDinoVox",
+ "telegram": "https://t.me/thedinovox",
+ "instagram": "https://www.instagram.com/jointhedinovox/"
+ },
+ "tags": ["dinovox", "marketplace", "graou"],
+ "icon": "dinovox"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqt47xfkt6x88hfeukuq5r2442wkp8s4cm6avsef25az.json b/accounts/erd1qqqqqqqqqqqqqpgqt47xfkt6x88hfeukuq5r2442wkp8s4cm6avsef25az.json
new file mode 100644
index 0000000000..978ffb557b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqt47xfkt6x88hfeukuq5r2442wkp8s4cm6avsef25az.json
@@ -0,0 +1,13 @@
+{
+ "name": "e-Compass Community Votes",
+ "description": "",
+ "social": {
+ "website": "https://e-compass.io"
+ },
+ "tags": [
+ "ecompass",
+ "rewards",
+ "vote"
+ ],
+ "icon": "ecompass"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqtfaz4lwyp6f9uet74pt6cel907vhy44r27rsw4ld4a.json b/accounts/erd1qqqqqqqqqqqqqpgqtfaz4lwyp6f9uet74pt6cel907vhy44r27rsw4ld4a.json
new file mode 100644
index 0000000000..9fe1fa1118
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqtfaz4lwyp6f9uet74pt6cel907vhy44r27rsw4ld4a.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: GildedSyndicate DAO",
+ "description": "The Future of ScaleUp Capital and Blockchain Validator Businesses in the MultiversX Ecosystem ($EGLD) \ud83e\udd11\ud83d\udcb5\ud83d\udcb8\ud83d\udcb0 Visit https://gildedsyndicate.com \ud83c\udf10",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqtj9x9ljcpx0y4y7x7cv7ewmad7md6ehpm4rq8rtvtp.json b/accounts/erd1qqqqqqqqqqqqqpgqtj9x9ljcpx0y4y7x7cv7ewmad7md6ehpm4rq8rtvtp.json
new file mode 100644
index 0000000000..bc5ac54417
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqtj9x9ljcpx0y4y7x7cv7ewmad7md6ehpm4rq8rtvtp.json
@@ -0,0 +1,19 @@
+{
+ "name": "Ta-da: Deposit Pool",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "tada",
+ "deposit",
+ "pool"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqtjrtf98xcyca4mwjq6hauv3qsy0xef0e449qtdzdme.json b/accounts/erd1qqqqqqqqqqqqqpgqtjrtf98xcyca4mwjq6hauv3qsy0xef0e449qtdzdme.json
new file mode 100644
index 0000000000..c00557d9cc
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqtjrtf98xcyca4mwjq6hauv3qsy0xef0e449qtdzdme.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : user vesting reward",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqtksqmgskqaaprv6ef5y6wlx0ts8s88un0w5sfss92f.json b/accounts/erd1qqqqqqqqqqqqqpgqtksqmgskqaaprv6ef5y6wlx0ts8s88un0w5sfss92f.json
index 63a54e3058..296b1470d6 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqtksqmgskqaaprv6ef5y6wlx0ts8s88un0w5sfss92f.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqtksqmgskqaaprv6ef5y6wlx0ts8s88un0w5sfss92f.json
@@ -11,6 +11,7 @@
"blog": "https://medium.com/@onedexapp",
"gmail": "onedex@onedex.app"
},
+ "icon": "one",
"tags": [
"onedex",
"streamswap"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqtmj6zwec4llv8m9fnvyjytcy9gmht78l5gcsev3xm2.json b/accounts/erd1qqqqqqqqqqqqqpgqtmj6zwec4llv8m9fnvyjytcy9gmht78l5gcsev3xm2.json
new file mode 100644
index 0000000000..f6705ba0a6
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqtmj6zwec4llv8m9fnvyjytcy9gmht78l5gcsev3xm2.json
@@ -0,0 +1,11 @@
+{
+ "name": "Middle Staking : Drop Contract",
+ "description": "Drop NFT and tokens in batch",
+ "social": {
+ "website": "https://www.middlestaking.fr/",
+ "twitter": "MiddleStaking",
+ "telegram": "https://t.me/middlestaking"
+ },
+ "tags": ["middlestaking", "drop", "batch", "contract"],
+ "icon": "middle"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqtmsmg5acqn3etmwf9hrv4fcrsctz0lr20ufsgfk023.json b/accounts/erd1qqqqqqqqqqqqqpgqtmsmg5acqn3etmwf9hrv4fcrsctz0lr20ufsgfk023.json
new file mode 100644
index 0000000000..0eca3d5852
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqtmsmg5acqn3etmwf9hrv4fcrsctz0lr20ufsgfk023.json
@@ -0,0 +1,20 @@
+{
+ "name": "The Cursed Land: Marketing",
+ "description": "Vesting TCL Contract",
+ "social": {
+ "website": "https://www.thecursedland.com/",
+ "blog": "https://medium.com/@TheCursedLand",
+ "twitter": "https://twitter.com/TheCursedLand",
+ "discord": "https://discord.gg/NAbQ5WChrs",
+ "whitepaper": "https://whitepaper.thecursedland.com/",
+ "telegram": "https://t.me/TheCursedLand_Community"
+ },
+ "tags": [
+ "tcl",
+ "mmorpg",
+ "thecursedland",
+ "game",
+ "play&earn"
+ ],
+ "icon": "the-cursed-land"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqtwg55pdf9cuzs3sk6ty0shxwmxyh36km72kq5xl9e8.json b/accounts/erd1qqqqqqqqqqqqqpgqtwg55pdf9cuzs3sk6ty0shxwmxyh36km72kq5xl9e8.json
new file mode 100644
index 0000000000..60cc93cee1
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqtwg55pdf9cuzs3sk6ty0shxwmxyh36km72kq5xl9e8.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : Staking 6 Month",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqugnjt2xzwyz2h8x456u2cqpjzhq9uc6k4fvsvq0v22.json b/accounts/erd1qqqqqqqqqqqqqpgqugnjt2xzwyz2h8x456u2cqpjzhq9uc6k4fvsvq0v22.json
new file mode 100644
index 0000000000..22394b2faf
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqugnjt2xzwyz2h8x456u2cqpjzhq9uc6k4fvsvq0v22.json
@@ -0,0 +1,16 @@
+{
+ "name": "AshSwap: XOXNO/LXOXNO LP Stake Farm",
+ "description": "",
+ "social": {
+ "website": "https://ashswap.io",
+ "email": "hello@ashswap.io",
+ "blog": "https://medium.com/@ashswap",
+ "twitter": "https://twitter.com/ash_swap",
+ "telegram": "https://t.me/ash_swap",
+ "discord": "https://discord.gg/apmhYCPDbW",
+ "facebook": "https://www.facebook.com/ashswap.io",
+ "commmunity": "https://egld.community/projects/ashswap"
+ },
+ "tags": ["ashswap", "farm"],
+ "icon": "ashswap"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqujj8lqjhr8sqaqs035awjzx8v6l78tm7jn5qtjspqu.json b/accounts/erd1qqqqqqqqqqqqqpgqujj8lqjhr8sqaqs035awjzx8v6l78tm7jn5qtjspqu.json
new file mode 100644
index 0000000000..2f043048a7
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqujj8lqjhr8sqaqs035awjzx8v6l78tm7jn5qtjspqu.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: Multiplier Rewards",
+ "description": "Vault for the Multiplier Rewards",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqup56pfvlh6s3grlrx08jt06ksa35kqxu548sj7cxpt.json b/accounts/erd1qqqqqqqqqqqqqpgqup56pfvlh6s3grlrx08jt06ksa35kqxu548sj7cxpt.json
index ea891c9b54..b6789470b2 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqup56pfvlh6s3grlrx08jt06ksa35kqxu548sj7cxpt.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqup56pfvlh6s3grlrx08jt06ksa35kqxu548sj7cxpt.json
@@ -17,5 +17,6 @@
"NFTim",
"NFTs",
"Launch"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqusp50r5jqw79e7vd9x0dsl59pcm2yxsvxp7slhy503.json b/accounts/erd1qqqqqqqqqqqqqpgqusp50r5jqw79e7vd9x0dsl59pcm2yxsvxp7slhy503.json
new file mode 100644
index 0000000000..9a9e556364
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqusp50r5jqw79e7vd9x0dsl59pcm2yxsvxp7slhy503.json
@@ -0,0 +1,14 @@
+{
+ "name": "xKingNFTx: xCHIEFS Staking Pool",
+ "social": {
+ "website": "https://www.xkingnftx.com",
+ "blog": "https://discord.gg/Xq9QBjxf4M",
+ "twitter": "https://twitter.com/xKingNFTx",
+ "discord": "https://discord.gg/UZ46h9UCNa"
+ },
+ "tags": [
+ "xking",
+ "nft"
+ ],
+ "icon": "xking"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqux55qfs5wzsec7tfuep70tzq8pq75t634wuqcew4vp.json b/accounts/erd1qqqqqqqqqqqqqpgqux55qfs5wzsec7tfuep70tzq8pq75t634wuqcew4vp.json
index 485af0cbd5..1364cf1459 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqux55qfs5wzsec7tfuep70tzq8pq75t634wuqcew4vp.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqux55qfs5wzsec7tfuep70tzq8pq75t634wuqcew4vp.json
@@ -6,5 +6,5 @@
"boosted",
"distribution"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgquzv7wtmt3jgydnd8dg0dmfypupqp8prddpssh36x27.json b/accounts/erd1qqqqqqqqqqqqqpgquzv7wtmt3jgydnd8dg0dmfypupqp8prddpssh36x27.json
index 7b6d3830b5..5511fcc940 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgquzv7wtmt3jgydnd8dg0dmfypupqp8prddpssh36x27.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgquzv7wtmt3jgydnd8dg0dmfypupqp8prddpssh36x27.json
@@ -11,5 +11,6 @@
"tags": [
"xlaunchpad",
"ashswap"
- ]
+ ],
+ "icon": "xlaunchpad"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqvpkd3g3uwludduv3797j54qt6c888wa59w2shntt6z.json b/accounts/erd1qqqqqqqqqqqqqpgqvpkd3g3uwludduv3797j54qt6c888wa59w2shntt6z.json
index f9115b8fe3..4c4be2e19a 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqvpkd3g3uwludduv3797j54qt6c888wa59w2shntt6z.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqvpkd3g3uwludduv3797j54qt6c888wa59w2shntt6z.json
@@ -5,14 +5,14 @@
"email": "contact@xoxno.com",
"website": "https://xoxno.com",
"discord": "https://discord.gg/xoxno",
- "twitter": "https://x.com/xoxnoNFTs",
+ "twitter": "https://x.com/XoxnoNetwork",
"telegram": "https://xoxno.t.me",
"instagram": "https://instagram.com/xoxnoNFTs",
"github": "https://github.com/XOXNO",
"whitepaper": "https://xoxno.com/whitepaper",
"linkedin": "https://linkedin.com/company/xoxno",
"youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
- "coinmarketcap": "https://coinmarketcap.com/community/profile/XOXNO"
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
},
"tags": [
"XOXNO",
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqvpsx70cmvyz3a36j6v0j9fcq835u54fx548s3jjxlm.json b/accounts/erd1qqqqqqqqqqqqqpgqvpsx70cmvyz3a36j6v0j9fcq835u54fx548s3jjxlm.json
index f637f890c7..2ba80f0094 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqvpsx70cmvyz3a36j6v0j9fcq835u54fx548s3jjxlm.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqvpsx70cmvyz3a36j6v0j9fcq835u54fx548s3jjxlm.json
@@ -17,5 +17,6 @@
"locking",
"points",
"m6"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqvq5etwk9xgqfpxmwv07t8mmj2cyfk5k7yqdskd2alc.json b/accounts/erd1qqqqqqqqqqqqqpgqvq5etwk9xgqfpxmwv07t8mmj2cyfk5k7yqdskd2alc.json
new file mode 100644
index 0000000000..5dfcc65503
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqvq5etwk9xgqfpxmwv07t8mmj2cyfk5k7yqdskd2alc.json
@@ -0,0 +1,15 @@
+{
+
+ "name": "Emorya Bridge SC",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "emr",
+ "smartContract"
+ ],
+ "icon": "emr"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqvtppfl58qvd6srkckctj6h3a704ydymj3g6s3p22ya.json b/accounts/erd1qqqqqqqqqqqqqpgqvtppfl58qvd6srkckctj6h3a704ydymj3g6s3p22ya.json
index 4508965031..a60c1ccc1e 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqvtppfl58qvd6srkckctj6h3a704ydymj3g6s3p22ya.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqvtppfl58qvd6srkckctj6h3a704ydymj3g6s3p22ya.json
@@ -1,14 +1,13 @@
{
- "name": "Arda: Compound",
+ "name": "xBoard: Compound",
"description": "",
"social": {
- "website": "https://arda.run",
- "twitter": "https://twitter.com/arda_project",
- "telegram": "https://t.co/PkTUYkUjtk",
- "blog": "https://docs.arda.run"
+ "website": "https://xboard.run",
+ "twitter": "https://x.com/xboard_app",
+ "telegram": "https://t.me/xboard_app"
},
"tags": [
- "arda",
+ "xboard",
"compound"
]
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqvvhld0zalzp6ga660k4czv5x5kqanlxtmp3se0hx80.json b/accounts/erd1qqqqqqqqqqqqqpgqvvhld0zalzp6ga660k4czv5x5kqanlxtmp3se0hx80.json
new file mode 100644
index 0000000000..185ee4d0ae
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqvvhld0zalzp6ga660k4czv5x5kqanlxtmp3se0hx80.json
@@ -0,0 +1,15 @@
+{
+
+ "name": "EMRS/EMR Liquidity SC",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "emrs",
+ "smartContract"
+ ],
+ "icon": "emr"
+ }
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqw0tp0z2evzvdgmreavvszfwkncnxnsejtxfql7w9tu.json b/accounts/erd1qqqqqqqqqqqqqpgqw0tp0z2evzvdgmreavvszfwkncnxnsejtxfql7w9tu.json
new file mode 100644
index 0000000000..2d93610597
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqw0tp0z2evzvdgmreavvszfwkncnxnsejtxfql7w9tu.json
@@ -0,0 +1,11 @@
+{
+ "name": "Middle Staking : Swap Contract",
+ "description": "Liquidity pool for the swap",
+ "social": {
+ "website": "https://www.middlestaking.fr/",
+ "twitter": "MiddleStaking",
+ "telegram": "https://t.me/middlestaking"
+ },
+ "tags": ["middlestaking", "liquidity", "swap", "contract"],
+ "icon": "middle"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqwcywk6z2mx6apxcyy6ngkxene9844lahdn3qczrxkf.json b/accounts/erd1qqqqqqqqqqqqqpgqwcywk6z2mx6apxcyy6ngkxene9844lahdn3qczrxkf.json
new file mode 100644
index 0000000000..f83fa12184
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqwcywk6z2mx6apxcyy6ngkxene9844lahdn3qczrxkf.json
@@ -0,0 +1,12 @@
+{
+ "name": "DB Coding: Tokens Vesting",
+ "description": "Contract for Tokens Vesting",
+ "website": "",
+ "social": {
+ "blog": "",
+ "twitter": ""
+ },
+ "tags": [
+ "vesting"
+ ]
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqwp73w2a9eyzs64eltupuz3y3hv798vlv899qrjnflg.json b/accounts/erd1qqqqqqqqqqqqqpgqwp73w2a9eyzs64eltupuz3y3hv798vlv899qrjnflg.json
new file mode 100644
index 0000000000..09448a1138
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqwp73w2a9eyzs64eltupuz3y3hv798vlv899qrjnflg.json
@@ -0,0 +1,15 @@
+{
+ "name": "OOX: Marketplace",
+ "description": "A marketplace created by OnionX for artists!",
+ "social": {
+ "website": "https://ooxart.art",
+ "twitter": "https://x.com/Oni0nX",
+ "telegram": "https://t.me/OnionxClub"
+ },
+ "tags": [
+ "oox",
+ "nft",
+ "marketplace"
+ ],
+ "icon": "oox"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqwtgx6yj5vf2h2rxnfunexneq834w50afldhsv50yzm.json b/accounts/erd1qqqqqqqqqqqqqpgqwtgx6yj5vf2h2rxnfunexneq834w50afldhsv50yzm.json
new file mode 100644
index 0000000000..240b13ff83
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqwtgx6yj5vf2h2rxnfunexneq834w50afldhsv50yzm.json
@@ -0,0 +1,16 @@
+{
+ "name": "BHero: Inspir3 Minter",
+ "description": "Inspir3 Minter via BHero Launchpad",
+ "social": {
+ "website": "https://www.inspir3.io",
+ "twitter": "https://x.com/Inspir3NFT",
+ "whitepaper": "https://whitepaper.inspir3.io",
+ "discord": "http://discord.gg/inspir3"
+ },
+ "tags": [
+ "inspir3",
+ "bhero",
+ "launchpad"
+ ],
+ "icon": "bhero"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqwtyu7d5qw322smp0kjq789ua0wtz5cfa2jpsu999xr.json b/accounts/erd1qqqqqqqqqqqqqpgqwtyu7d5qw322smp0kjq789ua0wtz5cfa2jpsu999xr.json
new file mode 100644
index 0000000000..37ba91103e
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqwtyu7d5qw322smp0kjq789ua0wtz5cfa2jpsu999xr.json
@@ -0,0 +1,16 @@
+{
+ "name": "xExchange: XMEX Position Creator",
+ "description": "",
+ "social": {
+ "website": "https://xexchange.com",
+ "twitter": "https://twitter.com/xExchangeApp",
+ "telegram": "https://t.me/xExchangeApp",
+ "blog": "https://xexchange.com/x-exchange-economics.pdf"
+ },
+ "tags": [
+ "xexchange",
+ "xmex",
+ "positioncreator"
+ ],
+ "icon": "xexchange"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqwuvhuupju6r5qpszuh8hdccjrya9h07yjn5qqtetdt.json b/accounts/erd1qqqqqqqqqqqqqpgqwuvhuupju6r5qpszuh8hdccjrya9h07yjn5qqtetdt.json
new file mode 100644
index 0000000000..37382d91fe
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqwuvhuupju6r5qpszuh8hdccjrya9h07yjn5qqtetdt.json
@@ -0,0 +1,17 @@
+{
+ "name": "Globees: NFT Minter",
+ "description": "Manage NFT distribution",
+ "social": {
+ "website": "https://globees.co",
+ "dApp": "https://dapp.globees.io",
+ "email": "contact@globees.fr",
+ "blog": "https://www.globees.co",
+ "twitter": "https://twitter.com/Globees_Project",
+ "telegram": "https://t.me/globees",
+ "discord": "https://discord.com/invite/ejanxfCqj4",
+ "github": "https://github.com/XGlobees",
+ "whitepaper": "https://globees.fr/whitepaper-globees/"
+ },
+ "tags": ["RWA", "Travel", "NFT", "Staking"],
+ "icon": "globees"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqwww39l8r8d38kd0snfvny7ae82czgamktuqqua6hg6.json b/accounts/erd1qqqqqqqqqqqqqpgqwww39l8r8d38kd0snfvny7ae82czgamktuqqua6hg6.json
new file mode 100644
index 0000000000..fb91d75ef1
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqwww39l8r8d38kd0snfvny7ae82czgamktuqqua6hg6.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - DAO xSafe SC",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak", "xSafe"],
+ "icon": ""
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqx0zngnexmrgkvghhv35k3u40l6azqlf3u7zswu8pgk.json b/accounts/erd1qqqqqqqqqqqqqpgqx0zngnexmrgkvghhv35k3u40l6azqlf3u7zswu8pgk.json
new file mode 100644
index 0000000000..5e92747ee5
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqx0zngnexmrgkvghhv35k3u40l6azqlf3u7zswu8pgk.json
@@ -0,0 +1,18 @@
+{
+ "name": "Valoro: MemeXtreme Fund",
+ "description": "Valoro MemeXtreme is a high-risk, high-reward meme token portfolio for those ready to gamble on the wildest trends.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/memextreme",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "meme",
+ "memextreme"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqx7zlk72j6st0hnag9x3drydfadsjc86c27rs8yfq5r.json b/accounts/erd1qqqqqqqqqqqqqpgqx7zlk72j6st0hnag9x3drydfadsjc86c27rs8yfq5r.json
new file mode 100644
index 0000000000..40ad898598
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqx7zlk72j6st0hnag9x3drydfadsjc86c27rs8yfq5r.json
@@ -0,0 +1,23 @@
+{
+ "name": "PeerMe: MultiversX Foundation Council",
+ "description": "MultiversX Foundation Council",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://x.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": [
+ "peerme",
+ "governance",
+ "dao",
+ "multisig"
+ ],
+ "icon": "peerme"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqxa24yqljd04s07m9s36plwex8p68hjq8dn3q0fur66.json b/accounts/erd1qqqqqqqqqqqqqpgqxa24yqljd04s07m9s36plwex8p68hjq8dn3q0fur66.json
new file mode 100644
index 0000000000..3c0ffd78d9
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqxa24yqljd04s07m9s36plwex8p68hjq8dn3q0fur66.json
@@ -0,0 +1,6 @@
+{
+ "name": "xBulk: Hug-O-Matic-9000",
+ "description": "Hug-O-Matic-9000 distribution contract for xBulk.app",
+ "tags": ["commmunity", "bulk"],
+ "icon": "xbulk"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqxexs26vrvhwh2m4he62d6y3jzmv3qkujyfkq8yh4z2.json b/accounts/erd1qqqqqqqqqqqqqpgqxexs26vrvhwh2m4he62d6y3jzmv3qkujyfkq8yh4z2.json
index 4e9b00d10f..25a7634554 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqxexs26vrvhwh2m4he62d6y3jzmv3qkujyfkq8yh4z2.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqxexs26vrvhwh2m4he62d6y3jzmv3qkujyfkq8yh4z2.json
@@ -1,5 +1,5 @@
{
- "name": "xBridge: Ethereum Multisig",
+ "name": "xBridge v2 (deprecated): Ethereum Multisig",
"description": "",
"social": {
"website": "https://bridge.multiversx.com"
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqxjj6tyrnrdegga4j66s20wql5e9ksq0hmvlssnf6j2.json b/accounts/erd1qqqqqqqqqqqqqpgqxjj6tyrnrdegga4j66s20wql5e9ksq0hmvlssnf6j2.json
index 8afa12c86e..5b75cd49dc 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqxjj6tyrnrdegga4j66s20wql5e9ksq0hmvlssnf6j2.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqxjj6tyrnrdegga4j66s20wql5e9ksq0hmvlssnf6j2.json
@@ -15,5 +15,5 @@
"exchange",
"launchpad"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqxpkagqaqp9xz0cq5cq9a9fjtxde7d5aydn3qvnvqls.json b/accounts/erd1qqqqqqqqqqqqqpgqxpkagqaqp9xz0cq5cq9a9fjtxde7d5aydn3qvnvqls.json
new file mode 100644
index 0000000000..aa3f572ef5
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqxpkagqaqp9xz0cq5cq9a9fjtxde7d5aydn3qvnvqls.json
@@ -0,0 +1,21 @@
+{
+ "name": "E.V Ecosystem: OAG Containers",
+ "description": "OAG Containers Opener",
+ "social": {
+ "website": "https://www.eventivivi.it/nft",
+ "email": "evnftreal@gmail.com",
+ "twitter": "https://twitter.com/EVNFTreal",
+ "instagram": "https://www.instagram.com/evnftreal",
+ "discord": "https://discord.gg/63w5zDujzA",
+ "dApp": "https://dapp.eventivivi.it",
+ "facebook": "https://www.facebook.com/evnftreal",
+ "telegram": "https://t.me/evnftreal",
+ "tiktok": "https://www.tiktok.com/@evnftreal",
+ "whitepaper": "https://e-v-ecosystem.gitbook.io/e.v-ecosystem"
+ },
+ "tags": [
+ "ev",
+ "oag containers"
+ ],
+ "icon": "ev"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqxslnus9asdhmujwf69znhq04wjwafmagcrtqrgmyh8.json b/accounts/erd1qqqqqqqqqqqqqpgqxslnus9asdhmujwf69znhq04wjwafmagcrtqrgmyh8.json
new file mode 100644
index 0000000000..33623c9ead
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqxslnus9asdhmujwf69znhq04wjwafmagcrtqrgmyh8.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : burn",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqxtauycmn4ptle5yfkg8ssdrhn2xksrxru7zsye5gsx.json b/accounts/erd1qqqqqqqqqqqqqpgqxtauycmn4ptle5yfkg8ssdrhn2xksrxru7zsye5gsx.json
new file mode 100644
index 0000000000..67c2b76985
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqxtauycmn4ptle5yfkg8ssdrhn2xksrxru7zsye5gsx.json
@@ -0,0 +1,17 @@
+{
+ "name": "Valoro: Heaven Fund",
+ "description": "Valoro Heaven is the crown jewel of funds, designed for those seeking steady growth with minimal risk.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/heaven",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "heaven"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqxxs3etvwccvq9fcg6cxczuvlp47cp8qtgzmqsqvfcg.json b/accounts/erd1qqqqqqqqqqqqqpgqxxs3etvwccvq9fcg6cxczuvlp47cp8qtgzmqsqvfcg.json
new file mode 100644
index 0000000000..4f53450164
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqxxs3etvwccvq9fcg6cxczuvlp47cp8qtgzmqsqvfcg.json
@@ -0,0 +1,16 @@
+{
+ "name": "xLaunchpad: XOXNO",
+ "description": "",
+ "social": {
+ "website": "https://xlaunchpad.com",
+ "twitter": "https://twitter.com/xLaunchpadApp",
+ "telegram": "https://t.me/xLaunchpadApp",
+ "facebook": "https://www.facebook.com/MultiversX",
+ "linkedin": "https://mt.linkedin.com/company/multiversx"
+ },
+ "tags": [
+ "xlaunchpad",
+ "xoxno"
+ ],
+ "icon": "xlaunchpad"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqy0hn7p0c5k4qszaewejt5988w4c0nty0u7zs0yy8wu.json b/accounts/erd1qqqqqqqqqqqqqpgqy0hn7p0c5k4qszaewejt5988w4c0nty0u7zs0yy8wu.json
new file mode 100644
index 0000000000..9f43300916
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqy0hn7p0c5k4qszaewejt5988w4c0nty0u7zs0yy8wu.json
@@ -0,0 +1,18 @@
+{
+ "name": "Valoro: Fund Template",
+ "description": "Valoro's template SC for creating new Funds.",
+ "social": {
+ "website": "https://valoro.fund/",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-funds",
+ "investments",
+ "defi",
+ "fund-template"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqydpa2kry2xlc9l578uqs0nams2j86zram4rq4z8093.json b/accounts/erd1qqqqqqqqqqqqqpgqydpa2kry2xlc9l578uqs0nams2j86zram4rq4z8093.json
new file mode 100644
index 0000000000..5d15746a00
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqydpa2kry2xlc9l578uqs0nams2j86zram4rq4z8093.json
@@ -0,0 +1,17 @@
+{
+ "name": "Ta-da : prize pool",
+ "description": "One App Infinite Ways To-Earn",
+ "social": {
+ "website": "https://ta-da.io/",
+ "email": "contact@ta-da.io",
+ "twitter": "https://x.com/Ta_da_io",
+ "coingecko": "https://www.coingecko.com/en/coins/ta-da",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ta-da/",
+ "discord": "https://discord.gg/ta-da",
+ "telegram": "https://t.me/Ta_da_announcements"
+ },
+ "tags": [
+ "Ta-da"
+ ],
+ "icon": "tada"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqygcjk0806spzuasm0kq7rs27w9qr5536548slf90pf.json b/accounts/erd1qqqqqqqqqqqqqpgqygcjk0806spzuasm0kq7rs27w9qr5536548slf90pf.json
index b3515a76b1..a9ad691800 100644
--- a/accounts/erd1qqqqqqqqqqqqqpgqygcjk0806spzuasm0kq7rs27w9qr5536548slf90pf.json
+++ b/accounts/erd1qqqqqqqqqqqqqpgqygcjk0806spzuasm0kq7rs27w9qr5536548slf90pf.json
@@ -15,5 +15,6 @@
"tags": [
"bhero",
"dao"
- ]
+ ],
+ "icon": "bhero"
}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqyl8mfukn63xwafwvw9cdetnnkty24dn4jy0s3g8ky8.json b/accounts/erd1qqqqqqqqqqqqqpgqyl8mfukn63xwafwvw9cdetnnkty24dn4jy0s3g8ky8.json
new file mode 100644
index 0000000000..6b74e8953b
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqyl8mfukn63xwafwvw9cdetnnkty24dn4jy0s3g8ky8.json
@@ -0,0 +1,10 @@
+{
+ "name": "Ai Gains",
+ "description": "Monthly reward",
+ "website": "https://aigainsnft.com/",
+ "social": {
+ "blog": "",
+ "twitter": "https://x.com/AIGains"
+ },
+ "tags": []
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqyvf9z7ptk6p6yuukea58n0uqzx7x5k9me3yqem7dds.json b/accounts/erd1qqqqqqqqqqqqqpgqyvf9z7ptk6p6yuukea58n0uqzx7x5k9me3yqem7dds.json
new file mode 100644
index 0000000000..02e851f5ab
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqyvf9z7ptk6p6yuukea58n0uqzx7x5k9me3yqem7dds.json
@@ -0,0 +1,13 @@
+{
+ "name": "xBridge: Bsc Multisig",
+ "description": "",
+ "social": {
+ "website": "https://bridge.multiversx.com"
+ },
+ "tags": [
+ "xbridge",
+ "bsc",
+ "multisig"
+ ],
+ "icon": "multiversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqyxqwuhtj3xhftcpn2kzuq07lhdp4ng222jps650gtt.json b/accounts/erd1qqqqqqqqqqqqqpgqyxqwuhtj3xhftcpn2kzuq07lhdp4ng222jps650gtt.json
new file mode 100644
index 0000000000..4ebcb501f0
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqyxqwuhtj3xhftcpn2kzuq07lhdp4ng222jps650gtt.json
@@ -0,0 +1,15 @@
+{
+ "name": "xExchange: Governance",
+ "description": "",
+ "social": {
+ "website": "https://xexchange.com",
+ "twitter": "https://twitter.com/xExchangeApp",
+ "telegram": "https://t.me/xExchangeApp",
+ "blog": "https://xexchange.com/x-exchange-economics.pdf"
+ },
+ "tags": [
+ "xexchange",
+ "governance"
+ ],
+ "icon": "xexchange"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqyzxkrfsvqde8zakmzml0pdgux23clyuel3tsvxr725.json b/accounts/erd1qqqqqqqqqqqqqpgqyzxkrfsvqde8zakmzml0pdgux23clyuel3tsvxr725.json
new file mode 100644
index 0000000000..2ab15f8bd4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqyzxkrfsvqde8zakmzml0pdgux23clyuel3tsvxr725.json
@@ -0,0 +1,17 @@
+{
+ "name": "PeerMe: Payout Module",
+ "description": "Facilitates payments, salaries, grants, and other payouts. Can contain conditions such as KYC and other requirements.",
+ "social": {
+ "website": "https://peerme.io",
+ "email": "hello@peerme.io",
+ "twitter": "https://twitter.com/PeerMeHQ",
+ "coingecko": "https://www.coingecko.com/en/coins/peerme-super",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/superciety",
+ "discord": "https://discord.peerme.io",
+ "telegram": "https://telegram.peerme.io",
+ "youtube": "https://www.youtube.com/@peerme",
+ "github": "https://github.com/PeerMeHQ",
+ "community": "https://egld.community/projects/PeerMe"
+ },
+ "tags": ["peerme", "payments", "saleries", "payouts", "grants", "kyc", "p2p"]
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqz02n5hste83dmqznw6wcm0p66f9qchzpv3yswfax4m.json b/accounts/erd1qqqqqqqqqqqqqpgqz02n5hste83dmqznw6wcm0p66f9qchzpv3yswfax4m.json
new file mode 100644
index 0000000000..ea69fb15d6
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqz02n5hste83dmqznw6wcm0p66f9qchzpv3yswfax4m.json
@@ -0,0 +1,16 @@
+{
+ "name": "BHero: Build21 Launchpad Phase 1",
+ "description": "Build21 Launchpad Phase 1 via BHero Launchpad",
+ "social": {
+ "blog": "https://build21.io/en/news",
+ "twitter": "https://x.com/Build21io",
+ "whitepaper": "https://whitepaper.build21.io/",
+ "telegram": "https://t.me/Build21_En"
+ },
+ "tags": [
+ "build21",
+ "bhero",
+ "launchpad"
+ ],
+ "icon": "bhero"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqz3meu703ptaveze7v4zj2zx02x9r5p46u7zsegqfsc.json b/accounts/erd1qqqqqqqqqqqqqpgqz3meu703ptaveze7v4zj2zx02x9r5p46u7zsegqfsc.json
new file mode 100644
index 0000000000..cc5511d6c4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqz3meu703ptaveze7v4zj2zx02x9r5p46u7zsegqfsc.json
@@ -0,0 +1,17 @@
+{
+ "name": "Valoro: DeFi Fund",
+ "description": "Valoro DeFi is a comprehensive fund that includes the top three DeFi projects within the MultiversX ecosystem.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/defi",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "defi"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqz53ryn8z28vdrjsjfcrkaredcylqu0tnwmfsplrz6k.json b/accounts/erd1qqqqqqqqqqqqqpgqz53ryn8z28vdrjsjfcrkaredcylqu0tnwmfsplrz6k.json
new file mode 100644
index 0000000000..ed9b4cc929
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqz53ryn8z28vdrjsjfcrkaredcylqu0tnwmfsplrz6k.json
@@ -0,0 +1,14 @@
+{
+ "name": "ESTAR: xCastle Craft With Assets",
+ "description": "",
+ "social": {
+ "website": "https://estar.games",
+ "twitter": "https://twitter.com/EstarToken",
+ "whitepaper": "https://whitepaper.estar.games",
+ "email": "contact@estar.games",
+ "discord": "https://discord.com/invite/estar",
+ "telegram": "https://t.me/estartoken"
+ },
+ "tags": ["game", "craft", "assets"],
+ "icon": "estar"
+}
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqzjx6348veln8asj6mpjka2x7fhfh7exmu7zsf8wq76.json b/accounts/erd1qqqqqqqqqqqqqpgqzjx6348veln8asj6mpjka2x7fhfh7exmu7zsf8wq76.json
new file mode 100644
index 0000000000..c8172c4909
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqzjx6348veln8asj6mpjka2x7fhfh7exmu7zsf8wq76.json
@@ -0,0 +1,17 @@
+{
+ "name": "Valoro: Squeeze Fund",
+ "description": "Valoro Squeeze is a specially curated fund consisting of the three main tokens of the MultiversX ecosystem: EGLD, UTK, and MEX.",
+ "social": {
+ "website": "https://valoro.fund/investment-funds/squeeze",
+ "twitter": "https://twitter.com/ValoroFund",
+ "telegram": "https://t.me/valorofund",
+ "whitepaper": "https://docs.valoro.fund/"
+ },
+ "tags": [
+ "valoro",
+ "index-fund",
+ "investment",
+ "squeeze"
+ ],
+ "icon": "valoro"
+}
\ No newline at end of file
diff --git a/accounts/erd1qqqqqqqqqqqqqpgqzntuf2svezfy3wlkwpef2huytje9ynn2mp3srswewq.json b/accounts/erd1qqqqqqqqqqqqqpgqzntuf2svezfy3wlkwpef2huytje9ynn2mp3srswewq.json
new file mode 100644
index 0000000000..77c7928cd4
--- /dev/null
+++ b/accounts/erd1qqqqqqqqqqqqqpgqzntuf2svezfy3wlkwpef2huytje9ynn2mp3srswewq.json
@@ -0,0 +1,15 @@
+{
+
+ "name": "Dynamic Staking SC",
+ "social": {
+ "email": "support@emorya.com",
+ "website": "https://emorya.com",
+ "twitter": "https://twitter.com/EmoryaFinance",
+ "telegram": "https://t.me/EmoryaFinanceRO"
+ },
+ "tags": [
+ "emr",
+ "smartContract"
+ ],
+ "icon": "emr"
+ }
\ No newline at end of file
diff --git a/accounts/erd1rsh3czcavsa0xa27djuf4uwdseaf60unxp9cfhteuvh7k4esrmlqhj0l36.json b/accounts/erd1rsh3czcavsa0xa27djuf4uwdseaf60unxp9cfhteuvh7k4esrmlqhj0l36.json
new file mode 100644
index 0000000000..3ff03c9275
--- /dev/null
+++ b/accounts/erd1rsh3czcavsa0xa27djuf4uwdseaf60unxp9cfhteuvh7k4esrmlqhj0l36.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Cex Wallet",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
\ No newline at end of file
diff --git a/accounts/erd1slm0438zzr8hutclhkysnjslxuxq667yvjq9jdwhml7dwsw9xqustr4d0c.json b/accounts/erd1slm0438zzr8hutclhkysnjslxuxq667yvjq9jdwhml7dwsw9xqustr4d0c.json
new file mode 100644
index 0000000000..f977de9532
--- /dev/null
+++ b/accounts/erd1slm0438zzr8hutclhkysnjslxuxq667yvjq9jdwhml7dwsw9xqustr4d0c.json
@@ -0,0 +1,14 @@
+{
+ "name": "MemeversX: Meme Season",
+ "description": "MemeversX Meme Season",
+ "social": {
+ "website": "https://memeversx.com/",
+ "telegram": "https://t.me/memeversx",
+ "twitter": "https://twitter.com/memevers_x"
+ },
+ "tags": [
+ "memeversx",
+ "meme season"
+ ],
+ "icon": "memeversx"
+}
\ No newline at end of file
diff --git a/accounts/erd1u8j90mxv4wvdj265nffuuguwl4gw8e8mvnkuhd0tt34q8fdc45qsg25jyp.json b/accounts/erd1u8j90mxv4wvdj265nffuuguwl4gw8e8mvnkuhd0tt34q8fdc45qsg25jyp.json
new file mode 100644
index 0000000000..4b79a21753
--- /dev/null
+++ b/accounts/erd1u8j90mxv4wvdj265nffuuguwl4gw8e8mvnkuhd0tt34q8fdc45qsg25jyp.json
@@ -0,0 +1,30 @@
+{
+ "name": "XOXNO: Token Manager",
+ "description": "The Token Manager Account oversees the primary smart contracts associated with the $XOXNO token. This account is responsible for managing key operations and is also the minter of the $XOXNO token, ensuring efficient and secure token issuance and governance within the ecosystem.",
+ "social": {
+ "email": "contact@xoxno.com",
+ "website": "https://xoxno.com",
+ "discord": "https://discord.gg/xoxno",
+ "twitter": "https://x.com/XoxnoNetwork",
+ "telegram": "https://xoxno.t.me",
+ "instagram": "https://instagram.com/xoxnoNFTs",
+ "github": "https://github.com/XOXNO",
+ "whitepaper": "https://xoxno.com/whitepaper",
+ "linkedin": "https://linkedin.com/company/xoxno",
+ "youtube": "https://www.youtube.com/channel/UCeknNkwBJZhrHcPPEMHAYrg",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/"
+ },
+ "tags": [
+ "XOXNO",
+ "Marketplace",
+ "Launchpad",
+ "Liquid Staking",
+ "Finance",
+ "DeFi",
+ "Ticketing",
+ "L2",
+ "Web2",
+ "Real Yield"
+ ],
+ "icon": "xoxno"
+}
diff --git a/accounts/erd1vmgnlftgl6fp90f4v4tkdwemvs47tlr4tzz8jl4dw0cx23aep05st3jwjh.json b/accounts/erd1vmgnlftgl6fp90f4v4tkdwemvs47tlr4tzz8jl4dw0cx23aep05st3jwjh.json
new file mode 100644
index 0000000000..764479c105
--- /dev/null
+++ b/accounts/erd1vmgnlftgl6fp90f4v4tkdwemvs47tlr4tzz8jl4dw0cx23aep05st3jwjh.json
@@ -0,0 +1,11 @@
+{
+ "name": "Kwak - Marketing Wallet",
+ "description": "",
+ "social": {
+ "website": "https://kwak.lol",
+ "telegram": "https://t.me/dakwakklub",
+ "twitter": "https://x.com/kwakdotlol"
+ },
+ "tags": ["kwak"],
+ "icon": "kwak"
+}
\ No newline at end of file
diff --git a/accounts/erd1y2vj7jqypaxzz3xwpylnvrs3tzttgjcpnyu4pur7lzz5pqkmhtys0treas.json b/accounts/erd1y2vj7jqypaxzz3xwpylnvrs3tzttgjcpnyu4pur7lzz5pqkmhtys0treas.json
new file mode 100644
index 0000000000..209eec777c
--- /dev/null
+++ b/accounts/erd1y2vj7jqypaxzz3xwpylnvrs3tzttgjcpnyu4pur7lzz5pqkmhtys0treas.json
@@ -0,0 +1,29 @@
+{
+ "name": "Ofero: Treasury Box",
+ "description": "The Ofero Network's Treasury Box",
+ "social": {
+ "website": "https://www.ofero.network",
+ "email": "contact@ofero.network",
+ "twitter": "https://twitter.com/oferonetwork",
+ "whitepaper": "https://ofero.network/documents/whitepaper.pdf",
+ "coinmarketcap": "https://coinmarketcap.com/currencies/ofero-network",
+ "coingecko": "https://www.coingecko.com/en/coins/ofero",
+ "telegram": "https://t.me/oferonetwork",
+ "youtube": "https://www.youtube.com/@oferonetwork",
+ "facebook": "https://www.facebook.com/oferonetwork",
+ "instagram": "http://instagram.com/oferonetwork",
+ "linkedin": "https://www.linkedin.com/company/oferonetwork",
+ "linktree": "https://linktr.ee/oferonetwork",
+ "discord": "https://discord.gg/PrKZpqbwk4",
+ "blog": "https://medium.com/@oferonetwork",
+ "reddit": "https://www.reddit.com/r/ofero_network"
+ },
+ "tags": [
+ "ofero",
+ "ofero network",
+ "treasury",
+ "treasury box",
+ "community"
+ ],
+ "icon": "oferonetwork"
+}
\ No newline at end of file
diff --git a/accounts/icons/FunDex.png b/accounts/icons/FunDex.png
new file mode 100644
index 0000000000..331adcd5aa
Binary files /dev/null and b/accounts/icons/FunDex.png differ
diff --git a/accounts/icons/FunDex.svg b/accounts/icons/FunDex.svg
new file mode 100644
index 0000000000..e5fe1425b8
--- /dev/null
+++ b/accounts/icons/FunDex.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/accounts/icons/ashswap.png b/accounts/icons/ashswap.png
index 96cd6edc99..9454af5215 100644
Binary files a/accounts/icons/ashswap.png and b/accounts/icons/ashswap.png differ
diff --git a/accounts/icons/ashswap.svg b/accounts/icons/ashswap.svg
index 42277192b9..ade5ee5f1d 100644
--- a/accounts/icons/ashswap.svg
+++ b/accounts/icons/ashswap.svg
@@ -1,74 +1,12 @@
-
-
+
diff --git a/accounts/icons/bhero.png b/accounts/icons/bhero.png
new file mode 100644
index 0000000000..369a33a37e
Binary files /dev/null and b/accounts/icons/bhero.png differ
diff --git a/accounts/icons/bhero.svg b/accounts/icons/bhero.svg
new file mode 100644
index 0000000000..5777777f3c
--- /dev/null
+++ b/accounts/icons/bhero.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/accounts/icons/bober-battle.png b/accounts/icons/bober-battle.png
new file mode 100644
index 0000000000..af41f416dc
Binary files /dev/null and b/accounts/icons/bober-battle.png differ
diff --git a/accounts/icons/bober-battle.svg b/accounts/icons/bober-battle.svg
new file mode 100644
index 0000000000..d0bca7a507
--- /dev/null
+++ b/accounts/icons/bober-battle.svg
@@ -0,0 +1,207 @@
+
+
diff --git a/accounts/icons/bobyxmph.png b/accounts/icons/bobyxmph.png
new file mode 100644
index 0000000000..a8cffb74af
Binary files /dev/null and b/accounts/icons/bobyxmph.png differ
diff --git a/accounts/icons/bobyxmph.svg b/accounts/icons/bobyxmph.svg
new file mode 100644
index 0000000000..0b42f9aee2
--- /dev/null
+++ b/accounts/icons/bobyxmph.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/accounts/icons/boogasofficial.png b/accounts/icons/boogasofficial.png
new file mode 100644
index 0000000000..ccb3cbe138
Binary files /dev/null and b/accounts/icons/boogasofficial.png differ
diff --git a/accounts/icons/boogasofficial.svg b/accounts/icons/boogasofficial.svg
new file mode 100644
index 0000000000..a93f625a90
--- /dev/null
+++ b/accounts/icons/boogasofficial.svg
@@ -0,0 +1,2 @@
+
+
diff --git a/accounts/icons/dinovox.png b/accounts/icons/dinovox.png
new file mode 100644
index 0000000000..3e97edfddf
Binary files /dev/null and b/accounts/icons/dinovox.png differ
diff --git a/accounts/icons/dinovox.svg b/accounts/icons/dinovox.svg
new file mode 100644
index 0000000000..9be43731bd
--- /dev/null
+++ b/accounts/icons/dinovox.svg
@@ -0,0 +1,5 @@
+
+
\ No newline at end of file
diff --git a/accounts/icons/ecompass.png b/accounts/icons/ecompass.png
new file mode 100644
index 0000000000..3b1cb1e5cf
Binary files /dev/null and b/accounts/icons/ecompass.png differ
diff --git a/accounts/icons/ecompass.svg b/accounts/icons/ecompass.svg
new file mode 100644
index 0000000000..e8ad50bb4e
--- /dev/null
+++ b/accounts/icons/ecompass.svg
@@ -0,0 +1,612 @@
+
+
+
diff --git a/accounts/icons/emr.png b/accounts/icons/emr.png
new file mode 100644
index 0000000000..2d336d6802
Binary files /dev/null and b/accounts/icons/emr.png differ
diff --git a/accounts/icons/emr.svg b/accounts/icons/emr.svg
new file mode 100644
index 0000000000..91cb680f94
--- /dev/null
+++ b/accounts/icons/emr.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/accounts/icons/kwak.png b/accounts/icons/kwak.png
new file mode 100644
index 0000000000..a78fafc0d8
Binary files /dev/null and b/accounts/icons/kwak.png differ
diff --git a/accounts/icons/kwak.svg b/accounts/icons/kwak.svg
new file mode 100644
index 0000000000..8ecf990ebe
--- /dev/null
+++ b/accounts/icons/kwak.svg
@@ -0,0 +1,100 @@
+
+
+
diff --git a/accounts/icons/middle.png b/accounts/icons/middle.png
new file mode 100644
index 0000000000..d2c5d019cd
Binary files /dev/null and b/accounts/icons/middle.png differ
diff --git a/accounts/icons/middle.svg b/accounts/icons/middle.svg
new file mode 100644
index 0000000000..27f0bb1d77
--- /dev/null
+++ b/accounts/icons/middle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/accounts/icons/omi.png b/accounts/icons/omi.png
new file mode 100644
index 0000000000..62d3281f24
Binary files /dev/null and b/accounts/icons/omi.png differ
diff --git a/accounts/icons/omi.svg b/accounts/icons/omi.svg
new file mode 100644
index 0000000000..f267b8e39e
--- /dev/null
+++ b/accounts/icons/omi.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/accounts/icons/one.png b/accounts/icons/one.png
new file mode 100644
index 0000000000..fdbb107f10
Binary files /dev/null and b/accounts/icons/one.png differ
diff --git a/accounts/icons/one.svg b/accounts/icons/one.svg
new file mode 100644
index 0000000000..db16e4d1e2
--- /dev/null
+++ b/accounts/icons/one.svg
@@ -0,0 +1,47 @@
+
diff --git a/accounts/icons/oox.png b/accounts/icons/oox.png
new file mode 100644
index 0000000000..def47a12f8
Binary files /dev/null and b/accounts/icons/oox.png differ
diff --git a/accounts/icons/oox.svg b/accounts/icons/oox.svg
new file mode 100644
index 0000000000..3b93a5a27f
--- /dev/null
+++ b/accounts/icons/oox.svg
@@ -0,0 +1,740 @@
+
+
+
diff --git a/accounts/icons/projectx-edge-sniper.png b/accounts/icons/projectx-edge-sniper.png
new file mode 100644
index 0000000000..aab038956c
Binary files /dev/null and b/accounts/icons/projectx-edge-sniper.png differ
diff --git a/accounts/icons/projectx-edge-sniper.svg b/accounts/icons/projectx-edge-sniper.svg
new file mode 100644
index 0000000000..e0cd78706e
--- /dev/null
+++ b/accounts/icons/projectx-edge-sniper.svg
@@ -0,0 +1,321 @@
+
+
diff --git a/accounts/icons/tada.png b/accounts/icons/tada.png
new file mode 100644
index 0000000000..139bdc666e
Binary files /dev/null and b/accounts/icons/tada.png differ
diff --git a/accounts/icons/tada.svg b/accounts/icons/tada.svg
new file mode 100644
index 0000000000..53d8f8ff54
--- /dev/null
+++ b/accounts/icons/tada.svg
@@ -0,0 +1,64 @@
+
diff --git a/accounts/icons/tagrity.png b/accounts/icons/tagrity.png
new file mode 100644
index 0000000000..f06d407f71
Binary files /dev/null and b/accounts/icons/tagrity.png differ
diff --git a/accounts/icons/tagrity.svg b/accounts/icons/tagrity.svg
new file mode 100644
index 0000000000..6ec080f59c
--- /dev/null
+++ b/accounts/icons/tagrity.svg
@@ -0,0 +1,22 @@
+
diff --git a/accounts/icons/the-cursed-land.png b/accounts/icons/the-cursed-land.png
new file mode 100644
index 0000000000..b995c3002e
Binary files /dev/null and b/accounts/icons/the-cursed-land.png differ
diff --git a/accounts/icons/the-cursed-land.svg b/accounts/icons/the-cursed-land.svg
new file mode 100644
index 0000000000..6db97ebd73
--- /dev/null
+++ b/accounts/icons/the-cursed-land.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/accounts/icons/valoro.png b/accounts/icons/valoro.png
new file mode 100644
index 0000000000..ecd13b2554
Binary files /dev/null and b/accounts/icons/valoro.png differ
diff --git a/accounts/icons/valoro.svg b/accounts/icons/valoro.svg
new file mode 100644
index 0000000000..e36f4cca17
--- /dev/null
+++ b/accounts/icons/valoro.svg
@@ -0,0 +1,5 @@
+
diff --git a/accounts/icons/vleap.png b/accounts/icons/vleap.png
new file mode 100644
index 0000000000..e0ed17cadb
Binary files /dev/null and b/accounts/icons/vleap.png differ
diff --git a/accounts/icons/vleap.svg b/accounts/icons/vleap.svg
new file mode 100644
index 0000000000..34cf063dab
--- /dev/null
+++ b/accounts/icons/vleap.svg
@@ -0,0 +1,48 @@
+
diff --git a/accounts/icons/xexchange.png b/accounts/icons/xexchange.png
index 61056d3454..8fb6d6ede5 100644
Binary files a/accounts/icons/xexchange.png and b/accounts/icons/xexchange.png differ
diff --git a/accounts/icons/xexchange.svg b/accounts/icons/xexchange.svg
index 95b2aa85f1..571450d992 100644
--- a/accounts/icons/xexchange.svg
+++ b/accounts/icons/xexchange.svg
@@ -1,4 +1 @@
-
+
\ No newline at end of file
diff --git a/devnet/accounts/erd1qqqqqqqqqqqqqpgqhnmuen6gx7unfmqsjwx0ul7ezjyg2ndfvcqsa4nqax.json b/devnet/accounts/erd1qqqqqqqqqqqqqpgqhnmuen6gx7unfmqsjwx0ul7ezjyg2ndfvcqsa4nqax.json
index e21ee31215..c4d1ae5daf 100644
--- a/devnet/accounts/erd1qqqqqqqqqqqqqpgqhnmuen6gx7unfmqsjwx0ul7ezjyg2ndfvcqsa4nqax.json
+++ b/devnet/accounts/erd1qqqqqqqqqqqqqpgqhnmuen6gx7unfmqsjwx0ul7ezjyg2ndfvcqsa4nqax.json
@@ -5,5 +5,5 @@
"exchange",
"swap"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/devnet/accounts/erd1qqqqqqqqqqqqqpgqzwcw7lj3pccqa9u54cuj3as9f7wksjkpvcqsef9umt.json b/devnet/accounts/erd1qqqqqqqqqqqqqpgqzwcw7lj3pccqa9u54cuj3as9f7wksjkpvcqsef9umt.json
index ee3c05dc45..32aaf296ac 100644
--- a/devnet/accounts/erd1qqqqqqqqqqqqqpgqzwcw7lj3pccqa9u54cuj3as9f7wksjkpvcqsef9umt.json
+++ b/devnet/accounts/erd1qqqqqqqqqqqqqpgqzwcw7lj3pccqa9u54cuj3as9f7wksjkpvcqsef9umt.json
@@ -6,5 +6,5 @@
"onedex",
"farms"
],
- "icon": "onedex"
+ "icon": "one"
}
\ No newline at end of file
diff --git a/devnet/tokens/BEER-b16c6d/info.json b/devnet/tokens/BEER-b16c6d/info.json
new file mode 100644
index 0000000000..ce9afe5529
--- /dev/null
+++ b/devnet/tokens/BEER-b16c6d/info.json
@@ -0,0 +1,9 @@
+{
+ "social": {
+ "blog": "https://en.wikipedia.org/wiki/Beer",
+ "whitepaper": "https://en.wikipedia.org/wiki/Beer"
+ },
+ "website": "https://en.wikipedia.org/wiki/Beer",
+ "description": "Beer is a type of alcoholic drink. It is made with water, hops, barley (types of cereal grains), and types of yeast (a fungus that produces alcohol). A process called fermentation turns sugar into alcohol, using yeast. Another product of the fermentation is carbon dioxide. ",
+ "status": "active"
+}
\ No newline at end of file
diff --git a/devnet/tokens/BEER-b16c6d/logo.png b/devnet/tokens/BEER-b16c6d/logo.png
new file mode 100644
index 0000000000..66538fec00
Binary files /dev/null and b/devnet/tokens/BEER-b16c6d/logo.png differ
diff --git a/devnet/tokens/BEER-b16c6d/logo.svg b/devnet/tokens/BEER-b16c6d/logo.svg
new file mode 100644
index 0000000000..cd38f4e7e1
--- /dev/null
+++ b/devnet/tokens/BEER-b16c6d/logo.svg
@@ -0,0 +1,84 @@
+
+
diff --git a/devnet/tokens/BKL-01eec0/info.json b/devnet/tokens/BKL-01eec0/info.json
new file mode 100644
index 0000000000..2dcaef2fa3
--- /dev/null
+++ b/devnet/tokens/BKL-01eec0/info.json
@@ -0,0 +1,5 @@
+{
+ "website": "https://ashswap.io",
+ "description": "Balkava",
+ "status": "active"
+}
\ No newline at end of file
diff --git a/devnet/tokens/BKL-01eec0/logo.png b/devnet/tokens/BKL-01eec0/logo.png
new file mode 100644
index 0000000000..40ed0a156d
Binary files /dev/null and b/devnet/tokens/BKL-01eec0/logo.png differ
diff --git a/devnet/tokens/BKL-01eec0/logo.svg b/devnet/tokens/BKL-01eec0/logo.svg
new file mode 100644
index 0000000000..c6bf5475fd
--- /dev/null
+++ b/devnet/tokens/BKL-01eec0/logo.svg
@@ -0,0 +1,3 @@
+
diff --git a/devnet/tokens/EGLD-000000/info.json b/devnet/tokens/EGLD-000000/info.json
new file mode 100644
index 0000000000..23034592c4
--- /dev/null
+++ b/devnet/tokens/EGLD-000000/info.json
@@ -0,0 +1,5 @@
+{
+ "website": "https://multiversx.com",
+ "description": "EGLD-000000 is the identifier used when wanting to transfer EGLD via a MultiESDTNFTTransfer.",
+ "status": "active"
+}
diff --git a/devnet/tokens/EGLD-000000/logo.png b/devnet/tokens/EGLD-000000/logo.png
new file mode 100644
index 0000000000..0f82d972dd
Binary files /dev/null and b/devnet/tokens/EGLD-000000/logo.png differ
diff --git a/devnet/tokens/EGLD-000000/logo.svg b/devnet/tokens/EGLD-000000/logo.svg
new file mode 100644
index 0000000000..d2be1a1f96
--- /dev/null
+++ b/devnet/tokens/EGLD-000000/logo.svg
@@ -0,0 +1,7 @@
+
+
diff --git a/devnet/tokens/ETKN-c0f9e8/info.json b/devnet/tokens/ETKN-c0f9e8/info.json
new file mode 100644
index 0000000000..ca3f732d55
--- /dev/null
+++ b/devnet/tokens/ETKN-c0f9e8/info.json
@@ -0,0 +1,8 @@
+{
+ "website": "https://www.zzz.com",
+ "description": "ETKN is the new bitcoin",
+ "social": {
+ "email": "eveline.molnar@multiversx.com"
+ },
+ "status": "active"
+}
diff --git a/devnet/tokens/ETKN-c0f9e8/logo.png b/devnet/tokens/ETKN-c0f9e8/logo.png
new file mode 100644
index 0000000000..0edeb22764
Binary files /dev/null and b/devnet/tokens/ETKN-c0f9e8/logo.png differ
diff --git a/devnet/tokens/ETKN-c0f9e8/logo.svg b/devnet/tokens/ETKN-c0f9e8/logo.svg
new file mode 100644
index 0000000000..5ab9b52fb5
--- /dev/null
+++ b/devnet/tokens/ETKN-c0f9e8/logo.svg
@@ -0,0 +1,3472 @@
+
+
diff --git a/devnet/tokens/HAC-b09af5/info.json b/devnet/tokens/HAC-b09af5/info.json
new file mode 100644
index 0000000000..caf1918e84
--- /dev/null
+++ b/devnet/tokens/HAC-b09af5/info.json
@@ -0,0 +1,9 @@
+{
+ "social": {
+ "blog": "https://nodescrypt.neocities.org/hauriucoin",
+ "twitter": "https://twitter.com/VladHauriu"
+ },
+ "website": "https://nodescrypt.neocities.org/hauriucoin",
+ "description": "Hauriu Coin is a special currency often used to gamble between HAC members.",
+ "status": "active"
+}
\ No newline at end of file
diff --git a/devnet/tokens/HAC-b09af5/logo.png b/devnet/tokens/HAC-b09af5/logo.png
new file mode 100644
index 0000000000..986d8add60
Binary files /dev/null and b/devnet/tokens/HAC-b09af5/logo.png differ
diff --git a/devnet/tokens/HAC-b09af5/logo.svg b/devnet/tokens/HAC-b09af5/logo.svg
new file mode 100644
index 0000000000..751cc5673e
--- /dev/null
+++ b/devnet/tokens/HAC-b09af5/logo.svg
@@ -0,0 +1,10 @@
+
+
diff --git a/devnet/tokens/HCND-eed124/info.json b/devnet/tokens/HCND-eed124/info.json
new file mode 100644
index 0000000000..6b43fd9bb4
--- /dev/null
+++ b/devnet/tokens/HCND-eed124/info.json
@@ -0,0 +1,8 @@
+{
+ "website": "https://x.com/VladHauriu",
+ "description": "Hauriu Coin Devnet was the test version of the Hauriu Token. Check V2",
+ "status": "active",
+ "social": {
+ "twitter": "https://twitter.com/VladHauriu"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HCND-eed124/logo.png b/devnet/tokens/HCND-eed124/logo.png
new file mode 100644
index 0000000000..aa21ee27b8
Binary files /dev/null and b/devnet/tokens/HCND-eed124/logo.png differ
diff --git a/devnet/tokens/HCND-eed124/logo.svg b/devnet/tokens/HCND-eed124/logo.svg
new file mode 100644
index 0000000000..91f22708ad
--- /dev/null
+++ b/devnet/tokens/HCND-eed124/logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/devnet/tokens/HEGLD-ae8054/info.json b/devnet/tokens/HEGLD-ae8054/info.json
new file mode 100644
index 0000000000..b830e345e7
--- /dev/null
+++ b/devnet/tokens/HEGLD-ae8054/info.json
@@ -0,0 +1,12 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HEGLD is an interest bearing token representing an EGLD supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HEGLD-ae8054/logo.png b/devnet/tokens/HEGLD-ae8054/logo.png
new file mode 100644
index 0000000000..0d52e0c105
Binary files /dev/null and b/devnet/tokens/HEGLD-ae8054/logo.png differ
diff --git a/devnet/tokens/HEGLD-ae8054/logo.svg b/devnet/tokens/HEGLD-ae8054/logo.svg
new file mode 100644
index 0000000000..2fcb67ae64
--- /dev/null
+++ b/devnet/tokens/HEGLD-ae8054/logo.svg
@@ -0,0 +1,13 @@
+
diff --git a/devnet/tokens/HHTM-f26787/info.json b/devnet/tokens/HHTM-f26787/info.json
new file mode 100644
index 0000000000..625f68c645
--- /dev/null
+++ b/devnet/tokens/HHTM-f26787/info.json
@@ -0,0 +1,12 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HHTM is an interest bearing token representing a HTM supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
diff --git a/devnet/tokens/HHTM-f26787/logo.png b/devnet/tokens/HHTM-f26787/logo.png
new file mode 100644
index 0000000000..b063ce67ed
Binary files /dev/null and b/devnet/tokens/HHTM-f26787/logo.png differ
diff --git a/devnet/tokens/HHTM-f26787/logo.svg b/devnet/tokens/HHTM-f26787/logo.svg
new file mode 100644
index 0000000000..a5f9b10120
--- /dev/null
+++ b/devnet/tokens/HHTM-f26787/logo.svg
@@ -0,0 +1,12 @@
+
diff --git a/devnet/tokens/HSEGLD-dfbd96/info.json b/devnet/tokens/HSEGLD-dfbd96/info.json
new file mode 100644
index 0000000000..e6afbbcfad
--- /dev/null
+++ b/devnet/tokens/HSEGLD-dfbd96/info.json
@@ -0,0 +1,13 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HsEGLD is an interest bearing token representing a sEGLD supply position on Hatom's Lending & Borrowing Protocol.",
+ "ledgerSignature": "30440220674dd6edba401de11d2296eca6eccd09ae7480c3fd29244c0a9681e2aab864e202203c849a6aba92a59ce27f365d96d58c45ef0966868baf84b734dbdd6e94f3f5db",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HSEGLD-dfbd96/logo.png b/devnet/tokens/HSEGLD-dfbd96/logo.png
new file mode 100644
index 0000000000..3622a4f41d
Binary files /dev/null and b/devnet/tokens/HSEGLD-dfbd96/logo.png differ
diff --git a/devnet/tokens/HSEGLD-dfbd96/logo.svg b/devnet/tokens/HSEGLD-dfbd96/logo.svg
new file mode 100644
index 0000000000..069166499b
--- /dev/null
+++ b/devnet/tokens/HSEGLD-dfbd96/logo.svg
@@ -0,0 +1,12 @@
+
diff --git a/devnet/tokens/HSWTAO-4fb202/info.json b/devnet/tokens/HSWTAO-4fb202/info.json
new file mode 100644
index 0000000000..fcb46e51ec
--- /dev/null
+++ b/devnet/tokens/HSWTAO-4fb202/info.json
@@ -0,0 +1,9 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HswTAO is an interest bearing token representing a swTAO supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://mirror.xyz/0xDac8B6141d28C46765255607f3572c73A064383f/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active"
+}
diff --git a/devnet/tokens/HSWTAO-4fb202/logo.png b/devnet/tokens/HSWTAO-4fb202/logo.png
new file mode 100644
index 0000000000..9140a3a2fb
Binary files /dev/null and b/devnet/tokens/HSWTAO-4fb202/logo.png differ
diff --git a/devnet/tokens/HSWTAO-4fb202/logo.svg b/devnet/tokens/HSWTAO-4fb202/logo.svg
new file mode 100644
index 0000000000..33319fbbf2
--- /dev/null
+++ b/devnet/tokens/HSWTAO-4fb202/logo.svg
@@ -0,0 +1,6 @@
+
diff --git a/devnet/tokens/HUSDC-7c1ef2/info.json b/devnet/tokens/HUSDC-7c1ef2/info.json
new file mode 100644
index 0000000000..4884ecca84
--- /dev/null
+++ b/devnet/tokens/HUSDC-7c1ef2/info.json
@@ -0,0 +1,12 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HUSDC is an interest bearing token representing a USDC supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HUSDC-7c1ef2/logo.png b/devnet/tokens/HUSDC-7c1ef2/logo.png
new file mode 100644
index 0000000000..a3abd2565f
Binary files /dev/null and b/devnet/tokens/HUSDC-7c1ef2/logo.png differ
diff --git a/devnet/tokens/HUSDC-7c1ef2/logo.svg b/devnet/tokens/HUSDC-7c1ef2/logo.svg
new file mode 100644
index 0000000000..fcf6b57673
--- /dev/null
+++ b/devnet/tokens/HUSDC-7c1ef2/logo.svg
@@ -0,0 +1,13 @@
+
diff --git a/devnet/tokens/HUSDT-176913/info.json b/devnet/tokens/HUSDT-176913/info.json
new file mode 100644
index 0000000000..744bde0cd3
--- /dev/null
+++ b/devnet/tokens/HUSDT-176913/info.json
@@ -0,0 +1,12 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HUSDT is an interest bearing token representing a USDT supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HUSDT-176913/logo.png b/devnet/tokens/HUSDT-176913/logo.png
new file mode 100644
index 0000000000..bfdf813a1f
Binary files /dev/null and b/devnet/tokens/HUSDT-176913/logo.png differ
diff --git a/devnet/tokens/HUSDT-176913/logo.svg b/devnet/tokens/HUSDT-176913/logo.svg
new file mode 100644
index 0000000000..28c61350ea
--- /dev/null
+++ b/devnet/tokens/HUSDT-176913/logo.svg
@@ -0,0 +1,13 @@
+
diff --git a/devnet/tokens/HUTK-be74e1/info.json b/devnet/tokens/HUTK-be74e1/info.json
new file mode 100644
index 0000000000..afde8ed2ad
--- /dev/null
+++ b/devnet/tokens/HUTK-be74e1/info.json
@@ -0,0 +1,12 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HUTK is an interest bearing token representing a UTK supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HUTK-be74e1/logo.png b/devnet/tokens/HUTK-be74e1/logo.png
new file mode 100644
index 0000000000..c10960f8eb
Binary files /dev/null and b/devnet/tokens/HUTK-be74e1/logo.png differ
diff --git a/devnet/tokens/HUTK-be74e1/logo.svg b/devnet/tokens/HUTK-be74e1/logo.svg
new file mode 100644
index 0000000000..d651373813
--- /dev/null
+++ b/devnet/tokens/HUTK-be74e1/logo.svg
@@ -0,0 +1,14 @@
+
diff --git a/devnet/tokens/HWBTC-908ad0/info.json b/devnet/tokens/HWBTC-908ad0/info.json
new file mode 100644
index 0000000000..f1da960840
--- /dev/null
+++ b/devnet/tokens/HWBTC-908ad0/info.json
@@ -0,0 +1,12 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HWBTC is an interest bearing token representing a WBTC supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HWBTC-908ad0/logo.png b/devnet/tokens/HWBTC-908ad0/logo.png
new file mode 100644
index 0000000000..73f5f952de
Binary files /dev/null and b/devnet/tokens/HWBTC-908ad0/logo.png differ
diff --git a/devnet/tokens/HWBTC-908ad0/logo.svg b/devnet/tokens/HWBTC-908ad0/logo.svg
new file mode 100644
index 0000000000..1dd2dda386
--- /dev/null
+++ b/devnet/tokens/HWBTC-908ad0/logo.svg
@@ -0,0 +1,17 @@
+
diff --git a/devnet/tokens/HWETH-6200c7/info.json b/devnet/tokens/HWETH-6200c7/info.json
new file mode 100644
index 0000000000..d456eed840
--- /dev/null
+++ b/devnet/tokens/HWETH-6200c7/info.json
@@ -0,0 +1,12 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HWETH is an interest bearing token representing a WETH supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://blog.hatom.com/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active",
+ "priceSource": {
+ "type": "dataApi"
+ }
+}
\ No newline at end of file
diff --git a/devnet/tokens/HWETH-6200c7/logo.png b/devnet/tokens/HWETH-6200c7/logo.png
new file mode 100644
index 0000000000..f4ac646d74
Binary files /dev/null and b/devnet/tokens/HWETH-6200c7/logo.png differ
diff --git a/devnet/tokens/HWETH-6200c7/logo.svg b/devnet/tokens/HWETH-6200c7/logo.svg
new file mode 100644
index 0000000000..25323ccfde
--- /dev/null
+++ b/devnet/tokens/HWETH-6200c7/logo.svg
@@ -0,0 +1,17 @@
+
diff --git a/devnet/tokens/HWTAO-a17d68/info.json b/devnet/tokens/HWTAO-a17d68/info.json
new file mode 100644
index 0000000000..2553b35054
--- /dev/null
+++ b/devnet/tokens/HWTAO-a17d68/info.json
@@ -0,0 +1,9 @@
+{
+ "website": "https://hatom.com/",
+ "description": "HwTAO is an interest bearing token representing a wTAO supply position on Hatom's Lending & Borrowing Protocol.",
+ "social": {
+ "blog": "https://mirror.xyz/0xDac8B6141d28C46765255607f3572c73A064383f/",
+ "twitter": "https://twitter.com/HatomProtocol"
+ },
+ "status": "active"
+}
diff --git a/devnet/tokens/HWTAO-a17d68/logo.png b/devnet/tokens/HWTAO-a17d68/logo.png
new file mode 100644
index 0000000000..eb0ba68210
Binary files /dev/null and b/devnet/tokens/HWTAO-a17d68/logo.png differ
diff --git a/devnet/tokens/HWTAO-a17d68/logo.svg b/devnet/tokens/HWTAO-a17d68/logo.svg
new file mode 100644
index 0000000000..84a77c0cb7
--- /dev/null
+++ b/devnet/tokens/HWTAO-a17d68/logo.svg
@@ -0,0 +1,5 @@
+
diff --git a/devnet/tokens/IOUZ-c1bc75/info.json b/devnet/tokens/IOUZ-c1bc75/info.json
new file mode 100644
index 0000000000..b8301a9e04
--- /dev/null
+++ b/devnet/tokens/IOUZ-c1bc75/info.json
@@ -0,0 +1,14 @@
+{
+ "website": "youtube.com",
+ "description": "ceva smecher",
+ "ledgerSignature": "",
+ "social": {
+ "email": "",
+ "blog": "",
+ "twitter": "",
+ "whitepaper": "",
+ "coinmarketcap": "",
+ "coingecko": ""
+ },
+ "status": "active"
+}
diff --git a/devnet/tokens/IOUZ-c1bc75/logo.png b/devnet/tokens/IOUZ-c1bc75/logo.png
new file mode 100644
index 0000000000..9bfc46078b
Binary files /dev/null and b/devnet/tokens/IOUZ-c1bc75/logo.png differ
diff --git a/devnet/tokens/IOUZ-c1bc75/logo.svg b/devnet/tokens/IOUZ-c1bc75/logo.svg
new file mode 100644
index 0000000000..13514f713d
--- /dev/null
+++ b/devnet/tokens/IOUZ-c1bc75/logo.svg
@@ -0,0 +1,4 @@
+
diff --git a/devnet/tokens/KING-5f0c56/info.json b/devnet/tokens/KING-5f0c56/info.json
new file mode 100644
index 0000000000..331946fc2b
--- /dev/null
+++ b/devnet/tokens/KING-5f0c56/info.json
@@ -0,0 +1,8 @@
+{
+ "social": {
+ "twitter": "https://twitter.com/KingpinOfMVX"
+ },
+ "website": "https://kingpinofmvx.io/",
+ "description": "Rise to the top of the chain in this strategic battleground. Pledge your loyalty and lead with honour, or weave a web of deceit to manipulate the market and your rivals.",
+ "status": "active"
+}
\ No newline at end of file
diff --git a/devnet/tokens/KING-5f0c56/logo.png b/devnet/tokens/KING-5f0c56/logo.png
new file mode 100644
index 0000000000..f5ee9ba021
Binary files /dev/null and b/devnet/tokens/KING-5f0c56/logo.png differ
diff --git a/devnet/tokens/KING-5f0c56/logo.svg b/devnet/tokens/KING-5f0c56/logo.svg
new file mode 100644
index 0000000000..fb6292a635
--- /dev/null
+++ b/devnet/tokens/KING-5f0c56/logo.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/devnet/tokens/MEX-a659d0/info.json b/devnet/tokens/MEX-a659d0/info.json
index 835879eebc..178077ecb7 100644
--- a/devnet/tokens/MEX-a659d0/info.json
+++ b/devnet/tokens/MEX-a659d0/info.json
@@ -1,6 +1,6 @@
{
"website": "https://xexchange.com",
- "name:": "xMex",
+ "name": "xMex",
"description": "MEX the token used to incentivize liquidity provision to the xExchange.",
"ledgerSignature": "3045022100923b55fcd42a9c6a4f40027b4ddee1d4f76ee9f9eb2665b12369d7d0d36059b202205ba6c2a50812565022ea305b2fce93904ec531ad681762e3cc83296f2a013807",
"status": "active"
diff --git a/devnet/tokens/MEX-a659d0/logo.png b/devnet/tokens/MEX-a659d0/logo.png
index 5c58330149..78244866e7 100644
Binary files a/devnet/tokens/MEX-a659d0/logo.png and b/devnet/tokens/MEX-a659d0/logo.png differ
diff --git a/devnet/tokens/MEX-a659d0/logo.svg b/devnet/tokens/MEX-a659d0/logo.svg
index 6e26d196d9..2a81b72651 100644
--- a/devnet/tokens/MEX-a659d0/logo.svg
+++ b/devnet/tokens/MEX-a659d0/logo.svg
@@ -1,20 +1,4 @@
-