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
| """NEO Non-Fungible Token Smart Contract Template | |
| Authors: Joe Stewart, Jonathan Winter | |
| Email: [email protected], [email protected] | |
| Version: 2.0 | |
| Date: 15 March 2019 | |
| License: MIT | |
| Based on NEP5 template by Tom Saunders |
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
| Participants (@apisit, @luis, @saltyskip) | |
| NEP2 Support Done (neo-swift) | |
| -> Implementation of (AES, scrypt, SHA256, Base58Check, PBKDF2 by @luis, kudos to him | |
| NEP5 Support Needs Review (neo-swift) | |
| More Stable Peer Management Done (neo-swift) | |
| O3 Nodes Spun up Done (PR at https://github.com/CityOfZion/neo-mon/pull/4) | |
| Successful Beta Run with O3 over 100 users participated, no reports of lost funds | |
| O3 is now approved at live on app store at https://itunes.apple.com/us/app/id1292233893 | |
| Add dark theme https://github.com/CityOfZion/OzoneWalletIOS/pull/24 |
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
| { | |
| "jsonrpc": "2.0", | |
| "id": "1", | |
| "result": { | |
| "hash": "0xd782db8a38b0eea0d7394e0f007c61c71798867578c77c387c08113903946cc9", | |
| "size": 686, | |
| "version": 0, | |
| "previousblockhash": "0xd42561e3d30e15be6400b6df2f328e02d2bf6354c41dce433bc57687c82144bf", | |
| "merkleroot": "0xd6ba8b0f381897a59396394e9ce266a3d1d0857b5e3827941c2d2cedc38ef918", | |
| "time": 1476647382, |
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
| EXPLAIN (SELECT * FROM (( | |
| SELECT id, status, 'purchase' AS type, | |
| user_id, NULL AS to_user_id, amount, | |
| bonus_amount, NULL AS fee, payment_id, | |
| type AS sub_type, | |
| finalized_at, created_at | |
| FROM purchase WHERE 1 AND created_at < FROM_UNIXTIME(1)) UNION ( | |
| SELECT id, status, 'payment' AS type, | |
| user_id, to_user_id, amount, | |
| NULL AS bonus_amount, processing_fee AS FEE, |
NewerOlder