라벨이 블록체인이론인 게시물 표시

Kraken api - get token with python

Kraken api - get token with python an example of how you can generate a WebSocket authentication token using Python for Kraken's API: ```python import time import base64 import hashlib import hmac import urllib.request import json # Replace with your Kraken API public and private keys api_key = 'YOUR_API_PUBLIC_KEY' api_secret = 'YOUR_API_PRIVATE_KEY' # API endpoint and parameters api_path = '/0/private/GetWebSocketsToken' api_nonce = str(int(time.time() * 1000)) api_post = 'nonce=' + api_nonce # Create the SHA256 hash api_sha256 = hashlib.sha256(api_nonce.encode('utf-8') + api_post.encode('utf-8')).digest() # Create the HMAC signature api_hmac = hmac.new(base64.b64decode(api_secret), api_path.encode('utf-8') + api_sha256, hashlib.sha512) api_signature = base64.b64encode(api_hmac.digest()) # Create the request api_request = urllib.request.Request('https://api.kraken.com' + api_path, api_post.encode('utf-8')) ap

블록체인 관련 기초 개념 정리Zip

  블록체인 기초 개념  정리 Zip 블록체인 생태계와 용어 정리(1) 블록체인 생태계와 용어 정리(2)   [블록체인 기초] 토큰화란 무엇일까? (1) [블록체인 기초] 스마트 계약과 비즈니스 워크플로우(2) [블록체인기초] 토큰 거버넌스 와 스마트 계약(3)   암호화 화폐의 분류 암호화폐. 전자지갑 (블록체인) 암호화 키 관리 방식 비교   블록체인 데이터의 오라클 문제 (Oracle Problem) NFT 표준 기초 용어와 ERC20 ERC721 ERC1155 표준   토큰 증권(STO) 발행 유통 규율체계 정비 추진 정리 토큰증권 표준 ERC-1400  스마트 컨트랙트를 알아보자   (트렌드) 블록체인의 계층 영역 (L0, L1, L2, L3) 블록체인 Layer1 Layer2 기술: 메인넷(L1)과 확장기술(L2) 블록체인 한계를 극복하는 레이어2(Layer2)기술의 종류와 특징 - 영지식증명   2023년에 주목할 5가지 Web3 트렌드 Web3.0이란 무엇일까   알아보기 모음Zip [블록체인]탈중앙화 가상자산거래소(DEX) [출처]  https://couplewith.tistory.com/search/블록체인

이 블로그의 인기 게시물

SSL/TLS 인증서 오류를 해결- 리눅스명령모음 - SSL certificate problem

(truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources

자기주권 신원 (SSI Self-Sovereign Identity) 인증의 발전 그리고 정보 민주화 (Information Democratization)