mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-22 11:36:33 +03:00
19 lines
467 B
Python
19 lines
467 B
Python
|
from xml.dom import pulldom
|
||
|
from pydantic import BaseModel
|
||
|
import requests as r
|
||
|
|
||
|
URL = 'https://hackathon.lsp.team/hk'
|
||
|
|
||
|
"""TODO: Сделать обвязку апишки блокчейна"""
|
||
|
|
||
|
|
||
|
class WalletCreation(BaseModel):
|
||
|
publicKey: str
|
||
|
privateKey: str
|
||
|
|
||
|
|
||
|
def create_wallet() -> WalletCreation:
|
||
|
response = r.post(URL+'/v1/wallets/new')
|
||
|
data = response.json()
|
||
|
return WalletCreation(publicKey=data['publicKey'], privateKey=data['privateKey'])
|