Wallets
Creating a wallet
r = requests.post(
f'{URL}/distributor/v2/investors/{investor_id}/wallets/eth-generic/',
json={
'address': '0xF5...',
'receiving_enabled': True
},
headers={**headers, 'X-Idempotency-Key': make_key()}
)
assert r.status_code < 300, r.content
wallet_id = r.json()['id']
print(f'Generic wallet: {wallet_id}')Retrieving wallet information
Last updated
Was this helpful?