I hereby claim:
- I am dvf on github.
- I am dvf (https://keybase.io/dvf) on keybase.
- I have a public key ASDMxnfzs4Am9pp5c7i38JACvJCMGlWHABqecGuzoGqr3Qo
To claim this, I am signing this object:
| import hashlib | |
| import json | |
| from time import time | |
| from uuid import uuid4 | |
| from flask import Flask, jsonify, request | |
| ... |
| class Blockchain(object): | |
| ... | |
| def new_transaction(self, sender, recipient, amount): | |
| """ | |
| Creates a new transaction to go into the next mined Block | |
| :param sender: <str> Address of the Sender | |
| :param recipient: <str> Address of the Recipient | |
| :param amount: <int> Amount |
| import hashlib | |
| import json | |
| from textwrap import dedent | |
| from time import time | |
| from uuid import uuid4 | |
| from flask import Flask, jsonify, request | |
| ... |
| import hashlib | |
| import json | |
| from textwrap import dedent | |
| from time import time | |
| from uuid import uuid4 | |
| from flask import Flask | |
| class Blockchain(object): |
| import hashlib | |
| import json | |
| from textwrap import dedent | |
| from time import time | |
| from uuid import uuid4 | |
| class Blockchain(object): | |
| def __init__(self): | |
| self.current_transactions = [] |
| import hashlib | |
| import json | |
| from time import time | |
| from uuid import uuid4 | |
| class Blockchain(object): | |
| ... | |
| block = { | |
| 'index': 1, | |
| 'timestamp': 1506057125.900785, | |
| 'transactions': [ | |
| { | |
| 'sender': "8527147fe1f5426f9dd545de4b27ee00", | |
| 'recipient': "a77f5cdfa2934df3954a5c7c7da5df1f", | |
| 'amount': 5, | |
| } | |
| ], |
| import hashlib | |
| import json | |
| from time import time | |
| class Blockchain(object): | |
| def __init__(self): | |
| self.current_transactions = [] | |
| self.chain = [] |
| class Blockchain(object): | |
| def __init__(self): | |
| self.chain = [] | |
| self.current_transactions = [] | |
| def new_block(self): | |
| # Creates a new Block and adds it to the chain | |
| pass | |
| def new_transaction(self): |
I hereby claim:
To claim this, I am signing this object: