Skip to content

Instantly share code, notes, and snippets.

Verifying my Blockstack ID is secured with the address 1DkrieQuUHrV4WZdNYqi1nCk7NVgwhh5V6 https://explorer.blockstack.org/address/1DkrieQuUHrV4WZdNYqi1nCk7NVgwhh5V6
@beber89
beber89 / node.go
Created September 24, 2019 10:56
mine-dapp-wasm/chainfabric/node/Connect
// Connect connects node to remote server via TCP
func (nd *Node) Connect() bool {
// connect to this socket
nd.ws = js.Global().Get("WebSocket").New(fmt.Sprintf("ws://%s:%d/ws", nd.toIP, nd.toPort))
nd.ws.Call("addEventListener", "open", js.FuncOf(func(this js.Value, args []js.Value) interface{} {
return nil
}))
nd.ws.Call("addEventListener", "message", js.FuncOf(func(this js.Value, args []js.Value) interface{} {
message := args[0].Get("data").String()
@beber89
beber89 / node.go
Created September 24, 2019 10:48
mine-dapp-wasm/chainfabric/node/struct
// Node represents a user in the network
// toIP is IP address of server to connect to
// toPort is Port address of server to connect to
// response is value unassignable by user, only read
type Node struct {
toIP string
toPort uint16
response string
ws js.Value
newTransactionCallback func(string)
@beber89
beber89 / blockchain.go
Created September 24, 2019 09:56
miner-dapp-wasm/blockchain/blockchain
type Blockchain struct {
chain []Block
}
func listener(blkchn *Blockchain, msg string) {
// mining happen creating new block
// string payload shall be converted to transaction struct
var trMsg TransactionMessage
trMsg.Deserialize(msg)
var blk Block
@beber89
beber89 / block.go
Created September 24, 2019 09:47
miner-dapp-wasm/blockchain/block/hashValid
func (blk *Block) hashValid() bool {
hash := blk.hash
// put in mind Little Endian
// converting the 8 most significant bytes of hash to one number int
hashAsInt := uint64(0)
for i := uint8(1); i <= uint8(8); i++ {
hashAsInt = uint64(hash[32-i])<<((8-i)*8) + hashAsInt
}
diff := (uint64(1)<<63)>>(blk.difficulty-1) - 1
return hashAsInt <= diff
@beber89
beber89 / block.go
Created September 24, 2019 09:39
miner-dapp-wasm/blockchain/block/doHash
func (blk *Block) doHash() {
type toBeHashed struct {
id uint64
lastBlockHash [32]byte
nonce uint64
payload Transaction
difficulty uint8
timestamp uint64
}
h := sha256.New()
@beber89
beber89 / block.go
Last active September 24, 2019 09:37
miner-dapp-wasm/blockchain/block/struct
// Block is the building entity for the blockchain
type Block struct {
id uint64
lastBlockHash [32]byte
nonce uint64
payload Transaction
difficulty uint8
timestamp uint64
hash [32]byte
}
@beber89
beber89 / transaction.go
Last active September 24, 2019 09:27
miner-dapp-wasm/blockchain/transaction
type Transaction struct {
From string `json:"from"`
To string `json:"to"`
Amount float64 `json:"amount"`
}
@beber89
beber89 / main.go
Last active September 17, 2019 19:11
miner-dapp-wasm/main.go
var wg sync.WaitGroup
func main() {
wg.Add(1)
web.RegisterCallbacks()
wg.Wait()
}
@beber89
beber89 / wallet.go
Created September 17, 2019 18:06
blockchain/wallet.go
var NotifyListeners func()
// Wallet is the interface struct to the blockchain for the user
type Wallet struct {
username string
chain *Blockchain
}
// NewWallet creates a Wallet struct
func NewWallet(username string) Wallet {