This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // tevent format is following | |
| /* | |
| { | |
| timestamp: Date.now(), // e.g. 1694567890123 | |
| fromAddress: "0x1234567890abcdef1234567890abcdef12345678", | |
| fromOwner: { value: "Alice" }, // optional | |
| toAddress: "0xabcdef1234567890abcdef1234567890abcdef12", | |
| toOwner: { value: "Bob" }, // optional | |
| amount: "1000000000000000000", // string for big.Int | |
| tokenAddress: "0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // tevent format is following | |
| /* | |
| { | |
| timestamp: Date.now(), // e.g. 1694567890123 | |
| fromAddress: "0x1234567890abcdef1234567890abcdef12345678", | |
| fromOwner: { value: "Alice" }, // optional | |
| toAddress: "0xabcdef1234567890abcdef1234567890abcdef12", | |
| toOwner: { value: "Bob" }, // optional | |
| amount: "1000000000000000000", // string for big.Int | |
| tokenAddress: "0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // tevent format is following | |
| /* | |
| { | |
| timestamp: Date.now(), // e.g. 1694567890123 | |
| fromAddress: "0x1234567890abcdef1234567890abcdef12345678", | |
| fromOwner: { value: "Alice" }, // optional | |
| toAddress: "0xabcdef1234567890abcdef1234567890abcdef12", | |
| toOwner: { value: "Bob" }, // optional | |
| amount: "1000000000000000000", // string for big.Int | |
| tokenAddress: "0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // tevent format is following | |
| /* | |
| { | |
| timestamp: Date.now(), // e.g. 1694567890123 | |
| fromAddress: "0x1234567890abcdef1234567890abcdef12345678", | |
| fromOwner: { value: "Alice" }, // optional | |
| toAddress: "0xabcdef1234567890abcdef1234567890abcdef12", | |
| toOwner: { value: "Bob" }, // optional | |
| amount: "1000000000000000000", // string for big.Int | |
| tokenAddress: "0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "time" | |
| ) | |
| type Ball struct{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # took from here http://stackoverflow.com/questions/6127328/how-can-i-delete-all-git-branches-which-have-been-merged | |
| git branch --merged | grep -v "\*" | grep -v master | grep -v dev | xargs -n 1 git branch -d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git status --porcelain | grep -E '^ D' | sed -e "s/^ D //" | xargs git rm |