├── .gitignore ├── README.md ├── abis ├── erc20.json └── erc20StandardBridge.json ├── aevo.py ├── deposit_example.py ├── eip712_structs.py ├── generate_infinite_expiry_signing_key.py ├── order_rest_example.py ├── order_ws_example.py ├── requirements.txt └── withdraw_example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/README.md -------------------------------------------------------------------------------- /abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/abis/erc20.json -------------------------------------------------------------------------------- /abis/erc20StandardBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/abis/erc20StandardBridge.json -------------------------------------------------------------------------------- /aevo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/aevo.py -------------------------------------------------------------------------------- /deposit_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/deposit_example.py -------------------------------------------------------------------------------- /eip712_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/eip712_structs.py -------------------------------------------------------------------------------- /generate_infinite_expiry_signing_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/generate_infinite_expiry_signing_key.py -------------------------------------------------------------------------------- /order_rest_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/order_rest_example.py -------------------------------------------------------------------------------- /order_ws_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/order_ws_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/requirements.txt -------------------------------------------------------------------------------- /withdraw_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aevoxyz/aevo-sdk/HEAD/withdraw_example.py --------------------------------------------------------------------------------