×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    IDEX is a DEX (decentralized exchange) for ERC20 tokens based on Ethereum.

    - https://idex.market/

    Here is a very simple example in Python to get the balances of an address (wallet) on IDEX.

    
    def idex_balance(address):
        try:
            r = requests.post(IDEX_API_URL + 'returnBalances', data = {'address':address})
        except Exception as err:
            print('failed to talk to IDEX - {0} - {1}'.format(err.message, err.args))
            sys.exit(2)
        print(r.json())
    
    IDEX_API_URL = 'https://api.idex.market/'
    
    idex_balance('<REPLACE WITH YOUR ADDRESS>')
    
    
    
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.

    Recent changes

  • BruderSpektrum • 3 months ago
  • BruderSpektrum • 3 months ago
  • BruderSpektrum • 3 months ago
  • BruderSpektrum • 3 months ago
  • Cookies help us deliver our services. By using our services, you agree to our use of cookies.