mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-10 14:36:34 +03:00
Merge pull request #1 from more-tech4-magnum-opus/blockchain-and-clans
add create wallet
This commit is contained in:
commit
c56f8e018f
18
app/utils/blockchain.py
Normal file
18
app/utils/blockchain.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
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'])
|
Loading…
Reference in New Issue
Block a user