{"id":13408682,"url":"https://github.com/elrondex/elrondex","last_synced_at":"2026-03-06T09:04:33.346Z","repository":{"id":43399791,"uuid":"407445749","full_name":"elrondex/elrondex","owner":"elrondex","description":"Elrondex is an elixir library that interacts with Elrond Blockchain","archived":false,"fork":false,"pushed_at":"2023-03-10T21:32:15.000Z","size":150,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-25T12:48:35.640Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elrondex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-17T07:23:11.000Z","updated_at":"2025-10-16T19:05:28.000Z","dependencies_parsed_at":"2024-10-26T04:07:18.107Z","dependency_job_id":"3487df56-a993-4e89-8394-b2075432445c","html_url":"https://github.com/elrondex/elrondex","commit_stats":{"total_commits":85,"total_committers":7,"mean_commits":"12.142857142857142","dds":0.5176470588235293,"last_synced_commit":"1f507f85cc765e278c2465bed663ed5650428bb2"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/elrondex/elrondex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrondex%2Felrondex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrondex%2Felrondex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrondex%2Felrondex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrondex%2Felrondex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elrondex","download_url":"https://codeload.github.com/elrondex/elrondex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrondex%2Felrondex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30168611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T07:56:45.623Z","status":"ssl_error","status_checked_at":"2026-03-06T07:55:55.621Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-30T20:00:54.561Z","updated_at":"2026-03-06T09:04:33.307Z","avatar_url":"https://github.com/elrondex.png","language":"Elixir","funding_links":[],"categories":["MultiversX community"],"sub_categories":["SDKs and dev tools"],"readme":"[![Hex.pm](https://img.shields.io/hexpm/v/elrondex.svg)](https://hex.pm/packages/elrondex)\n\nWelcome to Elrondex. \n\nElixir libraries to interact with Elrond Blockchain ⚡ and its components $EGLD, Arwen, WASM, DeFI, SC, ESDTs, NFTs, SFTs, $MEX, DEX, AMM\n\nThis is **DRAFT** code it will definitely be changed in the near future. \n\n\n## Installation\n\nAdd `elrondex` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:elrondex, \"~\u003e 0.1.1\"}\n  ]\nend\n```\n\n## Examples\n\n### Transfer 1 EGLD from Bob account to Alice account on testnet network\n\n```elixir\nalias Elrondex.{Account, Transaction, Network, REST}\n\nnetwork = Network.testnet()\n\n# 24 words\nbob_mnemonic = \"quick alone describe ...\"\nalice_address = \"erd18n5zgmet82jvqag9n8pcvzdzlgqr3jhqxld2z6nwxzekh4cwt6ps87zfmu\"\n\nbob_mnemonic \n  |\u003e Account.from_mnemonic()\n  |\u003e Transaction.transaction(alice_address, 1_000_000_000_000_000_000)\n  |\u003e Transaction.prepare(network)\n  |\u003e Transaction.sign()\n  |\u003e REST.post_transaction_send()\n\n{:ok, \"5e3bd0cc962a1eb2ad68b8610d8ae4ae9255c041e1d73ae4d23caf9956dae9c4\"}\n```\n\n### Get WEGLD/USDC pair info from Maiar DEX on mainnet\n\n```elixir\nmainnet = Elrondex.Network.mainnet()\npair_address = \"erd1qqqqqqqqqqqqqpgqeel2kumf0r8ffyhth7pqdujjat9nx0862jpsg2pqaq\"\n\nElrondex.Sc.PairSc.get_pair(pair_address, mainnet)\n\n{:ok,\n %Elrondex.Pair{\n   address: \"erd1qqqqqqqqqqqqqpgqeel2kumf0r8ffyhth7pqdujjat9nx0862jpsg2pqaq\",\n   first_decimals: 18,\n   first_token: \"WEGLD-bd4d79\",\n   lp_decimals: 18,\n   lp_token: \"EGLDUSDC-594e5e\",\n   name: nil,\n   second_decimals: 6,\n   second_token: \"USDC-c76f1f\"\n }}\n```\n\n\u003c!--\n**elrondex/elrondex** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on your GitHub profile.\n\nHere are some ideas to get you started:\n\n- 🔭 I’m currently working on ...\n- 🌱 I’m currently learning ...\n- 👯 I’m looking to collaborate on ...\n- 🤔 I’m looking for help with ...\n- 💬 Ask me about ...\n- 📫 How to reach me: ...\n- 😄 Pronouns: ...\n- ⚡ Fun fact: ...\n--\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felrondex%2Felrondex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felrondex%2Felrondex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felrondex%2Felrondex/lists"}