라벨이 스마트컨트랙트인 게시물 표시

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

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

이미지
  (truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources   간단한 오류의 원인은 truffle  환경의 contracts 소스의 위치를  확인하여야 하는 경우 입니다. 처음 truffle을 사용하다보니 환경 설정의 묵시적인 설정을 잘 이해하지 못한 경우 발생하는 오류 입니다. Truffle 설치 와 스마트 계약(Smart Contract) 개발 1. Truffle 설치 - 스마트 계약 개발 환경 구성 (truffle, ganache-cli, solc )     - npm install -g truffle     - npm install -g ganache-cli     - npm install -g solc 2.  Truffle 사용 - 스마트 계약(Smart Contract)개발    - truffle create contract YourContractName    - truffle create test YourTestName  3. [Truffle 환경 설정] 컴파일 오류 대처 - Error: Failed to fetch the Solidity compiler from the following locations:      - Are you connected to the internet? 4.  [Truffle 환경 설정] Deploy 오류 대처 - Error: Could not find artifacts for SimpleStorage from any sources   - throw new Error("Could not find artifacts for " + import_path + " from any sources");   ㅁ Truffle 명령을 이용한 스마트 계약 개발과 배포 # Truffle을 이용하여 스마트 컨트렉트를 이용하는 명령은 다음과 같습니다. $

(truffle 환경 설정) Truffle compiler 오류 대처 - Error: Failed to fetch the Solidity compiler from the following locations

이미지
(truffle 환경 설정) Truffle compiler 오류 대처 - Error: Failed to fetch the Solidity compiler from the following locations   Truffle 을 사용하는 환경이 인터넷 사용이 안되거나  HTTPS와 같은 프로토콜이 차단된 환경에서 발생하는 문제입니다. 특히  금융 환경처럼 망분리가 되어 있는 환경은 https를  강제로  http로 변환해서 통신하는 데이터를 감시하고 있습니다. 그래서 https로 작동되는 외부 소스다운로드의 경우 오류가 발생  합니다. 이러한 경우 인터넷에 검색해도 나오지 않는 오류 해결 방법이 있어서 공유 합니다.  (  한참 이리저리  찾아 헤메다가  ㅠㅠ) Truffle 설치 와 스마트 계약(Smart Contract) 개발 1. Truffle 설치 - 스마트 계약 개발 환경 구성 (truffle, ganache-cli, solc )     - npm install -g truffle     - npm install -g ganache-cli     - npm install -g solc 2.  Truffle 사용 - 스마트 계약(Smart Contract)개발    - truffle create contract YourContractName    - truffle create test YourTestName  3. [Truffle 환경 설정] 컴파일 오류 대처 - Error: Failed to fetch the Solidity compiler from the following locations:      - Are you connected to the internet? 4.  [Truffle 환경 설정] Deploy 오류 대처 - Error: Could not find artifacts for SimpleStorage from any sources   - throw new Error("Could not find artifacts for "

블록체인 개발자를 위한 Truffle 사용법 - 스마트 계약(Smart Contract)개발

이미지
  블록체인 개발자를 위한 Truffle 사용법 - 스마트 계약(Smart Contract)개발   Truffle 설치 와 스마트 계약(Smart Contract) 개발 1. Truffle 설치 - 스마트 계약 개발 환경 구성 (truffle, ganache-cli, solc )     - npm install -g truffle     - npm install -g ganache-cli     - npm install -g solc 2.  Truffle 사용 - 스마트 계약(Smart Contract)개발    - truffle create contract YourContractName    - truffle create test YourTestName  3. [Truffle 환경 설정] 컴파일 오류 대처 - Error: Failed to fetch the Solidity compiler from the following locations:      - Are you connected to the internet? 4.  [Truffle 환경 설정] Deploy 오류 대처 - Error: Could not find artifacts for SimpleStorage from any sources   - throw new Error("Could not find artifacts for " + import_path + " from any sources");   ㅁ Truffle 명령을 이용한 스마트 계약 개발 # Truffle을 이용하여 스마트 컨트렉트를 이용하는 명령은 다음과 같습니다. $ ganache-cli  -h 0.0.0.0 -p 8545 &  # 테스트용 블록체인 네트웍을 작동 합니다. $ truffle init ->  smart contract  소스를 작성 합니다. $ truffle compile $ truffle migration ./migration/deploy_someContract.js $ tr

이 블로그의 인기 게시물

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

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

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