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
| pragma solidity ^0.4.24; | |
| contract DexGrowth | |
| { | |
| struct _Tx { | |
| address txuser; | |
| uint txvalue; | |
| } | |
| _Tx[] public Tx; | |
| uint public counter; |
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
| pragma solidity ^0.4.20; | |
| /* | |
| * Team JUST presents.. | |
| * ====================================* | |
| * _____ _ _ _ _____ ___ ____ * | |
| *| _ |___| | | | | | |_ | \ * | |
| *| __| . | | | | | |_ | | | * | |
| *|__| |___|_____|__|__| |___|____/ * | |
| * * |
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
| pragma solidity ^0.4.24; | |
| /** | |
| * @title -FoMo-3D v0.7.1 | |
| * ┌┬┐┌─┐┌─┐┌┬┐ ╦╦ ╦╔═╗╔╦╗ ┌─┐┬─┐┌─┐┌─┐┌─┐┌┐┌┌┬┐┌─┐ | |
| * │ ├┤ ├─┤│││ ║║ ║╚═╗ ║ ├─┘├┬┘├┤ └─┐├┤ │││ │ └─┐ | |
| * ┴ └─┘┴ ┴┴ ┴ ╚╝╚═╝╚═╝ ╩ ┴ ┴└─└─┘└─┘└─┘┘└┘ ┴ └─┘ | |
| * _____ _____ | |
| * (, / /) /) /) (, / /) /) | |
| * ┌─┐ / _ (/_ // // / _ // _ __ _(/ | |
| * ├─┤ ___/___(/_/(__(_/_(/_(/_ ___/__/_)_(/_(_(_/ (_(_(_ |
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
| /** | |
| * Created by hesk on 2018/1/9. zyntauri ltd | |
| */ | |
| import tzmoment from 'moment-timezone' | |
| import VueResource from 'vue-resource'; | |
| import {Vuetable, VueTablePagination, VueTablePaginationDropDown, VueTablePaginationInfo} from 'vuetable-2'; | |
| window.Vue.use(VueResource); | |
| let t = "", order_start = 0, usdbtc = 0; | |
| // | |
| // thirdly, register components to Vue |
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
| pragma solidity ^0.4.11; | |
| // See the Github at github.com/airswap/contracts | |
| /** | |
| * @title Ownable | |
| * @dev The Ownable contract has an owner address, and provides basic authorization control | |
| * functions, this simplifies the implementation of "user permissions". | |
| */ | |
| contract Ownable { |
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
| pragma solidity ^0.4.11; | |
| /** | |
| * Math operations with safety checks | |
| */ | |
| library SafeMath { | |
| function mul(uint a, uint b) internal returns (uint) { | |
| uint c = a * b; | |
| assert(a == 0 || c / a == b); | |
| return c; |
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
| pragma solidity ^0.4.11; | |
| /** | |
| * Math operations with safety checks | |
| */ | |
| library SafeMath { | |
| function mul(uint a, uint b) internal returns (uint) { | |
| uint c = a * b; | |
| assert(a == 0 || c / a == b); | |
| return c; |
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
| const WS = require('ws') | |
| const _ = require('lodash') | |
| const async = require('async') | |
| const fs = require('fs') | |
| const moment = require('moment') | |
| const pair = process.argv[2] | |
| const conf = { | |
| wshost: "wss://api.bitfinex.com/ws/2" |
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
| /** | |
| * Created by hesk on 25/10/2017. | |
| */ | |
| var selSeat = new Array(8); | |
| var count = 0; | |
| var max_seat_in_row = 15; | |
| var reject_list = [201, 102, 101]; | |
| var accept_list = []; | |
| $(document).ready(function () { |
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
| String key; | |
| String stock_full_id; | |
| String state; | |
| /** | |
| * suggested by the artist or the seller | |
| */ | |
| String currency; | |
| /** | |
| * suggested by the artist or the seller | |
| */ |