This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ethlite.Contracts import Contract | |
from ethlite.NetworkUtil import NetworkUtil | |
from json import loads | |
import requests | |
class Accounts(object): | |
endpoint = 'https://api.dydx.exchange/v1/accounts/' | |
@classmethod |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# coding: utf-8 | |
import os,socket,threading,time | |
#import traceback | |
allow_delete = False | |
#local_ip = socket.gethostbyname(socket.gethostname()) | |
local_ip = "0.0.0.0" | |
local_port = 8888 |
NewerOlder