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 @@ - -image/svg+xml + + + + + + + + + + + + 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 @@ +1000x1000_BHero_Logo \ 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N + + + + + + + + + + + E + + + + + + + + + + + W + + + + + + + + + + + S + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 @@ + + AdobeStock_174752444-ai + + + + + + + + + + + + + \ 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 @@ - - - - - - - - - - - - - - - - - - + + + - diff --git a/devnet/tokens/MTKN-a21770/info.json b/devnet/tokens/MTKN-a21770/info.json new file mode 100644 index 0000000000..da5622c8eb --- /dev/null +++ b/devnet/tokens/MTKN-a21770/info.json @@ -0,0 +1,12 @@ +{ + "social": { + "blog": "https://www.multiversxtoken.com/EGLD-token-blog", + "twitter": "https://twitter.com/EGLD-token-twitter", + "whitepaper": "https://www.multiversxtoken.com/EGLD-token-whitepaper.pdf", + "coinmarketcap": "https://coinmarketcap.com/currencies/EGLD-token", + "coingecko": "https://www.coingecko.com/en/coins/EGLD-token" + }, + "website": "https://www.multiversxtoken.com", + "description": "The EGLD token is the utility token of MultiversX Token", + "status": "active" +} \ No newline at end of file diff --git a/devnet/tokens/MTKN-a21770/logo.png b/devnet/tokens/MTKN-a21770/logo.png new file mode 100644 index 0000000000..a977c5ee98 Binary files /dev/null and b/devnet/tokens/MTKN-a21770/logo.png differ diff --git a/devnet/tokens/MTKN-a21770/logo.svg b/devnet/tokens/MTKN-a21770/logo.svg new file mode 100644 index 0000000000..6c3e71587a --- /dev/null +++ b/devnet/tokens/MTKN-a21770/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/devnet/tokens/MUX-34c5e9/info.json b/devnet/tokens/MUX-34c5e9/info.json new file mode 100644 index 0000000000..85ddb82ad7 --- /dev/null +++ b/devnet/tokens/MUX-34c5e9/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://boberonmvx.com/", + "description": "test coin devnet", + "status": "active" +} \ No newline at end of file diff --git a/devnet/tokens/MUX-34c5e9/logo.png b/devnet/tokens/MUX-34c5e9/logo.png new file mode 100644 index 0000000000..0511554efb Binary files /dev/null and b/devnet/tokens/MUX-34c5e9/logo.png differ diff --git a/devnet/tokens/MUX-34c5e9/logo.svg b/devnet/tokens/MUX-34c5e9/logo.svg new file mode 100644 index 0000000000..8c55ada6c8 --- /dev/null +++ b/devnet/tokens/MUX-34c5e9/logo.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/devnet/tokens/SNIPERX-af4858/info.json b/devnet/tokens/SNIPERX-af4858/info.json new file mode 100644 index 0000000000..410ff0e181 --- /dev/null +++ b/devnet/tokens/SNIPERX-af4858/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://www.sniperx.live/", + "description": "Main token for trading platform!", + "status": "active" +} \ No newline at end of file diff --git a/devnet/tokens/SNIPERX-af4858/logo.png b/devnet/tokens/SNIPERX-af4858/logo.png new file mode 100644 index 0000000000..f2c50060f6 Binary files /dev/null and b/devnet/tokens/SNIPERX-af4858/logo.png differ diff --git a/devnet/tokens/SNIPERX-af4858/logo.svg b/devnet/tokens/SNIPERX-af4858/logo.svg new file mode 100644 index 0000000000..9b626691c7 --- /dev/null +++ b/devnet/tokens/SNIPERX-af4858/logo.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/devnet/tokens/STK-3306e8/info.json b/devnet/tokens/STK-3306e8/info.json new file mode 100644 index 0000000000..c91af52344 --- /dev/null +++ b/devnet/tokens/STK-3306e8/info.json @@ -0,0 +1,13 @@ +{ + "website": "https://www.seb_tokenn.com", + "description": "Sebastian's Token", + "social": { + "email": "egld-token@multiversx.com", + "blog": "https://www.multiversxtoken.com/EGLD-token-blog", + "twitter": "https://twitter.com/EGLD-token-twitter", + "whitepaper": "https://www.multiversxtoken.com/EGLD-token-whitepaper.pdf", + "coinmarketcap": "https://coinmarketcap.com/currencies/EGLD-token", + "coingecko": "https://www.coingecko.com/en/coins/EGLD-token" + }, + "status": "active" +} \ No newline at end of file diff --git a/devnet/tokens/STK-3306e8/logo.png b/devnet/tokens/STK-3306e8/logo.png new file mode 100644 index 0000000000..369d7f8ade Binary files /dev/null and b/devnet/tokens/STK-3306e8/logo.png differ diff --git a/devnet/tokens/STK-3306e8/logo.svg b/devnet/tokens/STK-3306e8/logo.svg new file mode 100644 index 0000000000..cc11812d17 --- /dev/null +++ b/devnet/tokens/STK-3306e8/logo.svg @@ -0,0 +1,1187 @@ + + + + + + diff --git a/devnet/tokens/STOKEN-9ab531/info.json b/devnet/tokens/STOKEN-9ab531/info.json new file mode 100644 index 0000000000..163caaf483 --- /dev/null +++ b/devnet/tokens/STOKEN-9ab531/info.json @@ -0,0 +1,13 @@ +{ + "website": "https://www.multiversxtoken.com", + "description": "The STOKEN token is the utility token of MultiversX Token", + "social": { + "email": "stoken-token@multiversxtoken.com", + "blog": "https://www.multiversxtoken.com/STOKEN-token-blog", + "twitter": "https://twitter.com/STOKEN-token-twitter", + "whitepaper": "https://www.multiversxtoken.com/STOKEN-token-whitepaper.pdf", + "coinmarketcap": "https://coinmarketcap.com/currencies/STOKEN-token", + "coingecko": "https://www.coingecko.com/en/coins/STOKEN-token" + }, + "status": "active" +} \ No newline at end of file diff --git a/devnet/tokens/STOKEN-9ab531/logo.png b/devnet/tokens/STOKEN-9ab531/logo.png new file mode 100644 index 0000000000..cf019bbdbe Binary files /dev/null and b/devnet/tokens/STOKEN-9ab531/logo.png differ diff --git a/devnet/tokens/STOKEN-9ab531/logo.svg b/devnet/tokens/STOKEN-9ab531/logo.svg new file mode 100644 index 0000000000..8a8455c95d --- /dev/null +++ b/devnet/tokens/STOKEN-9ab531/logo.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/devnet/tokens/SWTAO-eed2e9/info.json b/devnet/tokens/SWTAO-eed2e9/info.json new file mode 100644 index 0000000000..715a758621 --- /dev/null +++ b/devnet/tokens/SWTAO-eed2e9/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://hatom.com/", + "description": "swTAO is a digital token representing wTAO staked on Hatom's TAO Liquid Staking Protocol. By combining the initial deposit with bridged staking rewards, swTAO allows users to earn staking rewards while also benefiting from DeFi yields. The value of swTAO is pegged to wTAO and increases in value following an exchange rate.", + "social": { + "blog": "https://mirror.xyz/0xDac8B6141d28C46765255607f3572c73A064383f/", + "twitter": "https://twitter.com/HatomProtocol" + }, + "status": "active" +} diff --git a/devnet/tokens/SWTAO-eed2e9/logo.png b/devnet/tokens/SWTAO-eed2e9/logo.png new file mode 100644 index 0000000000..67f874536b Binary files /dev/null and b/devnet/tokens/SWTAO-eed2e9/logo.png differ diff --git a/devnet/tokens/SWTAO-eed2e9/logo.svg b/devnet/tokens/SWTAO-eed2e9/logo.svg new file mode 100644 index 0000000000..297d3c24d2 --- /dev/null +++ b/devnet/tokens/SWTAO-eed2e9/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/devnet/tokens/TESTPEPE-a9c7b5/info.json b/devnet/tokens/TESTPEPE-a9c7b5/info.json new file mode 100644 index 0000000000..4ee68be02b --- /dev/null +++ b/devnet/tokens/TESTPEPE-a9c7b5/info.json @@ -0,0 +1,6 @@ +{ + "website": "-", + "description": "pepe", + "status": "active" +} + diff --git a/devnet/tokens/TESTPEPE-a9c7b5/logo.png b/devnet/tokens/TESTPEPE-a9c7b5/logo.png new file mode 100644 index 0000000000..fb807aad48 Binary files /dev/null and b/devnet/tokens/TESTPEPE-a9c7b5/logo.png differ diff --git a/devnet/tokens/TESTPEPE-a9c7b5/logo.svg b/devnet/tokens/TESTPEPE-a9c7b5/logo.svg new file mode 100644 index 0000000000..23885aa881 --- /dev/null +++ b/devnet/tokens/TESTPEPE-a9c7b5/logo.svg @@ -0,0 +1,10 @@ + + + + + + + + + MultiversX + diff --git a/devnet/tokens/USH-dda7c6/info.json b/devnet/tokens/USH-dda7c6/info.json new file mode 100644 index 0000000000..8a4157d1ad --- /dev/null +++ b/devnet/tokens/USH-dda7c6/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://hatom.com/", + "description": "USH is Hatom's decentralized and overcollateralized stablecoin, pegged to the US Dollar and native to the MultiversX blockchain.", + "social": { + "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" + }, + "status": "active" +} diff --git a/devnet/tokens/USH-dda7c6/logo.png b/devnet/tokens/USH-dda7c6/logo.png new file mode 100644 index 0000000000..87a58d106c Binary files /dev/null and b/devnet/tokens/USH-dda7c6/logo.png differ diff --git a/devnet/tokens/USH-dda7c6/logo.svg b/devnet/tokens/USH-dda7c6/logo.svg new file mode 100644 index 0000000000..25214d5873 --- /dev/null +++ b/devnet/tokens/USH-dda7c6/logo.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/devnet/tokens/UTK-14d57d/info.json b/devnet/tokens/UTK-14d57d/info.json index e42af12e55..75ba95ab1e 100644 --- a/devnet/tokens/UTK-14d57d/info.json +++ b/devnet/tokens/UTK-14d57d/info.json @@ -1,14 +1,15 @@ { - "website": "https://utrust.com/", + "website": "https://www.xmoney.com/", "description": "Web3 L1 Payments Technology", + "name": "xMoney UTK", "ledgerSignature": "304402204f2f6035dccb8c5e16698a1a8cfd0c0d4203e9a31103147e286fa1c1ea829c16022003284c1f3c8cb23b6587c5dee3187feb1e0663b15ffbffa89dbe07e7a766eff2", "social": { - "email": "", - "blog": "https://medium.com/utrust", - "twitter": "https://twitter.com/utrust", + "email": "support@xmoney.com", + "blog": "", + "twitter": "https://twitter.com/xMoney_com", "whitepaper": "", - "coinmarketcap": "", - "coingecko": "" + "coinmarketcap": "https://coinmarketcap.com/currencies/utrust/", + "coingecko": "https://www.coingecko.com/en/coins/xmoney" }, "status": "active", "extraTokens": [ @@ -19,4 +20,4 @@ "UTKWEGLDFL-082aec", "UTKWEGLDF-5b9d50" ] -} \ No newline at end of file +} diff --git a/devnet/tokens/UTK-14d57d/logo.png b/devnet/tokens/UTK-14d57d/logo.png index c07c18cfef..ef6f2c58eb 100644 Binary files a/devnet/tokens/UTK-14d57d/logo.png and b/devnet/tokens/UTK-14d57d/logo.png differ diff --git a/devnet/tokens/UTK-14d57d/logo.svg b/devnet/tokens/UTK-14d57d/logo.svg index dbf9684f00..696740b97f 100644 --- a/devnet/tokens/UTK-14d57d/logo.svg +++ b/devnet/tokens/UTK-14d57d/logo.svg @@ -1,8 +1,4 @@ - - - - - - - + + + diff --git a/devnet/tokens/VULPEA-758228/info.json b/devnet/tokens/VULPEA-758228/info.json new file mode 100644 index 0000000000..21aadef5dc --- /dev/null +++ b/devnet/tokens/VULPEA-758228/info.json @@ -0,0 +1,9 @@ +{ + "website": "", + "description": "vulpea>sconcsul", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active" +} \ No newline at end of file diff --git a/devnet/tokens/VULPEA-758228/logo.png b/devnet/tokens/VULPEA-758228/logo.png new file mode 100644 index 0000000000..4584d329a6 Binary files /dev/null and b/devnet/tokens/VULPEA-758228/logo.png differ diff --git a/devnet/tokens/VULPEA-758228/logo.svg b/devnet/tokens/VULPEA-758228/logo.svg new file mode 100644 index 0000000000..fccf8c875e --- /dev/null +++ b/devnet/tokens/VULPEA-758228/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/devnet/tokens/WTAO-a0cc6b/info.json b/devnet/tokens/WTAO-f94e58/info.json similarity index 100% rename from devnet/tokens/WTAO-a0cc6b/info.json rename to devnet/tokens/WTAO-f94e58/info.json diff --git a/devnet/tokens/WTAO-a0cc6b/logo.png b/devnet/tokens/WTAO-f94e58/logo.png similarity index 100% rename from devnet/tokens/WTAO-a0cc6b/logo.png rename to devnet/tokens/WTAO-f94e58/logo.png diff --git a/devnet/tokens/WTAO-a0cc6b/logo.svg b/devnet/tokens/WTAO-f94e58/logo.svg similarity index 100% rename from devnet/tokens/WTAO-a0cc6b/logo.svg rename to devnet/tokens/WTAO-f94e58/logo.svg diff --git a/devnet/tokens/XMEX-82f2f4/logo.png b/devnet/tokens/XMEX-82f2f4/logo.png index 4d18e9a193..14b670315f 100644 Binary files a/devnet/tokens/XMEX-82f2f4/logo.png and b/devnet/tokens/XMEX-82f2f4/logo.png differ diff --git a/devnet/tokens/XMEX-82f2f4/logo.svg b/devnet/tokens/XMEX-82f2f4/logo.svg index 184b84964d..fc8ae06cc2 100644 --- a/devnet/tokens/XMEX-82f2f4/logo.svg +++ b/devnet/tokens/XMEX-82f2f4/logo.svg @@ -1,27 +1,5 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/identities/StakeM/info.json b/identities/StakeM/info.json new file mode 100644 index 0000000000..60cacd0888 --- /dev/null +++ b/identities/StakeM/info.json @@ -0,0 +1,10 @@ +{ + "name": "StakeM", + "description": "Secure staking and passive rewards on the MultiversX network", + "website": "https://explorer.multiversx.com/validators", + "location": "Romania", + "twitter": "", + "owners": [ + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpthllllsetrtta" + ] +} \ No newline at end of file diff --git a/identities/StakeM/logo.png b/identities/StakeM/logo.png new file mode 100644 index 0000000000..a8f78980b7 Binary files /dev/null and b/identities/StakeM/logo.png differ diff --git a/identities/StakeUP/info.json b/identities/StakeUP/info.json new file mode 100644 index 0000000000..dfcb87b27b --- /dev/null +++ b/identities/StakeUP/info.json @@ -0,0 +1,10 @@ +{ + "name": "StakeUP", + "description": "StakeUP offers secure staking and passive earnings on MultiversX", + "website": "https://explorer.multiversx.com/validators", + "location": "Romania", + "twitter": "", + "owners": [ + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqptlllllsjs2nqj" + ] +} \ No newline at end of file diff --git a/identities/StakeUP/logo.png b/identities/StakeUP/logo.png new file mode 100644 index 0000000000..58333ffd21 Binary files /dev/null and b/identities/StakeUP/logo.png differ diff --git a/identities/astrarizon/info.json b/identities/astrarizon/info.json deleted file mode 100644 index 108b1b3067..0000000000 --- a/identities/astrarizon/info.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "description": "Staking provider bridging horizon boundaries.", - "name": "Astrarizon", - "website": "https://www.astrarizon.com/", - "twitter": "Astrarizon", - "owners": [ - "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpq8llllskj52rl" - ] -} diff --git a/identities/astrarizon/logo.png b/identities/astrarizon/logo.png deleted file mode 100644 index a1642e7e71..0000000000 Binary files a/identities/astrarizon/logo.png and /dev/null differ diff --git a/identities/colombiastaking/info.json b/identities/colombiastaking/info.json index ec9c0ed2bb..abc5e81215 100644 --- a/identities/colombiastaking/info.json +++ b/identities/colombiastaking/info.json @@ -1,6 +1,6 @@ { "description": "First Staking Provider in Colombia using 100% solar energy and starlink internet", - "name": "Colombia Staking (0% fees)", + "name": "Colombia Staking", "website": "https://colombia-staking.com", "twitter": "colombiastaking", "location": "Colombia", diff --git a/identities/cryptobayspace/info.json b/identities/cryptobayspace/info.json index cd8b0b7ecc..94ad615a99 100644 --- a/identities/cryptobayspace/info.json +++ b/identities/cryptobayspace/info.json @@ -1,9 +1,8 @@ { - "description": "Service Stacking Provider", + "description": "CryptoBay creates and maintains tools for users and builders within the ecosystem. Our wallet manager simplifies the management and compounding of your investments with ease. We also provide comprehensive documentation and videos to support builders in adopting MultiversX.", "name": "CryptoBay", - "twitter": "https://twitter.com/cryptobayspace", - "location": "Earth", - "owners": [ - "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8llllls4xn0vm" - ] -} \ No newline at end of file + "website": "https://cryptobay.space", + "twitter": "CryptoBaySpace", + "location": "Europe", + "owners": ["erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8llllls4xn0vm"] +} diff --git a/identities/cryptobayspace/logo.png b/identities/cryptobayspace/logo.png index 139a5c19f8..e3c33e2fb2 100644 Binary files a/identities/cryptobayspace/logo.png and b/identities/cryptobayspace/logo.png differ diff --git a/identities/egldsqueeze/info.json b/identities/egldsqueeze/info.json new file mode 100644 index 0000000000..c7c7ac6d51 --- /dev/null +++ b/identities/egldsqueeze/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGLDSqueeze", + "location": "Czech Republic, Prague", + "description": "For die-hard believers in EGLD. Shape the Future.", + "social": { + "blog": "https://x.com/i/communities/1806335013320823071" + }, + "owners": [ + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpvllllls3lkx6d" + ] +} diff --git a/identities/egldsqueeze/logo.png b/identities/egldsqueeze/logo.png new file mode 100644 index 0000000000..43384ed0df Binary files /dev/null and b/identities/egldsqueeze/logo.png differ diff --git a/identities/egldstakingprovider/info.json b/identities/egldstakingprovider/info.json index b45f287456..c4535c17fa 100644 --- a/identities/egldstakingprovider/info.json +++ b/identities/egldstakingprovider/info.json @@ -1,10 +1,10 @@ { - "description": "Egld Staking Provider", - "name": "Passionately creating opportunities for your egld", + "description": "Passionately creating opportunities for your egld", + "name": "Egld Staking Provider 🎖", "website": "https://egldstakingprovider.com", "twitter": "", "location": "Romania", "owners": [ - "erd1wm5e209ty5tv29egc82rg6shun2lll3evsth9pw4n64yz55dw3xs6qtgum" + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpt0llllsy0c2kv" ] } diff --git a/identities/enttechnologies/info.json b/identities/enttechnologies/info.json index bb302491cb..ec56f8ed8a 100644 --- a/identities/enttechnologies/info.json +++ b/identities/enttechnologies/info.json @@ -1,10 +1,10 @@ { - "description": "Growth Engine for Elrond https://t.me/EntityCommunity", - "name": "Entity", - "website": "https://entity.global", - "twitter": "entityfinance", - "location": "Liechtenstein", - "owners": [ - "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqql0lllls7t6vjr" - ] + "name": "Entity", + "description": "Cross-Chain Growth Engine https://t.me/EntityCommunity", + "website": "https://entity.global", + "location": "Liechtenstein", + "twitter": "https://twitter.com/EntityFinance", + "owners": [ + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqql0lllls7t6vjr" + ] } \ No newline at end of file diff --git a/identities/enttechnologies/logo.png b/identities/enttechnologies/logo.png index 56a8dec04c..bf0e9c6f4c 100644 Binary files a/identities/enttechnologies/logo.png and b/identities/enttechnologies/logo.png differ diff --git a/identities/equilibrium/info.json b/identities/equilibrium/info.json new file mode 100644 index 0000000000..a9ad306a92 --- /dev/null +++ b/identities/equilibrium/info.json @@ -0,0 +1,7 @@ +{ + "description": "Harmonizing your staking journey with balance and power.", + "name": "Equilibrium", + "owners": [ + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpq8llllskj52rl" + ] +} diff --git a/identities/equilibrium/logo.png b/identities/equilibrium/logo.png new file mode 100644 index 0000000000..ea5e2b24e8 Binary files /dev/null and b/identities/equilibrium/logo.png differ diff --git a/identities/exceptionlabs/info.json b/identities/exceptionlabs/info.json index 8f18cacbc5..541a8d47cf 100644 --- a/identities/exceptionlabs/info.json +++ b/identities/exceptionlabs/info.json @@ -1,6 +1,11 @@ { "name": "ExceptionLabs", + "description": "Exceptional staking services(^_^)", + "website": "https://exceptionlabs.net", + "location": "https://t.me/exceptionlabs", + "twitter": "exceptionlabs_", "owners": [ - "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpphllllswjz5dt" + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpphllllswjz5dt", + "erd18ymr64hf5mw03lz4yc4gpl8za6l9jn0uz3q24p9v35633v3g73dqa08puj" ] -} \ No newline at end of file +} diff --git a/identities/exceptionlabs/logo.png b/identities/exceptionlabs/logo.png index ee1dfdd7f8..d6f8ea9896 100644 Binary files a/identities/exceptionlabs/logo.png and b/identities/exceptionlabs/logo.png differ diff --git a/identities/fourtytwoag/info.json b/identities/fourtytwoag/info.json index a7f051daa3..8c80fb59e2 100644 --- a/identities/fourtytwoag/info.json +++ b/identities/fourtytwoag/info.json @@ -1,5 +1,5 @@ { - "description": "We are an integrator for Web3 on MultiversX. We are building smart contracts, NFT marketplaces and customizable dapps.", + "description": "We are an integrator for Web3 on MultiversX. We are digital transformation experts. We are providing 24/7 Oracle Database support contracts.", "name": "FourtyTwo", "website": "https://fourtytwo.com", "twitter": "FourtytwoAg", @@ -7,4 +7,4 @@ "owners": [ "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqpyllllls63lh90" ] -} \ No newline at end of file +} diff --git a/identities/fourtytwoag/logo.png b/identities/fourtytwoag/logo.png index 56aab72c19..10da08e274 100644 Binary files a/identities/fourtytwoag/logo.png and b/identities/fourtytwoag/logo.png differ diff --git a/identities/fourtytwoag/logo.svg b/identities/fourtytwoag/logo.svg new file mode 100644 index 0000000000..bf88ad7885 --- /dev/null +++ b/identities/fourtytwoag/logo.svg @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/identities/incalng/info.json b/identities/incalng/info.json index b237329ff5..94cde18c2e 100644 --- a/identities/incalng/info.json +++ b/identities/incalng/info.json @@ -1,11 +1,10 @@ { - "name": "Incal(+12 nodes merged)", + "name": "Incal /0 fees APR kept high/", "description": "Incal-tech", "website": "https://incal.noweb", "location": "decentralized", "twitter": "", "owners": [ - "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqd8llllslmf3hu", - "erd1qfj0v26kqccmvqcg7e8s0dqvpkswcrpdlt9c6wkjygekamek9dhs3r38yx" + "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqd8llllslmf3hu" ] } \ No newline at end of file diff --git a/identities/oxsyai/info.json b/identities/oxsyai/info.json index 4f97c61cb4..da51bca13b 100644 --- a/identities/oxsyai/info.json +++ b/identities/oxsyai/info.json @@ -1,6 +1,6 @@ { "description": "🦊 🦿 ⚽️ 🥅 🌎 🏆 Basically a dog wif brainz & 𝕏 appeal. Also AI, robotics & web3.", - "name": "Foxsy AI (+4% APR 🦊 bonus)", + "name": "Foxsy AI (+3% APR 🦊 bonus)", "website": "https://foxsy.ai", "twitter": "foxsy_ai", "location": "Sibiu", diff --git a/identities/wavenodevalidat/info.json b/identities/wavenodevalidat/info.json index de78dfe389..95743fd913 100644 --- a/identities/wavenodevalidat/info.json +++ b/identities/wavenodevalidat/info.json @@ -1,10 +1,10 @@ { - "description": "MultiversX Validator", - "name": "Wavenode", - "website": "Wavenode.io", + "description": "MultiversX Validator, 20% of the rewards are injected into the eDIA token and distributed back to the community. Stake for eDIA AirDrops or get one Wavenode OG SFT", + "name": "Wavenode | eDIA AirDrops", + "website": "https://x.com/WaveNodeValid", "twitter": "WaveNodeValid", - "location": "Paris", + "location": "France out of data center, 50% solar energy", "owners": [ "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqd0lllls5qqfun" ] -} \ No newline at end of file +} diff --git a/identities/web3water/info.json b/identities/web3water/info.json index 70639436d7..042738cb1e 100644 --- a/identities/web3water/info.json +++ b/identities/web3water/info.json @@ -1,9 +1,9 @@ { "description": "Liquidity for web3", - "name": "$WATER Works", + "name": "💧 0% fee + monthly aidrop $WATER Works", "website": "https://twitter.com/Web3Water", "twitter": "Web3Water", "owners": [ "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqql8lllls4sn5ev" ] -} \ No newline at end of file +} diff --git a/testnet/accounts/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl.json b/testnet/accounts/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl.json new file mode 100644 index 0000000000..082c0e02a5 --- /dev/null +++ b/testnet/accounts/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl.json @@ -0,0 +1,14 @@ +{ + "name": "Ceausescu Staking", + "description": "Ceausescu Staking", + "website": "", + "social": { + "blog": "", + "twitter": "https://x.com/MantorMBU" + }, + "tags": [ + "Ceausescu Staking", + "Ceausescu", + "Staking" + ] +} \ No newline at end of file diff --git a/testnet/identities/fourytytwoag/info.json b/testnet/identities/fourytytwoag/info.json deleted file mode 100644 index 764b5df2cf..0000000000 --- a/testnet/identities/fourytytwoag/info.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "FourtyTwo", - "description": "We are a digital transformation company.", - "website": "https://fourtytwo.com", - "location": "Zug, Switzerland", - "twitter": "FourtyTwoAg", - "owners": [ - "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqplllllscktaww" - ] -} diff --git a/testnet/identities/fourytytwoag/logo.png b/testnet/identities/fourytytwoag/logo.png deleted file mode 100644 index e6230657d1..0000000000 Binary files a/testnet/identities/fourytytwoag/logo.png and /dev/null differ diff --git a/testnet/tokens/EGLD-000000/info.json b/testnet/tokens/EGLD-000000/info.json new file mode 100644 index 0000000000..23034592c4 --- /dev/null +++ b/testnet/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/testnet/tokens/EGLD-000000/logo.png b/testnet/tokens/EGLD-000000/logo.png new file mode 100644 index 0000000000..0f82d972dd Binary files /dev/null and b/testnet/tokens/EGLD-000000/logo.png differ diff --git a/testnet/tokens/EGLD-000000/logo.svg b/testnet/tokens/EGLD-000000/logo.svg new file mode 100644 index 0000000000..d2be1a1f96 --- /dev/null +++ b/testnet/tokens/EGLD-000000/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/tokens/1UP-b32abe/info.json b/tokens/1UP-b32abe/info.json new file mode 100644 index 0000000000..9114c26485 --- /dev/null +++ b/tokens/1UP-b32abe/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://assets.multiversx.com", + "description": ".", + "status": "active", + "social": { + "twitter": "https://x.com/roarhighspex?s=21&t=3RjzVZSpOUcDmLrMZd3f-Q" + } +} \ No newline at end of file diff --git a/tokens/1UP-b32abe/logo.png b/tokens/1UP-b32abe/logo.png new file mode 100644 index 0000000000..5f77ef3cc0 Binary files /dev/null and b/tokens/1UP-b32abe/logo.png differ diff --git a/tokens/1UP-b32abe/logo.svg b/tokens/1UP-b32abe/logo.svg new file mode 100644 index 0000000000..91f22708ad --- /dev/null +++ b/tokens/1UP-b32abe/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/1UP-ccb4a8/info.json b/tokens/1UP-ccb4a8/info.json new file mode 100644 index 0000000000..261ad969a6 --- /dev/null +++ b/tokens/1UP-ccb4a8/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/roarhighspex?s=21&t=3RjzVZSpOUcDmLrMZd3f-Q" + }, + "website": "https://x.com/roarhighspex?s=21&t=3RjzVZSpOUcDmLrMZd3f-Q", + "description": "1UP is a symbol of digital ownership in a world where scarcity reigns supreme. Its rarity and limited availability make it a coveted prize for collectors and meme enthusiasts alike. By owning 1UP, you're not just acquiring a digital asset; you're joining a select group of individuals who understand the true value of digital uniqueness", + "status": "active" +} \ No newline at end of file diff --git a/tokens/1UP-ccb4a8/logo.png b/tokens/1UP-ccb4a8/logo.png new file mode 100644 index 0000000000..9644975278 Binary files /dev/null and b/tokens/1UP-ccb4a8/logo.png differ diff --git a/tokens/1UP-ccb4a8/logo.svg b/tokens/1UP-ccb4a8/logo.svg new file mode 100644 index 0000000000..83d5b111db --- /dev/null +++ b/tokens/1UP-ccb4a8/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/2TT-792872/info.json b/tokens/2TT-792872/info.json new file mode 100644 index 0000000000..7a372ca07a --- /dev/null +++ b/tokens/2TT-792872/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "Welcome to 2Tiers: The Meme Coin That's Also a Movement!\n\n🚀 Launching on Multiverse X - Because why settle for one universe when you can have multiple?\n\nStarting Supply: 2 Trillion - That's right, we're not messing around. We've got enough coins to make even the most stoic of crypto traders crack a smile.\n\nThe Peaceful Rebellion: In a world where even your silence can get you into trouble, 2Tiers stands as a beacon of... well, not exactly hope, but definitely a form of protest against the Western world's apparent quest for self-destruction. \n\nOur Simple Roadmap:\n- Phase 1: An X account will be created. Not just any account, but one dedicated to the noble cause of... well, mostly just driving attention to our coin, but also, you know, the whole freedom thing.\n \n- Phase 2: If we manage to mint this coin into existence, we'll open a Telegram group. Because what's a meme coin without a place for its community to argue about the price?\n\n- Phase 3: Hit a cool $1 million USD in market cap? We'll start a non-profit. Not just any non-profit, but one that supports victims of government overreach. Because if there's one thing we love more than memes, it's irony.\n\nJoin Us, But Cautiously: This isn't your typical \"to the moon\" scenario. We're not promising riches, just a good laugh and maybe, just maybe, a tiny bit of change in the world. Or at least, a change in your crypto portfolio. \n\nDisclaimer: Do Your Own Research (DYOR). This isn't financial advice; it's more like... cosmic advice. We're here for the laughs, the freedom, and the occasional moonshot. \n\nRemember, in the grand tapestry of the universe, meme coins are like the colorful threads that make no sense but somehow hold everything together. Join 2Tiers, where your investment might not just make you chuckle, but could also, in a very roundabout way, contribute to a cause. Or not. But hey, it's a meme coin, so who really knows?", + "status": "active", + "social": { + "telegram": "https://t.me/+Wl-KMIR9q240ZDA0" + } +} diff --git a/tokens/2TT-792872/logo.png b/tokens/2TT-792872/logo.png new file mode 100644 index 0000000000..97989244cf Binary files /dev/null and b/tokens/2TT-792872/logo.png differ diff --git a/tokens/2TT-792872/logo.svg b/tokens/2TT-792872/logo.svg new file mode 100644 index 0000000000..205568267f --- /dev/null +++ b/tokens/2TT-792872/logo.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/A1X-0d446d/info.json b/tokens/A1X-0d446d/info.json new file mode 100644 index 0000000000..952280dd13 --- /dev/null +++ b/tokens/A1X-0d446d/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "twitter": "https://x.com/_AI_Nexus", + "whitepaper": "https://ainexus.b-cdn.net/whitepaper.pdf" + }, + "website": "https://ainexus.ltd/", + "description": "A1X is the utility token of the AI Nexus ecosystem, a gamified social app that enables users to create items, worlds and games with AI tools.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/A1X-0d446d/logo.png b/tokens/A1X-0d446d/logo.png new file mode 100644 index 0000000000..15ce5df70d Binary files /dev/null and b/tokens/A1X-0d446d/logo.png differ diff --git a/tokens/A1X-0d446d/logo.svg b/tokens/A1X-0d446d/logo.svg new file mode 100644 index 0000000000..3b454a79fd --- /dev/null +++ b/tokens/A1X-0d446d/logo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/tokens/ACHILLGUY-3ef06b/info.json b/tokens/ACHILLGUY-3ef06b/info.json new file mode 100644 index 0000000000..9db8fe4f7f --- /dev/null +++ b/tokens/ACHILLGUY-3ef06b/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "Just a chill guy memecoin on mvx ", + "status": "active", + "social": { + "telegram": "https://t.me/+JYXwIA5XSLE1NjM0" + } +} diff --git a/tokens/ACHILLGUY-3ef06b/logo.png b/tokens/ACHILLGUY-3ef06b/logo.png new file mode 100644 index 0000000000..addd312b00 Binary files /dev/null and b/tokens/ACHILLGUY-3ef06b/logo.png differ diff --git a/tokens/ACHILLGUY-3ef06b/logo.svg b/tokens/ACHILLGUY-3ef06b/logo.svg new file mode 100644 index 0000000000..829271aa03 --- /dev/null +++ b/tokens/ACHILLGUY-3ef06b/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/ASSET-5c7b3c/info.json b/tokens/ASSET-5c7b3c/info.json new file mode 100644 index 0000000000..23f1c82c49 --- /dev/null +++ b/tokens/ASSET-5c7b3c/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/Tagrity" + }, + "website": "https://tagrity.io", + "description": "Real-world assets connected to the blockchain. Tokenize your assets with Tagrity.", + "status": "active" +} diff --git a/tokens/ASSET-5c7b3c/logo.png b/tokens/ASSET-5c7b3c/logo.png new file mode 100644 index 0000000000..666163e461 Binary files /dev/null and b/tokens/ASSET-5c7b3c/logo.png differ diff --git a/tokens/ASSET-5c7b3c/logo.svg b/tokens/ASSET-5c7b3c/logo.svg new file mode 100644 index 0000000000..9cdfed858d --- /dev/null +++ b/tokens/ASSET-5c7b3c/logo.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/AVG-b7d7dc/info.json b/tokens/AVG-b7d7dc/info.json new file mode 100644 index 0000000000..1be6a87b35 --- /dev/null +++ b/tokens/AVG-b7d7dc/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "Multiversx it\u2019s building a team of web3 avengers ", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/AVG-b7d7dc", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/AVG-b7d7dc/logo.png b/tokens/AVG-b7d7dc/logo.png new file mode 100644 index 0000000000..b1845cbf2e Binary files /dev/null and b/tokens/AVG-b7d7dc/logo.png differ diff --git a/tokens/AVG-b7d7dc/logo.svg b/tokens/AVG-b7d7dc/logo.svg new file mode 100644 index 0000000000..c5738f06a9 --- /dev/null +++ b/tokens/AVG-b7d7dc/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/BABE-03216c/info.json b/tokens/BABE-03216c/info.json new file mode 100644 index 0000000000..675f352bdd --- /dev/null +++ b/tokens/BABE-03216c/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/Babeinsol" + }, + "website": "https://babeinsol.xyz", + "description": "MEET THE CHILL BABE", + "status": "active" +} \ No newline at end of file diff --git a/tokens/BABE-03216c/logo.png b/tokens/BABE-03216c/logo.png new file mode 100644 index 0000000000..2738f4eae2 Binary files /dev/null and b/tokens/BABE-03216c/logo.png differ diff --git a/tokens/BABE-03216c/logo.svg b/tokens/BABE-03216c/logo.svg new file mode 100644 index 0000000000..a8a2e56f89 --- /dev/null +++ b/tokens/BABE-03216c/logo.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/BABYGLONK-75914c/info.json b/tokens/BABYGLONK-75914c/info.json new file mode 100644 index 0000000000..f7660728e5 --- /dev/null +++ b/tokens/BABYGLONK-75914c/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://babyglonk.com", + "description": "I'm just a baby, of course I'm not doing anything!", + "ledgerSignature": "", + "social": { + "twitter": "https://x.com/Baby_Glonk " + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/BABYGLONK-75914c/logo.png b/tokens/BABYGLONK-75914c/logo.png new file mode 100644 index 0000000000..c9ab90ed0f Binary files /dev/null and b/tokens/BABYGLONK-75914c/logo.png differ diff --git a/tokens/BABYGLONK-75914c/logo.svg b/tokens/BABYGLONK-75914c/logo.svg new file mode 100644 index 0000000000..d99c78646c --- /dev/null +++ b/tokens/BABYGLONK-75914c/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/BABYPNUT-6b04b5/info.json b/tokens/BABYPNUT-6b04b5/info.json new file mode 100644 index 0000000000..8e683a7341 --- /dev/null +++ b/tokens/BABYPNUT-6b04b5/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "BABY PNUT, community-driven memecoin on MultiversX with no mission and value. Only fun and Full Degen mode. Let's trade this token while Solana network is down !", + "status": "active", + "social": { + "telegram": "https://t.me/babypnutmvx" + } +} diff --git a/tokens/BABYPNUT-6b04b5/logo.png b/tokens/BABYPNUT-6b04b5/logo.png new file mode 100644 index 0000000000..862171dd94 Binary files /dev/null and b/tokens/BABYPNUT-6b04b5/logo.png differ diff --git a/tokens/BABYPNUT-6b04b5/logo.svg b/tokens/BABYPNUT-6b04b5/logo.svg new file mode 100644 index 0000000000..12e9e376e4 --- /dev/null +++ b/tokens/BABYPNUT-6b04b5/logo.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/BABYRINO-3365b2/info.json b/tokens/BABYRINO-3365b2/info.json new file mode 100644 index 0000000000..e0e6a35a41 --- /dev/null +++ b/tokens/BABYRINO-3365b2/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://swap.onedex.app/launchpad/detail/88", + "description": "If the bullrun doesn't come, we'll make it happen, be a Rino , be part of the new memecoin season on MvX", + "status": "active" +} \ No newline at end of file diff --git a/tokens/BABYRINO-3365b2/logo.png b/tokens/BABYRINO-3365b2/logo.png new file mode 100644 index 0000000000..739ab01920 Binary files /dev/null and b/tokens/BABYRINO-3365b2/logo.png differ diff --git a/tokens/BABYRINO-3365b2/logo.svg b/tokens/BABYRINO-3365b2/logo.svg new file mode 100644 index 0000000000..68401db41e --- /dev/null +++ b/tokens/BABYRINO-3365b2/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/tokens/BANKER-1616da/info.json b/tokens/BANKER-1616da/info.json new file mode 100644 index 0000000000..657d19b653 --- /dev/null +++ b/tokens/BANKER-1616da/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://bobanker.fun/", + "description": "I'm the only one. Love me! *** BANKERS ON TOP ***", + "social": { + "telegram": "t.me/bankerfundex", + "twitter": "https://x.com/BobankerFunDex" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/BANKER-1616da", + "path": "0.usdPrice" + } +} diff --git a/tokens/BANKER-1616da/logo.png b/tokens/BANKER-1616da/logo.png new file mode 100644 index 0000000000..b1157f0b09 Binary files /dev/null and b/tokens/BANKER-1616da/logo.png differ diff --git a/tokens/BANKER-1616da/logo.svg b/tokens/BANKER-1616da/logo.svg new file mode 100644 index 0000000000..9bd3998665 --- /dev/null +++ b/tokens/BANKER-1616da/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/BATEMAN-f6fd19/info.json b/tokens/BATEMAN-f6fd19/info.json new file mode 100644 index 0000000000..a9efc9e05e --- /dev/null +++ b/tokens/BATEMAN-f6fd19/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "The utility is to get fucking rich and save Gotham at the same time\n\n", + "social": { + "telegram": "t.me/MultiversXD", + "twitter": "" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/BATEMAN-f6fd19", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/BATEMAN-f6fd19/logo.png b/tokens/BATEMAN-f6fd19/logo.png new file mode 100644 index 0000000000..a3713176ff Binary files /dev/null and b/tokens/BATEMAN-f6fd19/logo.png differ diff --git a/tokens/BATEMAN-f6fd19/logo.svg b/tokens/BATEMAN-f6fd19/logo.svg new file mode 100644 index 0000000000..5b80526c9e --- /dev/null +++ b/tokens/BATEMAN-f6fd19/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/BATES-bb3dd6/info.json b/tokens/BATES-bb3dd6/info.json new file mode 100644 index 0000000000..898f4807e6 --- /dev/null +++ b/tokens/BATES-bb3dd6/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://x.com/xAdamBates", + "description": "Memecoin marketing mayhem", + "status": "active" +} \ No newline at end of file diff --git a/tokens/BATES-bb3dd6/logo.png b/tokens/BATES-bb3dd6/logo.png new file mode 100644 index 0000000000..b220f89ece Binary files /dev/null and b/tokens/BATES-bb3dd6/logo.png differ diff --git a/tokens/BATES-bb3dd6/logo.svg b/tokens/BATES-bb3dd6/logo.svg new file mode 100644 index 0000000000..d662578244 --- /dev/null +++ b/tokens/BATES-bb3dd6/logo.svg @@ -0,0 +1,9 @@ + + logo + + + + + + \ No newline at end of file diff --git a/tokens/BATESDAO-d3effc/info.json b/tokens/BATESDAO-d3effc/info.json new file mode 100644 index 0000000000..f5ce39ca5e --- /dev/null +++ b/tokens/BATESDAO-d3effc/info.json @@ -0,0 +1,8 @@ +{ + "description": "BATES DAO NFT collection, the sophisticated memecoin.", + "website": "https://x.com/i/communities/1845066585955873099", + "social": { + "telegram": "https://t.me/SuperRareBears" + }, + "status": "active" +} diff --git a/tokens/BATESDAO-d3effc/logo.png b/tokens/BATESDAO-d3effc/logo.png new file mode 100644 index 0000000000..7dc08174d9 Binary files /dev/null and b/tokens/BATESDAO-d3effc/logo.png differ diff --git a/tokens/BATESDAO-d3effc/logo.svg b/tokens/BATESDAO-d3effc/logo.svg new file mode 100644 index 0000000000..641223b235 --- /dev/null +++ b/tokens/BATESDAO-d3effc/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/tokens/BEMI-db8fbf/info.json b/tokens/BEMI-db8fbf/info.json index b40e445dc1..6087470f57 100644 --- a/tokens/BEMI-db8fbf/info.json +++ b/tokens/BEMI-db8fbf/info.json @@ -1,9 +1,9 @@ { "website": "https://bemi.wtf/", - "description": "Engineer, builder, philosopher.", + "description": "BEMI stands for Be Milio—the manifestation of wealth and the thiccest thug on MvX, building a multi-billion cabal while normoids cope and seethe. We’re here to transcend ego, stack karmic points, and pull in cheddar from the poors to fuel our fast cars, designer drip, and lavish lifestyle. Aura bulletproof and spirituality networked. We are BEMILIONAIREs.", "status": "active", "social": { - "twitter": "https://twitter.com/bemiwtf", - "telegram": "https://t.me/bemiwtf" + "twitter": "https://x.com/BemilioMaker", + "telegram": "https://t.me/bemilionaires" } } \ No newline at end of file diff --git a/tokens/BEMI-db8fbf/logo.png b/tokens/BEMI-db8fbf/logo.png index 82a4a0deb5..bb5ca831a4 100644 Binary files a/tokens/BEMI-db8fbf/logo.png and b/tokens/BEMI-db8fbf/logo.png differ diff --git a/tokens/BEMI-db8fbf/logo.svg b/tokens/BEMI-db8fbf/logo.svg index 905479065b..d87c6061ef 100644 --- a/tokens/BEMI-db8fbf/logo.svg +++ b/tokens/BEMI-db8fbf/logo.svg @@ -1,562 +1,9 @@ - - - - + + bemilogo + + + + + + \ No newline at end of file diff --git a/tokens/BGL-88997e/info.json b/tokens/BGL-88997e/info.json new file mode 100644 index 0000000000..e15a7d0804 --- /dev/null +++ b/tokens/BGL-88997e/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://x.com/Beagle_MvX", + "description": "I'm just a beagle, but I'm the only one from MultiversX.\nWoof, woof, let's became friends! ", + "status": "active", + "social": { + "twitter": "https://twitter.com/Beagle_MvX" + } +} \ No newline at end of file diff --git a/tokens/BGL-88997e/logo.png b/tokens/BGL-88997e/logo.png new file mode 100644 index 0000000000..5c5b9bb4a2 Binary files /dev/null and b/tokens/BGL-88997e/logo.png differ diff --git a/tokens/BGL-88997e/logo.svg b/tokens/BGL-88997e/logo.svg new file mode 100644 index 0000000000..6c6829536e --- /dev/null +++ b/tokens/BGL-88997e/logo.svg @@ -0,0 +1,9 @@ + + beagle-dog-puppy-cartoon-style-logo-painting-drawing-illustration-no-background-perfect-for-print-on-demand-merchandise-ai-generative-png + + + + + + \ No newline at end of file diff --git a/tokens/BIDXBOT-9a8b6b/info.json b/tokens/BIDXBOT-9a8b6b/info.json new file mode 100644 index 0000000000..4c95d1b34e --- /dev/null +++ b/tokens/BIDXBOT-9a8b6b/info.json @@ -0,0 +1,15 @@ +{ + "social": { + "blog": "https://bidxbots.gitbook.io/bidxbot-trending-and-buybot-on-multiversx", + "twitter": "https://x.com/bidxbot", + "whitepaper": "https://bidxbots.gitbook.io/bidxbot-trending-and-buybot-on-multiversx" + }, + "website": "https://x.com/@Bidxbot", + "description": "BUY BOT TOKEN/NFTs Monitor & TRENDING CHANNEL MultiversX\n\nAll this eases the experience of $EGLD holders on Telegram", + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/BIDXBOT-9a8b6b", + "path": "0.usdPrice" + } +} diff --git a/tokens/BIDXBOT-9a8b6b/logo.png b/tokens/BIDXBOT-9a8b6b/logo.png new file mode 100644 index 0000000000..3afaa24a2d Binary files /dev/null and b/tokens/BIDXBOT-9a8b6b/logo.png differ diff --git a/tokens/BIDXBOT-9a8b6b/logo.svg b/tokens/BIDXBOT-9a8b6b/logo.svg new file mode 100644 index 0000000000..f3e58ad601 --- /dev/null +++ b/tokens/BIDXBOT-9a8b6b/logo.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/BLAZZORD-6fb184/info.json b/tokens/BLAZZORD-6fb184/info.json new file mode 100644 index 0000000000..d08338e387 --- /dev/null +++ b/tokens/BLAZZORD-6fb184/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "BLAZZORD is the ultimate OG memecoin, fueling the creation of thousands of MultiversX GIFs and memes with millions of views across the world. A true icon of chaos, humor, and community, BLAZZORD brings crypto memes to the masses. Join the movement!", + "status": "active", + "social": { + "telegram": "https://t.me/+B6U3iHfxhIE0MWQ0" + } +} diff --git a/tokens/BLAZZORD-6fb184/logo.png b/tokens/BLAZZORD-6fb184/logo.png new file mode 100644 index 0000000000..dd36930fd4 Binary files /dev/null and b/tokens/BLAZZORD-6fb184/logo.png differ diff --git a/tokens/BLAZZORD-6fb184/logo.svg b/tokens/BLAZZORD-6fb184/logo.svg new file mode 100644 index 0000000000..0618bafb66 --- /dev/null +++ b/tokens/BLAZZORD-6fb184/logo.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/BLOD-760741/info.json b/tokens/BLOD-760741/info.json index a91e32cb47..93bcb9ad5e 100644 --- a/tokens/BLOD-760741/info.json +++ b/tokens/BLOD-760741/info.json @@ -1,6 +1,6 @@ { - "website": "https://birdlord.net/birdlord", - "description": "CRYPTO IS DEPRESSING. WE'VE ALL EXPERIENCED IT AT ONE POINT OR ANOTHER. EVERYONE HAS DEALT WITH SOME SHIT IN THIS INDUSTRY BUT, FOR SOME REASON WE ARE STILL HERE.", + "website": "https://www.bitlord.com/", + "description": "Didnt go as was planned :( ", "status": "active", "social": { "blog": "https://x.com/bad_trader_life" diff --git a/tokens/BLUECAT-c876a2/info.json b/tokens/BLUECAT-c876a2/info.json new file mode 100644 index 0000000000..63cd52eeae --- /dev/null +++ b/tokens/BLUECAT-c876a2/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "Blue Cat: MultiversX\u2019s coolest troublemaker!\n", + "social": { + "telegram": "", + "twitter": "https://x.com/BlueCatMVX" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/BLUECAT-c876a2/logo.png b/tokens/BLUECAT-c876a2/logo.png new file mode 100644 index 0000000000..ea6adaf51b Binary files /dev/null and b/tokens/BLUECAT-c876a2/logo.png differ diff --git a/tokens/BLUECAT-c876a2/logo.svg b/tokens/BLUECAT-c876a2/logo.svg new file mode 100644 index 0000000000..afc3191c95 --- /dev/null +++ b/tokens/BLUECAT-c876a2/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/BLUESYNDX-58f664/info.json b/tokens/BLUESYNDX-58f664/info.json new file mode 100644 index 0000000000..813b425cdf --- /dev/null +++ b/tokens/BLUESYNDX-58f664/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://syndicatemvx.com/", + "description": "First investment syndicate on MultiversX", + "ledgerSignature": "", + "social": { + "twitter": "https://x.com/syndicateMVX", + "telegram": "https://t.me/+OLpxjtX2z_ZhZmNk" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/BLUESYNDX-58f664/logo.png b/tokens/BLUESYNDX-58f664/logo.png new file mode 100644 index 0000000000..7851bc3f37 Binary files /dev/null and b/tokens/BLUESYNDX-58f664/logo.png differ diff --git a/tokens/BLUESYNDX-58f664/logo.svg b/tokens/BLUESYNDX-58f664/logo.svg new file mode 100644 index 0000000000..96eb65e120 --- /dev/null +++ b/tokens/BLUESYNDX-58f664/logo.svg @@ -0,0 +1,964 @@ + + + + + + diff --git a/tokens/BMPASS-989598/info.json b/tokens/BMPASS-989598/info.json new file mode 100644 index 0000000000..c861edaedc --- /dev/null +++ b/tokens/BMPASS-989598/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://excons.gitbook.io/excons", + "description": "Unlock the power of EXCONS — an asset you can't afford to miss. It's not just about hodling; it's about dominating the financial game and building a legacy.", + "social": { + "discord": "https://discord.gg/2d3sEx4aJJ", + "twitter": "https://x.com/exconsempire" + }, + "status": "active" +} diff --git a/tokens/BMPASS-989598/logo.png b/tokens/BMPASS-989598/logo.png new file mode 100644 index 0000000000..46eb03b728 Binary files /dev/null and b/tokens/BMPASS-989598/logo.png differ diff --git a/tokens/BMPASS-989598/logo.svg b/tokens/BMPASS-989598/logo.svg new file mode 100644 index 0000000000..d1cdaca0f3 --- /dev/null +++ b/tokens/BMPASS-989598/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/BOBER-9eb764/info.json b/tokens/BOBER-9eb764/info.json index 1d5c30c97e..c6e01112b1 100644 --- a/tokens/BOBER-9eb764/info.json +++ b/tokens/BOBER-9eb764/info.json @@ -1,9 +1,10 @@ { "website": "https://boberonmvx.com", - "description": "The most based MultiversX meme coin, stake your $EGLD with $BOBER staking provider to earn $BOBER rewards and be a chad!", + "description": "Welcome to BOBER, the first meme-powered that flipped MultiversX blockchain. Inspired by the viral beaver meme, BOBER isn't just another token, it's a movement designed to bring fun, positivity, and strong community vibes to Web3.", "status": "active", "social": { "twitter": "https://x.com/boberonmvx", - "coingecko": "https://www.coingecko.com/en/coins/bober" + "coingecko": "https://www.coingecko.com/en/coins/bober", + "coinmarketcap": "https://coinmarketcap.com/currencies/bober/" } } diff --git a/tokens/BOBERBULLA-c47084/info.json b/tokens/BOBERBULLA-c47084/info.json new file mode 100644 index 0000000000..a4deaa4cbf --- /dev/null +++ b/tokens/BOBERBULLA-c47084/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "Hasbulla's Bober", + "social": { + "telegram": "", + "twitter": "https://x.com/boberbullax" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/BOBERBULLA-c47084/logo.png b/tokens/BOBERBULLA-c47084/logo.png new file mode 100644 index 0000000000..ccf6ff0f47 Binary files /dev/null and b/tokens/BOBERBULLA-c47084/logo.png differ diff --git a/tokens/BOBERBULLA-c47084/logo.svg b/tokens/BOBERBULLA-c47084/logo.svg new file mode 100644 index 0000000000..f44fbf52da --- /dev/null +++ b/tokens/BOBERBULLA-c47084/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/BOM-a57b06/info.json b/tokens/BOM-a57b06/info.json index 7c937cf9fd..8d65d9c6c8 100644 --- a/tokens/BOM-a57b06/info.json +++ b/tokens/BOM-a57b06/info.json @@ -1,10 +1,10 @@ { + "website": "https://multiversx.com", + "description": "BOKOFMEME", + "status": "active", "social": { "blog": "https://www.google.com/search?q=bok+of+meme", "twitter": "https://twitter.com/MultiversX", "whitepaper": "https://www.google.com/search?q=bok+of+meme" - }, - "website": "https://multiversx.com", - "description": "BOK OF MEME", - "status": "active" + } } \ No newline at end of file diff --git a/tokens/BOM-a57b06/logo.png b/tokens/BOM-a57b06/logo.png index 3f9cb9d478..bfc29a8922 100644 Binary files a/tokens/BOM-a57b06/logo.png and b/tokens/BOM-a57b06/logo.png differ diff --git a/tokens/BOM-a57b06/logo.svg b/tokens/BOM-a57b06/logo.svg index b0c63015e8..ced4290a82 100644 --- a/tokens/BOM-a57b06/logo.svg +++ b/tokens/BOM-a57b06/logo.svg @@ -1,39 +1,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + diff --git a/tokens/BOTS-970b6f/info.json b/tokens/BOTS-970b6f/info.json new file mode 100644 index 0000000000..55ce328eab --- /dev/null +++ b/tokens/BOTS-970b6f/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://holobots.gitbook.io/holobots", + "twitter": "https://x.com/holobotsX" + }, + "website": "https://holobots.gitbook.io/holobots", + "description": "In the world of the HoloBots, BOTS is more than just a cryptocurrency: it’s the lifeblood of their digital society. A decentralized currency born from necessity and vision, BOTS powers the future of this virtual civilization. As the SENTINELS and WRAITHS battle for dominance, control over BOTS becomes the key to shaping the world’s destiny. In this fight for supremacy, BOTS is both weapon and currency, determining who will hold the power to define the future.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/BOTS-970b6f/logo.png b/tokens/BOTS-970b6f/logo.png new file mode 100644 index 0000000000..a4212ccf12 Binary files /dev/null and b/tokens/BOTS-970b6f/logo.png differ diff --git a/tokens/BOTS-970b6f/logo.svg b/tokens/BOTS-970b6f/logo.svg new file mode 100644 index 0000000000..2b7c6c0d27 --- /dev/null +++ b/tokens/BOTS-970b6f/logo.svg @@ -0,0 +1,975 @@ + + + + diff --git a/tokens/BOTTOM-92955b/info.json b/tokens/BOTTOM-92955b/info.json new file mode 100644 index 0000000000..61badcd346 --- /dev/null +++ b/tokens/BOTTOM-92955b/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "For all those who didn't catch the bottom, I'm here with you 👨", + "status": "active", + "social": { + "telegram": "https://t.me/bottomissimo" + } +} diff --git a/tokens/BOTTOM-92955b/logo.png b/tokens/BOTTOM-92955b/logo.png new file mode 100644 index 0000000000..eb7627bfbb Binary files /dev/null and b/tokens/BOTTOM-92955b/logo.png differ diff --git a/tokens/BOTTOM-92955b/logo.svg b/tokens/BOTTOM-92955b/logo.svg new file mode 100644 index 0000000000..dc5befec6b --- /dev/null +++ b/tokens/BOTTOM-92955b/logo.svg @@ -0,0 +1,39 @@ + + + + + + + + + diff --git a/tokens/BROKE-31e634/info.json b/tokens/BROKE-31e634/info.json new file mode 100644 index 0000000000..e1859fb2e5 --- /dev/null +++ b/tokens/BROKE-31e634/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://fundex.fun/", + "description": "For everyone out there who knows the struggle - BrokeBro Coin", + "social": { + "twitter": "https://x.com/BrokeBroCoin" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/BROKE-31e634/logo.png b/tokens/BROKE-31e634/logo.png new file mode 100644 index 0000000000..5cc204ea79 Binary files /dev/null and b/tokens/BROKE-31e634/logo.png differ diff --git a/tokens/BROKE-31e634/logo.svg b/tokens/BROKE-31e634/logo.svg new file mode 100644 index 0000000000..c84ff4847c --- /dev/null +++ b/tokens/BROKE-31e634/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/BTTM-79f56c/info.json b/tokens/BTTM-79f56c/info.json index d6ec7dc301..31b447d485 100644 --- a/tokens/BTTM-79f56c/info.json +++ b/tokens/BTTM-79f56c/info.json @@ -3,7 +3,10 @@ "description": "BTTM is the reward token that can be farmed using BTO. The goal, as the name suggests, is for it to be burned until only 10 million tokens remain.", "status": "active", "lockedAccounts": { - "erd1rhdsmz4ag4vnkj85gk7q8j5erpzy3f9szyd0ap8ksdgk42xd23dq7jwdsa": "Treasury" + "erd1rhdsmz4ag4vnkj85gk7q8j5erpzy3f9szyd0ap8ksdgk42xd23dq7jwdsa": "Treasury", + "erd1qqqqqqqqqqqqqpgq5774jcntdqkzv62tlvvhfn2y7eevpty6mvlszk3dla": "OneDex Farms", + "erd1qqqqqqqqqqqqqpgqxetccmv9rjefu2fwtw7a6kkx0tsqtqxpp4ssj8shz4": "SC Burnify", + "erd1qqqqqqqqqqqqqpgqs266zfksqqdds05af2qswk3u4lsex2ma6jtsk8uaz4": "OneDex XStake" }, "social": { "twitter": "https://twitter.com/BurnToOne" diff --git a/tokens/BUG-1ede0e/info.json b/tokens/BUG-1ede0e/info.json new file mode 100644 index 0000000000..1514b3122d --- /dev/null +++ b/tokens/BUG-1ede0e/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/thebug_x" + }, + "website": "https://thebug.website/", + "description": "The bug 🐛 Trouble Maker on multiversx\n", + "status": "active" +} \ No newline at end of file diff --git a/tokens/BUG-1ede0e/logo.png b/tokens/BUG-1ede0e/logo.png new file mode 100644 index 0000000000..2ceda82b7e Binary files /dev/null and b/tokens/BUG-1ede0e/logo.png differ diff --git a/tokens/BUG-1ede0e/logo.svg b/tokens/BUG-1ede0e/logo.svg new file mode 100644 index 0000000000..c731b374a9 --- /dev/null +++ b/tokens/BUG-1ede0e/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/CACAT-dfccdc/info.json b/tokens/CACAT-dfccdc/info.json new file mode 100644 index 0000000000..71a62928ba --- /dev/null +++ b/tokens/CACAT-dfccdc/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/cacatmvx" + }, + "website": "https://cacat.app", + "description": "Cacat is the purr-fect token for cat influencers and their fans. Join the Cacat community for a playful, pawsome time with cats!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/CACAT-dfccdc/logo.png b/tokens/CACAT-dfccdc/logo.png new file mode 100644 index 0000000000..fefa2b3faf Binary files /dev/null and b/tokens/CACAT-dfccdc/logo.png differ diff --git a/tokens/CACAT-dfccdc/logo.svg b/tokens/CACAT-dfccdc/logo.svg new file mode 100644 index 0000000000..fdceaff85d --- /dev/null +++ b/tokens/CACAT-dfccdc/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/CARLOS-e414ee/info.json b/tokens/CARLOS-e414ee/info.json new file mode 100644 index 0000000000..189facd35c --- /dev/null +++ b/tokens/CARLOS-e414ee/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/Tacohotsauuce" + }, + "website": "https://www.frigolin.com/", + "description": "MultiversXs Fiesty Chihuahua", + "status": "active" +} \ No newline at end of file diff --git a/tokens/CARLOS-e414ee/logo.png b/tokens/CARLOS-e414ee/logo.png new file mode 100644 index 0000000000..9c3d4af493 Binary files /dev/null and b/tokens/CARLOS-e414ee/logo.png differ diff --git a/tokens/CARLOS-e414ee/logo.svg b/tokens/CARLOS-e414ee/logo.svg new file mode 100644 index 0000000000..ebb9a0dd8f --- /dev/null +++ b/tokens/CARLOS-e414ee/logo.svg @@ -0,0 +1,1973 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/CATBOBER-cfd788/info.json b/tokens/CATBOBER-cfd788/info.json new file mode 100644 index 0000000000..ef62efe34f --- /dev/null +++ b/tokens/CATBOBER-cfd788/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "\"The cat we don't need, but the one we deserve.\"\n\ud83d\udc31\ud83d\udc31\ud83d\udc31\n\n", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/CATBOBER-cfd788/logo.png b/tokens/CATBOBER-cfd788/logo.png new file mode 100644 index 0000000000..9e75ee5f2d Binary files /dev/null and b/tokens/CATBOBER-cfd788/logo.png differ diff --git a/tokens/CATBOBER-cfd788/logo.svg b/tokens/CATBOBER-cfd788/logo.svg new file mode 100644 index 0000000000..3041ddf212 --- /dev/null +++ b/tokens/CATBOBER-cfd788/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/CEAUSESCU-4c27d1/info.json b/tokens/CEAUSESCU-4c27d1/info.json new file mode 100644 index 0000000000..4fa3ddad8c --- /dev/null +++ b/tokens/CEAUSESCU-4c27d1/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "I be back", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/CEAUSESCU-4c27d1/logo.png b/tokens/CEAUSESCU-4c27d1/logo.png new file mode 100644 index 0000000000..fb24d8cb0e Binary files /dev/null and b/tokens/CEAUSESCU-4c27d1/logo.png differ diff --git a/tokens/CEAUSESCU-4c27d1/logo.svg b/tokens/CEAUSESCU-4c27d1/logo.svg new file mode 100644 index 0000000000..f285928f73 --- /dev/null +++ b/tokens/CEAUSESCU-4c27d1/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/CGS-f1869d/info.json b/tokens/CGS-f1869d/info.json new file mode 100644 index 0000000000..c462b4a05c --- /dev/null +++ b/tokens/CGS-f1869d/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/CGVSLSC" + }, + "website": "https://turudoi.com", + "description": "The Călin Georgescu Meme Token (CGM) is here to disrupt the crypto world with a mix of humor, memes, and a nod to one of Romania's most talked-about public figures. Whether you’re in for the laughs or the moonshots, CGM is the ultimate fusion of culture, satire, and blockchain innovation!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/CGS-f1869d/logo.png b/tokens/CGS-f1869d/logo.png new file mode 100644 index 0000000000..75160d1bc5 Binary files /dev/null and b/tokens/CGS-f1869d/logo.png differ diff --git a/tokens/CGS-f1869d/logo.svg b/tokens/CGS-f1869d/logo.svg new file mode 100644 index 0000000000..931b893954 --- /dev/null +++ b/tokens/CGS-f1869d/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/CHAOS-b8849d/info.json b/tokens/CHAOS-b8849d/info.json new file mode 100644 index 0000000000..f1d9b3c413 --- /dev/null +++ b/tokens/CHAOS-b8849d/info.json @@ -0,0 +1,9 @@ +{ + "website": "[OOB]", + "description": "reject order, embrace chaos\n\nan [OOB] experimentation in search of shared consciousness ", + "social": { + "telegram": "[OOB]", + "twitter": "https://x.com/NtwrkCnscsnss" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/CHAOS-b8849d/logo.png b/tokens/CHAOS-b8849d/logo.png new file mode 100644 index 0000000000..dd7c9372b6 Binary files /dev/null and b/tokens/CHAOS-b8849d/logo.png differ diff --git a/tokens/CHAOS-b8849d/logo.svg b/tokens/CHAOS-b8849d/logo.svg new file mode 100644 index 0000000000..4b7cdfbf2d --- /dev/null +++ b/tokens/CHAOS-b8849d/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/CHBONX-3e0201/info.json b/tokens/CHBONX-3e0201/info.json new file mode 100644 index 0000000000..0515318070 --- /dev/null +++ b/tokens/CHBONX-3e0201/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/oni0nx" + }, + "website": "https://project-onionx.gitbook.io/onionx/the-kitchens/chubby-onionx", + "description": "CHUBBY Onion is the first PFP collection from Onion. 333 funny, irreverent onions are ready to invade the MultiversX network", + "status": "active" +} \ No newline at end of file diff --git a/tokens/CHBONX-3e0201/logo.png b/tokens/CHBONX-3e0201/logo.png new file mode 100644 index 0000000000..ecaef7f94f Binary files /dev/null and b/tokens/CHBONX-3e0201/logo.png differ diff --git a/tokens/CHBONX-3e0201/logo.svg b/tokens/CHBONX-3e0201/logo.svg new file mode 100644 index 0000000000..9495ace8fc --- /dev/null +++ b/tokens/CHBONX-3e0201/logo.svg @@ -0,0 +1,509 @@ + + + + diff --git a/tokens/CHILL-248bc3/info.json b/tokens/CHILL-248bc3/info.json new file mode 100644 index 0000000000..aa97729f43 --- /dev/null +++ b/tokens/CHILL-248bc3/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/ChillTokenX?t=wLOSXNjnMlMCtTC2-uKG4w&s=09" + }, + "website": "https://chilltoken.xyz", + "description": "Stay chill, stay rich!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/CHILL-248bc3/logo.png b/tokens/CHILL-248bc3/logo.png new file mode 100644 index 0000000000..097afaa38e Binary files /dev/null and b/tokens/CHILL-248bc3/logo.png differ diff --git a/tokens/CHILL-248bc3/logo.svg b/tokens/CHILL-248bc3/logo.svg new file mode 100644 index 0000000000..6375b9e61d --- /dev/null +++ b/tokens/CHILL-248bc3/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/CHILLBENI-4b6a34/info.json b/tokens/CHILLBENI-4b6a34/info.json new file mode 100644 index 0000000000..81dc93a88e --- /dev/null +++ b/tokens/CHILLBENI-4b6a34/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://justachillbeni.com/", + "description": "Our primary objective is to increase awareness and understanding of the MultiversX blockchain by creatively utilizing engaging and shareable memes centered around our beloved Beni. Through this approach, we will drive more attention to MultiversX and growing our community!", + "status": "active", + "social": { + "telegram": "https://t.me/+HGB4gbKCe3BlNjE5" + } +} diff --git a/tokens/CHILLBENI-4b6a34/logo.png b/tokens/CHILLBENI-4b6a34/logo.png new file mode 100644 index 0000000000..763174b54c Binary files /dev/null and b/tokens/CHILLBENI-4b6a34/logo.png differ diff --git a/tokens/CHILLBENI-4b6a34/logo.svg b/tokens/CHILLBENI-4b6a34/logo.svg new file mode 100644 index 0000000000..c6c61ea2c2 --- /dev/null +++ b/tokens/CHILLBENI-4b6a34/logo.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/tokens/CHILLGIRL-680c4a/info.json b/tokens/CHILLGIRL-680c4a/info.json new file mode 100644 index 0000000000..c8b0dc3e18 --- /dev/null +++ b/tokens/CHILLGIRL-680c4a/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "I’m just a Chill girl on multiversX", + "status": "active", + "social": { + "telegram": "https://t.me/+VYy5SnbRI3Q2ZDY0" + } +} diff --git a/tokens/CHILLGIRL-680c4a/logo.png b/tokens/CHILLGIRL-680c4a/logo.png new file mode 100644 index 0000000000..971379a0ae Binary files /dev/null and b/tokens/CHILLGIRL-680c4a/logo.png differ diff --git a/tokens/CHILLGIRL-680c4a/logo.svg b/tokens/CHILLGIRL-680c4a/logo.svg new file mode 100644 index 0000000000..0f7b101950 --- /dev/null +++ b/tokens/CHILLGIRL-680c4a/logo.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + generated by vectorizer.io + + + \ No newline at end of file diff --git a/tokens/CLASSICS-f38cbc/info.json b/tokens/CLASSICS-f38cbc/info.json new file mode 100644 index 0000000000..4d14c6a10f --- /dev/null +++ b/tokens/CLASSICS-f38cbc/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://linktr.ee/plataLinks", + "description": "/ GO FURTHER", + "social": { + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "blog": "https://drive.google.com/file/d/1n3QrgsO2jfXqrx_Qf8urnMnuFvD5JUMt/view?usp=sharing", + "twitter": "https://www.twitter.com/plataDrivers" + }, + "status": "active" +} diff --git a/tokens/CLASSICS-f38cbc/logo.png b/tokens/CLASSICS-f38cbc/logo.png new file mode 100644 index 0000000000..d87ce670e7 Binary files /dev/null and b/tokens/CLASSICS-f38cbc/logo.png differ diff --git a/tokens/CLASSICS-f38cbc/logo.svg b/tokens/CLASSICS-f38cbc/logo.svg new file mode 100644 index 0000000000..656c2dd9e1 --- /dev/null +++ b/tokens/CLASSICS-f38cbc/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/CLOWN-5ebf0d/info.json b/tokens/CLOWN-5ebf0d/info.json new file mode 100644 index 0000000000..5a8f02fd4c --- /dev/null +++ b/tokens/CLOWN-5ebf0d/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://clown.com/", + "description": "1-rst famous clown", + "status": "active" +} diff --git a/tokens/CLOWN-5ebf0d/logo.png b/tokens/CLOWN-5ebf0d/logo.png new file mode 100644 index 0000000000..538064e9ea Binary files /dev/null and b/tokens/CLOWN-5ebf0d/logo.png differ diff --git a/tokens/CLOWN-5ebf0d/logo.svg b/tokens/CLOWN-5ebf0d/logo.svg new file mode 100644 index 0000000000..578c7a10a3 --- /dev/null +++ b/tokens/CLOWN-5ebf0d/logo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/tokens/CODEX-8337ac/info.json b/tokens/CODEX-8337ac/info.json index e4c8dbff31..655f35c8c7 100644 --- a/tokens/CODEX-8337ac/info.json +++ b/tokens/CODEX-8337ac/info.json @@ -1,8 +1,12 @@ { "social": { - "twitter": "https://x.com/plataLegacy" + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://x.com/platalegacy" }, - "website": "https://plata.network/legacy", - "description": "Knowledge, the only treasure that follows you everywhere, is the foundation for evolution - Codex 500 Powered by PLATA", + "lockedAccounts": { + "erd1ryuzf08m4senh22y3rz7yl3shmeser4m5rplafg0l5ldmptd455qlll7vq": "Burn Wallet" + }, + "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=CODEX-8337ac&state=Pro&type=simple", + "description": "Knowledge, the only treasure that follows you everywhere, is the foundation for evolution -- Codex 500 Powered by PLΛTΛ", "status": "active" } diff --git a/tokens/CODEX-8337ac/logo.svg b/tokens/CODEX-8337ac/logo.svg index 322e7830f2..cd8b4044ce 100644 --- a/tokens/CODEX-8337ac/logo.svg +++ b/tokens/CODEX-8337ac/logo.svg @@ -1,222 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + \ No newline at end of file diff --git a/tokens/CODEXPLATA-c9bdfb/info.json b/tokens/CODEXPLATA-c9bdfb/info.json index 24f0a21c31..da02d7f2dd 100644 --- a/tokens/CODEXPLATA-c9bdfb/info.json +++ b/tokens/CODEXPLATA-c9bdfb/info.json @@ -1,5 +1,5 @@ { - "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=CODEX-8337ac", - "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/CODEX pool on OneDex.", + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the CODEX/PLATA pool on OneDex.", "status": "active" } diff --git a/tokens/CODEXPLATA-c9bdfb/logo.png b/tokens/CODEXPLATA-c9bdfb/logo.png index 28e8a7e7df..766cb4550a 100644 Binary files a/tokens/CODEXPLATA-c9bdfb/logo.png and b/tokens/CODEXPLATA-c9bdfb/logo.png differ diff --git a/tokens/CODEXPLATA-c9bdfb/logo.svg b/tokens/CODEXPLATA-c9bdfb/logo.svg index 7e3342b922..b31631a544 100644 --- a/tokens/CODEXPLATA-c9bdfb/logo.svg +++ b/tokens/CODEXPLATA-c9bdfb/logo.svg @@ -1,459 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + \ No newline at end of file diff --git a/tokens/CODGE-1d484a/info.json b/tokens/CODGE-1d484a/info.json new file mode 100644 index 0000000000..47668e3617 --- /dev/null +++ b/tokens/CODGE-1d484a/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "ChillGuyOnDoge: The Coolest Crypto Fusion Ever! ✨🚀\n\nBorn from the vibes of #Chill and the legacy of #DOGE, we’re here to redefine fun and fortune in the crypto space! 🍃🐕\n\n🔥 Why ChillGuyOnDoge?\nFair Launch: No games, no gimmicks—pure transparency.\n\nWith ChillGuyOnDoge, it’s not just about gains—it’s about the coolest journey in crypto. Join us and turn FOMO into FROSTY vibes! 😎🌌\n\nLet’s Chill & Moon Together! 🌕", + "status": "active", + "social": { + "telegram": "https://t.me/chillguyondoge" + } +} diff --git a/tokens/CODGE-1d484a/logo.png b/tokens/CODGE-1d484a/logo.png new file mode 100644 index 0000000000..79ba341c02 Binary files /dev/null and b/tokens/CODGE-1d484a/logo.png differ diff --git a/tokens/CODGE-1d484a/logo.svg b/tokens/CODGE-1d484a/logo.svg new file mode 100644 index 0000000000..a7fbf783e7 --- /dev/null +++ b/tokens/CODGE-1d484a/logo.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/CREL-e7238c/info.json b/tokens/CREL-e7238c/info.json new file mode 100644 index 0000000000..fe260b5cdf --- /dev/null +++ b/tokens/CREL-e7238c/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://thecollectionistx.com", + "description": "Cockerel - The CollectionistX present Gen-1, The Cockerel project. A collection of 8.888 distinct, randomly produced NFTs, it will set a milestone for the $TCX Price & Liquidity!", + "social": { + "email": "info@thecollectionistx.com", + "twitter": "https://twitter.com/CollectionistX", + "whitepaper": "https://thecollectionisteclub.mypinata.cloud/ipfs/QmcMjXrQ1hx3xC75krXnwshKFfJ54yMgSJbJdkjYNkUFTM?_gl=1*1wosed2*_ga*OWQ5N2FkYjYtZTViMS00YzZlLWFhNWQtM2ZiY2IyNjhiYmM5*_ga_5RMPXG14TE*MTY3OTc1MzM4NC4xMS4xLjE2Nzk3NTQyNTEuNTYuMC4w" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/CREL-e7238c/logo.png b/tokens/CREL-e7238c/logo.png new file mode 100644 index 0000000000..0351faff68 Binary files /dev/null and b/tokens/CREL-e7238c/logo.png differ diff --git a/tokens/CREL-e7238c/logo.svg b/tokens/CREL-e7238c/logo.svg new file mode 100644 index 0000000000..018370bd26 --- /dev/null +++ b/tokens/CREL-e7238c/logo.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/CYBERRIDE-3169aa/info.json b/tokens/CYBERRIDE-3169aa/info.json new file mode 100644 index 0000000000..c8aedfaac2 --- /dev/null +++ b/tokens/CYBERRIDE-3169aa/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://cyberpunkcity.com", + "description": "The most detailed, fully hand-crafted, drivable and customizable CyberRide NFT Collection of Web3. Powered by Cyberpunk City Metaverse.", + "social": { + "email": "info@cyberpunkcity.com", + "blog": "https://cyberpunkcity.com/news", + "twitter": "https://x.com/CyberpunkCity", + "discord": "https://cyberpunkcity.com/discord", + "telegram": "https://t.me/cyberpunkcity", + "youtube": "https://www.youtube.com/CyberpunkCity", + "whitepaper": "https://cyberpunkcity.com/whitepaper" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/CYBERRIDE-3169aa/logo.png b/tokens/CYBERRIDE-3169aa/logo.png new file mode 100644 index 0000000000..a1dbc3ef45 Binary files /dev/null and b/tokens/CYBERRIDE-3169aa/logo.png differ diff --git a/tokens/CYBERRIDE-3169aa/logo.svg b/tokens/CYBERRIDE-3169aa/logo.svg new file mode 100644 index 0000000000..30ccc50e94 --- /dev/null +++ b/tokens/CYBERRIDE-3169aa/logo.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/DBATES-78f441/info.json b/tokens/DBATES-78f441/info.json new file mode 100644 index 0000000000..06cd8b8c06 --- /dev/null +++ b/tokens/DBATES-78f441/info.json @@ -0,0 +1,5 @@ +{ + "website": "http://batesmvx.meme", + "description": "Decentralized BATES, the first community liquidity share. True ownership.", + "status": "active" +} diff --git a/tokens/DBATES-78f441/logo.png b/tokens/DBATES-78f441/logo.png new file mode 100644 index 0000000000..463332b5c7 Binary files /dev/null and b/tokens/DBATES-78f441/logo.png differ diff --git a/tokens/DBATES-78f441/logo.svg b/tokens/DBATES-78f441/logo.svg new file mode 100644 index 0000000000..175a482e9a --- /dev/null +++ b/tokens/DBATES-78f441/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/tokens/DEADPOOL-3dd77e/info.json b/tokens/DEADPOOL-3dd77e/info.json new file mode 100644 index 0000000000..ed14facadf --- /dev/null +++ b/tokens/DEADPOOL-3dd77e/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "Introducing $DEADPOOL: The Most Mercilessly Meta Meme Coin\n\nHey there, you degenerates of the crypto-verse! Ever felt like your portfolio needed a bit more attitude? Enter $DEADPOOL: the coin that’s equal parts irreverent anti-hero and dead-end staking pool. That’s right, folks—just like the actual Deadpool, we don’t play by the rules. This token doesn’t just break the fourth wall; it breaks your hopes of earning passive income! 🤑💀\n\nWhy $DEADPOOL?\nSuperhero Swagger: Sure, most coins have a roadmap, but we’ve got chimichangas, snark, and a spandex suit to match.\nDead Pool = Dead Staking: Staking? Ha! You can stake all you want, but your rewards? They're as dead as Francis. Don't say we didn't warn you.\nCommunity-Driven Chaos: What happens when you mix crypto fanatics with Deadpool fans? A glorious, unhinged dumpster fire of memes, and we wouldn’t have it any other way.\n\nTokenomics That Make No Sense\n69 Million Supply: Because we're classy like that.\n100% Transparency: We’ll openly tell you it’s probably not going anywhere. But hey, neither is Ryan Reynolds, so who cares?\n\nIn conclusion, $DEADPOOL is not here to save the crypto world. It's here to roast it. So if you're tired of the same boring utility tokens promising the moon, come join the dark side where expectations are low, but the memes are chef’s kiss.\n\nInvest wisely, or don’t. Deadpool wouldn’t care, and neither do we. 💀🔗", + "status": "active", + "social": { + "telegram": "https://wallet.multiversx.com/" + } +} diff --git a/tokens/DEADPOOL-3dd77e/logo.png b/tokens/DEADPOOL-3dd77e/logo.png new file mode 100644 index 0000000000..6d80f96a5f Binary files /dev/null and b/tokens/DEADPOOL-3dd77e/logo.png differ diff --git a/tokens/DEADPOOL-3dd77e/logo.svg b/tokens/DEADPOOL-3dd77e/logo.svg new file mode 100644 index 0000000000..a852aa074b --- /dev/null +++ b/tokens/DEADPOOL-3dd77e/logo.svg @@ -0,0 +1,819 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/DISRRUPTIVE-c20f7d/info.json b/tokens/DISRRUPTIVE-c20f7d/info.json new file mode 100644 index 0000000000..b432ccfa5d --- /dev/null +++ b/tokens/DISRRUPTIVE-c20f7d/info.json @@ -0,0 +1,10 @@ +{ + "social": { + "blog": "https://disruptivedigital.eu/blog/", + "twitter": "https://twitter.com/DisrDigital", + "whitepaper": "https://disruptivedigital.eu/DD-token-litepaper.pdf" + }, + "website": "https://disruptivedigital.eu/", + "description": "Disruptive token is an incentive token with a relative fixed value that can be used in products and services acquisition in the Disruptive Digital ecosystem", + "status": "active" +} \ No newline at end of file diff --git a/tokens/DISRRUPTIVE-c20f7d/logo.png b/tokens/DISRRUPTIVE-c20f7d/logo.png new file mode 100644 index 0000000000..c94dd415e7 Binary files /dev/null and b/tokens/DISRRUPTIVE-c20f7d/logo.png differ diff --git a/tokens/DISRRUPTIVE-c20f7d/logo.svg b/tokens/DISRRUPTIVE-c20f7d/logo.svg new file mode 100644 index 0000000000..3b23a21941 --- /dev/null +++ b/tokens/DISRRUPTIVE-c20f7d/logo.svg @@ -0,0 +1,473 @@ + + + + diff --git a/tokens/DMXT-c47816/info.json b/tokens/DMXT-c47816/info.json new file mode 100644 index 0000000000..8ef181c047 --- /dev/null +++ b/tokens/DMXT-c47816/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://peerme.io/decentralizedmxtoken-dao", + "description": "DecentralizedMxToken is the first ESDT token created to strengthen the MultiversX community. Currently, there is no established team, allocated funds, or set roadmap.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/DMXT-c47816/logo.png b/tokens/DMXT-c47816/logo.png new file mode 100644 index 0000000000..39a85618f4 Binary files /dev/null and b/tokens/DMXT-c47816/logo.png differ diff --git a/tokens/DMXT-c47816/logo.svg b/tokens/DMXT-c47816/logo.svg new file mode 100644 index 0000000000..bfcf40b83b --- /dev/null +++ b/tokens/DMXT-c47816/logo.svg @@ -0,0 +1,39 @@ + + + + + + + + + + diff --git a/tokens/DOBER-5e3312/info.json b/tokens/DOBER-5e3312/info.json new file mode 100644 index 0000000000..e4c79a790a --- /dev/null +++ b/tokens/DOBER-5e3312/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://360l.ink/DoberCoin", + "description": "Welcome to Dober's Den \ud83d\udc3e\n\nYou've just joined the pack of the memecoin with a bite! \ud83d\udc36\ud83d\udca5 Get ready for exclusive updates, sneak peeks, and the latest on Dober as we sprint ahead in the crypto world.\n\nWhether you're here for the fun, the gains, or just to vibe with fellow Dober fans, you\u2019re in the right place. Let\u2019s fetch success together! \ud83d\ude80\ud83d\udcb8\n\n", + "social": { + "telegram": "https://t.me/dober_official_mvx", + "twitter": "https://x.com/DoberMvx" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/DOBER-5e3312/logo.png b/tokens/DOBER-5e3312/logo.png new file mode 100644 index 0000000000..3fcb0bf637 Binary files /dev/null and b/tokens/DOBER-5e3312/logo.png differ diff --git a/tokens/DOBER-5e3312/logo.svg b/tokens/DOBER-5e3312/logo.svg new file mode 100644 index 0000000000..3e277e6fed --- /dev/null +++ b/tokens/DOBER-5e3312/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/DOGEMOON-06825b/info.json b/tokens/DOGEMOON-06825b/info.json new file mode 100644 index 0000000000..c016517872 --- /dev/null +++ b/tokens/DOGEMOON-06825b/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://explorer.multiversx.com/tokens/DOGEMOON-06825b", + "description": "Doge was abducted and taken to the moon!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/DOGEMOON-06825b/logo.png b/tokens/DOGEMOON-06825b/logo.png new file mode 100644 index 0000000000..662dfca0a1 Binary files /dev/null and b/tokens/DOGEMOON-06825b/logo.png differ diff --git a/tokens/DOGEMOON-06825b/logo.svg b/tokens/DOGEMOON-06825b/logo.svg new file mode 100644 index 0000000000..53ee487ef4 --- /dev/null +++ b/tokens/DOGEMOON-06825b/logo.svg @@ -0,0 +1 @@ + diff --git a/tokens/DRAMA-c341d3/info.json b/tokens/DRAMA-c341d3/info.json new file mode 100644 index 0000000000..f2c35602ed --- /dev/null +++ b/tokens/DRAMA-c341d3/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://www.voxels.com/play?coords=W@3402E,1619S", + "twitter": "https://x.com/DramaMvX" + }, + "website": "https://dramamvx.com/", + "description": "An abundant energy that initially seemed dramatic and destructive, but was later discovered to have magical, energetic, and memetic properties, $DRAMA Memecoin.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/DRAMA-c341d3/logo.png b/tokens/DRAMA-c341d3/logo.png new file mode 100644 index 0000000000..05d2f500fe Binary files /dev/null and b/tokens/DRAMA-c341d3/logo.png differ diff --git a/tokens/DRAMA-c341d3/logo.svg b/tokens/DRAMA-c341d3/logo.svg new file mode 100644 index 0000000000..a1eb1696a2 --- /dev/null +++ b/tokens/DRAMA-c341d3/logo.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/DRAQ-0b6242/info.json b/tokens/DRAQ-0b6242/info.json new file mode 100644 index 0000000000..f09f5ceb18 --- /dev/null +++ b/tokens/DRAQ-0b6242/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://x.com/DraqTheImpaler", + "twitter": "https://x.com/DraqTheImpaler" + }, + "website": "https://x.com/DraqTheImpaler", + "description": "Impale the competition!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/DRAQ-0b6242/logo.png b/tokens/DRAQ-0b6242/logo.png new file mode 100644 index 0000000000..8c4a6b5a19 Binary files /dev/null and b/tokens/DRAQ-0b6242/logo.png differ diff --git a/tokens/DRAQ-0b6242/logo.svg b/tokens/DRAQ-0b6242/logo.svg new file mode 100644 index 0000000000..8404bdffa3 --- /dev/null +++ b/tokens/DRAQ-0b6242/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/DRIVERS-f247ce/info.json b/tokens/DRIVERS-f247ce/info.json index 90090af0f2..f3b4ff2eb1 100644 --- a/tokens/DRIVERS-f247ce/info.json +++ b/tokens/DRIVERS-f247ce/info.json @@ -1,8 +1,10 @@ { - "website": "https://plata.network", - "description": "DRIVΞRS of the MultiversX blockchain. Gamification. Passive income. Race for $PLATA", + "website": "https://xoxno.com/collection/DRIVERS-f247ce", + "description": "Gamification. Staking. 22-24 bear market Veterans -- DRIVΞRS of the MultiversX blockchain", "social": { - "twitter": "https://www.twitter.com/plataNetwork" + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "blog": "https://drive.google.com/file/d/1n3QrgsO2jfXqrx_Qf8urnMnuFvD5JUMt/view?usp=sharing", + "twitter": "https://www.x.com/plataDrivers" }, "status": "active" } diff --git a/tokens/DRIVERS-f247ce/logo.png b/tokens/DRIVERS-f247ce/logo.png index 3a2518e6ac..38df9b4452 100644 Binary files a/tokens/DRIVERS-f247ce/logo.png and b/tokens/DRIVERS-f247ce/logo.png differ diff --git a/tokens/DRIVERS-f247ce/logo.svg b/tokens/DRIVERS-f247ce/logo.svg index 0fbc1ad0bd..898650ad10 100644 --- a/tokens/DRIVERS-f247ce/logo.svg +++ b/tokens/DRIVERS-f247ce/logo.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/tokens/DRX-b7f337/info.json b/tokens/DRX-b7f337/info.json new file mode 100644 index 0000000000..9974c506f1 --- /dev/null +++ b/tokens/DRX-b7f337/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://t.me/DoctorX_Meme", + "twitter": "https://x.com/DoctorX_Meme" + }, + "website": "https://doctorx.meme/", + "description": "DRX is the native token of the DoctorX ecosystem, powering the world’s first meme-driven economy for engagement, competition, and rewards on the MultiversX blockchain.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/DRX-b7f337/logo.png b/tokens/DRX-b7f337/logo.png new file mode 100644 index 0000000000..69bff433a8 Binary files /dev/null and b/tokens/DRX-b7f337/logo.png differ diff --git a/tokens/DRX-b7f337/logo.svg b/tokens/DRX-b7f337/logo.svg new file mode 100644 index 0000000000..3ddbe2ff03 --- /dev/null +++ b/tokens/DRX-b7f337/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/tokens/EAPES-014cd7/info.json b/tokens/EAPES-014cd7/info.json index 1b6fe2a13b..0f2256cef3 100644 --- a/tokens/EAPES-014cd7/info.json +++ b/tokens/EAPES-014cd7/info.json @@ -1,11 +1,7 @@ { - "social": { - "blog": "https://eapes.medium.com/", - "twitter": "https://twitter.com/EAPESCLUB", - "whitepaper": "https://wp.eapes.com/whitepaper" - }, "website": "https://eapes.com/", "description": "EAPES is the utility token at the core of the EAPES ecosystem that powers the circular economy for EAPES Island and real world applications. It is built on 4 pillars: stability, growth, sustainability and balance.", + "status": "active", "lockedAccounts": { "erd1qqqqqqqqqqqqqpgqa4964srzul8ypj48mqpywpregkuvamnwr79qzath5e": "Team", "erd1qqqqqqqqqqqqqpgqtpj585r657jke59sq6kvs2agtcsgenh9r79qm8f3he": "Treasury", @@ -17,7 +13,12 @@ "erd1qqqqqqqqqqqqqpgq575mqgaqe4f53rqc5ssczkxtsx4fs26l3azq9zwkaw": "SC BPEP", "erd1qqqqqqqqqqqqqpgqakyx8fks50203l7nnzpnjshx43vf2kwe33cq7aa40x": "SC Vesting", "erd1qqqqqqqqqqqqqpgq8h6stfhdtkr0wwqstz28w2dz9568l4cm33cqyfkn05": "SC Staking", - "erd1p86sk7zea3msa9tmf4hrmy500c8qrg6kkrw86lwfxg0nefh0trhqy9mrvp": "Burned" + "erd1p86sk7zea3msa9tmf4hrmy500c8qrg6kkrw86lwfxg0nefh0trhqy9mrvp": "Burned", + "erd1qqqqqqqqqqqqqpgqwkt9qx6tktmucu7pa6frxye7s2l762cmrtysnkhqyh": "SC Marketplace" }, - "status": "active" + "social": { + "blog": "https://eapes.medium.com/", + "twitter": "https://twitter.com/EAPESCLUB", + "whitepaper": "https://wp.eapes.com/whitepaper" + } } \ No newline at end of file diff --git a/tokens/EBUD-d29cce/info.json b/tokens/EBUD-d29cce/info.json index a57442f26e..fba0b324dc 100644 --- a/tokens/EBUD-d29cce/info.json +++ b/tokens/EBUD-d29cce/info.json @@ -1,16 +1,19 @@ { - "website": "https://ebuds.netlify.app/", - "description": "eBuds is a decentralized autonomous community focused on the creation and distribution of non-fungible tokens (NFTs)", + "website": "https://www.love-mvx.com", + "description": "eBuds is a decentralized autonomous community focused on the creation and distribution of non-fungible tokens (NFTs),the project manages $EBUD and $LUV tokens.", "status": "active", "social": { - "blog": "https://ebuds.medium.com/", + "blog": "https://ebuds.medium.com", "twitter": "https://twitter.com/eBudsNFT", - "whitepaper": "https://ebuds.netlify.app/" + "whitepaper": "https://www.love-mvx.com" }, "lockedAccounts": { "erd1qqqqqqqqqqqqqpgqt3tr3hdzyaum90nvauzgc0gzr63gz98r5w4sq5l3js": "distribution_sc", "erd1qqqqqqqqqqqqqpgqmtv46gqnv0hcj47rlvhpsextapry4m6lkfhq5ulsls": "NFT HOLDERS 2025", "erd1qqqqqqqqqqqqqpgq07umryl68rwst0xh4800ujr83g6tlf9vkfhqt0z5pp": "$EBUD HOLDERS 2025", + "erd1qqqqqqqqqqqqqpgqq0yx7w5lguw5e5067j2lpl96t5vp3xcu27rswu3eq4": "DAO wallet", + "erd10l0mhny35p8gh32vfxteealjaef0rzvpf7ajl3hvsnpvwvn4kfhqf2gqla": "working wallet", + "erd1kqfjkdxv4wwjkey29f3zcfgnj570uglxpht85xz9sk80spv6pygs7lxqul": "weekly rewards/drops", "erd1qqqqqqqqqqqqqpgq6nur2qzrz8q5fhj6ktmxvj6plznt2lqykfhqu22n69": "Investing Fund" } } \ No newline at end of file diff --git a/tokens/EBUDPLATA-6fca29/info.json b/tokens/EBUDPLATA-6fca29/info.json index 1892876602..f9a7d1e63a 100644 --- a/tokens/EBUDPLATA-6fca29/info.json +++ b/tokens/EBUDPLATA-6fca29/info.json @@ -1,5 +1,5 @@ { - "website": "https://swap.onedex.app/swap?firstToken=EBUD-d29cce&secondToken=PLATA-9ba6c3&state=Lite&type=simple", - "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/EBUD pool on OneDex.", + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EBUD/PLATA pool on OneDex.", "status": "active" } diff --git a/tokens/EBUDPLATA-6fca29/logo.png b/tokens/EBUDPLATA-6fca29/logo.png index b587fb163c..766cb4550a 100644 Binary files a/tokens/EBUDPLATA-6fca29/logo.png and b/tokens/EBUDPLATA-6fca29/logo.png differ diff --git a/tokens/EBUDPLATA-6fca29/logo.svg b/tokens/EBUDPLATA-6fca29/logo.svg index 2c29d51602..b31631a544 100644 --- a/tokens/EBUDPLATA-6fca29/logo.svg +++ b/tokens/EBUDPLATA-6fca29/logo.svg @@ -1,202 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + \ No newline at end of file diff --git a/tokens/EDIA-60b86f/info.json b/tokens/EDIA-60b86f/info.json index 5680d7fb88..ff683407c5 100644 --- a/tokens/EDIA-60b86f/info.json +++ b/tokens/EDIA-60b86f/info.json @@ -4,9 +4,12 @@ "whitepaper": "https://wdia.wavenode.io/" }, "website": "https://wdia.wavenode.io/", - "description": "With an initial supply of 3106 tokens, it is distributed for free to WDiamond owners who stake their NFT. The price of eDIA is sustained through the redemption system maintained by WDiamond mints. Ultimately, eDIA aims to be utilized for interaction within the Wavenode ecosystem on MultiversX.", + "description": "With an initial supply of 3106 tokens, it is distributed for free to WDiamond owners who stake their NFT. 20% of the rewards are injected into the eDIA token and distributed back to the community. Stake at least 1 EGLD regularly for random eDIA AirDrops. Ultimately, eDIA aims to be utilized for interaction within the Wavenode ecosystem on MultiversX.", "lockedAccounts": { - "erd1uxqsu6pjf760s0rqry57wlctpy75jutk0czhzz3t07xtxnh75egs4c73j0": "Locked burn" + "erd1uxqsu6pjf760s0rqry57wlctpy75jutk0czhzz3t07xtxnh75egs4c73j0": "Locked for burn", + "erd1a93xltt2d99pv4mc5lq5y7e2xk5anplqxf30dyap88amt0qjrn9s4dtjen": "OGs tresor", + "erd1nc8z536qmrc3nu5722r586qnplth7u755ketxuz6969g849s4a6q9f9x7w": "Community tresor", + "erd1qqqqqqqqqqqqqpgq4nmdzsfd7llq9gvgdjd6s5wm8qkfu7dws28saszynl": "Staking Smartcontract WDiamond Exrond" }, "status": "active" -} \ No newline at end of file +} diff --git a/tokens/EDIA-60b86f/logo.png b/tokens/EDIA-60b86f/logo.png index 23d3da129a..3e03c45f56 100644 Binary files a/tokens/EDIA-60b86f/logo.png and b/tokens/EDIA-60b86f/logo.png differ diff --git a/tokens/EDIA-60b86f/logo.svg b/tokens/EDIA-60b86f/logo.svg index 8911d165e5..5f152273e6 100644 --- a/tokens/EDIA-60b86f/logo.svg +++ b/tokens/EDIA-60b86f/logo.svg @@ -1,312 +1,111 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/EFOO-8fe2d4/info.json b/tokens/EFOO-8fe2d4/info.json index 5c241e23d0..47e61ae062 100644 --- a/tokens/EFOO-8fe2d4/info.json +++ b/tokens/EFOO-8fe2d4/info.json @@ -1,18 +1,17 @@ { - "website": "https://www.elrond-football.com", - "description": "The EFOO token is associated with the ⚽EFootball-X project, allowing users to participate in the project and contribute to the community's development.", - "social": { - "email": "elrondfootballnfts@gmail.com", - "blog": "https://medium.com/@elrondfootball", - "twitter": "https://twitter.com/EFootball_X", - "whitepaper": "https://medium.com/@elrondfootball/elrond-football-projects-whitepaper-5184093adb20", - "telegram": "https://t.me/elrondfootball", - "discord": "https://discord.gg/c4ds7WzvKc" - }, - "lockedAccounts": { - "erd1g9cva5mrgv698ehuc5dggkn8tuda7jxmz07zfljrv20s580pr0gsm6je3v": "Team and Treasury vesting", - "erd1k8w7y5ftg2uax8v8ng8p5azjw96zzfgky9v3fydtpe2xwdz0007q3hl9z8": "Liquidity Reserve Wallet", - "erd1qqqqqqqqqqqqqpgqxqnap2d90f0sj0v34a0duaqq78x3q2pr3qmq9gadg4": "Team and Treasury BitLock" - }, - "status": "active" + "website":"https://mvxfootball.wixsite.com/website/en", + "description":"The EFOO token is associated with the ⚽EFootball-X project, allowing users to participate in the project and contribute to the community's development.", + "social":{ + "email":"elrondfootballnfts@gmail.com", + "blog":"https://medium.com/@elrondfootball", + "X":"https://x.com/EFootball_X", + "whitepaper":"https://medium.com/@elrondfootball/elrond-football-projects-whitepaper-5184093adb20", + "telegram":"https://t.me/elrondfootball" + }, + "lockedAccounts":{ + "erd1g9cva5mrgv698ehuc5dggkn8tuda7jxmz07zfljrv20s580pr0gsm6je3v":"Team and Treasury vesting", + "erd1k8w7y5ftg2uax8v8ng8p5azjw96zzfgky9v3fydtpe2xwdz0007q3hl9z8":"Liquidity Reserve Wallet", + "erd1qqqqqqqqqqqqqpgqxqnap2d90f0sj0v34a0duaqq78x3q2pr3qmq9gadg4":"Team and Treasury BitLock" + }, + "status":"active" } diff --git a/tokens/EGHOST-f3181a/info.json b/tokens/EGHOST-f3181a/info.json new file mode 100644 index 0000000000..2057ebb614 --- /dev/null +++ b/tokens/EGHOST-f3181a/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "blog": "https://t.me/eghost_mvx" + }, + "website": "https://eghost.xyz/", + "description": "BOOOH BOOOH \nI'M EGHOST, THE GHOST OF THE GHOST CHAIN.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/EGHOST-f3181a/logo.png b/tokens/EGHOST-f3181a/logo.png new file mode 100644 index 0000000000..dae41dfde8 Binary files /dev/null and b/tokens/EGHOST-f3181a/logo.png differ diff --git a/tokens/EGHOST-f3181a/logo.svg b/tokens/EGHOST-f3181a/logo.svg new file mode 100644 index 0000000000..ac7850cfd8 --- /dev/null +++ b/tokens/EGHOST-f3181a/logo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/EGLD-000000/info.json b/tokens/EGLD-000000/info.json new file mode 100644 index 0000000000..23034592c4 --- /dev/null +++ b/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/tokens/EGLD-000000/logo.png b/tokens/EGLD-000000/logo.png new file mode 100644 index 0000000000..0f82d972dd Binary files /dev/null and b/tokens/EGLD-000000/logo.png differ diff --git a/tokens/EGLD-000000/logo.svg b/tokens/EGLD-000000/logo.svg new file mode 100644 index 0000000000..d2be1a1f96 --- /dev/null +++ b/tokens/EGLD-000000/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/tokens/EGLDSQUEZE-1a276b/info.json b/tokens/EGLDSQUEZE-1a276b/info.json new file mode 100644 index 0000000000..cb6346c98d --- /dev/null +++ b/tokens/EGLDSQUEZE-1a276b/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "EGLDSqueeze: The Ultimate Memecoin\nIntroducing EGLDSqueeze – a memecoin born out of the sheer power of community spirit and viral momentum. This coin has no utility, no grand promises, just pure meme magic. With a capped supply of 100,001 coins, EGLDSqueeze is as rare as it is humorous.\n\nWhat is EGLDSqueeze?\nEGLDSqueeze is a memecoin with one purpose: to bring people together through a shared joke and the thrill of being part of a viral movement. Created in the spirit of fun and camaraderie, it leverages the power of community to drive its value.\n\nThe Movement\nThe EGLDSqueeze movement is about apes uniting and standing strong together. Inspired by the #EGLDSqueeze hashtag and driven by community leader Daniel Veroc 🦍, the movement encourages members to buy EGLD and spread the word. The slogan \"Apes together, STRONG!\" captures the essence of this effort.\n\nHighlights\nTotal Supply: 100,001 EGLDSqueeze coins.\nNo Utility: This coin is purely a meme, with no underlying technology or purpose beyond being part of a joke.\nCommunity-Driven: The value and success of EGLDSqueeze rely entirely on the strength and enthusiasm of its community.\nJoin the Fun\nBe an Ape: Join the movement by purchasing EGLD and becoming part of the #EGLDSqueeze community.\nSpread the Word: Share the meme and invite more apes to join. The more, the merrier!\nYOLO Marketing: Embrace the spirit of YOLO (You Only Live Once) and dive headfirst into the world of memecoins.\nCommunity Insights\nDaniel Veroc 🦍: The voice and face of the EGLDSqueeze movement, rallying apes and pushing the meme forward.\nGrowing Numbers: From 345 members to over 415 and counting, the community is expanding rapidly.\nViral Potential: With tweets and posts encouraging exponential growth, the dream of 1 million apes is alive and well.\nEGLDSqueeze is the ultimate example of a meme bringing people together. It’s about having fun, being part of something bigger, and seeing just how far a joke can go when apes unite. Join the #EGLDSqueeze movement today and be part of the meme revolution!", + "status": "active", + "social": { + "telegram": "https://x.com/i/communities/1806335013320823071" + } +} diff --git a/tokens/EGLDSQUEZE-1a276b/logo.png b/tokens/EGLDSQUEZE-1a276b/logo.png new file mode 100644 index 0000000000..cf820ca1f5 Binary files /dev/null and b/tokens/EGLDSQUEZE-1a276b/logo.png differ diff --git a/tokens/EGLDSQUEZE-1a276b/logo.svg b/tokens/EGLDSQUEZE-1a276b/logo.svg new file mode 100644 index 0000000000..29dbe3f836 --- /dev/null +++ b/tokens/EGLDSQUEZE-1a276b/logo.svg @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/EGOD-c0e234/info.json b/tokens/EGOD-c0e234/info.json new file mode 100644 index 0000000000..a07f469d0d --- /dev/null +++ b/tokens/EGOD-c0e234/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "The Cat", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/EGOD-c0e234/logo.png b/tokens/EGOD-c0e234/logo.png new file mode 100644 index 0000000000..b874c81758 Binary files /dev/null and b/tokens/EGOD-c0e234/logo.png differ diff --git a/tokens/EGOD-c0e234/logo.svg b/tokens/EGOD-c0e234/logo.svg new file mode 100644 index 0000000000..d6250855f2 --- /dev/null +++ b/tokens/EGOD-c0e234/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/ELMO-223bd0/info.json b/tokens/ELMO-223bd0/info.json new file mode 100644 index 0000000000..33f6c8c052 --- /dev/null +++ b/tokens/ELMO-223bd0/info.json @@ -0,0 +1,20 @@ +{ + "social": { + "twitter": "https://x.com/BurnifyApp" + }, + "website": "https://burnify.app", + "description": "The Meme of Burners\nBurn 2 Build", + "extraTokens": [ + "BFY-8344ff" + ], + "lockedAccounts": { + "erd12z5extcjj34ccpgmcszlegx8eyf8n4t94swhl9r704tam54j0a7q022a0w": "Burnify Discount", + "erd1deaddeaddeaddeaddeaddeaddeaddeaddeaddeaddeaddeaddeaqtv0gag": "Burned" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/ELMO-223bd0", + "path": "0.usdPrice" + } +} diff --git a/tokens/ELMO-223bd0/logo.png b/tokens/ELMO-223bd0/logo.png new file mode 100644 index 0000000000..cb7814a284 Binary files /dev/null and b/tokens/ELMO-223bd0/logo.png differ diff --git a/tokens/ELMO-223bd0/logo.svg b/tokens/ELMO-223bd0/logo.svg new file mode 100644 index 0000000000..3babef19aa --- /dev/null +++ b/tokens/ELMO-223bd0/logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/tokens/EMRS-6e4067/info.json b/tokens/EMRS-6e4067/info.json new file mode 100644 index 0000000000..6c562a4b4d --- /dev/null +++ b/tokens/EMRS-6e4067/info.json @@ -0,0 +1,16 @@ +{ + "website": "https://emorya.com", + "description": "This token rewards your every calorie shed, transforming workouts or simply active calories into tangible gains.", + "social": { + "email": "support@emorya.com", + "twitter": "https://twitter.com/EmoryaFinance", + "telegram": "https://t.me/EmoryaFinanceRO", + "whitepaper": "https://emorya.com/emorya-white-paper" + }, + "priceSource": { + "type": "customUrl", + "url": "https://api.emorya.com/emrs-price", + "path": "0.usdPrice" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/EMRS-6e4067/logo.png b/tokens/EMRS-6e4067/logo.png new file mode 100644 index 0000000000..b29a8a4757 Binary files /dev/null and b/tokens/EMRS-6e4067/logo.png differ diff --git a/tokens/EMRS-6e4067/logo.svg b/tokens/EMRS-6e4067/logo.svg new file mode 100644 index 0000000000..ea63a7b1c3 --- /dev/null +++ b/tokens/EMRS-6e4067/logo.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/tokens/EUG-902041/info.json b/tokens/EUG-902041/info.json new file mode 100644 index 0000000000..4ee3319099 --- /dev/null +++ b/tokens/EUG-902041/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/EugenTheFarmer" + }, + "website": "https://www.frigolin.com/", + "description": "Farm $EUG on OneDex. Buy , deploy LP , stake LP & farm rewards up to 200% APR!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/EUG-902041/logo.png b/tokens/EUG-902041/logo.png new file mode 100644 index 0000000000..6b40cf41e3 Binary files /dev/null and b/tokens/EUG-902041/logo.png differ diff --git a/tokens/EUG-902041/logo.svg b/tokens/EUG-902041/logo.svg new file mode 100644 index 0000000000..9ce5e1877d --- /dev/null +++ b/tokens/EUG-902041/logo.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/EURC-279bee/info.json b/tokens/EURC-279bee/info.json new file mode 100644 index 0000000000..c208abec24 --- /dev/null +++ b/tokens/EURC-279bee/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://bridge.onefinity.network/", + "description": "A fully backed euro stablecoin Bridged from Solana", + "status": "active", + "social": { + "twitter": "https://x.com/onefinitychain" + } +} \ No newline at end of file diff --git a/tokens/EURC-279bee/logo.png b/tokens/EURC-279bee/logo.png new file mode 100644 index 0000000000..d1d1d24930 Binary files /dev/null and b/tokens/EURC-279bee/logo.png differ diff --git a/tokens/EURC-279bee/logo.svg b/tokens/EURC-279bee/logo.svg new file mode 100644 index 0000000000..9d1416ab35 --- /dev/null +++ b/tokens/EURC-279bee/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/EVBDG-6e4310/info.json b/tokens/EVBDG-6e4310/info.json new file mode 100644 index 0000000000..1f8bc97d51 --- /dev/null +++ b/tokens/EVBDG-6e4310/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://dapp.eventivivi.it", + "description": "Possess this badge to offer your contribution to the E.V Ecosystem with a very specific target, receiving further usefulness in exchange!", + "social": { + "email": "evnftreal@gmail.com", + "twitter": "https://x.com/evnftreal", + "telegram": "https://t.me/evnftreal", + "discord": "https://discord.gg/evecosystem" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/EVBDG-6e4310/logo.png b/tokens/EVBDG-6e4310/logo.png new file mode 100644 index 0000000000..1f3d64822a Binary files /dev/null and b/tokens/EVBDG-6e4310/logo.png differ diff --git a/tokens/EVBDG-6e4310/logo.svg b/tokens/EVBDG-6e4310/logo.svg new file mode 100644 index 0000000000..3f5a7ea443 --- /dev/null +++ b/tokens/EVBDG-6e4310/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/FACTFRIDAY-bfaadb/info.json b/tokens/FACTFRIDAY-bfaadb/info.json new file mode 100644 index 0000000000..341c1d451d --- /dev/null +++ b/tokens/FACTFRIDAY-bfaadb/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/FactFridayDev" + }, + "website": "https://multiversx.com/", + "description": "We celebrate every Friday, the newest coin memes ", + "status": "active" +} \ No newline at end of file diff --git a/tokens/FACTFRIDAY-bfaadb/logo.png b/tokens/FACTFRIDAY-bfaadb/logo.png new file mode 100644 index 0000000000..49af5dc3e4 Binary files /dev/null and b/tokens/FACTFRIDAY-bfaadb/logo.png differ diff --git a/tokens/FACTFRIDAY-bfaadb/logo.svg b/tokens/FACTFRIDAY-bfaadb/logo.svg new file mode 100644 index 0000000000..bf8074c6c1 --- /dev/null +++ b/tokens/FACTFRIDAY-bfaadb/logo.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/FCH-6fe44e/info.json b/tokens/FCH-6fe44e/info.json new file mode 100644 index 0000000000..f1a4ee14da --- /dev/null +++ b/tokens/FCH-6fe44e/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "whitepaper": "https://www.fruitcash.ro/whitepaper" + }, + "website": "https://www.fruitcash.ro", + "description": "Viziunea noastră este să devenim un model de succes la intersecția dintre agricultură ecologică și tehnologia blockchain, demonstrând că investițiile durabile și sustenabile pot genera atât profituri semnificative, cât și un impact pozitiv asupra planetei. Ne dorim ca FruitCash să fie recunoscut drept un lider global în agricultură ecologică tokenizată, construind o comunitate puternică de investitori care să participe activ la tranziția către o economie verde și digitală.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/FCH-6fe44e/logo.png b/tokens/FCH-6fe44e/logo.png new file mode 100644 index 0000000000..c449f5be84 Binary files /dev/null and b/tokens/FCH-6fe44e/logo.png differ diff --git a/tokens/FCH-6fe44e/logo.svg b/tokens/FCH-6fe44e/logo.svg new file mode 100644 index 0000000000..32b0a1b4d8 --- /dev/null +++ b/tokens/FCH-6fe44e/logo.svg @@ -0,0 +1,46 @@ + + + + + + + + diff --git a/tokens/FICTICIUS-4397d5/info.json b/tokens/FICTICIUS-4397d5/info.json new file mode 100644 index 0000000000..79c4638aa8 --- /dev/null +++ b/tokens/FICTICIUS-4397d5/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "Brasil, Madrid, and now Multiversx\nWhen I score, pockets of my fans get heavy \ud83d\udcb0", + "social": { + "telegram": "https://t.me/+bZdmPFJyliBlNGRk", + "twitter": "https://x.com/suar44033?t=GynXAKjlMe8HW5QixKR4xA&s=08" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/FICTICIUS-4397d5", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/FICTICIUS-4397d5/logo.png b/tokens/FICTICIUS-4397d5/logo.png new file mode 100644 index 0000000000..9d4e773cd4 Binary files /dev/null and b/tokens/FICTICIUS-4397d5/logo.png differ diff --git a/tokens/FICTICIUS-4397d5/logo.svg b/tokens/FICTICIUS-4397d5/logo.svg new file mode 100644 index 0000000000..1eabb5b8da --- /dev/null +++ b/tokens/FICTICIUS-4397d5/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/FNT-dca545/info.json b/tokens/FNT-dca545/info.json new file mode 100644 index 0000000000..a1140d43b5 --- /dev/null +++ b/tokens/FNT-dca545/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://en.wikipedia.org/wiki/The_Flintstones", + "description": "Yabba-Dabba Doo!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/FNT-dca545/logo.png b/tokens/FNT-dca545/logo.png new file mode 100644 index 0000000000..7ed3526866 Binary files /dev/null and b/tokens/FNT-dca545/logo.png differ diff --git a/tokens/FNT-dca545/logo.svg b/tokens/FNT-dca545/logo.svg new file mode 100644 index 0000000000..bbe84108ec --- /dev/null +++ b/tokens/FNT-dca545/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/FOXSY-5d5f3e/info.json b/tokens/FOXSY-5d5f3e/info.json index 9df1adea52..c14308b1c9 100644 --- a/tokens/FOXSY-5d5f3e/info.json +++ b/tokens/FOXSY-5d5f3e/info.json @@ -10,7 +10,7 @@ }, "lockedAccounts":{ "erd1m767j3xs0e53kxr797rwl4pchydatcyqu3v09tl8202samrz6cys8rezef":"Token", - "erd1mnk7prp0u9y4j8y7yn7cdy7efknsmncq2f5nxce7s6awzk2kk65s9vcalp":"Project", + "erd1qqqqqqqqqqqqqpgq3q24epjrv4t9sxsn0ekw9lpshksptvhkhj7slzfmcp":"Burned", "erd1qqqqqqqqqqqqqpgqm4kf7968pxm0r9v33wzf4aqtzlk6ypnr6qlsx44wxa":"Vesting", "erd1qqqqqqqqqqqqqpgqqngprvhxzj9e6zlgeut2kjz4tme4fntvka8q7hpkty":"Pre-Launch" } diff --git a/tokens/FRED-c568c2/info.json b/tokens/FRED-c568c2/info.json new file mode 100644 index 0000000000..33cac29345 --- /dev/null +++ b/tokens/FRED-c568c2/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "Why does Peanut get all the attention? The real victim here is Fred. ", + "status": "active", + "social": { + "telegram": "https://t.me/fredjustice" + } +} diff --git a/tokens/FRED-c568c2/logo.png b/tokens/FRED-c568c2/logo.png new file mode 100644 index 0000000000..af3cb1df09 Binary files /dev/null and b/tokens/FRED-c568c2/logo.png differ diff --git a/tokens/FRED-c568c2/logo.svg b/tokens/FRED-c568c2/logo.svg new file mode 100644 index 0000000000..27a25a861f --- /dev/null +++ b/tokens/FRED-c568c2/logo.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/FRID-1d2e39/info.json b/tokens/FRID-1d2e39/info.json new file mode 100644 index 0000000000..34638276bf --- /dev/null +++ b/tokens/FRID-1d2e39/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://jojoprotocol.com/", + "description": "FRIDA - The Cosmic Squirrel \nby JOJO Protocol", + "status": "active", + "social": { + "twitter": "https://x.com/JoJoRacoon" + } +} \ No newline at end of file diff --git a/tokens/FRID-1d2e39/logo.png b/tokens/FRID-1d2e39/logo.png new file mode 100644 index 0000000000..2ee5030b58 Binary files /dev/null and b/tokens/FRID-1d2e39/logo.png differ diff --git a/tokens/FRID-1d2e39/logo.svg b/tokens/FRID-1d2e39/logo.svg new file mode 100644 index 0000000000..480e9b175b --- /dev/null +++ b/tokens/FRID-1d2e39/logo.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/tokens/FROSTI-31faaa/info.json b/tokens/FROSTI-31faaa/info.json new file mode 100644 index 0000000000..77396887f0 --- /dev/null +++ b/tokens/FROSTI-31faaa/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "$FROSTI-A penguin trying to stay cool\ud83d\ude0e\ud83d\udc27", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/FROSTI-31faaa", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/FROSTI-31faaa/logo.png b/tokens/FROSTI-31faaa/logo.png new file mode 100644 index 0000000000..3c6f887647 Binary files /dev/null and b/tokens/FROSTI-31faaa/logo.png differ diff --git a/tokens/FROSTI-31faaa/logo.svg b/tokens/FROSTI-31faaa/logo.svg new file mode 100644 index 0000000000..43b7abd92e --- /dev/null +++ b/tokens/FROSTI-31faaa/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/FUNDEX-75ea2f/info.json b/tokens/FUNDEX-75ea2f/info.json new file mode 100644 index 0000000000..60ccda9d73 --- /dev/null +++ b/tokens/FUNDEX-75ea2f/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "Unleash your creativity and make epic memes", + "social": { + "telegram": "", + "twitter": "https://x.com/dex_funx" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/FUNDEX-75ea2f/logo.png b/tokens/FUNDEX-75ea2f/logo.png new file mode 100644 index 0000000000..d735f4f204 Binary files /dev/null and b/tokens/FUNDEX-75ea2f/logo.png differ diff --git a/tokens/FUNDEX-75ea2f/logo.svg b/tokens/FUNDEX-75ea2f/logo.svg new file mode 100644 index 0000000000..613a786175 --- /dev/null +++ b/tokens/FUNDEX-75ea2f/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/GCC-3194ab/info.json b/tokens/GCC-3194ab/info.json index c7d5600ad1..bf891937db 100644 --- a/tokens/GCC-3194ab/info.json +++ b/tokens/GCC-3194ab/info.json @@ -2,7 +2,14 @@ "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=GCC-3194ab&state=Lite&type=simple", "description": "Gentleman's Crypto Token. Established MMXXI", "social": { - "twitter": "https://x.com/platanetwork" + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://x.com/platalegacy" + }, + "lockedAccounts": { + "erd1qqqqqqqqqqqqqpgq5774jcntdqkzv62tlvvhfn2y7eevpty6mvlszk3dla": "Farms", + "erd1qqqqqqqqqqqqqpgqs266zfksqqdds05af2qswk3u4lsex2ma6jtsk8uaz4": "Staking", + "erd1ryuzf08m4senh22y3rz7yl3shmeser4m5rplafg0l5ldmptd455qlll7vq": "Burn Wallet", + "erd1qqqqqqqqqqqqqpgq5re66vt0dlee8v83dtyh6k54qqpjs3ketxfq9tcd29": "Farms" }, "status": "active" } diff --git a/tokens/GCC-6b08ed/info.json b/tokens/GCC-6b08ed/info.json index f6258fcddc..cf7e21f203 100644 --- a/tokens/GCC-6b08ed/info.json +++ b/tokens/GCC-6b08ed/info.json @@ -1,8 +1,9 @@ { - "website": "", - "description": "GCC | Elrond | MMXXI", + "website": "https://linktr.ee/plataLinks", + "description": "NFT collection in collaboration with Plata Network made out of 300 unique Droid avatars. P2E/Stake Veteran.", "social": { - "twitter": "https://twitter.com/GCCMMXXI" + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://www.twitter.com/plataNetwork" }, "status": "active" -} \ No newline at end of file +} diff --git a/tokens/GCCMEX-72c8d1/info.json b/tokens/GCCMEX-72c8d1/info.json new file mode 100644 index 0000000000..2ef8568f2e --- /dev/null +++ b/tokens/GCCMEX-72c8d1/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://xexchange.com/pools/erd1qqqqqqqqqqqqqpgqg0y39k0sta836f6aj4yp8yrhyc0kvxn62jpsjp9477?firstToken=MEX-455c57&secondToken=GCC-3194ab", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the GCC/MEX pool on the xExchange.", + "status": "active" +} diff --git a/tokens/GCCMEX-72c8d1/logo.png b/tokens/GCCMEX-72c8d1/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/GCCMEX-72c8d1/logo.png differ diff --git a/tokens/GCCMEX-72c8d1/logo.svg b/tokens/GCCMEX-72c8d1/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/GCCMEX-72c8d1/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/GCCMMXXI-ccc198/info.json b/tokens/GCCMMXXI-ccc198/info.json index 024352db34..8e62c39c02 100644 --- a/tokens/GCCMMXXI-ccc198/info.json +++ b/tokens/GCCMMXXI-ccc198/info.json @@ -1,8 +1,8 @@ { "social": { - "twitter": "https://twitter.com/gccmmxxi" + "twitter": "https://x.com/plataNetwork" }, - "website": "https://linktr.ee/gccmmxxi", - "description": "Company Business Assets", + "website": "https://linktr.ee/plataLinks", + "description": "The Council", "status": "active" -} \ No newline at end of file +} diff --git a/tokens/GCCPLATA-591f5c/info.json b/tokens/GCCPLATA-591f5c/info.json index 61fc0567b2..d00812b590 100644 --- a/tokens/GCCPLATA-591f5c/info.json +++ b/tokens/GCCPLATA-591f5c/info.json @@ -1,5 +1,5 @@ { - "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=GCC-3194ab&state=Lite&type=simple", - "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/GCC pool on OneDex.", + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the GCC/PLATA pool on OneDex.", "status": "active" } diff --git a/tokens/GCCPLATA-591f5c/logo.png b/tokens/GCCPLATA-591f5c/logo.png index 05e66746b2..766cb4550a 100644 Binary files a/tokens/GCCPLATA-591f5c/logo.png and b/tokens/GCCPLATA-591f5c/logo.png differ diff --git a/tokens/GCCPLATA-591f5c/logo.svg b/tokens/GCCPLATA-591f5c/logo.svg index 05e8483c91..b31631a544 100644 --- a/tokens/GCCPLATA-591f5c/logo.svg +++ b/tokens/GCCPLATA-591f5c/logo.svg @@ -1,102 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + \ No newline at end of file diff --git a/tokens/GCCUSDC-bff8c7/info.json b/tokens/GCCUSDC-bff8c7/info.json index bad74077b8..b5b0dabb22 100644 --- a/tokens/GCCUSDC-bff8c7/info.json +++ b/tokens/GCCUSDC-bff8c7/info.json @@ -1,5 +1,5 @@ { - "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=GCC-3194ab", + "website": "https://swap.onedex.app/pool", "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the GCC/USDC pool on OneDex.", "status": "active" } diff --git a/tokens/GCCUSDC-bff8c7/logo.png b/tokens/GCCUSDC-bff8c7/logo.png index 31f6d5fe09..766cb4550a 100644 Binary files a/tokens/GCCUSDC-bff8c7/logo.png and b/tokens/GCCUSDC-bff8c7/logo.png differ diff --git a/tokens/GCCUSDC-bff8c7/logo.svg b/tokens/GCCUSDC-bff8c7/logo.svg index 9902a44f5a..b31631a544 100644 --- a/tokens/GCCUSDC-bff8c7/logo.svg +++ b/tokens/GCCUSDC-bff8c7/logo.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/tokens/GGLD-f8465b/info.json b/tokens/GGLD-f8465b/info.json index 0a4a4a5db8..0d07012233 100644 --- a/tokens/GGLD-f8465b/info.json +++ b/tokens/GGLD-f8465b/info.json @@ -3,7 +3,7 @@ "description": "The GildedSyndicate Investment DAO $GGLD\nThe future of validator businesses #MultiversX $EGLD\nhttps://gildedsyndicate.com 🤑💵💸💰", "status": "active", "social": { - "blog": "https://xmag.store/blog", + "blog": "https://gildedsyndicate.com/", "twitter": "https://twitter.com/GildedSyndicate" } } \ No newline at end of file diff --git a/tokens/GIGABEN-b28196/info.json b/tokens/GIGABEN-b28196/info.json new file mode 100644 index 0000000000..a52c624581 --- /dev/null +++ b/tokens/GIGABEN-b28196/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/GigaBen_onMvX" + }, + "website": "https://gigaben.xyz/", + "description": "A meme token born from the spirit of resilience and growth. $GIGABEN is more than just a token—it's a movement. Bold. Unstoppable. Join the revolution.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/GIGABEN-b28196/logo.png b/tokens/GIGABEN-b28196/logo.png new file mode 100644 index 0000000000..cc5ab7f7db Binary files /dev/null and b/tokens/GIGABEN-b28196/logo.png differ diff --git a/tokens/GIGABEN-b28196/logo.svg b/tokens/GIGABEN-b28196/logo.svg new file mode 100644 index 0000000000..a9bd4ecfd5 --- /dev/null +++ b/tokens/GIGABEN-b28196/logo.svg @@ -0,0 +1,52 @@ + + + +image/svg+xml diff --git a/tokens/GLONK-9961fb/info.json b/tokens/GLONK-9961fb/info.json new file mode 100644 index 0000000000..142598260e --- /dev/null +++ b/tokens/GLONK-9961fb/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/Glonkdonothing" + }, + "website": "http://www.glonk.io/", + "description": "Just me", + "status": "active" +} \ No newline at end of file diff --git a/tokens/GLONK-9961fb/logo.png b/tokens/GLONK-9961fb/logo.png new file mode 100644 index 0000000000..92b648aad7 Binary files /dev/null and b/tokens/GLONK-9961fb/logo.png differ diff --git a/tokens/GLONK-9961fb/logo.svg b/tokens/GLONK-9961fb/logo.svg new file mode 100644 index 0000000000..957cd97ecc --- /dev/null +++ b/tokens/GLONK-9961fb/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/GOPE-f2ccd4/info.json b/tokens/GOPE-f2ccd4/info.json new file mode 100644 index 0000000000..9a22f3a0ce --- /dev/null +++ b/tokens/GOPE-f2ccd4/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://grinchonpepe.fun", + "description": "Grinch On Pepe: When legends collide, Christmas magic ignites! ❄️✨ $GOPE: A mischievous memecoin masterpiece born from Grinchy mischief and Pepe vibes, lighting up the season with twice the fun and double the gains. 🐸 + 🎄 =🚀", + "status": "active", + "social": { + "telegram": "https://t.me/grinchonpepe" + } +} diff --git a/tokens/GOPE-f2ccd4/logo.png b/tokens/GOPE-f2ccd4/logo.png new file mode 100644 index 0000000000..bc8b09999e Binary files /dev/null and b/tokens/GOPE-f2ccd4/logo.png differ diff --git a/tokens/GOPE-f2ccd4/logo.svg b/tokens/GOPE-f2ccd4/logo.svg new file mode 100644 index 0000000000..3e04fb40d0 --- /dev/null +++ b/tokens/GOPE-f2ccd4/logo.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/GREENONE-b5de05/info.json b/tokens/GREENONE-b5de05/info.json new file mode 100644 index 0000000000..297d9e49f5 --- /dev/null +++ b/tokens/GREENONE-b5de05/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the GREEN/ONE pool on OneDex.", + "status": "active" +} diff --git a/tokens/GREENONE-b5de05/logo.png b/tokens/GREENONE-b5de05/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/GREENONE-b5de05/logo.png differ diff --git a/tokens/GREENONE-b5de05/logo.svg b/tokens/GREENONE-b5de05/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/GREENONE-b5de05/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/GREENPLATA-c446b6/info.json b/tokens/GREENPLATA-c446b6/info.json index 1e95422d27..5ff1d7abcd 100644 --- a/tokens/GREENPLATA-c446b6/info.json +++ b/tokens/GREENPLATA-c446b6/info.json @@ -1,5 +1,5 @@ { - "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=GREEN-1c62ca", - "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/GREEN pool on OneDex.", + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the GREEN/PLATA pool on OneDex.", "status": "active" } diff --git a/tokens/GREENPLATA-c446b6/logo.png b/tokens/GREENPLATA-c446b6/logo.png index d004d73c06..766cb4550a 100644 Binary files a/tokens/GREENPLATA-c446b6/logo.png and b/tokens/GREENPLATA-c446b6/logo.png differ diff --git a/tokens/GREENPLATA-c446b6/logo.svg b/tokens/GREENPLATA-c446b6/logo.svg index 7653d0cbc2..b31631a544 100644 --- a/tokens/GREENPLATA-c446b6/logo.svg +++ b/tokens/GREENPLATA-c446b6/logo.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/tokens/GREENWEGLD-18aa02/info.json b/tokens/GREENWEGLD-18aa02/info.json new file mode 100644 index 0000000000..fe390b92a7 --- /dev/null +++ b/tokens/GREENWEGLD-18aa02/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the GREEN/WEGLD pool on OneDex.", + "status": "active" +} diff --git a/tokens/GREENWEGLD-18aa02/logo.png b/tokens/GREENWEGLD-18aa02/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/GREENWEGLD-18aa02/logo.png differ diff --git a/tokens/GREENWEGLD-18aa02/logo.svg b/tokens/GREENWEGLD-18aa02/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/GREENWEGLD-18aa02/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/GREG-b51e9c/info.json b/tokens/GREG-b51e9c/info.json new file mode 100644 index 0000000000..e5f20d3eb4 --- /dev/null +++ b/tokens/GREG-b51e9c/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/GREG-b51e9c", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/GREG-b51e9c/logo.png b/tokens/GREG-b51e9c/logo.png new file mode 100644 index 0000000000..0a3aae2ac5 Binary files /dev/null and b/tokens/GREG-b51e9c/logo.png differ diff --git a/tokens/GREG-b51e9c/logo.svg b/tokens/GREG-b51e9c/logo.svg new file mode 100644 index 0000000000..86988533b3 --- /dev/null +++ b/tokens/GREG-b51e9c/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/GRINCH-38adb5/info.json b/tokens/GRINCH-38adb5/info.json new file mode 100644 index 0000000000..2f1f15e349 --- /dev/null +++ b/tokens/GRINCH-38adb5/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "**Introducing $GRINCH: The Meme Coin That’ll Steal Your Heart (and Maybe Your Wallet)** \n\nTired of boring coins that don’t even *try* to ruin Christmas? Enter $GRINCH, the greenest, grinchiest, and most gloriously grouchy token on the blockchain. Inspired by everyone's favorite holiday heist artist, $GRINCH is here to bring some sarcasm and sass to the meme coin market. \n\nThis isn't just another \"to the moon\" coin—$GRINCH is \"to Mount Crumpit and beyond!\" We’re not promising you a Lambo, but hey, maybe a sleigh pulled by an underfed dog. Our roadmap? It’s just a list of things we *might* do… if we’re feeling festive. \n\nSo, what’s in it for you? A chance to hoard tokens like the Grinch hoarded Christmas cheer. And when your heart grows three sizes from all the laughs (or maybe the gains), just remember—this is the coin that stole Christmas, and then gave it back… for a 2% transaction fee. \n\n**$GRINCH: Because who needs Whoville when you’ve got a wallet full of memes?**", + "status": "active", + "social": { + "telegram": "https://wallet.multiversx.com/" + } +} diff --git a/tokens/GRINCH-38adb5/logo.png b/tokens/GRINCH-38adb5/logo.png new file mode 100644 index 0000000000..b5d82ca956 Binary files /dev/null and b/tokens/GRINCH-38adb5/logo.png differ diff --git a/tokens/GRINCH-38adb5/logo.svg b/tokens/GRINCH-38adb5/logo.svg new file mode 100644 index 0000000000..f5423fb7c6 --- /dev/null +++ b/tokens/GRINCH-38adb5/logo.svg @@ -0,0 +1,3616 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/GROK-f2a62f/info.json b/tokens/GROK-f2a62f/info.json new file mode 100644 index 0000000000..8a6486df49 --- /dev/null +++ b/tokens/GROK-f2a62f/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://grokmeme.club/", + "description": "I WANA GROKUPY MULTIVERSX", + "status": "active", + "social": { + "twitter": "https://x.com/GrokMVX" + } +} \ No newline at end of file diff --git a/tokens/GROK-f2a62f/logo.png b/tokens/GROK-f2a62f/logo.png new file mode 100644 index 0000000000..5e70ffdb81 Binary files /dev/null and b/tokens/GROK-f2a62f/logo.png differ diff --git a/tokens/GROK-f2a62f/logo.svg b/tokens/GROK-f2a62f/logo.svg new file mode 100644 index 0000000000..6ab8c49674 --- /dev/null +++ b/tokens/GROK-f2a62f/logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/tokens/GRTD-f56319/info.json b/tokens/GRTD-f56319/info.json new file mode 100644 index 0000000000..6eadac320b --- /dev/null +++ b/tokens/GRTD-f56319/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/MrsClausGRTD" + }, + "website": "https://x.com/MrsClausGRTD", + "description": "Gertrude Claus, first and the only one #GRTD", + "status": "active" +} \ No newline at end of file diff --git a/tokens/GRTD-f56319/logo.png b/tokens/GRTD-f56319/logo.png new file mode 100644 index 0000000000..d54de958cd Binary files /dev/null and b/tokens/GRTD-f56319/logo.png differ diff --git a/tokens/GRTD-f56319/logo.svg b/tokens/GRTD-f56319/logo.svg new file mode 100644 index 0000000000..f622d528d7 --- /dev/null +++ b/tokens/GRTD-f56319/logo.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/GSS-76d0ae/info.json b/tokens/GSS-76d0ae/info.json index aebe5a7363..f928acd18b 100644 --- a/tokens/GSS-76d0ae/info.json +++ b/tokens/GSS-76d0ae/info.json @@ -1,10 +1,10 @@ { + "website": "https://gildedsyndicate.com/", + "description": "Support the GildedSyndicate and get your part of the profits", + "status": "active", "social": { - "blog": "https://xmag.store/blog/", + "blog": "https://gildedsyndicate.com/", "twitter": "https://twitter.com/GildedSyndicate", "whitepaper": "https://gildedsyndicate.com/" - }, - "website": "https://gildedsyndicate.com/", - "description": "Support the GildedSyndicate and get your part of the profits", - "status": "active" + } } \ No newline at end of file diff --git a/tokens/GSV-fee3d2/info.json b/tokens/GSV-fee3d2/info.json new file mode 100644 index 0000000000..11848ad4a8 --- /dev/null +++ b/tokens/GSV-fee3d2/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://gildedsyndicate.com/", + "twitter": "https://twitter.com/GildedSyndicate" + }, + "website": "https://gildedsyndicate.com", + "description": "The GildedSyndicate Investment DAO $GGLD The future of validator businesses #MultiversX $EGLD https://gildedsyndicate.com 🤑💵💸💰", + "status": "active" +} \ No newline at end of file diff --git a/tokens/GSV-fee3d2/logo.png b/tokens/GSV-fee3d2/logo.png new file mode 100644 index 0000000000..968fe14494 Binary files /dev/null and b/tokens/GSV-fee3d2/logo.png differ diff --git a/tokens/GSV-fee3d2/logo.svg b/tokens/GSV-fee3d2/logo.svg new file mode 100644 index 0000000000..988f4c4596 --- /dev/null +++ b/tokens/GSV-fee3d2/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/HATZ-af9d79/info.json b/tokens/HATZ-af9d79/info.json new file mode 100644 index 0000000000..688de50ecc --- /dev/null +++ b/tokens/HATZ-af9d79/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "whitepaper": "https://www.instagram.com/eusuntdorian/" + }, + "website": "https://www.dorianpopa.ro/", + "description": "Hatz, Johnutzule!! \nAcesta este un memecoin dedicat celor care sunt fani al celui numit si indragit, Dorian Hatz Popa.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/HATZ-af9d79/logo.png b/tokens/HATZ-af9d79/logo.png new file mode 100644 index 0000000000..e81bab5ecb Binary files /dev/null and b/tokens/HATZ-af9d79/logo.png differ diff --git a/tokens/HATZ-af9d79/logo.svg b/tokens/HATZ-af9d79/logo.svg new file mode 100644 index 0000000000..62a2bcca1c --- /dev/null +++ b/tokens/HATZ-af9d79/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/HAWKTUAH-253ca9/info.json b/tokens/HAWKTUAH-253ca9/info.json new file mode 100644 index 0000000000..cf71ba4bc2 --- /dev/null +++ b/tokens/HAWKTUAH-253ca9/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "We have no affiliation with Haliey Welch, we are fans who love the meme. #Hawktuah", + "social": { + "telegram": "", + "twitter": "https://x.com/hawktuah_mvx/status/1864990823491805344?s=46" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/HAWKTUAH-253ca9", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/HAWKTUAH-253ca9/logo.png b/tokens/HAWKTUAH-253ca9/logo.png new file mode 100644 index 0000000000..2a7fc8573d Binary files /dev/null and b/tokens/HAWKTUAH-253ca9/logo.png differ diff --git a/tokens/HAWKTUAH-253ca9/logo.svg b/tokens/HAWKTUAH-253ca9/logo.svg new file mode 100644 index 0000000000..b5bac778ba --- /dev/null +++ b/tokens/HAWKTUAH-253ca9/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/HCC-e81807/info.json b/tokens/HCC-e81807/info.json new file mode 100644 index 0000000000..dc66aaec1a --- /dev/null +++ b/tokens/HCC-e81807/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://explorer.multiversx.com/tokens/HCC-e81807", + "description": "HodlCatCoin combines the adorable charm of cats with the crypto community's favorite mantra: \"HODL.\" This playful token captures the spirit of perseverance in investing, featuring a quirky cat character that encourages holders to keep their investments safe while enjoying the fun side of crypto.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/HCC-e81807/logo.png b/tokens/HCC-e81807/logo.png new file mode 100644 index 0000000000..4747761008 Binary files /dev/null and b/tokens/HCC-e81807/logo.png differ diff --git a/tokens/HCC-e81807/logo.svg b/tokens/HCC-e81807/logo.svg new file mode 100644 index 0000000000..5611424c04 --- /dev/null +++ b/tokens/HCC-e81807/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/tokens/HELMET-a8060c/info.json b/tokens/HELMET-a8060c/info.json new file mode 100644 index 0000000000..cec9149b0b --- /dev/null +++ b/tokens/HELMET-a8060c/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://build21.io", + "description": "Building real estate using blockchain principles and infrastructure.", + "social": { + "blog": "https://build21.io/en/news", + "twitter": "https://x.com/Build21io", + "whitepaper": "https://whitepaper.build21.io/", + "telegram": "https://t.me/Build21_En" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/HELMET-a8060c/logo.png b/tokens/HELMET-a8060c/logo.png new file mode 100644 index 0000000000..f16f899024 Binary files /dev/null and b/tokens/HELMET-a8060c/logo.png differ diff --git a/tokens/HELMET-a8060c/logo.svg b/tokens/HELMET-a8060c/logo.svg new file mode 100644 index 0000000000..a7be0c0e6e --- /dev/null +++ b/tokens/HELMET-a8060c/logo.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/HELMETEA-68262f/info.json b/tokens/HELMETEA-68262f/info.json new file mode 100644 index 0000000000..caac0dcbb1 --- /dev/null +++ b/tokens/HELMETEA-68262f/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://build21.io/en/news", + "twitter": "https://x.com/Build21io" + }, + "website": "https://build21.io/", + "description": "Building real estate using blockchain principles and infrastructure.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/HELMETEA-68262f/logo.png b/tokens/HELMETEA-68262f/logo.png new file mode 100644 index 0000000000..f16f899024 Binary files /dev/null and b/tokens/HELMETEA-68262f/logo.png differ diff --git a/tokens/HELMETEA-68262f/logo.svg b/tokens/HELMETEA-68262f/logo.svg new file mode 100644 index 0000000000..a7be0c0e6e --- /dev/null +++ b/tokens/HELMETEA-68262f/logo.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/HGRS-9b10ba/info.json b/tokens/HGRS-9b10ba/info.json new file mode 100644 index 0000000000..5b2e830abb --- /dev/null +++ b/tokens/HGRS-9b10ba/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://www.frigolin.com/", + "description": "Just touch some grass!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/HGRS-9b10ba/logo.png b/tokens/HGRS-9b10ba/logo.png new file mode 100644 index 0000000000..d2e3edaef2 Binary files /dev/null and b/tokens/HGRS-9b10ba/logo.png differ diff --git a/tokens/HGRS-9b10ba/logo.svg b/tokens/HGRS-9b10ba/logo.svg new file mode 100644 index 0000000000..e67581c4bf --- /dev/null +++ b/tokens/HGRS-9b10ba/logo.svg @@ -0,0 +1,785 @@ + + + + diff --git a/tokens/HMEX-df6df7/info.json b/tokens/HMEX-df6df7/info.json new file mode 100644 index 0000000000..ec45e9e996 --- /dev/null +++ b/tokens/HMEX-df6df7/info.json @@ -0,0 +1,12 @@ +{ + "website": "https://hatom.com/", + "description": "HMEX is an interest bearing token representing a MEX 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/tokens/HMEX-df6df7/logo.png b/tokens/HMEX-df6df7/logo.png new file mode 100644 index 0000000000..1f33ff7156 Binary files /dev/null and b/tokens/HMEX-df6df7/logo.png differ diff --git a/tokens/HMEX-df6df7/logo.svg b/tokens/HMEX-df6df7/logo.svg new file mode 100644 index 0000000000..06c4918e77 --- /dev/null +++ b/tokens/HMEX-df6df7/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/HONKOWEEN-547011/info.json b/tokens/HONKOWEEN-547011/info.json new file mode 100644 index 0000000000..28dfe06a35 --- /dev/null +++ b/tokens/HONKOWEEN-547011/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "twitter": "https://x.com/Goosevilleinc", + "whitepaper": "https://t.me/gooseville" + }, + "website": "https://x.com/Goosevilleinc", + "description": "Introducing a special token for the Gooseville community, created to celebrate Halloween and foster engagement and fun!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/HONKOWEEN-547011/logo.png b/tokens/HONKOWEEN-547011/logo.png new file mode 100644 index 0000000000..41548f2923 Binary files /dev/null and b/tokens/HONKOWEEN-547011/logo.png differ diff --git a/tokens/HONKOWEEN-547011/logo.svg b/tokens/HONKOWEEN-547011/logo.svg new file mode 100644 index 0000000000..9a58d73c26 --- /dev/null +++ b/tokens/HONKOWEEN-547011/logo.svg @@ -0,0 +1,651 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/HUGS-af085a/info.json b/tokens/HUGS-af085a/info.json new file mode 100644 index 0000000000..f5e01d8e4d --- /dev/null +++ b/tokens/HUGS-af085a/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://hugggs.xyz/", + "description": "FUD is temporary. HUGS are forever.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/HUGS-af085a/logo.png b/tokens/HUGS-af085a/logo.png new file mode 100644 index 0000000000..45e82053bb Binary files /dev/null and b/tokens/HUGS-af085a/logo.png differ diff --git a/tokens/HUGS-af085a/logo.svg b/tokens/HUGS-af085a/logo.svg new file mode 100644 index 0000000000..abbe254fc6 --- /dev/null +++ b/tokens/HUGS-af085a/logo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/tokens/HYPEDAF-9378b5/info.json b/tokens/HYPEDAF-9378b5/info.json new file mode 100644 index 0000000000..be5f89fe64 --- /dev/null +++ b/tokens/HYPEDAF-9378b5/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://medium.com/@superrarebears", + "twitter": "https://twitter.com/hype_lfg" + }, + "website": "https://superrarebears.com/", + "description": "HYPED AF. Once your HYPEYs enter the Portal only Hyperdimensional mayhem awaits.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/HYPEDAF-9378b5/logo.png b/tokens/HYPEDAF-9378b5/logo.png new file mode 100644 index 0000000000..57a9f868b5 Binary files /dev/null and b/tokens/HYPEDAF-9378b5/logo.png differ diff --git a/tokens/HYPEDAF-9378b5/logo.svg b/tokens/HYPEDAF-9378b5/logo.svg new file mode 100644 index 0000000000..0b19223f77 --- /dev/null +++ b/tokens/HYPEDAF-9378b5/logo.svg @@ -0,0 +1,9 @@ + + logo + + + + + + diff --git a/tokens/INK-6ec842/info.json b/tokens/INK-6ec842/info.json new file mode 100644 index 0000000000..0e155519e5 --- /dev/null +++ b/tokens/INK-6ec842/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/xKingNFTx" + }, + "website": "https://www.xkingnftx.com/", + "description": "$INK is the community token of xKingNFTx", + "status": "active" +} \ No newline at end of file diff --git a/tokens/INK-6ec842/logo.png b/tokens/INK-6ec842/logo.png new file mode 100644 index 0000000000..769ac16564 Binary files /dev/null and b/tokens/INK-6ec842/logo.png differ diff --git a/tokens/INK-6ec842/logo.svg b/tokens/INK-6ec842/logo.svg new file mode 100644 index 0000000000..7076b36164 --- /dev/null +++ b/tokens/INK-6ec842/logo.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/INS-c77fbf/info.json b/tokens/INS-c77fbf/info.json new file mode 100644 index 0000000000..f3b0bcf2a4 --- /dev/null +++ b/tokens/INS-c77fbf/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://burnify.app", + "description": "Join an Amazing Journey. INSiDERS Have Fun. Not Whitepapers. They BURNiT!", + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/INS-c77fbf", + "path": "0.usdPrice" + } +} diff --git a/tokens/INS-c77fbf/logo.png b/tokens/INS-c77fbf/logo.png new file mode 100644 index 0000000000..58adfccb9d Binary files /dev/null and b/tokens/INS-c77fbf/logo.png differ diff --git a/tokens/INS-c77fbf/logo.svg b/tokens/INS-c77fbf/logo.svg new file mode 100644 index 0000000000..24eba803f3 --- /dev/null +++ b/tokens/INS-c77fbf/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/INSPIRE-5c99f6/info.json b/tokens/INSPIRE-5c99f6/info.json new file mode 100644 index 0000000000..b675c2518e --- /dev/null +++ b/tokens/INSPIRE-5c99f6/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "twitter": "https://x.com/Inspir3NFT", + "whitepaper": "https://whitepaper.inspir3.io/" + }, + "website": "https://www.inspir3.io", + "description": "Multi-brand lifestyle, loyalty, and rewards.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/INSPIRE-5c99f6/logo.png b/tokens/INSPIRE-5c99f6/logo.png new file mode 100644 index 0000000000..d171ba0df6 Binary files /dev/null and b/tokens/INSPIRE-5c99f6/logo.png differ diff --git a/tokens/INSPIRE-5c99f6/logo.svg b/tokens/INSPIRE-5c99f6/logo.svg new file mode 100644 index 0000000000..c1d209f5b3 --- /dev/null +++ b/tokens/INSPIRE-5c99f6/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/tokens/JEET-dda037/info.json b/tokens/JEET-dda037/info.json index 5bdaa3310d..cd07c8caca 100644 --- a/tokens/JEET-dda037/info.json +++ b/tokens/JEET-dda037/info.json @@ -1,8 +1,9 @@ { - "website": "https://www.dapfy.com/en", - "description": "Don't be a fucking JEET.", + "website": "https://jeetdex.com", + "description": "Simple, fast, secure – and inexpensive order book AMM. Launch a coin in just a few clicks: Get instant branding, real-time charts and chats.", "status": "active", "social": { - "telegram": "https://t.me/dapfydotcom" + "telegram": "https://t.me/jeetdex", + "twitter": "https://x.com/jeetdexcom" } } diff --git a/tokens/JORKIN-7d6f75/info.json b/tokens/JORKIN-7d6f75/info.json new file mode 100644 index 0000000000..b844ea9ed3 --- /dev/null +++ b/tokens/JORKIN-7d6f75/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "just a smol monke who just can't stop $jorkin the charts", + "social": { + "telegram": "https://t.me/jorkinmvx", + "twitter": "https://x.com/jorkinonmvx?t=2WlTbMD7cf5vsWHMP5JTnQ&s=09" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/JORKIN-7d6f75", + "path": "0.usdPrice" + } +} diff --git a/tokens/JORKIN-7d6f75/logo.png b/tokens/JORKIN-7d6f75/logo.png new file mode 100644 index 0000000000..450b557c28 Binary files /dev/null and b/tokens/JORKIN-7d6f75/logo.png differ diff --git a/tokens/JORKIN-7d6f75/logo.svg b/tokens/JORKIN-7d6f75/logo.svg new file mode 100644 index 0000000000..8c0303e1ff --- /dev/null +++ b/tokens/JORKIN-7d6f75/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/JOY-43bad3/info.json b/tokens/JOY-43bad3/info.json index e2cb103e0c..d76373ec2f 100644 --- a/tokens/JOY-43bad3/info.json +++ b/tokens/JOY-43bad3/info.json @@ -1,23 +1,21 @@ { "website": "https://www.elrond-angels.com", - "description": "The JOY token is the utility token of Angels NFTs and The Angels Community. A Charity and Community focused NFT Project.", + "description": "The JOY token is the utility token of Angels NFTs and The Angels Community.", "social": { "email": "joy@elrond-angels.com", - "twitter": "https://twitter.com/ElrondAngelsNFT", + "twitter": "https://x.com/Angels_NFTs", "telegram": "https://t.me/elrondangels", - "discord": "https://discord.com/invite/WcMXwDVw2F", - "facebook": "https://www.facebook.com/ElrondAngels", "instagram": "https://www.instagram.com/elrondangels", "github": "https://github.com/elrondangels" }, "lockedAccounts": { "erd1ev05hd5jwzvlc7t9ul874jpde42ht00udz6yr63wtt47apl640nshcaxjp": "NFTs Mint", "erd17quvgdj63lde5ujjvqj3y6tz446y9c3x0gtc0wpjrx290u0nc6dqwzzcya": "Charity", - "erd1vlz902r46z0s0zaxuxmeqm8x3hzuakdezwh2mq8r9ewlpqll6xnsw7rlwf": "Community", - "erd1sdfn89ddr8kt3spfk94pvkav60phjn82xrwx4q3tp4mecqk3yujs67wrlf": "Treasury", - "erd1yvjgq36zrc66lpag3jr63y4sdtp3e79950kqsy98tsk5rrzwcxeqmd5nzm": "Development", - "erd1l8ckw2uck3twh73ytm8zv0qejmd258aspqps380sk6c0cdtxpjnq78q5t9": "Operations", - "erd1unwuuc20kqqjf5lmxgufqueljk4h05e8et9c8da5uu227ufzn60s7sa7ua": "Team" + "erd1vlz902r46z0s0zaxuxmeqm8x3hzuakdezwh2mq8r9ewlpqll6xnsw7rlwf": "Community", + "erd1sdfn89ddr8kt3spfk94pvkav60phjn82xrwx4q3tp4mecqk3yujs67wrlf": "Treasury", + "erd1yvjgq36zrc66lpag3jr63y4sdtp3e79950kqsy98tsk5rrzwcxeqmd5nzm": "Development", + "erd1l8ckw2uck3twh73ytm8zv0qejmd258aspqps380sk6c0cdtxpjnq78q5t9": "Operations", + "erd1unwuuc20kqqjf5lmxgufqueljk4h05e8et9c8da5uu227ufzn60s7sa7ua": "Team" }, "extraTokens": [ "BJOY-7c1940" diff --git a/tokens/KWAK-3490c4/info.json b/tokens/KWAK-3490c4/info.json new file mode 100644 index 0000000000..62c2a377fb --- /dev/null +++ b/tokens/KWAK-3490c4/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/kwakdotlol" + }, + "website": "https://kwak.lol", + "description": "The exclusive and low supply Kwakish PFPs collection.\nIt captures the cultural essence of the Kwak meme and showcases: \n- Honoraries: For meritorious individuals and projects,\n- Kustoms: For OG Whales and early supporters,\n- Klassics: From contests and upon requests.\nUtilities tba.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/KWAK-3490c4/logo.png b/tokens/KWAK-3490c4/logo.png new file mode 100644 index 0000000000..27db4428e5 Binary files /dev/null and b/tokens/KWAK-3490c4/logo.png differ diff --git a/tokens/KWAK-3490c4/logo.svg b/tokens/KWAK-3490c4/logo.svg new file mode 100644 index 0000000000..48a180f71e --- /dev/null +++ b/tokens/KWAK-3490c4/logo.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/LEGACPLATA-a80d23/info.json b/tokens/LEGACPLATA-a80d23/info.json index 635c67712f..93e25964f4 100644 --- a/tokens/LEGACPLATA-a80d23/info.json +++ b/tokens/LEGACPLATA-a80d23/info.json @@ -1,5 +1,5 @@ { - "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=LEGACY-64a1dc", - "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/LEGACY pool on OneDex.", + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the LEGACY/PLATA pool on OneDex.", "status": "active" } diff --git a/tokens/LEGACPLATA-a80d23/logo.png b/tokens/LEGACPLATA-a80d23/logo.png index e8a25e3de0..766cb4550a 100644 Binary files a/tokens/LEGACPLATA-a80d23/logo.png and b/tokens/LEGACPLATA-a80d23/logo.png differ diff --git a/tokens/LEGACPLATA-a80d23/logo.svg b/tokens/LEGACPLATA-a80d23/logo.svg index 19acc80c08..b31631a544 100644 --- a/tokens/LEGACPLATA-a80d23/logo.svg +++ b/tokens/LEGACPLATA-a80d23/logo.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/tokens/LEGACY-64a1dc/info.json b/tokens/LEGACY-64a1dc/info.json index 19c70a64b1..1290cc87ab 100644 --- a/tokens/LEGACY-64a1dc/info.json +++ b/tokens/LEGACY-64a1dc/info.json @@ -1,8 +1,9 @@ { - "social": { - "twitter": "https://twitter.com/plataNetwork" - }, - "website": "https://plata.network", - "description": "Plata Network ecosystem TIER 3 member Token", - "status": "active" -} \ No newline at end of file + "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=LEGACY-64a1dc&state=Pro&type=simple", + "description": "Plata Network ecosystem TIER 3 member Token", + "social": { + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://x.com/platalegacy" + }, + "status": "active" +} diff --git a/tokens/LEGACY-64a1dc/logo.png b/tokens/LEGACY-64a1dc/logo.png index 08d2d244ec..06853ae139 100644 Binary files a/tokens/LEGACY-64a1dc/logo.png and b/tokens/LEGACY-64a1dc/logo.png differ diff --git a/tokens/LEGACY-64a1dc/logo.svg b/tokens/LEGACY-64a1dc/logo.svg index c14147678a..e00312b73f 100644 --- a/tokens/LEGACY-64a1dc/logo.svg +++ b/tokens/LEGACY-64a1dc/logo.svg @@ -1,602 +1,3 @@ - - - - + + + \ No newline at end of file diff --git a/tokens/LEVELS-8176ac/info.json b/tokens/LEVELS-8176ac/info.json new file mode 100644 index 0000000000..06b590f759 --- /dev/null +++ b/tokens/LEVELS-8176ac/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://linktr.ee/plataLinks", + "description": "/ GO FURTHER", + "social": { + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "blog": "https://drive.google.com/file/d/1n3QrgsO2jfXqrx_Qf8urnMnuFvD5JUMt/view?usp=sharing", + "twitter": "https://www.x.com/plataLegacy" + }, + "status": "active" +} diff --git a/tokens/LEVELS-8176ac/logo.png b/tokens/LEVELS-8176ac/logo.png new file mode 100644 index 0000000000..d87ce670e7 Binary files /dev/null and b/tokens/LEVELS-8176ac/logo.png differ diff --git a/tokens/LEVELS-8176ac/logo.svg b/tokens/LEVELS-8176ac/logo.svg new file mode 100644 index 0000000000..656c2dd9e1 --- /dev/null +++ b/tokens/LEVELS-8176ac/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/LKTR-9c14f2/info.json b/tokens/LKTR-9c14f2/info.json new file mode 100644 index 0000000000..453e838020 --- /dev/null +++ b/tokens/LKTR-9c14f2/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/TestTokenMVX" + }, + "website": "https://test-token.com", + "description": "A MVX token for educational purposes only.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/LKTR-9c14f2/logo.png b/tokens/LKTR-9c14f2/logo.png new file mode 100644 index 0000000000..d7e0dcb096 Binary files /dev/null and b/tokens/LKTR-9c14f2/logo.png differ diff --git a/tokens/LKTR-9c14f2/logo.svg b/tokens/LKTR-9c14f2/logo.svg new file mode 100644 index 0000000000..c6e3335e82 --- /dev/null +++ b/tokens/LKTR-9c14f2/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/tokens/LKXOXNO-b06190/info.json b/tokens/LKXOXNO-b06190/info.json new file mode 100644 index 0000000000..f9fb0badaf --- /dev/null +++ b/tokens/LKXOXNO-b06190/info.json @@ -0,0 +1,18 @@ +{ + "website": "https://xoxno.com", + "description": "Locked XOXNO (LKXOXNO) is the vested utility token of the XOXNO Network, a Web3 platform enabling engagement with the new-age economy, including collectibles, DeFi, and more. LKXOXNO tokens are locked in various batches for different periods, yet remain transferable between users at will. Once unlocked, LKXOXNO can be redeemed at a 1:1 ratio for the original XOXNO token.", + "social": { + "email": "contact@xoxno.com", + "telegram": "https://xoxno.t.me", + "github": "https://github.com/xoxno", + "discord": "https://discord.gg/xoxno", + "twitter": "https://x.com/XoxnoNetwork", + "whitepaper": "https://xoxno.com/whitepaper", + "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/", + "coingecko": "https://www.coingecko.com/en/coins/xoxno" + }, + "priceSource": { + "url": "https://api.xoxno.com/tokens?identifier=XOXNO-c1293a" + }, + "status": "active" +} diff --git a/tokens/LKXOXNO-b06190/logo.png b/tokens/LKXOXNO-b06190/logo.png new file mode 100644 index 0000000000..515b7ebb7b Binary files /dev/null and b/tokens/LKXOXNO-b06190/logo.png differ diff --git a/tokens/LKXOXNO-b06190/logo.svg b/tokens/LKXOXNO-b06190/logo.svg new file mode 100644 index 0000000000..5f4fc01cd1 --- /dev/null +++ b/tokens/LKXOXNO-b06190/logo.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/LOKD-ff8f08/info.json b/tokens/LOKD-ff8f08/info.json new file mode 100644 index 0000000000..ad133350b5 --- /dev/null +++ b/tokens/LOKD-ff8f08/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://twitter.com/thepawnlegion", + "description": "A smart token ! \nYield farming, self sustaining and non inflationary.", + "status": "active", + "social": { + "twitter": "https://twitter.com/thepawnlegion" + }, + "extraTokens": [ + "LOKDWEGLD-699778" + ] +} \ No newline at end of file diff --git a/tokens/LOKD-ff8f08/logo.png b/tokens/LOKD-ff8f08/logo.png new file mode 100644 index 0000000000..8cf5f3f99a Binary files /dev/null and b/tokens/LOKD-ff8f08/logo.png differ diff --git a/tokens/LOKD-ff8f08/logo.svg b/tokens/LOKD-ff8f08/logo.svg new file mode 100644 index 0000000000..7be7e101f5 --- /dev/null +++ b/tokens/LOKD-ff8f08/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/LOMA-49219e/info.json b/tokens/LOMA-49219e/info.json new file mode 100644 index 0000000000..3d0c0b703d --- /dev/null +++ b/tokens/LOMA-49219e/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://lomaha.io", + "description": "LOMA Token was created to represent the building of a financial civilization in the world of cryptocurrency and blockchain", + "status": "active" +} \ No newline at end of file diff --git a/tokens/LOMA-49219e/logo.png b/tokens/LOMA-49219e/logo.png new file mode 100644 index 0000000000..8f2a42959e Binary files /dev/null and b/tokens/LOMA-49219e/logo.png differ diff --git a/tokens/LOMA-49219e/logo.svg b/tokens/LOMA-49219e/logo.svg new file mode 100644 index 0000000000..dac5fc2c24 --- /dev/null +++ b/tokens/LOMA-49219e/logo.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/LONGIN-0edda4/info.json b/tokens/LONGIN-0edda4/info.json new file mode 100644 index 0000000000..b52a0337fa --- /dev/null +++ b/tokens/LONGIN-0edda4/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "#MEME season, is opened by the most real NINJA !", + "social": { + "telegram": "https://t.me/longincto", + "twitter": "https://x.com/LonginNinj43024" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/LONGIN-0edda4", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/LONGIN-0edda4/logo.png b/tokens/LONGIN-0edda4/logo.png new file mode 100644 index 0000000000..c2cb6e70e1 Binary files /dev/null and b/tokens/LONGIN-0edda4/logo.png differ diff --git a/tokens/LONGIN-0edda4/logo.svg b/tokens/LONGIN-0edda4/logo.svg new file mode 100644 index 0000000000..f64d576cef --- /dev/null +++ b/tokens/LONGIN-0edda4/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/LOOPVERSX-61daa9/info.json b/tokens/LOOPVERSX-61daa9/info.json new file mode 100644 index 0000000000..6f11e1ef0c --- /dev/null +++ b/tokens/LOOPVERSX-61daa9/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://www.ooxart.art", + "description": "Discover LoopversX, where every NFT holds the power of infinite loops. Created by Obfx, these pieces embody a never-ending dance of motion.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/LOOPVERSX-61daa9/logo.png b/tokens/LOOPVERSX-61daa9/logo.png new file mode 100644 index 0000000000..1fdc6d0da1 Binary files /dev/null and b/tokens/LOOPVERSX-61daa9/logo.png differ diff --git a/tokens/LOOPVERSX-61daa9/logo.svg b/tokens/LOOPVERSX-61daa9/logo.svg new file mode 100644 index 0000000000..2be3004b25 --- /dev/null +++ b/tokens/LOOPVERSX-61daa9/logo.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/LPBOBYXMPH-e181a5/info.json b/tokens/LPBOBYXMPH-e181a5/info.json new file mode 100644 index 0000000000..65d40ad8c5 --- /dev/null +++ b/tokens/LPBOBYXMPH-e181a5/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://jexchange.io", + "description": "Liquidity Provider (LP) token for BOBY-xMPH liquidity pool on JEXchangeDefi", + "status": "active" +} diff --git a/tokens/LPBOBYXMPH-e181a5/logo.png b/tokens/LPBOBYXMPH-e181a5/logo.png new file mode 100644 index 0000000000..a8cffb74af Binary files /dev/null and b/tokens/LPBOBYXMPH-e181a5/logo.png differ diff --git a/tokens/LPBOBYXMPH-e181a5/logo.svg b/tokens/LPBOBYXMPH-e181a5/logo.svg new file mode 100644 index 0000000000..0b42f9aee2 --- /dev/null +++ b/tokens/LPBOBYXMPH-e181a5/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/LPEBUDGREE-2ec082/info.json b/tokens/LPEBUDGREE-2ec082/info.json new file mode 100644 index 0000000000..00631c2d0b --- /dev/null +++ b/tokens/LPEBUDGREE-2ec082/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://app.jexchange.io/pools", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the GREEN/EBUD pool JEXchange.", + "status": "active" +} diff --git a/tokens/LPEBUDGREE-2ec082/logo.png b/tokens/LPEBUDGREE-2ec082/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/LPEBUDGREE-2ec082/logo.png differ diff --git a/tokens/LPEBUDGREE-2ec082/logo.svg b/tokens/LPEBUDGREE-2ec082/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/LPEBUDGREE-2ec082/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/LPEBUDRICO-9cfd7b/info.json b/tokens/LPEBUDRICO-9cfd7b/info.json new file mode 100644 index 0000000000..6519610d03 --- /dev/null +++ b/tokens/LPEBUDRICO-9cfd7b/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://app.jexchange.io/pools", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EBUD/RICO pool on JEXchange.", + "status": "active" +} diff --git a/tokens/LPEBUDRICO-9cfd7b/logo.png b/tokens/LPEBUDRICO-9cfd7b/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/LPEBUDRICO-9cfd7b/logo.png differ diff --git a/tokens/LPEBUDRICO-9cfd7b/logo.svg b/tokens/LPEBUDRICO-9cfd7b/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/LPEBUDRICO-9cfd7b/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/LPETHBTC-8b8a1f/info.json b/tokens/LPETHBTC-071be8/info.json similarity index 100% rename from tokens/LPETHBTC-8b8a1f/info.json rename to tokens/LPETHBTC-071be8/info.json diff --git a/tokens/LPETHBTC-8b8a1f/logo.png b/tokens/LPETHBTC-071be8/logo.png similarity index 100% rename from tokens/LPETHBTC-8b8a1f/logo.png rename to tokens/LPETHBTC-071be8/logo.png diff --git a/tokens/LPETHBTC-8b8a1f/logo.svg b/tokens/LPETHBTC-071be8/logo.svg similarity index 100% rename from tokens/LPETHBTC-8b8a1f/logo.svg rename to tokens/LPETHBTC-071be8/logo.svg diff --git a/tokens/LPETHEGLD-bcb4ac/info.json b/tokens/LPETHEGLD-e158d2/info.json similarity index 100% rename from tokens/LPETHEGLD-bcb4ac/info.json rename to tokens/LPETHEGLD-e158d2/info.json diff --git a/tokens/LPETHEGLD-bcb4ac/logo.png b/tokens/LPETHEGLD-e158d2/logo.png similarity index 100% rename from tokens/LPETHEGLD-bcb4ac/logo.png rename to tokens/LPETHEGLD-e158d2/logo.png diff --git a/tokens/LPETHEGLD-bcb4ac/logo.svg b/tokens/LPETHEGLD-e158d2/logo.svg similarity index 100% rename from tokens/LPETHEGLD-bcb4ac/logo.svg rename to tokens/LPETHEGLD-e158d2/logo.svg diff --git a/tokens/LPJEXBEE-a6fd37/info.json b/tokens/LPJEXBEE-d48cc0/info.json similarity index 100% rename from tokens/LPJEXBEE-a6fd37/info.json rename to tokens/LPJEXBEE-d48cc0/info.json diff --git a/tokens/LPJEXBEE-a6fd37/logo.png b/tokens/LPJEXBEE-d48cc0/logo.png similarity index 100% rename from tokens/LPJEXBEE-a6fd37/logo.png rename to tokens/LPJEXBEE-d48cc0/logo.png diff --git a/tokens/LPJEXBEE-a6fd37/logo.svg b/tokens/LPJEXBEE-d48cc0/logo.svg similarity index 100% rename from tokens/LPJEXBEE-a6fd37/logo.svg rename to tokens/LPJEXBEE-d48cc0/logo.svg diff --git a/tokens/LPJEXWEGLD-2bccc4/info.json b/tokens/LPJEXWEGLD-2f3bb2/info.json similarity index 100% rename from tokens/LPJEXWEGLD-2bccc4/info.json rename to tokens/LPJEXWEGLD-2f3bb2/info.json diff --git a/tokens/LPJEXWEGLD-2bccc4/logo.png b/tokens/LPJEXWEGLD-2f3bb2/logo.png similarity index 100% rename from tokens/LPJEXWEGLD-2bccc4/logo.png rename to tokens/LPJEXWEGLD-2f3bb2/logo.png diff --git a/tokens/LPJEXWEGLD-2bccc4/logo.svg b/tokens/LPJEXWEGLD-2f3bb2/logo.svg similarity index 100% rename from tokens/LPJEXWEGLD-2bccc4/logo.svg rename to tokens/LPJEXWEGLD-2f3bb2/logo.svg diff --git a/tokens/LPOMIUSDC-1e3f13/info.json b/tokens/LPOMIUSDC-1e3f13/info.json new file mode 100644 index 0000000000..975f9482c0 --- /dev/null +++ b/tokens/LPOMIUSDC-1e3f13/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://app.jexchange.io/", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the OMI/USDC pool on Jexchange.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/LPOMIUSDC-1e3f13/logo.png b/tokens/LPOMIUSDC-1e3f13/logo.png new file mode 100644 index 0000000000..6bb4e137a8 Binary files /dev/null and b/tokens/LPOMIUSDC-1e3f13/logo.png differ diff --git a/tokens/LPOMIUSDC-1e3f13/logo.svg b/tokens/LPOMIUSDC-1e3f13/logo.svg new file mode 100644 index 0000000000..489a543996 --- /dev/null +++ b/tokens/LPOMIUSDC-1e3f13/logo.svg @@ -0,0 +1,49 @@ + + + + + + + + + + diff --git a/tokens/LPOMIWBTC-fb558e/info.json b/tokens/LPOMIWBTC-fb558e/info.json new file mode 100644 index 0000000000..fabd605f97 --- /dev/null +++ b/tokens/LPOMIWBTC-fb558e/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://www.cromdao.xyz/", + "description": "Liquidity Provider (LP) token for OMI-WBTC liquidity pool on JEXchangeDefi", + "status": "active" +} diff --git a/tokens/LPOMIWBTC-fb558e/logo.png b/tokens/LPOMIWBTC-fb558e/logo.png new file mode 100644 index 0000000000..1daf1e95cd Binary files /dev/null and b/tokens/LPOMIWBTC-fb558e/logo.png differ diff --git a/tokens/LPOMIWBTC-fb558e/logo.svg b/tokens/LPOMIWBTC-fb558e/logo.svg new file mode 100644 index 0000000000..f267b8e39e --- /dev/null +++ b/tokens/LPOMIWBTC-fb558e/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/LPOMIWEGL-7203ae/info.json b/tokens/LPOMIWEGL-7203ae/info.json new file mode 100644 index 0000000000..eda5ae394e --- /dev/null +++ b/tokens/LPOMIWEGL-7203ae/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://www.cromdao.xyz/", + "description": "Liquidity Provider (LP) token for OMI-WEGLD liquidity pool on JEXchangeDefi", + "status": "active" +} diff --git a/tokens/LPOMIWEGL-7203ae/logo.png b/tokens/LPOMIWEGL-7203ae/logo.png new file mode 100644 index 0000000000..61fb025473 Binary files /dev/null and b/tokens/LPOMIWEGL-7203ae/logo.png differ diff --git a/tokens/LPOMIWEGL-7203ae/logo.svg b/tokens/LPOMIWEGL-7203ae/logo.svg new file mode 100644 index 0000000000..f267b8e39e --- /dev/null +++ b/tokens/LPOMIWEGL-7203ae/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/LPJEXRARE-518166/info.json b/tokens/LPRAREJEX-736360/info.json similarity index 59% rename from tokens/LPJEXRARE-518166/info.json rename to tokens/LPRAREJEX-736360/info.json index c5de54eee4..6bd5a6d0b6 100644 --- a/tokens/LPJEXRARE-518166/info.json +++ b/tokens/LPRAREJEX-736360/info.json @@ -1,5 +1,5 @@ { "website": "https://jexchange.io/", - "description": "Liquidity Provider (LP) token for JEX-RARE liquidity pool on JEXchangeDefi", + "description": "Liquidity Provider (LP) token for RARE-JEX liquidity pool on JEXchangeDefi", "status": "active" } diff --git a/tokens/LPJEXRARE-518166/logo.png b/tokens/LPRAREJEX-736360/logo.png similarity index 100% rename from tokens/LPJEXRARE-518166/logo.png rename to tokens/LPRAREJEX-736360/logo.png diff --git a/tokens/LPJEXRARE-518166/logo.svg b/tokens/LPRAREJEX-736360/logo.svg similarity index 100% rename from tokens/LPJEXRARE-518166/logo.svg rename to tokens/LPRAREJEX-736360/logo.svg diff --git a/tokens/LPSATOOMI-aae12c/info.json b/tokens/LPSATOOMI-aae12c/info.json new file mode 100644 index 0000000000..eb61db7f6b --- /dev/null +++ b/tokens/LPSATOOMI-aae12c/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/SatomiMvx" + }, + "website": "https://x.com/SatomiMvx", + "description": "Satomi - Omi (Jexchange LP Token)", + "status": "active" +} diff --git a/tokens/LPSATOOMI-aae12c/logo.png b/tokens/LPSATOOMI-aae12c/logo.png new file mode 100644 index 0000000000..72a4fc7747 Binary files /dev/null and b/tokens/LPSATOOMI-aae12c/logo.png differ diff --git a/tokens/LPSATOOMI-aae12c/logo.svg b/tokens/LPSATOOMI-aae12c/logo.svg new file mode 100644 index 0000000000..f6a19ec2d0 --- /dev/null +++ b/tokens/LPSATOOMI-aae12c/logo.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + diff --git a/tokens/LRONE-c13024/info.json b/tokens/LRONE-c13024/info.json index da5938f12a..9162f79f26 100644 --- a/tokens/LRONE-c13024/info.json +++ b/tokens/LRONE-c13024/info.json @@ -1,8 +1,13 @@ { - "social": { - "twitter": "https://twitter.com/OneDex_X" - }, - "website": "https://onedex.app/", - "description": "Liquid token rewarded for staking OneDex Governance Token", - "status": "active" + "social": { + "twitter": "https://twitter.com/OneDex_X" + }, + "website": "https://onedex.app/", + "description": "Liquid token rewarded for staking OneDex Governance Token", + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/LRONE-c13024", + "path": "0.usdPrice" + } } diff --git a/tokens/LSC-23dff9/info.json b/tokens/LSC-23dff9/info.json new file mode 100644 index 0000000000..6a4be775d3 --- /dev/null +++ b/tokens/LSC-23dff9/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/CGVSLSC" + }, + "website": "https://turudoi.com", + "description": "The Elena Lasconi Meme Token (LSC) is here to disrupt the crypto world with a mix of humor, memes, and a nod to one of Romania's most talked-about public figures. Whether you’re in for the laughs or the moonshots, LSC is the ultimate fusion of culture, satire, and blockchain innovation!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/LSC-23dff9/logo.png b/tokens/LSC-23dff9/logo.png new file mode 100644 index 0000000000..3a1d77e8b7 Binary files /dev/null and b/tokens/LSC-23dff9/logo.png differ diff --git a/tokens/LSC-23dff9/logo.svg b/tokens/LSC-23dff9/logo.svg new file mode 100644 index 0000000000..6769b0c605 --- /dev/null +++ b/tokens/LSC-23dff9/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/LXOXNO-0eb983/info.json b/tokens/LXOXNO-0eb983/info.json new file mode 100644 index 0000000000..ef264f4c33 --- /dev/null +++ b/tokens/LXOXNO-0eb983/info.json @@ -0,0 +1,20 @@ +{ + "website": "https://xoxno.com", + "description": "Liquid XOXNO (LXOXNO) is the utility and interest-bearing token of the XOXNO Network, a Web3 platform for collectibles, DeFi, and more. LXOXNO is a staked version of the XOXNO token, with its value increasing daily based on network activity. All royalties are paid in LXOXNO, providing an auto-compounding effect for creators. Holding LXOXNO allows users to benefit from the ecosystem's real yield and growing value.", + "social": { + "email": "contact@xoxno.com", + "telegram": "https://xoxno.t.me", + "github": "https://github.com/xoxno", + "discord": "https://discord.gg/xoxno", + "twitter": "https://x.com/XoxnoNetwork", + "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/", + "coingecko": "https://www.coingecko.com/en/coins/xoxno", + "whitepaper": "https://xoxno.com/whitepaper" + }, + "priceSource": { + "type": "customUrl", + "url": "https://api.xoxno.com/tokens?identifier=LXOXNO-0eb983" + }, + "ledgerSignature": "304402205a3d1dd2be889c66ca86cd08f3e6041c08c29bbfd791d048a6835eb736f13b3702201ebfeaa99fcb526210633d62bf6c1f1dbdaab7911795d3c00210a792d9b72cf3", + "status": "active" +} diff --git a/tokens/LXOXNO-0eb983/logo.png b/tokens/LXOXNO-0eb983/logo.png new file mode 100644 index 0000000000..a8c31747ab Binary files /dev/null and b/tokens/LXOXNO-0eb983/logo.png differ diff --git a/tokens/LXOXNO-0eb983/logo.svg b/tokens/LXOXNO-0eb983/logo.svg new file mode 100644 index 0000000000..dd02cc1293 --- /dev/null +++ b/tokens/LXOXNO-0eb983/logo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/tokens/MEGA-3f9b55/info.json b/tokens/MEGA-3f9b55/info.json new file mode 100644 index 0000000000..5b7758af2d --- /dev/null +++ b/tokens/MEGA-3f9b55/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://x.com/MEGAonMvx", + "description": "MAKE EGLD GREAT AGAIN!!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/MEGA-3f9b55/logo.png b/tokens/MEGA-3f9b55/logo.png new file mode 100644 index 0000000000..a455ebf498 Binary files /dev/null and b/tokens/MEGA-3f9b55/logo.png differ diff --git a/tokens/MEGA-3f9b55/logo.svg b/tokens/MEGA-3f9b55/logo.svg new file mode 100644 index 0000000000..1e0847240f --- /dev/null +++ b/tokens/MEGA-3f9b55/logo.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + $MEGA + + diff --git a/tokens/MEX-455c57/logo.png b/tokens/MEX-455c57/logo.png index 5c58330149..0b966e092a 100644 Binary files a/tokens/MEX-455c57/logo.png and b/tokens/MEX-455c57/logo.png differ diff --git a/tokens/MEX-455c57/logo.svg b/tokens/MEX-455c57/logo.svg index 232e6ba8ff..1bb5af8a57 100644 --- a/tokens/MEX-455c57/logo.svg +++ b/tokens/MEX-455c57/logo.svg @@ -1,19 +1,4 @@ - - - - - - - - - - - - - - - - - - + + + diff --git a/tokens/MINCUS-ac895a/info.json b/tokens/MINCUS-ac895a/info.json new file mode 100644 index 0000000000..54ee252d0a --- /dev/null +++ b/tokens/MINCUS-ac895a/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://artcpaclub.com/", + "description": "Mincus meme, born to make a difference", "ledgerSignature": "", + "social": { + "email": "jackofhearts491@gmail.com", + "Twitter": "https://twitter.com/JackHearts4432", + "Medium": "https://medium.com/@jackofhearts491" + }, + "status": "active" +} diff --git a/tokens/MINCUS-ac895a/logo.png b/tokens/MINCUS-ac895a/logo.png new file mode 100644 index 0000000000..c62a0d03c2 Binary files /dev/null and b/tokens/MINCUS-ac895a/logo.png differ diff --git a/tokens/MINCUS-ac895a/logo.svg b/tokens/MINCUS-ac895a/logo.svg new file mode 100644 index 0000000000..02f50d2b82 --- /dev/null +++ b/tokens/MINCUS-ac895a/logo.svg @@ -0,0 +1,1298 @@ + + + + + + + + + + diff --git a/tokens/MLOCK-ff4561/info.json b/tokens/MLOCK-ff4561/info.json new file mode 100644 index 0000000000..59f022bcdc --- /dev/null +++ b/tokens/MLOCK-ff4561/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "Meme Summer Token is the ultimate digital asset capturing the essence of summer fun and meme culture. MST combines the viral energy of internet memes with the laid-back, sunny vibes of summertime. Perfect for meme enthusiasts, crypto collectors, and anyone who loves to keep the summer spirit alive all year round.", + "status": "active", + "social": { + "telegram": "https://memeversx.com/" + } +} diff --git a/tokens/MLOCK-ff4561/logo.png b/tokens/MLOCK-ff4561/logo.png new file mode 100644 index 0000000000..4da5c7de02 Binary files /dev/null and b/tokens/MLOCK-ff4561/logo.png differ diff --git a/tokens/MLOCK-ff4561/logo.svg b/tokens/MLOCK-ff4561/logo.svg new file mode 100644 index 0000000000..677574837a --- /dev/null +++ b/tokens/MLOCK-ff4561/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/tokens/MM24HUNT-432419/info.json b/tokens/MM24HUNT-432419/info.json new file mode 100644 index 0000000000..fbe81a4f7e --- /dev/null +++ b/tokens/MM24HUNT-432419/info.json @@ -0,0 +1,12 @@ +{ + "website": "https://xportal.com", + "description": "Official Merge Madrid Treasure Hunt Collectibles", + "social": { + "twitter": "https://twitter.com/xPortalApp", + "facebook": "https://www.facebook.com/xPortalApp", + "instagram": "https://www.instagram.com/xportalapp/", + "telegram": "https://t.me/xPortalApp", + "youtube": "https://www.youtube.com/@xportalapp" + }, + "status": "active" +} diff --git a/tokens/MM24HUNT-432419/logo.png b/tokens/MM24HUNT-432419/logo.png new file mode 100644 index 0000000000..72756fd440 Binary files /dev/null and b/tokens/MM24HUNT-432419/logo.png differ diff --git a/tokens/MM24HUNT-432419/logo.svg b/tokens/MM24HUNT-432419/logo.svg new file mode 100644 index 0000000000..30ff7de5df --- /dev/null +++ b/tokens/MM24HUNT-432419/logo.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/MMVXDROP-7a5acb/info.json b/tokens/MMVXDROP-7a5acb/info.json new file mode 100644 index 0000000000..108b87207e --- /dev/null +++ b/tokens/MMVXDROP-7a5acb/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://memeversx.com", + "description": "A collection of unique SFTs that resembles entry tickets for MemeversX Airdrops.", + "social": { + "twitter": "https://x.com/memevers_x", + "telegram": "https://t.me/memeversx" + }, + "status": "active" +} diff --git a/tokens/MMVXDROP-7a5acb/logo.png b/tokens/MMVXDROP-7a5acb/logo.png new file mode 100644 index 0000000000..94a87287e7 Binary files /dev/null and b/tokens/MMVXDROP-7a5acb/logo.png differ diff --git a/tokens/MMVXDROP-7a5acb/logo.svg b/tokens/MMVXDROP-7a5acb/logo.svg new file mode 100644 index 0000000000..37beaa286b --- /dev/null +++ b/tokens/MMVXDROP-7a5acb/logo.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/MOONICH-6e43c6/info.json b/tokens/MOONICH-6e43c6/info.json new file mode 100644 index 0000000000..7139795a34 --- /dev/null +++ b/tokens/MOONICH-6e43c6/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "" + }, + "website": "https://explorer.multiversx.com/tokens/MOONICH-6e43c6", + "description": "xCities Munich game token.", + "status": "active" +} diff --git a/tokens/MOONICH-6e43c6/logo.png b/tokens/MOONICH-6e43c6/logo.png new file mode 100644 index 0000000000..1dece43270 Binary files /dev/null and b/tokens/MOONICH-6e43c6/logo.png differ diff --git a/tokens/MOONICH-6e43c6/logo.svg b/tokens/MOONICH-6e43c6/logo.svg new file mode 100644 index 0000000000..77146209de --- /dev/null +++ b/tokens/MOONICH-6e43c6/logo.svg @@ -0,0 +1,610 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/MVXRC20-b158a5/info.json b/tokens/MVXRC20-b158a5/info.json new file mode 100644 index 0000000000..0511c0bd54 --- /dev/null +++ b/tokens/MVXRC20-b158a5/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://artcpaclub.com/", + "description": "Meme token inscribed on BTC", "ledgerSignature": "", + "social": { + "email": "admin@artcpaclub.com", + "twitter": "https://twitter.com/Trad3EX", + "discord": "https://discord.gg/cpa-939118044066746378", + "telegram": "https://t.me/+l3Fjd2bULflhZmY0" + }, + "status": "active" +} diff --git a/tokens/MVXRC20-b158a5/logo.png b/tokens/MVXRC20-b158a5/logo.png new file mode 100644 index 0000000000..20ee1957ac Binary files /dev/null and b/tokens/MVXRC20-b158a5/logo.png differ diff --git a/tokens/MVXRC20-b158a5/logo.svg b/tokens/MVXRC20-b158a5/logo.svg new file mode 100644 index 0000000000..af93778f03 --- /dev/null +++ b/tokens/MVXRC20-b158a5/logo.svg @@ -0,0 +1,660 @@ + + + + + + + + + + diff --git a/tokens/NOMADS-4e00de/info.json b/tokens/NOMADS-4e00de/info.json new file mode 100644 index 0000000000..d5b8d87582 --- /dev/null +++ b/tokens/NOMADS-4e00de/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/EpicNomads" + }, + "website": "https://xoxno.com/collection/NOMADS-4e00de", + "description": "EpicNomads, a rare collection containing 81 exclusive arts on the Multiversx network.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/NOMADS-4e00de/logo.png b/tokens/NOMADS-4e00de/logo.png new file mode 100644 index 0000000000..e0277575ad Binary files /dev/null and b/tokens/NOMADS-4e00de/logo.png differ diff --git a/tokens/NOMADS-4e00de/logo.svg b/tokens/NOMADS-4e00de/logo.svg new file mode 100644 index 0000000000..10838c0874 --- /dev/null +++ b/tokens/NOMADS-4e00de/logo.svg @@ -0,0 +1,14 @@ + + gfghfghfghd-2-svg + + + + + + + + + + \ No newline at end of file diff --git a/tokens/NOTBOBER-088b27/info.json b/tokens/NOTBOBER-088b27/info.json new file mode 100644 index 0000000000..2b07ca356b --- /dev/null +++ b/tokens/NOTBOBER-088b27/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "They say there's Bober and there's all the other memes... False! Don't be a $Bober! Be $NotBober! The choice is yours. Take the chance!\n#NotBober\n#NotBoberonMVX", + "status": "active", + "social": { + "telegram": "https://t.me/NotBoberonMVX" + } +} diff --git a/tokens/NOTBOBER-088b27/logo.png b/tokens/NOTBOBER-088b27/logo.png new file mode 100644 index 0000000000..53f64c3840 Binary files /dev/null and b/tokens/NOTBOBER-088b27/logo.png differ diff --git a/tokens/NOTBOBER-088b27/logo.svg b/tokens/NOTBOBER-088b27/logo.svg new file mode 100644 index 0000000000..abf22e7643 --- /dev/null +++ b/tokens/NOTBOBER-088b27/logo.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/NUTS-8ad81a/info.json b/tokens/NUTS-8ad81a/info.json index 02f8bc072f..51b1c8c53a 100644 --- a/tokens/NUTS-8ad81a/info.json +++ b/tokens/NUTS-8ad81a/info.json @@ -11,5 +11,10 @@ "extraTokens": [ "METASNUTS-496432" ], - "status": "active" + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/NUTS-8ad81a", + "path": "0.usdPrice" + } } \ No newline at end of file diff --git a/tokens/NYAN-944bc2/info.json b/tokens/NYAN-944bc2/info.json new file mode 100644 index 0000000000..775627abff --- /dev/null +++ b/tokens/NYAN-944bc2/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "The ultimate meme coin inspired by the iconic Nyan Cat! Combining pixelated charm, a vibrant rainbow trail, and cosmic vibes, NyanCoin brings fun and nostalgia to the crypto universe. Join the Nyaniverse and let your investments soar to the stars with this playful and community-driven token!", + "social": { + "telegram": "https://t.me/+uzlFQqw2yyAxMThk", + "twitter": "" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/NYAN-944bc2", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/NYAN-944bc2/logo.png b/tokens/NYAN-944bc2/logo.png new file mode 100644 index 0000000000..804a9793b9 Binary files /dev/null and b/tokens/NYAN-944bc2/logo.png differ diff --git a/tokens/NYAN-944bc2/logo.svg b/tokens/NYAN-944bc2/logo.svg new file mode 100644 index 0000000000..bd5d7bf4a9 --- /dev/null +++ b/tokens/NYAN-944bc2/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/OAGMYSTERY-f98294/info.json b/tokens/OAGMYSTERY-f98294/info.json new file mode 100644 index 0000000000..2a82f98446 --- /dev/null +++ b/tokens/OAGMYSTERY-f98294/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://dapp.eventivivi.it", + "description": "Explore beyond expectations with on-chain and IRL surprises.", + "social": { + "email": "oddapesnft@gmail.com", + "twitter": "https://x.com/OddApesGang", + "telegram": "https://t.me/evnftreal", + "discord": "https://discord.gg/evecosystem" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/OAGMYSTERY-f98294/logo.png b/tokens/OAGMYSTERY-f98294/logo.png new file mode 100644 index 0000000000..cacc821fe4 Binary files /dev/null and b/tokens/OAGMYSTERY-f98294/logo.png differ diff --git a/tokens/OAGMYSTERY-f98294/logo.svg b/tokens/OAGMYSTERY-f98294/logo.svg new file mode 100644 index 0000000000..09aa551c72 --- /dev/null +++ b/tokens/OAGMYSTERY-f98294/logo.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/OBIWEN-fa8bf6/info.json b/tokens/OBIWEN-fa8bf6/info.json new file mode 100644 index 0000000000..2d1808d454 --- /dev/null +++ b/tokens/OBIWEN-fa8bf6/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "Tired of waiting for $EGLD to moon? Enter Obiwenwifhat, Jedi hamster. \ud83d\udc39\u2728\ud83e\udd84\ud83e\udd84\ud83e\udd84\ud83e\udd84\ud83e\udd84\nHis mission: seize the power of the leather jacket and lure new investors.\n\nIn the multiversx, there\u2019s no patience\u2014only MOON. \ud83d\ude80\nWill you join his galactic journey? \ud83c\udf0c\nNo more wen wen wen...Lets go to Onedex", + "social": { + "telegram": "https://t.me/+CZyDfIDXNhxiNjlk", + "twitter": "https://x.com/obiwenwifhat?t=8-Lcjhme1cKgRE9U5_Mohw&s=09" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/OBIWEN-fa8bf6", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/OBIWEN-fa8bf6/logo.png b/tokens/OBIWEN-fa8bf6/logo.png new file mode 100644 index 0000000000..c5ecb2cb2e Binary files /dev/null and b/tokens/OBIWEN-fa8bf6/logo.png differ diff --git a/tokens/OBIWEN-fa8bf6/logo.svg b/tokens/OBIWEN-fa8bf6/logo.svg new file mode 100644 index 0000000000..bca48ded6e --- /dev/null +++ b/tokens/OBIWEN-fa8bf6/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/OFC-2232de/info.json b/tokens/OFC-2232de/info.json index fd55337c26..a0d5f7f4cf 100644 --- a/tokens/OFC-2232de/info.json +++ b/tokens/OFC-2232de/info.json @@ -1,10 +1,10 @@ { + "website": "https://gildedsyndicate.com/", + "description": "Mint a GildedValidator Share for more Rewards!", + "status": "active", "social": { - "blog": "https://xmag.store/blog", + "blog": "https://gildedsyndicate.com/", "twitter": "https://twitter.com/GildedSyndicate", "whitepaper": "https://gildedsyndicate.com/" - }, - "website": "https://gildedsyndicate.com/", - "description": "Mint a GildedValidator Share for more Rewards!", - "status": "active" + } } \ No newline at end of file diff --git a/tokens/OFLOL-47edae/info.json b/tokens/OFLOL-47edae/info.json new file mode 100644 index 0000000000..1f876d70af --- /dev/null +++ b/tokens/OFLOL-47edae/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/ObfxAI" + }, + "website": "https://www.ooxart.art", + "description": "In a world where every layer reveals new power, Onion Force stands as the ultimate line of defense. Each hero, inspired by the versatile onion, peels back layers of strength and complexity. Led by Captain Crisp and joined by allies like Lady Shallot and Sir Slicealot, these champions embody resilience and unity, using their unique abilities to protect their realm from any threat.\n\n“Peel back the layers, reveal the force.”\n\nTogether, the League of Layers proves that true strength lies in purpose, unity, and the courage to uncover what lies within.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/OFLOL-47edae/logo.png b/tokens/OFLOL-47edae/logo.png new file mode 100644 index 0000000000..7ce74c2267 Binary files /dev/null and b/tokens/OFLOL-47edae/logo.png differ diff --git a/tokens/OFLOL-47edae/logo.svg b/tokens/OFLOL-47edae/logo.svg new file mode 100644 index 0000000000..92e183a70b --- /dev/null +++ b/tokens/OFLOL-47edae/logo.svg @@ -0,0 +1,449 @@ + + + + diff --git a/tokens/OMI-cdc273/info.json b/tokens/OMI-cdc273/info.json new file mode 100644 index 0000000000..38e4432ec3 --- /dev/null +++ b/tokens/OMI-cdc273/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://x.com/cromdao", + "description": "OMI - CROM DAO Utility Token", + "social": { + "twitter": "https://x.com/cromdao" + }, + "lockedAccounts": { + "erd1qqqqqqqqqqqqqpgqh8l2e6z9nj2557qplj9cd2hxr69pcvkl27rs6x65sh": "Total supply" + }, + "status": "active" + } diff --git a/tokens/OMI-cdc273/logo.png b/tokens/OMI-cdc273/logo.png new file mode 100644 index 0000000000..62d3281f24 Binary files /dev/null and b/tokens/OMI-cdc273/logo.png differ diff --git a/tokens/OMI-cdc273/logo.svg b/tokens/OMI-cdc273/logo.svg new file mode 100644 index 0000000000..f267b8e39e --- /dev/null +++ b/tokens/OMI-cdc273/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/OMXB-96a0e9/info.json b/tokens/OMXB-96a0e9/info.json new file mode 100644 index 0000000000..149c2f50c0 --- /dev/null +++ b/tokens/OMXB-96a0e9/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/OrdinalMaxiBiz" + }, + "website": "https://xoxno.com/collection/OMXB-96a0e9", + "description": "--- .-. -.. .. -. .- .-.. / -- .- -..- .. / -..- / -... .. --.. / - --- / - .... . / -- --- --- -. /", + "status": "active" +} \ No newline at end of file diff --git a/tokens/OMXB-96a0e9/logo.png b/tokens/OMXB-96a0e9/logo.png new file mode 100644 index 0000000000..b8560ee11c Binary files /dev/null and b/tokens/OMXB-96a0e9/logo.png differ diff --git a/tokens/OMXB-96a0e9/logo.svg b/tokens/OMXB-96a0e9/logo.svg new file mode 100644 index 0000000000..c78d667682 --- /dev/null +++ b/tokens/OMXB-96a0e9/logo.svg @@ -0,0 +1,15 @@ + + rsz_14f09b40d3e87963ec8ab00957bb6cf24-2-svg + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/ONS-9ef057/info.json b/tokens/ONS-9ef057/info.json new file mode 100644 index 0000000000..8ee049626e --- /dev/null +++ b/tokens/ONS-9ef057/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/oni0nx" + }, + "website": "https://project-onionx.gitbook.io/onionx/the-kitchens/ooinns", + "description": "Even before the giants, even before the titans, the God Odin created an order of unbeatable warriors, giving them the power and strength to defeat the giants and titans themselves. He knew that this would be the only way to restore order.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/ONS-9ef057/logo.png b/tokens/ONS-9ef057/logo.png new file mode 100644 index 0000000000..28874899b4 Binary files /dev/null and b/tokens/ONS-9ef057/logo.png differ diff --git a/tokens/ONS-9ef057/logo.svg b/tokens/ONS-9ef057/logo.svg new file mode 100644 index 0000000000..9e207253fe --- /dev/null +++ b/tokens/ONS-9ef057/logo.svg @@ -0,0 +1,1286 @@ + + + + diff --git a/tokens/ONX-3e51c8/info.json b/tokens/ONX-3e51c8/info.json index 004264215f..f87af2ba3d 100644 --- a/tokens/ONX-3e51c8/info.json +++ b/tokens/ONX-3e51c8/info.json @@ -1,8 +1,8 @@ { + "website": "https://project-onionx.gitbook.io/onionx/", + "description": "🍲 Because onion is good everywhere! An artistic project on MultiversX. ONX is the unique utility token from OnionX 🧅 \n\nONX will be able to unlock exciting features on our marketplace.", + "status": "active", "social": { "twitter": "https://twitter.com/oni0nx" - }, - "website": "https://project-onionx.gitbook.io/onionx/", - "description": "🍲 Because onion is good everywhere! An artistic project on MultiversX", - "status": "active" + } } \ No newline at end of file diff --git a/tokens/P1C-ea624d/info.json b/tokens/P1C-ea624d/info.json new file mode 100644 index 0000000000..bcce0be0e6 --- /dev/null +++ b/tokens/P1C-ea624d/info.json @@ -0,0 +1,12 @@ +{ + "website":"https://swap.onedex.app/swap?firstToken=EGLD&secondToken=P1C-ea624d&state=Pro&type=simple", + "description":"P1 CORΞ Singularity ESDT. Powered by PLΛTΛ", + "social": { + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://twitter.com/plataNetwork" + }, + "lockedAccounts": { + "erd1ryuzf08m4senh22y3rz7yl3shmeser4m5rplafg0l5ldmptd455qlll7vq": "Burn Wallet" + }, + "status":"active" +} diff --git a/tokens/P1C-ea624d/logo.png b/tokens/P1C-ea624d/logo.png new file mode 100644 index 0000000000..1b2f886890 Binary files /dev/null and b/tokens/P1C-ea624d/logo.png differ diff --git a/tokens/P1C-ea624d/logo.svg b/tokens/P1C-ea624d/logo.svg new file mode 100644 index 0000000000..6eeaaef8ab --- /dev/null +++ b/tokens/P1C-ea624d/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/P1CPLATA-39294f/info.json b/tokens/P1CPLATA-39294f/info.json new file mode 100644 index 0000000000..6e2999b1d1 --- /dev/null +++ b/tokens/P1CPLATA-39294f/info.json @@ -0,0 +1,5 @@ +{ + "website":"https://swap.onedex.app/pool", + "description":"Liquidity Provider (LP) Token obtained by adding liquidity in the P1C/PLATA pool on OneDex.", + "status":"active" +} diff --git a/tokens/P1CPLATA-39294f/logo.png b/tokens/P1CPLATA-39294f/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/P1CPLATA-39294f/logo.png differ diff --git a/tokens/P1CPLATA-39294f/logo.svg b/tokens/P1CPLATA-39294f/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/P1CPLATA-39294f/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/P666-f8ac8a/info.json b/tokens/P666-f8ac8a/info.json new file mode 100644 index 0000000000..086cf7f1aa --- /dev/null +++ b/tokens/P666-f8ac8a/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "PODER HISPANO. ven al infierno con profetas a jugar, aprender, recibir premios y sobre todo QUEMAR memecoin.", + "social": { + "telegram": "https://t.me/profetas666_ES", + "twitter": "https://x.com/Profetas666" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/P666-f8ac8a", + "path": "0.usdPrice" + } +} diff --git a/tokens/P666-f8ac8a/logo.png b/tokens/P666-f8ac8a/logo.png new file mode 100644 index 0000000000..ce1b9940ab Binary files /dev/null and b/tokens/P666-f8ac8a/logo.png differ diff --git a/tokens/P666-f8ac8a/logo.svg b/tokens/P666-f8ac8a/logo.svg new file mode 100644 index 0000000000..ab7aa9a1db --- /dev/null +++ b/tokens/P666-f8ac8a/logo.svg @@ -0,0 +1,2 @@ + + diff --git a/tokens/PELVIS-6e3b49/info.json b/tokens/PELVIS-6e3b49/info.json new file mode 100644 index 0000000000..5f29f1e172 --- /dev/null +++ b/tokens/PELVIS-6e3b49/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "twitter": "https://twitter.com/OneDex_X", + "whitepaper": "https://t.me/pepeelvissol" + }, + "website": "https://swap.onedex.app/swap?firstToken=ONE-f9954f&secondToken=EGLD&state=Pro&type=simple", + "description": "Pepe Elvis on SOL! The first in a series of Pepe...", + "status": "active" +} \ No newline at end of file diff --git a/tokens/PELVIS-6e3b49/logo.png b/tokens/PELVIS-6e3b49/logo.png new file mode 100644 index 0000000000..4b3acb6a93 Binary files /dev/null and b/tokens/PELVIS-6e3b49/logo.png differ diff --git a/tokens/PELVIS-6e3b49/logo.svg b/tokens/PELVIS-6e3b49/logo.svg new file mode 100644 index 0000000000..4f6f3fb9ee --- /dev/null +++ b/tokens/PELVIS-6e3b49/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/PESCX-64a553/info.json b/tokens/PESCX-64a553/info.json new file mode 100644 index 0000000000..8b2d6cb1d2 --- /dev/null +++ b/tokens/PESCX-64a553/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://pescotavern.online/", + "description": "The $PESCO token is the core fuel that powers the entire PescoTavern Ecosystem. From purchasing lottery NFTs to participating in governance decisions. 🔹 Utility: Buy lottery NFTs 🖥️ using $PESCO. Staking: Earn $PESCO rewards by staking NFTs in dedicated pools after each lottery 💰. Governance: Use $PESCO to participate in community votes and decisions regarding the future of PescoTavern 🗳️. Exclusive Benefits: Holders of $PESCO will unlock special rewards, bonuses, and perks within the ecosystem 🎁. Join us in shaping the future of digital lotteries, where $PESCO isn't just a token—it's your key to endless opportunities and rewards.", + "status": "active", + "social": { + "telegram": "https://t.me/pescotavern" + } +} diff --git a/tokens/PESCX-64a553/logo.png b/tokens/PESCX-64a553/logo.png new file mode 100644 index 0000000000..76e66163bd Binary files /dev/null and b/tokens/PESCX-64a553/logo.png differ diff --git a/tokens/PESCX-64a553/logo.svg b/tokens/PESCX-64a553/logo.svg new file mode 100644 index 0000000000..30bd7420ad --- /dev/null +++ b/tokens/PESCX-64a553/logo.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + diff --git a/tokens/PINKSYNDX-511e3a/info.json b/tokens/PINKSYNDX-511e3a/info.json new file mode 100644 index 0000000000..813b425cdf --- /dev/null +++ b/tokens/PINKSYNDX-511e3a/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://syndicatemvx.com/", + "description": "First investment syndicate on MultiversX", + "ledgerSignature": "", + "social": { + "twitter": "https://x.com/syndicateMVX", + "telegram": "https://t.me/+OLpxjtX2z_ZhZmNk" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/PINKSYNDX-511e3a/logo.png b/tokens/PINKSYNDX-511e3a/logo.png new file mode 100644 index 0000000000..d57af71ccc Binary files /dev/null and b/tokens/PINKSYNDX-511e3a/logo.png differ diff --git a/tokens/PINKSYNDX-511e3a/logo.svg b/tokens/PINKSYNDX-511e3a/logo.svg new file mode 100644 index 0000000000..6c913cd02f --- /dev/null +++ b/tokens/PINKSYNDX-511e3a/logo.svg @@ -0,0 +1,1062 @@ + + + + + + diff --git a/tokens/PLATA-9ba6c3/info.json b/tokens/PLATA-9ba6c3/info.json index 23be86b58e..b0414b230d 100644 --- a/tokens/PLATA-9ba6c3/info.json +++ b/tokens/PLATA-9ba6c3/info.json @@ -1,13 +1,41 @@ { - "website": "https://plata.network", - "description": "The PLATA Token powers the entire Plata Network ecosystem. Pioneer MultiversX Token", - "ledgerSignature": "304402203f5ed82a4d2dd6d44799a647c134b63574335a9714cde5f998d153bd4f1e3d22022010154f89087af6bfdf1036467b5fdbc3b747c1e5386637d5b72e8e9309b16498", - "social": { - "whitepaper": "https://plata.network/whitepaper", - "twitter": "https://twitter.com/platanetwork", - "telegram":"https://t.me/plataNetwork", - "coinmarketcap": "https://coinmarketcap.com/currencies/plata-network/", - "coingecko": "https://www.coingecko.com/en/coins/plata-network" - }, - "status": "active" + "website": "https://linktr.ee/plataLinks", + "description": "PLATA powers the entire Plata Network ecosystem. Pioneer MultiversX Token", + "ledgerSignature": "304402203f5ed82a4d2dd6d44799a647c134b63574335a9714cde5f998d153bd4f1e3d22022010154f89087af6bfdf1036467b5fdbc3b747c1e5386637d5b72e8e9309b16498", + "social": { + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://x.com/platanetwork", + "telegram":"https://t.me/plataNetwork", + "coinmarketcap": "https://coinmarketcap.com/currencies/plata-network/", + "coingecko": "https://www.coingecko.com/en/coins/plata-network" + }, + "lockedAccounts": { + "erd10095anqk7acrkt6ax89lxa9j0jafvhest74xqc74rqsx7kam608szqq842": "Cold Wallet", + "erd1qqqqqqqqqqqqqpgqztjaxafcz7d90ps4k4pda7vxfvfjaplr27rskc422w": "DAO Vault", + "erd1ryuzf08m4senh22y3rz7yl3shmeser4m5rplafg0l5ldmptd455qlll7vq": "Burn Wallet", + "erd1qqqqqqqqqqqqqpgqyx7a60m2tqczacwme6sdt74899k7yjcs0pnq4aczq9": "Staking", + "erd1qqqqqqqqqqqqqpgqwl5w0rp740uwyq24hx2f702tqsdrwa9ggr9qanf5rf": "Staking", + "erd1qqqqqqqqqqqqqpgqkwt9d457frlkq4t4j3awsezc8c8meg8hyl5sp4td7z": "Staking", + "erd1qqqqqqqqqqqqqpgqs266zfksqqdds05af2qswk3u4lsex2ma6jtsk8uaz4": "Staking", + "erd1qqqqqqqqqqqqqpgql9z9vm8d599ya2r9seklpkcas6qmude4mvlsgrj7hv": "Staking", + "erd1qqqqqqqqqqqqqpgq5re66vt0dlee8v83dtyh6k54qqpjs3ketxfq9tcd29": "Staking", + "erd1qqqqqqqqqqqqqpgql6dxenaameqn2uyyru3nmmpf7e95zmlxu7zskzpdcw": "Staking", + "erd1qqqqqqqqqqqqqpgq85tlmqudva0fyawkkuc6qga60kclzyzj60ws7kxxf5": "xDrops", + "erd1qqqqqqqqqqqqqpgq5774jcntdqkzv62tlvvhfn2y7eevpty6mvlszk3dla": "Farms", + "erd1qqqqqqqqqqqqqpgqrq6gv0ljf4y9md42pe4m6mh96hcpqnpuusls97tf33": "Farms" + }, + "extraTokens": [ + "PLATAWEGLD-c5cb4e", + "PLATAWEGLD-9c07ee", + "XAIPLATA-9aef13", + "LEGACPLATA-a80d23", + "CODEXPLATA-c9bdfb", + "GCCPLATA-591f5c", + "GREENPLATA-c446b6", + "P1CPLATA-39294f", + "EBUDPLATA-6fca29", + "RICOPLATA-4d7139", + "PLATARARE-74cbeb" + ], + "status": "active" } diff --git a/tokens/PLATA-9ba6c3/logo.png b/tokens/PLATA-9ba6c3/logo.png index b953060ee3..056f5e47d7 100644 Binary files a/tokens/PLATA-9ba6c3/logo.png and b/tokens/PLATA-9ba6c3/logo.png differ diff --git a/tokens/PLATA-9ba6c3/logo.svg b/tokens/PLATA-9ba6c3/logo.svg index d8427506c4..cf919cf122 100644 --- a/tokens/PLATA-9ba6c3/logo.svg +++ b/tokens/PLATA-9ba6c3/logo.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + \ No newline at end of file diff --git a/tokens/PLATAMEX-360751/info.json b/tokens/PLATAMEX-360751/info.json new file mode 100644 index 0000000000..a28b328918 --- /dev/null +++ b/tokens/PLATAMEX-360751/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://xexchange.com/pools/erd1qqqqqqqqqqqqqpgqh6plqkzpevxluduvqapfr7j468yu2zs72jpsu5cwtc?firstToken=MEX-455c57&secondToken=PLATA-9ba6c3", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/MEX pool on the xExchange.", + "status": "active" +} diff --git a/tokens/PLATAMEX-360751/logo.png b/tokens/PLATAMEX-360751/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/PLATAMEX-360751/logo.png differ diff --git a/tokens/PLATAMEX-360751/logo.svg b/tokens/PLATAMEX-360751/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/PLATAMEX-360751/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/PLATAONE-c875ff/info.json b/tokens/PLATAONE-c875ff/info.json new file mode 100644 index 0000000000..777a28b1d3 --- /dev/null +++ b/tokens/PLATAONE-c875ff/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/ONE pool on OneDex.", + "status": "active" +} diff --git a/tokens/PLATAONE-c875ff/logo.png b/tokens/PLATAONE-c875ff/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/PLATAONE-c875ff/logo.png differ diff --git a/tokens/PLATAONE-c875ff/logo.svg b/tokens/PLATAONE-c875ff/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/PLATAONE-c875ff/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/PLATARARE-74cbeb/info.json b/tokens/PLATARARE-74cbeb/info.json new file mode 100644 index 0000000000..31d3c53bff --- /dev/null +++ b/tokens/PLATARARE-74cbeb/info.json @@ -0,0 +1,5 @@ +{ + "website":"https://swap.onedex.app/pool", + "description":"Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/RARE pool on OneDex.", + "status":"active" +} diff --git a/tokens/PLATARARE-74cbeb/logo.png b/tokens/PLATARARE-74cbeb/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/PLATARARE-74cbeb/logo.png differ diff --git a/tokens/PLATARARE-74cbeb/logo.svg b/tokens/PLATARARE-74cbeb/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/PLATARARE-74cbeb/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/PLATAWEGLD-c5cb4e/info.json b/tokens/PLATAWEGLD-c5cb4e/info.json index b17e02061a..461bd8cc47 100644 --- a/tokens/PLATAWEGLD-c5cb4e/info.json +++ b/tokens/PLATAWEGLD-c5cb4e/info.json @@ -1,5 +1,5 @@ { - "website": "https://xexchange.com", - "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EGLD/PLATA pool on the xExchange.", + "website": "https://xexchange.com/pools/erd1qqqqqqqqqqqqqpgqy8ufy6h4uyxzjsxe0kzfszsjd7myphzz2jpsrf7hkv?firstToken=WEGLD-bd4d79&secondToken=PLATA-9ba6c3", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/EGLD pool on the xExchange.", "status": "active" -} \ No newline at end of file +} diff --git a/tokens/PLATAWEGLD-c5cb4e/logo.png b/tokens/PLATAWEGLD-c5cb4e/logo.png index 0ce39301b9..766cb4550a 100644 Binary files a/tokens/PLATAWEGLD-c5cb4e/logo.png and b/tokens/PLATAWEGLD-c5cb4e/logo.png differ diff --git a/tokens/PLATAWEGLD-c5cb4e/logo.svg b/tokens/PLATAWEGLD-c5cb4e/logo.svg index c205060245..b31631a544 100644 --- a/tokens/PLATAWEGLD-c5cb4e/logo.svg +++ b/tokens/PLATAWEGLD-c5cb4e/logo.svg @@ -1,11 +1,3 @@ - - - - - - - - - - - + + + \ No newline at end of file diff --git a/tokens/PLUTO-fbe1f1/info.json b/tokens/PLUTO-fbe1f1/info.json new file mode 100644 index 0000000000..c00978274d --- /dev/null +++ b/tokens/PLUTO-fbe1f1/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://explorer.multiversx.com/tokens/PLUTO-fbe1f1", + "description": "I AM A PLANET!!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/PLUTO-fbe1f1/logo.png b/tokens/PLUTO-fbe1f1/logo.png new file mode 100644 index 0000000000..fe1ad741eb Binary files /dev/null and b/tokens/PLUTO-fbe1f1/logo.png differ diff --git a/tokens/PLUTO-fbe1f1/logo.svg b/tokens/PLUTO-fbe1f1/logo.svg new file mode 100644 index 0000000000..268fe164f5 --- /dev/null +++ b/tokens/PLUTO-fbe1f1/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/tokens/PODGE-daf74a/info.json b/tokens/PODGE-daf74a/info.json new file mode 100644 index 0000000000..478d3a2102 --- /dev/null +++ b/tokens/PODGE-daf74a/info.json @@ -0,0 +1,8 @@ +{ + "website": "www.PepeOnDoge.com", + "description": "Pepe On Doge: When Legends Merge, Magic Happens. PODGE: Born from #PEPE and #DOGE teaming up to fix crypto! Double the fun and double the gains. Fair launch, 70% liquidity burned, 30% on MemeVerse.", + "status": "active", + "social": { + "telegram": "https://t.me/pepeondoge" + } +} diff --git a/tokens/PODGE-daf74a/logo.png b/tokens/PODGE-daf74a/logo.png new file mode 100644 index 0000000000..d11bde8c07 Binary files /dev/null and b/tokens/PODGE-daf74a/logo.png differ diff --git a/tokens/PODGE-daf74a/logo.svg b/tokens/PODGE-daf74a/logo.svg new file mode 100644 index 0000000000..00d1acff94 --- /dev/null +++ b/tokens/PODGE-daf74a/logo.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/POOPZ-981498/info.json b/tokens/POOPZ-981498/info.json new file mode 100644 index 0000000000..d06bfe860c --- /dev/null +++ b/tokens/POOPZ-981498/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://x.com/CryptoPittz", + "description": "$POOPZ: The Fun-Loving Meme Token of Pittz Nation! $POOPZ is here to keep the Pittz ecosystem fresh and fun! While $BONEZ handles the serious stuff, $POOPZ brings the chaos, laughs, and meme magic. Because sometimes, the best utility is just having a poopy good time. 💩", + "social": { + "twitter": "https://x.com/CryptoPittz", + "discord": "https://discord.gg/Nr7SxEWHMF" + }, + "status": "active" +} diff --git a/tokens/POOPZ-981498/logo.png b/tokens/POOPZ-981498/logo.png new file mode 100644 index 0000000000..41e0fb60dc Binary files /dev/null and b/tokens/POOPZ-981498/logo.png differ diff --git a/tokens/POOPZ-981498/logo.svg b/tokens/POOPZ-981498/logo.svg new file mode 100644 index 0000000000..34fefbb46f --- /dev/null +++ b/tokens/POOPZ-981498/logo.svg @@ -0,0 +1,318 @@ + + diff --git a/tokens/POPE-de9601/info.json b/tokens/POPE-de9601/info.json new file mode 100644 index 0000000000..ff419849e1 --- /dev/null +++ b/tokens/POPE-de9601/info.json @@ -0,0 +1,8 @@ +{ + "website": "www.pope.money", + "description": "$POPE. Bringing a fresh vibe on MultiversX by blending the iconic PEPE culture with Romania's vibrant community.", + "status": "active", + "social": { + "telegram": "t.me/PopeMvx" + } +} diff --git a/tokens/POPE-de9601/logo.png b/tokens/POPE-de9601/logo.png new file mode 100644 index 0000000000..a7fafea095 Binary files /dev/null and b/tokens/POPE-de9601/logo.png differ diff --git a/tokens/POPE-de9601/logo.svg b/tokens/POPE-de9601/logo.svg new file mode 100644 index 0000000000..16c3b073a2 --- /dev/null +++ b/tokens/POPE-de9601/logo.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/POXY-b4f837/info.json b/tokens/POXY-b4f837/info.json new file mode 100644 index 0000000000..53a4111a06 --- /dev/null +++ b/tokens/POXY-b4f837/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/PoxyonMvx" + }, + "website": "https://twitter.com/PoxyonMvx", + "description": "POXY is a new type of virus token from MultiversX that brings together memecoin and Nft cultures. Join this journey and support Poxy. Always on top!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/POXY-b4f837/logo.png b/tokens/POXY-b4f837/logo.png new file mode 100644 index 0000000000..8db154e10a Binary files /dev/null and b/tokens/POXY-b4f837/logo.png differ diff --git a/tokens/POXY-b4f837/logo.svg b/tokens/POXY-b4f837/logo.svg new file mode 100644 index 0000000000..de7ac903b5 --- /dev/null +++ b/tokens/POXY-b4f837/logo.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/PPHEAD-aa7404/info.json b/tokens/PPHEAD-aa7404/info.json new file mode 100644 index 0000000000..f967936f82 --- /dev/null +++ b/tokens/PPHEAD-aa7404/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "Jdndndnxkdmfkdkdndjdjdndnd", + "status": "active", + "social": { + "telegram": "https://t.me/pepinoheadxoin" + } +} diff --git a/tokens/PPHEAD-aa7404/logo.png b/tokens/PPHEAD-aa7404/logo.png new file mode 100644 index 0000000000..db75a86a3d Binary files /dev/null and b/tokens/PPHEAD-aa7404/logo.png differ diff --git a/tokens/PPHEAD-aa7404/logo.svg b/tokens/PPHEAD-aa7404/logo.svg new file mode 100644 index 0000000000..70a8e2cda9 --- /dev/null +++ b/tokens/PPHEAD-aa7404/logo.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/PRMS-6423d4/info.json b/tokens/PRMS-6423d4/info.json new file mode 100644 index 0000000000..842cf36446 --- /dev/null +++ b/tokens/PRMS-6423d4/info.json @@ -0,0 +1,7 @@ +{ + "social": { + "twitter": "https://twitter.com/PrimusVerso" + }, + "description": "Primus is the utility token of Moltiverso, enabling clients to seamlessly pay for a variety of digital services.", + "status": "inactive" +} \ No newline at end of file diff --git a/tokens/PRMS-6423d4/logo.png b/tokens/PRMS-6423d4/logo.png new file mode 100644 index 0000000000..409cd6edd8 Binary files /dev/null and b/tokens/PRMS-6423d4/logo.png differ diff --git a/tokens/PRMS-6423d4/logo.svg b/tokens/PRMS-6423d4/logo.svg new file mode 100644 index 0000000000..6bea6946df --- /dev/null +++ b/tokens/PRMS-6423d4/logo.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/QUBE-ee2704/info.json b/tokens/QUBE-ee2704/info.json new file mode 100644 index 0000000000..c94e69809e --- /dev/null +++ b/tokens/QUBE-ee2704/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://t.me/QUBEhouse", + "description": "Just an experiment. What would you do if you suddenly received a cube? An ultra rare collection for select collectors.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/QUBE-ee2704/logo.png b/tokens/QUBE-ee2704/logo.png new file mode 100644 index 0000000000..82a8279a64 Binary files /dev/null and b/tokens/QUBE-ee2704/logo.png differ diff --git a/tokens/QUBE-ee2704/logo.svg b/tokens/QUBE-ee2704/logo.svg new file mode 100644 index 0000000000..d463b07678 --- /dev/null +++ b/tokens/QUBE-ee2704/logo.svg @@ -0,0 +1,1107 @@ + + + + diff --git a/tokens/RACING-fc7ad4/info.json b/tokens/RACING-fc7ad4/info.json index eb79fd5640..18c08b3348 100644 --- a/tokens/RACING-fc7ad4/info.json +++ b/tokens/RACING-fc7ad4/info.json @@ -1,8 +1,10 @@ { - "social": { - "twitter": "https://twitter.com/plataNetwork" - }, - "website": "https://plata.network", - "description": "Plata Network Genesis Racing Cars", - "status": "active" -} \ No newline at end of file + "website": "https://linktr.ee/plataLinks", + "description": "Plata Network Genesis Racing Cars", + "social": { + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "blog": "https://drive.google.com/file/d/1n3QrgsO2jfXqrx_Qf8urnMnuFvD5JUMt/view?usp=sharing", + "twitter": "https://www.x.com/plataLegacy" + }, + "status": "active" +} diff --git a/tokens/RACING-fc7ad4/logo.png b/tokens/RACING-fc7ad4/logo.png index 2b5790fa6e..d87ce670e7 100644 Binary files a/tokens/RACING-fc7ad4/logo.png and b/tokens/RACING-fc7ad4/logo.png differ diff --git a/tokens/RACING-fc7ad4/logo.svg b/tokens/RACING-fc7ad4/logo.svg index 57fe7c0f2f..656c2dd9e1 100644 --- a/tokens/RACING-fc7ad4/logo.svg +++ b/tokens/RACING-fc7ad4/logo.svg @@ -1,509 +1,3 @@ - - - - + + + \ No newline at end of file diff --git a/tokens/REDSYNDX-83db40/info.json b/tokens/REDSYNDX-83db40/info.json new file mode 100644 index 0000000000..813b425cdf --- /dev/null +++ b/tokens/REDSYNDX-83db40/info.json @@ -0,0 +1,10 @@ +{ + "website": "https://syndicatemvx.com/", + "description": "First investment syndicate on MultiversX", + "ledgerSignature": "", + "social": { + "twitter": "https://x.com/syndicateMVX", + "telegram": "https://t.me/+OLpxjtX2z_ZhZmNk" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/REDSYNDX-83db40/logo.png b/tokens/REDSYNDX-83db40/logo.png new file mode 100644 index 0000000000..d50599aeee Binary files /dev/null and b/tokens/REDSYNDX-83db40/logo.png differ diff --git a/tokens/REDSYNDX-83db40/logo.svg b/tokens/REDSYNDX-83db40/logo.svg new file mode 100644 index 0000000000..91575e3cef --- /dev/null +++ b/tokens/REDSYNDX-83db40/logo.svg @@ -0,0 +1,869 @@ + + + + + + diff --git a/tokens/REVO-aef6ce/info.json b/tokens/REVO-aef6ce/info.json new file mode 100644 index 0000000000..6bb1f73d92 --- /dev/null +++ b/tokens/REVO-aef6ce/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "twitter": "https://x.com/revoscript_ai", + "linkedin": "https://github.com/revoscript" + }, + "website": "https://revoscript.com", + "description": "REVOSCRIPT AI aims to provide valuable tools for developers and regular users to easily enter to the crypto world and build on the blockchain with no code knowledge.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/REVO-aef6ce/logo.png b/tokens/REVO-aef6ce/logo.png new file mode 100644 index 0000000000..b0aadf28be Binary files /dev/null and b/tokens/REVO-aef6ce/logo.png differ diff --git a/tokens/REVO-aef6ce/logo.svg b/tokens/REVO-aef6ce/logo.svg new file mode 100644 index 0000000000..0a4d054ef4 --- /dev/null +++ b/tokens/REVO-aef6ce/logo.svg @@ -0,0 +1,118 @@ + + + + + + diff --git a/tokens/RICO-1c78ef/info.json b/tokens/RICO-1c78ef/info.json new file mode 100644 index 0000000000..bed7f625bd --- /dev/null +++ b/tokens/RICO-1c78ef/info.json @@ -0,0 +1,14 @@ +{ + "website":"https://swap.onedex.app/swap?firstToken=EGLD&secondToken=RICO-1c78ef&state=Pro&type=simple", + "description":"Rallying Intense Coin Operations on MultiversX. Powered by PLΛTΛ", + "social": { + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://x.com/plataNetwork" + }, + "lockedAccounts": { + "erd1qqqqqqqqqqqqqpgq5re66vt0dlee8v83dtyh6k54qqpjs3ketxfq9tcd29": "Staking", + "erd1qqqqqqqqqqqqqpgq85tlmqudva0fyawkkuc6qga60kclzyzj60ws7kxxf5": "xDrops", + "erd1ryuzf08m4senh22y3rz7yl3shmeser4m5rplafg0l5ldmptd455qlll7vq": "Burn Wallet" + }, + "status":"active" +} diff --git a/tokens/RICO-1c78ef/logo.png b/tokens/RICO-1c78ef/logo.png new file mode 100644 index 0000000000..674a137e2e Binary files /dev/null and b/tokens/RICO-1c78ef/logo.png differ diff --git a/tokens/RICO-1c78ef/logo.svg b/tokens/RICO-1c78ef/logo.svg new file mode 100644 index 0000000000..5725a11a57 --- /dev/null +++ b/tokens/RICO-1c78ef/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/RICOPLATA-4d7139/info.json b/tokens/RICOPLATA-4d7139/info.json new file mode 100644 index 0000000000..68f2d54a40 --- /dev/null +++ b/tokens/RICOPLATA-4d7139/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/RICO pool on OneDex.", + "status": "active" +} diff --git a/tokens/RICOPLATA-4d7139/logo.png b/tokens/RICOPLATA-4d7139/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/RICOPLATA-4d7139/logo.png differ diff --git a/tokens/RICOPLATA-4d7139/logo.svg b/tokens/RICOPLATA-4d7139/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/RICOPLATA-4d7139/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/RICOUSDC-2a5fad/info.json b/tokens/RICOUSDC-2a5fad/info.json new file mode 100644 index 0000000000..19b5fc93a8 --- /dev/null +++ b/tokens/RICOUSDC-2a5fad/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://xexchange.com/pools/erd1qqqqqqqqqqqqqpgquaven9g6s6wws9pzfw4qxxe7uag40h7a2jpsfvj5pf?firstToken=USDC-c76f1f&secondToken=RICO-1c78ef", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the RICO/USDC pool on xExchange.", + "status": "active" +} diff --git a/tokens/RICOUSDC-2a5fad/logo.png b/tokens/RICOUSDC-2a5fad/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/RICOUSDC-2a5fad/logo.png differ diff --git a/tokens/RICOUSDC-2a5fad/logo.svg b/tokens/RICOUSDC-2a5fad/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/RICOUSDC-2a5fad/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/RMTKT-ade0cf/info.json b/tokens/RMTKT-ade0cf/info.json new file mode 100644 index 0000000000..6f5e31486d --- /dev/null +++ b/tokens/RMTKT-ade0cf/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://dapp.eventivivi.it", + "description": "Win an all-inclusive trip in Rome for 2 people 3 days & other 32 minor prizes. This is the Second Edition of Roma Tickets.", + "social": { + "email": "oddapesnft@gmail.com", + "twitter": "https://x.com/OddApesGang", + "telegram": "https://t.me/evnftreal", + "discord": "https://discord.gg/evecosystem" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/RMTKT-ade0cf/logo.png b/tokens/RMTKT-ade0cf/logo.png new file mode 100644 index 0000000000..82c150ab95 Binary files /dev/null and b/tokens/RMTKT-ade0cf/logo.png differ diff --git a/tokens/RMTKT-ade0cf/logo.svg b/tokens/RMTKT-ade0cf/logo.svg new file mode 100644 index 0000000000..0851559631 --- /dev/null +++ b/tokens/RMTKT-ade0cf/logo.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/RONE-bb2e69/info.json b/tokens/RONE-bb2e69/info.json index f0440ce25f..9b05055ed7 100644 --- a/tokens/RONE-bb2e69/info.json +++ b/tokens/RONE-bb2e69/info.json @@ -4,5 +4,10 @@ }, "website": "https://onedex.app/", "description": "OneDex Governance Token ", - "status": "active" -} \ No newline at end of file + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/RONE-bb2e69", + "path": "0.usdPrice" + } +} diff --git a/tokens/ROSE-2570b6/info.json b/tokens/ROSE-2570b6/info.json index 2dc8e305af..f594bf45d3 100644 --- a/tokens/ROSE-2570b6/info.json +++ b/tokens/ROSE-2570b6/info.json @@ -1,8 +1,8 @@ { - "social": { - "twitter": "https://twitter.com/rosecoin5" - }, "website": "https://twitter.com/rosecoin5", "description": "🌹RoseCoin🌹\nCreated for those who want to give a 🌹 to their loved ones", - "status": "active" + "status": "active", + "social": { + "twitter": "https://twitter.com/rosecoin5" + } } \ No newline at end of file diff --git a/tokens/ROSE-2570b6/logo.png b/tokens/ROSE-2570b6/logo.png index 33a0371dcf..a929db8cf1 100644 Binary files a/tokens/ROSE-2570b6/logo.png and b/tokens/ROSE-2570b6/logo.png differ diff --git a/tokens/ROSE-2570b6/logo.svg b/tokens/ROSE-2570b6/logo.svg index eb74f1a6d5..3ea9e8cd08 100644 --- a/tokens/ROSE-2570b6/logo.svg +++ b/tokens/ROSE-2570b6/logo.svg @@ -1,3 +1,3 @@ - + diff --git a/tokens/RSH-458e62/info.json b/tokens/RSH-458e62/info.json index 9af53e6cc3..12c6ff812e 100644 --- a/tokens/RSH-458e62/info.json +++ b/tokens/RSH-458e62/info.json @@ -1,10 +1,10 @@ { + "website": "https://gildedsyndicate.com/", + "description": "The GildedShare is a SFT that provides rewards and passive income out of all Products of the GIldedSyndicate.", + "status": "active", "social": { - "blog": "https://xmag.store/blog", + "blog": "https://gildedsyndicate.com/", "twitter": "https://twitter.com/GildedSyndicate", "whitepaper": "https://gildedsyndicate.com/" - }, - "website": "https://gildedsyndicate.com/", - "description": "The GildedShare is a SFT that provides rewards and passive income out of all Products of the GIldedSyndicate.", - "status": "active" + } } \ No newline at end of file diff --git a/tokens/SALAD-6f0636/info.json b/tokens/SALAD-6f0636/info.json new file mode 100644 index 0000000000..d658bc8728 --- /dev/null +++ b/tokens/SALAD-6f0636/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "The first meme coin on MultiversX inspired by the crisp freshness of Caesar salads! Tossing humor, community, and blockchain innovation together for a deliciously fun crypto experience. 🚀✨", + "status": "active", + "social": { + "telegram": "https://t.me/+XquW3gdJrrJjMTk0" + } +} diff --git a/tokens/SALAD-6f0636/logo.png b/tokens/SALAD-6f0636/logo.png new file mode 100644 index 0000000000..62f5f094ca Binary files /dev/null and b/tokens/SALAD-6f0636/logo.png differ diff --git a/tokens/SALAD-6f0636/logo.svg b/tokens/SALAD-6f0636/logo.svg new file mode 100644 index 0000000000..1c666b50e8 --- /dev/null +++ b/tokens/SALAD-6f0636/logo.svg @@ -0,0 +1,64800 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/SANTAMUERT-6bbf1a/info.json b/tokens/SANTAMUERT-6bbf1a/info.json new file mode 100644 index 0000000000..aa8140f31e --- /dev/null +++ b/tokens/SANTAMUERT-6bbf1a/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://www.elrondsynths.xyz/", + "description": "Synth Santa Muerte is an artistic collection consisting of 999 high quality 3D modeled artworks celebrating Dia de Los Muertos and the pop culture around Santa Muerte", + "social": { + "twitter": "https://twitter.com/eSynths", + "discord": "https://discord.com/invite/mEtZSEHysZ" + }, + "status": "active" +} diff --git a/tokens/SANTAMUERT-6bbf1a/logo.png b/tokens/SANTAMUERT-6bbf1a/logo.png new file mode 100644 index 0000000000..96743010bc Binary files /dev/null and b/tokens/SANTAMUERT-6bbf1a/logo.png differ diff --git a/tokens/SANTAMUERT-6bbf1a/logo.svg b/tokens/SANTAMUERT-6bbf1a/logo.svg new file mode 100644 index 0000000000..ec76dfccc7 --- /dev/null +++ b/tokens/SANTAMUERT-6bbf1a/logo.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/tokens/SATOMI-7c27f5/info.json b/tokens/SATOMI-7c27f5/info.json new file mode 100644 index 0000000000..a66c439f9e --- /dev/null +++ b/tokens/SATOMI-7c27f5/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/SatomiMvx" + }, + "website": "https://x.com/SatomiMvx", + "description": "\"Winged Ascension\" is the first NFT in the SatOmi collection, representing the rise of AI-powered potential.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/SATOMI-7c27f5/logo.png b/tokens/SATOMI-7c27f5/logo.png new file mode 100644 index 0000000000..d50e40b460 Binary files /dev/null and b/tokens/SATOMI-7c27f5/logo.png differ diff --git a/tokens/SATOMI-7c27f5/logo.svg b/tokens/SATOMI-7c27f5/logo.svg new file mode 100644 index 0000000000..ee52394c5f --- /dev/null +++ b/tokens/SATOMI-7c27f5/logo.svg @@ -0,0 +1,49 @@ + + + + + + + + + + diff --git a/tokens/SATOMI-d2964e/info.json b/tokens/SATOMI-d2964e/info.json new file mode 100644 index 0000000000..de2134b1b4 --- /dev/null +++ b/tokens/SATOMI-d2964e/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/SatomiMvx" + }, + "website": "https://x.com/SatomiMvx", + "description": "Satomi Token represents an innovative approach in blockchain technology, designed for enhancing user engagement and awareness through an AI-driven virtual character.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/SATOMI-d2964e/logo.png b/tokens/SATOMI-d2964e/logo.png new file mode 100644 index 0000000000..d50e40b460 Binary files /dev/null and b/tokens/SATOMI-d2964e/logo.png differ diff --git a/tokens/SATOMI-d2964e/logo.svg b/tokens/SATOMI-d2964e/logo.svg new file mode 100644 index 0000000000..ee52394c5f --- /dev/null +++ b/tokens/SATOMI-d2964e/logo.svg @@ -0,0 +1,49 @@ + + + + + + + + + + diff --git a/tokens/SENTINELS-1054d2/info.json b/tokens/SENTINELS-1054d2/info.json new file mode 100644 index 0000000000..ded2cdb585 --- /dev/null +++ b/tokens/SENTINELS-1054d2/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://holobots.gitbook.io/holobots", + "twitter": "https://x.com/holobotsX" + }, + "website": "https://holobots.gitbook.io/holobots", + "description": "HoloBots are unique, hyper-realistic 3D robots, designed to offer a fresh perspective on the world of digital art. Every bot in our collection is a one-of-a-kind creation, built with care and precision to deliver a captivating visual experience. From sleek, futuristic designs to intricate mechanical details, each bot is a masterpiece that pushes the boundaries of digital craftsmanship.\n\nWhether you're a seasoned NFT collector, a tech enthusiast, or someone simply curious about the future of art, there’s a HoloBot waiting to spark your imagination.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/SENTINELS-1054d2/logo.png b/tokens/SENTINELS-1054d2/logo.png new file mode 100644 index 0000000000..a4212ccf12 Binary files /dev/null and b/tokens/SENTINELS-1054d2/logo.png differ diff --git a/tokens/SENTINELS-1054d2/logo.svg b/tokens/SENTINELS-1054d2/logo.svg new file mode 100644 index 0000000000..742ed5cc9f --- /dev/null +++ b/tokens/SENTINELS-1054d2/logo.svg @@ -0,0 +1,975 @@ + + + + diff --git a/tokens/SGX-a25a9c/info.json b/tokens/SGX-a25a9c/info.json new file mode 100644 index 0000000000..c46b27aa1b --- /dev/null +++ b/tokens/SGX-a25a9c/info.json @@ -0,0 +1,20 @@ +{ + "website": "https://starlessx.com/", + "description": "StarlessX Gaming Token (SGX) allows earning tokens through games and activities, removing the need for initial investments and offering a safe environment for exploring cryptocurrencies.", + "social": { + "email": "contact@starlessx.com", + "whitepaper": "https://starlessx.com/whitepaper", + "twitter": "https://x.com/StarlessXCore", + "instagram": "https://www.instagram.com/starlessxcore" + }, + "lockedAccounts": { + "erd1kssna3tl94we9ym4djg3dexuh7wvtuupnxh85lpcadjachzn4upsxx6wyu": "Core Team", + "erd17dq5dsxa4rpcukqljnlh2mwp7j57han6rfl0g4089kzpgr9r6jaqkv2f2z": "ICO Tokens", + "erd1rg70hnjghnph0v6l3rrdmtk5ff54xu87vdzr9lfunyjw05769czscraqxp": "Marketing & Development", + "erd19e6g9p734zjye23qmsgn6xjflz3jyydrmuc9a9edwenqvw7y9sus060lyq": "Gaming Rewards", + "erd17vpa3jqlu3cwwmcgn9wm7hxtsp8sy8l8w8tqv9zjlalayvaqjvps2l9d49": "Liquidity Pool", + "erd1ngtc723x79rmjqyykahuy2wskh2s8486pa9pe5fueqt5gtu59zxskhfvlw": "Airdrop", + "erd1nggawusxws5gatpu4a07v9llhwlgegwl4pgts07gxd4pn9kcppuszm8ca4": "Special Partnership" + }, + "status": "active" +} diff --git a/tokens/SGX-a25a9c/logo.png b/tokens/SGX-a25a9c/logo.png new file mode 100644 index 0000000000..b3e9a25ed3 Binary files /dev/null and b/tokens/SGX-a25a9c/logo.png differ diff --git a/tokens/SGX-a25a9c/logo.svg b/tokens/SGX-a25a9c/logo.svg new file mode 100644 index 0000000000..5a392c20b5 --- /dev/null +++ b/tokens/SGX-a25a9c/logo.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + diff --git a/tokens/SLOTH-04d857/info.json b/tokens/SLOTH-04d857/info.json new file mode 100644 index 0000000000..9ee552f306 --- /dev/null +++ b/tokens/SLOTH-04d857/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "$SLOTH the Believer 🦥 – The meme-driven token that represents vision, patience, and trust on the path to greatness!🌳", + "status": "active", + "social": { + "telegram": "https://t.me/+4s9ADoC0LNg5YTM0" + } +} diff --git a/tokens/SLOTH-04d857/logo.png b/tokens/SLOTH-04d857/logo.png new file mode 100644 index 0000000000..16a7ace8fe Binary files /dev/null and b/tokens/SLOTH-04d857/logo.png differ diff --git a/tokens/SLOTH-04d857/logo.svg b/tokens/SLOTH-04d857/logo.svg new file mode 100644 index 0000000000..8e9b968bd9 --- /dev/null +++ b/tokens/SLOTH-04d857/logo.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/SNIPERX-2c2570/info.json b/tokens/SNIPERX-2c2570/info.json new file mode 100644 index 0000000000..e76b5a636e --- /dev/null +++ b/tokens/SNIPERX-2c2570/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "blog": "https://t.me/snipermvx" + }, + "website": "https://sniperx.live/", + "description": "Main token for automated trading platform!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/SNIPERX-2c2570/logo.png b/tokens/SNIPERX-2c2570/logo.png new file mode 100644 index 0000000000..f2c50060f6 Binary files /dev/null and b/tokens/SNIPERX-2c2570/logo.png differ diff --git a/tokens/SNIPERX-2c2570/logo.svg b/tokens/SNIPERX-2c2570/logo.svg new file mode 100644 index 0000000000..9b626691c7 --- /dev/null +++ b/tokens/SNIPERX-2c2570/logo.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/SNOOPDOGE-517c13/info.json b/tokens/SNOOPDOGE-517c13/info.json new file mode 100644 index 0000000000..0cd8797ce0 --- /dev/null +++ b/tokens/SNOOPDOGE-517c13/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://www.xsnoopdoge.com", + "description": "Once upon a blockchain, in a galaxy not so far away, Snoop and Doge found themselves at the ultimate jam session. The beat was hot, the vibe was chill, and from this legendary meeting, SnoopDoge was born!\n\nPicture this: Snoop, with his laid-back rhymes, and Doge, with his ever-astonished expression, decided to blend their iconic legacies into the world's most lit memecoin. SnoopDoge isn't just a coin; it's a lifestyle, a meme, a movement.", + "status": "active", + "social": { + "telegram": "https://t.me/+euOV8kCJrII2ZTg8" + } +} diff --git a/tokens/SNOOPDOGE-517c13/logo.png b/tokens/SNOOPDOGE-517c13/logo.png new file mode 100644 index 0000000000..95fd819445 Binary files /dev/null and b/tokens/SNOOPDOGE-517c13/logo.png differ diff --git a/tokens/SNOOPDOGE-517c13/logo.svg b/tokens/SNOOPDOGE-517c13/logo.svg new file mode 100644 index 0000000000..1fa2121dba --- /dev/null +++ b/tokens/SNOOPDOGE-517c13/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/SONORA-b7be79/info.json b/tokens/SONORA-b7be79/info.json new file mode 100644 index 0000000000..29a8422a93 --- /dev/null +++ b/tokens/SONORA-b7be79/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/S0N0RALab" + }, + "website": "https://www.youtube.com/@SONORA-Lab", + "description": "SONORA Lab🎧 presents a sonic playground for the curious. We're not afraid to experiment, to break the rules, and to see what happens when we let creativity run wild. Follow us for a regular dose of the unexpected.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/SONORA-b7be79/logo.png b/tokens/SONORA-b7be79/logo.png new file mode 100644 index 0000000000..21435ae4cd Binary files /dev/null and b/tokens/SONORA-b7be79/logo.png differ diff --git a/tokens/SONORA-b7be79/logo.svg b/tokens/SONORA-b7be79/logo.svg new file mode 100644 index 0000000000..4bac505a2c --- /dev/null +++ b/tokens/SONORA-b7be79/logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/tokens/SPUNKY-a27560/info.json b/tokens/SPUNKY-a27560/info.json new file mode 100644 index 0000000000..b6f489b101 --- /dev/null +++ b/tokens/SPUNKY-a27560/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "Unborn son of Bates, Master Bates, just a concept looking for release.", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/SPUNKY-a27560/logo.png b/tokens/SPUNKY-a27560/logo.png new file mode 100644 index 0000000000..bf88ac15c5 Binary files /dev/null and b/tokens/SPUNKY-a27560/logo.png differ diff --git a/tokens/SPUNKY-a27560/logo.svg b/tokens/SPUNKY-a27560/logo.svg new file mode 100644 index 0000000000..90320cd117 --- /dev/null +++ b/tokens/SPUNKY-a27560/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/SPUNKYINU-96ddc6/info.json b/tokens/SPUNKYINU-96ddc6/info.json new file mode 100644 index 0000000000..edae5fdea5 --- /dev/null +++ b/tokens/SPUNKYINU-96ddc6/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "A cross breed coin of MasterBates Spunky and all Dog INU meme coins, the ultimate abomination.", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/SPUNKYINU-96ddc6", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/SPUNKYINU-96ddc6/logo.png b/tokens/SPUNKYINU-96ddc6/logo.png new file mode 100644 index 0000000000..9837b2b1bb Binary files /dev/null and b/tokens/SPUNKYINU-96ddc6/logo.png differ diff --git a/tokens/SPUNKYINU-96ddc6/logo.svg b/tokens/SPUNKYINU-96ddc6/logo.svg new file mode 100644 index 0000000000..7aae9afd00 --- /dev/null +++ b/tokens/SPUNKYINU-96ddc6/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/SQUARE-b57890/info.json b/tokens/SQUARE-b57890/info.json new file mode 100644 index 0000000000..69b219bc08 --- /dev/null +++ b/tokens/SQUARE-b57890/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/ilcriptonauta" + }, + "website": "https://qube-5.gitbook.io/qube", + "description": "Only 6 million coins forged by Qubots from M43 material. Experimental, rare and durable coin. First free distribution for Qubers.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/SQUARE-b57890/logo.png b/tokens/SQUARE-b57890/logo.png new file mode 100644 index 0000000000..cc0a066f54 Binary files /dev/null and b/tokens/SQUARE-b57890/logo.png differ diff --git a/tokens/SQUARE-b57890/logo.svg b/tokens/SQUARE-b57890/logo.svg new file mode 100644 index 0000000000..0a76b1dd4e --- /dev/null +++ b/tokens/SQUARE-b57890/logo.svg @@ -0,0 +1,1260 @@ + + + + diff --git a/tokens/STADA-833615/info.json b/tokens/STADA-833615/info.json new file mode 100644 index 0000000000..317f611346 --- /dev/null +++ b/tokens/STADA-833615/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://xexchange.com", + "description": "This token tracks your TADA stake in the TADA staking farm on the xExchange.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/STADA-833615/logo.png b/tokens/STADA-833615/logo.png new file mode 100644 index 0000000000..d3ca07903c Binary files /dev/null and b/tokens/STADA-833615/logo.png differ diff --git a/tokens/STADA-833615/logo.svg b/tokens/STADA-833615/logo.svg new file mode 100644 index 0000000000..8f25d77257 --- /dev/null +++ b/tokens/STADA-833615/logo.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/tokens/STAY-b20185/info.json b/tokens/STAY-b20185/info.json new file mode 100644 index 0000000000..1337f5f671 --- /dev/null +++ b/tokens/STAY-b20185/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/STAYAIprotocol" + }, + "website": "https://stayai.online/", + "description": "Let the AI trade for you while you enjoy your life – rewards await, no matter how the market moves. Welcome to a new era, where every trade can be a winning one! Time has never been so rewarding.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/STAY-b20185/logo.png b/tokens/STAY-b20185/logo.png new file mode 100644 index 0000000000..93c496ba4b Binary files /dev/null and b/tokens/STAY-b20185/logo.png differ diff --git a/tokens/STAY-b20185/logo.svg b/tokens/STAY-b20185/logo.svg new file mode 100644 index 0000000000..0863becd48 --- /dev/null +++ b/tokens/STAY-b20185/logo.svg @@ -0,0 +1,9 @@ + + logo + + + + + + \ No newline at end of file diff --git a/tokens/STONED-1afaaf/info.json b/tokens/STONED-1afaaf/info.json new file mode 100644 index 0000000000..1c20d9c621 --- /dev/null +++ b/tokens/STONED-1afaaf/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "$STONED - The token for those who want to aim \"high\"!\ud83e\udeb4", + "social": { + "telegram": "https://t.me/+NwSxx0wryiMyZDQ0", + "twitter": "https://x.com/STONED_MVX" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/STONED-1afaaf", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/STONED-1afaaf/logo.png b/tokens/STONED-1afaaf/logo.png new file mode 100644 index 0000000000..70b8d17c54 Binary files /dev/null and b/tokens/STONED-1afaaf/logo.png differ diff --git a/tokens/STONED-1afaaf/logo.svg b/tokens/STONED-1afaaf/logo.svg new file mode 100644 index 0000000000..052df3ffd2 --- /dev/null +++ b/tokens/STONED-1afaaf/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/SUPERPOWER-6f4cee/info.json b/tokens/SUPERPOWER-6f4cee/info.json index f0f636d27a..f645005a79 100644 --- a/tokens/SUPERPOWER-6f4cee/info.json +++ b/tokens/SUPERPOWER-6f4cee/info.json @@ -1,6 +1,6 @@ { "website": "https://peerme.io", - "description": "The SUPERPOWER token is a reward token received for boosting DAOs on PeerMe.io. It may come with certain utilities.", + "description": "The SUPERPOWER token has evolved into trust points. Please migrate your tokens on https://peerme.io/migrate-power", "social": { "email": "hello@peerme.io", "twitter": "https://twitter.com/PeerMeHQ", diff --git a/tokens/SYNDX-bcecfa/info.json b/tokens/SYNDX-bcecfa/info.json index 813b425cdf..52d2837994 100644 --- a/tokens/SYNDX-bcecfa/info.json +++ b/tokens/SYNDX-bcecfa/info.json @@ -6,5 +6,15 @@ "twitter": "https://x.com/syndicateMVX", "telegram": "https://t.me/+OLpxjtX2z_ZhZmNk" }, - "status": "active" -} \ No newline at end of file + "status": "active", + "lockedAccounts": { + "erd1qqqqqqqqqqqqqpgqqnm3x37972323nuv3l3kywev0n8q5n6gyc8qwljqz9": "Coindrip Streaming Protocol Seed Sale", + "erd1ngg6zj409qd32ef048nu3at2jaehssez8pmvcq3x4pcjvcma3peqagueg8": "Private Sale", + "erd1fqen50hz7ye5nryyaagwhfw5gxvq3v47zx6r86dg073eg26hz9esw6vnqz": "Reserves", + "erd1jmwtzmfvtvuueas4kxlp4pa653a6agv82sy4yrpcphz65x8rap8szr2s7u": "Ecosystem/Marketing", + "erd19j4l0xv9tf5yxl56qujk8e4ze7nnzeugrvtv5kyvyhxyama2v4mqlujsul": "Blue SyndicateX", + "erd1p4lcukp8ygdxa0d2l0qjua9kjerhmymth5u8tdpz6gqfymxzejdql820ay": "Red SyndicateX", + "erd1j8la2922smtg7lw6a0ndwnmeg46lvfwthjg5svm3qrld7eyjcg8qmeetlg": "Pink SyndicateX", + "erd1fvvnwgt5erexzt5q5fhgnp2xghd67s9afyjdju5dz27njkq5nl0qwlu39l": "Team Fee" + } +} diff --git a/tokens/TADA-5c032c/info.json b/tokens/TADA-5c032c/info.json index 6a91f2f6b1..2a09d0e673 100644 --- a/tokens/TADA-5c032c/info.json +++ b/tokens/TADA-5c032c/info.json @@ -10,6 +10,12 @@ "lockedAccounts": { "erd1qqqqqqqqqqqqqpgq2jjxnsa025me89a4pe5az9dujz28us7t60wsz3mcxs": "Vesting", "erd1qqqqqqqqqqqqqpgqp8v47r80n2see9a2g77j3qm56gyz279aa7aq460szc": "Launchpad", - "erd1ec8xj629h55d7v7s6fz39h690vk9zs5dvdxk8lp4ct9k6vhgttuqaaj34x": "Token" + "erd1ec8xj629h55d7v7s6fz39h690vk9zs5dvdxk8lp4ct9k6vhgttuqaaj34x": "Token", + "erd1jpl9j43009umxt95y2f434zu4ydus9dq9q936haq5yk7cduvjzyq77zc29": "Vested Treasury", + "erd175an8tzc3z6s6d9n4estrclja9xapgmf0gctar2sx9p8xg2kmqas6lc3k5": "Vested Community", + "erd1z4zcmxqflfxcmvt5l89dj37q896ylhfjnz0hwkhkyyjqkav8gums4qarj2": "Vested Ecosystem", + "erd1h646907zl973t8x53xd9zzklm84tumunc70lcgtjq30ue07clpmqd0q6xp": "Vested Advisor", + "erd1a5adfzswmy0c2c23tl82l2rc888d6t4h4l044kkvsl065ej2z3ssddesj0": "Vested Team", + "erd14ncar6q8eguaj2qkp3l48v32g3alpq0604w6saj6qr86t8ldgzrskhaj56": "Vested Growth" } } \ No newline at end of file diff --git a/tokens/TALION-496bab/info.json b/tokens/TALION-496bab/info.json index 237137b31a..fce9059491 100644 --- a/tokens/TALION-496bab/info.json +++ b/tokens/TALION-496bab/info.json @@ -1,8 +1,8 @@ { "social": { - "blog": "https://discord.gg/NNaFmH7gZh", - "twitter": "https://twitter.com/WizardsWars", - "whitepaper": "https://www.wizardswars.com/files/wp.pdf" + "blog": "https://discord.gg/KS5T2uns44", + "twitter": "https://x.com/wizardswarsnft", + "whitepaper": "https://wizards-wars.gitbook.io/wizards-wars" }, "website": "https://www.wizardswars.com/", "description": "Le talion est le token utilitaire du projet Wizard's Wars, il permet l'économie interne au jeu et récompense les joueurs.", diff --git a/tokens/TLK-69721f/info.json b/tokens/TLK-69721f/info.json new file mode 100644 index 0000000000..50adf18486 --- /dev/null +++ b/tokens/TLK-69721f/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "twitter": "https://twitter.com/thepawnlegion", + "whitepaper": "https://t.co/iHqUrH1727" + }, + "website": "https://xoxno.com/collection/TLK-69721f/activity", + "description": "The League of Kings - Limited Edition of 60 branded NFTs! All NFTs are backed 100% with redeemable EGLD!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/TLK-69721f/logo.png b/tokens/TLK-69721f/logo.png new file mode 100644 index 0000000000..736e46532f Binary files /dev/null and b/tokens/TLK-69721f/logo.png differ diff --git a/tokens/TLK-69721f/logo.svg b/tokens/TLK-69721f/logo.svg new file mode 100644 index 0000000000..c96df3c0c8 --- /dev/null +++ b/tokens/TLK-69721f/logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/tokens/TMT-fc55e9/info.json b/tokens/TMT-fc55e9/info.json new file mode 100644 index 0000000000..66f22549ad --- /dev/null +++ b/tokens/TMT-fc55e9/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/oni0nx" + }, + "website": "https://project-onionx.gitbook.io/onionx", + "description": "Official OnionX Memecoin. Tomato will be explosive! 🧨", + "status": "active" +} \ No newline at end of file diff --git a/tokens/TMT-fc55e9/logo.png b/tokens/TMT-fc55e9/logo.png new file mode 100644 index 0000000000..609e10d12e Binary files /dev/null and b/tokens/TMT-fc55e9/logo.png differ diff --git a/tokens/TMT-fc55e9/logo.svg b/tokens/TMT-fc55e9/logo.svg new file mode 100644 index 0000000000..2c918515ff --- /dev/null +++ b/tokens/TMT-fc55e9/logo.svg @@ -0,0 +1,1015 @@ + + + + diff --git a/tokens/TNX-560d6c/info.json b/tokens/TNX-560d6c/info.json new file mode 100644 index 0000000000..8354024ca6 --- /dev/null +++ b/tokens/TNX-560d6c/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/MultumescX" + }, + "website": "https://twitter.com/MultumescX", + "description": "MultumescX with $TNX is for you, whether you're a die-hard supporter or a dedicated hater of MultiversX. Contribute to this beautiful ecosystem. With a supply equivalent to the total supply of EGLD, let's see how far we can push the price. The challenge is to make EGLD = TNX, so try to hold TNX at least equivalent to your EGLD holdings.", + "status": "active" +} \ No newline at end of file diff --git a/tokens/TNX-560d6c/logo.png b/tokens/TNX-560d6c/logo.png new file mode 100644 index 0000000000..15c331d882 Binary files /dev/null and b/tokens/TNX-560d6c/logo.png differ diff --git a/tokens/TNX-560d6c/logo.svg b/tokens/TNX-560d6c/logo.svg new file mode 100644 index 0000000000..5863943c89 --- /dev/null +++ b/tokens/TNX-560d6c/logo.svg @@ -0,0 +1,263 @@ + + + + diff --git a/tokens/TODAY-b020d1/info.json b/tokens/TODAY-b020d1/info.json new file mode 100644 index 0000000000..c2d647a7e6 --- /dev/null +++ b/tokens/TODAY-b020d1/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "They laughed at Doge. They laughed at Shiba. Don\u2019t let them laugh at you when TODAY becomes the next big meme coin! \n#TodayToTheMoon", + "social": { + "telegram": "", + "twitter": "" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/TODAY-b020d1", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/TODAY-b020d1/logo.png b/tokens/TODAY-b020d1/logo.png new file mode 100644 index 0000000000..0fd9871177 Binary files /dev/null and b/tokens/TODAY-b020d1/logo.png differ diff --git a/tokens/TODAY-b020d1/logo.svg b/tokens/TODAY-b020d1/logo.svg new file mode 100644 index 0000000000..79784f51b8 --- /dev/null +++ b/tokens/TODAY-b020d1/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/TST-12a799/info.json b/tokens/TST-12a799/info.json new file mode 100644 index 0000000000..48caa495c1 --- /dev/null +++ b/tokens/TST-12a799/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://x.com/Test_TokenMVX", + "description": "Test Token built on MVX. Providing a functional ESDT for any Educational Purposes or experiments.", + "status": "active", + "lockedAccounts": { + "erd1dhpzga0cheq2u3mvr647xqec6wtemmjdw3zlcflan8drt7py62ksxcp78w": "Burned Tokens" + }, + "social": { + "twitter": "https://twitter.com/Test_TokenMVX" + } +} \ No newline at end of file diff --git a/tokens/TST-12a799/logo.png b/tokens/TST-12a799/logo.png new file mode 100644 index 0000000000..f2dbdf1e4b Binary files /dev/null and b/tokens/TST-12a799/logo.png differ diff --git a/tokens/TST-12a799/logo.svg b/tokens/TST-12a799/logo.svg new file mode 100644 index 0000000000..be83b67996 --- /dev/null +++ b/tokens/TST-12a799/logo.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/USG-56484c/logo.svg b/tokens/USG-56484c/logo.svg index 021bdc1bc9..7b384a7e17 100644 --- a/tokens/USG-56484c/logo.svg +++ b/tokens/USG-56484c/logo.svg @@ -1,95 +1,86 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/UXOXNO-e17bc8/info.json b/tokens/UXOXNO-e17bc8/info.json new file mode 100644 index 0000000000..9433d5b6c6 --- /dev/null +++ b/tokens/UXOXNO-e17bc8/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://xoxno.com", + "description": "Unbound XOXNO is the official collection issued by XOXNO: Real Yield Staking during the unstaking process. Each token in this collection is unique and contains vital metadata, including the amount of shares unstaked, release time, and the original token amount to be received once the release time has passed. These tokens provide a secure and transparent way to track unstaking operations within the XOXNO ecosystem.", + "social": { + "email": "contact@xoxno.com", + "telegram": "https://xoxno.t.me", + "github": "https://github.com/xoxno", + "discord": "https://discord.gg/xoxno", + "twitter": "https://x.com/XoxnoNetwork", + "whitepaper": "https://xoxno.com/whitepaper", + "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/", + "coingecko": "https://www.coingecko.com/en/coins/xoxno" + }, + "status": "active" +} diff --git a/tokens/UXOXNO-e17bc8/logo.png b/tokens/UXOXNO-e17bc8/logo.png new file mode 100644 index 0000000000..75f1a40be0 Binary files /dev/null and b/tokens/UXOXNO-e17bc8/logo.png differ diff --git a/tokens/UXOXNO-e17bc8/logo.svg b/tokens/UXOXNO-e17bc8/logo.svg new file mode 100644 index 0000000000..175e38bfed --- /dev/null +++ b/tokens/UXOXNO-e17bc8/logo.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/VEROC-d3d6ca/info.json b/tokens/VEROC-d3d6ca/info.json new file mode 100644 index 0000000000..feb12017dc --- /dev/null +++ b/tokens/VEROC-d3d6ca/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "Daniel Veroc: The true TOP G, the Michael Saylor & Roaring Kitty of #EGLD in one person. Founder of the #EGLDSqueeze movement, uniting the community, bringing strength and positivity. With him, we’ll take community marketing to the next level! Let’s push him to the moon. He says, “Apes together, strong. Ape alone, weak. Position yourself where the puck is going and wait in the goal until it gets there. We don’t worry. We just win.", + "status": "active", + "social": { + "telegram": "https://t.me/egldsqueeze" + } +} diff --git a/tokens/VEROC-d3d6ca/logo.png b/tokens/VEROC-d3d6ca/logo.png new file mode 100644 index 0000000000..519a2934ff Binary files /dev/null and b/tokens/VEROC-d3d6ca/logo.png differ diff --git a/tokens/VEROC-d3d6ca/logo.svg b/tokens/VEROC-d3d6ca/logo.svg new file mode 100644 index 0000000000..131d26aef1 --- /dev/null +++ b/tokens/VEROC-d3d6ca/logo.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/VICTOR-9fa27f/info.json b/tokens/VICTOR-9fa27f/info.json new file mode 100644 index 0000000000..58b21e2b44 --- /dev/null +++ b/tokens/VICTOR-9fa27f/info.json @@ -0,0 +1,19 @@ +{ + "website": "https://supervictornft.com", + "description": "VICTOR is a utility token powering the SuperVictor Universe ecosystem.", + "status": "active", + "website2": "https://supervictoruniverse.com", + "social": { + "email": "supervictoruniverse@gmail.com", + "twitter": "https://twitter.com/SVictorUniverse", + "discord": "https://discord.gg/w6FhnKryGd", + "whitepaper": "https://supervictoruniverse.gitbook.io/super-victor-universe" + }, + "lockedAccounts": { + "erd1202azk6fzy3lwrjka48pph6adhly8f69t2r33e9372yfqchlmwesrqrdzs": "SVU Development", + "erd10g0phds60v99jk0t8fk8rh3avtlpdadweaxlzz8pg9khn6cnlthsruwxnz": "SVU Growth and Strategic Reserve", + "erd1qy65fax5cqs6ar6j8qkls8dttwscjmnc3hwycvjh8fn0wyvc5zmqvfc2t5": "SVU Treasury", + "erd1kh5cerkgttzvqul85p9ts3pnjz0l70wmhrk77qdjqjy3l6ha4pysczpyfe": "SVU Team", + "erd1e7ffczdzaj7xa95elrhep9uycvg5f0krf2ucys4d8tvrjtqswtnqnkke5n": "SVU Tools and Rewards" + } +} \ No newline at end of file diff --git a/tokens/VICTOR-9fa27f/logo.png b/tokens/VICTOR-9fa27f/logo.png new file mode 100644 index 0000000000..d3f04559dc Binary files /dev/null and b/tokens/VICTOR-9fa27f/logo.png differ diff --git a/tokens/VICTOR-9fa27f/logo.svg b/tokens/VICTOR-9fa27f/logo.svg new file mode 100644 index 0000000000..98a1c0b020 --- /dev/null +++ b/tokens/VICTOR-9fa27f/logo.svg @@ -0,0 +1,49 @@ + + + + + + + + + + diff --git a/tokens/VLRAI-ba47e4/info.json b/tokens/VLRAI-ba47e4/info.json new file mode 100644 index 0000000000..f8abad34a6 --- /dev/null +++ b/tokens/VLRAI-ba47e4/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/vlr-ai", + "description": "ValoroAI is the token of the Valoro AI Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRAI-ba47e4", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/VLRAI-ba47e4/logo.png b/tokens/VLRAI-ba47e4/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRAI-ba47e4/logo.png differ diff --git a/tokens/VLRAI-ba47e4/logo.svg b/tokens/VLRAI-ba47e4/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRAI-ba47e4/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRDEFI-e83c76/info.json b/tokens/VLRDEFI-e83c76/info.json new file mode 100644 index 0000000000..9f1e6754dc --- /dev/null +++ b/tokens/VLRDEFI-e83c76/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/defi", + "description": "ValoroDeFi is the token of the Valoro DeFi Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRDEFI-e83c76", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/VLRDEFI-e83c76/logo.png b/tokens/VLRDEFI-e83c76/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRDEFI-e83c76/logo.png differ diff --git a/tokens/VLRDEFI-e83c76/logo.svg b/tokens/VLRDEFI-e83c76/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRDEFI-e83c76/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRGROWTH-793437/info.json b/tokens/VLRGROWTH-793437/info.json new file mode 100644 index 0000000000..a9fc1be6e0 --- /dev/null +++ b/tokens/VLRGROWTH-793437/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/growth", + "description": "ValoroGrowth is the token of the Valoro Growth Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRGROWTH-793437", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/VLRGROWTH-793437/logo.png b/tokens/VLRGROWTH-793437/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRGROWTH-793437/logo.png differ diff --git a/tokens/VLRGROWTH-793437/logo.svg b/tokens/VLRGROWTH-793437/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRGROWTH-793437/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRHEAVEN-57ca3d/info.json b/tokens/VLRHEAVEN-57ca3d/info.json new file mode 100644 index 0000000000..ebed7b2bdf --- /dev/null +++ b/tokens/VLRHEAVEN-57ca3d/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/heaven", + "description": "ValoroHeaven is the token of the Valoro Heaven Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRHEAVEN-57ca3d", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/VLRHEAVEN-57ca3d/logo.png b/tokens/VLRHEAVEN-57ca3d/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRHEAVEN-57ca3d/logo.png differ diff --git a/tokens/VLRHEAVEN-57ca3d/logo.svg b/tokens/VLRHEAVEN-57ca3d/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRHEAVEN-57ca3d/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRMEME-31443f/info.json b/tokens/VLRMEME-31443f/info.json new file mode 100644 index 0000000000..701f2a9e88 --- /dev/null +++ b/tokens/VLRMEME-31443f/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/memex", + "description": "ValoroMEME is the token of the Valoro MemeX Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRMEME-31443f", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/VLRMEME-31443f/logo.png b/tokens/VLRMEME-31443f/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRMEME-31443f/logo.png differ diff --git a/tokens/VLRMEME-31443f/logo.svg b/tokens/VLRMEME-31443f/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRMEME-31443f/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRMEME2-34a0b2/info.json b/tokens/VLRMEME2-34a0b2/info.json new file mode 100644 index 0000000000..c40c379b73 --- /dev/null +++ b/tokens/VLRMEME2-34a0b2/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/memextreme", + "description": "ValoroMeme2 is the token of the Valoro MemeXtreme Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRMEME2-34a0b2", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/VLRMEME2-34a0b2/logo.png b/tokens/VLRMEME2-34a0b2/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRMEME2-34a0b2/logo.png differ diff --git a/tokens/VLRMEME2-34a0b2/logo.svg b/tokens/VLRMEME2-34a0b2/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRMEME2-34a0b2/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRSQUEEZE-bdb29a/info.json b/tokens/VLRSQUEEZE-bdb29a/info.json new file mode 100644 index 0000000000..390331d728 --- /dev/null +++ b/tokens/VLRSQUEEZE-bdb29a/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/squeeze", + "description": "ValoroSqueeze is the token of the Valoro Squeeze Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRSQUEEZE-bdb29a", + "path": "0.usdPrice" + } + } \ No newline at end of file diff --git a/tokens/VLRSQUEEZE-bdb29a/logo.png b/tokens/VLRSQUEEZE-bdb29a/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRSQUEEZE-bdb29a/logo.png differ diff --git a/tokens/VLRSQUEEZE-bdb29a/logo.svg b/tokens/VLRSQUEEZE-bdb29a/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRSQUEEZE-bdb29a/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRTOOLS-744af2/info.json b/tokens/VLRTOOLS-744af2/info.json new file mode 100644 index 0000000000..67b47f1c90 --- /dev/null +++ b/tokens/VLRTOOLS-744af2/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/tools", + "description": "ValoroTools is the token of the Valoro Infrastructure & Tools Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRTOOLS-744af2", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/VLRTOOLS-744af2/logo.png b/tokens/VLRTOOLS-744af2/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRTOOLS-744af2/logo.png differ diff --git a/tokens/VLRTOOLS-744af2/logo.svg b/tokens/VLRTOOLS-744af2/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRTOOLS-744af2/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VLRWAGMI-7e1801/info.json b/tokens/VLRWAGMI-7e1801/info.json new file mode 100644 index 0000000000..848a06ce04 --- /dev/null +++ b/tokens/VLRWAGMI-7e1801/info.json @@ -0,0 +1,15 @@ +{ + "website": "https://valoro.fund/investment-funds/wagmi", + "description": "ValoroWAGMI is the token of the Valoro WAGMI Fund.", + "social": { + "twitter": "https://twitter.com/ValoroFund", + "telegram": "https://t.me/valorofund", + "whitepaper": "https://docs.valoro.fund/" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.valoro.fund/v1/protocol/tokens/VLRWAGMI-7e1801", + "path": "0.usdPrice" + } + } \ No newline at end of file diff --git a/tokens/VLRWAGMI-7e1801/logo.png b/tokens/VLRWAGMI-7e1801/logo.png new file mode 100644 index 0000000000..ecd13b2554 Binary files /dev/null and b/tokens/VLRWAGMI-7e1801/logo.png differ diff --git a/tokens/VLRWAGMI-7e1801/logo.svg b/tokens/VLRWAGMI-7e1801/logo.svg new file mode 100644 index 0000000000..16e3f64230 --- /dev/null +++ b/tokens/VLRWAGMI-7e1801/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/tokens/VOTEPROOF-19034b/info.json b/tokens/VOTEPROOF-19034b/info.json new file mode 100644 index 0000000000..9c9575cbec --- /dev/null +++ b/tokens/VOTEPROOF-19034b/info.json @@ -0,0 +1,12 @@ +{ + "website": "https://governance.multiversx.com", + "description": "A collection of limited SFTs, received by users who participated in governance voting.", + "social": { + "twitter": "https://x.com/MultiversX", + "facebook": "https://www.facebook.com/MultiversX", + "instagram": "https://www.instagram.com/multiversxofficial", + "telegram": "https://t.me/multiversx", + "youtube": "https://www.youtube.com/@MultiversXOfficial" + }, + "status": "active" +} diff --git a/tokens/VOTEPROOF-19034b/logo.png b/tokens/VOTEPROOF-19034b/logo.png new file mode 100644 index 0000000000..1f7a4bd090 Binary files /dev/null and b/tokens/VOTEPROOF-19034b/logo.png differ diff --git a/tokens/VOTEPROOF-19034b/logo.svg b/tokens/VOTEPROOF-19034b/logo.svg new file mode 100644 index 0000000000..4080752261 --- /dev/null +++ b/tokens/VOTEPROOF-19034b/logo.svg @@ -0,0 +1,526 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/WACKY-e811a5/info.json b/tokens/WACKY-e811a5/info.json new file mode 100644 index 0000000000..8ae60e2581 --- /dev/null +++ b/tokens/WACKY-e811a5/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://wackythewhale.xyz", + "description": "Once upon a time, Wacky the Whale swam through the crypto oceans, splashing laughter and memes wherever he went. With every tail flip, he dropped coins of joy, turning ordinary traders into carefree adventurers. Now, his mission is simple: to take everyone on a wild ride to the moon, one meme at a time!", + "status": "active" +} \ No newline at end of file diff --git a/tokens/WACKY-e811a5/logo.png b/tokens/WACKY-e811a5/logo.png new file mode 100644 index 0000000000..92190ea5d9 Binary files /dev/null and b/tokens/WACKY-e811a5/logo.png differ diff --git a/tokens/WACKY-e811a5/logo.svg b/tokens/WACKY-e811a5/logo.svg new file mode 100644 index 0000000000..8a71e8f47b --- /dev/null +++ b/tokens/WACKY-e811a5/logo.svg @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/WARRIOR-783677/info.json b/tokens/WARRIOR-783677/info.json new file mode 100644 index 0000000000..dbfe9b78bc --- /dev/null +++ b/tokens/WARRIOR-783677/info.json @@ -0,0 +1,8 @@ +{ + "website": "https://memeversx.com", + "description": "A Hero at Multiversx? Yes you've Seen it right. The Xwarrior is the new Hero of multiversx. Xwarrior is here to go the path of success on MVX.", + "status": "active", + "social": { + "telegram": "https://t.me/+t-j_LoKri41iYjYy" + } +} diff --git a/tokens/WARRIOR-783677/logo.png b/tokens/WARRIOR-783677/logo.png new file mode 100644 index 0000000000..793c64c24b Binary files /dev/null and b/tokens/WARRIOR-783677/logo.png differ diff --git a/tokens/WARRIOR-783677/logo.svg b/tokens/WARRIOR-783677/logo.svg new file mode 100644 index 0000000000..2ca4d95ec7 --- /dev/null +++ b/tokens/WARRIOR-783677/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tokens/WAVENODEOG-257da5/info.json b/tokens/WAVENODEOG-257da5/info.json new file mode 100644 index 0000000000..f8d5b51eff --- /dev/null +++ b/tokens/WAVENODEOG-257da5/info.json @@ -0,0 +1,10 @@ +{ + "website":"https://wavenode.io", + "description":"Wavenode OG, is a roleplay game to earn $eDIA on the Wavenode ecosystem", + "ledgerSignature":"", + "social":{ + "email":"wdiamond@wavenode.io", + "twitter": "https://www.twitter.com/wavenodevalid" + }, + "status": "active" +} diff --git a/tokens/WAVENODEOG-257da5/logo.png b/tokens/WAVENODEOG-257da5/logo.png new file mode 100644 index 0000000000..3e03c45f56 Binary files /dev/null and b/tokens/WAVENODEOG-257da5/logo.png differ diff --git a/tokens/WAVENODEOG-257da5/logo.svg b/tokens/WAVENODEOG-257da5/logo.svg new file mode 100644 index 0000000000..5f152273e6 --- /dev/null +++ b/tokens/WAVENODEOG-257da5/logo.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/WEMR-3af159/info.json b/tokens/WEMR-3af159/info.json new file mode 100644 index 0000000000..c76d6f0b8a --- /dev/null +++ b/tokens/WEMR-3af159/info.json @@ -0,0 +1,11 @@ +{ + "website": "https://emorya.com", + "description": "The currency that connects the Emorya ecosystem with the real world.", + "social": { + "email": "support@emorya.com", + "twitter": "https://twitter.com/EmoryaFinance", + "telegram": "https://t.me/EmoryaFinanceRO", + "whitepaper": "https://emorya.com/emorya-white-paper" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/WEMR-3af159/logo.png b/tokens/WEMR-3af159/logo.png new file mode 100644 index 0000000000..676bd57d4c Binary files /dev/null and b/tokens/WEMR-3af159/logo.png differ diff --git a/tokens/WEMR-3af159/logo.svg b/tokens/WEMR-3af159/logo.svg new file mode 100644 index 0000000000..0af7d921bf --- /dev/null +++ b/tokens/WEMR-3af159/logo.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/tokens/WOJA-ac90ab/info.json b/tokens/WOJA-ac90ab/info.json index 283da55010..553503c069 100644 --- a/tokens/WOJA-ac90ab/info.json +++ b/tokens/WOJA-ac90ab/info.json @@ -1,8 +1,8 @@ { + "website": "https://woja.xyz/token", + "description": "WOJA coin DAO FOUNDERS: WOJA Games & Shitcoin Millionaires CLUB MultiversX ", + "status": "active", "social": { "twitter": "https://twitter.com/Woja_inu" - }, - "website": "https://woja.xyz/token", - "description": "WOJA 5 Dollar Bag Coin 5$ Stable Shitcoin MultiversX ", - "status": "active" + } } \ No newline at end of file diff --git a/tokens/WOJA-ac90ab/logo.png b/tokens/WOJA-ac90ab/logo.png index 4186f3aece..5d4873f00b 100644 Binary files a/tokens/WOJA-ac90ab/logo.png and b/tokens/WOJA-ac90ab/logo.png differ diff --git a/tokens/WOJA-ac90ab/logo.svg b/tokens/WOJA-ac90ab/logo.svg index 49b4e3a009..d139f057ef 100644 --- a/tokens/WOJA-ac90ab/logo.svg +++ b/tokens/WOJA-ac90ab/logo.svg @@ -1,51 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/tokens/WOJAIPLATA-59438f/info.json b/tokens/WOJAIPLATA-59438f/info.json new file mode 100644 index 0000000000..11df7f2a11 --- /dev/null +++ b/tokens/WOJAIPLATA-59438f/info.json @@ -0,0 +1,5 @@ +{ + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the WOJAINU/PLATA pool on the OneDex.", + "status": "active" +} diff --git a/tokens/WOJAIPLATA-59438f/logo.png b/tokens/WOJAIPLATA-59438f/logo.png new file mode 100644 index 0000000000..766cb4550a Binary files /dev/null and b/tokens/WOJAIPLATA-59438f/logo.png differ diff --git a/tokens/WOJAIPLATA-59438f/logo.svg b/tokens/WOJAIPLATA-59438f/logo.svg new file mode 100644 index 0000000000..b31631a544 --- /dev/null +++ b/tokens/WOJAIPLATA-59438f/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/WOODY-5f9d9c/info.json b/tokens/WOODY-5f9d9c/info.json new file mode 100644 index 0000000000..53cd8e90c0 --- /dev/null +++ b/tokens/WOODY-5f9d9c/info.json @@ -0,0 +1,12 @@ +{ + "website": "https://x.com/WOODY_EX", + "description": "**Woody Token** - The Memecoin Inspired by Woody Woodpecker\n\nWoody Token is more than just a memecoin – it's the essence of fun on the blockchain! Inspired by the mischievous and charismatic woodpecker Woody Woodpecker, this token brings a fresh breath of humor into the world of cryptocurrencies, combining laughter with financial opportunities. Just like Woody Woodpecker can’t be ignored with his unmistakable laugh and exuberant personality, Woody Token is here to make waves and bring smiles to investors around the world.\n\nWith a vibrant community and a healthy dose of humor, Woody Token promises to be loud and visible, just like the iconic character. Our memecoin is built on fun but with serious potential, offering you the chance to join a movement that transforms every transaction into an unforgettable experience. Woody Token is created for those who know how to laugh but also keep an eye on growth opportunities.\n\nBold, playful, and full of life, Woody Token is the memecoin knocking at the door of success! Join now and be part of the crypto adventure with the most joyful and mischievous token on the market!", + "status": "active", + "extraTokens": [ + "WOODY-5f9d9c" + ], + "social": { + "twitter": "https://x.com/WOODY_EX", + "whitepaper": "https://x.com/WOODY_EX" + } +} \ No newline at end of file diff --git a/tokens/WOODY-5f9d9c/logo.png b/tokens/WOODY-5f9d9c/logo.png new file mode 100644 index 0000000000..edc6c68c83 Binary files /dev/null and b/tokens/WOODY-5f9d9c/logo.png differ diff --git a/tokens/WOODY-5f9d9c/logo.svg b/tokens/WOODY-5f9d9c/logo.svg new file mode 100644 index 0000000000..45ae0efc3f --- /dev/null +++ b/tokens/WOODY-5f9d9c/logo.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + diff --git a/tokens/WOW-9b8f7e/info.json b/tokens/WOW-9b8f7e/info.json new file mode 100644 index 0000000000..945fe33595 --- /dev/null +++ b/tokens/WOW-9b8f7e/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "blog": "https://www.wowwitch.com/blog/" + }, + "website": "https://WowWitch.com", + "description": "WowWitch, Is an esoteric store offering handmade candles,\nritual oils, and herb mixes, all crafted with intention and care\nhttps://linktr.ee/WowWitch", + "status": "active" +} \ No newline at end of file diff --git a/tokens/WOW-9b8f7e/logo.png b/tokens/WOW-9b8f7e/logo.png new file mode 100644 index 0000000000..e65fe1a40e Binary files /dev/null and b/tokens/WOW-9b8f7e/logo.png differ diff --git a/tokens/WOW-9b8f7e/logo.svg b/tokens/WOW-9b8f7e/logo.svg new file mode 100644 index 0000000000..edeb1db866 --- /dev/null +++ b/tokens/WOW-9b8f7e/logo.svg @@ -0,0 +1,46 @@ + + + + + + + + + + diff --git a/tokens/WWM-71e56d/info.json b/tokens/WWM-71e56d/info.json new file mode 100644 index 0000000000..55a24831d4 --- /dev/null +++ b/tokens/WWM-71e56d/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://twitter.com/wowwitchstore" + }, + "website": "https://WowWitch.com", + "description": "WowWitch, Is an esoteric store offering handmade candles,\nritual oils, and herb mixes, all crafted with intention and care\nhttps://linktr.ee/WowWitch", + "status": "active" +} \ No newline at end of file diff --git a/tokens/WWM-71e56d/logo.png b/tokens/WWM-71e56d/logo.png new file mode 100644 index 0000000000..e65fe1a40e Binary files /dev/null and b/tokens/WWM-71e56d/logo.png differ diff --git a/tokens/WWM-71e56d/logo.svg b/tokens/WWM-71e56d/logo.svg new file mode 100644 index 0000000000..edeb1db866 --- /dev/null +++ b/tokens/WWM-71e56d/logo.svg @@ -0,0 +1,46 @@ + + + + + + + + + + diff --git a/tokens/WWS-cf28d8/info.json b/tokens/WWS-cf28d8/info.json new file mode 100644 index 0000000000..96791a6967 --- /dev/null +++ b/tokens/WWS-cf28d8/info.json @@ -0,0 +1,9 @@ +{ + "social": { + "blog": "https://www.wowwitch.com/blog/", + "twitter": "https://twitter.com/wowwitchstore" + }, + "website": "https://WowWitch.com", + "description": "WowWitch, Is an esoteric store offering handmade candles,\nritual oils, and herb mixes, all crafted with intention and care\nhttps://linktr.ee/WowWitch", + "status": "active" +} \ No newline at end of file diff --git a/tokens/WWS-cf28d8/logo.png b/tokens/WWS-cf28d8/logo.png new file mode 100644 index 0000000000..e65fe1a40e Binary files /dev/null and b/tokens/WWS-cf28d8/logo.png differ diff --git a/tokens/WWS-cf28d8/logo.svg b/tokens/WWS-cf28d8/logo.svg new file mode 100644 index 0000000000..edeb1db866 --- /dev/null +++ b/tokens/WWS-cf28d8/logo.svg @@ -0,0 +1,46 @@ + + + + + + + + + + diff --git a/tokens/XAI-f10327/info.json b/tokens/XAI-f10327/info.json index 66d1769568..3826e6b4e3 100644 --- a/tokens/XAI-f10327/info.json +++ b/tokens/XAI-f10327/info.json @@ -1,8 +1,12 @@ { "social": { - "twitter": "https://twitter.com/plataNetwork" + "whitepaper": "https://drive.google.com/file/d/1Tj0MsKKVXnzrt4WvXSJ75N50CBCxfgeh/view?usp=drive_link", + "twitter": "https://twitter.com/platalegacy" }, - "website": "https://plata.network/legacy", - "description": "Tracker Meme built on Legacy Tokenomics x AI. Powered by PLATA", + "lockedAccounts": { + "erd1ryuzf08m4senh22y3rz7yl3shmeser4m5rplafg0l5ldmptd455qlll7vq": "Burn Wallet" + }, + "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=XAI-f10327&state=Pro&type=simple", + "description": "Tracker Meme built on Legacy Tokenomics x AI. Powered by PLΛTΛ", "status": "active" } diff --git a/tokens/XAIPLATA-9aef13/info.json b/tokens/XAIPLATA-9aef13/info.json index 63803f493e..c8de73e9a1 100644 --- a/tokens/XAIPLATA-9aef13/info.json +++ b/tokens/XAIPLATA-9aef13/info.json @@ -1,5 +1,5 @@ { - "website": "https://swap.onedex.app/swap?firstToken=EGLD&secondToken=XAI-f10327", - "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the PLATA/XAI pool on OneDex.", + "website": "https://swap.onedex.app/pool", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the XAI/PLATA pool on OneDex.", "status": "active" } diff --git a/tokens/XAIPLATA-9aef13/logo.png b/tokens/XAIPLATA-9aef13/logo.png index df6808b2ef..766cb4550a 100644 Binary files a/tokens/XAIPLATA-9aef13/logo.png and b/tokens/XAIPLATA-9aef13/logo.png differ diff --git a/tokens/XAIPLATA-9aef13/logo.svg b/tokens/XAIPLATA-9aef13/logo.svg index d38943425f..b31631a544 100644 --- a/tokens/XAIPLATA-9aef13/logo.svg +++ b/tokens/XAIPLATA-9aef13/logo.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/tokens/XAMERCH-305fc0/info.json b/tokens/XAMERCH-305fc0/info.json new file mode 100644 index 0000000000..313aaf6d70 --- /dev/null +++ b/tokens/XAMERCH-305fc0/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/xalliancedao" + }, + "website": "https://xalliance.io", + "description": "Tokenized merchandise by xAlliance.", + "status": "active" +} diff --git a/tokens/XAMERCH-305fc0/logo.png b/tokens/XAMERCH-305fc0/logo.png new file mode 100644 index 0000000000..f5cb377420 Binary files /dev/null and b/tokens/XAMERCH-305fc0/logo.png differ diff --git a/tokens/XAMERCH-305fc0/logo.svg b/tokens/XAMERCH-305fc0/logo.svg new file mode 100644 index 0000000000..c66ed3576d --- /dev/null +++ b/tokens/XAMERCH-305fc0/logo.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/XDAPPAREL-a22946/info.json b/tokens/XDAPPAREL-a22946/info.json new file mode 100644 index 0000000000..7194244078 --- /dev/null +++ b/tokens/XDAPPAREL-a22946/info.json @@ -0,0 +1,8 @@ +{ + "social": { + "twitter": "https://x.com/xalliancedao" + }, + "website": "https://xalliance.io", + "description": "Tokenized apparel of xDay by xAlliance and MultiversX.", + "status": "active" +} diff --git a/tokens/XDAPPAREL-a22946/logo.png b/tokens/XDAPPAREL-a22946/logo.png new file mode 100644 index 0000000000..3913e2f3e7 Binary files /dev/null and b/tokens/XDAPPAREL-a22946/logo.png differ diff --git a/tokens/XDAPPAREL-a22946/logo.svg b/tokens/XDAPPAREL-a22946/logo.svg new file mode 100644 index 0000000000..b9ba47fdc5 --- /dev/null +++ b/tokens/XDAPPAREL-a22946/logo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/tokens/XGPT-c74dec/info.json b/tokens/XGPT-c74dec/info.json new file mode 100644 index 0000000000..35eca376e6 --- /dev/null +++ b/tokens/XGPT-c74dec/info.json @@ -0,0 +1,14 @@ +{ + "social": { + "twitter": "https://twitter.com/XGPTAILabs", + "whitepaper": "https://www.xgpt-ai.com/Whitepaper.pdf", + "coinmarketcap": "https://coinmarketcap.com/currencies/x-gpt/", + "coingecko": "https://www.coingecko.com/fr/pi%C3%A8ces/x-gpt" + }, + "website": "https://xgpt-ai.com/", + "description": "XGPT is an AI-powered tool designed for blockchain use-cases. It integrates various modules like Market Data, Block Explorer, Wallet Info, and Trade, enabling you to have seamless and intuitive interaction with the blockchain.", + "lockedAccounts": { + "erd1zzjdrjgqe607qy8vmydt6cjv6umhlc7n9up37z95zhkar5wayjcsyqf9ng": "Locked XGPT" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/XGPT-c74dec/logo.png b/tokens/XGPT-c74dec/logo.png new file mode 100644 index 0000000000..eb196381ef Binary files /dev/null and b/tokens/XGPT-c74dec/logo.png differ diff --git a/tokens/XGPT-c74dec/logo.svg b/tokens/XGPT-c74dec/logo.svg new file mode 100644 index 0000000000..cfae3d3b52 --- /dev/null +++ b/tokens/XGPT-c74dec/logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tokens/XGRAOU-a7441a/info.json b/tokens/XGRAOU-a7441a/info.json new file mode 100644 index 0000000000..a3ed63622b --- /dev/null +++ b/tokens/XGRAOU-a7441a/info.json @@ -0,0 +1,14 @@ +{ + "social": { + "blog": "https://medium.com/dinovox", + "twitter": "https://twitter.com/TheDinoVox", + "whitepaper": "https://www.dinovox.com/assets/pdf/whitepaper_fr.pdf", + "discord": "https://discord.com/invite/thedinovox", + "facebook": "https://www.facebook.com/TheDinoVox", + "telegram": "https://t.me/thedinovox", + "instagram": "https://www.instagram.com/jointhedinovox/" + }, + "website": "https://www.dinovox.com/", + "description": "$xGRAOU is the precursor to $GRAOU, the official token of DinoVox and FenuaVerse, maintaining a constant 1:1 parity.", + "status": "active" +} diff --git a/tokens/XGRAOU-a7441a/logo.png b/tokens/XGRAOU-a7441a/logo.png new file mode 100644 index 0000000000..3e97edfddf Binary files /dev/null and b/tokens/XGRAOU-a7441a/logo.png differ diff --git a/tokens/XGRAOU-a7441a/logo.svg b/tokens/XGRAOU-a7441a/logo.svg new file mode 100644 index 0000000000..9be43731bd --- /dev/null +++ b/tokens/XGRAOU-a7441a/logo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/tokens/XKING-4b21e8/info.json b/tokens/XKING-4b21e8/info.json index ec68b84b3e..773f019db9 100644 --- a/tokens/XKING-4b21e8/info.json +++ b/tokens/XKING-4b21e8/info.json @@ -1,6 +1,6 @@ { "website": "https://www.xkingnftx.com/", - "description": "$xKING is the xKingNFTx token", + "description": "$xKING is the utility token of xKingNFTx", "status": "active", "social": { "blog": "https://discord.gg/Xq9QBjxf4M", diff --git a/tokens/XMEME-77fb41/info.json b/tokens/XMEME-77fb41/info.json new file mode 100644 index 0000000000..53215a67ce --- /dev/null +++ b/tokens/XMEME-77fb41/info.json @@ -0,0 +1,9 @@ +{ + "website": "https://fundex.fun", + "description": "All the meme, united as a team, fighting for a same quest. \n\nExpansion\n\nLet the story begin.", + "social": { + "telegram": "", + "twitter": "https://x.com/xMememvx" + }, + "status": "active" +} \ No newline at end of file diff --git a/tokens/XMEME-77fb41/logo.png b/tokens/XMEME-77fb41/logo.png new file mode 100644 index 0000000000..b5e19b758a Binary files /dev/null and b/tokens/XMEME-77fb41/logo.png differ diff --git a/tokens/XMEME-77fb41/logo.svg b/tokens/XMEME-77fb41/logo.svg new file mode 100644 index 0000000000..d4c7681a36 --- /dev/null +++ b/tokens/XMEME-77fb41/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/XMEX-fda355/info.json b/tokens/XMEX-fda355/info.json index 57b1f49e30..6880e71ded 100644 --- a/tokens/XMEX-fda355/info.json +++ b/tokens/XMEX-fda355/info.json @@ -1,5 +1,6 @@ { "website": "https://xExchange.com", + "name": "xMEX", "description": "XMEX with Energy. Equal in value to MEX. Not tradeable.", "status": "active" -} +} \ No newline at end of file diff --git a/tokens/XMEX-fda355/logo.png b/tokens/XMEX-fda355/logo.png index 4d18e9a193..d42a4b3cfb 100644 Binary files a/tokens/XMEX-fda355/logo.png and b/tokens/XMEX-fda355/logo.png differ diff --git a/tokens/XMEX-fda355/logo.svg b/tokens/XMEX-fda355/logo.svg index 184b84964d..fae4d380c0 100644 --- a/tokens/XMEX-fda355/logo.svg +++ b/tokens/XMEX-fda355/logo.svg @@ -1,27 +1,5 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/tokens/XMPH-3af949/info.json b/tokens/XMPH-3af949/info.json index cf7a468845..d9355cd00c 100644 --- a/tokens/XMPH-3af949/info.json +++ b/tokens/XMPH-3af949/info.json @@ -1,10 +1,11 @@ { - "website": "https://explorer.multiversx.com/tokens/XMPH-3af949", + "website": "https://xMorPH.xyz", "description": "xMorph, Eternity as perspectives", "extraTokens": [ "XMPHWEGLD-32bb83", - "LPXMPHJEX-f5090f", - "LPRACCOONX-086902" + "LPXMPHJEX-cebd83", + "XMPHUSDC-9697f5", + "LPBOBYXMPH-e181a5" ], "status": "active", "social": { diff --git a/tokens/XMPH-3af949/logo.png b/tokens/XMPH-3af949/logo.png index c6935bae91..a52718abd2 100644 Binary files a/tokens/XMPH-3af949/logo.png and b/tokens/XMPH-3af949/logo.png differ diff --git a/tokens/XMPH-3af949/logo.svg b/tokens/XMPH-3af949/logo.svg index 2ad7a00804..cb824fab55 100644 --- a/tokens/XMPH-3af949/logo.svg +++ b/tokens/XMPH-3af949/logo.svg @@ -1,5 +1,3 @@ - - - - - + + + \ No newline at end of file diff --git a/tokens/XOXNO-c1293a/info.json b/tokens/XOXNO-c1293a/info.json index 895c5cc015..141f0a25d8 100644 --- a/tokens/XOXNO-c1293a/info.json +++ b/tokens/XOXNO-c1293a/info.json @@ -7,11 +7,23 @@ "github": "https://github.com/xoxno", "discord": "https://discord.gg/xoxno", "twitter": "https://x.com/XoxnoNetwork", - "whitepaper": "https://xoxno.com/whitepaper" + "whitepaper": "https://xoxno.com/whitepaper", + "coinmarketcap": "https://coinmarketcap.com/currencies/xoxno/", + "coingecko": "https://www.coingecko.com/en/coins/xoxno" }, "ledgerSignature": "3045022100d1e85750951a85283f5140193646e50f8674156709f799401287a1d8047b4ed902201f99ff2489b206d25e42feb188d3d0492afc7e5a622d0dbf4c8f87ec1047d0b2", "lockedAccounts": { - "erd1u8j90mxv4wvdj265nffuuguwl4gw8e8mvnkuhd0tt34q8fdc45qsg25jyp": "Minter Account" + "erd1u8j90mxv4wvdj265nffuuguwl4gw8e8mvnkuhd0tt34q8fdc45qsg25jyp": "Minter Manager", + "erd1qqqqqqqqqqqqqpgqcl3dytkacwp0kkxwmykvag50rh5z27kw45qs5dmpk2": "Vested Tokens Manager", + "erd1qqqqqqqqqqqqqpgqxxs3etvwccvq9fcg6cxczuvlp47cp8qtgzmqsqvfcg": "xLaunchpad", + "erd1qqqqqqqqqqqqqpgqarunmmq8vwaevtnr304wqkwladqc0n9645qsrwxs7f": "Airdrop" }, + "extraTokens": [ + "LXOXNO-0eb983", + "LKXOXNO-b06190", + "UXOXNO-e17bc8", + "XOXNOWEGLD-93445e", + "ALP-ef193a" + ], "status": "active" } diff --git a/tokens/XTW-78700a/info.json b/tokens/XTW-78700a/info.json index a3a59a6d40..f4909946fe 100644 --- a/tokens/XTW-78700a/info.json +++ b/tokens/XTW-78700a/info.json @@ -1,8 +1,18 @@ { - "website":"https://tikaw.net/", - "description":"TikawAI is an AI prompt mastering tool built by Sensei Ecosystem.", + "website":"https://kmcpg-972.xfabric.com", + "description":"The XTW will be the main token of our ecosystem", "social":{ - "twitter":"https://twitter.com/SenseiEcosystem" + "twitter":"https://x.com/kmcpg" }, - "status":"active" - } \ No newline at end of file + "lockedAccounts": { + "erd1jkmk39ts4glsl5tj2ta4qcgt5c60yqv6stgfljmvnwsayhaxyypq3nwjnk": "CrossChain Marketing", + "erd13qcj5eck4wrztdrt6cumgnsr4x930efha7v0r8lmx2aa3sqp6lwstwhmaz": "Team Tokens" + }, + "status":"active", + + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/XTW-78700a", + "path": "0.usdPrice" + } + } diff --git a/tokens/XTW-78700a/logo.png b/tokens/XTW-78700a/logo.png index 6f0baff89c..1d7856b753 100644 Binary files a/tokens/XTW-78700a/logo.png and b/tokens/XTW-78700a/logo.png differ diff --git a/tokens/XTW-78700a/logo.svg b/tokens/XTW-78700a/logo.svg index b97cffaf88..537e158d27 100644 --- a/tokens/XTW-78700a/logo.svg +++ b/tokens/XTW-78700a/logo.svg @@ -1,7 +1,48 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tokens/XURI-d9a940/info.json b/tokens/XURI-d9a940/info.json new file mode 100644 index 0000000000..9ad99141a2 --- /dev/null +++ b/tokens/XURI-d9a940/info.json @@ -0,0 +1,14 @@ +{ + "website": "https://fundex.fun", + "description": "$Xuri, a tear born of fear, guides traders and dreamers, reminding them: courage grows where uncertainty thrives.", + "social": { + "telegram": "", + "twitter": "https://twitter.com/XURItoken" + }, + "status": "active", + "priceSource": { + "type": "customUrl", + "url": "https://api.onedex.app/prices/XURI-d9a940", + "path": "0.usdPrice" + } +} \ No newline at end of file diff --git a/tokens/XURI-d9a940/logo.png b/tokens/XURI-d9a940/logo.png new file mode 100644 index 0000000000..0ad8a1c34e Binary files /dev/null and b/tokens/XURI-d9a940/logo.png differ diff --git a/tokens/XURI-d9a940/logo.svg b/tokens/XURI-d9a940/logo.svg new file mode 100644 index 0000000000..56e215716d --- /dev/null +++ b/tokens/XURI-d9a940/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/tokens/logo.png.png b/tokens/logo.png.png deleted file mode 100644 index 0a52126e78..0000000000 Binary files a/tokens/logo.png.png and /dev/null differ